Version Description
Added: Show AM/PM option
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.0.15 |
Comparing to | |
See all releases |
Code changes from version 1.0.14 to 1.0.15
- ecwd.php +1 -1
- ecwd_admin_class.php +1 -1
- ecwd_class.php +1 -1
- includes/calendar-class.php +4 -0
- includes/ecwd-cpt-class.php +3 -3
- includes/ecwd-display-class.php +91 -0
- includes/ecwd-functions.php +8 -0
- includes/register-settings.php +27 -0
- languages/ecwd-de_DE.mo +0 -0
- languages/ecwd-de_DE.po +157 -68
- languages/ecwd-en_US.mo +0 -0
- languages/ecwd-en_US.po +157 -120
- languages/ecwd-es_ES.mo +0 -0
- languages/ecwd-es_ES.po +171 -67
- languages/ecwd-fr_FR.mo +0 -0
- languages/ecwd-fr_FR.po +171 -67
- languages/ecwd-it_IT.mo +0 -0
- languages/ecwd-it_IT.po +171 -67
- languages/ecwd-nl_NL.mo +0 -0
- languages/ecwd-nl_NL.po +171 -67
- languages/ecwd-pt_PT.mo +0 -0
- languages/ecwd-pt_PT.po +174 -70
- languages/ecwd-ru_RU.mo +0 -0
- languages/ecwd-ru_RU.po +169 -68
- languages/ecwd-tr_TR.mo +0 -0
- languages/ecwd-tr_TR.po +177 -75
- languages/en.pot +151 -64
- readme.txt +4 -1
- views/ecwd-event-content.php +4 -0
- views/ecwd-organizer-content.php +4 -0
- views/ecwd-venue-content.php +4 -0
- views/single-event.php +6 -1
ecwd.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
3 |
* Plugin Name: Event Calendar WD
|
4 |
* Plugin URI: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
5 |
* Description: Event Calendar WD is an easy event management and planning tool with advanced features.
|
6 |
+
* Version: 1.0.15
|
7 |
* Author: WebDorado
|
8 |
* Author URI: http://web-dorado.com
|
9 |
* License: GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
|
ecwd_admin_class.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
-
protected $version = '1.0.
|
10 |
protected $ecwd_page = null;
|
11 |
|
12 |
private function __construct() {
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
+
protected $version = '1.0.15';
|
10 |
protected $ecwd_page = null;
|
11 |
|
12 |
private function __construct() {
|
ecwd_class.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
*/
|
7 |
class ECWD {
|
8 |
|
9 |
-
protected $version = '1.0.
|
10 |
protected $plugin_name = 'event-calendar-wd';
|
11 |
protected $prefix = 'ecwd';
|
12 |
protected $old_version = '1.0.13';
|
6 |
*/
|
7 |
class ECWD {
|
8 |
|
9 |
+
protected $version = '1.0.15';
|
10 |
protected $plugin_name = 'event-calendar-wd';
|
11 |
protected $prefix = 'ecwd';
|
12 |
protected $old_version = '1.0.13';
|
includes/calendar-class.php
CHANGED
@@ -81,6 +81,10 @@ class Calendar {
|
|
81 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
82 |
$this->timeformat = $ecwd_options['time_format'];
|
83 |
}
|
|
|
|
|
|
|
|
|
84 |
if ( isset( $ecwd_options['week_starts'] ) && $ecwd_options['week_starts'] != '' ) {
|
85 |
$this->weekstartday = $ecwd_options['week_starts'];
|
86 |
}
|
81 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
82 |
$this->timeformat = $ecwd_options['time_format'];
|
83 |
}
|
84 |
+
$this->timeformat .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
85 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
86 |
+
$this->timeformat = str_replace('H', 'h', $this->timeformat);
|
87 |
+
}
|
88 |
if ( isset( $ecwd_options['week_starts'] ) && $ecwd_options['week_starts'] != '' ) {
|
89 |
$this->weekstartday = $ecwd_options['week_starts'];
|
90 |
}
|
includes/ecwd-cpt-class.php
CHANGED
@@ -206,9 +206,9 @@ class ECWD_Cpt {
|
|
206 |
|
207 |
$this->rewriteSlug = ( isset( $ecwd_options['events_slug'] ) && $ecwd_options['events_slug'] !== '' ) ? $ecwd_options['events_slug'] : $defaultSlug . 's';
|
208 |
$this->rewriteSlugSingular = ( isset( $ecwd_options['event_slug'] ) && $ecwd_options['event_slug'] !== '' ) ? $ecwd_options['event_slug'] : $defaultSlug;
|
209 |
-
$rewrite = array( 'slug' => $this->rewriteSlugSingular );
|
210 |
-
$venue_rewrite = array( 'slug' => 'venue' );
|
211 |
-
$organizer_rewrite = array( 'slug' => 'organizer' );
|
212 |
}
|
213 |
//calendars
|
214 |
$calendar_labels = array(
|
206 |
|
207 |
$this->rewriteSlug = ( isset( $ecwd_options['events_slug'] ) && $ecwd_options['events_slug'] !== '' ) ? $ecwd_options['events_slug'] : $defaultSlug . 's';
|
208 |
$this->rewriteSlugSingular = ( isset( $ecwd_options['event_slug'] ) && $ecwd_options['event_slug'] !== '' ) ? $ecwd_options['event_slug'] : $defaultSlug;
|
209 |
+
$rewrite = array( 'slug' => _x( $this->rewriteSlugSingular, 'URL slug', 'ecwd' ), "with_front" => true);
|
210 |
+
$venue_rewrite = array( 'slug' => _x( 'venue', 'URL slug', 'ecwd' ), "with_front" => true);
|
211 |
+
$organizer_rewrite = array( 'slug' => _x( 'organizer', 'URL slug', 'ecwd' ), "with_front" => true);
|
212 |
}
|
213 |
//calendars
|
214 |
$calendar_labels = array(
|
includes/ecwd-display-class.php
CHANGED
@@ -904,6 +904,97 @@ class ECWD_Display {
|
|
904 |
return $next_event;
|
905 |
|
906 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
907 |
function events_unique( $array ) {
|
908 |
$events_ids = array();
|
909 |
foreach ( $array as $key => $event ) {
|
904 |
return $next_event;
|
905 |
|
906 |
}
|
907 |
+
|
908 |
+
public function get_repeat_rate( $event_id, $metas = '', $datefomat = 'Y-m-d' ) {
|
909 |
+
$repeat_text = '';
|
910 |
+
if ( ! $metas ) {
|
911 |
+
$metas = get_post_meta( $event_id, '', true );
|
912 |
+
}
|
913 |
+
$from = $metas[ ECWD_PLUGIN_PREFIX . '_event_date_from' ][0];
|
914 |
+
$days = array();
|
915 |
+
if ( isset( $metas[ ECWD_PLUGIN_PREFIX . '_event_day' ][0] ) && $metas[ ECWD_PLUGIN_PREFIX . '_event_day' ][0] != '' ) {
|
916 |
+
if ( is_serialized( $metas[ ECWD_PLUGIN_PREFIX . '_event_day' ][0] ) ) {
|
917 |
+
$days = unserialize( $metas[ ECWD_PLUGIN_PREFIX . '_event_day' ][0] );
|
918 |
+
}
|
919 |
+
} else {
|
920 |
+
$days = array( strtolower( date( 'l', strtotime( $from ) ) ) );
|
921 |
+
}
|
922 |
+
if ( $metas && isset( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] ) && $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] !== 'no_repeat' && $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] != '' ) {
|
923 |
+
$how = ( isset( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_how' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_how' ][0] : 1 );
|
924 |
+
|
925 |
+
if ( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] == 'daily' ) {
|
926 |
+
if ( $how > 1 ) {
|
927 |
+
$repeat_text .= 'Repeat every ' . $how . ' days';
|
928 |
+
} else {
|
929 |
+
$repeat_text .= 'Repeat every day';
|
930 |
+
}
|
931 |
+
} elseif ( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] == 'weekly' ) {
|
932 |
+
if ( $how > 1 ) {
|
933 |
+
$repeat_text .= 'Repeat every ' . $how . ' weeks';
|
934 |
+
} else {
|
935 |
+
$repeat_text .= 'Repeat every week';
|
936 |
+
}
|
937 |
+
|
938 |
+
|
939 |
+
if ( count( $days ) > 0 ) {
|
940 |
+
$repeat_text .= ' on ';
|
941 |
+
foreach ( $days as $i => $day ) {
|
942 |
+
$repeat_text .= ucfirst( $day ) . 's';
|
943 |
+
if ( $i !== ( count( $days ) - 1 ) ) {
|
944 |
+
$repeat_text .= ',';
|
945 |
+
}
|
946 |
+
$repeat_text .= ' ';
|
947 |
+
}
|
948 |
+
}
|
949 |
+
} elseif ( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] == 'monthly' ) {
|
950 |
+
if ( $how > 1 ) {
|
951 |
+
$repeat_text .= 'Repeat every ' . $how . ' months';
|
952 |
+
} else {
|
953 |
+
$repeat_text .= 'Repeat every month';
|
954 |
+
}
|
955 |
+
$repeat_days = isset( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_month_on_days' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_month_on_days' ][0] : 1;
|
956 |
+
|
957 |
+
if ( $repeat_days == 1 ) {
|
958 |
+
$repeat_text .= ' on the same day';
|
959 |
+
} else {
|
960 |
+
$repeat_when = isset( $metas[ ECWD_PLUGIN_PREFIX . '_monthly_list_monthly' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_monthly_list_monthly' ][0] : false;
|
961 |
+
$repeat_day = isset( $metas[ ECWD_PLUGIN_PREFIX . '_monthly_week_monthly' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_monthly_week_monthly' ][0] : false;
|
962 |
+
if ( $repeat_when && $repeat_day ) {
|
963 |
+
$repeat_text .= ' on the ' . ucfirst( $repeat_when ) . ' ' . ucfirst( $repeat_day );
|
964 |
+
}
|
965 |
+
}
|
966 |
+
} elseif ( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_event' ][0] == 'yearly' ) {
|
967 |
+
if ( $how > 1 ) {
|
968 |
+
$repeat_text .= 'Repeat every ' . $how . ' years';
|
969 |
+
} else {
|
970 |
+
$repeat_text .= 'Repeat every year';
|
971 |
+
}
|
972 |
+
|
973 |
+
$repeat_days = isset( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_year_on_days' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_year_on_days' ][0] : 1;
|
974 |
+
if ( isset( $metas[ ECWD_PLUGIN_PREFIX . '_event_year_month' ][0] ) ) {
|
975 |
+
$month = $metas[ ECWD_PLUGIN_PREFIX . '_event_year_month' ][0];
|
976 |
+
$monthName = date( 'F', strtotime( '2015-' . $month . '-1' ) );
|
977 |
+
} else {
|
978 |
+
$monthName = date( 'F', strtotime( $from ) );
|
979 |
+
}
|
980 |
+
$repeat_text .= ' in ' . $monthName;
|
981 |
+
if ( $repeat_days == 1 ) {
|
982 |
+
$repeat_text .= ' on the same day';
|
983 |
+
} else {
|
984 |
+
$repeat_when = isset( $metas[ ECWD_PLUGIN_PREFIX . '_monthly_list_yearly' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_monthly_list_yearly' ][0] : false;
|
985 |
+
$repeat_day = isset( $metas[ ECWD_PLUGIN_PREFIX . '_monthly_week_yearly' ][0] ) ? $metas[ ECWD_PLUGIN_PREFIX . '_monthly_week_yearly' ][0] : false;
|
986 |
+
if ( $repeat_when && $repeat_day ) {
|
987 |
+
$repeat_text .= ' on the ' . ucfirst( $repeat_when ) . ' ' . ucfirst( $repeat_day );
|
988 |
+
}
|
989 |
+
}
|
990 |
+
}
|
991 |
+
$repeat_text .= ' until ' . date( $datefomat, strtotime( $metas[ ECWD_PLUGIN_PREFIX . '_event_repeat_repeat_until' ][0] ) );
|
992 |
+
|
993 |
+
}
|
994 |
+
|
995 |
+
return $repeat_text;
|
996 |
+
}
|
997 |
+
|
998 |
function events_unique( $array ) {
|
999 |
$events_ids = array();
|
1000 |
foreach ( $array as $key => $event ) {
|
includes/ecwd-functions.php
CHANGED
@@ -348,6 +348,10 @@ function ecwd_add_meta_tags() {
|
|
348 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
349 |
$time_format = $ecwd_options['time_format'];
|
350 |
}
|
|
|
|
|
|
|
|
|
351 |
$ecwd_event_location = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_event_location', true );
|
352 |
$description = '';
|
353 |
if ( $ecwd_all_day_event == 1 ) {
|
@@ -389,6 +393,10 @@ function ecwd_print_countdown( $event_id, $widget = 1, $theme_id = null, $args =
|
|
389 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
390 |
$time_format = $ecwd_options['time_format'];
|
391 |
}
|
|
|
|
|
|
|
|
|
392 |
$defaults = array(
|
393 |
'title_text' => '',
|
394 |
'sort' => 'asc',
|
348 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
349 |
$time_format = $ecwd_options['time_format'];
|
350 |
}
|
351 |
+
$time_format .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
352 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
353 |
+
$time_format = str_replace('H', 'h', $time_format);
|
354 |
+
}
|
355 |
$ecwd_event_location = get_post_meta( $post->ID, ECWD_PLUGIN_PREFIX . '_event_location', true );
|
356 |
$description = '';
|
357 |
if ( $ecwd_all_day_event == 1 ) {
|
393 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
394 |
$time_format = $ecwd_options['time_format'];
|
395 |
}
|
396 |
+
$time_format .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
397 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
398 |
+
$time_format = str_replace('H', 'h', $time_format);
|
399 |
+
}
|
400 |
$defaults = array(
|
401 |
'title_text' => '',
|
402 |
'sort' => 'asc',
|
includes/register-settings.php
CHANGED
@@ -63,6 +63,13 @@ function ecwd_register_settings() {
|
|
63 |
'size' => 'medium-text',
|
64 |
'type' => 'text'
|
65 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
'week_starts' => array(
|
67 |
'id' => 'week_starts',
|
68 |
'name' => __( 'Week start day', 'ecwd' ),
|
@@ -213,6 +220,26 @@ function ecwd_week_select_callback( $args ) {
|
|
213 |
|
214 |
echo $html;
|
215 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
/*
|
217 |
* Order select callback function
|
218 |
*/
|
63 |
'size' => 'medium-text',
|
64 |
'type' => 'text'
|
65 |
),
|
66 |
+
'time_type' => array(
|
67 |
+
'id' => 'time_type',
|
68 |
+
'name' => __( 'Show AM/PM', 'ecwd' ),
|
69 |
+
'desc' => __( 'Select the time format type', 'ecwd' ),
|
70 |
+
'size' => 'medium-text',
|
71 |
+
'type' => 'time_type_select'
|
72 |
+
),
|
73 |
'week_starts' => array(
|
74 |
'id' => 'week_starts',
|
75 |
'name' => __( 'Week start day', 'ecwd' ),
|
220 |
|
221 |
echo $html;
|
222 |
}
|
223 |
+
|
224 |
+
/*
|
225 |
+
* Time type select callback function
|
226 |
+
*/
|
227 |
+
|
228 |
+
function ecwd_time_type_select_callback( $args ) {
|
229 |
+
global $ecwd_options;
|
230 |
+
$html = "\n" . '<select id="ecwd_settings_' . $args['section'] . '[' . $args['id'] . ']" name="ecwd_settings_' . $args['section'] . '[' . $args['id'] . ']" >
|
231 |
+
<option value="" ' . selected( "", isset( $ecwd_options[ $args['id'] ] ) ? $ecwd_options[ $args['id'] ] : '', false ) . '>Use 24-hour format</option>
|
232 |
+
<option value="a" ' . selected( "a", isset( $ecwd_options[ $args['id'] ] ) ? $ecwd_options[ $args['id'] ] : '', false ) . '>Use am/pm</option>
|
233 |
+
<option value="A" ' . selected( "A", isset( $ecwd_options[ $args['id'] ] ) ? $ecwd_options[ $args['id'] ] : '', false ) . '>Use AM/PM</option>
|
234 |
+
</select>' . "\n";
|
235 |
+
|
236 |
+
// Render description text directly to the right in a label if it exists.
|
237 |
+
if ( ! empty( $args['desc'] ) ) {
|
238 |
+
$html .= '<p class="description">' . $args['desc'] . '</p>' . "\n";
|
239 |
+
}
|
240 |
+
|
241 |
+
echo $html;
|
242 |
+
}
|
243 |
/*
|
244 |
* Order select callback function
|
245 |
*/
|
languages/ecwd-de_DE.mo
CHANGED
Binary file
|
languages/ecwd-de_DE.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: de\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -23,60 +22,57 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
25 |
"X-Poedit-SearchPathExcluded-8: includes/ecwd-event-class.php\n"
|
|
|
26 |
|
27 |
-
#: includes/calendar-class.php:
|
28 |
#: views/widgets.php:168
|
29 |
msgid "Month"
|
30 |
msgstr "Monat"
|
31 |
|
32 |
-
#: includes/calendar-class.php:
|
33 |
msgid "List"
|
34 |
msgstr "Liste"
|
35 |
|
36 |
-
#: includes/calendar-class.php:
|
37 |
msgid "Week"
|
38 |
msgstr "Woche"
|
39 |
|
40 |
-
#: includes/calendar-class.php:
|
41 |
msgid "Day"
|
42 |
msgstr "Tag"
|
43 |
|
44 |
-
#: includes/calendar-class.php:
|
45 |
msgid "Map"
|
46 |
msgstr "Karte"
|
47 |
|
48 |
-
#: includes/calendar-class.php:
|
49 |
msgid "4 Days"
|
50 |
msgstr "4 Tage"
|
51 |
|
52 |
-
#: includes/calendar-class.php:
|
53 |
msgid "Posterboard"
|
54 |
msgstr "Posterboard"
|
55 |
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: includes/calendar-class.php:
|
59 |
-
#: views/ecwd-event-content.php:
|
60 |
-
#: views/ecwd-organizer-content.php:
|
61 |
-
#: views/single-event.php:
|
62 |
-
#: views/single-event.php:
|
63 |
msgid "All day"
|
64 |
msgstr "Den ganzen Tag"
|
65 |
|
66 |
-
#: includes/calendar-class.php:
|
67 |
-
#: includes/calendar-class.php:
|
68 |
msgid "No events"
|
69 |
msgstr "Keine Veranstaltungen"
|
70 |
|
71 |
-
#: includes/calendar-class.php:
|
72 |
msgid "No Events"
|
73 |
msgstr "Keine Veranstaltungen"
|
74 |
|
75 |
-
#: includes/calendar-class.php:
|
76 |
-
msgid "What're we looking for ?"
|
77 |
-
msgstr "Was machen wir?"
|
78 |
-
|
79 |
-
#: includes/calendar-class.php:1237
|
80 |
msgid "More events"
|
81 |
msgstr "Weitere Veranstaltungen"
|
82 |
|
@@ -88,23 +84,77 @@ msgstr "Von"
|
|
88 |
msgid "To"
|
89 |
msgstr "Bis"
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
#: includes/ecwd-functions.php:8
|
92 |
msgid "Loading..."
|
93 |
msgstr "Laden"
|
94 |
|
95 |
-
#: includes/ecwd-functions.php:
|
96 |
msgid "DAYS"
|
97 |
msgstr "TAGEN"
|
98 |
|
99 |
-
#: includes/ecwd-functions.php:
|
100 |
msgid "HOURS"
|
101 |
msgstr "STANDEN"
|
102 |
|
103 |
-
#: includes/ecwd-functions.php:
|
104 |
msgid "MINUTES"
|
105 |
msgstr "MINUTEN"
|
106 |
|
107 |
-
#: includes/ecwd-functions.php:
|
108 |
msgid "SECONDS"
|
109 |
msgstr "SEKUNDEN"
|
110 |
|
@@ -156,142 +206,181 @@ msgstr "November"
|
|
156 |
msgid "December"
|
157 |
msgstr "Dezember"
|
158 |
|
159 |
-
#: includes/texts.php:
|
160 |
msgid "Sunday"
|
161 |
msgstr "Sonntag"
|
162 |
|
163 |
-
#: includes/texts.php:
|
164 |
msgid "Monday"
|
165 |
msgstr "Montag"
|
166 |
|
167 |
-
#: includes/texts.php:
|
168 |
msgid "Tuesday"
|
169 |
msgstr "Dienstag"
|
170 |
|
171 |
-
#: includes/texts.php:
|
172 |
msgid "Wednesday"
|
173 |
msgstr "Mittwoch"
|
174 |
|
175 |
-
#: includes/texts.php:
|
176 |
msgid "Thursday"
|
177 |
msgstr "Donnerstag"
|
178 |
|
179 |
-
#: includes/texts.php:
|
180 |
msgid "Friday"
|
181 |
msgstr "Freitag"
|
182 |
|
183 |
-
#: includes/texts.php:
|
184 |
msgid "Saturday"
|
185 |
msgstr "Samstag"
|
186 |
|
187 |
-
#: includes/texts.php:
|
188 |
msgid "Sun"
|
189 |
msgstr "Son"
|
190 |
|
191 |
-
#: includes/texts.php:
|
192 |
msgid "Mon"
|
193 |
msgstr "Mon"
|
194 |
|
195 |
-
#: includes/texts.php:
|
196 |
msgid "Tue"
|
197 |
msgstr "Die"
|
198 |
|
199 |
-
#: includes/texts.php:
|
200 |
msgid "Wed"
|
201 |
msgstr "Mit"
|
202 |
|
203 |
-
#: includes/texts.php:
|
204 |
msgid "Thu"
|
205 |
msgstr "Don"
|
206 |
|
207 |
-
#: includes/texts.php:
|
208 |
msgid "Fri"
|
209 |
msgstr "Fre"
|
210 |
|
211 |
-
#: includes/texts.php:
|
212 |
msgid "Sat"
|
213 |
msgstr "Sam"
|
214 |
|
215 |
-
#: includes/texts.php:
|
216 |
msgid "Su"
|
217 |
msgstr "S"
|
218 |
|
219 |
-
#: includes/texts.php:
|
220 |
msgid "Mo"
|
221 |
msgstr "M"
|
222 |
|
223 |
-
#: includes/texts.php:
|
224 |
msgid "Tu"
|
225 |
msgstr "D"
|
226 |
|
227 |
-
#: includes/texts.php:
|
228 |
msgid "We"
|
229 |
msgstr "M"
|
230 |
|
231 |
-
#: includes/texts.php:
|
232 |
msgid "Th"
|
233 |
msgstr "D"
|
234 |
|
235 |
-
#: includes/texts.php:
|
236 |
msgid "Fr"
|
237 |
msgstr "F"
|
238 |
|
239 |
-
#: includes/texts.php:
|
240 |
msgid "Sa"
|
241 |
msgstr "S"
|
242 |
|
243 |
-
#: includes/texts.php:
|
244 |
msgid "Show Filters"
|
245 |
msgstr "Filter anzeigen"
|
246 |
|
247 |
-
#: includes/texts.php:
|
248 |
msgid "Collapse Filters"
|
249 |
msgstr "Collapse Filter"
|
250 |
|
251 |
-
#: includes/texts.php:
|
252 |
msgid "Reset Filters"
|
253 |
msgstr "Filter neu"
|
254 |
|
255 |
-
#: includes/texts.php:
|
256 |
msgid "Days"
|
257 |
msgstr "Tagen"
|
258 |
|
259 |
-
#: includes/texts.php:
|
260 |
msgid "Categories"
|
261 |
msgstr "Kategorien"
|
262 |
|
263 |
-
#: includes/texts.php:
|
264 |
msgid "Venues"
|
265 |
msgstr "Veranstaltungsorte"
|
266 |
|
267 |
-
#:
|
268 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
msgid "Date"
|
270 |
msgstr "Datum"
|
271 |
|
272 |
-
#: views/ecwd-event-content.php:
|
273 |
msgid "Url"
|
274 |
msgstr "Url"
|
275 |
|
276 |
-
#: views/ecwd-event-content.php:
|
277 |
msgid "Organizers"
|
278 |
msgstr "Veranstalter"
|
279 |
|
280 |
-
#: views/ecwd-organizer-content.php:
|
281 |
msgid "upcoming events"
|
282 |
msgstr "kommende Veranstaltungen"
|
283 |
|
284 |
-
#: views/ecwd-venue-content.php:
|
285 |
msgid "events"
|
286 |
msgstr "veranstaltungen"
|
287 |
|
288 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
msgid "Related events"
|
290 |
msgstr "Keine Veranstaltungen"
|
291 |
|
292 |
-
|
293 |
-
|
294 |
-
msgstr "Die Veranstaltung hat gerade erst begonnen"
|
295 |
|
296 |
-
#~ msgid "
|
297 |
#~ msgstr "Die Veranstaltung hat gerade erst begonnen"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:38+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: de\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-8: includes/ecwd-event-class.php\n"
|
25 |
+
"X-Poedit-SearchPath-0: .\n"
|
26 |
|
27 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
28 |
#: views/widgets.php:168
|
29 |
msgid "Month"
|
30 |
msgstr "Monat"
|
31 |
|
32 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
33 |
msgid "List"
|
34 |
msgstr "Liste"
|
35 |
|
36 |
+
#: includes/calendar-class.php:179
|
37 |
msgid "Week"
|
38 |
msgstr "Woche"
|
39 |
|
40 |
+
#: includes/calendar-class.php:183
|
41 |
msgid "Day"
|
42 |
msgstr "Tag"
|
43 |
|
44 |
+
#: includes/calendar-class.php:186
|
45 |
msgid "Map"
|
46 |
msgstr "Karte"
|
47 |
|
48 |
+
#: includes/calendar-class.php:188
|
49 |
msgid "4 Days"
|
50 |
msgstr "4 Tage"
|
51 |
|
52 |
+
#: includes/calendar-class.php:191
|
53 |
msgid "Posterboard"
|
54 |
msgstr "Posterboard"
|
55 |
|
56 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
57 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
58 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
59 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
60 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
61 |
+
#: views/single-event.php:151 views/single-event.php:247
|
62 |
+
#: views/single-event.php:487
|
63 |
msgid "All day"
|
64 |
msgstr "Den ganzen Tag"
|
65 |
|
66 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
67 |
+
#: includes/calendar-class.php:1386
|
68 |
msgid "No events"
|
69 |
msgstr "Keine Veranstaltungen"
|
70 |
|
71 |
+
#: includes/calendar-class.php:644
|
72 |
msgid "No Events"
|
73 |
msgstr "Keine Veranstaltungen"
|
74 |
|
75 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
76 |
msgid "More events"
|
77 |
msgstr "Weitere Veranstaltungen"
|
78 |
|
84 |
msgid "To"
|
85 |
msgstr "Bis"
|
86 |
|
87 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
88 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
89 |
+
#: includes/texts.php:60
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Wiederholen alle"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "tagen"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Wiederholen Sie jeden Tag"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "Woche"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Wiederholen Sie jede Woche"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
msgid "on"
|
111 |
+
msgstr "auf"
|
112 |
+
|
113 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
114 |
+
msgid "months"
|
115 |
+
msgstr "monate"
|
116 |
+
|
117 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
118 |
+
msgid "Repeat every month"
|
119 |
+
msgstr "Wiederholen Sie jeden Monat"
|
120 |
+
|
121 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
122 |
+
msgid "on the same day"
|
123 |
+
msgstr "am selben Tag"
|
124 |
+
|
125 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
126 |
+
msgid "on the"
|
127 |
+
msgstr "am"
|
128 |
+
|
129 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
130 |
+
msgid "years"
|
131 |
+
msgstr "Jahre"
|
132 |
+
|
133 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
134 |
+
msgid "Repeat every year"
|
135 |
+
msgstr "Wiederholen Sie jeden Tag"
|
136 |
+
|
137 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
138 |
+
msgid "until"
|
139 |
+
msgstr "bis"
|
140 |
+
|
141 |
#: includes/ecwd-functions.php:8
|
142 |
msgid "Loading..."
|
143 |
msgstr "Laden"
|
144 |
|
145 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
146 |
msgid "DAYS"
|
147 |
msgstr "TAGEN"
|
148 |
|
149 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
150 |
msgid "HOURS"
|
151 |
msgstr "STANDEN"
|
152 |
|
153 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
154 |
msgid "MINUTES"
|
155 |
msgstr "MINUTEN"
|
156 |
|
157 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
158 |
msgid "SECONDS"
|
159 |
msgstr "SEKUNDEN"
|
160 |
|
206 |
msgid "December"
|
207 |
msgstr "Dezember"
|
208 |
|
209 |
+
#: includes/texts.php:15
|
210 |
msgid "Sunday"
|
211 |
msgstr "Sonntag"
|
212 |
|
213 |
+
#: includes/texts.php:16
|
214 |
msgid "Monday"
|
215 |
msgstr "Montag"
|
216 |
|
217 |
+
#: includes/texts.php:17
|
218 |
msgid "Tuesday"
|
219 |
msgstr "Dienstag"
|
220 |
|
221 |
+
#: includes/texts.php:18
|
222 |
msgid "Wednesday"
|
223 |
msgstr "Mittwoch"
|
224 |
|
225 |
+
#: includes/texts.php:19
|
226 |
msgid "Thursday"
|
227 |
msgstr "Donnerstag"
|
228 |
|
229 |
+
#: includes/texts.php:20
|
230 |
msgid "Friday"
|
231 |
msgstr "Freitag"
|
232 |
|
233 |
+
#: includes/texts.php:21
|
234 |
msgid "Saturday"
|
235 |
msgstr "Samstag"
|
236 |
|
237 |
+
#: includes/texts.php:25
|
238 |
msgid "Sun"
|
239 |
msgstr "Son"
|
240 |
|
241 |
+
#: includes/texts.php:26
|
242 |
msgid "Mon"
|
243 |
msgstr "Mon"
|
244 |
|
245 |
+
#: includes/texts.php:27
|
246 |
msgid "Tue"
|
247 |
msgstr "Die"
|
248 |
|
249 |
+
#: includes/texts.php:28
|
250 |
msgid "Wed"
|
251 |
msgstr "Mit"
|
252 |
|
253 |
+
#: includes/texts.php:29
|
254 |
msgid "Thu"
|
255 |
msgstr "Don"
|
256 |
|
257 |
+
#: includes/texts.php:30
|
258 |
msgid "Fri"
|
259 |
msgstr "Fre"
|
260 |
|
261 |
+
#: includes/texts.php:31
|
262 |
msgid "Sat"
|
263 |
msgstr "Sam"
|
264 |
|
265 |
+
#: includes/texts.php:34
|
266 |
msgid "Su"
|
267 |
msgstr "S"
|
268 |
|
269 |
+
#: includes/texts.php:35
|
270 |
msgid "Mo"
|
271 |
msgstr "M"
|
272 |
|
273 |
+
#: includes/texts.php:36
|
274 |
msgid "Tu"
|
275 |
msgstr "D"
|
276 |
|
277 |
+
#: includes/texts.php:37
|
278 |
msgid "We"
|
279 |
msgstr "M"
|
280 |
|
281 |
+
#: includes/texts.php:38
|
282 |
msgid "Th"
|
283 |
msgstr "D"
|
284 |
|
285 |
+
#: includes/texts.php:39
|
286 |
msgid "Fr"
|
287 |
msgstr "F"
|
288 |
|
289 |
+
#: includes/texts.php:40
|
290 |
msgid "Sa"
|
291 |
msgstr "S"
|
292 |
|
293 |
+
#: includes/texts.php:44
|
294 |
msgid "Show Filters"
|
295 |
msgstr "Filter anzeigen"
|
296 |
|
297 |
+
#: includes/texts.php:45
|
298 |
msgid "Collapse Filters"
|
299 |
msgstr "Collapse Filter"
|
300 |
|
301 |
+
#: includes/texts.php:46
|
302 |
msgid "Reset Filters"
|
303 |
msgstr "Filter neu"
|
304 |
|
305 |
+
#: includes/texts.php:48
|
306 |
msgid "Days"
|
307 |
msgstr "Tagen"
|
308 |
|
309 |
+
#: includes/texts.php:49
|
310 |
msgid "Categories"
|
311 |
msgstr "Kategorien"
|
312 |
|
313 |
+
#: includes/texts.php:50
|
314 |
msgid "Venues"
|
315 |
msgstr "Veranstaltungsorte"
|
316 |
|
317 |
+
#: includes/texts.php:57
|
318 |
+
msgid "The event has just started"
|
319 |
+
msgstr "Die Veranstaltung hat gerade erst begonnen"
|
320 |
+
|
321 |
+
#: includes/texts.php:72
|
322 |
+
msgid "Sundays"
|
323 |
+
msgstr "Sonntags"
|
324 |
+
|
325 |
+
#: includes/texts.php:73
|
326 |
+
msgid "Mondays"
|
327 |
+
msgstr "Montags"
|
328 |
+
|
329 |
+
#: includes/texts.php:74
|
330 |
+
msgid "Tuesdays"
|
331 |
+
msgstr "Dienstags"
|
332 |
+
|
333 |
+
#: includes/texts.php:75
|
334 |
+
msgid "Wednesdays"
|
335 |
+
msgstr "Mittwochs"
|
336 |
+
|
337 |
+
#: includes/texts.php:76
|
338 |
+
msgid "Thursdays"
|
339 |
+
msgstr "Donnerstags"
|
340 |
+
|
341 |
+
#: includes/texts.php:77
|
342 |
+
msgid "Fridays"
|
343 |
+
msgstr "Freitags"
|
344 |
+
|
345 |
+
#: includes/texts.php:78
|
346 |
+
msgid "Saturdays"
|
347 |
+
msgstr "Samstags"
|
348 |
+
|
349 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
350 |
+
#: views/single-event.php:142 views/single-event.php:242
|
351 |
msgid "Date"
|
352 |
msgstr "Datum"
|
353 |
|
354 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
355 |
msgid "Url"
|
356 |
msgstr "Url"
|
357 |
|
358 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
359 |
msgid "Organizers"
|
360 |
msgstr "Veranstalter"
|
361 |
|
362 |
+
#: views/ecwd-organizer-content.php:109
|
363 |
msgid "upcoming events"
|
364 |
msgstr "kommende Veranstaltungen"
|
365 |
|
366 |
+
#: views/ecwd-venue-content.php:141
|
367 |
msgid "events"
|
368 |
msgstr "veranstaltungen"
|
369 |
|
370 |
+
#: views/single-event.php:190
|
371 |
+
msgid "Venue"
|
372 |
+
msgstr "Austragungsort"
|
373 |
+
|
374 |
+
#: views/single-event.php:200
|
375 |
+
msgid "Location"
|
376 |
+
msgstr "Standort"
|
377 |
+
|
378 |
+
#: views/single-event.php:449
|
379 |
msgid "Related events"
|
380 |
msgstr "Keine Veranstaltungen"
|
381 |
|
382 |
+
#~ msgid "What're we looking for ?"
|
383 |
+
#~ msgstr "Was machen wir?"
|
|
|
384 |
|
385 |
+
#~ msgid "No additional details for this event."
|
386 |
#~ msgstr "Die Veranstaltung hat gerade erst begonnen"
|
languages/ecwd-en_US.mo
CHANGED
Binary file
|
languages/ecwd-en_US.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Generator: Poedit 1.
|
12 |
"X-Poedit-Basepath: ../\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
-
"Language: en\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,130 +21,142 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#:
|
27 |
-
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: includes/calendar-class.php:174 includes/calendar-class.php:175
|
31 |
-
#: includes/calendar-class.php:935 views/widgets.php:168
|
32 |
msgid "Month"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
-
#: views/widgets.php:169
|
37 |
msgid "List"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: includes/calendar-class.php:
|
41 |
msgid "Week"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/calendar-class.php:
|
45 |
msgid "Day"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/calendar-class.php:
|
49 |
msgid "Map"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/calendar-class.php:
|
53 |
msgid "4 Days"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/calendar-class.php:
|
57 |
msgid "Posterboard"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/calendar-class.php:
|
61 |
-
#: includes/calendar-class.php:
|
62 |
-
#: includes/calendar-class.php:
|
63 |
-
#: views/ecwd-event-content.php:
|
64 |
-
#: views/ecwd-organizer-content.php:
|
|
|
|
|
65 |
msgid "All day"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/calendar-class.php:
|
69 |
-
#: includes/calendar-class.php:
|
70 |
msgid "No events"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/calendar-class.php:
|
74 |
msgid "No Events"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: includes/calendar-class.php:
|
78 |
-
msgid "
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/
|
82 |
-
msgid "
|
|
|
|
|
|
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/ecwd-
|
86 |
-
|
87 |
-
|
|
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/ecwd-
|
91 |
-
|
92 |
-
msgid "%s years"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/ecwd-
|
96 |
-
|
97 |
-
msgid "%s month"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/ecwd-
|
101 |
-
|
102 |
-
msgid "%s months"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: includes/ecwd-
|
106 |
-
|
107 |
-
msgid "%s week"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/ecwd-
|
111 |
-
|
112 |
-
msgid "%s weeks"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/ecwd-
|
116 |
-
|
117 |
-
msgid "%s day"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/ecwd-
|
121 |
-
|
122 |
-
msgid "%s days"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/ecwd-
|
126 |
-
|
127 |
-
msgid "%s hour"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: includes/ecwd-
|
131 |
-
|
132 |
-
msgid "%s hours"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/ecwd-
|
136 |
-
|
137 |
-
msgid "%s min"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/ecwd-
|
141 |
-
|
142 |
-
|
|
|
|
|
|
|
143 |
msgstr ""
|
144 |
|
145 |
#: includes/ecwd-functions.php:8
|
146 |
msgid "Loading..."
|
147 |
msgstr ""
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
#: includes/texts.php:2
|
150 |
msgid "January"
|
151 |
msgstr ""
|
@@ -194,149 +205,175 @@ msgstr ""
|
|
194 |
msgid "December"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/texts.php:
|
198 |
msgid "Sunday"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: includes/texts.php:
|
202 |
msgid "Monday"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/texts.php:
|
206 |
msgid "Tuesday"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/texts.php:
|
210 |
msgid "Wednesday"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/texts.php:
|
214 |
msgid "Thursday"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/texts.php:
|
218 |
msgid "Friday"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/texts.php:
|
222 |
msgid "Saturday"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/texts.php:
|
226 |
msgid "Sun"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/texts.php:
|
230 |
msgid "Mon"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: includes/texts.php:
|
234 |
msgid "Tue"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: includes/texts.php:
|
238 |
msgid "Wed"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: includes/texts.php:
|
242 |
msgid "Thu"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: includes/texts.php:
|
246 |
msgid "Fri"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/texts.php:
|
250 |
msgid "Sat"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/texts.php:
|
254 |
msgid "Su"
|
255 |
msgstr "S"
|
256 |
|
257 |
-
#: includes/texts.php:
|
258 |
msgid "Mo"
|
259 |
msgstr "M"
|
260 |
|
261 |
-
#: includes/texts.php:
|
262 |
msgid "Tu"
|
263 |
msgstr "T"
|
264 |
|
265 |
-
#: includes/texts.php:
|
266 |
msgid "We"
|
267 |
msgstr "W"
|
268 |
|
269 |
-
#: includes/texts.php:
|
270 |
msgid "Th"
|
271 |
msgstr "H"
|
272 |
|
273 |
-
#: includes/texts.php:
|
274 |
msgid "Fr"
|
275 |
msgstr "F"
|
276 |
|
277 |
-
#: includes/texts.php:
|
278 |
msgid "Sa"
|
279 |
msgstr "S"
|
280 |
|
281 |
-
#:
|
282 |
-
msgid "
|
283 |
msgstr ""
|
284 |
|
285 |
-
#:
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#:
|
290 |
-
msgid "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
-
msgid "
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#:
|
310 |
-
msgid ""
|
311 |
-
"No valid Event IDs have been entered for this widget. Please check that you "
|
312 |
-
"have entered the IDs correctly in the widget settings (Appearance > "
|
313 |
-
"Widgets), and that the Events have not been deleted."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#:
|
317 |
-
msgid "
|
318 |
msgstr ""
|
319 |
|
320 |
-
#:
|
321 |
-
msgid "
|
322 |
msgstr ""
|
323 |
|
324 |
-
#:
|
325 |
-
msgid "
|
326 |
msgstr ""
|
327 |
|
328 |
-
#:
|
329 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: views/
|
333 |
-
msgid "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: views/
|
337 |
-
msgid "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: views/
|
341 |
-
msgid "
|
342 |
msgstr ""
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:39+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
+
"Language: en\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
+
#: views/widgets.php:168
|
|
|
|
|
|
|
|
|
28 |
msgid "Month"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
|
|
32 |
msgid "List"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
75 |
+
msgid "More events"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: includes/ecwd-cpt-filter.php:67
|
79 |
+
msgid "From"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/ecwd-cpt-filter.php:74
|
83 |
+
msgid "To"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
msgid "Repeat every"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
93 |
+
msgid "days"
|
|
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
97 |
+
msgid "Repeat every day"
|
|
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
101 |
+
msgid "weeks"
|
|
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
105 |
+
msgid "Repeat every week"
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: includes/ecwd-display-class.php:889
|
109 |
+
msgid "on"
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
113 |
+
msgid "months"
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
117 |
+
msgid "Repeat every month"
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
121 |
+
msgid "on the same day"
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
125 |
+
msgid "on the"
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
129 |
+
msgid "years"
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
133 |
+
msgid "Repeat every year"
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
137 |
+
msgid "until"
|
138 |
msgstr ""
|
139 |
|
140 |
#: includes/ecwd-functions.php:8
|
141 |
msgid "Loading..."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
145 |
+
msgid "DAYS"
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
149 |
+
msgid "HOURS"
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
153 |
+
msgid "MINUTES"
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
157 |
+
msgid "SECONDS"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
#: includes/texts.php:2
|
161 |
msgid "January"
|
162 |
msgstr ""
|
205 |
msgid "December"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: includes/texts.php:15
|
209 |
msgid "Sunday"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/texts.php:16
|
213 |
msgid "Monday"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/texts.php:17
|
217 |
msgid "Tuesday"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/texts.php:18
|
221 |
msgid "Wednesday"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/texts.php:19
|
225 |
msgid "Thursday"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/texts.php:20
|
229 |
msgid "Friday"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/texts.php:21
|
233 |
msgid "Saturday"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/texts.php:25
|
237 |
msgid "Sun"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/texts.php:26
|
241 |
msgid "Mon"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/texts.php:27
|
245 |
msgid "Tue"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/texts.php:28
|
249 |
msgid "Wed"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/texts.php:29
|
253 |
msgid "Thu"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/texts.php:30
|
257 |
msgid "Fri"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/texts.php:31
|
261 |
msgid "Sat"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/texts.php:34
|
265 |
msgid "Su"
|
266 |
msgstr "S"
|
267 |
|
268 |
+
#: includes/texts.php:35
|
269 |
msgid "Mo"
|
270 |
msgstr "M"
|
271 |
|
272 |
+
#: includes/texts.php:36
|
273 |
msgid "Tu"
|
274 |
msgstr "T"
|
275 |
|
276 |
+
#: includes/texts.php:37
|
277 |
msgid "We"
|
278 |
msgstr "W"
|
279 |
|
280 |
+
#: includes/texts.php:38
|
281 |
msgid "Th"
|
282 |
msgstr "H"
|
283 |
|
284 |
+
#: includes/texts.php:39
|
285 |
msgid "Fr"
|
286 |
msgstr "F"
|
287 |
|
288 |
+
#: includes/texts.php:40
|
289 |
msgid "Sa"
|
290 |
msgstr "S"
|
291 |
|
292 |
+
#: includes/texts.php:44
|
293 |
+
msgid "Show Filters"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/texts.php:45
|
297 |
+
msgid "Collapse Filters"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/texts.php:46
|
301 |
+
msgid "Reset Filters"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/texts.php:48
|
305 |
+
msgid "Days"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/texts.php:49
|
309 |
+
msgid "Categories"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/texts.php:50
|
313 |
+
msgid "Venues"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/texts.php:57
|
317 |
+
msgid "The event has just started"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/texts.php:72
|
321 |
+
msgid "Sundays"
|
|
|
|
|
|
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/texts.php:73
|
325 |
+
msgid "Mondays"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: includes/texts.php:74
|
329 |
+
msgid "Tuesdays"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: includes/texts.php:75
|
333 |
+
msgid "Wednesdays"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: includes/texts.php:76
|
337 |
+
msgid "Thursdays"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: includes/texts.php:77
|
341 |
+
msgid "Fridays"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: includes/texts.php:78
|
345 |
+
msgid "Saturdays"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
349 |
+
#: views/single-event.php:142 views/single-event.php:242
|
350 |
+
msgid "Date"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
354 |
+
msgid "Url"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
358 |
+
msgid "Organizers"
|
359 |
+
msgstr ""
|
360 |
+
|
361 |
+
#: views/ecwd-organizer-content.php:109
|
362 |
+
msgid "upcoming events"
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: views/ecwd-venue-content.php:141
|
366 |
+
msgid "events"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: views/single-event.php:190
|
370 |
+
msgid "Venue"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: views/single-event.php:200
|
374 |
+
msgid "Location"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: views/single-event.php:449
|
378 |
+
msgid "Related events"
|
379 |
msgstr ""
|
languages/ecwd-es_ES.mo
CHANGED
Binary file
|
languages/ecwd-es_ES.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,60 +21,57 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#: includes/calendar-class.php:
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mes"
|
30 |
|
31 |
-
#: includes/calendar-class.php:
|
32 |
msgid "List"
|
33 |
msgstr "Lista"
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
msgid "Week"
|
37 |
msgstr "Semana"
|
38 |
|
39 |
-
#: includes/calendar-class.php:
|
40 |
msgid "Day"
|
41 |
msgstr "Día"
|
42 |
|
43 |
-
#: includes/calendar-class.php:
|
44 |
msgid "Map"
|
45 |
msgstr "Mapa"
|
46 |
|
47 |
-
#: includes/calendar-class.php:
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Dias"
|
50 |
|
51 |
-
#: includes/calendar-class.php:
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
-
#: includes/calendar-class.php:
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: views/ecwd-event-content.php:
|
59 |
-
#: views/ecwd-organizer-content.php:
|
60 |
-
#: views/single-event.php:
|
61 |
-
#: views/single-event.php:
|
62 |
msgid "All day"
|
63 |
msgstr "Todo el día"
|
64 |
|
65 |
-
#: includes/calendar-class.php:
|
66 |
-
#: includes/calendar-class.php:
|
67 |
msgid "No events"
|
68 |
msgstr "No hay eventos"
|
69 |
|
70 |
-
#: includes/calendar-class.php:
|
71 |
msgid "No Events"
|
72 |
msgstr "No hay eventos"
|
73 |
|
74 |
-
#: includes/calendar-class.php:
|
75 |
-
msgid "What're we looking for ?"
|
76 |
-
msgstr "Qué estamos buscando?"
|
77 |
-
|
78 |
-
#: includes/calendar-class.php:1237
|
79 |
msgid "More events"
|
80 |
msgstr "Más eventos"
|
81 |
|
@@ -87,23 +83,81 @@ msgstr "Desde"
|
|
87 |
msgid "To"
|
88 |
msgstr "A"
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
#: includes/ecwd-functions.php:8
|
91 |
msgid "Loading..."
|
92 |
msgstr "Cargando…"
|
93 |
|
94 |
-
#: includes/ecwd-functions.php:
|
95 |
msgid "DAYS"
|
96 |
msgstr "DIAS"
|
97 |
|
98 |
-
#: includes/ecwd-functions.php:
|
99 |
msgid "HOURS"
|
100 |
msgstr "HORAS"
|
101 |
|
102 |
-
#: includes/ecwd-functions.php:
|
103 |
msgid "MINUTES"
|
104 |
msgstr "ACTA"
|
105 |
|
106 |
-
#: includes/ecwd-functions.php:
|
107 |
msgid "SECONDS"
|
108 |
msgstr "SEGUNDOS"
|
109 |
|
@@ -155,139 +209,189 @@ msgstr "Noviembre"
|
|
155 |
msgid "December"
|
156 |
msgstr "Diciembre"
|
157 |
|
158 |
-
#: includes/texts.php:
|
159 |
msgid "Sunday"
|
160 |
msgstr "Domingo"
|
161 |
|
162 |
-
#: includes/texts.php:
|
163 |
msgid "Monday"
|
164 |
msgstr "Lunes"
|
165 |
|
166 |
-
#: includes/texts.php:
|
167 |
msgid "Tuesday"
|
168 |
msgstr "Martes"
|
169 |
|
170 |
-
#: includes/texts.php:
|
171 |
msgid "Wednesday"
|
172 |
msgstr "Miércoles"
|
173 |
|
174 |
-
#: includes/texts.php:
|
175 |
msgid "Thursday"
|
176 |
msgstr "Jueves"
|
177 |
|
178 |
-
#: includes/texts.php:
|
179 |
msgid "Friday"
|
180 |
msgstr "Viernes"
|
181 |
|
182 |
-
#: includes/texts.php:
|
183 |
msgid "Saturday"
|
184 |
msgstr "Sábado"
|
185 |
|
186 |
-
#: includes/texts.php:
|
187 |
msgid "Sun"
|
188 |
msgstr "Dom"
|
189 |
|
190 |
-
#: includes/texts.php:
|
191 |
msgid "Mon"
|
192 |
msgstr "Lun"
|
193 |
|
194 |
-
#: includes/texts.php:
|
195 |
msgid "Tue"
|
196 |
msgstr "Mar"
|
197 |
|
198 |
-
#: includes/texts.php:
|
199 |
msgid "Wed"
|
200 |
msgstr "Mié"
|
201 |
|
202 |
-
#: includes/texts.php:
|
203 |
msgid "Thu"
|
204 |
msgstr "Jue"
|
205 |
|
206 |
-
#: includes/texts.php:
|
207 |
msgid "Fri"
|
208 |
msgstr "Vie"
|
209 |
|
210 |
-
#: includes/texts.php:
|
211 |
msgid "Sat"
|
212 |
msgstr "Sáb"
|
213 |
|
214 |
-
#: includes/texts.php:
|
215 |
msgid "Su"
|
216 |
msgstr "D"
|
217 |
|
218 |
-
#: includes/texts.php:
|
219 |
msgid "Mo"
|
220 |
msgstr "L"
|
221 |
|
222 |
-
#: includes/texts.php:
|
223 |
msgid "Tu"
|
224 |
msgstr "M"
|
225 |
|
226 |
-
#: includes/texts.php:
|
227 |
msgid "We"
|
228 |
msgstr "M"
|
229 |
|
230 |
-
#: includes/texts.php:
|
231 |
msgid "Th"
|
232 |
msgstr "J"
|
233 |
|
234 |
-
#: includes/texts.php:
|
235 |
msgid "Fr"
|
236 |
msgstr "V"
|
237 |
|
238 |
-
#: includes/texts.php:
|
239 |
msgid "Sa"
|
240 |
msgstr "S"
|
241 |
|
242 |
-
#: includes/texts.php:
|
243 |
msgid "Show Filters"
|
244 |
msgstr "Mostrar filtros"
|
245 |
|
246 |
-
#: includes/texts.php:
|
247 |
msgid "Collapse Filters"
|
248 |
msgstr "Collapse Filters"
|
249 |
|
250 |
-
#: includes/texts.php:
|
251 |
msgid "Reset Filters"
|
252 |
msgstr "Reiniciar los filtros"
|
253 |
|
254 |
-
#: includes/texts.php:
|
255 |
msgid "Days"
|
256 |
msgstr "Dias"
|
257 |
|
258 |
-
#: includes/texts.php:
|
259 |
msgid "Categories"
|
260 |
msgstr "Categorías"
|
261 |
|
262 |
-
#: includes/texts.php:
|
263 |
msgid "Venues"
|
264 |
msgstr "Lugares"
|
265 |
|
266 |
-
#:
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Date"
|
269 |
msgstr "Fecha"
|
270 |
|
271 |
-
#: views/ecwd-event-content.php:
|
272 |
msgid "Url"
|
273 |
msgstr "Url"
|
274 |
|
275 |
-
#: views/ecwd-event-content.php:
|
276 |
msgid "Organizers"
|
277 |
msgstr "Organizador"
|
278 |
|
279 |
-
#: views/ecwd-organizer-content.php:
|
280 |
msgid "upcoming events"
|
281 |
msgstr "próximos eventos"
|
282 |
|
283 |
-
#: views/ecwd-venue-content.php:
|
284 |
msgid "events"
|
285 |
msgstr "eventos"
|
286 |
|
287 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Related events"
|
289 |
msgstr "Más eventos"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:12+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: es\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mes"
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
32 |
msgid "List"
|
33 |
msgstr "Lista"
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr "Semana"
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr "Día"
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr "Mapa"
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Dias"
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr "Todo el día"
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr "No hay eventos"
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr "No hay eventos"
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
75 |
msgid "More events"
|
76 |
msgstr "Más eventos"
|
77 |
|
83 |
msgid "To"
|
84 |
msgstr "A"
|
85 |
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
#, fuzzy
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Más eventos"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "días"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Repita todos los días"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "semanas"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Repetir cada semana"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
#, fuzzy
|
111 |
+
msgid "on"
|
112 |
+
msgstr "Lun"
|
113 |
+
|
114 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
115 |
+
#, fuzzy
|
116 |
+
msgid "months"
|
117 |
+
msgstr "Mes"
|
118 |
+
|
119 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Repeat every month"
|
122 |
+
msgstr "Más eventos"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
125 |
+
msgid "on the same day"
|
126 |
+
msgstr "En el mismo día"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
129 |
+
msgid "on the"
|
130 |
+
msgstr "en el"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
133 |
+
msgid "years"
|
134 |
+
msgstr "años"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
137 |
+
msgid "Repeat every year"
|
138 |
+
msgstr "Repetir cada año"
|
139 |
+
|
140 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
141 |
+
msgid "until"
|
142 |
+
msgstr "hasta"
|
143 |
+
|
144 |
#: includes/ecwd-functions.php:8
|
145 |
msgid "Loading..."
|
146 |
msgstr "Cargando…"
|
147 |
|
148 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
149 |
msgid "DAYS"
|
150 |
msgstr "DIAS"
|
151 |
|
152 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
153 |
msgid "HOURS"
|
154 |
msgstr "HORAS"
|
155 |
|
156 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
157 |
msgid "MINUTES"
|
158 |
msgstr "ACTA"
|
159 |
|
160 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
161 |
msgid "SECONDS"
|
162 |
msgstr "SEGUNDOS"
|
163 |
|
209 |
msgid "December"
|
210 |
msgstr "Diciembre"
|
211 |
|
212 |
+
#: includes/texts.php:15
|
213 |
msgid "Sunday"
|
214 |
msgstr "Domingo"
|
215 |
|
216 |
+
#: includes/texts.php:16
|
217 |
msgid "Monday"
|
218 |
msgstr "Lunes"
|
219 |
|
220 |
+
#: includes/texts.php:17
|
221 |
msgid "Tuesday"
|
222 |
msgstr "Martes"
|
223 |
|
224 |
+
#: includes/texts.php:18
|
225 |
msgid "Wednesday"
|
226 |
msgstr "Miércoles"
|
227 |
|
228 |
+
#: includes/texts.php:19
|
229 |
msgid "Thursday"
|
230 |
msgstr "Jueves"
|
231 |
|
232 |
+
#: includes/texts.php:20
|
233 |
msgid "Friday"
|
234 |
msgstr "Viernes"
|
235 |
|
236 |
+
#: includes/texts.php:21
|
237 |
msgid "Saturday"
|
238 |
msgstr "Sábado"
|
239 |
|
240 |
+
#: includes/texts.php:25
|
241 |
msgid "Sun"
|
242 |
msgstr "Dom"
|
243 |
|
244 |
+
#: includes/texts.php:26
|
245 |
msgid "Mon"
|
246 |
msgstr "Lun"
|
247 |
|
248 |
+
#: includes/texts.php:27
|
249 |
msgid "Tue"
|
250 |
msgstr "Mar"
|
251 |
|
252 |
+
#: includes/texts.php:28
|
253 |
msgid "Wed"
|
254 |
msgstr "Mié"
|
255 |
|
256 |
+
#: includes/texts.php:29
|
257 |
msgid "Thu"
|
258 |
msgstr "Jue"
|
259 |
|
260 |
+
#: includes/texts.php:30
|
261 |
msgid "Fri"
|
262 |
msgstr "Vie"
|
263 |
|
264 |
+
#: includes/texts.php:31
|
265 |
msgid "Sat"
|
266 |
msgstr "Sáb"
|
267 |
|
268 |
+
#: includes/texts.php:34
|
269 |
msgid "Su"
|
270 |
msgstr "D"
|
271 |
|
272 |
+
#: includes/texts.php:35
|
273 |
msgid "Mo"
|
274 |
msgstr "L"
|
275 |
|
276 |
+
#: includes/texts.php:36
|
277 |
msgid "Tu"
|
278 |
msgstr "M"
|
279 |
|
280 |
+
#: includes/texts.php:37
|
281 |
msgid "We"
|
282 |
msgstr "M"
|
283 |
|
284 |
+
#: includes/texts.php:38
|
285 |
msgid "Th"
|
286 |
msgstr "J"
|
287 |
|
288 |
+
#: includes/texts.php:39
|
289 |
msgid "Fr"
|
290 |
msgstr "V"
|
291 |
|
292 |
+
#: includes/texts.php:40
|
293 |
msgid "Sa"
|
294 |
msgstr "S"
|
295 |
|
296 |
+
#: includes/texts.php:44
|
297 |
msgid "Show Filters"
|
298 |
msgstr "Mostrar filtros"
|
299 |
|
300 |
+
#: includes/texts.php:45
|
301 |
msgid "Collapse Filters"
|
302 |
msgstr "Collapse Filters"
|
303 |
|
304 |
+
#: includes/texts.php:46
|
305 |
msgid "Reset Filters"
|
306 |
msgstr "Reiniciar los filtros"
|
307 |
|
308 |
+
#: includes/texts.php:48
|
309 |
msgid "Days"
|
310 |
msgstr "Dias"
|
311 |
|
312 |
+
#: includes/texts.php:49
|
313 |
msgid "Categories"
|
314 |
msgstr "Categorías"
|
315 |
|
316 |
+
#: includes/texts.php:50
|
317 |
msgid "Venues"
|
318 |
msgstr "Lugares"
|
319 |
|
320 |
+
#: includes/texts.php:57
|
321 |
+
msgid "The event has just started"
|
322 |
+
msgstr "El evento ha comenzado"
|
323 |
+
|
324 |
+
#: includes/texts.php:72
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Sundays"
|
327 |
+
msgstr "Domingo"
|
328 |
+
|
329 |
+
#: includes/texts.php:73
|
330 |
+
#, fuzzy
|
331 |
+
msgid "Mondays"
|
332 |
+
msgstr "Lunes"
|
333 |
+
|
334 |
+
#: includes/texts.php:74
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Tuesdays"
|
337 |
+
msgstr "Martes"
|
338 |
+
|
339 |
+
#: includes/texts.php:75
|
340 |
+
#, fuzzy
|
341 |
+
msgid "Wednesdays"
|
342 |
+
msgstr "Miércoles"
|
343 |
+
|
344 |
+
#: includes/texts.php:76
|
345 |
+
#, fuzzy
|
346 |
+
msgid "Thursdays"
|
347 |
+
msgstr "Jueves"
|
348 |
+
|
349 |
+
#: includes/texts.php:77
|
350 |
+
#, fuzzy
|
351 |
+
msgid "Fridays"
|
352 |
+
msgstr "Viernes"
|
353 |
+
|
354 |
+
#: includes/texts.php:78
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Saturdays"
|
357 |
+
msgstr "Sábado"
|
358 |
+
|
359 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
360 |
+
#: views/single-event.php:142 views/single-event.php:242
|
361 |
msgid "Date"
|
362 |
msgstr "Fecha"
|
363 |
|
364 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
365 |
msgid "Url"
|
366 |
msgstr "Url"
|
367 |
|
368 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
369 |
msgid "Organizers"
|
370 |
msgstr "Organizador"
|
371 |
|
372 |
+
#: views/ecwd-organizer-content.php:109
|
373 |
msgid "upcoming events"
|
374 |
msgstr "próximos eventos"
|
375 |
|
376 |
+
#: views/ecwd-venue-content.php:141
|
377 |
msgid "events"
|
378 |
msgstr "eventos"
|
379 |
|
380 |
+
#: views/single-event.php:190
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Venue"
|
383 |
+
msgstr "Lugares"
|
384 |
+
|
385 |
+
#: views/single-event.php:200
|
386 |
+
msgid "Location"
|
387 |
+
msgstr "Localización"
|
388 |
+
|
389 |
+
#: views/single-event.php:449
|
390 |
msgid "Related events"
|
391 |
msgstr "Más eventos"
|
392 |
|
393 |
+
#~ msgid "What're we looking for ?"
|
394 |
+
#~ msgstr "Qué estamos buscando?"
|
395 |
+
|
396 |
+
#~ msgid "No additional details for this event."
|
397 |
+
#~ msgstr "No hay más detalles de este evento."
|
languages/ecwd-fr_FR.mo
CHANGED
Binary file
|
languages/ecwd-fr_FR.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,60 +21,57 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#: includes/calendar-class.php:
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mois"
|
30 |
|
31 |
-
#: includes/calendar-class.php:
|
32 |
msgid "List"
|
33 |
msgstr "Liste"
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
msgid "Week"
|
37 |
msgstr "Semaine"
|
38 |
|
39 |
-
#: includes/calendar-class.php:
|
40 |
msgid "Day"
|
41 |
msgstr "Jour"
|
42 |
|
43 |
-
#: includes/calendar-class.php:
|
44 |
msgid "Map"
|
45 |
msgstr "Carte"
|
46 |
|
47 |
-
#: includes/calendar-class.php:
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Jours"
|
50 |
|
51 |
-
#: includes/calendar-class.php:
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
-
#: includes/calendar-class.php:
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: views/ecwd-event-content.php:
|
59 |
-
#: views/ecwd-organizer-content.php:
|
60 |
-
#: views/single-event.php:
|
61 |
-
#: views/single-event.php:
|
62 |
msgid "All day"
|
63 |
msgstr "Toute la journée"
|
64 |
|
65 |
-
#: includes/calendar-class.php:
|
66 |
-
#: includes/calendar-class.php:
|
67 |
msgid "No events"
|
68 |
msgstr "Aucun événement"
|
69 |
|
70 |
-
#: includes/calendar-class.php:
|
71 |
msgid "No Events"
|
72 |
msgstr "Aucun événement"
|
73 |
|
74 |
-
#: includes/calendar-class.php:
|
75 |
-
msgid "What're we looking for ?"
|
76 |
-
msgstr "Qu’est-ce qu’on cherche?"
|
77 |
-
|
78 |
-
#: includes/calendar-class.php:1237
|
79 |
msgid "More events"
|
80 |
msgstr "Plus d’événements"
|
81 |
|
@@ -87,23 +83,81 @@ msgstr "De"
|
|
87 |
msgid "To"
|
88 |
msgstr "à"
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
#: includes/ecwd-functions.php:8
|
91 |
msgid "Loading..."
|
92 |
msgstr "Chargement…"
|
93 |
|
94 |
-
#: includes/ecwd-functions.php:
|
95 |
msgid "DAYS"
|
96 |
msgstr "JOURS"
|
97 |
|
98 |
-
#: includes/ecwd-functions.php:
|
99 |
msgid "HOURS"
|
100 |
msgstr "HEURES"
|
101 |
|
102 |
-
#: includes/ecwd-functions.php:
|
103 |
msgid "MINUTES"
|
104 |
msgstr "MINUTES"
|
105 |
|
106 |
-
#: includes/ecwd-functions.php:
|
107 |
msgid "SECONDS"
|
108 |
msgstr "SECONDES"
|
109 |
|
@@ -155,139 +209,189 @@ msgstr "Novembre"
|
|
155 |
msgid "December"
|
156 |
msgstr "Décembre"
|
157 |
|
158 |
-
#: includes/texts.php:
|
159 |
msgid "Sunday"
|
160 |
msgstr "Dimanche"
|
161 |
|
162 |
-
#: includes/texts.php:
|
163 |
msgid "Monday"
|
164 |
msgstr "Lundi"
|
165 |
|
166 |
-
#: includes/texts.php:
|
167 |
msgid "Tuesday"
|
168 |
msgstr "Mardi"
|
169 |
|
170 |
-
#: includes/texts.php:
|
171 |
msgid "Wednesday"
|
172 |
msgstr "Mercredi"
|
173 |
|
174 |
-
#: includes/texts.php:
|
175 |
msgid "Thursday"
|
176 |
msgstr "Jeudi"
|
177 |
|
178 |
-
#: includes/texts.php:
|
179 |
msgid "Friday"
|
180 |
msgstr "Vendredi"
|
181 |
|
182 |
-
#: includes/texts.php:
|
183 |
msgid "Saturday"
|
184 |
msgstr "Samedi"
|
185 |
|
186 |
-
#: includes/texts.php:
|
187 |
msgid "Sun"
|
188 |
msgstr "Dim"
|
189 |
|
190 |
-
#: includes/texts.php:
|
191 |
msgid "Mon"
|
192 |
msgstr "Lun"
|
193 |
|
194 |
-
#: includes/texts.php:
|
195 |
msgid "Tue"
|
196 |
msgstr "Mar"
|
197 |
|
198 |
-
#: includes/texts.php:
|
199 |
msgid "Wed"
|
200 |
msgstr "Mer"
|
201 |
|
202 |
-
#: includes/texts.php:
|
203 |
msgid "Thu"
|
204 |
msgstr "Jeu"
|
205 |
|
206 |
-
#: includes/texts.php:
|
207 |
msgid "Fri"
|
208 |
msgstr "Ven"
|
209 |
|
210 |
-
#: includes/texts.php:
|
211 |
msgid "Sat"
|
212 |
msgstr "Sam"
|
213 |
|
214 |
-
#: includes/texts.php:
|
215 |
msgid "Su"
|
216 |
msgstr "D"
|
217 |
|
218 |
-
#: includes/texts.php:
|
219 |
msgid "Mo"
|
220 |
msgstr "L"
|
221 |
|
222 |
-
#: includes/texts.php:
|
223 |
msgid "Tu"
|
224 |
msgstr "M"
|
225 |
|
226 |
-
#: includes/texts.php:
|
227 |
msgid "We"
|
228 |
msgstr "M"
|
229 |
|
230 |
-
#: includes/texts.php:
|
231 |
msgid "Th"
|
232 |
msgstr "J"
|
233 |
|
234 |
-
#: includes/texts.php:
|
235 |
msgid "Fr"
|
236 |
msgstr "V"
|
237 |
|
238 |
-
#: includes/texts.php:
|
239 |
msgid "Sa"
|
240 |
msgstr "S"
|
241 |
|
242 |
-
#: includes/texts.php:
|
243 |
msgid "Show Filters"
|
244 |
msgstr "Afficher les filtres"
|
245 |
|
246 |
-
#: includes/texts.php:
|
247 |
msgid "Collapse Filters"
|
248 |
msgstr "Réduire les filtres"
|
249 |
|
250 |
-
#: includes/texts.php:
|
251 |
msgid "Reset Filters"
|
252 |
msgstr "Enlever les filtres"
|
253 |
|
254 |
-
#: includes/texts.php:
|
255 |
msgid "Days"
|
256 |
msgstr "Jours"
|
257 |
|
258 |
-
#: includes/texts.php:
|
259 |
msgid "Categories"
|
260 |
msgstr "Catégories"
|
261 |
|
262 |
-
#: includes/texts.php:
|
263 |
msgid "Venues"
|
264 |
msgstr "Lieux"
|
265 |
|
266 |
-
#:
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Date"
|
269 |
msgstr "Date"
|
270 |
|
271 |
-
#: views/ecwd-event-content.php:
|
272 |
msgid "Url"
|
273 |
msgstr "Url"
|
274 |
|
275 |
-
#: views/ecwd-event-content.php:
|
276 |
msgid "Organizers"
|
277 |
msgstr "Organisateurs"
|
278 |
|
279 |
-
#: views/ecwd-organizer-content.php:
|
280 |
msgid "upcoming events"
|
281 |
msgstr "évènements à venir"
|
282 |
|
283 |
-
#: views/ecwd-venue-content.php:
|
284 |
msgid "events"
|
285 |
msgstr "événements"
|
286 |
|
287 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Related events"
|
289 |
msgstr "Plus d’événements"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:39+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: fr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mois"
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
32 |
msgid "List"
|
33 |
msgstr "Liste"
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr "Semaine"
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr "Jour"
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr "Carte"
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Jours"
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr "Toute la journée"
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr "Aucun événement"
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr "Aucun événement"
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
75 |
msgid "More events"
|
76 |
msgstr "Plus d’événements"
|
77 |
|
83 |
msgid "To"
|
84 |
msgstr "à"
|
85 |
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
#, fuzzy
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Plus d’événements"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "journées"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Répétez chaque jour"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "semaines"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Répéter chaque semaine"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
#, fuzzy
|
111 |
+
msgid "on"
|
112 |
+
msgstr "Lun"
|
113 |
+
|
114 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
115 |
+
#, fuzzy
|
116 |
+
msgid "months"
|
117 |
+
msgstr "Mois"
|
118 |
+
|
119 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Repeat every month"
|
122 |
+
msgstr "Plus d’événements"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
125 |
+
msgid "on the same day"
|
126 |
+
msgstr "le même jour"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
129 |
+
msgid "on the"
|
130 |
+
msgstr "sur le"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
133 |
+
msgid "years"
|
134 |
+
msgstr "années"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
137 |
+
msgid "Repeat every year"
|
138 |
+
msgstr "Répéter chaque année"
|
139 |
+
|
140 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
141 |
+
msgid "until"
|
142 |
+
msgstr "jusqu'à"
|
143 |
+
|
144 |
#: includes/ecwd-functions.php:8
|
145 |
msgid "Loading..."
|
146 |
msgstr "Chargement…"
|
147 |
|
148 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
149 |
msgid "DAYS"
|
150 |
msgstr "JOURS"
|
151 |
|
152 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
153 |
msgid "HOURS"
|
154 |
msgstr "HEURES"
|
155 |
|
156 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
157 |
msgid "MINUTES"
|
158 |
msgstr "MINUTES"
|
159 |
|
160 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
161 |
msgid "SECONDS"
|
162 |
msgstr "SECONDES"
|
163 |
|
209 |
msgid "December"
|
210 |
msgstr "Décembre"
|
211 |
|
212 |
+
#: includes/texts.php:15
|
213 |
msgid "Sunday"
|
214 |
msgstr "Dimanche"
|
215 |
|
216 |
+
#: includes/texts.php:16
|
217 |
msgid "Monday"
|
218 |
msgstr "Lundi"
|
219 |
|
220 |
+
#: includes/texts.php:17
|
221 |
msgid "Tuesday"
|
222 |
msgstr "Mardi"
|
223 |
|
224 |
+
#: includes/texts.php:18
|
225 |
msgid "Wednesday"
|
226 |
msgstr "Mercredi"
|
227 |
|
228 |
+
#: includes/texts.php:19
|
229 |
msgid "Thursday"
|
230 |
msgstr "Jeudi"
|
231 |
|
232 |
+
#: includes/texts.php:20
|
233 |
msgid "Friday"
|
234 |
msgstr "Vendredi"
|
235 |
|
236 |
+
#: includes/texts.php:21
|
237 |
msgid "Saturday"
|
238 |
msgstr "Samedi"
|
239 |
|
240 |
+
#: includes/texts.php:25
|
241 |
msgid "Sun"
|
242 |
msgstr "Dim"
|
243 |
|
244 |
+
#: includes/texts.php:26
|
245 |
msgid "Mon"
|
246 |
msgstr "Lun"
|
247 |
|
248 |
+
#: includes/texts.php:27
|
249 |
msgid "Tue"
|
250 |
msgstr "Mar"
|
251 |
|
252 |
+
#: includes/texts.php:28
|
253 |
msgid "Wed"
|
254 |
msgstr "Mer"
|
255 |
|
256 |
+
#: includes/texts.php:29
|
257 |
msgid "Thu"
|
258 |
msgstr "Jeu"
|
259 |
|
260 |
+
#: includes/texts.php:30
|
261 |
msgid "Fri"
|
262 |
msgstr "Ven"
|
263 |
|
264 |
+
#: includes/texts.php:31
|
265 |
msgid "Sat"
|
266 |
msgstr "Sam"
|
267 |
|
268 |
+
#: includes/texts.php:34
|
269 |
msgid "Su"
|
270 |
msgstr "D"
|
271 |
|
272 |
+
#: includes/texts.php:35
|
273 |
msgid "Mo"
|
274 |
msgstr "L"
|
275 |
|
276 |
+
#: includes/texts.php:36
|
277 |
msgid "Tu"
|
278 |
msgstr "M"
|
279 |
|
280 |
+
#: includes/texts.php:37
|
281 |
msgid "We"
|
282 |
msgstr "M"
|
283 |
|
284 |
+
#: includes/texts.php:38
|
285 |
msgid "Th"
|
286 |
msgstr "J"
|
287 |
|
288 |
+
#: includes/texts.php:39
|
289 |
msgid "Fr"
|
290 |
msgstr "V"
|
291 |
|
292 |
+
#: includes/texts.php:40
|
293 |
msgid "Sa"
|
294 |
msgstr "S"
|
295 |
|
296 |
+
#: includes/texts.php:44
|
297 |
msgid "Show Filters"
|
298 |
msgstr "Afficher les filtres"
|
299 |
|
300 |
+
#: includes/texts.php:45
|
301 |
msgid "Collapse Filters"
|
302 |
msgstr "Réduire les filtres"
|
303 |
|
304 |
+
#: includes/texts.php:46
|
305 |
msgid "Reset Filters"
|
306 |
msgstr "Enlever les filtres"
|
307 |
|
308 |
+
#: includes/texts.php:48
|
309 |
msgid "Days"
|
310 |
msgstr "Jours"
|
311 |
|
312 |
+
#: includes/texts.php:49
|
313 |
msgid "Categories"
|
314 |
msgstr "Catégories"
|
315 |
|
316 |
+
#: includes/texts.php:50
|
317 |
msgid "Venues"
|
318 |
msgstr "Lieux"
|
319 |
|
320 |
+
#: includes/texts.php:57
|
321 |
+
msgid "The event has just started"
|
322 |
+
msgstr "L'événement vient de commencer"
|
323 |
+
|
324 |
+
#: includes/texts.php:72
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Sundays"
|
327 |
+
msgstr "Dimanche"
|
328 |
+
|
329 |
+
#: includes/texts.php:73
|
330 |
+
#, fuzzy
|
331 |
+
msgid "Mondays"
|
332 |
+
msgstr "Lundi"
|
333 |
+
|
334 |
+
#: includes/texts.php:74
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Tuesdays"
|
337 |
+
msgstr "Mardi"
|
338 |
+
|
339 |
+
#: includes/texts.php:75
|
340 |
+
#, fuzzy
|
341 |
+
msgid "Wednesdays"
|
342 |
+
msgstr "Mercredi"
|
343 |
+
|
344 |
+
#: includes/texts.php:76
|
345 |
+
#, fuzzy
|
346 |
+
msgid "Thursdays"
|
347 |
+
msgstr "Jeudi"
|
348 |
+
|
349 |
+
#: includes/texts.php:77
|
350 |
+
#, fuzzy
|
351 |
+
msgid "Fridays"
|
352 |
+
msgstr "Vendredi"
|
353 |
+
|
354 |
+
#: includes/texts.php:78
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Saturdays"
|
357 |
+
msgstr "Samedi"
|
358 |
+
|
359 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
360 |
+
#: views/single-event.php:142 views/single-event.php:242
|
361 |
msgid "Date"
|
362 |
msgstr "Date"
|
363 |
|
364 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
365 |
msgid "Url"
|
366 |
msgstr "Url"
|
367 |
|
368 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
369 |
msgid "Organizers"
|
370 |
msgstr "Organisateurs"
|
371 |
|
372 |
+
#: views/ecwd-organizer-content.php:109
|
373 |
msgid "upcoming events"
|
374 |
msgstr "évènements à venir"
|
375 |
|
376 |
+
#: views/ecwd-venue-content.php:141
|
377 |
msgid "events"
|
378 |
msgstr "événements"
|
379 |
|
380 |
+
#: views/single-event.php:190
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Venue"
|
383 |
+
msgstr "Lieux"
|
384 |
+
|
385 |
+
#: views/single-event.php:200
|
386 |
+
msgid "Location"
|
387 |
+
msgstr "Emplacement"
|
388 |
+
|
389 |
+
#: views/single-event.php:449
|
390 |
msgid "Related events"
|
391 |
msgstr "Plus d’événements"
|
392 |
|
393 |
+
#~ msgid "What're we looking for ?"
|
394 |
+
#~ msgstr "Qu’est-ce qu’on cherche?"
|
395 |
+
|
396 |
+
#~ msgid "No additional details for this event."
|
397 |
+
#~ msgstr "Pas de détails supplémentaires pour cet événement."
|
languages/ecwd-it_IT.mo
CHANGED
Binary file
|
languages/ecwd-it_IT.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,60 +21,57 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#: includes/calendar-class.php:
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mese"
|
30 |
|
31 |
-
#: includes/calendar-class.php:
|
32 |
msgid "List"
|
33 |
msgstr "Lista"
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
msgid "Week"
|
37 |
msgstr "Settimana"
|
38 |
|
39 |
-
#: includes/calendar-class.php:
|
40 |
msgid "Day"
|
41 |
msgstr "Giorno"
|
42 |
|
43 |
-
#: includes/calendar-class.php:
|
44 |
msgid "Map"
|
45 |
msgstr "Mappa"
|
46 |
|
47 |
-
#: includes/calendar-class.php:
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Giorni"
|
50 |
|
51 |
-
#: includes/calendar-class.php:
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
-
#: includes/calendar-class.php:
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: views/ecwd-event-content.php:
|
59 |
-
#: views/ecwd-organizer-content.php:
|
60 |
-
#: views/single-event.php:
|
61 |
-
#: views/single-event.php:
|
62 |
msgid "All day"
|
63 |
msgstr "Tutto il giorno"
|
64 |
|
65 |
-
#: includes/calendar-class.php:
|
66 |
-
#: includes/calendar-class.php:
|
67 |
msgid "No events"
|
68 |
msgstr "Nessun evento"
|
69 |
|
70 |
-
#: includes/calendar-class.php:
|
71 |
msgid "No Events"
|
72 |
msgstr "Nessun Evento"
|
73 |
|
74 |
-
#: includes/calendar-class.php:
|
75 |
-
msgid "What're we looking for ?"
|
76 |
-
msgstr "Cosa stiamo cercando?"
|
77 |
-
|
78 |
-
#: includes/calendar-class.php:1237
|
79 |
msgid "More events"
|
80 |
msgstr "Altri eventi"
|
81 |
|
@@ -87,23 +83,81 @@ msgstr "Da"
|
|
87 |
msgid "To"
|
88 |
msgstr "A"
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
#: includes/ecwd-functions.php:8
|
91 |
msgid "Loading..."
|
92 |
msgstr "Caricamento..."
|
93 |
|
94 |
-
#: includes/ecwd-functions.php:
|
95 |
msgid "DAYS"
|
96 |
msgstr "GIORNI"
|
97 |
|
98 |
-
#: includes/ecwd-functions.php:
|
99 |
msgid "HOURS"
|
100 |
msgstr "ORARIO"
|
101 |
|
102 |
-
#: includes/ecwd-functions.php:
|
103 |
msgid "MINUTES"
|
104 |
msgstr "MINUTI"
|
105 |
|
106 |
-
#: includes/ecwd-functions.php:
|
107 |
msgid "SECONDS"
|
108 |
msgstr "SECONDI"
|
109 |
|
@@ -155,139 +209,189 @@ msgstr "Novembre"
|
|
155 |
msgid "December"
|
156 |
msgstr "Dicembre"
|
157 |
|
158 |
-
#: includes/texts.php:
|
159 |
msgid "Sunday"
|
160 |
msgstr "Domenica"
|
161 |
|
162 |
-
#: includes/texts.php:
|
163 |
msgid "Monday"
|
164 |
msgstr "Lunedi"
|
165 |
|
166 |
-
#: includes/texts.php:
|
167 |
msgid "Tuesday"
|
168 |
msgstr "Martedì"
|
169 |
|
170 |
-
#: includes/texts.php:
|
171 |
msgid "Wednesday"
|
172 |
msgstr "Mercoledì"
|
173 |
|
174 |
-
#: includes/texts.php:
|
175 |
msgid "Thursday"
|
176 |
msgstr "Giovedi"
|
177 |
|
178 |
-
#: includes/texts.php:
|
179 |
msgid "Friday"
|
180 |
msgstr "Venerdì"
|
181 |
|
182 |
-
#: includes/texts.php:
|
183 |
msgid "Saturday"
|
184 |
msgstr "Sabato"
|
185 |
|
186 |
-
#: includes/texts.php:
|
187 |
msgid "Sun"
|
188 |
msgstr "Dom"
|
189 |
|
190 |
-
#: includes/texts.php:
|
191 |
msgid "Mon"
|
192 |
msgstr "Lun"
|
193 |
|
194 |
-
#: includes/texts.php:
|
195 |
msgid "Tue"
|
196 |
msgstr "Mar"
|
197 |
|
198 |
-
#: includes/texts.php:
|
199 |
msgid "Wed"
|
200 |
msgstr "Mer"
|
201 |
|
202 |
-
#: includes/texts.php:
|
203 |
msgid "Thu"
|
204 |
msgstr "Gio"
|
205 |
|
206 |
-
#: includes/texts.php:
|
207 |
msgid "Fri"
|
208 |
msgstr "Ven"
|
209 |
|
210 |
-
#: includes/texts.php:
|
211 |
msgid "Sat"
|
212 |
msgstr "Sab"
|
213 |
|
214 |
-
#: includes/texts.php:
|
215 |
msgid "Su"
|
216 |
msgstr "D"
|
217 |
|
218 |
-
#: includes/texts.php:
|
219 |
msgid "Mo"
|
220 |
msgstr "L"
|
221 |
|
222 |
-
#: includes/texts.php:
|
223 |
msgid "Tu"
|
224 |
msgstr "M"
|
225 |
|
226 |
-
#: includes/texts.php:
|
227 |
msgid "We"
|
228 |
msgstr "M"
|
229 |
|
230 |
-
#: includes/texts.php:
|
231 |
msgid "Th"
|
232 |
msgstr "G"
|
233 |
|
234 |
-
#: includes/texts.php:
|
235 |
msgid "Fr"
|
236 |
msgstr "V"
|
237 |
|
238 |
-
#: includes/texts.php:
|
239 |
msgid "Sa"
|
240 |
msgstr "S"
|
241 |
|
242 |
-
#: includes/texts.php:
|
243 |
msgid "Show Filters"
|
244 |
msgstr "Mostra i filtri"
|
245 |
|
246 |
-
#: includes/texts.php:
|
247 |
msgid "Collapse Filters"
|
248 |
msgstr "Filtri Collapse"
|
249 |
|
250 |
-
#: includes/texts.php:
|
251 |
msgid "Reset Filters"
|
252 |
msgstr "Filtri Ripristina"
|
253 |
|
254 |
-
#: includes/texts.php:
|
255 |
msgid "Days"
|
256 |
msgstr "Giorni"
|
257 |
|
258 |
-
#: includes/texts.php:
|
259 |
msgid "Categories"
|
260 |
msgstr "Categorie"
|
261 |
|
262 |
-
#: includes/texts.php:
|
263 |
msgid "Venues"
|
264 |
msgstr "Luoghi"
|
265 |
|
266 |
-
#:
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Date"
|
269 |
msgstr "Data"
|
270 |
|
271 |
-
#: views/ecwd-event-content.php:
|
272 |
msgid "Url"
|
273 |
msgstr "Url"
|
274 |
|
275 |
-
#: views/ecwd-event-content.php:
|
276 |
msgid "Organizers"
|
277 |
msgstr "Organizzatori"
|
278 |
|
279 |
-
#: views/ecwd-organizer-content.php:
|
280 |
msgid "upcoming events"
|
281 |
msgstr "prossimi eventi"
|
282 |
|
283 |
-
#: views/ecwd-venue-content.php:
|
284 |
msgid "events"
|
285 |
msgstr "eventi"
|
286 |
|
287 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Related events"
|
289 |
msgstr "Eventi correlati"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:39+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: it\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mese"
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
32 |
msgid "List"
|
33 |
msgstr "Lista"
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr "Settimana"
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr "Giorno"
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr "Mappa"
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Giorni"
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr "Tutto il giorno"
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr "Nessun evento"
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr "Nessun Evento"
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
75 |
msgid "More events"
|
76 |
msgstr "Altri eventi"
|
77 |
|
83 |
msgid "To"
|
84 |
msgstr "A"
|
85 |
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
#, fuzzy
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Eventi correlati"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "giorni"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Ripetere ogni giorno"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "settimane"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Ripetere ogni settimana"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
#, fuzzy
|
111 |
+
msgid "on"
|
112 |
+
msgstr "Lun"
|
113 |
+
|
114 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
115 |
+
#, fuzzy
|
116 |
+
msgid "months"
|
117 |
+
msgstr "Mese"
|
118 |
+
|
119 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Repeat every month"
|
122 |
+
msgstr "Eventi correlati"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
125 |
+
msgid "on the same day"
|
126 |
+
msgstr "lo stesso giorno"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
129 |
+
msgid "on the"
|
130 |
+
msgstr "sul"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
133 |
+
msgid "years"
|
134 |
+
msgstr "anni"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
137 |
+
msgid "Repeat every year"
|
138 |
+
msgstr "Ripetere ogni anno"
|
139 |
+
|
140 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
141 |
+
msgid "until"
|
142 |
+
msgstr "fino a quando"
|
143 |
+
|
144 |
#: includes/ecwd-functions.php:8
|
145 |
msgid "Loading..."
|
146 |
msgstr "Caricamento..."
|
147 |
|
148 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
149 |
msgid "DAYS"
|
150 |
msgstr "GIORNI"
|
151 |
|
152 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
153 |
msgid "HOURS"
|
154 |
msgstr "ORARIO"
|
155 |
|
156 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
157 |
msgid "MINUTES"
|
158 |
msgstr "MINUTI"
|
159 |
|
160 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
161 |
msgid "SECONDS"
|
162 |
msgstr "SECONDI"
|
163 |
|
209 |
msgid "December"
|
210 |
msgstr "Dicembre"
|
211 |
|
212 |
+
#: includes/texts.php:15
|
213 |
msgid "Sunday"
|
214 |
msgstr "Domenica"
|
215 |
|
216 |
+
#: includes/texts.php:16
|
217 |
msgid "Monday"
|
218 |
msgstr "Lunedi"
|
219 |
|
220 |
+
#: includes/texts.php:17
|
221 |
msgid "Tuesday"
|
222 |
msgstr "Martedì"
|
223 |
|
224 |
+
#: includes/texts.php:18
|
225 |
msgid "Wednesday"
|
226 |
msgstr "Mercoledì"
|
227 |
|
228 |
+
#: includes/texts.php:19
|
229 |
msgid "Thursday"
|
230 |
msgstr "Giovedi"
|
231 |
|
232 |
+
#: includes/texts.php:20
|
233 |
msgid "Friday"
|
234 |
msgstr "Venerdì"
|
235 |
|
236 |
+
#: includes/texts.php:21
|
237 |
msgid "Saturday"
|
238 |
msgstr "Sabato"
|
239 |
|
240 |
+
#: includes/texts.php:25
|
241 |
msgid "Sun"
|
242 |
msgstr "Dom"
|
243 |
|
244 |
+
#: includes/texts.php:26
|
245 |
msgid "Mon"
|
246 |
msgstr "Lun"
|
247 |
|
248 |
+
#: includes/texts.php:27
|
249 |
msgid "Tue"
|
250 |
msgstr "Mar"
|
251 |
|
252 |
+
#: includes/texts.php:28
|
253 |
msgid "Wed"
|
254 |
msgstr "Mer"
|
255 |
|
256 |
+
#: includes/texts.php:29
|
257 |
msgid "Thu"
|
258 |
msgstr "Gio"
|
259 |
|
260 |
+
#: includes/texts.php:30
|
261 |
msgid "Fri"
|
262 |
msgstr "Ven"
|
263 |
|
264 |
+
#: includes/texts.php:31
|
265 |
msgid "Sat"
|
266 |
msgstr "Sab"
|
267 |
|
268 |
+
#: includes/texts.php:34
|
269 |
msgid "Su"
|
270 |
msgstr "D"
|
271 |
|
272 |
+
#: includes/texts.php:35
|
273 |
msgid "Mo"
|
274 |
msgstr "L"
|
275 |
|
276 |
+
#: includes/texts.php:36
|
277 |
msgid "Tu"
|
278 |
msgstr "M"
|
279 |
|
280 |
+
#: includes/texts.php:37
|
281 |
msgid "We"
|
282 |
msgstr "M"
|
283 |
|
284 |
+
#: includes/texts.php:38
|
285 |
msgid "Th"
|
286 |
msgstr "G"
|
287 |
|
288 |
+
#: includes/texts.php:39
|
289 |
msgid "Fr"
|
290 |
msgstr "V"
|
291 |
|
292 |
+
#: includes/texts.php:40
|
293 |
msgid "Sa"
|
294 |
msgstr "S"
|
295 |
|
296 |
+
#: includes/texts.php:44
|
297 |
msgid "Show Filters"
|
298 |
msgstr "Mostra i filtri"
|
299 |
|
300 |
+
#: includes/texts.php:45
|
301 |
msgid "Collapse Filters"
|
302 |
msgstr "Filtri Collapse"
|
303 |
|
304 |
+
#: includes/texts.php:46
|
305 |
msgid "Reset Filters"
|
306 |
msgstr "Filtri Ripristina"
|
307 |
|
308 |
+
#: includes/texts.php:48
|
309 |
msgid "Days"
|
310 |
msgstr "Giorni"
|
311 |
|
312 |
+
#: includes/texts.php:49
|
313 |
msgid "Categories"
|
314 |
msgstr "Categorie"
|
315 |
|
316 |
+
#: includes/texts.php:50
|
317 |
msgid "Venues"
|
318 |
msgstr "Luoghi"
|
319 |
|
320 |
+
#: includes/texts.php:57
|
321 |
+
msgid "The event has just started"
|
322 |
+
msgstr "L'evento è appena iniziata"
|
323 |
+
|
324 |
+
#: includes/texts.php:72
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Sundays"
|
327 |
+
msgstr "Domenica"
|
328 |
+
|
329 |
+
#: includes/texts.php:73
|
330 |
+
#, fuzzy
|
331 |
+
msgid "Mondays"
|
332 |
+
msgstr "Lunedi"
|
333 |
+
|
334 |
+
#: includes/texts.php:74
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Tuesdays"
|
337 |
+
msgstr "Martedì"
|
338 |
+
|
339 |
+
#: includes/texts.php:75
|
340 |
+
#, fuzzy
|
341 |
+
msgid "Wednesdays"
|
342 |
+
msgstr "Mercoledì"
|
343 |
+
|
344 |
+
#: includes/texts.php:76
|
345 |
+
#, fuzzy
|
346 |
+
msgid "Thursdays"
|
347 |
+
msgstr "Giovedi"
|
348 |
+
|
349 |
+
#: includes/texts.php:77
|
350 |
+
#, fuzzy
|
351 |
+
msgid "Fridays"
|
352 |
+
msgstr "Venerdì"
|
353 |
+
|
354 |
+
#: includes/texts.php:78
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Saturdays"
|
357 |
+
msgstr "Sabato"
|
358 |
+
|
359 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
360 |
+
#: views/single-event.php:142 views/single-event.php:242
|
361 |
msgid "Date"
|
362 |
msgstr "Data"
|
363 |
|
364 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
365 |
msgid "Url"
|
366 |
msgstr "Url"
|
367 |
|
368 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
369 |
msgid "Organizers"
|
370 |
msgstr "Organizzatori"
|
371 |
|
372 |
+
#: views/ecwd-organizer-content.php:109
|
373 |
msgid "upcoming events"
|
374 |
msgstr "prossimi eventi"
|
375 |
|
376 |
+
#: views/ecwd-venue-content.php:141
|
377 |
msgid "events"
|
378 |
msgstr "eventi"
|
379 |
|
380 |
+
#: views/single-event.php:190
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Venue"
|
383 |
+
msgstr "Luoghi"
|
384 |
+
|
385 |
+
#: views/single-event.php:200
|
386 |
+
msgid "Location"
|
387 |
+
msgstr "Posizione"
|
388 |
+
|
389 |
+
#: views/single-event.php:449
|
390 |
msgid "Related events"
|
391 |
msgstr "Eventi correlati"
|
392 |
|
393 |
+
#~ msgid "What're we looking for ?"
|
394 |
+
#~ msgstr "Cosa stiamo cercando?"
|
395 |
+
|
396 |
+
#~ msgid "No additional details for this event."
|
397 |
+
#~ msgstr "Nessuna ulteriori dettagli di questo evento."
|
languages/ecwd-nl_NL.mo
CHANGED
Binary file
|
languages/ecwd-nl_NL.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,60 +21,57 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#: includes/calendar-class.php:
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Maand"
|
30 |
|
31 |
-
#: includes/calendar-class.php:
|
32 |
msgid "List"
|
33 |
msgstr "Lijst"
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
msgid "Week"
|
37 |
msgstr "Week"
|
38 |
|
39 |
-
#: includes/calendar-class.php:
|
40 |
msgid "Day"
|
41 |
msgstr "Dag"
|
42 |
|
43 |
-
#: includes/calendar-class.php:
|
44 |
msgid "Map"
|
45 |
msgstr "Kaart"
|
46 |
|
47 |
-
#: includes/calendar-class.php:
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Dagen"
|
50 |
|
51 |
-
#: includes/calendar-class.php:
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Lijmspray"
|
54 |
|
55 |
-
#: includes/calendar-class.php:
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: views/ecwd-event-content.php:
|
59 |
-
#: views/ecwd-organizer-content.php:
|
60 |
-
#: views/single-event.php:
|
61 |
-
#: views/single-event.php:
|
62 |
msgid "All day"
|
63 |
msgstr "Gehele dag"
|
64 |
|
65 |
-
#: includes/calendar-class.php:
|
66 |
-
#: includes/calendar-class.php:
|
67 |
msgid "No events"
|
68 |
msgstr "Geen evenementen"
|
69 |
|
70 |
-
#: includes/calendar-class.php:
|
71 |
msgid "No Events"
|
72 |
msgstr "Geen Evenementen"
|
73 |
|
74 |
-
#: includes/calendar-class.php:
|
75 |
-
msgid "What're we looking for ?"
|
76 |
-
msgstr "Wat moeten we op zoek naar?"
|
77 |
-
|
78 |
-
#: includes/calendar-class.php:1237
|
79 |
msgid "More events"
|
80 |
msgstr "Meer Evenementen"
|
81 |
|
@@ -87,23 +83,81 @@ msgstr "Van"
|
|
87 |
msgid "To"
|
88 |
msgstr "Naar"
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
#: includes/ecwd-functions.php:8
|
91 |
msgid "Loading..."
|
92 |
msgstr "Het Laden..."
|
93 |
|
94 |
-
#: includes/ecwd-functions.php:
|
95 |
msgid "DAYS"
|
96 |
msgstr "DAGEN"
|
97 |
|
98 |
-
#: includes/ecwd-functions.php:
|
99 |
msgid "HOURS"
|
100 |
msgstr "HOURS"
|
101 |
|
102 |
-
#: includes/ecwd-functions.php:
|
103 |
msgid "MINUTES"
|
104 |
msgstr "MINUTEN"
|
105 |
|
106 |
-
#: includes/ecwd-functions.php:
|
107 |
msgid "SECONDS"
|
108 |
msgstr "SECONDEN"
|
109 |
|
@@ -155,139 +209,189 @@ msgstr "November"
|
|
155 |
msgid "December"
|
156 |
msgstr "December"
|
157 |
|
158 |
-
#: includes/texts.php:
|
159 |
msgid "Sunday"
|
160 |
msgstr "Zondag"
|
161 |
|
162 |
-
#: includes/texts.php:
|
163 |
msgid "Monday"
|
164 |
msgstr "Maandag"
|
165 |
|
166 |
-
#: includes/texts.php:
|
167 |
msgid "Tuesday"
|
168 |
msgstr "Dinsdag"
|
169 |
|
170 |
-
#: includes/texts.php:
|
171 |
msgid "Wednesday"
|
172 |
msgstr "Wonsdag"
|
173 |
|
174 |
-
#: includes/texts.php:
|
175 |
msgid "Thursday"
|
176 |
msgstr "Dnderdag"
|
177 |
|
178 |
-
#: includes/texts.php:
|
179 |
msgid "Friday"
|
180 |
msgstr "Vijdag"
|
181 |
|
182 |
-
#: includes/texts.php:
|
183 |
msgid "Saturday"
|
184 |
msgstr "Zterdag"
|
185 |
|
186 |
-
#: includes/texts.php:
|
187 |
msgid "Sun"
|
188 |
msgstr "Zon"
|
189 |
|
190 |
-
#: includes/texts.php:
|
191 |
msgid "Mon"
|
192 |
msgstr "Maa"
|
193 |
|
194 |
-
#: includes/texts.php:
|
195 |
msgid "Tue"
|
196 |
msgstr "Din"
|
197 |
|
198 |
-
#: includes/texts.php:
|
199 |
msgid "Wed"
|
200 |
msgstr "Won"
|
201 |
|
202 |
-
#: includes/texts.php:
|
203 |
msgid "Thu"
|
204 |
msgstr "Dnd"
|
205 |
|
206 |
-
#: includes/texts.php:
|
207 |
msgid "Fri"
|
208 |
msgstr "Vij"
|
209 |
|
210 |
-
#: includes/texts.php:
|
211 |
msgid "Sat"
|
212 |
msgstr "Zte"
|
213 |
|
214 |
-
#: includes/texts.php:
|
215 |
msgid "Su"
|
216 |
msgstr "Z"
|
217 |
|
218 |
-
#: includes/texts.php:
|
219 |
msgid "Mo"
|
220 |
msgstr "M"
|
221 |
|
222 |
-
#: includes/texts.php:
|
223 |
msgid "Tu"
|
224 |
msgstr "D"
|
225 |
|
226 |
-
#: includes/texts.php:
|
227 |
msgid "We"
|
228 |
msgstr "W"
|
229 |
|
230 |
-
#: includes/texts.php:
|
231 |
msgid "Th"
|
232 |
msgstr "D"
|
233 |
|
234 |
-
#: includes/texts.php:
|
235 |
msgid "Fr"
|
236 |
msgstr "V"
|
237 |
|
238 |
-
#: includes/texts.php:
|
239 |
msgid "Sa"
|
240 |
msgstr "Z"
|
241 |
|
242 |
-
#: includes/texts.php:
|
243 |
msgid "Show Filters"
|
244 |
msgstr "Toon filters"
|
245 |
|
246 |
-
#: includes/texts.php:
|
247 |
msgid "Collapse Filters"
|
248 |
msgstr "Collaplse Filters"
|
249 |
|
250 |
-
#: includes/texts.php:
|
251 |
msgid "Reset Filters"
|
252 |
msgstr "Reset Filters"
|
253 |
|
254 |
-
#: includes/texts.php:
|
255 |
msgid "Days"
|
256 |
msgstr "Dagen"
|
257 |
|
258 |
-
#: includes/texts.php:
|
259 |
msgid "Categories"
|
260 |
msgstr "Categorieën"
|
261 |
|
262 |
-
#: includes/texts.php:
|
263 |
msgid "Venues"
|
264 |
msgstr "Locaties"
|
265 |
|
266 |
-
#:
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Date"
|
269 |
msgstr "Datum"
|
270 |
|
271 |
-
#: views/ecwd-event-content.php:
|
272 |
msgid "Url"
|
273 |
msgstr "Url"
|
274 |
|
275 |
-
#: views/ecwd-event-content.php:
|
276 |
msgid "Organizers"
|
277 |
msgstr "Organisatoren"
|
278 |
|
279 |
-
#: views/ecwd-organizer-content.php:
|
280 |
msgid "upcoming events"
|
281 |
msgstr "Aankomende Evenementen"
|
282 |
|
283 |
-
#: views/ecwd-venue-content.php:
|
284 |
msgid "events"
|
285 |
msgstr "events"
|
286 |
|
287 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Related events"
|
289 |
msgstr "Verwante evenementen"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:39+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: nl_NL\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Maand"
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
32 |
msgid "List"
|
33 |
msgstr "Lijst"
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr "Week"
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr "Dag"
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr "Kaart"
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Dagen"
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Lijmspray"
|
54 |
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr "Gehele dag"
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr "Geen evenementen"
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr "Geen Evenementen"
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
75 |
msgid "More events"
|
76 |
msgstr "Meer Evenementen"
|
77 |
|
83 |
msgid "To"
|
84 |
msgstr "Naar"
|
85 |
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
#, fuzzy
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Verwante evenementen"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "dagen"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Herhaal elke dag"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "weken"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Herhaal elke week"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
#, fuzzy
|
111 |
+
msgid "on"
|
112 |
+
msgstr "Maa"
|
113 |
+
|
114 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
115 |
+
#, fuzzy
|
116 |
+
msgid "months"
|
117 |
+
msgstr "Maand"
|
118 |
+
|
119 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Repeat every month"
|
122 |
+
msgstr "Verwante evenementen"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
125 |
+
msgid "on the same day"
|
126 |
+
msgstr "op dezelfde dag"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
129 |
+
msgid "on the"
|
130 |
+
msgstr "op de"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
133 |
+
msgid "years"
|
134 |
+
msgstr "jaar"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
137 |
+
msgid "Repeat every year"
|
138 |
+
msgstr "Herhaal elk jaar"
|
139 |
+
|
140 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
141 |
+
msgid "until"
|
142 |
+
msgstr "totdat"
|
143 |
+
|
144 |
#: includes/ecwd-functions.php:8
|
145 |
msgid "Loading..."
|
146 |
msgstr "Het Laden..."
|
147 |
|
148 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
149 |
msgid "DAYS"
|
150 |
msgstr "DAGEN"
|
151 |
|
152 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
153 |
msgid "HOURS"
|
154 |
msgstr "HOURS"
|
155 |
|
156 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
157 |
msgid "MINUTES"
|
158 |
msgstr "MINUTEN"
|
159 |
|
160 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
161 |
msgid "SECONDS"
|
162 |
msgstr "SECONDEN"
|
163 |
|
209 |
msgid "December"
|
210 |
msgstr "December"
|
211 |
|
212 |
+
#: includes/texts.php:15
|
213 |
msgid "Sunday"
|
214 |
msgstr "Zondag"
|
215 |
|
216 |
+
#: includes/texts.php:16
|
217 |
msgid "Monday"
|
218 |
msgstr "Maandag"
|
219 |
|
220 |
+
#: includes/texts.php:17
|
221 |
msgid "Tuesday"
|
222 |
msgstr "Dinsdag"
|
223 |
|
224 |
+
#: includes/texts.php:18
|
225 |
msgid "Wednesday"
|
226 |
msgstr "Wonsdag"
|
227 |
|
228 |
+
#: includes/texts.php:19
|
229 |
msgid "Thursday"
|
230 |
msgstr "Dnderdag"
|
231 |
|
232 |
+
#: includes/texts.php:20
|
233 |
msgid "Friday"
|
234 |
msgstr "Vijdag"
|
235 |
|
236 |
+
#: includes/texts.php:21
|
237 |
msgid "Saturday"
|
238 |
msgstr "Zterdag"
|
239 |
|
240 |
+
#: includes/texts.php:25
|
241 |
msgid "Sun"
|
242 |
msgstr "Zon"
|
243 |
|
244 |
+
#: includes/texts.php:26
|
245 |
msgid "Mon"
|
246 |
msgstr "Maa"
|
247 |
|
248 |
+
#: includes/texts.php:27
|
249 |
msgid "Tue"
|
250 |
msgstr "Din"
|
251 |
|
252 |
+
#: includes/texts.php:28
|
253 |
msgid "Wed"
|
254 |
msgstr "Won"
|
255 |
|
256 |
+
#: includes/texts.php:29
|
257 |
msgid "Thu"
|
258 |
msgstr "Dnd"
|
259 |
|
260 |
+
#: includes/texts.php:30
|
261 |
msgid "Fri"
|
262 |
msgstr "Vij"
|
263 |
|
264 |
+
#: includes/texts.php:31
|
265 |
msgid "Sat"
|
266 |
msgstr "Zte"
|
267 |
|
268 |
+
#: includes/texts.php:34
|
269 |
msgid "Su"
|
270 |
msgstr "Z"
|
271 |
|
272 |
+
#: includes/texts.php:35
|
273 |
msgid "Mo"
|
274 |
msgstr "M"
|
275 |
|
276 |
+
#: includes/texts.php:36
|
277 |
msgid "Tu"
|
278 |
msgstr "D"
|
279 |
|
280 |
+
#: includes/texts.php:37
|
281 |
msgid "We"
|
282 |
msgstr "W"
|
283 |
|
284 |
+
#: includes/texts.php:38
|
285 |
msgid "Th"
|
286 |
msgstr "D"
|
287 |
|
288 |
+
#: includes/texts.php:39
|
289 |
msgid "Fr"
|
290 |
msgstr "V"
|
291 |
|
292 |
+
#: includes/texts.php:40
|
293 |
msgid "Sa"
|
294 |
msgstr "Z"
|
295 |
|
296 |
+
#: includes/texts.php:44
|
297 |
msgid "Show Filters"
|
298 |
msgstr "Toon filters"
|
299 |
|
300 |
+
#: includes/texts.php:45
|
301 |
msgid "Collapse Filters"
|
302 |
msgstr "Collaplse Filters"
|
303 |
|
304 |
+
#: includes/texts.php:46
|
305 |
msgid "Reset Filters"
|
306 |
msgstr "Reset Filters"
|
307 |
|
308 |
+
#: includes/texts.php:48
|
309 |
msgid "Days"
|
310 |
msgstr "Dagen"
|
311 |
|
312 |
+
#: includes/texts.php:49
|
313 |
msgid "Categories"
|
314 |
msgstr "Categorieën"
|
315 |
|
316 |
+
#: includes/texts.php:50
|
317 |
msgid "Venues"
|
318 |
msgstr "Locaties"
|
319 |
|
320 |
+
#: includes/texts.php:57
|
321 |
+
msgid "The event has just started"
|
322 |
+
msgstr "Het evenement is net begonnen"
|
323 |
+
|
324 |
+
#: includes/texts.php:72
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Sundays"
|
327 |
+
msgstr "Zondag"
|
328 |
+
|
329 |
+
#: includes/texts.php:73
|
330 |
+
#, fuzzy
|
331 |
+
msgid "Mondays"
|
332 |
+
msgstr "Maandag"
|
333 |
+
|
334 |
+
#: includes/texts.php:74
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Tuesdays"
|
337 |
+
msgstr "Dinsdag"
|
338 |
+
|
339 |
+
#: includes/texts.php:75
|
340 |
+
#, fuzzy
|
341 |
+
msgid "Wednesdays"
|
342 |
+
msgstr "Wonsdag"
|
343 |
+
|
344 |
+
#: includes/texts.php:76
|
345 |
+
#, fuzzy
|
346 |
+
msgid "Thursdays"
|
347 |
+
msgstr "Dnderdag"
|
348 |
+
|
349 |
+
#: includes/texts.php:77
|
350 |
+
#, fuzzy
|
351 |
+
msgid "Fridays"
|
352 |
+
msgstr "Vijdag"
|
353 |
+
|
354 |
+
#: includes/texts.php:78
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Saturdays"
|
357 |
+
msgstr "Zterdag"
|
358 |
+
|
359 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
360 |
+
#: views/single-event.php:142 views/single-event.php:242
|
361 |
msgid "Date"
|
362 |
msgstr "Datum"
|
363 |
|
364 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
365 |
msgid "Url"
|
366 |
msgstr "Url"
|
367 |
|
368 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
369 |
msgid "Organizers"
|
370 |
msgstr "Organisatoren"
|
371 |
|
372 |
+
#: views/ecwd-organizer-content.php:109
|
373 |
msgid "upcoming events"
|
374 |
msgstr "Aankomende Evenementen"
|
375 |
|
376 |
+
#: views/ecwd-venue-content.php:141
|
377 |
msgid "events"
|
378 |
msgstr "events"
|
379 |
|
380 |
+
#: views/single-event.php:190
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Venue"
|
383 |
+
msgstr "Locaties"
|
384 |
+
|
385 |
+
#: views/single-event.php:200
|
386 |
+
msgid "Location"
|
387 |
+
msgstr "Locatie"
|
388 |
+
|
389 |
+
#: views/single-event.php:449
|
390 |
msgid "Related events"
|
391 |
msgstr "Verwante evenementen"
|
392 |
|
393 |
+
#~ msgid "What're we looking for ?"
|
394 |
+
#~ msgstr "Wat moeten we op zoek naar?"
|
395 |
+
|
396 |
+
#~ msgid "No additional details for this event."
|
397 |
+
#~ msgstr "Geen extra informatie voor deze gebeurtenis."
|
languages/ecwd-pt_PT.mo
CHANGED
Binary file
|
languages/ecwd-pt_PT.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pt\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,60 +21,57 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#: includes/calendar-class.php:
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mês"
|
30 |
|
31 |
-
#: includes/calendar-class.php:
|
32 |
msgid "List"
|
33 |
msgstr "Lista"
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
msgid "Week"
|
37 |
msgstr "Semana"
|
38 |
|
39 |
-
#: includes/calendar-class.php:
|
40 |
msgid "Day"
|
41 |
msgstr "Dia"
|
42 |
|
43 |
-
#: includes/calendar-class.php:
|
44 |
msgid "Map"
|
45 |
msgstr "Mapa"
|
46 |
|
47 |
-
#: includes/calendar-class.php:
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Dias"
|
50 |
|
51 |
-
#: includes/calendar-class.php:
|
52 |
msgid "Posterboard"
|
53 |
-
msgstr ""
|
54 |
-
|
55 |
-
#: includes/calendar-class.php:
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: views/ecwd-event-content.php:
|
59 |
-
#: views/ecwd-organizer-content.php:
|
60 |
-
#: views/single-event.php:
|
61 |
-
#: views/single-event.php:
|
62 |
msgid "All day"
|
63 |
msgstr "Dia inteiro"
|
64 |
|
65 |
-
#: includes/calendar-class.php:
|
66 |
-
#: includes/calendar-class.php:
|
67 |
msgid "No events"
|
68 |
msgstr "Não há eventos"
|
69 |
|
70 |
-
#: includes/calendar-class.php:
|
71 |
msgid "No Events"
|
72 |
msgstr "Não há eventos"
|
73 |
|
74 |
-
#: includes/calendar-class.php:
|
75 |
-
msgid "What're we looking for ?"
|
76 |
-
msgstr "O que vocę estamos procurando?"
|
77 |
-
|
78 |
-
#: includes/calendar-class.php:1237
|
79 |
msgid "More events"
|
80 |
msgstr "Mais eventos"
|
81 |
|
@@ -87,23 +83,81 @@ msgstr "De"
|
|
87 |
msgid "To"
|
88 |
msgstr "Para"
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
#: includes/ecwd-functions.php:8
|
91 |
msgid "Loading..."
|
92 |
msgstr "Carregamento"
|
93 |
|
94 |
-
#: includes/ecwd-functions.php:
|
95 |
msgid "DAYS"
|
96 |
msgstr "DIAS"
|
97 |
|
98 |
-
#: includes/ecwd-functions.php:
|
99 |
msgid "HOURS"
|
100 |
msgstr "HORAS"
|
101 |
|
102 |
-
#: includes/ecwd-functions.php:
|
103 |
msgid "MINUTES"
|
104 |
msgstr "ATAS"
|
105 |
|
106 |
-
#: includes/ecwd-functions.php:
|
107 |
msgid "SECONDS"
|
108 |
msgstr "SEGUNDOS"
|
109 |
|
@@ -155,139 +209,189 @@ msgstr "Novembro"
|
|
155 |
msgid "December"
|
156 |
msgstr "Dezembro"
|
157 |
|
158 |
-
#: includes/texts.php:
|
159 |
msgid "Sunday"
|
160 |
msgstr "Domingo"
|
161 |
|
162 |
-
#: includes/texts.php:
|
163 |
msgid "Monday"
|
164 |
msgstr "Segunda"
|
165 |
|
166 |
-
#: includes/texts.php:
|
167 |
msgid "Tuesday"
|
168 |
msgstr "Terça"
|
169 |
|
170 |
-
#: includes/texts.php:
|
171 |
msgid "Wednesday"
|
172 |
msgstr "Quarta"
|
173 |
|
174 |
-
#: includes/texts.php:
|
175 |
msgid "Thursday"
|
176 |
msgstr "Quinta"
|
177 |
|
178 |
-
#: includes/texts.php:
|
179 |
msgid "Friday"
|
180 |
msgstr "Sexta"
|
181 |
|
182 |
-
#: includes/texts.php:
|
183 |
msgid "Saturday"
|
184 |
msgstr "Sábado"
|
185 |
|
186 |
-
#: includes/texts.php:
|
187 |
msgid "Sun"
|
188 |
msgstr "Dom"
|
189 |
|
190 |
-
#: includes/texts.php:
|
191 |
msgid "Mon"
|
192 |
msgstr "Seg"
|
193 |
|
194 |
-
#: includes/texts.php:
|
195 |
msgid "Tue"
|
196 |
msgstr "Ter"
|
197 |
|
198 |
-
#: includes/texts.php:
|
199 |
msgid "Wed"
|
200 |
msgstr "Qua"
|
201 |
|
202 |
-
#: includes/texts.php:
|
203 |
msgid "Thu"
|
204 |
msgstr "Qui"
|
205 |
|
206 |
-
#: includes/texts.php:
|
207 |
msgid "Fri"
|
208 |
msgstr "Sex"
|
209 |
|
210 |
-
#: includes/texts.php:
|
211 |
msgid "Sat"
|
212 |
msgstr "Sab"
|
213 |
|
214 |
-
#: includes/texts.php:
|
215 |
msgid "Su"
|
216 |
msgstr "1ª"
|
217 |
|
218 |
-
#: includes/texts.php:
|
219 |
msgid "Mo"
|
220 |
msgstr "2ª"
|
221 |
|
222 |
-
#: includes/texts.php:
|
223 |
msgid "Tu"
|
224 |
msgstr "3ª"
|
225 |
|
226 |
-
#: includes/texts.php:
|
227 |
msgid "We"
|
228 |
msgstr "4ª"
|
229 |
|
230 |
-
#: includes/texts.php:
|
231 |
msgid "Th"
|
232 |
msgstr "5ª"
|
233 |
|
234 |
-
#: includes/texts.php:
|
235 |
msgid "Fr"
|
236 |
msgstr "6ª"
|
237 |
|
238 |
-
#: includes/texts.php:
|
239 |
msgid "Sa"
|
240 |
msgstr "7ª"
|
241 |
|
242 |
-
#: includes/texts.php:
|
243 |
msgid "Show Filters"
|
244 |
msgstr "Mostrar Filtros"
|
245 |
|
246 |
-
#: includes/texts.php:
|
247 |
msgid "Collapse Filters"
|
248 |
msgstr "Recolher Filtros"
|
249 |
|
250 |
-
#: includes/texts.php:
|
251 |
msgid "Reset Filters"
|
252 |
msgstr "Reset Filtros"
|
253 |
|
254 |
-
#: includes/texts.php:
|
255 |
msgid "Days"
|
256 |
msgstr "Dias"
|
257 |
|
258 |
-
#: includes/texts.php:
|
259 |
msgid "Categories"
|
260 |
msgstr "Categorias"
|
261 |
|
262 |
-
#: includes/texts.php:
|
263 |
msgid "Venues"
|
264 |
msgstr "Locais"
|
265 |
|
266 |
-
#:
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Date"
|
269 |
msgstr "Data"
|
270 |
|
271 |
-
#: views/ecwd-event-content.php:
|
272 |
msgid "Url"
|
273 |
-
msgstr ""
|
274 |
|
275 |
-
#: views/ecwd-event-content.php:
|
276 |
msgid "Organizers"
|
277 |
msgstr "Organizadores"
|
278 |
|
279 |
-
#: views/ecwd-organizer-content.php:
|
280 |
msgid "upcoming events"
|
281 |
msgstr "próximos eventos"
|
282 |
|
283 |
-
#: views/ecwd-venue-content.php:
|
284 |
msgid "events"
|
285 |
msgstr "eventos"
|
286 |
|
287 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Related events"
|
289 |
msgstr "Outros eventos"
|
290 |
|
291 |
-
|
292 |
-
|
293 |
-
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:40+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: pt\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Mês"
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
32 |
msgid "List"
|
33 |
msgstr "Lista"
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr "Semana"
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr "Dia"
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr "Mapa"
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Dias"
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
+
msgstr "Cartolina"
|
54 |
+
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr "Dia inteiro"
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr "Não há eventos"
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr "Não há eventos"
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
75 |
msgid "More events"
|
76 |
msgstr "Mais eventos"
|
77 |
|
83 |
msgid "To"
|
84 |
msgstr "Para"
|
85 |
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
#, fuzzy
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Outros eventos"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "Dias"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Repita todos os dias"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "Semanas"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Repita a cada semana"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
#, fuzzy
|
111 |
+
msgid "on"
|
112 |
+
msgstr "Seg"
|
113 |
+
|
114 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
115 |
+
#, fuzzy
|
116 |
+
msgid "months"
|
117 |
+
msgstr "Mês"
|
118 |
+
|
119 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
120 |
+
#, fuzzy
|
121 |
+
msgid "Repeat every month"
|
122 |
+
msgstr "Outros eventos"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
125 |
+
msgid "on the same day"
|
126 |
+
msgstr "no mesmo dia"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
129 |
+
msgid "on the"
|
130 |
+
msgstr "no"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
133 |
+
msgid "years"
|
134 |
+
msgstr "anos"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
137 |
+
msgid "Repeat every year"
|
138 |
+
msgstr "Repita a cada ano"
|
139 |
+
|
140 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
141 |
+
msgid "until"
|
142 |
+
msgstr "até"
|
143 |
+
|
144 |
#: includes/ecwd-functions.php:8
|
145 |
msgid "Loading..."
|
146 |
msgstr "Carregamento"
|
147 |
|
148 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
149 |
msgid "DAYS"
|
150 |
msgstr "DIAS"
|
151 |
|
152 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
153 |
msgid "HOURS"
|
154 |
msgstr "HORAS"
|
155 |
|
156 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
157 |
msgid "MINUTES"
|
158 |
msgstr "ATAS"
|
159 |
|
160 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
161 |
msgid "SECONDS"
|
162 |
msgstr "SEGUNDOS"
|
163 |
|
209 |
msgid "December"
|
210 |
msgstr "Dezembro"
|
211 |
|
212 |
+
#: includes/texts.php:15
|
213 |
msgid "Sunday"
|
214 |
msgstr "Domingo"
|
215 |
|
216 |
+
#: includes/texts.php:16
|
217 |
msgid "Monday"
|
218 |
msgstr "Segunda"
|
219 |
|
220 |
+
#: includes/texts.php:17
|
221 |
msgid "Tuesday"
|
222 |
msgstr "Terça"
|
223 |
|
224 |
+
#: includes/texts.php:18
|
225 |
msgid "Wednesday"
|
226 |
msgstr "Quarta"
|
227 |
|
228 |
+
#: includes/texts.php:19
|
229 |
msgid "Thursday"
|
230 |
msgstr "Quinta"
|
231 |
|
232 |
+
#: includes/texts.php:20
|
233 |
msgid "Friday"
|
234 |
msgstr "Sexta"
|
235 |
|
236 |
+
#: includes/texts.php:21
|
237 |
msgid "Saturday"
|
238 |
msgstr "Sábado"
|
239 |
|
240 |
+
#: includes/texts.php:25
|
241 |
msgid "Sun"
|
242 |
msgstr "Dom"
|
243 |
|
244 |
+
#: includes/texts.php:26
|
245 |
msgid "Mon"
|
246 |
msgstr "Seg"
|
247 |
|
248 |
+
#: includes/texts.php:27
|
249 |
msgid "Tue"
|
250 |
msgstr "Ter"
|
251 |
|
252 |
+
#: includes/texts.php:28
|
253 |
msgid "Wed"
|
254 |
msgstr "Qua"
|
255 |
|
256 |
+
#: includes/texts.php:29
|
257 |
msgid "Thu"
|
258 |
msgstr "Qui"
|
259 |
|
260 |
+
#: includes/texts.php:30
|
261 |
msgid "Fri"
|
262 |
msgstr "Sex"
|
263 |
|
264 |
+
#: includes/texts.php:31
|
265 |
msgid "Sat"
|
266 |
msgstr "Sab"
|
267 |
|
268 |
+
#: includes/texts.php:34
|
269 |
msgid "Su"
|
270 |
msgstr "1ª"
|
271 |
|
272 |
+
#: includes/texts.php:35
|
273 |
msgid "Mo"
|
274 |
msgstr "2ª"
|
275 |
|
276 |
+
#: includes/texts.php:36
|
277 |
msgid "Tu"
|
278 |
msgstr "3ª"
|
279 |
|
280 |
+
#: includes/texts.php:37
|
281 |
msgid "We"
|
282 |
msgstr "4ª"
|
283 |
|
284 |
+
#: includes/texts.php:38
|
285 |
msgid "Th"
|
286 |
msgstr "5ª"
|
287 |
|
288 |
+
#: includes/texts.php:39
|
289 |
msgid "Fr"
|
290 |
msgstr "6ª"
|
291 |
|
292 |
+
#: includes/texts.php:40
|
293 |
msgid "Sa"
|
294 |
msgstr "7ª"
|
295 |
|
296 |
+
#: includes/texts.php:44
|
297 |
msgid "Show Filters"
|
298 |
msgstr "Mostrar Filtros"
|
299 |
|
300 |
+
#: includes/texts.php:45
|
301 |
msgid "Collapse Filters"
|
302 |
msgstr "Recolher Filtros"
|
303 |
|
304 |
+
#: includes/texts.php:46
|
305 |
msgid "Reset Filters"
|
306 |
msgstr "Reset Filtros"
|
307 |
|
308 |
+
#: includes/texts.php:48
|
309 |
msgid "Days"
|
310 |
msgstr "Dias"
|
311 |
|
312 |
+
#: includes/texts.php:49
|
313 |
msgid "Categories"
|
314 |
msgstr "Categorias"
|
315 |
|
316 |
+
#: includes/texts.php:50
|
317 |
msgid "Venues"
|
318 |
msgstr "Locais"
|
319 |
|
320 |
+
#: includes/texts.php:57
|
321 |
+
msgid "The event has just started"
|
322 |
+
msgstr "O evento acaba de começar"
|
323 |
+
|
324 |
+
#: includes/texts.php:72
|
325 |
+
#, fuzzy
|
326 |
+
msgid "Sundays"
|
327 |
+
msgstr "Domingo"
|
328 |
+
|
329 |
+
#: includes/texts.php:73
|
330 |
+
#, fuzzy
|
331 |
+
msgid "Mondays"
|
332 |
+
msgstr "Segunda"
|
333 |
+
|
334 |
+
#: includes/texts.php:74
|
335 |
+
#, fuzzy
|
336 |
+
msgid "Tuesdays"
|
337 |
+
msgstr "Terça"
|
338 |
+
|
339 |
+
#: includes/texts.php:75
|
340 |
+
#, fuzzy
|
341 |
+
msgid "Wednesdays"
|
342 |
+
msgstr "Quarta"
|
343 |
+
|
344 |
+
#: includes/texts.php:76
|
345 |
+
#, fuzzy
|
346 |
+
msgid "Thursdays"
|
347 |
+
msgstr "Quinta"
|
348 |
+
|
349 |
+
#: includes/texts.php:77
|
350 |
+
#, fuzzy
|
351 |
+
msgid "Fridays"
|
352 |
+
msgstr "Sexta"
|
353 |
+
|
354 |
+
#: includes/texts.php:78
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Saturdays"
|
357 |
+
msgstr "Sábado"
|
358 |
+
|
359 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
360 |
+
#: views/single-event.php:142 views/single-event.php:242
|
361 |
msgid "Date"
|
362 |
msgstr "Data"
|
363 |
|
364 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
365 |
msgid "Url"
|
366 |
+
msgstr "Url"
|
367 |
|
368 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
369 |
msgid "Organizers"
|
370 |
msgstr "Organizadores"
|
371 |
|
372 |
+
#: views/ecwd-organizer-content.php:109
|
373 |
msgid "upcoming events"
|
374 |
msgstr "próximos eventos"
|
375 |
|
376 |
+
#: views/ecwd-venue-content.php:141
|
377 |
msgid "events"
|
378 |
msgstr "eventos"
|
379 |
|
380 |
+
#: views/single-event.php:190
|
381 |
+
#, fuzzy
|
382 |
+
msgid "Venue"
|
383 |
+
msgstr "Locais"
|
384 |
+
|
385 |
+
#: views/single-event.php:200
|
386 |
+
msgid "Location"
|
387 |
+
msgstr "Localização"
|
388 |
+
|
389 |
+
#: views/single-event.php:449
|
390 |
msgid "Related events"
|
391 |
msgstr "Outros eventos"
|
392 |
|
393 |
+
#~ msgid "What're we looking for ?"
|
394 |
+
#~ msgstr "O que vocę estamos procurando?"
|
395 |
+
|
396 |
+
#~ msgid "No additional details for this event."
|
397 |
+
#~ msgstr "Não há detalhes adicionais para este evento."
|
languages/ecwd-ru_RU.mo
CHANGED
Binary file
|
languages/ecwd-ru_RU.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
@@ -24,59 +24,55 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
25 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
26 |
|
27 |
-
#: includes/calendar-class.php:
|
28 |
#: views/widgets.php:168
|
29 |
msgid "Month"
|
30 |
msgstr "Месяц"
|
31 |
|
32 |
-
#: includes/calendar-class.php:
|
33 |
msgid "List"
|
34 |
msgstr "Список"
|
35 |
|
36 |
-
#: includes/calendar-class.php:
|
37 |
msgid "Week"
|
38 |
msgstr "Неделя"
|
39 |
|
40 |
-
#: includes/calendar-class.php:
|
41 |
msgid "Day"
|
42 |
msgstr "День"
|
43 |
|
44 |
-
#: includes/calendar-class.php:
|
45 |
msgid "Map"
|
46 |
msgstr "Карта"
|
47 |
|
48 |
-
#: includes/calendar-class.php:
|
49 |
msgid "4 Days"
|
50 |
msgstr "4 Суток"
|
51 |
|
52 |
-
#: includes/calendar-class.php:
|
53 |
msgid "Posterboard"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: includes/calendar-class.php:
|
59 |
-
#: views/ecwd-event-content.php:
|
60 |
-
#: views/ecwd-organizer-content.php:
|
61 |
-
#: views/single-event.php:
|
62 |
-
#: views/single-event.php:
|
63 |
msgid "All day"
|
64 |
msgstr "Весь День"
|
65 |
|
66 |
-
#: includes/calendar-class.php:
|
67 |
-
#: includes/calendar-class.php:
|
68 |
msgid "No events"
|
69 |
msgstr "Нет событий"
|
70 |
|
71 |
-
#: includes/calendar-class.php:
|
72 |
msgid "No Events"
|
73 |
msgstr "Нет Событий"
|
74 |
|
75 |
-
#: includes/calendar-class.php:
|
76 |
-
msgid "What're we looking for ?"
|
77 |
-
msgstr "Что мы ищем?"
|
78 |
-
|
79 |
-
#: includes/calendar-class.php:1237
|
80 |
msgid "More events"
|
81 |
msgstr "Другие события"
|
82 |
|
@@ -88,23 +84,78 @@ msgstr "От"
|
|
88 |
msgid "To"
|
89 |
msgstr "до"
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
#: includes/ecwd-functions.php:8
|
92 |
msgid "Loading..."
|
93 |
msgstr "Загрузка..."
|
94 |
|
95 |
-
#: includes/ecwd-functions.php:
|
96 |
msgid "DAYS"
|
97 |
msgstr "ДНЕЙ"
|
98 |
|
99 |
-
#: includes/ecwd-functions.php:
|
100 |
msgid "HOURS"
|
101 |
msgstr "ЧАСОВ"
|
102 |
|
103 |
-
#: includes/ecwd-functions.php:
|
104 |
msgid "MINUTES"
|
105 |
msgstr "МИНУТ"
|
106 |
|
107 |
-
#: includes/ecwd-functions.php:
|
108 |
msgid "SECONDS"
|
109 |
msgstr "СЕКУНД"
|
110 |
|
@@ -156,139 +207,189 @@ msgstr "Ноябрь"
|
|
156 |
msgid "December"
|
157 |
msgstr "Декабрь"
|
158 |
|
159 |
-
#: includes/texts.php:
|
160 |
msgid "Sunday"
|
161 |
msgstr "Воскресенье"
|
162 |
|
163 |
-
#: includes/texts.php:
|
164 |
msgid "Monday"
|
165 |
msgstr "Понедельник"
|
166 |
|
167 |
-
#: includes/texts.php:
|
168 |
msgid "Tuesday"
|
169 |
msgstr "Вторник"
|
170 |
|
171 |
-
#: includes/texts.php:
|
172 |
msgid "Wednesday"
|
173 |
msgstr "Среда"
|
174 |
|
175 |
-
#: includes/texts.php:
|
176 |
msgid "Thursday"
|
177 |
msgstr "Четверг"
|
178 |
|
179 |
-
#: includes/texts.php:
|
180 |
msgid "Friday"
|
181 |
msgstr "Пятница"
|
182 |
|
183 |
-
#: includes/texts.php:
|
184 |
msgid "Saturday"
|
185 |
msgstr "Суббота"
|
186 |
|
187 |
-
#: includes/texts.php:
|
188 |
msgid "Sun"
|
189 |
msgstr "Вс"
|
190 |
|
191 |
-
#: includes/texts.php:
|
192 |
msgid "Mon"
|
193 |
msgstr "Пн"
|
194 |
|
195 |
-
#: includes/texts.php:
|
196 |
msgid "Tue"
|
197 |
msgstr "Вт"
|
198 |
|
199 |
-
#: includes/texts.php:
|
200 |
msgid "Wed"
|
201 |
msgstr "Ср"
|
202 |
|
203 |
-
#: includes/texts.php:
|
204 |
msgid "Thu"
|
205 |
msgstr "Чт"
|
206 |
|
207 |
-
#: includes/texts.php:
|
208 |
msgid "Fri"
|
209 |
msgstr "Пт"
|
210 |
|
211 |
-
#: includes/texts.php:
|
212 |
msgid "Sat"
|
213 |
msgstr "Сб"
|
214 |
|
215 |
-
#: includes/texts.php:
|
216 |
msgid "Su"
|
217 |
msgstr "В"
|
218 |
|
219 |
-
#: includes/texts.php:
|
220 |
msgid "Mo"
|
221 |
msgstr "П"
|
222 |
|
223 |
-
#: includes/texts.php:
|
224 |
msgid "Tu"
|
225 |
msgstr "В"
|
226 |
|
227 |
-
#: includes/texts.php:
|
228 |
msgid "We"
|
229 |
msgstr "С"
|
230 |
|
231 |
-
#: includes/texts.php:
|
232 |
msgid "Th"
|
233 |
msgstr "Ч"
|
234 |
|
235 |
-
#: includes/texts.php:
|
236 |
msgid "Fr"
|
237 |
msgstr "П"
|
238 |
|
239 |
-
#: includes/texts.php:
|
240 |
msgid "Sa"
|
241 |
msgstr "С"
|
242 |
|
243 |
-
#: includes/texts.php:
|
244 |
msgid "Show Filters"
|
245 |
msgstr "Показать Фильтры"
|
246 |
|
247 |
-
#: includes/texts.php:
|
248 |
msgid "Collapse Filters"
|
249 |
msgstr "Свернуть Фильтры"
|
250 |
|
251 |
-
#: includes/texts.php:
|
252 |
msgid "Reset Filters"
|
253 |
msgstr "Сбросить фильтры"
|
254 |
|
255 |
-
#: includes/texts.php:
|
256 |
msgid "Days"
|
257 |
msgstr "Дни недели"
|
258 |
|
259 |
-
#: includes/texts.php:
|
260 |
msgid "Categories"
|
261 |
msgstr "Категории"
|
262 |
|
263 |
-
#: includes/texts.php:
|
264 |
msgid "Venues"
|
265 |
msgstr "Места"
|
266 |
|
267 |
-
#:
|
268 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
msgid "Date"
|
270 |
msgstr "Дата"
|
271 |
|
272 |
-
#: views/ecwd-event-content.php:
|
273 |
msgid "Url"
|
274 |
-
msgstr ""
|
275 |
|
276 |
-
#: views/ecwd-event-content.php:
|
277 |
msgid "Organizers"
|
278 |
msgstr "Организаторы"
|
279 |
|
280 |
-
#: views/ecwd-organizer-content.php:
|
281 |
msgid "upcoming events"
|
282 |
msgstr "Предстоящие События"
|
283 |
|
284 |
-
#: views/ecwd-venue-content.php:
|
285 |
msgid "events"
|
286 |
msgstr "события"
|
287 |
|
288 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
msgid "Related events"
|
290 |
msgstr "Похожие события"
|
291 |
|
292 |
-
|
293 |
-
|
294 |
-
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 15:32+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: ru\n"
|
24 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
25 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
26 |
|
27 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
28 |
#: views/widgets.php:168
|
29 |
msgid "Month"
|
30 |
msgstr "Месяц"
|
31 |
|
32 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
33 |
msgid "List"
|
34 |
msgstr "Список"
|
35 |
|
36 |
+
#: includes/calendar-class.php:179
|
37 |
msgid "Week"
|
38 |
msgstr "Неделя"
|
39 |
|
40 |
+
#: includes/calendar-class.php:183
|
41 |
msgid "Day"
|
42 |
msgstr "День"
|
43 |
|
44 |
+
#: includes/calendar-class.php:186
|
45 |
msgid "Map"
|
46 |
msgstr "Карта"
|
47 |
|
48 |
+
#: includes/calendar-class.php:188
|
49 |
msgid "4 Days"
|
50 |
msgstr "4 Суток"
|
51 |
|
52 |
+
#: includes/calendar-class.php:191
|
53 |
msgid "Posterboard"
|
54 |
+
msgstr "Афиша"
|
55 |
+
|
56 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
57 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
58 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
59 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
60 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
61 |
+
#: views/single-event.php:151 views/single-event.php:247
|
62 |
+
#: views/single-event.php:487
|
63 |
msgid "All day"
|
64 |
msgstr "Весь День"
|
65 |
|
66 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
67 |
+
#: includes/calendar-class.php:1386
|
68 |
msgid "No events"
|
69 |
msgstr "Нет событий"
|
70 |
|
71 |
+
#: includes/calendar-class.php:644
|
72 |
msgid "No Events"
|
73 |
msgstr "Нет Событий"
|
74 |
|
75 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
76 |
msgid "More events"
|
77 |
msgstr "Другие события"
|
78 |
|
84 |
msgid "To"
|
85 |
msgstr "до"
|
86 |
|
87 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
88 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
89 |
+
#: includes/texts.php:60
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr "Повторяется каждый(ую)"
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr "дней"
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr "Повторяется ежедневно"
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr "недели"
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr "Повторяется еженедельно"
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
msgid "on"
|
111 |
+
msgstr "в"
|
112 |
+
|
113 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
114 |
+
#, fuzzy
|
115 |
+
msgid "months"
|
116 |
+
msgstr "Месяц"
|
117 |
+
|
118 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
119 |
+
msgid "Repeat every month"
|
120 |
+
msgstr "Повторяется ежемесячно"
|
121 |
+
|
122 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
123 |
+
msgid "on the same day"
|
124 |
+
msgstr "в тот же день"
|
125 |
+
|
126 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
127 |
+
msgid "on the"
|
128 |
+
msgstr "на"
|
129 |
+
|
130 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
131 |
+
msgid "years"
|
132 |
+
msgstr "годы"
|
133 |
+
|
134 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
135 |
+
msgid "Repeat every year"
|
136 |
+
msgstr "Повторит каждый год"
|
137 |
+
|
138 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
139 |
+
msgid "until"
|
140 |
+
msgstr "до"
|
141 |
+
|
142 |
#: includes/ecwd-functions.php:8
|
143 |
msgid "Loading..."
|
144 |
msgstr "Загрузка..."
|
145 |
|
146 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
147 |
msgid "DAYS"
|
148 |
msgstr "ДНЕЙ"
|
149 |
|
150 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
151 |
msgid "HOURS"
|
152 |
msgstr "ЧАСОВ"
|
153 |
|
154 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
155 |
msgid "MINUTES"
|
156 |
msgstr "МИНУТ"
|
157 |
|
158 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
159 |
msgid "SECONDS"
|
160 |
msgstr "СЕКУНД"
|
161 |
|
207 |
msgid "December"
|
208 |
msgstr "Декабрь"
|
209 |
|
210 |
+
#: includes/texts.php:15
|
211 |
msgid "Sunday"
|
212 |
msgstr "Воскресенье"
|
213 |
|
214 |
+
#: includes/texts.php:16
|
215 |
msgid "Monday"
|
216 |
msgstr "Понедельник"
|
217 |
|
218 |
+
#: includes/texts.php:17
|
219 |
msgid "Tuesday"
|
220 |
msgstr "Вторник"
|
221 |
|
222 |
+
#: includes/texts.php:18
|
223 |
msgid "Wednesday"
|
224 |
msgstr "Среда"
|
225 |
|
226 |
+
#: includes/texts.php:19
|
227 |
msgid "Thursday"
|
228 |
msgstr "Четверг"
|
229 |
|
230 |
+
#: includes/texts.php:20
|
231 |
msgid "Friday"
|
232 |
msgstr "Пятница"
|
233 |
|
234 |
+
#: includes/texts.php:21
|
235 |
msgid "Saturday"
|
236 |
msgstr "Суббота"
|
237 |
|
238 |
+
#: includes/texts.php:25
|
239 |
msgid "Sun"
|
240 |
msgstr "Вс"
|
241 |
|
242 |
+
#: includes/texts.php:26
|
243 |
msgid "Mon"
|
244 |
msgstr "Пн"
|
245 |
|
246 |
+
#: includes/texts.php:27
|
247 |
msgid "Tue"
|
248 |
msgstr "Вт"
|
249 |
|
250 |
+
#: includes/texts.php:28
|
251 |
msgid "Wed"
|
252 |
msgstr "Ср"
|
253 |
|
254 |
+
#: includes/texts.php:29
|
255 |
msgid "Thu"
|
256 |
msgstr "Чт"
|
257 |
|
258 |
+
#: includes/texts.php:30
|
259 |
msgid "Fri"
|
260 |
msgstr "Пт"
|
261 |
|
262 |
+
#: includes/texts.php:31
|
263 |
msgid "Sat"
|
264 |
msgstr "Сб"
|
265 |
|
266 |
+
#: includes/texts.php:34
|
267 |
msgid "Su"
|
268 |
msgstr "В"
|
269 |
|
270 |
+
#: includes/texts.php:35
|
271 |
msgid "Mo"
|
272 |
msgstr "П"
|
273 |
|
274 |
+
#: includes/texts.php:36
|
275 |
msgid "Tu"
|
276 |
msgstr "В"
|
277 |
|
278 |
+
#: includes/texts.php:37
|
279 |
msgid "We"
|
280 |
msgstr "С"
|
281 |
|
282 |
+
#: includes/texts.php:38
|
283 |
msgid "Th"
|
284 |
msgstr "Ч"
|
285 |
|
286 |
+
#: includes/texts.php:39
|
287 |
msgid "Fr"
|
288 |
msgstr "П"
|
289 |
|
290 |
+
#: includes/texts.php:40
|
291 |
msgid "Sa"
|
292 |
msgstr "С"
|
293 |
|
294 |
+
#: includes/texts.php:44
|
295 |
msgid "Show Filters"
|
296 |
msgstr "Показать Фильтры"
|
297 |
|
298 |
+
#: includes/texts.php:45
|
299 |
msgid "Collapse Filters"
|
300 |
msgstr "Свернуть Фильтры"
|
301 |
|
302 |
+
#: includes/texts.php:46
|
303 |
msgid "Reset Filters"
|
304 |
msgstr "Сбросить фильтры"
|
305 |
|
306 |
+
#: includes/texts.php:48
|
307 |
msgid "Days"
|
308 |
msgstr "Дни недели"
|
309 |
|
310 |
+
#: includes/texts.php:49
|
311 |
msgid "Categories"
|
312 |
msgstr "Категории"
|
313 |
|
314 |
+
#: includes/texts.php:50
|
315 |
msgid "Venues"
|
316 |
msgstr "Места"
|
317 |
|
318 |
+
#: includes/texts.php:57
|
319 |
+
msgid "The event has just started"
|
320 |
+
msgstr "Мероприятие только началось"
|
321 |
+
|
322 |
+
#: includes/texts.php:72
|
323 |
+
#, fuzzy
|
324 |
+
msgid "Sundays"
|
325 |
+
msgstr "Воскресенье"
|
326 |
+
|
327 |
+
#: includes/texts.php:73
|
328 |
+
#, fuzzy
|
329 |
+
msgid "Mondays"
|
330 |
+
msgstr "Понедельник"
|
331 |
+
|
332 |
+
#: includes/texts.php:74
|
333 |
+
#, fuzzy
|
334 |
+
msgid "Tuesdays"
|
335 |
+
msgstr "Вторник"
|
336 |
+
|
337 |
+
#: includes/texts.php:75
|
338 |
+
#, fuzzy
|
339 |
+
msgid "Wednesdays"
|
340 |
+
msgstr "Среда"
|
341 |
+
|
342 |
+
#: includes/texts.php:76
|
343 |
+
#, fuzzy
|
344 |
+
msgid "Thursdays"
|
345 |
+
msgstr "Четверг"
|
346 |
+
|
347 |
+
#: includes/texts.php:77
|
348 |
+
#, fuzzy
|
349 |
+
msgid "Fridays"
|
350 |
+
msgstr "Пятница"
|
351 |
+
|
352 |
+
#: includes/texts.php:78
|
353 |
+
#, fuzzy
|
354 |
+
msgid "Saturdays"
|
355 |
+
msgstr "Суббота"
|
356 |
+
|
357 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
358 |
+
#: views/single-event.php:142 views/single-event.php:242
|
359 |
msgid "Date"
|
360 |
msgstr "Дата"
|
361 |
|
362 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
363 |
msgid "Url"
|
364 |
+
msgstr "Url"
|
365 |
|
366 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
367 |
msgid "Organizers"
|
368 |
msgstr "Организаторы"
|
369 |
|
370 |
+
#: views/ecwd-organizer-content.php:109
|
371 |
msgid "upcoming events"
|
372 |
msgstr "Предстоящие События"
|
373 |
|
374 |
+
#: views/ecwd-venue-content.php:141
|
375 |
msgid "events"
|
376 |
msgstr "события"
|
377 |
|
378 |
+
#: views/single-event.php:190
|
379 |
+
#, fuzzy
|
380 |
+
msgid "Venue"
|
381 |
+
msgstr "Места"
|
382 |
+
|
383 |
+
#: views/single-event.php:200
|
384 |
+
msgid "Location"
|
385 |
+
msgstr "Местоположение"
|
386 |
+
|
387 |
+
#: views/single-event.php:449
|
388 |
msgid "Related events"
|
389 |
msgstr "Похожие события"
|
390 |
|
391 |
+
#~ msgid "What're we looking for ?"
|
392 |
+
#~ msgstr "Что мы ищем?"
|
393 |
+
|
394 |
+
#~ msgid "No additional details for this event."
|
395 |
+
#~ msgstr "Нет дополнительной информации о мероприятии."
|
languages/ecwd-tr_TR.mo
CHANGED
Binary file
|
languages/ecwd-tr_TR.po
CHANGED
@@ -1,19 +1,18 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: tr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 1.
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-SearchPath-0: .\n"
|
17 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
18 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
19 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
@@ -22,90 +21,143 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
24 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
|
|
25 |
|
26 |
-
#: includes/calendar-class.php:
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Ay"
|
30 |
|
31 |
-
#: includes/calendar-class.php:
|
32 |
msgid "List"
|
33 |
msgstr "Liste"
|
34 |
|
35 |
-
#: includes/calendar-class.php:
|
36 |
msgid "Week"
|
37 |
msgstr "Hafta"
|
38 |
|
39 |
-
#: includes/calendar-class.php:
|
40 |
msgid "Day"
|
41 |
msgstr "Gün"
|
42 |
|
43 |
-
#: includes/calendar-class.php:
|
44 |
msgid "Map"
|
45 |
msgstr "Harita"
|
46 |
|
47 |
-
#: includes/calendar-class.php:
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Gün"
|
50 |
|
51 |
-
#: includes/calendar-class.php:
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
-
#: includes/calendar-class.php:
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: views/ecwd-event-content.php:
|
59 |
-
#: views/ecwd-organizer-content.php:
|
60 |
-
#: views/single-event.php:
|
61 |
-
#: views/single-event.php:
|
62 |
msgid "All day"
|
63 |
msgstr "Bütün gün"
|
64 |
|
65 |
-
#: includes/calendar-class.php:
|
66 |
-
#: includes/calendar-class.php:
|
67 |
msgid "No events"
|
68 |
msgstr "Etkinlik yok"
|
69 |
|
70 |
-
#: includes/calendar-class.php:
|
71 |
msgid "No Events"
|
72 |
msgstr "Etkinlik yok"
|
73 |
|
74 |
-
#: includes/calendar-class.php:
|
75 |
-
msgid "What're we looking for ?"
|
76 |
-
msgstr "Neyi arıyor?"
|
77 |
-
|
78 |
-
#: includes/calendar-class.php:1237
|
79 |
msgid "More events"
|
80 |
msgstr "Daha fazla etkinlik"
|
81 |
|
82 |
#: includes/ecwd-cpt-filter.php:67
|
83 |
msgid "From"
|
84 |
-
msgstr ""
|
85 |
|
86 |
#: includes/ecwd-cpt-filter.php:74
|
87 |
msgid "To"
|
88 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
#: includes/ecwd-functions.php:8
|
91 |
msgid "Loading..."
|
92 |
msgstr "Yükleme..."
|
93 |
|
94 |
-
#: includes/ecwd-functions.php:
|
95 |
msgid "DAYS"
|
96 |
msgstr "GÜN"
|
97 |
|
98 |
-
#: includes/ecwd-functions.php:
|
99 |
msgid "HOURS"
|
100 |
msgstr "SAAT"
|
101 |
|
102 |
-
#: includes/ecwd-functions.php:
|
103 |
msgid "MINUTES"
|
104 |
-
msgstr ""
|
105 |
|
106 |
-
#: includes/ecwd-functions.php:
|
107 |
msgid "SECONDS"
|
108 |
-
msgstr ""
|
109 |
|
110 |
#: includes/texts.php:2
|
111 |
msgid "January"
|
@@ -155,135 +207,185 @@ msgstr "Kasım"
|
|
155 |
msgid "December"
|
156 |
msgstr "Aralık"
|
157 |
|
158 |
-
#: includes/texts.php:
|
159 |
msgid "Sunday"
|
160 |
msgstr "Pazar"
|
161 |
|
162 |
-
#: includes/texts.php:
|
163 |
msgid "Monday"
|
164 |
msgstr "Pazartesi"
|
165 |
|
166 |
-
#: includes/texts.php:
|
167 |
msgid "Tuesday"
|
168 |
msgstr "Salı"
|
169 |
|
170 |
-
#: includes/texts.php:
|
171 |
msgid "Wednesday"
|
172 |
msgstr "Çarşamba"
|
173 |
|
174 |
-
#: includes/texts.php:
|
175 |
msgid "Thursday"
|
176 |
msgstr "Perşembe"
|
177 |
|
178 |
-
#: includes/texts.php:
|
179 |
msgid "Friday"
|
180 |
msgstr "Cuma"
|
181 |
|
182 |
-
#: includes/texts.php:
|
183 |
msgid "Saturday"
|
184 |
msgstr "Cumartesi"
|
185 |
|
186 |
-
#: includes/texts.php:
|
187 |
msgid "Sun"
|
188 |
msgstr "Paz"
|
189 |
|
190 |
-
#: includes/texts.php:
|
191 |
msgid "Mon"
|
192 |
msgstr "Paz"
|
193 |
|
194 |
-
#: includes/texts.php:
|
195 |
msgid "Tue"
|
196 |
msgstr "Sal"
|
197 |
|
198 |
-
#: includes/texts.php:
|
199 |
msgid "Wed"
|
200 |
msgstr "Çar"
|
201 |
|
202 |
-
#: includes/texts.php:
|
203 |
msgid "Thu"
|
204 |
msgstr "Per"
|
205 |
|
206 |
-
#: includes/texts.php:
|
207 |
msgid "Fri"
|
208 |
msgstr "Cum"
|
209 |
|
210 |
-
#: includes/texts.php:
|
211 |
msgid "Sat"
|
212 |
msgstr "Cum"
|
213 |
|
214 |
-
#: includes/texts.php:
|
215 |
msgid "Su"
|
216 |
msgstr "P"
|
217 |
|
218 |
-
#: includes/texts.php:
|
219 |
msgid "Mo"
|
220 |
msgstr "P"
|
221 |
|
222 |
-
#: includes/texts.php:
|
223 |
msgid "Tu"
|
224 |
msgstr "S"
|
225 |
|
226 |
-
#: includes/texts.php:
|
227 |
msgid "We"
|
228 |
msgstr "Ç"
|
229 |
|
230 |
-
#: includes/texts.php:
|
231 |
msgid "Th"
|
232 |
msgstr "P"
|
233 |
|
234 |
-
#: includes/texts.php:
|
235 |
msgid "Fr"
|
236 |
msgstr "C"
|
237 |
|
238 |
-
#: includes/texts.php:
|
239 |
msgid "Sa"
|
240 |
msgstr "C"
|
241 |
|
242 |
-
#: includes/texts.php:
|
243 |
msgid "Show Filters"
|
244 |
-
msgstr ""
|
245 |
|
246 |
-
#: includes/texts.php:
|
247 |
msgid "Collapse Filters"
|
248 |
-
msgstr ""
|
249 |
|
250 |
-
#: includes/texts.php:
|
251 |
msgid "Reset Filters"
|
252 |
-
msgstr ""
|
253 |
|
254 |
-
#: includes/texts.php:
|
255 |
msgid "Days"
|
256 |
-
msgstr ""
|
257 |
|
258 |
-
#: includes/texts.php:
|
259 |
msgid "Categories"
|
260 |
-
msgstr ""
|
261 |
|
262 |
-
#: includes/texts.php:
|
263 |
msgid "Venues"
|
264 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
|
266 |
-
#:
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "Date"
|
269 |
msgstr "Tarih"
|
270 |
|
271 |
-
#: views/ecwd-event-content.php:
|
272 |
msgid "Url"
|
273 |
msgstr "Url"
|
274 |
|
275 |
-
#: views/ecwd-event-content.php:
|
276 |
msgid "Organizers"
|
277 |
msgstr "Organizatörler"
|
278 |
|
279 |
-
#: views/ecwd-organizer-content.php:
|
280 |
msgid "upcoming events"
|
281 |
msgstr "Yaklaşan Etkinlikler"
|
282 |
|
283 |
-
#: views/ecwd-venue-content.php:
|
284 |
msgid "events"
|
285 |
msgstr "Olaylar"
|
286 |
|
287 |
-
#: views/single-event.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
msgid "Related events"
|
289 |
-
msgstr ""
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
5 |
+
"PO-Revision-Date: 2015-07-23 14:40+0400\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: tr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 1.5.4\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Poedit-KeywordsList: _e;__\n"
|
|
|
16 |
"X-Poedit-SearchPathExcluded-0: views/admin\n"
|
17 |
"X-Poedit-SearchPathExcluded-1: js\n"
|
18 |
"X-Poedit-SearchPathExcluded-2: includes/ecwd-cpt-class.php\n"
|
21 |
"X-Poedit-SearchPathExcluded-5: includes/ecwd-google-events-class.php\n"
|
22 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
23 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
24 |
+
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
27 |
#: views/widgets.php:168
|
28 |
msgid "Month"
|
29 |
msgstr "Ay"
|
30 |
|
31 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
32 |
msgid "List"
|
33 |
msgstr "Liste"
|
34 |
|
35 |
+
#: includes/calendar-class.php:179
|
36 |
msgid "Week"
|
37 |
msgstr "Hafta"
|
38 |
|
39 |
+
#: includes/calendar-class.php:183
|
40 |
msgid "Day"
|
41 |
msgstr "Gün"
|
42 |
|
43 |
+
#: includes/calendar-class.php:186
|
44 |
msgid "Map"
|
45 |
msgstr "Harita"
|
46 |
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
msgid "4 Days"
|
49 |
msgstr "4 Gün"
|
50 |
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
msgid "Posterboard"
|
53 |
msgstr "Posterboard"
|
54 |
|
55 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
56 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
57 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
58 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
59 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
60 |
+
#: views/single-event.php:151 views/single-event.php:247
|
61 |
+
#: views/single-event.php:487
|
62 |
msgid "All day"
|
63 |
msgstr "Bütün gün"
|
64 |
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
msgid "No events"
|
68 |
msgstr "Etkinlik yok"
|
69 |
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
msgid "No Events"
|
72 |
msgstr "Etkinlik yok"
|
73 |
|
74 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
75 |
msgid "More events"
|
76 |
msgstr "Daha fazla etkinlik"
|
77 |
|
78 |
#: includes/ecwd-cpt-filter.php:67
|
79 |
msgid "From"
|
80 |
+
msgstr "Itibaren"
|
81 |
|
82 |
#: includes/ecwd-cpt-filter.php:74
|
83 |
msgid "To"
|
84 |
+
msgstr "Için"
|
85 |
+
|
86 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
87 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
88 |
+
#: includes/texts.php:60
|
89 |
+
msgid "Repeat every"
|
90 |
+
msgstr "Her tekrarlayın"
|
91 |
+
|
92 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
93 |
+
msgid "days"
|
94 |
+
msgstr "günler"
|
95 |
+
|
96 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
97 |
+
msgid "Repeat every day"
|
98 |
+
msgstr "Her gün tekrarlayın"
|
99 |
+
|
100 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
101 |
+
msgid "weeks"
|
102 |
+
msgstr "hafta"
|
103 |
+
|
104 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
105 |
+
msgid "Repeat every week"
|
106 |
+
msgstr "Her hafta tekrarlayın"
|
107 |
+
|
108 |
+
#: includes/ecwd-display-class.php:889
|
109 |
+
#, fuzzy
|
110 |
+
msgid "on"
|
111 |
+
msgstr "Paz"
|
112 |
+
|
113 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
114 |
+
#, fuzzy
|
115 |
+
msgid "months"
|
116 |
+
msgstr "Ay"
|
117 |
+
|
118 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
119 |
+
msgid "Repeat every month"
|
120 |
+
msgstr "Her ay tekrarlayın"
|
121 |
+
|
122 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
123 |
+
msgid "on the same day"
|
124 |
+
msgstr "aynı günde"
|
125 |
+
|
126 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
127 |
+
msgid "on the"
|
128 |
+
msgstr "üzerinde"
|
129 |
+
|
130 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
131 |
+
msgid "years"
|
132 |
+
msgstr "yıl"
|
133 |
+
|
134 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
135 |
+
msgid "Repeat every year"
|
136 |
+
msgstr "Her yıl tekrarlayın"
|
137 |
+
|
138 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
139 |
+
msgid "until"
|
140 |
+
msgstr "kadar"
|
141 |
|
142 |
#: includes/ecwd-functions.php:8
|
143 |
msgid "Loading..."
|
144 |
msgstr "Yükleme..."
|
145 |
|
146 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
147 |
msgid "DAYS"
|
148 |
msgstr "GÜN"
|
149 |
|
150 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
151 |
msgid "HOURS"
|
152 |
msgstr "SAAT"
|
153 |
|
154 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
155 |
msgid "MINUTES"
|
156 |
+
msgstr "DAKİKA"
|
157 |
|
158 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
159 |
msgid "SECONDS"
|
160 |
+
msgstr "SANİYE"
|
161 |
|
162 |
#: includes/texts.php:2
|
163 |
msgid "January"
|
207 |
msgid "December"
|
208 |
msgstr "Aralık"
|
209 |
|
210 |
+
#: includes/texts.php:15
|
211 |
msgid "Sunday"
|
212 |
msgstr "Pazar"
|
213 |
|
214 |
+
#: includes/texts.php:16
|
215 |
msgid "Monday"
|
216 |
msgstr "Pazartesi"
|
217 |
|
218 |
+
#: includes/texts.php:17
|
219 |
msgid "Tuesday"
|
220 |
msgstr "Salı"
|
221 |
|
222 |
+
#: includes/texts.php:18
|
223 |
msgid "Wednesday"
|
224 |
msgstr "Çarşamba"
|
225 |
|
226 |
+
#: includes/texts.php:19
|
227 |
msgid "Thursday"
|
228 |
msgstr "Perşembe"
|
229 |
|
230 |
+
#: includes/texts.php:20
|
231 |
msgid "Friday"
|
232 |
msgstr "Cuma"
|
233 |
|
234 |
+
#: includes/texts.php:21
|
235 |
msgid "Saturday"
|
236 |
msgstr "Cumartesi"
|
237 |
|
238 |
+
#: includes/texts.php:25
|
239 |
msgid "Sun"
|
240 |
msgstr "Paz"
|
241 |
|
242 |
+
#: includes/texts.php:26
|
243 |
msgid "Mon"
|
244 |
msgstr "Paz"
|
245 |
|
246 |
+
#: includes/texts.php:27
|
247 |
msgid "Tue"
|
248 |
msgstr "Sal"
|
249 |
|
250 |
+
#: includes/texts.php:28
|
251 |
msgid "Wed"
|
252 |
msgstr "Çar"
|
253 |
|
254 |
+
#: includes/texts.php:29
|
255 |
msgid "Thu"
|
256 |
msgstr "Per"
|
257 |
|
258 |
+
#: includes/texts.php:30
|
259 |
msgid "Fri"
|
260 |
msgstr "Cum"
|
261 |
|
262 |
+
#: includes/texts.php:31
|
263 |
msgid "Sat"
|
264 |
msgstr "Cum"
|
265 |
|
266 |
+
#: includes/texts.php:34
|
267 |
msgid "Su"
|
268 |
msgstr "P"
|
269 |
|
270 |
+
#: includes/texts.php:35
|
271 |
msgid "Mo"
|
272 |
msgstr "P"
|
273 |
|
274 |
+
#: includes/texts.php:36
|
275 |
msgid "Tu"
|
276 |
msgstr "S"
|
277 |
|
278 |
+
#: includes/texts.php:37
|
279 |
msgid "We"
|
280 |
msgstr "Ç"
|
281 |
|
282 |
+
#: includes/texts.php:38
|
283 |
msgid "Th"
|
284 |
msgstr "P"
|
285 |
|
286 |
+
#: includes/texts.php:39
|
287 |
msgid "Fr"
|
288 |
msgstr "C"
|
289 |
|
290 |
+
#: includes/texts.php:40
|
291 |
msgid "Sa"
|
292 |
msgstr "C"
|
293 |
|
294 |
+
#: includes/texts.php:44
|
295 |
msgid "Show Filters"
|
296 |
+
msgstr "göster Filtreler"
|
297 |
|
298 |
+
#: includes/texts.php:45
|
299 |
msgid "Collapse Filters"
|
300 |
+
msgstr "Collapse Filtreler"
|
301 |
|
302 |
+
#: includes/texts.php:46
|
303 |
msgid "Reset Filters"
|
304 |
+
msgstr "Reset Filtreler"
|
305 |
|
306 |
+
#: includes/texts.php:48
|
307 |
msgid "Days"
|
308 |
+
msgstr "günler"
|
309 |
|
310 |
+
#: includes/texts.php:49
|
311 |
msgid "Categories"
|
312 |
+
msgstr "Kategoriler"
|
313 |
|
314 |
+
#: includes/texts.php:50
|
315 |
msgid "Venues"
|
316 |
+
msgstr "Mekanları"
|
317 |
+
|
318 |
+
#: includes/texts.php:57
|
319 |
+
msgid "The event has just started"
|
320 |
+
msgstr "Olay sadece başladı"
|
321 |
+
|
322 |
+
#: includes/texts.php:72
|
323 |
+
#, fuzzy
|
324 |
+
msgid "Sundays"
|
325 |
+
msgstr "Pazar"
|
326 |
+
|
327 |
+
#: includes/texts.php:73
|
328 |
+
#, fuzzy
|
329 |
+
msgid "Mondays"
|
330 |
+
msgstr "Pazartesi"
|
331 |
+
|
332 |
+
#: includes/texts.php:74
|
333 |
+
#, fuzzy
|
334 |
+
msgid "Tuesdays"
|
335 |
+
msgstr "Salı"
|
336 |
+
|
337 |
+
#: includes/texts.php:75
|
338 |
+
#, fuzzy
|
339 |
+
msgid "Wednesdays"
|
340 |
+
msgstr "Çarşamba"
|
341 |
|
342 |
+
#: includes/texts.php:76
|
343 |
+
#, fuzzy
|
344 |
+
msgid "Thursdays"
|
345 |
+
msgstr "Perşembe"
|
346 |
+
|
347 |
+
#: includes/texts.php:77
|
348 |
+
#, fuzzy
|
349 |
+
msgid "Fridays"
|
350 |
+
msgstr "Cuma"
|
351 |
+
|
352 |
+
#: includes/texts.php:78
|
353 |
+
#, fuzzy
|
354 |
+
msgid "Saturdays"
|
355 |
+
msgstr "Cumartesi"
|
356 |
+
|
357 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
358 |
+
#: views/single-event.php:142 views/single-event.php:242
|
359 |
msgid "Date"
|
360 |
msgstr "Tarih"
|
361 |
|
362 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
363 |
msgid "Url"
|
364 |
msgstr "Url"
|
365 |
|
366 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
367 |
msgid "Organizers"
|
368 |
msgstr "Organizatörler"
|
369 |
|
370 |
+
#: views/ecwd-organizer-content.php:109
|
371 |
msgid "upcoming events"
|
372 |
msgstr "Yaklaşan Etkinlikler"
|
373 |
|
374 |
+
#: views/ecwd-venue-content.php:141
|
375 |
msgid "events"
|
376 |
msgstr "Olaylar"
|
377 |
|
378 |
+
#: views/single-event.php:190
|
379 |
+
msgid "Venue"
|
380 |
+
msgstr "mekan"
|
381 |
+
|
382 |
+
#: views/single-event.php:200
|
383 |
+
msgid "Location"
|
384 |
+
msgstr "konum"
|
385 |
+
|
386 |
+
#: views/single-event.php:449
|
387 |
msgid "Related events"
|
388 |
+
msgstr "İlgili olaylar"
|
389 |
+
|
390 |
+
#~ msgid "What're we looking for ?"
|
391 |
+
#~ msgstr "Neyi arıyor?"
|
languages/en.pot
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: event_calendar_wd\n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
"PO-Revision-Date: 2015-06-05 12:45+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -24,59 +24,55 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
25 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
26 |
|
27 |
-
#: includes/calendar-class.php:
|
28 |
#: views/widgets.php:168
|
29 |
msgid "Month"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: includes/calendar-class.php:
|
33 |
msgid "List"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: includes/calendar-class.php:
|
37 |
msgid "Week"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: includes/calendar-class.php:
|
41 |
msgid "Day"
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: includes/calendar-class.php:
|
45 |
msgid "Map"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: includes/calendar-class.php:
|
49 |
msgid "4 Days"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: includes/calendar-class.php:
|
53 |
msgid "Posterboard"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: includes/calendar-class.php:
|
57 |
-
#: includes/calendar-class.php:
|
58 |
-
#: includes/calendar-class.php:
|
59 |
-
#: views/ecwd-event-content.php:
|
60 |
-
#: views/ecwd-organizer-content.php:
|
61 |
-
#: views/single-event.php:
|
62 |
-
#: views/single-event.php:
|
63 |
msgid "All day"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/calendar-class.php:
|
67 |
-
#: includes/calendar-class.php:
|
68 |
msgid "No events"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: includes/calendar-class.php:
|
72 |
msgid "No Events"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: includes/calendar-class.php:
|
76 |
-
msgid "What're we looking for ?"
|
77 |
-
msgstr ""
|
78 |
-
|
79 |
-
#: includes/calendar-class.php:1237
|
80 |
msgid "More events"
|
81 |
msgstr ""
|
82 |
|
@@ -88,23 +84,77 @@ msgstr ""
|
|
88 |
msgid "To"
|
89 |
msgstr ""
|
90 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
#: includes/ecwd-functions.php:8
|
92 |
msgid "Loading..."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: includes/ecwd-functions.php:
|
96 |
msgid "DAYS"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: includes/ecwd-functions.php:
|
100 |
msgid "HOURS"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/ecwd-functions.php:
|
104 |
msgid "MINUTES"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: includes/ecwd-functions.php:
|
108 |
msgid "SECONDS"
|
109 |
msgstr ""
|
110 |
|
@@ -156,139 +206,176 @@ msgstr ""
|
|
156 |
msgid "December"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/texts.php:
|
160 |
msgid "Sunday"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/texts.php:
|
164 |
msgid "Monday"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: includes/texts.php:
|
168 |
msgid "Tuesday"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: includes/texts.php:
|
172 |
msgid "Wednesday"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/texts.php:
|
176 |
msgid "Thursday"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: includes/texts.php:
|
180 |
msgid "Friday"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: includes/texts.php:
|
184 |
msgid "Saturday"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: includes/texts.php:
|
188 |
msgid "Sun"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: includes/texts.php:
|
192 |
msgid "Mon"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/texts.php:
|
196 |
msgid "Tue"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/texts.php:
|
200 |
msgid "Wed"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/texts.php:
|
204 |
msgid "Thu"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/texts.php:
|
208 |
msgid "Fri"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/texts.php:
|
212 |
msgid "Sat"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/texts.php:
|
216 |
msgid "Su"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: includes/texts.php:
|
220 |
msgid "Mo"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: includes/texts.php:
|
224 |
msgid "Tu"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/texts.php:
|
228 |
msgid "We"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/texts.php:
|
232 |
msgid "Th"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/texts.php:
|
236 |
msgid "Fr"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/texts.php:
|
240 |
msgid "Sa"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/texts.php:
|
244 |
msgid "Show Filters"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/texts.php:
|
248 |
msgid "Collapse Filters"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/texts.php:
|
252 |
msgid "Reset Filters"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/texts.php:
|
256 |
msgid "Days"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/texts.php:
|
260 |
msgid "Categories"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/texts.php:
|
264 |
msgid "Venues"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
msgid "Date"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: views/ecwd-event-content.php:
|
273 |
msgid "Url"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: views/ecwd-event-content.php:
|
277 |
msgid "Organizers"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: views/ecwd-organizer-content.php:
|
281 |
msgid "upcoming events"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: views/ecwd-venue-content.php:
|
285 |
msgid "events"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: views/single-event.php:
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#:
|
293 |
-
msgid "
|
294 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: event_calendar_wd\n"
|
5 |
+
"POT-Creation-Date: 2015-07-23 13:04+0400\n"
|
6 |
"PO-Revision-Date: 2015-06-05 12:45+0400\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
24 |
"X-Poedit-SearchPathExcluded-6: includes/ecwd-facebook-events-class.php\n"
|
25 |
"X-Poedit-SearchPathExcluded-7: ecwd_admin_class.php\n"
|
26 |
|
27 |
+
#: includes/calendar-class.php:175 includes/calendar-class.php:176
|
28 |
#: views/widgets.php:168
|
29 |
msgid "Month"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: includes/calendar-class.php:177 views/widgets.php:169
|
33 |
msgid "List"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: includes/calendar-class.php:179
|
37 |
msgid "Week"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: includes/calendar-class.php:183
|
41 |
msgid "Day"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: includes/calendar-class.php:186
|
45 |
msgid "Map"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: includes/calendar-class.php:188
|
49 |
msgid "4 Days"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: includes/calendar-class.php:191
|
53 |
msgid "Posterboard"
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: includes/calendar-class.php:383 includes/calendar-class.php:417
|
57 |
+
#: includes/calendar-class.php:572 includes/calendar-class.php:1181
|
58 |
+
#: includes/calendar-class.php:1330 includes/ecwd-functions.php:360
|
59 |
+
#: views/ecwd-event-content.php:76 views/ecwd-event-content.php:158
|
60 |
+
#: views/ecwd-organizer-content.php:145 views/ecwd-venue-content.php:178
|
61 |
+
#: views/single-event.php:151 views/single-event.php:247
|
62 |
+
#: views/single-event.php:487
|
63 |
msgid "All day"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
67 |
+
#: includes/calendar-class.php:1386
|
68 |
msgid "No events"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: includes/calendar-class.php:644
|
72 |
msgid "No Events"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/calendar-class.php:1256
|
|
|
|
|
|
|
|
|
76 |
msgid "More events"
|
77 |
msgstr ""
|
78 |
|
84 |
msgid "To"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/ecwd-display-class.php:876 includes/ecwd-display-class.php:882
|
88 |
+
#: includes/ecwd-display-class.php:900 includes/ecwd-display-class.php:917
|
89 |
+
#: includes/texts.php:60
|
90 |
+
msgid "Repeat every"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
94 |
+
msgid "days"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
98 |
+
msgid "Repeat every day"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
102 |
+
msgid "weeks"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
106 |
+
msgid "Repeat every week"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: includes/ecwd-display-class.php:889
|
110 |
+
msgid "on"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
114 |
+
msgid "months"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
118 |
+
msgid "Repeat every month"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
122 |
+
msgid "on the same day"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
126 |
+
msgid "on the"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
130 |
+
msgid "years"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
134 |
+
msgid "Repeat every year"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
138 |
+
msgid "until"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
#: includes/ecwd-functions.php:8
|
142 |
msgid "Loading..."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
146 |
msgid "DAYS"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
150 |
msgid "HOURS"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
154 |
msgid "MINUTES"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
158 |
msgid "SECONDS"
|
159 |
msgstr ""
|
160 |
|
206 |
msgid "December"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/texts.php:15
|
210 |
msgid "Sunday"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/texts.php:16
|
214 |
msgid "Monday"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/texts.php:17
|
218 |
msgid "Tuesday"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/texts.php:18
|
222 |
msgid "Wednesday"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: includes/texts.php:19
|
226 |
msgid "Thursday"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/texts.php:20
|
230 |
msgid "Friday"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/texts.php:21
|
234 |
msgid "Saturday"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/texts.php:25
|
238 |
msgid "Sun"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: includes/texts.php:26
|
242 |
msgid "Mon"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/texts.php:27
|
246 |
msgid "Tue"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/texts.php:28
|
250 |
msgid "Wed"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/texts.php:29
|
254 |
msgid "Thu"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/texts.php:30
|
258 |
msgid "Fri"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/texts.php:31
|
262 |
msgid "Sat"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/texts.php:34
|
266 |
msgid "Su"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/texts.php:35
|
270 |
msgid "Mo"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/texts.php:36
|
274 |
msgid "Tu"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/texts.php:37
|
278 |
msgid "We"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/texts.php:38
|
282 |
msgid "Th"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/texts.php:39
|
286 |
msgid "Fr"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/texts.php:40
|
290 |
msgid "Sa"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/texts.php:44
|
294 |
msgid "Show Filters"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/texts.php:45
|
298 |
msgid "Collapse Filters"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/texts.php:46
|
302 |
msgid "Reset Filters"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/texts.php:48
|
306 |
msgid "Days"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/texts.php:49
|
310 |
msgid "Categories"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: includes/texts.php:50
|
314 |
msgid "Venues"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/texts.php:57
|
318 |
+
msgid "The event has just started"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/texts.php:72
|
322 |
+
msgid "Sundays"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/texts.php:73
|
326 |
+
msgid "Mondays"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: includes/texts.php:74
|
330 |
+
msgid "Tuesdays"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/texts.php:75
|
334 |
+
msgid "Wednesdays"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: includes/texts.php:76
|
338 |
+
msgid "Thursdays"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: includes/texts.php:77
|
342 |
+
msgid "Fridays"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: includes/texts.php:78
|
346 |
+
msgid "Saturdays"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: views/ecwd-event-content.php:67 views/ecwd-event-content.php:153
|
350 |
+
#: views/single-event.php:142 views/single-event.php:242
|
351 |
msgid "Date"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
355 |
msgid "Url"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
359 |
msgid "Organizers"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: views/ecwd-organizer-content.php:109
|
363 |
msgid "upcoming events"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: views/ecwd-venue-content.php:141
|
367 |
msgid "events"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: views/single-event.php:190
|
371 |
+
msgid "Venue"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: views/single-event.php:200
|
375 |
+
msgid "Location"
|
376 |
msgstr ""
|
377 |
+
|
378 |
+
#: views/single-event.php:449
|
379 |
+
msgid "Related events"
|
380 |
+
msgstr ""
|
381 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://web-dorado.com/products/wordpress-event-calendar-wd.html
|
|
4 |
Tags: calendar, calendars, event, event calendar, event manager, events calendar, calendar widget, event registration, event management,events, agenda, holiday calendar , scheduling, free calendar, Calender, upcoming events , event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting , appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.2
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -130,6 +130,9 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
133 |
= 1.0.14 =
|
134 |
Fixed: Conflict with Avada theme
|
135 |
Added: Date to events link
|
4 |
Tags: calendar, calendars, event, event calendar, event manager, events calendar, calendar widget, event registration, event management,events, agenda, holiday calendar , scheduling, free calendar, Calender, upcoming events , event widget , event list, calendar localization, Organizer, editorial calendar, Interactive Calendar, news calendar, meeting , appointment, event tracking, event organizer, upcoming events widget, event page, event bookings, recurring, recurring events, conference, date, dates, schedule, times, venue, AJAX, responsive, shortcode, seminar, summit
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 1.0.15
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 1.0.15 =
|
134 |
+
Added: Show AM/PM option
|
135 |
+
|
136 |
= 1.0.14 =
|
137 |
Fixed: Conflict with Avada theme
|
138 |
Added: Date to events link
|
views/ecwd-event-content.php
CHANGED
@@ -18,6 +18,10 @@ if ( isset( $ecwd_options['date_format'] ) && $ecwd_options['date_format'] != ''
|
|
18 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
19 |
$time_format = $ecwd_options['time_format'];
|
20 |
}
|
|
|
|
|
|
|
|
|
21 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
22 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
23 |
}
|
18 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
19 |
$time_format = $ecwd_options['time_format'];
|
20 |
}
|
21 |
+
$time_format .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
22 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
23 |
+
$time_format = str_replace('H', 'h', $time_format);
|
24 |
+
}
|
25 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
26 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
27 |
}
|
views/ecwd-organizer-content.php
CHANGED
@@ -16,6 +16,10 @@ if ( isset( $ecwd_options['date_format'] ) && $ecwd_options['date_format'] != ''
|
|
16 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
17 |
$time_format = $ecwd_options['time_format'];
|
18 |
}
|
|
|
|
|
|
|
|
|
19 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
20 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
21 |
}
|
16 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
17 |
$time_format = $ecwd_options['time_format'];
|
18 |
}
|
19 |
+
$time_format .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
20 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
21 |
+
$time_format = str_replace('H', 'h', $time_format);
|
22 |
+
}
|
23 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
24 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
25 |
}
|
views/ecwd-venue-content.php
CHANGED
@@ -12,6 +12,10 @@ if ( isset( $ecwd_options['date_format'] ) && $ecwd_options['date_format'] != ''
|
|
12 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
13 |
$time_format = $ecwd_options['time_format'];
|
14 |
}
|
|
|
|
|
|
|
|
|
15 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
16 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
17 |
}
|
12 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
13 |
$time_format = $ecwd_options['time_format'];
|
14 |
}
|
15 |
+
$time_format .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
16 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
17 |
+
$time_format = str_replace('H', 'h', $time_format);
|
18 |
+
}
|
19 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
20 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
21 |
}
|
views/single-event.php
CHANGED
@@ -23,6 +23,11 @@ if ( isset( $ecwd_options['date_format'] ) && $ecwd_options['date_format'] != ''
|
|
23 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
24 |
$time_format = $ecwd_options['time_format'];
|
25 |
}
|
|
|
|
|
|
|
|
|
|
|
26 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
27 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
28 |
}
|
@@ -74,7 +79,7 @@ if ( ! $ecwd_event_zoom ) {
|
|
74 |
$ecwd_event_zoom = 17;
|
75 |
}
|
76 |
|
77 |
-
$ecwd_event_organizers = $ecwd_event_metas[ ECWD_PLUGIN_PREFIX . '_event_organizers' ][0];
|
78 |
|
79 |
|
80 |
|
23 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
24 |
$time_format = $ecwd_options['time_format'];
|
25 |
}
|
26 |
+
$time_format .= (isset( $ecwd_options['time_type'])?' '.$ecwd_options['time_type']: '');
|
27 |
+
if(isset($ecwd_options['time_type']) && $ecwd_options['time_type'] !=''){
|
28 |
+
$time_format = str_replace('H', 'h', $time_format);
|
29 |
+
}
|
30 |
+
|
31 |
if ( isset( $ecwd_options['social_icons'] ) && $ecwd_options['social_icons'] != '' ) {
|
32 |
$ecwd_social_icons = $ecwd_options['social_icons'];
|
33 |
}
|
79 |
$ecwd_event_zoom = 17;
|
80 |
}
|
81 |
|
82 |
+
$ecwd_event_organizers = isset($ecwd_event_metas[ ECWD_PLUGIN_PREFIX . '_event_organizers' ][0])?$ecwd_event_metas[ ECWD_PLUGIN_PREFIX . '_event_organizers' ][0]:'';
|
83 |
|
84 |
|
85 |
|