Version Description
- Added: Date format option for list, week and day views
- Fixed: "Back" link in single event page
- Fixed: Shortcode default view issue
- Fixed: Norwegian language files
Download this release
Release Info
Developer | webdorado |
Plugin | Event Calendar WD – Responsive Event Calendar plugin |
Version | 1.0.33 |
Comparing to | |
See all releases |
Code changes from version 1.0.32 to 1.0.33
- ecwd.php +1 -1
- ecwd_admin_class.php +2 -3
- includes/calendar-class.php +7 -3
- includes/register-settings.php +9 -1
- js/admin/editor-buttons.js +22 -13
- languages/ecwd-nb_NO.mo +0 -0
- languages/ecwd-nb_NO.po +379 -0
- languages/ecwd-nn_NO.mo +0 -0
- languages/ecwd-nn_NO.po +379 -0
- readme.txt +7 -1
- views/single-event.php +3 -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.33
|
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 |
protected $notices = null;
|
12 |
|
@@ -336,8 +336,7 @@ class ECWD_Admin {
|
|
336 |
],
|
337 |
'ecwd_views': [
|
338 |
{text: 'None', value: 'none'},
|
339 |
-
{text: 'Month', value: '
|
340 |
-
{text: 'Mini', value: 'mini'},
|
341 |
{text: 'List', value: 'list'},
|
342 |
{text: 'Week', value: 'week'},
|
343 |
{text: 'Day', value: 'day'},
|
6 |
class ECWD_Admin {
|
7 |
|
8 |
protected static $instance = null;
|
9 |
+
protected $version = '1.0.33';
|
10 |
protected $ecwd_page = null;
|
11 |
protected $notices = null;
|
12 |
|
336 |
],
|
337 |
'ecwd_views': [
|
338 |
{text: 'None', value: 'none'},
|
339 |
+
{text: 'Month', value: 'month'},
|
|
|
340 |
{text: 'List', value: 'list'},
|
341 |
{text: 'Week', value: 'week'},
|
342 |
{text: 'Day', value: 'day'},
|
includes/calendar-class.php
CHANGED
@@ -15,6 +15,7 @@ class Calendar {
|
|
15 |
public $eventlistbg = '10738B'; // event list view bg color (hex)
|
16 |
public $eventemptytext = 'No additional details for this event.'; // default text in event view when details is empty (string)
|
17 |
public $dateformat = 'Y.m.d'; // default date format (passed to php date() public function)
|
|
|
18 |
public $timeformat = 'H:i'; // default time format (passed to php date() public function)
|
19 |
public $font = '"Lucida Grande","Lucida Sans Unicode",sans-serif'; // font used to display the calendar (any css supported value)
|
20 |
public $linktarget = 'parent'; // link target frame or window (e.g. 'parent.frameName'. Use '_blank' for new window/tab)
|
@@ -81,6 +82,9 @@ class Calendar {
|
|
81 |
$this->dateformat = $ecwd_options['date_format'];
|
82 |
}
|
83 |
}
|
|
|
|
|
|
|
84 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
85 |
$this->timeformat = $ecwd_options['time_format'];
|
86 |
}
|
@@ -397,7 +401,7 @@ class Calendar {
|
|
397 |
$html .= '<li class="' . $image_class . '" itemscope itemtype="http://schema.org/Event">';
|
398 |
if ( ! $this->widget ) {
|
399 |
$html .= '<div class="ecwd-list-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $event['from'] ) ) . 'T' . date( 'H:i', strtotime( $event['starttime'] ) ) . '">' . __( date( 'd', strtotime( $event['from'] ) ), 'ecwd' ) . '</div>';
|
400 |
-
$html .= '<div class="ecwd-list-img"><div class="ecwd-list-img-container"><div class="ecwd-list-date web">' . date( 'd', strtotime(
|
401 |
|
402 |
$html .= '<div class="ecwd-img">';
|
403 |
if ( get_the_post_thumbnail( $event['id'] ) || $event['image'] ) {
|
@@ -953,7 +957,7 @@ class Calendar {
|
|
953 |
} elseif ( $this->widget && $this->displaytype != 'mini' ) {
|
954 |
$content = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
|
955 |
} elseif ( ( $this->displaytype == 'week' || $this->displaytype == 'day' || $this->displaytype == '4day' ) && ! $this->widget ) {
|
956 |
-
$content = '<div class="ecwd-week-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $date ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . date( 'd', strtotime(
|
957 |
} else {
|
958 |
$content = '<div class="day-number">' . $day . '</div>'; // day number or prev/next month cell content
|
959 |
}
|
@@ -1130,7 +1134,7 @@ class Calendar {
|
|
1130 |
if ( count( $cellevents ) > 0 ) {
|
1131 |
$html = '';
|
1132 |
if ( ! $this->widget ) {
|
1133 |
-
$html = '<div class="ecwd-week-date resp" style="background:#' . $this->eventlistbg . '" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $event['from'] ) ) . 'T' . date( 'H:i', strtotime( $event['starttime'] ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . date( 'd', strtotime(
|
1134 |
} else {
|
1135 |
$html = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
|
1136 |
}
|
15 |
public $eventlistbg = '10738B'; // event list view bg color (hex)
|
16 |
public $eventemptytext = 'No additional details for this event.'; // default text in event view when details is empty (string)
|
17 |
public $dateformat = 'Y.m.d'; // default date format (passed to php date() public function)
|
18 |
+
public $list_date_format = 'd.F.l'; // default date format (passed to php date() public function)
|
19 |
public $timeformat = 'H:i'; // default time format (passed to php date() public function)
|
20 |
public $font = '"Lucida Grande","Lucida Sans Unicode",sans-serif'; // font used to display the calendar (any css supported value)
|
21 |
public $linktarget = 'parent'; // link target frame or window (e.g. 'parent.frameName'. Use '_blank' for new window/tab)
|
82 |
$this->dateformat = $ecwd_options['date_format'];
|
83 |
}
|
84 |
}
|
85 |
+
if (isset($ecwd_options['list_date_format']) && $ecwd_options['list_date_format'] != '') {
|
86 |
+
$this->list_date_format = $ecwd_options['list_date_format'];
|
87 |
+
}
|
88 |
if ( isset( $ecwd_options['time_format'] ) && $ecwd_options['time_format'] != '' ) {
|
89 |
$this->timeformat = $ecwd_options['time_format'];
|
90 |
}
|
401 |
$html .= '<li class="' . $image_class . '" itemscope itemtype="http://schema.org/Event">';
|
402 |
if ( ! $this->widget ) {
|
403 |
$html .= '<div class="ecwd-list-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $event['from'] ) ) . 'T' . date( 'H:i', strtotime( $event['starttime'] ) ) . '">' . __( date( 'd', strtotime( $event['from'] ) ), 'ecwd' ) . '</div>';
|
404 |
+
$html .= '<div class="ecwd-list-img"><div class="ecwd-list-img-container"><div class="ecwd-list-date web">' . (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($event['from'])):(date('d', strtotime($event['from'])) . '.' . __(date('F', strtotime($event['from'])), 'ecwd') . '.' . __(date('l', strtotime($event['from'])), 'ecwd'))) . '</div>';
|
405 |
|
406 |
$html .= '<div class="ecwd-img">';
|
407 |
if ( get_the_post_thumbnail( $event['id'] ) || $event['image'] ) {
|
957 |
} elseif ( $this->widget && $this->displaytype != 'mini' ) {
|
958 |
$content = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
|
959 |
} elseif ( ( $this->displaytype == 'week' || $this->displaytype == 'day' || $this->displaytype == '4day' ) && ! $this->widget ) {
|
960 |
+
$content = '<div class="ecwd-week-date resp" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $date ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($event['from'])):(date('d', strtotime($event['from'])) . '.' . __(date('F', strtotime($event['from'])), 'ecwd') . '.' . __(date('l', strtotime($event['from'])), 'ecwd'))). '</div>';
|
961 |
} else {
|
962 |
$content = '<div class="day-number">' . $day . '</div>'; // day number or prev/next month cell content
|
963 |
}
|
1134 |
if ( count( $cellevents ) > 0 ) {
|
1135 |
$html = '';
|
1136 |
if ( ! $this->widget ) {
|
1137 |
+
$html = '<div class="ecwd-week-date resp" style="background:#' . $this->eventlistbg . '" itemprop="startDate" content="' . date( 'Y-m-d', strtotime( $event['from'] ) ) . 'T' . date( 'H:i', strtotime( $event['starttime'] ) ) . '">' . date( 'd', strtotime( $date ) ) . '</div><div class="ecwd-week-date web"">' . (($this->list_date_format!=='d.F.l')?date($this->list_date_format, strtotime($event['from'])):(date('d', strtotime($event['from'])) . '.' . __(date('F', strtotime($event['from'])), 'ecwd') . '.' . __(date('l', strtotime($event['from'])), 'ecwd'))) . '</div>';
|
1138 |
} else {
|
1139 |
$html = '<div class="ecwd-week-date">' . date( 'd', strtotime( $date ) ) . '</div>';
|
1140 |
}
|
includes/register-settings.php
CHANGED
@@ -69,6 +69,14 @@ function ecwd_register_settings() {
|
|
69 |
'size' => 'medium-text',
|
70 |
'type' => 'time_type_select'
|
71 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
'week_starts' => array(
|
73 |
'id' => 'week_starts',
|
74 |
'name' => __('Week start day', 'ecwd'),
|
@@ -392,7 +400,7 @@ function ecwd_text_callback($args) {
|
|
392 |
if (isset($ecwd_options[$args['id']])) {
|
393 |
$value = $ecwd_options[$args['id']];
|
394 |
} else {
|
395 |
-
$value = isset($args['
|
396 |
}
|
397 |
|
398 |
$size = ( isset($args['size']) && !is_null($args['size']) ) ? $args['size'] : '';
|
69 |
'size' => 'medium-text',
|
70 |
'type' => 'time_type_select'
|
71 |
),
|
72 |
+
'list_date_format' => array(
|
73 |
+
'id' => 'list_date_format',
|
74 |
+
'name' => __('List,Week,Day views day format', 'ecwd'),
|
75 |
+
'desc' => __('Note: Changed date format will not be translatable', 'ecwd'),
|
76 |
+
'default' => 'd.F.l',
|
77 |
+
'size' => 'medium-text',
|
78 |
+
'type' => 'text'
|
79 |
+
),
|
80 |
'week_starts' => array(
|
81 |
'id' => 'week_starts',
|
82 |
'name' => __('Week start day', 'ecwd'),
|
400 |
if (isset($ecwd_options[$args['id']])) {
|
401 |
$value = $ecwd_options[$args['id']];
|
402 |
} else {
|
403 |
+
$value = isset($args['default']) ? $args['default'] : '';
|
404 |
}
|
405 |
|
406 |
$size = ( isset($args['size']) && !is_null($args['size']) ) ? $args['size'] : '';
|
js/admin/editor-buttons.js
CHANGED
@@ -36,6 +36,10 @@
|
|
36 |
return match;
|
37 |
});
|
38 |
}
|
|
|
|
|
|
|
|
|
39 |
|
40 |
//add popup
|
41 |
editor_calendar.addCommand('ecwd_popup', function (ui, v) {
|
@@ -51,12 +55,21 @@
|
|
51 |
var page_items = '5';
|
52 |
if (v.page_items)
|
53 |
page_items = v.page_items;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
|
56 |
var displays = '';
|
57 |
var displays_arr = new Array;
|
58 |
if (v.displays) {
|
59 |
-
|
|
|
60 |
}
|
61 |
var filters = '';
|
62 |
if (typeof ecwd_filters !== 'undefined') {
|
@@ -152,11 +165,7 @@
|
|
152 |
]
|
153 |
}
|
154 |
}
|
155 |
-
|
156 |
-
|
157 |
-
var display = 'full';
|
158 |
-
if (v.display)
|
159 |
-
display = v.display;
|
160 |
|
161 |
var displays_2 = 'list';
|
162 |
if (displays_arr[1])
|
@@ -211,9 +220,7 @@
|
|
211 |
if (v.content)
|
212 |
content = v.content;
|
213 |
|
214 |
-
|
215 |
-
if (v.view_type)
|
216 |
-
view_type = v.view_type;
|
217 |
var types = [
|
218 |
{
|
219 |
active: true,
|
@@ -234,6 +241,7 @@
|
|
234 |
'values': types,
|
235 |
tooltip: 'Select View type'
|
236 |
};
|
|
|
237 |
//open the popup
|
238 |
var win = editor_calendar.windowManager.open({
|
239 |
title: 'ECWD Shortcode',
|
@@ -335,10 +343,10 @@
|
|
335 |
shortcode_str += ' event_search="no"';
|
336 |
|
337 |
if (typeof data.display != 'undefined' && data.display.length)
|
338 |
-
shortcode_str += ' display="' + data.
|
339 |
shortcode_str += ' displays="';
|
340 |
if (typeof data.display != 'undefined' && data.display.length) {
|
341 |
-
shortcode_str += data.
|
342 |
}
|
343 |
if (typeof data.displays_2 != 'undefined' && data.displays_2.length) {
|
344 |
shortcode_str += data.displays_2 + ',';
|
@@ -369,7 +377,8 @@
|
|
369 |
}
|
370 |
shortcode_str += '"';
|
371 |
shortcode_str += ']';
|
372 |
-
|
|
|
373 |
editor_calendar.insertContent(shortcode_str);
|
374 |
}
|
375 |
}
|
@@ -386,7 +395,7 @@
|
|
386 |
footer: '',
|
387 |
page_items: '5',
|
388 |
event_search: 'yes',
|
389 |
-
display: '
|
390 |
displays: '',
|
391 |
filters: '',
|
392 |
id : 0,
|
36 |
return match;
|
37 |
});
|
38 |
}
|
39 |
+
|
40 |
+
function replaceAll(str, find, replace) {
|
41 |
+
return str.replace(new RegExp(find, 'g'), replace);
|
42 |
+
}
|
43 |
|
44 |
//add popup
|
45 |
editor_calendar.addCommand('ecwd_popup', function (ui, v) {
|
55 |
var page_items = '5';
|
56 |
if (v.page_items)
|
57 |
page_items = v.page_items;
|
58 |
+
|
59 |
+
var display = 'month';
|
60 |
+
if (v.display && v.display != 'full' && v.display != 'mini')
|
61 |
+
display = v.display;
|
62 |
+
|
63 |
+
var view_type = 'full';
|
64 |
+
if (v.view_type)
|
65 |
+
view_type = v.view_type;
|
66 |
|
67 |
|
68 |
var displays = '';
|
69 |
var displays_arr = new Array;
|
70 |
if (v.displays) {
|
71 |
+
var replaced_displays = replaceAll(v.displays, view_type, 'month');
|
72 |
+
displays_arr = replaced_displays.split(",");
|
73 |
}
|
74 |
var filters = '';
|
75 |
if (typeof ecwd_filters !== 'undefined') {
|
165 |
]
|
166 |
}
|
167 |
}
|
168 |
+
|
|
|
|
|
|
|
|
|
169 |
|
170 |
var displays_2 = 'list';
|
171 |
if (displays_arr[1])
|
220 |
if (v.content)
|
221 |
content = v.content;
|
222 |
|
223 |
+
|
|
|
|
|
224 |
var types = [
|
225 |
{
|
226 |
active: true,
|
241 |
'values': types,
|
242 |
tooltip: 'Select View type'
|
243 |
};
|
244 |
+
|
245 |
//open the popup
|
246 |
var win = editor_calendar.windowManager.open({
|
247 |
title: 'ECWD Shortcode',
|
343 |
shortcode_str += ' event_search="no"';
|
344 |
|
345 |
if (typeof data.display != 'undefined' && data.display.length)
|
346 |
+
shortcode_str += ' display="' + data.display + '"';
|
347 |
shortcode_str += ' displays="';
|
348 |
if (typeof data.display != 'undefined' && data.display.length) {
|
349 |
+
shortcode_str += data.display + ',';
|
350 |
}
|
351 |
if (typeof data.displays_2 != 'undefined' && data.displays_2.length) {
|
352 |
shortcode_str += data.displays_2 + ',';
|
377 |
}
|
378 |
shortcode_str += '"';
|
379 |
shortcode_str += ']';
|
380 |
+
shortcode_str = replaceAll(shortcode_str, 'month', data.view_type);
|
381 |
+
//insert shortcode to tinymce
|
382 |
editor_calendar.insertContent(shortcode_str);
|
383 |
}
|
384 |
}
|
395 |
footer: '',
|
396 |
page_items: '5',
|
397 |
event_search: 'yes',
|
398 |
+
display: 'month',
|
399 |
displays: '',
|
400 |
filters: '',
|
401 |
id : 0,
|
languages/ecwd-nb_NO.mo
ADDED
Binary file
|
languages/ecwd-nb_NO.po
ADDED
@@ -0,0 +1,379 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-10-15 09:39+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-10-15 09:54+0200\n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.5\n"
|
11 |
+
"X-Poedit-Basepath: ..\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
13 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
+
"Last-Translator: \n"
|
15 |
+
"Language: nb\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"
|
20 |
+
"X-Poedit-SearchPathExcluded-3: includes/register-settings.php\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-4: includes/ecwd-ical-events-class.php\n"
|
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:175 includes/calendar-class.php:176
|
27 |
+
#: views/widgets.php:168
|
28 |
+
msgid "Month"
|
29 |
+
msgstr "Måned"
|
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 "Uke"
|
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 "Kart"
|
46 |
+
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
+
msgid "4 Days"
|
49 |
+
msgstr "4 dager"
|
50 |
+
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
+
msgid "Posterboard"
|
53 |
+
msgstr "Oppslagstavle"
|
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 "Hele dagen"
|
64 |
+
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
+
msgid "No events"
|
68 |
+
msgstr "Ingen arrangementer"
|
69 |
+
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
+
msgid "No Events"
|
72 |
+
msgstr "Ingen Arrangementer"
|
73 |
+
|
74 |
+
#: includes/calendar-class.php:1256
|
75 |
+
msgid "More events"
|
76 |
+
msgstr "Flere arrangementer"
|
77 |
+
|
78 |
+
#: includes/ecwd-cpt-filter.php:67
|
79 |
+
msgid "From"
|
80 |
+
msgstr "Fra"
|
81 |
+
|
82 |
+
#: includes/ecwd-cpt-filter.php:74
|
83 |
+
msgid "To"
|
84 |
+
msgstr "Til"
|
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 "Gjenta hver"
|
91 |
+
|
92 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
93 |
+
msgid "days"
|
94 |
+
msgstr "dager"
|
95 |
+
|
96 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
97 |
+
msgid "Repeat every day"
|
98 |
+
msgstr "Gjenta hver dag"
|
99 |
+
|
100 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
101 |
+
msgid "weeks"
|
102 |
+
msgstr "uker"
|
103 |
+
|
104 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
105 |
+
msgid "Repeat every week"
|
106 |
+
msgstr "Gjenta hver uke"
|
107 |
+
|
108 |
+
#: includes/ecwd-display-class.php:889
|
109 |
+
msgid "on"
|
110 |
+
msgstr "på"
|
111 |
+
|
112 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
113 |
+
msgid "months"
|
114 |
+
msgstr "måneder"
|
115 |
+
|
116 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
117 |
+
msgid "Repeat every month"
|
118 |
+
msgstr "Gjenta hver måned"
|
119 |
+
|
120 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
121 |
+
msgid "on the same day"
|
122 |
+
msgstr "på samme dag"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
125 |
+
msgid "on the"
|
126 |
+
msgstr "på den"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
129 |
+
msgid "years"
|
130 |
+
msgstr "år"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
133 |
+
msgid "Repeat every year"
|
134 |
+
msgstr "Gjenta hvert år"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
137 |
+
msgid "until"
|
138 |
+
msgstr "frem til"
|
139 |
+
|
140 |
+
#: includes/ecwd-functions.php:8
|
141 |
+
msgid "Loading..."
|
142 |
+
msgstr "Laster..."
|
143 |
+
|
144 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
145 |
+
msgid "DAYS"
|
146 |
+
msgstr "DAGER"
|
147 |
+
|
148 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
149 |
+
msgid "HOURS"
|
150 |
+
msgstr "TIMER"
|
151 |
+
|
152 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
153 |
+
msgid "MINUTES"
|
154 |
+
msgstr "MINUTTER"
|
155 |
+
|
156 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
157 |
+
msgid "SECONDS"
|
158 |
+
msgstr "SEKUNDER"
|
159 |
+
|
160 |
+
#: includes/texts.php:2
|
161 |
+
msgid "January"
|
162 |
+
msgstr "Januar"
|
163 |
+
|
164 |
+
#: includes/texts.php:3
|
165 |
+
msgid "February"
|
166 |
+
msgstr "Februar"
|
167 |
+
|
168 |
+
#: includes/texts.php:4
|
169 |
+
msgid "March"
|
170 |
+
msgstr "Mars"
|
171 |
+
|
172 |
+
#: includes/texts.php:5
|
173 |
+
msgid "April"
|
174 |
+
msgstr "April"
|
175 |
+
|
176 |
+
#: includes/texts.php:6
|
177 |
+
msgid "May"
|
178 |
+
msgstr "Mai"
|
179 |
+
|
180 |
+
#: includes/texts.php:7
|
181 |
+
msgid "June"
|
182 |
+
msgstr "Juni"
|
183 |
+
|
184 |
+
#: includes/texts.php:8
|
185 |
+
msgid "July"
|
186 |
+
msgstr "Juli"
|
187 |
+
|
188 |
+
#: includes/texts.php:9
|
189 |
+
msgid "August"
|
190 |
+
msgstr "August"
|
191 |
+
|
192 |
+
#: includes/texts.php:10
|
193 |
+
msgid "September"
|
194 |
+
msgstr "September"
|
195 |
+
|
196 |
+
#: includes/texts.php:11
|
197 |
+
msgid "October"
|
198 |
+
msgstr "Oktober"
|
199 |
+
|
200 |
+
#: includes/texts.php:12
|
201 |
+
msgid "November"
|
202 |
+
msgstr "November"
|
203 |
+
|
204 |
+
#: includes/texts.php:13
|
205 |
+
msgid "December"
|
206 |
+
msgstr "Desember"
|
207 |
+
|
208 |
+
#: includes/texts.php:15
|
209 |
+
msgid "Sunday"
|
210 |
+
msgstr "Søndag"
|
211 |
+
|
212 |
+
#: includes/texts.php:16
|
213 |
+
msgid "Monday"
|
214 |
+
msgstr "Mandag"
|
215 |
+
|
216 |
+
#: includes/texts.php:17
|
217 |
+
msgid "Tuesday"
|
218 |
+
msgstr "Tirsdag"
|
219 |
+
|
220 |
+
#: includes/texts.php:18
|
221 |
+
msgid "Wednesday"
|
222 |
+
msgstr "Onsdag"
|
223 |
+
|
224 |
+
#: includes/texts.php:19
|
225 |
+
msgid "Thursday"
|
226 |
+
msgstr "Torsdag"
|
227 |
+
|
228 |
+
#: includes/texts.php:20
|
229 |
+
msgid "Friday"
|
230 |
+
msgstr "Fredag"
|
231 |
+
|
232 |
+
#: includes/texts.php:21
|
233 |
+
msgid "Saturday"
|
234 |
+
msgstr "Lørdag"
|
235 |
+
|
236 |
+
#: includes/texts.php:25
|
237 |
+
msgid "Sun"
|
238 |
+
msgstr "Søn"
|
239 |
+
|
240 |
+
#: includes/texts.php:26
|
241 |
+
msgid "Mon"
|
242 |
+
msgstr "Man"
|
243 |
+
|
244 |
+
#: includes/texts.php:27
|
245 |
+
msgid "Tue"
|
246 |
+
msgstr "Tir"
|
247 |
+
|
248 |
+
#: includes/texts.php:28
|
249 |
+
msgid "Wed"
|
250 |
+
msgstr "Ons"
|
251 |
+
|
252 |
+
#: includes/texts.php:29
|
253 |
+
msgid "Thu"
|
254 |
+
msgstr "Tor"
|
255 |
+
|
256 |
+
#: includes/texts.php:30
|
257 |
+
msgid "Fri"
|
258 |
+
msgstr "Fre"
|
259 |
+
|
260 |
+
#: includes/texts.php:31
|
261 |
+
msgid "Sat"
|
262 |
+
msgstr "Lør"
|
263 |
+
|
264 |
+
#: includes/texts.php:34
|
265 |
+
msgid "Su"
|
266 |
+
msgstr "Sø"
|
267 |
+
|
268 |
+
#: includes/texts.php:35
|
269 |
+
msgid "Mo"
|
270 |
+
msgstr "Ma"
|
271 |
+
|
272 |
+
#: includes/texts.php:36
|
273 |
+
msgid "Tu"
|
274 |
+
msgstr "Ti"
|
275 |
+
|
276 |
+
#: includes/texts.php:37
|
277 |
+
msgid "We"
|
278 |
+
msgstr "On"
|
279 |
+
|
280 |
+
#: includes/texts.php:38
|
281 |
+
msgid "Th"
|
282 |
+
msgstr "To"
|
283 |
+
|
284 |
+
#: includes/texts.php:39
|
285 |
+
msgid "Fr"
|
286 |
+
msgstr "Fr"
|
287 |
+
|
288 |
+
#: includes/texts.php:40
|
289 |
+
msgid "Sa"
|
290 |
+
msgstr "Lø"
|
291 |
+
|
292 |
+
#: includes/texts.php:44
|
293 |
+
msgid "Show Filters"
|
294 |
+
msgstr "Vis filter"
|
295 |
+
|
296 |
+
#: includes/texts.php:45
|
297 |
+
msgid "Collapse Filters"
|
298 |
+
msgstr "Skjul filter"
|
299 |
+
|
300 |
+
#: includes/texts.php:46
|
301 |
+
msgid "Reset Filters"
|
302 |
+
msgstr "Nullstill filter"
|
303 |
+
|
304 |
+
#: includes/texts.php:48
|
305 |
+
msgid "Days"
|
306 |
+
msgstr "Dager"
|
307 |
+
|
308 |
+
#: includes/texts.php:49
|
309 |
+
msgid "Categories"
|
310 |
+
msgstr "Kategorier"
|
311 |
+
|
312 |
+
#: includes/texts.php:50
|
313 |
+
msgid "Venues"
|
314 |
+
msgstr "Arenaer"
|
315 |
+
|
316 |
+
#: includes/texts.php:57
|
317 |
+
msgid "The event has just started"
|
318 |
+
msgstr "Arrangementet har nettopp startet"
|
319 |
+
|
320 |
+
#: includes/texts.php:72
|
321 |
+
msgid "Sundays"
|
322 |
+
msgstr "Søndager"
|
323 |
+
|
324 |
+
#: includes/texts.php:73
|
325 |
+
msgid "Mondays"
|
326 |
+
msgstr "Mandager"
|
327 |
+
|
328 |
+
#: includes/texts.php:74
|
329 |
+
msgid "Tuesdays"
|
330 |
+
msgstr "Tirsdager"
|
331 |
+
|
332 |
+
#: includes/texts.php:75
|
333 |
+
msgid "Wednesdays"
|
334 |
+
msgstr "Onsdager"
|
335 |
+
|
336 |
+
#: includes/texts.php:76
|
337 |
+
msgid "Thursdays"
|
338 |
+
msgstr "Torsdager"
|
339 |
+
|
340 |
+
#: includes/texts.php:77
|
341 |
+
msgid "Fridays"
|
342 |
+
msgstr "Fredager"
|
343 |
+
|
344 |
+
#: includes/texts.php:78
|
345 |
+
msgid "Saturdays"
|
346 |
+
msgstr "Lørdager"
|
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 "Dato"
|
352 |
+
|
353 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
354 |
+
msgid "Url"
|
355 |
+
msgstr "Url"
|
356 |
+
|
357 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
358 |
+
msgid "Organizers"
|
359 |
+
msgstr "Arrangører"
|
360 |
+
|
361 |
+
#: views/ecwd-organizer-content.php:109
|
362 |
+
msgid "upcoming events"
|
363 |
+
msgstr "kommende arrangementer"
|
364 |
+
|
365 |
+
#: views/ecwd-venue-content.php:141
|
366 |
+
msgid "events"
|
367 |
+
msgstr "arrangementer"
|
368 |
+
|
369 |
+
#: views/single-event.php:190
|
370 |
+
msgid "Venue"
|
371 |
+
msgstr "Arena"
|
372 |
+
|
373 |
+
#: views/single-event.php:200
|
374 |
+
msgid "Location"
|
375 |
+
msgstr "Sted"
|
376 |
+
|
377 |
+
#: views/single-event.php:449
|
378 |
+
msgid "Related events"
|
379 |
+
msgstr "Relaterte arrangementer"
|
languages/ecwd-nn_NO.mo
ADDED
Binary file
|
languages/ecwd-nn_NO.po
ADDED
@@ -0,0 +1,379 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: event_calendar_wd\n"
|
4 |
+
"POT-Creation-Date: 2015-10-15 09:55+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-10-15 10:12+0200\n"
|
6 |
+
"Language-Team: \n"
|
7 |
+
"MIME-Version: 1.0\n"
|
8 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
9 |
+
"Content-Transfer-Encoding: 8bit\n"
|
10 |
+
"X-Generator: Poedit 1.8.5\n"
|
11 |
+
"X-Poedit-Basepath: ..\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
13 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
14 |
+
"Last-Translator: \n"
|
15 |
+
"Language: nn\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"
|
20 |
+
"X-Poedit-SearchPathExcluded-3: includes/register-settings.php\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-4: includes/ecwd-ical-events-class.php\n"
|
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:175 includes/calendar-class.php:176
|
27 |
+
#: views/widgets.php:168
|
28 |
+
msgid "Month"
|
29 |
+
msgstr "Månad"
|
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 "Veke"
|
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 "Kart"
|
46 |
+
|
47 |
+
#: includes/calendar-class.php:188
|
48 |
+
msgid "4 Days"
|
49 |
+
msgstr "4 Dagar"
|
50 |
+
|
51 |
+
#: includes/calendar-class.php:191
|
52 |
+
msgid "Posterboard"
|
53 |
+
msgstr "Oppslagstavle"
|
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 "Heile dagen"
|
64 |
+
|
65 |
+
#: includes/calendar-class.php:440 includes/calendar-class.php:520
|
66 |
+
#: includes/calendar-class.php:1386
|
67 |
+
msgid "No events"
|
68 |
+
msgstr "Ingen arrangement"
|
69 |
+
|
70 |
+
#: includes/calendar-class.php:644
|
71 |
+
msgid "No Events"
|
72 |
+
msgstr "Ingen Arrangement"
|
73 |
+
|
74 |
+
#: includes/calendar-class.php:1256
|
75 |
+
msgid "More events"
|
76 |
+
msgstr "Fleire arrangement"
|
77 |
+
|
78 |
+
#: includes/ecwd-cpt-filter.php:67
|
79 |
+
msgid "From"
|
80 |
+
msgstr "Fra"
|
81 |
+
|
82 |
+
#: includes/ecwd-cpt-filter.php:74
|
83 |
+
msgid "To"
|
84 |
+
msgstr "Til"
|
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 "Gjenta kvar"
|
91 |
+
|
92 |
+
#: includes/ecwd-display-class.php:876 includes/texts.php:66
|
93 |
+
msgid "days"
|
94 |
+
msgstr "dagar"
|
95 |
+
|
96 |
+
#: includes/ecwd-display-class.php:878 includes/texts.php:61
|
97 |
+
msgid "Repeat every day"
|
98 |
+
msgstr "Gjenta kvar dag"
|
99 |
+
|
100 |
+
#: includes/ecwd-display-class.php:882 includes/texts.php:67
|
101 |
+
msgid "weeks"
|
102 |
+
msgstr "veker"
|
103 |
+
|
104 |
+
#: includes/ecwd-display-class.php:884 includes/texts.php:62
|
105 |
+
msgid "Repeat every week"
|
106 |
+
msgstr "Gjenta kvar veke"
|
107 |
+
|
108 |
+
#: includes/ecwd-display-class.php:889
|
109 |
+
msgid "on"
|
110 |
+
msgstr "på"
|
111 |
+
|
112 |
+
#: includes/ecwd-display-class.php:900 includes/texts.php:68
|
113 |
+
msgid "months"
|
114 |
+
msgstr "månader"
|
115 |
+
|
116 |
+
#: includes/ecwd-display-class.php:902 includes/texts.php:63
|
117 |
+
msgid "Repeat every month"
|
118 |
+
msgstr "Gjenta kvar månad"
|
119 |
+
|
120 |
+
#: includes/ecwd-display-class.php:907 includes/ecwd-display-class.php:931
|
121 |
+
msgid "on the same day"
|
122 |
+
msgstr "på samme dag"
|
123 |
+
|
124 |
+
#: includes/ecwd-display-class.php:912 includes/ecwd-display-class.php:936
|
125 |
+
msgid "on the"
|
126 |
+
msgstr "på den"
|
127 |
+
|
128 |
+
#: includes/ecwd-display-class.php:917 includes/texts.php:69
|
129 |
+
msgid "years"
|
130 |
+
msgstr "år"
|
131 |
+
|
132 |
+
#: includes/ecwd-display-class.php:919 includes/texts.php:64
|
133 |
+
msgid "Repeat every year"
|
134 |
+
msgstr "Gjenta kvart år"
|
135 |
+
|
136 |
+
#: includes/ecwd-display-class.php:940 includes/texts.php:70
|
137 |
+
msgid "until"
|
138 |
+
msgstr "fram til"
|
139 |
+
|
140 |
+
#: includes/ecwd-functions.php:8
|
141 |
+
msgid "Loading..."
|
142 |
+
msgstr "Lastar..."
|
143 |
+
|
144 |
+
#: includes/ecwd-functions.php:439 includes/texts.php:53
|
145 |
+
msgid "DAYS"
|
146 |
+
msgstr "DAGAR"
|
147 |
+
|
148 |
+
#: includes/ecwd-functions.php:440 includes/texts.php:54
|
149 |
+
msgid "HOURS"
|
150 |
+
msgstr "TIMAR"
|
151 |
+
|
152 |
+
#: includes/ecwd-functions.php:441 includes/texts.php:55
|
153 |
+
msgid "MINUTES"
|
154 |
+
msgstr "MINUTTER"
|
155 |
+
|
156 |
+
#: includes/ecwd-functions.php:442 includes/texts.php:56
|
157 |
+
msgid "SECONDS"
|
158 |
+
msgstr "SEKUNDER"
|
159 |
+
|
160 |
+
#: includes/texts.php:2
|
161 |
+
msgid "January"
|
162 |
+
msgstr "Januar"
|
163 |
+
|
164 |
+
#: includes/texts.php:3
|
165 |
+
msgid "February"
|
166 |
+
msgstr "Februar"
|
167 |
+
|
168 |
+
#: includes/texts.php:4
|
169 |
+
msgid "March"
|
170 |
+
msgstr "Mars"
|
171 |
+
|
172 |
+
#: includes/texts.php:5
|
173 |
+
msgid "April"
|
174 |
+
msgstr "April"
|
175 |
+
|
176 |
+
#: includes/texts.php:6
|
177 |
+
msgid "May"
|
178 |
+
msgstr "Mai"
|
179 |
+
|
180 |
+
#: includes/texts.php:7
|
181 |
+
msgid "June"
|
182 |
+
msgstr "Juni"
|
183 |
+
|
184 |
+
#: includes/texts.php:8
|
185 |
+
msgid "July"
|
186 |
+
msgstr "Juli"
|
187 |
+
|
188 |
+
#: includes/texts.php:9
|
189 |
+
msgid "August"
|
190 |
+
msgstr "August"
|
191 |
+
|
192 |
+
#: includes/texts.php:10
|
193 |
+
msgid "September"
|
194 |
+
msgstr "September"
|
195 |
+
|
196 |
+
#: includes/texts.php:11
|
197 |
+
msgid "October"
|
198 |
+
msgstr "Oktober"
|
199 |
+
|
200 |
+
#: includes/texts.php:12
|
201 |
+
msgid "November"
|
202 |
+
msgstr "November"
|
203 |
+
|
204 |
+
#: includes/texts.php:13
|
205 |
+
msgid "December"
|
206 |
+
msgstr "Desember"
|
207 |
+
|
208 |
+
#: includes/texts.php:15
|
209 |
+
msgid "Sunday"
|
210 |
+
msgstr "Søndag"
|
211 |
+
|
212 |
+
#: includes/texts.php:16
|
213 |
+
msgid "Monday"
|
214 |
+
msgstr "Måndag"
|
215 |
+
|
216 |
+
#: includes/texts.php:17
|
217 |
+
msgid "Tuesday"
|
218 |
+
msgstr "Tirsdag"
|
219 |
+
|
220 |
+
#: includes/texts.php:18
|
221 |
+
msgid "Wednesday"
|
222 |
+
msgstr "Onsdag"
|
223 |
+
|
224 |
+
#: includes/texts.php:19
|
225 |
+
msgid "Thursday"
|
226 |
+
msgstr "Torsdag"
|
227 |
+
|
228 |
+
#: includes/texts.php:20
|
229 |
+
msgid "Friday"
|
230 |
+
msgstr "Fredag"
|
231 |
+
|
232 |
+
#: includes/texts.php:21
|
233 |
+
msgid "Saturday"
|
234 |
+
msgstr "Laurdag"
|
235 |
+
|
236 |
+
#: includes/texts.php:25
|
237 |
+
msgid "Sun"
|
238 |
+
msgstr "Søn"
|
239 |
+
|
240 |
+
#: includes/texts.php:26
|
241 |
+
msgid "Mon"
|
242 |
+
msgstr "Man"
|
243 |
+
|
244 |
+
#: includes/texts.php:27
|
245 |
+
msgid "Tue"
|
246 |
+
msgstr "Tir"
|
247 |
+
|
248 |
+
#: includes/texts.php:28
|
249 |
+
msgid "Wed"
|
250 |
+
msgstr "Ons"
|
251 |
+
|
252 |
+
#: includes/texts.php:29
|
253 |
+
msgid "Thu"
|
254 |
+
msgstr "Tor"
|
255 |
+
|
256 |
+
#: includes/texts.php:30
|
257 |
+
msgid "Fri"
|
258 |
+
msgstr "Fre"
|
259 |
+
|
260 |
+
#: includes/texts.php:31
|
261 |
+
msgid "Sat"
|
262 |
+
msgstr "Lau"
|
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 "Ti"
|
275 |
+
|
276 |
+
#: includes/texts.php:37
|
277 |
+
msgid "We"
|
278 |
+
msgstr "On"
|
279 |
+
|
280 |
+
#: includes/texts.php:38
|
281 |
+
msgid "Th"
|
282 |
+
msgstr "To"
|
283 |
+
|
284 |
+
#: includes/texts.php:39
|
285 |
+
msgid "Fr"
|
286 |
+
msgstr "Fr"
|
287 |
+
|
288 |
+
#: includes/texts.php:40
|
289 |
+
msgid "Sa"
|
290 |
+
msgstr "La"
|
291 |
+
|
292 |
+
#: includes/texts.php:44
|
293 |
+
msgid "Show Filters"
|
294 |
+
msgstr "Vis filter"
|
295 |
+
|
296 |
+
#: includes/texts.php:45
|
297 |
+
msgid "Collapse Filters"
|
298 |
+
msgstr "Skjul filter"
|
299 |
+
|
300 |
+
#: includes/texts.php:46
|
301 |
+
msgid "Reset Filters"
|
302 |
+
msgstr "Nullstill filter"
|
303 |
+
|
304 |
+
#: includes/texts.php:48
|
305 |
+
msgid "Days"
|
306 |
+
msgstr "Dagar"
|
307 |
+
|
308 |
+
#: includes/texts.php:49
|
309 |
+
msgid "Categories"
|
310 |
+
msgstr "Kategoriar"
|
311 |
+
|
312 |
+
#: includes/texts.php:50
|
313 |
+
msgid "Venues"
|
314 |
+
msgstr "Arenaer"
|
315 |
+
|
316 |
+
#: includes/texts.php:57
|
317 |
+
msgid "The event has just started"
|
318 |
+
msgstr "Arrangementet har nettopp starta"
|
319 |
+
|
320 |
+
#: includes/texts.php:72
|
321 |
+
msgid "Sundays"
|
322 |
+
msgstr "Søndagar"
|
323 |
+
|
324 |
+
#: includes/texts.php:73
|
325 |
+
msgid "Mondays"
|
326 |
+
msgstr "Måndagar"
|
327 |
+
|
328 |
+
#: includes/texts.php:74
|
329 |
+
msgid "Tuesdays"
|
330 |
+
msgstr "Tirsdagar"
|
331 |
+
|
332 |
+
#: includes/texts.php:75
|
333 |
+
msgid "Wednesdays"
|
334 |
+
msgstr "Onsdagar"
|
335 |
+
|
336 |
+
#: includes/texts.php:76
|
337 |
+
msgid "Thursdays"
|
338 |
+
msgstr "Torsdagar"
|
339 |
+
|
340 |
+
#: includes/texts.php:77
|
341 |
+
msgid "Fridays"
|
342 |
+
msgstr "Fredagar"
|
343 |
+
|
344 |
+
#: includes/texts.php:78
|
345 |
+
msgid "Saturdays"
|
346 |
+
msgstr "Laurdagar"
|
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 "Dato"
|
352 |
+
|
353 |
+
#: views/ecwd-event-content.php:91 views/single-event.php:170
|
354 |
+
msgid "Url"
|
355 |
+
msgstr "Url"
|
356 |
+
|
357 |
+
#: views/ecwd-event-content.php:97 views/single-event.php:177
|
358 |
+
msgid "Organizers"
|
359 |
+
msgstr "Arrangørar"
|
360 |
+
|
361 |
+
#: views/ecwd-organizer-content.php:109
|
362 |
+
msgid "upcoming events"
|
363 |
+
msgstr "komande arrangement"
|
364 |
+
|
365 |
+
#: views/ecwd-venue-content.php:141
|
366 |
+
msgid "events"
|
367 |
+
msgstr "arrangement"
|
368 |
+
|
369 |
+
#: views/single-event.php:190
|
370 |
+
msgid "Venue"
|
371 |
+
msgstr "Arena"
|
372 |
+
|
373 |
+
#: views/single-event.php:200
|
374 |
+
msgid "Location"
|
375 |
+
msgstr "Stad"
|
376 |
+
|
377 |
+
#: views/single-event.php:449
|
378 |
+
msgid "Related events"
|
379 |
+
msgstr "Relaterte arrangement"
|
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, facebook integration
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -140,6 +140,12 @@ After downloading the ZIP file of the Event Calendar WD plugin,
|
|
140 |
|
141 |
== Changelog ==
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
= 1.0.32 =
|
144 |
* Fixed: Dates translation issue in posterboard view
|
145 |
* Fixed: Venues show map issue for ajaxed themes
|
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, facebook integration
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.0.33
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
140 |
|
141 |
== Changelog ==
|
142 |
|
143 |
+
= 1.0.33 =
|
144 |
+
* Added: Date format option for list, week and day views
|
145 |
+
* Fixed: "Back" link in single event page
|
146 |
+
* Fixed: Shortcode default view issue
|
147 |
+
* Fixed: Norwegian language files
|
148 |
+
|
149 |
= 1.0.32 =
|
150 |
* Fixed: Dates translation issue in posterboard view
|
151 |
* Fixed: Venues show map issue for ajaxed themes
|
views/single-event.php
CHANGED
@@ -148,7 +148,9 @@ get_header();
|
|
148 |
<header class="entry-header">
|
149 |
<?php the_title( '<h1 class="ecwd-events-single-event-title summary entry-title" '.$event_title_style.'>', '</h1>' ); ?>
|
150 |
</header>
|
151 |
-
|
|
|
|
|
152 |
<div class="event-detalis">
|
153 |
|
154 |
<?php ?>
|
148 |
<header class="entry-header">
|
149 |
<?php the_title( '<h1 class="ecwd-events-single-event-title summary entry-title" '.$event_title_style.'>', '</h1>' ); ?>
|
150 |
</header>
|
151 |
+
<?php if(isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER']){?>
|
152 |
+
<a id="ecwd_back_link" href="#">Back</a>
|
153 |
+
<?php }?>
|
154 |
<div class="event-detalis">
|
155 |
|
156 |
<?php ?>
|