Version Description
(2017-03-17) = * improved datepicker style in new/edit event view * show datepicker in correct language * respect first day of week wordpress setting in the datepicker * include event categories in the event feed * added support for categories in event import file * improvements and better error messages in event import * fixed html tag handling truncate function * splitted about page into 2 tabs * changes in language file handling, additional option to define which language file shall be loaded first * some improvements in the language files itself * prepare more help strings for translation * updated translations and added more german translations * moved screenshots to assets folder to reduce download size * changed mimimum required wordpress version to 3.8
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.7.8 |
Comparing to | |
See all releases |
Code changes from version 0.7.7 to 0.7.8
- admin/css/admin_about.css +4 -0
- admin/css/admin_import.css +19 -0
- admin/css/admin_new.css +22 -8
- admin/css/datepicker/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- admin/css/datepicker/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- admin/css/datepicker/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- admin/css/datepicker/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- admin/css/datepicker/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- admin/css/datepicker/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- admin/css/datepicker/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- admin/css/datepicker/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- admin/css/datepicker/images/ui-icons_222222_256x240.png +0 -0
- admin/css/datepicker/images/ui-icons_2e83ff_256x240.png +0 -0
- admin/css/datepicker/images/ui-icons_454545_256x240.png +0 -0
- admin/css/datepicker/images/ui-icons_888888_256x240.png +0 -0
- admin/css/datepicker/images/ui-icons_cd0a0a_256x240.png +0 -0
- admin/css/datepicker/jquery-ui-datepicker.css +0 -5
- admin/css/jquery-ui-datepicker.css +208 -0
- admin/css/jquery-ui.css +650 -0
- admin/css/jquery-ui.min.css +7 -0
- admin/images/flattr-badge-large.png +0 -0
- admin/images/paypal_btn_donate.gif +0 -0
- admin/includes/admin-about.php +66 -27
- admin/includes/admin-categories.php +3 -3
- admin/includes/admin-import.php +64 -28
- admin/includes/admin-main.php +5 -1
- admin/includes/admin-new.php +26 -14
- admin/js/admin_new.js +15 -25
- event-list.php +16 -4
- files/events-import-example.csv +3 -3
- includes/categories.php +21 -11
- includes/db.php +12 -5
- includes/feed.php +11 -1
- includes/options.php +1 -0
- includes/options_helptexts.php +40 -46
- includes/sc_event-list_helptexts.php +25 -27
- languages/event-list-de_DE.mo +0 -0
- languages/event-list-de_DE.po +696 -526
- languages/event-list-es_AR.mo +0 -0
- languages/event-list-es_AR.po +641 -473
- languages/event-list-es_ES.mo +0 -0
- languages/event-list-es_ES.po +641 -473
- languages/event-list-fi_FI.mo +0 -0
- languages/event-list-fi_FI.po +642 -474
- languages/event-list-fr_FR.mo +0 -0
- languages/event-list-fr_FR.po +668 -500
- languages/event-list-it_IT.mo +0 -0
- languages/event-list-it_IT.po +649 -481
- languages/event-list-nl_NL.mo +0 -0
- languages/event-list-nl_NL.po +668 -500
- languages/event-list-pt_BR.mo +0 -0
- languages/event-list-pt_BR.po +647 -479
- languages/event-list.pot +570 -487
- readme.txt +18 -2
- screenshot-1.png +0 -0
- screenshot-10.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
- screenshot-5.png +0 -0
- screenshot-6.png +0 -0
- screenshot-7.png +0 -0
- screenshot-8.png +0 -0
- screenshot-9.png +0 -0
@@ -80,3 +80,7 @@ div.el-format-desc {
|
|
80 |
div.el-format-desc em {
|
81 |
font-weight: bold;
|
82 |
}
|
|
|
|
|
|
|
|
80 |
div.el-format-desc em {
|
81 |
font-weight: bold;
|
82 |
}
|
83 |
+
|
84 |
+
a.donate img {
|
85 |
+
margin: 3px;
|
86 |
+
}
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.el-warning {
|
2 |
+
background: #fff;
|
3 |
+
border-left: 4px solid #dc3232;
|
4 |
+
margin: 5px 0 15px;
|
5 |
+
padding: 1px 12px;
|
6 |
+
}
|
7 |
+
|
8 |
+
ul.el-categories {
|
9 |
+
list-style: circle inside;
|
10 |
+
margin: 8px 0;
|
11 |
+
}
|
12 |
+
|
13 |
+
.el-event-header {
|
14 |
+
font-weight: bold;
|
15 |
+
}
|
16 |
+
|
17 |
+
.el-event-data {
|
18 |
+
font-style: italic;
|
19 |
+
}
|
@@ -1,15 +1,9 @@
|
|
1 |
-
@import url("datepicker/jquery-ui-datepicker.css");
|
2 |
-
|
3 |
#title, #location {
|
4 |
width: 400px;
|
5 |
}
|
6 |
|
7 |
-
#start_date, #end_date, #time {
|
8 |
-
width:
|
9 |
-
}
|
10 |
-
|
11 |
-
img.ui-datepicker-trigger {
|
12 |
-
vertical-align: middle;
|
13 |
}
|
14 |
|
15 |
p.note {
|
@@ -20,3 +14,23 @@ p.note {
|
|
20 |
div#postbox-container-1 {
|
21 |
width: 260px !important;
|
22 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
#title, #location {
|
2 |
width: 400px;
|
3 |
}
|
4 |
|
5 |
+
span.date-wrapper, #start_date, #end_date, #time {
|
6 |
+
width: 130px;
|
|
|
|
|
|
|
|
|
7 |
}
|
8 |
|
9 |
p.note {
|
14 |
div#postbox-container-1 {
|
15 |
width: 260px !important;
|
16 |
}
|
17 |
+
|
18 |
+
span.date-wrapper {
|
19 |
+
position: relative;
|
20 |
+
display: inline-table;
|
21 |
+
}
|
22 |
+
|
23 |
+
span.date-wrapper i.dashicons {
|
24 |
+
display: inline-block;
|
25 |
+
position: absolute;
|
26 |
+
padding-top: 3px;
|
27 |
+
padding-right: 4px;
|
28 |
+
pointer-events: none;
|
29 |
+
right: 0px;
|
30 |
+
z-index: 1;
|
31 |
+
}
|
32 |
+
|
33 |
+
span.date-wrapper input {
|
34 |
+
padding-right: 24px;
|
35 |
+
position: relative;
|
36 |
+
}
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,5 +0,0 @@
|
|
1 |
-
/*! jQuery UI - v1.9.1 - 2012-10-26
|
2 |
-
* http://jqueryui.com
|
3 |
-
* Includes: jquery.ui.core.css, jquery.ui.datepicker.css
|
4 |
-
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
5 |
-
* Copyright (c) 2012 jQuery Foundation and other contributors Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month-year{width:100%}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0em}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current{float:right}.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker-cover{position:absolute;z-index:-1;filter:mask();top:-4px;left:-4px;width:200px;height:200px}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px;background-image:url(images/ui-icons_222222_256x240.png)}.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(images/ui-icons_222222_256x240.png)}.ui-state-default .ui-icon{background-image:url(images/ui-icons_888888_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(images/ui-icons_454545_256x240.png)}.ui-state-active .ui-icon{background-image:url(images/ui-icons_454545_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_2e83ff_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_cd0a0a_256x240.png)}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;-khtml-border-top-left-radius:4px;border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;-khtml-border-top-right-radius:4px;border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;-khtml-border-bottom-left-radius:4px;border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;-khtml-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);-moz-border-radius:8px;-khtml-border-radius:8px;-webkit-border-radius:8px;border-radius:8px}
|
|
|
|
|
|
|
|
|
|
@@ -0,0 +1,208 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* Date Picker Default Styles */
|
2 |
+
.ui-datepicker {
|
3 |
+
padding: 0;
|
4 |
+
border: 1px solid #ddd;
|
5 |
+
-webkit-border-radius: 0;
|
6 |
+
-moz-border-radius: 0;
|
7 |
+
border-radius: 0;
|
8 |
+
}
|
9 |
+
.ui-datepicker * {
|
10 |
+
padding: 0;
|
11 |
+
font-family: "Open Sans", sans-serif;
|
12 |
+
-webkit-border-radius: 0;
|
13 |
+
-moz-border-radius: 0;
|
14 |
+
border-radius: 0;
|
15 |
+
}
|
16 |
+
.ui-datepicker table {
|
17 |
+
font-size: 13px;
|
18 |
+
margin: 0;
|
19 |
+
}
|
20 |
+
.ui-datepicker .ui-datepicker-header {
|
21 |
+
border: none;
|
22 |
+
background: #222;
|
23 |
+
color: #fff;
|
24 |
+
font-weight: normal;
|
25 |
+
}
|
26 |
+
.ui-datepicker .ui-datepicker-header .ui-state-hover {
|
27 |
+
background: #222;
|
28 |
+
border-color: transparent;
|
29 |
+
cursor: pointer;
|
30 |
+
-webkit-border-radius: 0;
|
31 |
+
-moz-border-radius: 0;
|
32 |
+
border-radius: 0;
|
33 |
+
}
|
34 |
+
.ui-datepicker thead {
|
35 |
+
background: #222;
|
36 |
+
color: #fff;
|
37 |
+
}
|
38 |
+
.ui-datepicker .ui-datepicker-title {
|
39 |
+
margin-top: .4em;
|
40 |
+
margin-bottom: .3em;
|
41 |
+
color: #fff;
|
42 |
+
font-size: 14px;
|
43 |
+
}
|
44 |
+
.ui-datepicker .ui-datepicker-prev-hover,
|
45 |
+
.ui-datepicker .ui-datepicker-next-hover,
|
46 |
+
.ui-datepicker .ui-datepicker-next,
|
47 |
+
.ui-datepicker .ui-datepicker-prev {
|
48 |
+
height: 1em;
|
49 |
+
top: .9em;
|
50 |
+
border: none;
|
51 |
+
}
|
52 |
+
.ui-datepicker .ui-datepicker-prev-hover {
|
53 |
+
left: 2px;
|
54 |
+
}
|
55 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
56 |
+
right: 2px;
|
57 |
+
}
|
58 |
+
.ui-datepicker .ui-datepicker-next span,
|
59 |
+
.ui-datepicker .ui-datepicker-prev span {
|
60 |
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAQAAABFnnJAAAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAAAEgAAABIAEbJaz4AABe4SURBVHja7V1diCXHdf56vbZmVl6nxwKFO2yyq1mM4qAwM7oDsR6C7iYIKesH3V1QHgyBu5YYJwHjrB9NQCuByIthHbAga6TZxeBgHMJKISZ+SDIb1oQgRtoVgtjGyD8PmSGQMIpfJmCLk4f+q6o+daq6+965P1VfM3Pv7VN16ud8Vd1dp6o6IUSEjBPTzkDEdBEJEDgiAXT0QOhNOxPHiUgAFT3sA9gPiQLjJsD0208Pbe9rM/OvwkaBQvP0yzhG6ASQO0AqDwmu9mOPT3nqPWsYV9qFEduVIDP/QU4BSfMC9REqAcbRAa520FDELdphc3SJCyRIcADgAAkSQXOXMs4ckrIxFEUs2oENBNSqR0WmJ2kVv2hltvRdaVPHvPtqdpVxjlD1AHIH6AupDbovH1nqkgllLd3apnQJUjV362dmDEnjOya5FUltsEqqbdtxa5Dbppx3uQ+sNLv6mblCcwLIoKlXTQ/7rQkmX4IKzdMv4xgxbgLMO3rYXyTzuhEJEDjiSGDgiAQIHJEAgSMSIHBEAgSOSIDAEQkQOOJ8ADPutPN/zGgyH8BvRoDLGdMT5wPIKbjN02U+gNsdnuV9oUjSbD6AnwdMrkK7gVYt3311u8zv0r5vfNq1L8xsgPp8gAz20fAilORvs8tdsX3mA0i5k1N3x5dBue7icyGgzwfgvus48OoF+DDu9ukzH0Bqf355s9OHnLMNmqQ0F2jjDJIcrrM+H0Ail6v/KUoe3cECpl85XecDTDv/x4zoDg4ccSAocEQCBI5IgMARCRA4IgECRyRA4IgECBwnp52BmQNNcZS/+1hp4/yf7BZ9IpUwzRyQMwftXUHumFMouX4JIED09fvsD0AtJE3RNg1X/jPTJ6IWNznaxvYrgU+oBnFPaAFcxU88CmCPn3hUkE8RSHD2+OQvEWT6Z7M0Com7BuQSygQiR2zA1Yi1/KuXAN/i22bruCspGUMHT6In0nUV7ZIDKmMnrFRNnUulaF72PJAgl3VXpZObgZrLBGh6E0gerccVyoed7dq4n3ETD+2SgXz0tq0BqQn66HbXQU3e5DGw6uJ8QvEyuQt0M1jW4epi/bpoVwtype5zE9kWboq75VoOTHdw6E8B851+i8fIOB8gcMSRwMARCRA4IgECRyRA4IgECByRAIEjEiBw6ItDi81Spwf3fuCThE8N+HhE28VzrY32TaURKgIUC6N8tntvVwHjQztdrpz71YC01Wzljes1jp35KYvDXoZe6xogI5cA+MWh8hJOH492jzk3PgrYdPltDWHPv18N2NLoGctre41iVyVw9UDdlqbXFujqQ8E+26m7lmDbFoj6zaRx58Cmx72FuzvnfhvS8z63umkTQ+5aWF4Zh1ufSJpm2WFsc1gn9TBNCeBfAUmDuH45kKvQJ3332n57+q7YLgK460A2oJsAMoEsBGj2FFBVQBuPVaLo4LWT9iml3wZVvtveQ0ipr+bS4grO7yAgpV/E5O8BXJqrvRuk9c1mLhvOB5AqQL+BkYovZ04qoqRDLZp72hdnAjcBpRIcGBtIHDTW4AfJvAfla2/8commlwA/XzU5t4iQr4JdYvtVL18Ov2tw9yltkp72L7Vx3wOwiPMBVPScb0xaOEQCBI44FBw4IgECRyRA4IgECByRAIEjEmDcmLPHKnM+gAuSv8qn6L2O/u5Jo3vuEsdg94yVvT4fQILkMfcZJSw8dqseC0zt6Lq4Sl4enjiXv7oNbIsvaZ8SqoEgNVvu3X7rg43q0sh2b//2HWgGJI+dK3ZiDaeetXk7pcWj5CX1L+mxgL8HsE06kP1V1aWhzaSFrOW4p03Z9zAg+Pr6kgZnuXS59N0rm2cS5vsCqips+gZu8xKSNIhbSP2WQLsXb7ffQkIyo6uH8Ncs7RFwzKh6ANVR2CZrrjcJuJ2tXa+OidKD8D2E/smFGE8r5lLQe48ZMb9+CTgoM8V14FkHn0334nEgzgfw8fa7t4eQUc0F4KdUyFVfXYTsu4sUIZOGUjVE2wk1EwHvDSRrB+7jLLXdBI7D2eo3a7HtjabPTSQAB0Fnxrg+iO5gHTPTNR8XIgECRxwKDhyRAIEjEiBwRAIEjkiAwDF7BEhny1u26DAJ4OfLllw25CW1hUhxeCxP4tPeB2Fm0Gy7eJ/tpBOsdMjPIQqSpGK4tlvWV1igN4B3gU4AeZRaHu0uWnWKQ5YCVA6U8mv3sq5/pQxxaIlffGu3qbra+/i9an7BURFA3+69jsofbtsyPUGSm/8DNi25a8+6/g+wIqydLVLn09dnFJha/LaPCA7FULDf6nYJxVwbm/nNuThmL+L6LZ2tS8xw5vYR0lvOg4I6JSxB3Uwm7FMZ/CZE2CeVmQSyTcngc+jaPkEn+IK9Ar4LqhdGqFVm32DE/dYL39dK2OQZBah2H1E4gvld+fX8+Lw2IgIAtz+A38r1ul/evUONJM1uHuUQurbE61wB9w5CgcL/hRH6rNjq+7hhv4voBv/tI4LCrM0HmJT5IyyYNQJEHDNmzxcQcayIBAgckQCBIxIgcCwSAfqlJ6A/Ef0nsZQfzd63OtPICDDMK24Xw9aaXnZ4+l0g3NBmCzQ1Yh975fc9Nna/Ez1O4ld4FEc4wqP4FUuBvjP3a7l0zZKGXe6KCTxnHHIKxtwOoqs0oAENSUUVtjo/JFgOKj+3tbhqCF57doyor8lHmrRPJvqN5HoOudytGfHXDPkSrRPREi0R0TotCTXAp1GHVEP+EjXEtncZyxAFk+8BAO5YJnPcxpdxD0CK2+W5O7hgZeMXLCOKy+W3o5rsJr4htL89ZBtLZNgHYU9LYQ9bSg8AbBlyN95Xcpfl0Ix/H8t4EEAf942wej6BLUbim5suL5+XsYb3y++lpoIA9/NPdRqGmuV7AH6EI3G2z1L+ecMa4qNC7Ct4D9uC/JLmSr6kUDHD2woFtvC2ISWoizP5FYYfxS/K759g8/AgPoEEp4RcXhRkpkeSl/MvoE4YLc0IXpj/D/DP6unqWnboUPAjHNXC6FnICLAiaLO1G8DVAwBvlRQgXMJbTIiCAnXzZ0iNz3rufl3M6Qb+G38I4B+xwcZ/GygpxOdgK++p9N7qOFCY/4+wrFPA936WM3+9AgG5o8razk9ZmasHKCgAi/mRpw7rTd5549PEEn6efzvLSB/Eu9jAfQAbeBcP4f8MuTkLqe0yU3dH7wrxOfxN7Vxm/i/gQQD/AADFBdz/MbBufrOAp3AKp7CMU9ZO8gE8gAcAcC3spsP8QA9v4RIu4S3LdM4+DjDEEAct7/OX8Vv5sVzLXw9nQPgFNrCBEyCcEaeUblmMf075s2EJLrhCfIs5l5H+Bj6G7wAALuBOJmj/RFsv4rIzzg+FkK4eoIcDIG/7B0z19zU5R4HfMD7NKspayQayOyK9n3gY9wH8pPx9HxvCjKIuHfxRxxD8hNmf5OXL7s9K86N8DEwdj1HuR5iXNfnL1scV+2PMjQk+BhYPSdWnLRd95hGQe4hzPeg1fQwGjayl9wmhlpDXXzwEDtSzs+MO7gP4HeX3e5YbqcmCAJxXWvr4tWeYztSUNbyvtX7E+QDBY5F8AREtEAkQOCIBAkckQOCIBFgsvIJXmkXQCZCC4FqYbQeVjoyujxZ9cB71LeXxte5vGxqPvUNDvm3IuUEn1Vu+NgE5APylo34GGLSut9P4Cr6C045QI4wwKn8pdZISUZ/6RJTWBhF2aSkfRrhG6zRkh0Fu5AMR23TDkMuebPPos+G3FE82EdEWOxBSHPX47oGcLMw6rdP6hORFmGxQx5QMqBiQS83hmtw6RNuEvHQpo/suERHdFWu3GEwa0TkCQU+gn4+h1dUT9RqNg3FyENGf5X9XrRXUp2wCSt+iH5YUXAYmAv07ge4R6N+InzJBtJ5L1gU5RPlpWqLTFnlR/SMaNa7BAtusfLsWe5tNf0hEI0qrkUTVHVw4Kfew1WqjFnWuAO85fAL7+DF+gJ/jPYtPsI89XMIbVpduF/wTfhffwwa+hyfwL9ZQ2Vj6hijXxyx1/LLmJ6wwwk0AyP/X6+9Q+8WDn21x1uMMAHwJwEp+eUzxAcoe4IYxmt6nG417ALWDs/UAV4noL4joFbaF9InY1j+uHuBvCfRdAn2Llpj0H3X0AIUcotzeA4y03JmXgIGS6wyDRuX7qib7KlOD5+hcPXUziX5OhHr1j4MAn6HfpM/R+fyvifn1WXE2AqRElFKaXy9N+XeI6Nv539/V5EX5bNfwSv64Q87Hr6692XG+IQFMd10q1JDsatLOmwrUT122RENCyaEBE0ImQN1f18T8ZvFkAvDys/Rdeph26WH6e/q0IV+t5W5trPLK/LAeuolTUW6T3s1vBE35iIpr/25bAsBxUJ6N1DM8b+C+Vb5lVDD3FJCWRecJYidghsccuesih8P8Pi73ggIpI3uKPsxv/LbpQ3qKIcBVGtXj+ibvNqh+H8rfg0qTlmXzmxTYqkld07plORFRz2GcLvKR0/yux8CKAqkl9nPl9+dqsa09kK87eB3v+gWM6IgBoHvsx4QRAOCWeTrOBwgc0RcQOCIBAkckQOCIBAgc4REgcxsPGMmgfDZ61EOPbTfFOburVgmwXlbAemt9NLUqSEHYyb/vwDar4Vq+qHS3RoHfxy4u4zI+hU/hh/h0LWZWO1fzX9mepeq+55v4LAhP4AkQPovNWnx5+4ph7cF+6JC7QgxraRgjQObZdSLapSEN6ZAqpwc34CENZpAzRPtjlOdrnR1UybBDoB1rLorhkHPsUNep8vgYOxa6Q8M8B5meAZO+fRyv8FKklmEw+UwVO7XoycYa+7k3B0z51BjrxXc1QDZKvENEh1YjTpMAxVgWn0Zh9uqzruGaONZ5gj5CCSX0ETrBGmRIIKJB6dPncicTQPWHmCuXMm9Iv6zjOgGgzaKoEyDTul2OyXIEOEOr+cEQYJhX4w4748dFAHJWgdu4cvx1Rcb1UDuKnDN/KuonSspjjUn9eh5rlx9SpWz3kOLgCWBPn8oZV7wGKn2cQwKdYwkAhQB8n7JOm7RZ+isZAuzkVcdP+XIxXA7RTMoTyOVTk1p/NeMpw8CQf5uI1vKD6DqjYVC6bLn0iU53IsBD+dmHyv9m7KL/GhLROUsPYK+/PhGdoTO0Smdok4iuZefV9wV8gBQ38fn8FknecR9OubSbuFvKpbBe7mOSrdE38U38cfn9+/g9TZYqM56AK/UxcazjS8qvl/EzIfWslszyrwD4EADwS2aDGcKKNs/KfMHFI9p5ws8MuT5f6Ca+bMzayrbwzybL7jHb+RMeB/BfAID/VGpX62APaUhD2qXZvAksWh+fxjfL1p/hrhG3n7f71Kp/s2w759jUd+gqUd4Odxh59vmQ5UbPnGhjtt/H6DHjv9x/NL8HGFKfNmmTNolos34JUK+xNvPP/lPAXSrmxnLVM3CksEPbtM1Op0IeO6MQRwESfpln12ohhrUOfGjEPFc7mt0DEA3Lw0IA31Y4LQLIR6q0+rtkes2z1uFTOlv+s57lkFIqbieTWtzP02eoJ9QSEZT7DF22lD8FZP/NbejqBDEpMhSlaum0MkZ3sIqH8BKAF/E/rHSEFdzM32aQ4n/xa9qbDVz3SIC+meUk5j23QCRA4AjPFxChIRIgcEQCBA6TAEPrfuEXcau8obwlbokaMU/QHhRuExHRbeYB5ou1h5AvTuVhLx5jPtQfz5TGfcYIdlF7eixwkVG4R0R71uR+6jkgA48Qx3/sKfTfm3puJkCA21T4nMw+4DWWAK8xCuWBoNowhNX8HEncy6tcIVxyor1yuGiPlfvlf46O6uszmoH1PsCGpgQAgV24WTd/vZ9Q19byBnSFGBHR07RET1s1+JVuQQmQXf8Lr7PeB+gFl6phm2zLwlTz7zKSQfnJXyZcxkFu+DQnAid/Ov/2tKBhT0hjgQkwIBOqAfwJwHfeuqZ7jEeuiGczvy8BUrL3MVSOsNf99RXsBOgT0R7t0R75+BXm5DArwPzelACuozBS3fyZ2W3mn4UeYIFvAqv2nyp+58oMX2cJ8HVGoasHsB1qD8THn/49gJuCc3hwRasX8ilW+hSj0FU5dqnU+nUDj1qH6PoUkIWZutHGT4A91sBqFTxfkz5vNeNASFCiR9ve43iPBSOAvzv4SQzx5/n3r+EN/Ou0xzCnhLbvAppRxPkAgSN6AwNHJEDgiAQIHJEAgSMSIHBEApgYgFpL5xAqAYjZNkEHYVyvhJgWbgjvNgeAAXZbS+cTxigd0a4wGqd6A0xJES+1ahjQbu4IGtCuoAGEfHmTLt/WNLVx1w4cg80Dj9hFDdi1zNXBV5/NhBIB1Hj1ah6UcQb5CntZg50Atvg+BJCksqOnLl2QIWFbIflpHS4CZCasfutSEErjuTTYCGCP7yZAUxPbpfwGDHN58DeBd3AB32hxPbmDC7iAbJ3cBWXMPFHOXhB3wi002OCKfzxYJG9AjeWLfA/gOgK8B1CdQYQ7eElsX5Szv/icL6hPLrbcZ/f57aRziegNNDHArmBiWTqHiAQIHHEkMHBEAgSOSIDAEQkQOCIBAodJAFJeLB4RACoCpPlWqWdx1rLXfjZ0dM0ijZhLFARIcVhuDvMIDlkjb+ACvoYXcejxQglzeGHbGIHcPmZ5hA15je0Q0V8RiOhFyvbFtY0ep+JewtWovOt3/1jl8bAchVGJ7hEI9CINCHSPbG+n3qFzlDllU6tSfqfapXw79dP5n7nT7WmSNlwv5CTKl8q/pdYOocCOkwCA8wDeBAC8BAB4Exs4X9vKdAObuIkreASXcIgruN6oq/mk0ukkqI9Afzz/S8Avvzqd/30S/ObyHwewkstXFmu8fpLIfAEpDnFfedHRPWxgRdsJt0CKQ9zBBezgClvJlO9UX9+t/re13/9h7JU7aXmEDXlXsEvVoukR8Zu4ZL7w7H0VtpfK2ObL6O8Wr883mrQ8Hpaj8AZm78O4jzfxLDbAv5Gjmg1wAWDcomrrX7A1tIuLyh28jmv5g+AbuBZfFh8K4nyAwBF9AYEjEiBwRAIEjkiAwFERwPU+gK7yJ3G9lF/Hk8cun3T5pi1vi1yn630AXeWubeYmLZ90+aYtb31kHxeJQ/U+gK5y10aTk5ZPunzTlnc4skvA5bJDSJQRvMvMNxWm/IU8boIXDPmzin4wZ5/l1FvkSYv4l9n4XPlc5Vfz3zz+20iUELb4klzNBW+VhsgGgqrRoKT2S5dzGSnkCYDnAbyunRmffp/4bv1qiKbxE/ALzKjBb1K01OV/AgD4a2v9FWc38Q7GskhNJYD+Lup6Blxy4AW8DuB5vCZWsK2C3PoTVpuvAdz6ZQJ0r5+kPN9O/jjeUcw/FgKc7K5CwYfK/+YgZ48gQ12O3kZDony2iU8ecV1usj8VZI/jnmb+sWDcl4ARgFtofwno3sXb81fX0K4Ll/T79SCuHsqW/uO4p5l/DD1AdhP4Kit7lfkmyZ8HcBM382+q/HUlFjFnX1ekLjlEOVi5nn+qnX1Vk7jkbeunKB+1lr+jmZ9PtSmCeAyb9mPopOWdxwEWfyBm2gNRk5Z3JgDoSbpeKr9OT9aCdpVfpFul/BYziDFp+aTLN215yyNOCAkc0RsYOCIBAkckQOCIBAgckQCBIxIgcKjOoLrTUcesyyNaQPcGLpffjtjQXeURM4f6JaCb6Y6cGrq13KSzhggNJgFcBjzCkShfxpHSD9ThMqA6JYoDtfT1R1hgEmAZEA24jGVRfoRlkSAEecJE7qGwIq47HjPql4DlFlr02LKGbu3XRaCIhtDfF6BJamFnXR7RAtEbGDjiQFDgiAQIHJEAgSMSIHBEAgSOSIDAMb8E6MUBoXFAJ0D3cTZCH4T+xPPdwz5WJ55KANAJsJr/TRuu1p2Z/2Da2VwE6ATYz/+mC1frjuYfI3x7AEKv9tcMzKokFpl57TQszB/vAcYCfUbQPhLss26WhPlrhi2vUIX5V0X5QbwHGBd0Akg9wGppmuKvWSe8VztTJ1FP0c9RTDd/vAiMAbPUA0TzTwG+PUB3uN/f0cz8PUu4iEbw7QGOA1Lvwpk/3gOMAfqEkB4O0JvJzpXyTt/8jOiIOCMocMyvLyBiLPh/gj9Qphd3t8gAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTMtMDItMDFUMDU6MzM6MTAtMDg6MDApYMCSAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDEzLTAyLTAxVDA1OjMzOjEwLTA4OjAwWD14LgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAASUVORK5CYII=');
|
61 |
+
background-position: -32px 0;
|
62 |
+
margin-top: 0;
|
63 |
+
top: 0;
|
64 |
+
font-weight: normal;
|
65 |
+
}
|
66 |
+
.ui-datepicker .ui-datepicker-prev span {
|
67 |
+
background-position: -96px 0;
|
68 |
+
}
|
69 |
+
.ui-datepicker th {
|
70 |
+
padding: 0.75em 0;
|
71 |
+
color: #fff;
|
72 |
+
font-weight: normal;
|
73 |
+
border: none;
|
74 |
+
border-top: 1px solid #333;
|
75 |
+
}
|
76 |
+
.ui-datepicker td {
|
77 |
+
background: #f1f1f1;
|
78 |
+
border: none;
|
79 |
+
padding: 0;
|
80 |
+
}
|
81 |
+
.ui-datepicker td .ui-state-default {
|
82 |
+
background: transparent;
|
83 |
+
border: none;
|
84 |
+
text-align: center;
|
85 |
+
padding: .5em;
|
86 |
+
margin: 0;
|
87 |
+
font-weight: normal;
|
88 |
+
color: #333;
|
89 |
+
}
|
90 |
+
.ui-datepicker td .ui-state-active,
|
91 |
+
.ui-datepicker td .ui-state-hover {
|
92 |
+
background: #0074a2;
|
93 |
+
color: #fff;
|
94 |
+
}
|
95 |
+
.ui-datepicker td.ui-state-disabled,
|
96 |
+
.ui-datepicker td.ui-state-disabled .ui-state-default {
|
97 |
+
opacity: 1;
|
98 |
+
color: #999;
|
99 |
+
}
|
100 |
+
/* Other Datepicker Color Schemes */
|
101 |
+
/* Blue */
|
102 |
+
.admin-color-blue .ui-datepicker .ui-datepicker-header,
|
103 |
+
.admin-color-blue .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
104 |
+
.admin-color-blue .ui-datepicker thead {
|
105 |
+
background: #4796b3;
|
106 |
+
}
|
107 |
+
.admin-color-blue .ui-datepicker th {
|
108 |
+
border-color: #52accc;
|
109 |
+
}
|
110 |
+
.admin-color-blue .ui-datepicker td .ui-state-active,
|
111 |
+
.admin-color-blue .ui-datepicker td .ui-state-hover {
|
112 |
+
background: #096484;
|
113 |
+
}
|
114 |
+
/* Coffee */
|
115 |
+
.admin-color-coffee .ui-datepicker .ui-datepicker-header,
|
116 |
+
.admin-color-coffee .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
117 |
+
.admin-color-coffee .ui-datepicker thead {
|
118 |
+
background: #46403c;
|
119 |
+
}
|
120 |
+
.admin-color-coffee .ui-datepicker th {
|
121 |
+
border-color: #59524c;
|
122 |
+
}
|
123 |
+
.admin-color-coffee .ui-datepicker td .ui-state-active,
|
124 |
+
.admin-color-coffee .ui-datepicker td .ui-state-hover {
|
125 |
+
background: #c7a589;
|
126 |
+
}
|
127 |
+
/* Ectoplasm */
|
128 |
+
.admin-color-ectoplasm .ui-datepicker .ui-datepicker-header,
|
129 |
+
.admin-color-ectoplasm .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
130 |
+
.admin-color-ectoplasm .ui-datepicker thead {
|
131 |
+
background: #413256;
|
132 |
+
}
|
133 |
+
.admin-color-ectoplasm .ui-datepicker th {
|
134 |
+
border-color: #523f6d;
|
135 |
+
}
|
136 |
+
.admin-color-ectoplasm .ui-datepicker td .ui-state-active,
|
137 |
+
.admin-color-ectoplasm .ui-datepicker td .ui-state-hover {
|
138 |
+
background: #a3b745;
|
139 |
+
}
|
140 |
+
/* Midnight */
|
141 |
+
.admin-color-midnight .ui-datepicker .ui-datepicker-header,
|
142 |
+
.admin-color-midnight .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
143 |
+
.admin-color-midnight .ui-datepicker thead {
|
144 |
+
background: #26292c;
|
145 |
+
}
|
146 |
+
.admin-color-midnight .ui-datepicker th {
|
147 |
+
border-color: #363b3f;
|
148 |
+
}
|
149 |
+
.admin-color-midnight .ui-datepicker td .ui-state-active,
|
150 |
+
.admin-color-midnight .ui-datepicker td .ui-state-hover {
|
151 |
+
background: #e14d43;
|
152 |
+
}
|
153 |
+
/* Ocean */
|
154 |
+
.admin-color-ocean .ui-datepicker .ui-datepicker-header,
|
155 |
+
.admin-color-ocean .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
156 |
+
.admin-color-ocean .ui-datepicker thead {
|
157 |
+
background: #627c83;
|
158 |
+
}
|
159 |
+
.admin-color-ocean .ui-datepicker th {
|
160 |
+
border-color: #738e96;
|
161 |
+
}
|
162 |
+
.admin-color-ocean .ui-datepicker td .ui-state-active,
|
163 |
+
.admin-color-ocean .ui-datepicker td .ui-state-hover {
|
164 |
+
background: #9ebaa0;
|
165 |
+
}
|
166 |
+
/* Sunrise */
|
167 |
+
.admin-color-sunrise .ui-datepicker .ui-datepicker-header,
|
168 |
+
.admin-color-sunrise .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
169 |
+
.admin-color-sunrise .ui-datepicker thead {
|
170 |
+
background: #be3631;
|
171 |
+
}
|
172 |
+
.admin-color-sunrise .ui-datepicker th {
|
173 |
+
border-color: #cf4944;
|
174 |
+
}
|
175 |
+
.admin-color-sunrise .ui-datepicker td .ui-state-active,
|
176 |
+
.admin-color-sunrise .ui-datepicker td .ui-state-hover {
|
177 |
+
background: #dd823b;
|
178 |
+
}
|
179 |
+
/* Light */
|
180 |
+
.admin-color-light .ui-datepicker .ui-datepicker-header,
|
181 |
+
.admin-color-light .ui-datepicker .ui-datepicker-header .ui-state-hover,
|
182 |
+
.admin-color-light .ui-datepicker thead {
|
183 |
+
background: #e5e5e5;
|
184 |
+
}
|
185 |
+
.admin-color-light .ui-datepicker td {
|
186 |
+
background: #fff;
|
187 |
+
}
|
188 |
+
.admin-color-light .ui-datepicker .ui-datepicker-next span,
|
189 |
+
.admin-color-light .ui-datepicker .ui-datepicker-prev span {
|
190 |
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAYAAADvl7rLAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxMUIxRjI2RjhCODYxMUUzQTEyNERCMDU1QzdBQ0EyMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxMUIxRjI3MDhCODYxMUUzQTEyNERCMDU1QzdBQ0EyMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjExQjFGMjZEOEI4NjExRTNBMTI0REIwNTVDN0FDQTIwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjExQjFGMjZFOEI4NjExRTNBMTI0REIwNTVDN0FDQTIwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+kKfR4AAAHcRJREFUeNrsXWuMXsdZnuMu4CUN2S0t0a6o4sQqAaooTncrKGrUNbe2qSC2uQqpqtexbCqI0xaQEBclKUL8qts6stqNkuwWiYqbajtqS9oAuyEISrubrLmUFnBSfmRXFa12KT+cKk2GM9mZ7ng858w7l3PmnO88jzQ633e+8565vs+8M9+8MwXnnAEAMEzsQREAAAgAAIABYkx9OHXqFEoDMDFVho0yTJdhE8UxOjhz5gwsAICk/Exep1AkGAK0DY6G93L+eUblnw4gATPNqMceEsBURMVxSwhFbO8TEj838j4V8B6eQHF1RWyzDnTl3zRIIDTNsCJ6RABdMf+mM6XBjNfsDXP1wm2hkEGN+ze1eyFpngYJ9IcAYs0/vQEVkenz7X1SwRZv2xNhqeJNVRcxac5Vj0AAAcSYf13pBVMMPfS8xyhhaFpy9pqhQ6CqNOe0ZgBPAgg1/7rcC8aQQJEx7lzkGzoEqkpz7noEPOcAmhhPxjTGzcA42zR/m0jDZkSPGZPvmCFQVZqh/B3EWMfTV6CKvm2F5LJAQhYCmWlGPYIAAJAPMMQhAAAAIAAAAEAAAACAAAAAAAEAAAACAAAABAAAAAhAA/zI8+wHoMcL772BEkBsA0i1J0CsM0yIAvGa0CZ55doPIIU7uF7uIJKeEUCKBpDS6yumEW4kTPt0S+mOVf7YtG84voekHXsB9IQAUlXeZgMk0JYC2dIe6swS2vBTK79P2mMdmTZayBPQEAGkrLyUJDDdkvLb0h7ryRZCAtOZlD/F8G264TwBDRJAURNYJhLwbcSpepqU+wFs9KDcqhR1OkHa4Q7cQbTlDRjjVRa6H0BuFInKbTqQ0IpE8YYqrl7n8CgcOAHkVKK+I+d+ACj/AQ4BAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAeg1sCw64IJYBFwPNt4li1Mp/DJUPBSAoQUwZ8AwKlCLOQdT5HmLlh1ZCikM6eUsyOXqUJvMRW/660hcRaUlBHDyjEqdsuzxTW+O+BJCi8lOdyRcSf5GoAaWqhJAelCcsvyKB8sQocmzeU7SBWAuorbabmjxqy3+spcrnERkPbUhFR8z3UAVIMQ7NVQbcEneRIO/UvBSW/PuWAw+U54naQJFgCFZVlgV1DiDH2LlI/K5UzNlmL55ScYtEaQ9VoFTpbbsNhHaCqdKdoh045fe0pPxFBiKJnXtIwcAx6SgSpD+VCR3bA8XmPdUkZB+sv9TzGLV135QFUHTgXTl7z5Tx5yzH0PynznvRkTJscx4lZvhHjnesw4XXFRTIP/I/qvFiJSAADBggAAAAAQAAAAIAAAAEAAAACAAAABAAAABDIwB1suvQT3WNXU3YZ6RqA6m8QtuML/Zk6N60P8rhoBs9bABdJZO2G05omadsA0Vg/DZvuKkW4lZyKY7GM9Ocwx14inm6A28Q7zVdCSGVzztKAr7pmkqYh5DyT9kGeIDy1x1QO9Vg3E1YQDmPRXceklt3OGjV91w9H6Ugiw5aAr6706Q42Ti2/FO1gZCdeTYqLBkfIoptBzEWUGia60z/UEvOVZaNTwKGNIC6sVdo5fNMSp9SAXwbQS4yrMt7G+vbiwTtILUV7Itp4r1G5gCaVP62HCtiG38KBs6xFx5FCbpo9VQ1dNv4e7qFdhBjAcWmWcA8Xj3FMe/WuYw9HWwAdZMvoZWfk4FTKUCKrb24R/2lMEFD0rtZU9Z9PCo+9nj1IlDeVZaNEkATPb5vQcb0eKkYOCQdmyy9uedbH6kIkEeUv82nfbPFNKQq981Ew+DQ4V/tMe9jDTJnFzazYJEkkGszkk2WvucqPOOf1sa9PgTYtf0D+riZSGvx4mAQoE0SAjoGLAUGABAAAAAgAAAAQAAAAIAAAAAAAQBAVnAUQfsEkMobLdSjKlWl6/GjIYUpX+6yCz0hCfUeSACpvNFCPapSnYmnxy/eN83SHFLat14s9njwgsUf8JpCgXlLaR88AVR5o/n6NKf2KQ+NX5GJz8KWlCfqhnok8kRxhypwEdgTV3kDxigwi6w7kECCOQDfjQ1iPKpsCt/WxgrcQn4pThj2aYS2k3lTmNJNPEvNrw+BxJ7KDEQQQJ0LYRs+0dNaXLEbK8QoSpHAjCwSKVauHoxnym/Kd6QYjgyKAKq80dpi4VhvuBSurLlNxqLCAuEtNvqu9cQ8sO5SHfM+qCGAbbzssyXSlFFpIRsihO4HkMqVNbbx8wQkEDoOjm30tmGQ7xCCB86rxMjWkQCD8l8NH2/AjcAKjPGlZwHviXFlTWmG6uWQwowtAuOPSXusK23oxjAxsk0ORwZNAG1MIqV6X1dcWYvM70mhwLn86aGwGYcAAAAlBAEAAAACAAAABAAAAAgAAAAQAAAAIIDRxwTD8lFgoASQ0g871LGGJ5T1fYdQ/i02On+HxZ50CwyIAGIP1kzpCDOZqXy2LEQyEamAOWR1bIAEAAoBxKyfjlnPbfbUqhee9FAUcxmpz9l6usk/aXnHlmf85r0YQk1lPW2g6QNVBMAjeyCbPzj3JBSlbLryb0dYH769vpLflnGHnCxr5t0n/3V7ErjSkmo7N2AAGCOY/TygF09hRTCL8ucYi2+zdA41VOWvKjdX+ZvbsBUV9TuNpg/YCMBstFWffUzQWK+0WMSOu32tj7q8u8qhqpenluFGTb4LTfk30fQBGwHUKV0R0fCLSDLIRSCFQQKcMBfBa4ZCrrzUlU8XdtcBBjAH4OqNQhXWd0+8mP34YuQnLbJbWh62CUpW1NwriKQTgqrt3KD4gDcBxI7fQ7elKioCi5APGfPrsqn+hiwSP2cidjs1AEOA6IZYJG7UOREzB5ALmww9PpCIAIYOKBIw2CEAAAAgAAAAQAAAAIAAAAAAAQDNYoZdvZZhpkfpF5PLe42ACeeOE8Aho8Ety3tt4/0szoc/FiKuBVa9l8BMC8q/arm/6hH3TEbyEIr+rTLcXIbLMtws740Fpj8kHzcZsjd55iNEPjZOgV9whJg8XKVLeoWcK8P7yvC0/D4h79lg+3vskOX5w2U475no32dXH8t1kvktB64jDNc75svwL2U4UfH7LWVY81ReHbMR8qsOef250KPNRKO5VPP7/jI84yCA15dhvQzj8p4ggQNl+LIkAuaZfp98VNX9JY82wCxlcIkgFyJj4s/l9aTsiFLWY1FHAExTfoEV5rcCjkog4r0HA5jRlwTGLfcuE+QWy/BgYO+3qhW0uSJPnXa8WpMHpeCrNeSxyppdn3Cpouz0MnTFr5T/Go3Y1h3vrStPlXcKmjiVqm+Hy1aROLextVlxOrY8C1kp/5dlQwldQrvX+L4Q8I7vCIzbZQG4cLiCqLj87ZxDfq2CBCg9P69ogL7nFIqy+4bl/vd4lMM18nkR33cHluUdEcO4GIIIdYcviGkpWlT+nyjD39SZa4yo9FQo5Xe9pyASwGRg2sYD0x9jAQh83kICSvk/T3yHSQIU5dcx4fhOKbvrI8pUmPtfK8Pb5fe/kveYR/6ZhYR8ymDWsKhmCcOzvsNU/l+UdVZJAqlnZqnK76O8oeaU3us826IFYJIA81R+G0n6TuLtd3ynWGD/bdy7waPnvygVfl0jBHHve8vwPLH3rduZqs0l2inM+dh3/EoZPu45b3FSG4J9Urt/xfC7ib8Btzwadp3yqjCuffbBd2nBpwdbjFR+gSmNBJTy+2zEKRReOPUckmGTtTuTL8rpB40wTig/kcfvl439G1LxD8h2xuVvoRuSznoq/r6Ka+xwNMc7/iSA+MWw+TvZ7qSiUv6VJi2AVJM04wni+VLgO2MtgCm2u+OO3utvEhv/TI08lQRe6/juakSXDHNenx+qsya+T3vO9k/BunxfyI5Eucz3y5nf4bMvxzNG/S3UKX8oAcxGmDkU5f8DqYBVv6UimSbmACjjzNkG5XVFrPvuakT63MWYTJPr7z+dJFzPuCbSeIK6/cuKK7UTWKy43+Y7QvCMhcStyv9yYXK+U9anTp1iwBXj7VsqfhfktDaQsuBar/9MT9OeqmPoG9SEoFX5z5w5k20I0HWsGdcho0Dae4tnKGUAXwAAGDBAAAAAAgAAAAQAAAAIAACATuAPZchCAOqU3NgjsUNg+i23vSeADcpHnbIYZ5bZ/bAp/+EfYtV7EXDm3qPhhEOeusCpypf8pp7IK/xRZPuZk6FtXFuG35Hh2sh3HdXCFRirUf4trcFST+gVm4gIBxB95dP9bMcD7kZ5pfhzi4U4a1qlndQUsKiRUygaUH61QMfljivK7AtGWlTaxP03svrFPue0PJtYIJShy3NygdEWOqmFJLoTzzqj+7jnllf4baNNCCVYIij9smzzy/LepNSDykU1hu6oOnxQku6C9h7KOROfNj7fHqH85oIkkf6vvFwoloVAuvLr3mirhMSLlwk/+Lrz50M3dPCRV0r3a2U4q13FfgWnPRvQjCQjteGJyzOv6mBPah4oPVVByP/nyvCjbMdF+7Yy/EMZfozRnWk423XiUTK3MvdKPpu8Qoi8+D/7BbbjonyTh7zZ+NUKvMWG26Ape9JCykWN9eYi8JOMvlJVtVmR9/NSr8XnpbqFQKbyq15vVv7WxgKLqn0EfLwM3ySJ6D/L8O9sx7tNrOJ71lP5Rd7Vzka+brm58Ndl+JEyPCaV6DFZHn8bOBzTFTJUXuCWAHmh/M8HyJk936Jn+9vybJuhFpmOGxI9o3CPluZDhpWybZsDWGDV69EVCSy00IC3ZdiSYZv5H8/1j2X4uTJ8VjaGT0r2PBeg/Oc0S6AP+Em2s/b9bdJ8FFfhTkrdYONmS2/lQ/ymvAqvCJAXPf9e5rfBy9EahXetxZ8zlN88X3KrwTmB3y3DB2p+/4B8xoV9Mqh0npblMS+HP9tVcwAnLeNZphHCWsXYtItQFsBXy/BP0pQU138LUP6Ynp+zMH/wSW3uxdcCEi6gP1+GP5VKL66/xGhuqcJj8UvamFu59CrzPUReKP6LEfL6HICv8psK/2QL1utWgHWr8Jtl+I2a30LIr5K8Xb4AIY1+SzOZ9xkm98EWFH+WoGwfb0n5Y0nAtIqo+C22sxmEmNi5Xl7Ffgq/V4YjNXJi/uY5456pdPs7LG9T/iXPcl4xlJhbFHjbUU9VJECZANT/cft7eX2zabo78q+P+VfqImvCGeh5trsT8Fci5wxC9hRci4xTWTuhyi9m+b9QMxZ+Y8PKr8qdSetHv/6MQ+45Y7z+r57x5pZf1Ig2RPkplhZlHsxGAtTZf9E+XirDu9nuZJ+YHPyI/O1xot6oMf9hXwKo2hBR78maxMmantJn+GGm1TftoT3/ag0JuP4CVD3cJa3xbHn0gLp83e8uiJ54M6IOc8nPJ1B+ZakuG0qs/w1IJW19GEclcTHp+ctl+Avt3oPyPS8Q33FaK4/aeFPvByDGiRcZAIwO5rShQR9wVPtcSYJN7QcA5QdGDSs9S6+X5QNfAAAYMEAAAAACAAAABAAAAAgAGCno7sVzRJk5drUb7s2J0uPzV2wX3MAHSQC3WhrArRnSxwfYCNQ+DI8Y9x9h/nsz3Meu9H1YJpDAj8vnjsjwOhnE8twfIsSpt533Vih/YQQdwnPxHVL+TTJwee82QvwzlrZLPVDFtReDaz8GinzsOw556g2v0yPbOgC15nulDB+W9xZlwzPdOykJ8WV9m3zMO3LgqCwzVV6qTCkLVPQ8i3cck8o/71kWKg0KYj+GZwnyIv5rLPe/VYZvMporrYj3UUk+qgz09NT51KdwBzdXkFK9WDmju5tT47Zhy/EOtZpR30BmVbtfEPJvi+Pb7thqHYDNAlDKLypJLOn9Wba7BnmdARQsamV5VCu3RQ9ZJpXeVH6qW+s+47uPG/TzUtkvy/BNSQBUPMp2l4NPsqv98ldaqIP9bNeblHlaA+buT75W6LbMp+7J6uPRyo20zBDJ0YQ4i3FaC/9DHQJ8WDM71RFH8y0pT5W50sZwgBODCwcqFJbiT3+MVXuzKYuAMoy4N7IcXtK+v8Toh2t+SPb8qpzuNZR/ifCO8Yrgg1XP+wp72ZW7P+3V4qce8inK/7Rm0jPmdzhpETF/UkjiEW3tNWzHGew1WrgCdSsBdeU/Rhx7VLFUm6Z8ivMJY3GRXX023LzH8OlYpPLbNnVhmvldhz+TCm/6DFySyu2CGPdfsMw5+KzPF77/L7A8uMby/Wvy86uJ73iP9lmQofIsvZFoBfAKsqJ0Pspa+LpG3nuk8j/Fdrboq50D4DKRE0ajU5XZxpZeLOIdvEFZah6qfOepcyh/XIZ3Wu4L99DbA5WfqoAi7fdU/PZ+tutp6Jt3KoHp4+gXtfsvyOEIdQ6gapztGsPfWPM8Z/UernrcVcO797UwB/AG+fmr2v3n9LZbNwdwQBvzPyp7fqX8B4jKYc7uVs34UuV93lE4QowsNQ/rFSb8eoDy61aE8At/0jG5pCv/QdkgC4/eVxDUAzLdeqAov8qjauhM63HUfAZ1DC3C/7GdM+5f4WF+zzK/reNMvFKGZ+X1WuNzDKjD6Ng5gBukbl+vBSaJgbuGABeloq+zK/9C8v0HYMhQ5r8qs6fZ7r8ALrzT6PFFr/k6trspxJuJY1/X7rV1eFqm/3Py+w8QlV8nsRU5Dl6RQ4ctLf/HPN71dc+0rzH75itiQ1HXCcfCVNePprd9PkwYgt3o+J3SCXKP+za8lmTKNnw8+FD/BoyBMuNNc/9Jqfx1vuVc6wXXEtWdb/nr/1psa+NefbvsPTUNWd2/qwxfZDubuW4GtCVlKt9kmcsoHJOAr2e7e2Ay7bPYTq5ug9JDjLbnpNoxK+QddbKUoewVQ4CmjwcvMsv3EdsV+b695fJ6tWa++/yjIHr3v5NEtaiRldog43/LcB1hMuzhyPRXbQ3nOpzleXb1rlLUcj2foA7Ot6k3YwwAqk3vXw+UXaohN+ZQ/lQktsaG2YF4Ab4AAAACAAAABAAAAAhAwyFGXwGocIccA5rLZ5cY/WQaAAAyE8A5I1Bwdxk+VYZ3WX57l/ztbhQ7AHSbAN5m9PyH5D1Xz3/GuGdbOXfGwxJYldbDakDenjUskLkE5TWHJuNVb2ZYRdH0gwDUARyTbHddtutQjiMe8VKfnTGuPthnfF9OoPzLRBI4ajT8owHxxb4jVl4p7IxFuV2Y9bwPdIgA9N5f92F2WQF3VTQiTnw2NZT1MZngXXMagbhIQCia6bO/6KmAse9Q8qK+xuV1MYAEZiy9+QzUZrQJQO/pJ9iVa5dPBiphKE4GxqunXy0/XQk08+cM68G1xn7R837ds/OSwOY936GU/zNsZ2XbZzQS8MUa1GQ4BDBnjP31HVWUFdDmOPg/jKsvVNqFI85hovLrPbyv8qfGeWmBnQ+QfcLxndVYbLGbrsxo5LGmkQish44TwDKhB19uMX0rMv5YpTvI3GvPbWZ+TuVXhDvB/P+KFXiL43udxRa7hHZBU3jdnXUBKtddApirMKEnCGaywFmPeKnPzrG4GXzVmCm7sKywK3fLCVX+ec/7dc8uSitm0fMd4rnHyvBWtuPd9lb5PWRbt5mEMrAAOkwAyxUmtG1zBduzF2pMSsqzrCaeUKvD15w1SSCk51+yKJrvcdWx71jSSOCypvxLnuUnTPdZwzKgzAmYlkQqywJokADWPBuGicfLcJwge1w+SzXdGaOfyZ5q2HEw0uxfMhr9UoZ3xMoXzL6vAP7KGyGMJa5Y4cP9X3LM+h7jN7ErjJjMesJTGWN6jSKCBNBbAYMigFR4Qob3ongBEGl/hgAAAIAAAAAAAQAAAAIAAAAEAAAACAAYIOZYuG9AjCyQkQBEpVF931nNO3jNd6B5LLC49fdzLHwVZows0AELQFVgLBH4koYZ30RAGlTaJyz3eEAaFE4Q5U/UpIl7lIXvseRmfCdkmOuI8nOGXZV6NwRomwjM+IQjz0FNeeYIJucy2/UADEl/yjznIFJmKKCPInOtDEOtvirZAlZBf+cAVEM+0eLYc1lrMIXWmHlNz20+G6N4ZhpClLBtxWc15ZMTGP71nABWZK/6YEtpU/EdNBrQQWZfXlpUPBvjx2+mwRex8Y8SsCS4pwSw0nJDNuOb0Ex61+YgKxoRqDmAkPSnzPNKBiIoKoKP7MGIeA/WWAEHoXYdYuWK48G5bKz3RzRa8zjn2KPCgXhz27fs5yzDqjZkgYbhOh48RYUVMAF7b26vaNZUm7JAB+cAgGFihWFfBRAAAAAgAAAAQAAAAIAAAAAAAQAAMJoEEHqyLQAAPSUAsXruHu37DTJMeLxX92C7z1MWAIBMBKBO0zXPortR3qcq8gG2swhEnAVwr5S9NUF6XQ4lJ5jdjVaFEyMuDwBeMFcCnpbXfzbur2i/HyO896ImJ5YTn2M7J/Qe0H5rAmLzi8JBIPpptaMmDwDBFoDo3eeloqohgDDf1Uk+6/J3ihWgeqxH5PPKEWY9cDjg40oqDsO8Vl71z+I6XoZVh/y1Mj79HSr4yvMI+b2WK0UeAIIsgP3yqh/ceb/2+YLswfcTeiDx3G1s51TbeTmEOCyHAuL7BxvM06sqCKQgEskrjWthvIMRFFi/vsqTxFS8k4b8JMOyWqBBC+CSvN5Z8eydxnOuIcCS1ogFEWzL6+mGen6F6yxhQl43mPsMRPHsD7Pdo9H1dzxHkL9OyutXJe8bv/4eavwAEGQBbEszfY7t/PW3pP12VPbqK/I5quIWsucXcwD7yvAoCzujnoqTZfii4/e1EZYHAC+Y+wHcKsfpasx/Qfb8BzTT/qInAajvaiOIZYIpq5vstisAABGo2g/golTy+9jOX4FK8c/Le9QZ/Lq9AAoP+aorAACJhwA6CRxG0QDA6AO+AAAAAgAAAAQAAAAIAACA4RLAHWxnDYDpiLIkf3Mht/xb2M5KQ1P+g/K3UZfve/0NXb5VmOsA7i7DGYeMePCBit9yy99Vhocc8sfL8PCIyve9/oYu3xrUOgCdAAQ7fYoo/44yfNrCfDnlf6oMnyXK/3QZHh8x+b7X39DlsxCAPgQ4YrMQmH3xzRHivSq45I+zqxcPHXfI31mRfkZ89k6P9PvIFy3Ff8Qjfmr9FQnkWab411j1sWi+8RcJ2n8RqCutDQF4TaI5oXJ9HXfq5AvNJGaaycs948+V/lTxp0h/1Tuajr8gposFps8n/iKg/Yjff1X7/tGA9mc+Kzxkn3KQY6sWAPVosMJTSaoyR5XnxliXMjZ2pYdHKHcIScRWcJE4/b7vSJl2lqD9hKSfW0jABx8xCMAHb5DKblP+zmCMdRcvVnxuAzyBhZBKgXIrcEgHkKL8U8Qb60D27kA5ofxPd1356wggtgJ4ogZ4VF6X2O5fKzENKpQEeCISaav8eKTyxhIgz0AaLgskxIL6aGD+n9JIoLPKL6BPAp71kDtLvBcqr8b+izLo96rkH/ZQpoeJ93gCeRYhzzzkz3oQCqX+eEL5ttuPWX88g/xTNcp/tosEcMFDAS4Q71XBJf+QpQE+5JD/hIcCfoJ4jyWQ5y3Ff8Ejfmr98QTyLEP83EFATcvrJMAidaU1AhD/Kx8nyBxnV/8H3QV58b/qKYL8KWb/D7bv8n2vv6HLZycAZVrOsZ39/E18SP72sMM0zSkvVliJRRYfs/z2MfnbAyMs3/f6G7p8+5MlxlJgAAAGANtKQAAABgYQAACAAAAAAAEAAAACAAAABAAAwIjD5QtgA2V9O+Tj5AEgKwEIjFvuXfZ4d255AAASDAFyKt3lBGnI2ePiSDOg1wQQq4CXtRCCcSk7nkkBq7aEokI/1BQAekcA4zXmOFWBxyPkL2skEKqAjMXtI8BZvg0pACD7EGA8Y/rGE6QhZ+/LO5AGAKjEWINj/9zyAAAEEkDKDS0hDwA9HgIAAAACAAAABAAAAAgAAAAQAAAAIAAAAEAAAAVTDAuDgB4QQBdWsYm4Z7TrKCj/Rhmm0fSArhPAtHFFzx1Hhrryb6I4ga4TwIZxHbryx/TcUH5gEBYA13rKumvTwwZXCFXejQTKjzkAoDMYc1gAhXaloCBem8RsQz1/iAVgU37MAQC9IIBQC2DaojTmtUkzeNWDqHyV34cM65QfwwAAFkCHLQAoPwALIMAC6ALWEryjSeWf8nwfAPTGAhgVhFouVOXHHAAACyBAEbsO08x3fQeAvD0d5/hHCgCGCvgCAMCA8f8CDABatG6NN+gY2wAAAABJRU5ErkJggg==');
|
191 |
+
}
|
192 |
+
.admin-color-light .ui-datepicker th {
|
193 |
+
border-color: #fff;
|
194 |
+
}
|
195 |
+
.admin-color-light .ui-datepicker .ui-datepicker-title,
|
196 |
+
.admin-color-light .ui-datepicker td .ui-state-default,
|
197 |
+
.admin-color-light .ui-datepicker th {
|
198 |
+
color: #555;
|
199 |
+
}
|
200 |
+
.admin-color-light .ui-datepicker td .ui-state-active,
|
201 |
+
.admin-color-light .ui-datepicker td .ui-state-hover {
|
202 |
+
color: #fff;
|
203 |
+
background: #888;
|
204 |
+
}
|
205 |
+
.admin-color-light .ui-datepicker td.ui-state-disabled,
|
206 |
+
.admin-color-light .ui-datepicker td.ui-state-disabled .ui-state-default {
|
207 |
+
color: #ccc;
|
208 |
+
}
|
@@ -0,0 +1,650 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*! jQuery UI - v1.11.4 - 2017-02-25
|
2 |
+
* http://jqueryui.com
|
3 |
+
* Includes: core.css, datepicker.css, theme.css
|
4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
5 |
+
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
6 |
+
|
7 |
+
/* Layout helpers
|
8 |
+
----------------------------------*/
|
9 |
+
.ui-helper-hidden {
|
10 |
+
display: none;
|
11 |
+
}
|
12 |
+
.ui-helper-hidden-accessible {
|
13 |
+
border: 0;
|
14 |
+
clip: rect(0 0 0 0);
|
15 |
+
height: 1px;
|
16 |
+
margin: -1px;
|
17 |
+
overflow: hidden;
|
18 |
+
padding: 0;
|
19 |
+
position: absolute;
|
20 |
+
width: 1px;
|
21 |
+
}
|
22 |
+
.ui-helper-reset {
|
23 |
+
margin: 0;
|
24 |
+
padding: 0;
|
25 |
+
border: 0;
|
26 |
+
outline: 0;
|
27 |
+
line-height: 1.3;
|
28 |
+
text-decoration: none;
|
29 |
+
font-size: 100%;
|
30 |
+
list-style: none;
|
31 |
+
}
|
32 |
+
.ui-helper-clearfix:before,
|
33 |
+
.ui-helper-clearfix:after {
|
34 |
+
content: "";
|
35 |
+
display: table;
|
36 |
+
border-collapse: collapse;
|
37 |
+
}
|
38 |
+
.ui-helper-clearfix:after {
|
39 |
+
clear: both;
|
40 |
+
}
|
41 |
+
.ui-helper-clearfix {
|
42 |
+
min-height: 0; /* support: IE7 */
|
43 |
+
}
|
44 |
+
.ui-helper-zfix {
|
45 |
+
width: 100%;
|
46 |
+
height: 100%;
|
47 |
+
top: 0;
|
48 |
+
left: 0;
|
49 |
+
position: absolute;
|
50 |
+
opacity: 0;
|
51 |
+
filter:Alpha(Opacity=0); /* support: IE8 */
|
52 |
+
}
|
53 |
+
|
54 |
+
.ui-front {
|
55 |
+
z-index: 100;
|
56 |
+
}
|
57 |
+
|
58 |
+
|
59 |
+
/* Interaction Cues
|
60 |
+
----------------------------------*/
|
61 |
+
.ui-state-disabled {
|
62 |
+
cursor: default !important;
|
63 |
+
}
|
64 |
+
|
65 |
+
|
66 |
+
/* Icons
|
67 |
+
----------------------------------*/
|
68 |
+
|
69 |
+
/* states and images */
|
70 |
+
.ui-icon {
|
71 |
+
display: block;
|
72 |
+
text-indent: -99999px;
|
73 |
+
overflow: hidden;
|
74 |
+
background-repeat: no-repeat;
|
75 |
+
}
|
76 |
+
|
77 |
+
|
78 |
+
/* Misc visuals
|
79 |
+
----------------------------------*/
|
80 |
+
|
81 |
+
/* Overlays */
|
82 |
+
.ui-widget-overlay {
|
83 |
+
position: fixed;
|
84 |
+
top: 0;
|
85 |
+
left: 0;
|
86 |
+
width: 100%;
|
87 |
+
height: 100%;
|
88 |
+
}
|
89 |
+
.ui-datepicker {
|
90 |
+
width: 17em;
|
91 |
+
padding: .2em .2em 0;
|
92 |
+
display: none;
|
93 |
+
}
|
94 |
+
.ui-datepicker .ui-datepicker-header {
|
95 |
+
position: relative;
|
96 |
+
padding: .2em 0;
|
97 |
+
}
|
98 |
+
.ui-datepicker .ui-datepicker-prev,
|
99 |
+
.ui-datepicker .ui-datepicker-next {
|
100 |
+
position: absolute;
|
101 |
+
top: 2px;
|
102 |
+
width: 1.8em;
|
103 |
+
height: 1.8em;
|
104 |
+
}
|
105 |
+
.ui-datepicker .ui-datepicker-prev-hover,
|
106 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
107 |
+
top: 1px;
|
108 |
+
}
|
109 |
+
.ui-datepicker .ui-datepicker-prev {
|
110 |
+
left: 2px;
|
111 |
+
}
|
112 |
+
.ui-datepicker .ui-datepicker-next {
|
113 |
+
right: 2px;
|
114 |
+
}
|
115 |
+
.ui-datepicker .ui-datepicker-prev-hover {
|
116 |
+
left: 1px;
|
117 |
+
}
|
118 |
+
.ui-datepicker .ui-datepicker-next-hover {
|
119 |
+
right: 1px;
|
120 |
+
}
|
121 |
+
.ui-datepicker .ui-datepicker-prev span,
|
122 |
+
.ui-datepicker .ui-datepicker-next span {
|
123 |
+
display: block;
|
124 |
+
position: absolute;
|
125 |
+
left: 50%;
|
126 |
+
margin-left: -8px;
|
127 |
+
top: 50%;
|
128 |
+
margin-top: -8px;
|
129 |
+
}
|
130 |
+
.ui-datepicker .ui-datepicker-title {
|
131 |
+
margin: 0 2.3em;
|
132 |
+
line-height: 1.8em;
|
133 |
+
text-align: center;
|
134 |
+
}
|
135 |
+
.ui-datepicker .ui-datepicker-title select {
|
136 |
+
font-size: 1em;
|
137 |
+
margin: 1px 0;
|
138 |
+
}
|
139 |
+
.ui-datepicker select.ui-datepicker-month,
|
140 |
+
.ui-datepicker select.ui-datepicker-year {
|
141 |
+
width: 45%;
|
142 |
+
}
|
143 |
+
.ui-datepicker table {
|
144 |
+
width: 100%;
|
145 |
+
font-size: .9em;
|
146 |
+
border-collapse: collapse;
|
147 |
+
margin: 0 0 .4em;
|
148 |
+
}
|
149 |
+
.ui-datepicker th {
|
150 |
+
padding: .7em .3em;
|
151 |
+
text-align: center;
|
152 |
+
font-weight: bold;
|
153 |
+
border: 0;
|
154 |
+
}
|
155 |
+
.ui-datepicker td {
|
156 |
+
border: 0;
|
157 |
+
padding: 1px;
|
158 |
+
}
|
159 |
+
.ui-datepicker td span,
|
160 |
+
.ui-datepicker td a {
|
161 |
+
display: block;
|
162 |
+
padding: .2em;
|
163 |
+
text-align: right;
|
164 |
+
text-decoration: none;
|
165 |
+
}
|
166 |
+
.ui-datepicker .ui-datepicker-buttonpane {
|
167 |
+
background-image: none;
|
168 |
+
margin: .7em 0 0 0;
|
169 |
+
padding: 0 .2em;
|
170 |
+
border-left: 0;
|
171 |
+
border-right: 0;
|
172 |
+
border-bottom: 0;
|
173 |
+
}
|
174 |
+
.ui-datepicker .ui-datepicker-buttonpane button {
|
175 |
+
float: right;
|
176 |
+
margin: .5em .2em .4em;
|
177 |
+
cursor: pointer;
|
178 |
+
padding: .2em .6em .3em .6em;
|
179 |
+
width: auto;
|
180 |
+
overflow: visible;
|
181 |
+
}
|
182 |
+
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
|
183 |
+
float: left;
|
184 |
+
}
|
185 |
+
|
186 |
+
/* with multiple calendars */
|
187 |
+
.ui-datepicker.ui-datepicker-multi {
|
188 |
+
width: auto;
|
189 |
+
}
|
190 |
+
.ui-datepicker-multi .ui-datepicker-group {
|
191 |
+
float: left;
|
192 |
+
}
|
193 |
+
.ui-datepicker-multi .ui-datepicker-group table {
|
194 |
+
width: 95%;
|
195 |
+
margin: 0 auto .4em;
|
196 |
+
}
|
197 |
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
198 |
+
width: 50%;
|
199 |
+
}
|
200 |
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
201 |
+
width: 33.3%;
|
202 |
+
}
|
203 |
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
204 |
+
width: 25%;
|
205 |
+
}
|
206 |
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
207 |
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
208 |
+
border-left-width: 0;
|
209 |
+
}
|
210 |
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
211 |
+
clear: left;
|
212 |
+
}
|
213 |
+
.ui-datepicker-row-break {
|
214 |
+
clear: both;
|
215 |
+
width: 100%;
|
216 |
+
font-size: 0;
|
217 |
+
}
|
218 |
+
|
219 |
+
/* RTL support */
|
220 |
+
.ui-datepicker-rtl {
|
221 |
+
direction: rtl;
|
222 |
+
}
|
223 |
+
.ui-datepicker-rtl .ui-datepicker-prev {
|
224 |
+
right: 2px;
|
225 |
+
left: auto;
|
226 |
+
}
|
227 |
+
.ui-datepicker-rtl .ui-datepicker-next {
|
228 |
+
left: 2px;
|
229 |
+
right: auto;
|
230 |
+
}
|
231 |
+
.ui-datepicker-rtl .ui-datepicker-prev:hover {
|
232 |
+
right: 1px;
|
233 |
+
left: auto;
|
234 |
+
}
|
235 |
+
.ui-datepicker-rtl .ui-datepicker-next:hover {
|
236 |
+
left: 1px;
|
237 |
+
right: auto;
|
238 |
+
}
|
239 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane {
|
240 |
+
clear: right;
|
241 |
+
}
|
242 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
|
243 |
+
float: left;
|
244 |
+
}
|
245 |
+
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
|
246 |
+
.ui-datepicker-rtl .ui-datepicker-group {
|
247 |
+
float: right;
|
248 |
+
}
|
249 |
+
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
|
250 |
+
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
|
251 |
+
border-right-width: 0;
|
252 |
+
border-left-width: 1px;
|
253 |
+
}
|
254 |
+
|
255 |
+
/* Component containers
|
256 |
+
----------------------------------*/
|
257 |
+
.ui-widget {
|
258 |
+
font-family: Verdana,Arial,sans-serif;
|
259 |
+
font-size: 1.1em;
|
260 |
+
}
|
261 |
+
.ui-widget .ui-widget {
|
262 |
+
font-size: 1em;
|
263 |
+
}
|
264 |
+
.ui-widget input,
|
265 |
+
.ui-widget select,
|
266 |
+
.ui-widget textarea,
|
267 |
+
.ui-widget button {
|
268 |
+
font-family: Verdana,Arial,sans-serif;
|
269 |
+
font-size: 1em;
|
270 |
+
}
|
271 |
+
.ui-widget-content {
|
272 |
+
border: 1px solid #aaaaaa;
|
273 |
+
background: #ffffff;
|
274 |
+
color: #222222;
|
275 |
+
}
|
276 |
+
.ui-widget-content a {
|
277 |
+
color: #222222;
|
278 |
+
}
|
279 |
+
.ui-widget-header {
|
280 |
+
border: 1px solid #aaaaaa;
|
281 |
+
background: #cccccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
|
282 |
+
color: #222222;
|
283 |
+
font-weight: bold;
|
284 |
+
}
|
285 |
+
.ui-widget-header a {
|
286 |
+
color: #222222;
|
287 |
+
}
|
288 |
+
|
289 |
+
/* Interaction states
|
290 |
+
----------------------------------*/
|
291 |
+
.ui-state-default,
|
292 |
+
.ui-widget-content .ui-state-default,
|
293 |
+
.ui-widget-header .ui-state-default {
|
294 |
+
border: 1px solid #d3d3d3;
|
295 |
+
background: #e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
|
296 |
+
font-weight: normal;
|
297 |
+
color: #555555;
|
298 |
+
}
|
299 |
+
.ui-state-default a,
|
300 |
+
.ui-state-default a:link,
|
301 |
+
.ui-state-default a:visited {
|
302 |
+
color: #555555;
|
303 |
+
text-decoration: none;
|
304 |
+
}
|
305 |
+
.ui-state-hover,
|
306 |
+
.ui-widget-content .ui-state-hover,
|
307 |
+
.ui-widget-header .ui-state-hover,
|
308 |
+
.ui-state-focus,
|
309 |
+
.ui-widget-content .ui-state-focus,
|
310 |
+
.ui-widget-header .ui-state-focus {
|
311 |
+
border: 1px solid #999999;
|
312 |
+
background: #dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
|
313 |
+
font-weight: normal;
|
314 |
+
color: #212121;
|
315 |
+
}
|
316 |
+
.ui-state-hover a,
|
317 |
+
.ui-state-hover a:hover,
|
318 |
+
.ui-state-hover a:link,
|
319 |
+
.ui-state-hover a:visited,
|
320 |
+
.ui-state-focus a,
|
321 |
+
.ui-state-focus a:hover,
|
322 |
+
.ui-state-focus a:link,
|
323 |
+
.ui-state-focus a:visited {
|
324 |
+
color: #212121;
|
325 |
+
text-decoration: none;
|
326 |
+
}
|
327 |
+
.ui-state-active,
|
328 |
+
.ui-widget-content .ui-state-active,
|
329 |
+
.ui-widget-header .ui-state-active {
|
330 |
+
border: 1px solid #aaaaaa;
|
331 |
+
background: #ffffff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
|
332 |
+
font-weight: normal;
|
333 |
+
color: #212121;
|
334 |
+
}
|
335 |
+
.ui-state-active a,
|
336 |
+
.ui-state-active a:link,
|
337 |
+
.ui-state-active a:visited {
|
338 |
+
color: #212121;
|
339 |
+
text-decoration: none;
|
340 |
+
}
|
341 |
+
|
342 |
+
/* Interaction Cues
|
343 |
+
----------------------------------*/
|
344 |
+
.ui-state-highlight,
|
345 |
+
.ui-widget-content .ui-state-highlight,
|
346 |
+
.ui-widget-header .ui-state-highlight {
|
347 |
+
border: 1px solid #fcefa1;
|
348 |
+
background: #fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
|
349 |
+
color: #363636;
|
350 |
+
}
|
351 |
+
.ui-state-highlight a,
|
352 |
+
.ui-widget-content .ui-state-highlight a,
|
353 |
+
.ui-widget-header .ui-state-highlight a {
|
354 |
+
color: #363636;
|
355 |
+
}
|
356 |
+
.ui-state-error,
|
357 |
+
.ui-widget-content .ui-state-error,
|
358 |
+
.ui-widget-header .ui-state-error {
|
359 |
+
border: 1px solid #cd0a0a;
|
360 |
+
background: #fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
|
361 |
+
color: #cd0a0a;
|
362 |
+
}
|
363 |
+
.ui-state-error a,
|
364 |
+
.ui-widget-content .ui-state-error a,
|
365 |
+
.ui-widget-header .ui-state-error a {
|
366 |
+
color: #cd0a0a;
|
367 |
+
}
|
368 |
+
.ui-state-error-text,
|
369 |
+
.ui-widget-content .ui-state-error-text,
|
370 |
+
.ui-widget-header .ui-state-error-text {
|
371 |
+
color: #cd0a0a;
|
372 |
+
}
|
373 |
+
.ui-priority-primary,
|
374 |
+
.ui-widget-content .ui-priority-primary,
|
375 |
+
.ui-widget-header .ui-priority-primary {
|
376 |
+
font-weight: bold;
|
377 |
+
}
|
378 |
+
.ui-priority-secondary,
|
379 |
+
.ui-widget-content .ui-priority-secondary,
|
380 |
+
.ui-widget-header .ui-priority-secondary {
|
381 |
+
opacity: .7;
|
382 |
+
filter:Alpha(Opacity=70); /* support: IE8 */
|
383 |
+
font-weight: normal;
|
384 |
+
}
|
385 |
+
.ui-state-disabled,
|
386 |
+
.ui-widget-content .ui-state-disabled,
|
387 |
+
.ui-widget-header .ui-state-disabled {
|
388 |
+
opacity: .35;
|
389 |
+
filter:Alpha(Opacity=35); /* support: IE8 */
|
390 |
+
background-image: none;
|
391 |
+
}
|
392 |
+
.ui-state-disabled .ui-icon {
|
393 |
+
filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
|
394 |
+
}
|
395 |
+
|
396 |
+
/* Icons
|
397 |
+
----------------------------------*/
|
398 |
+
|
399 |
+
/* states and images */
|
400 |
+
.ui-icon {
|
401 |
+
width: 16px;
|
402 |
+
height: 16px;
|
403 |
+
}
|
404 |
+
.ui-icon,
|
405 |
+
.ui-widget-content .ui-icon {
|
406 |
+
background-image: url("images/ui-icons_222222_256x240.png");
|
407 |
+
}
|
408 |
+
.ui-widget-header .ui-icon {
|
409 |
+
background-image: url("images/ui-icons_222222_256x240.png");
|
410 |
+
}
|
411 |
+
.ui-state-default .ui-icon {
|
412 |
+
background-image: url("images/ui-icons_888888_256x240.png");
|
413 |
+
}
|
414 |
+
.ui-state-hover .ui-icon,
|
415 |
+
.ui-state-focus .ui-icon {
|
416 |
+
background-image: url("images/ui-icons_454545_256x240.png");
|
417 |
+
}
|
418 |
+
.ui-state-active .ui-icon {
|
419 |
+
background-image: url("images/ui-icons_454545_256x240.png");
|
420 |
+
}
|
421 |
+
.ui-state-highlight .ui-icon {
|
422 |
+
background-image: url("images/ui-icons_2e83ff_256x240.png");
|
423 |
+
}
|
424 |
+
.ui-state-error .ui-icon,
|
425 |
+
.ui-state-error-text .ui-icon {
|
426 |
+
background-image: url("images/ui-icons_cd0a0a_256x240.png");
|
427 |
+
}
|
428 |
+
|
429 |
+
/* positioning */
|
430 |
+
.ui-icon-blank { background-position: 16px 16px; }
|
431 |
+
.ui-icon-carat-1-n { background-position: 0 0; }
|
432 |
+
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
433 |
+
.ui-icon-carat-1-e { background-position: -32px 0; }
|
434 |
+
.ui-icon-carat-1-se { background-position: -48px 0; }
|
435 |
+
.ui-icon-carat-1-s { background-position: -64px 0; }
|
436 |
+
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
437 |
+
.ui-icon-carat-1-w { background-position: -96px 0; }
|
438 |
+
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
439 |
+
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
440 |
+
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
441 |
+
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
442 |
+
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
443 |
+
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
444 |
+
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
445 |
+
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
446 |
+
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
447 |
+
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
448 |
+
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
449 |
+
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
450 |
+
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
451 |
+
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
452 |
+
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
453 |
+
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
454 |
+
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
455 |
+
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
456 |
+
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
457 |
+
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
458 |
+
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
459 |
+
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
460 |
+
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
461 |
+
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
462 |
+
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
463 |
+
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
464 |
+
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
465 |
+
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
466 |
+
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
467 |
+
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
468 |
+
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
469 |
+
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
470 |
+
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
471 |
+
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
472 |
+
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
473 |
+
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
474 |
+
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
475 |
+
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
476 |
+
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
477 |
+
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
478 |
+
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
479 |
+
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
480 |
+
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
481 |
+
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
482 |
+
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
483 |
+
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
484 |
+
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
485 |
+
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
486 |
+
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
487 |
+
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
488 |
+
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
489 |
+
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
490 |
+
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
491 |
+
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
492 |
+
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
493 |
+
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
494 |
+
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
495 |
+
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
496 |
+
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
497 |
+
.ui-icon-extlink { background-position: -32px -80px; }
|
498 |
+
.ui-icon-newwin { background-position: -48px -80px; }
|
499 |
+
.ui-icon-refresh { background-position: -64px -80px; }
|
500 |
+
.ui-icon-shuffle { background-position: -80px -80px; }
|
501 |
+
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
502 |
+
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
503 |
+
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
504 |
+
.ui-icon-folder-open { background-position: -16px -96px; }
|
505 |
+
.ui-icon-document { background-position: -32px -96px; }
|
506 |
+
.ui-icon-document-b { background-position: -48px -96px; }
|
507 |
+
.ui-icon-note { background-position: -64px -96px; }
|
508 |
+
.ui-icon-mail-closed { background-position: -80px -96px; }
|
509 |
+
.ui-icon-mail-open { background-position: -96px -96px; }
|
510 |
+
.ui-icon-suitcase { background-position: -112px -96px; }
|
511 |
+
.ui-icon-comment { background-position: -128px -96px; }
|
512 |
+
.ui-icon-person { background-position: -144px -96px; }
|
513 |
+
.ui-icon-print { background-position: -160px -96px; }
|
514 |
+
.ui-icon-trash { background-position: -176px -96px; }
|
515 |
+
.ui-icon-locked { background-position: -192px -96px; }
|
516 |
+
.ui-icon-unlocked { background-position: -208px -96px; }
|
517 |
+
.ui-icon-bookmark { background-position: -224px -96px; }
|
518 |
+
.ui-icon-tag { background-position: -240px -96px; }
|
519 |
+
.ui-icon-home { background-position: 0 -112px; }
|
520 |
+
.ui-icon-flag { background-position: -16px -112px; }
|
521 |
+
.ui-icon-calendar { background-position: -32px -112px; }
|
522 |
+
.ui-icon-cart { background-position: -48px -112px; }
|
523 |
+
.ui-icon-pencil { background-position: -64px -112px; }
|
524 |
+
.ui-icon-clock { background-position: -80px -112px; }
|
525 |
+
.ui-icon-disk { background-position: -96px -112px; }
|
526 |
+
.ui-icon-calculator { background-position: -112px -112px; }
|
527 |
+
.ui-icon-zoomin { background-position: -128px -112px; }
|
528 |
+
.ui-icon-zoomout { background-position: -144px -112px; }
|
529 |
+
.ui-icon-search { background-position: -160px -112px; }
|
530 |
+
.ui-icon-wrench { background-position: -176px -112px; }
|
531 |
+
.ui-icon-gear { background-position: -192px -112px; }
|
532 |
+
.ui-icon-heart { background-position: -208px -112px; }
|
533 |
+
.ui-icon-star { background-position: -224px -112px; }
|
534 |
+
.ui-icon-link { background-position: -240px -112px; }
|
535 |
+
.ui-icon-cancel { background-position: 0 -128px; }
|
536 |
+
.ui-icon-plus { background-position: -16px -128px; }
|
537 |
+
.ui-icon-plusthick { background-position: -32px -128px; }
|
538 |
+
.ui-icon-minus { background-position: -48px -128px; }
|
539 |
+
.ui-icon-minusthick { background-position: -64px -128px; }
|
540 |
+
.ui-icon-close { background-position: -80px -128px; }
|
541 |
+
.ui-icon-closethick { background-position: -96px -128px; }
|
542 |
+
.ui-icon-key { background-position: -112px -128px; }
|
543 |
+
.ui-icon-lightbulb { background-position: -128px -128px; }
|
544 |
+
.ui-icon-scissors { background-position: -144px -128px; }
|
545 |
+
.ui-icon-clipboard { background-position: -160px -128px; }
|
546 |
+
.ui-icon-copy { background-position: -176px -128px; }
|
547 |
+
.ui-icon-contact { background-position: -192px -128px; }
|
548 |
+
.ui-icon-image { background-position: -208px -128px; }
|
549 |
+
.ui-icon-video { background-position: -224px -128px; }
|
550 |
+
.ui-icon-script { background-position: -240px -128px; }
|
551 |
+
.ui-icon-alert { background-position: 0 -144px; }
|
552 |
+
.ui-icon-info { background-position: -16px -144px; }
|
553 |
+
.ui-icon-notice { background-position: -32px -144px; }
|
554 |
+
.ui-icon-help { background-position: -48px -144px; }
|
555 |
+
.ui-icon-check { background-position: -64px -144px; }
|
556 |
+
.ui-icon-bullet { background-position: -80px -144px; }
|
557 |
+
.ui-icon-radio-on { background-position: -96px -144px; }
|
558 |
+
.ui-icon-radio-off { background-position: -112px -144px; }
|
559 |
+
.ui-icon-pin-w { background-position: -128px -144px; }
|
560 |
+
.ui-icon-pin-s { background-position: -144px -144px; }
|
561 |
+
.ui-icon-play { background-position: 0 -160px; }
|
562 |
+
.ui-icon-pause { background-position: -16px -160px; }
|
563 |
+
.ui-icon-seek-next { background-position: -32px -160px; }
|
564 |
+
.ui-icon-seek-prev { background-position: -48px -160px; }
|
565 |
+
.ui-icon-seek-end { background-position: -64px -160px; }
|
566 |
+
.ui-icon-seek-start { background-position: -80px -160px; }
|
567 |
+
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
568 |
+
.ui-icon-seek-first { background-position: -80px -160px; }
|
569 |
+
.ui-icon-stop { background-position: -96px -160px; }
|
570 |
+
.ui-icon-eject { background-position: -112px -160px; }
|
571 |
+
.ui-icon-volume-off { background-position: -128px -160px; }
|
572 |
+
.ui-icon-volume-on { background-position: -144px -160px; }
|
573 |
+
.ui-icon-power { background-position: 0 -176px; }
|
574 |
+
.ui-icon-signal-diag { background-position: -16px -176px; }
|
575 |
+
.ui-icon-signal { background-position: -32px -176px; }
|
576 |
+
.ui-icon-battery-0 { background-position: -48px -176px; }
|
577 |
+
.ui-icon-battery-1 { background-position: -64px -176px; }
|
578 |
+
.ui-icon-battery-2 { background-position: -80px -176px; }
|
579 |
+
.ui-icon-battery-3 { background-position: -96px -176px; }
|
580 |
+
.ui-icon-circle-plus { background-position: 0 -192px; }
|
581 |
+
.ui-icon-circle-minus { background-position: -16px -192px; }
|
582 |
+
.ui-icon-circle-close { background-position: -32px -192px; }
|
583 |
+
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
584 |
+
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
585 |
+
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
586 |
+
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
587 |
+
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
588 |
+
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
589 |
+
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
590 |
+
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
591 |
+
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
592 |
+
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
593 |
+
.ui-icon-circle-check { background-position: -208px -192px; }
|
594 |
+
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
595 |
+
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
596 |
+
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
597 |
+
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
598 |
+
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
599 |
+
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
600 |
+
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
601 |
+
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
602 |
+
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
603 |
+
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
604 |
+
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
605 |
+
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
606 |
+
|
607 |
+
|
608 |
+
/* Misc visuals
|
609 |
+
----------------------------------*/
|
610 |
+
|
611 |
+
/* Corner radius */
|
612 |
+
.ui-corner-all,
|
613 |
+
.ui-corner-top,
|
614 |
+
.ui-corner-left,
|
615 |
+
.ui-corner-tl {
|
616 |
+
border-top-left-radius: 4px;
|
617 |
+
}
|
618 |
+
.ui-corner-all,
|
619 |
+
.ui-corner-top,
|
620 |
+
.ui-corner-right,
|
621 |
+
.ui-corner-tr {
|
622 |
+
border-top-right-radius: 4px;
|
623 |
+
}
|
624 |
+
.ui-corner-all,
|
625 |
+
.ui-corner-bottom,
|
626 |
+
.ui-corner-left,
|
627 |
+
.ui-corner-bl {
|
628 |
+
border-bottom-left-radius: 4px;
|
629 |
+
}
|
630 |
+
.ui-corner-all,
|
631 |
+
.ui-corner-bottom,
|
632 |
+
.ui-corner-right,
|
633 |
+
.ui-corner-br {
|
634 |
+
border-bottom-right-radius: 4px;
|
635 |
+
}
|
636 |
+
|
637 |
+
/* Overlays */
|
638 |
+
.ui-widget-overlay {
|
639 |
+
background: #aaaaaa;
|
640 |
+
opacity: .3;
|
641 |
+
filter: Alpha(Opacity=30); /* support: IE8 */
|
642 |
+
}
|
643 |
+
.ui-widget-shadow {
|
644 |
+
margin: -8px 0 0 -8px;
|
645 |
+
padding: 8px;
|
646 |
+
background: #aaaaaa;
|
647 |
+
opacity: .3;
|
648 |
+
filter: Alpha(Opacity=30); /* support: IE8 */
|
649 |
+
border-radius: 8px;
|
650 |
+
}
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*! jQuery UI - v1.11.4 - 2017-02-25
|
2 |
+
* http://jqueryui.com
|
3 |
+
* Includes: core.css, datepicker.css, theme.css
|
4 |
+
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
5 |
+
* Copyright jQuery Foundation and other contributors; Licensed MIT */
|
6 |
+
|
7 |
+
.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url("images/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;color:#222;font-weight:bold}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url("images/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url("images/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url("images/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;font-weight:normal;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url("images/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url("images/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-widget-header .ui-icon{background-image:url("images/ui-icons_222222_256x240.png")}.ui-state-default .ui-icon{background-image:url("images/ui-icons_888888_256x240.png")}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-active .ui-icon{background-image:url("images/ui-icons_454545_256x240.png")}.ui-state-highlight .ui-icon{background-image:url("images/ui-icons_2e83ff_256x240.png")}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url("images/ui-icons_cd0a0a_256x240.png")}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}
|
Binary file
|
Binary file
|
@@ -30,46 +30,85 @@ class EL_Admin_About {
|
|
30 |
if(!current_user_can('edit_posts')) {
|
31 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
|
|
|
|
|
|
33 |
echo '<div class="wrap">
|
34 |
-
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
The ID will be added at the end of the query parameter name (e.g. %1$s).','event-list'), '<i>http://www.your-homepage.com/?page_id=99&event_id<strong>1</strong>=11</i>').'
|
48 |
-
</p>
|
49 |
-
<p>'.sprintf(__('Be sure to also check the %1$sSettings page%2$s to get Event List behaving just the way you want.','event-list'), '<a href="admin.php?page=el_admin_settings">', '</a>').'</p>
|
50 |
</div>';
|
51 |
-
echo $this->show_atts();
|
52 |
-
echo $this->show_filter_syntax();
|
53 |
-
echo $this->show_date_syntax();
|
54 |
-
echo $this->show_daterange_syntax();
|
55 |
}
|
56 |
|
57 |
public function embed_about_scripts() {
|
58 |
wp_enqueue_style('eventlist_admin_about', EL_URL.'admin/css/admin_about.css');
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
private function show_atts() {
|
62 |
-
|
63 |
<h3 class="el-headline">'.__('Shortcode Attributes', 'event-list').'</h3>
|
64 |
<div>
|
65 |
'.__('You have the possibility to modify the output if you add some of the following attributes to the shortcode.','event-list').'<br />
|
66 |
'.sprintf(__('You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:','event-list'), '"num_events"', '"show_filterbar"').'
|
67 |
<p><code>[event-list num_events=10 show_filterbar=false]</code></p>
|
68 |
<p>'.__('Below you can find a list of all supported attributes with their descriptions and available options:','event-list').'</p>';
|
69 |
-
|
70 |
-
|
71 |
</div>';
|
72 |
-
return $out;
|
73 |
}
|
74 |
|
75 |
private function show_atts_table() {
|
@@ -100,7 +139,7 @@ class EL_Admin_About {
|
|
100 |
}
|
101 |
|
102 |
private function show_filter_syntax() {
|
103 |
-
|
104 |
<h3 class="el-headline">'.__('Filter Syntax','event-list').'</h3>
|
105 |
<p>'.__('For date and cat filters you can specify complex filters with the following syntax:','event-list').'</p>
|
106 |
<p>'.sprintf(__('You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries.','event-list'), __('AND','event-list').' ( "<strong>&</strong>" )', __('OR','event-list').' ( "<strong>|</strong>" '.__('or','event-list').' "<strong>,</strong>" )', '( "<strong>(</strong>" '.__('and','event-list').' "<strong>)</strong>" )').'</p>
|
@@ -111,7 +150,7 @@ class EL_Admin_About {
|
|
111 |
}
|
112 |
|
113 |
private function show_date_syntax() {
|
114 |
-
|
115 |
<h3 class="el-headline">'.__('Available Date Formats','event-list').'</h3>
|
116 |
<p>'.__('For date filters you can use the following date formats:','event-list').'</p>
|
117 |
<ul class="el-formats">
|
@@ -120,7 +159,7 @@ class EL_Admin_About {
|
|
120 |
}
|
121 |
|
122 |
private function show_daterange_syntax() {
|
123 |
-
|
124 |
<h3 class="el-headline">'.__('Available Date Range Formats','event-list').'</h3>
|
125 |
<p>'.__('For date filters you can use the following daterange formats:','event-list').'</p>
|
126 |
<ul class="el-formats">
|
30 |
if(!current_user_can('edit_posts')) {
|
31 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
33 |
+
if(!isset($_GET['tab'])) {
|
34 |
+
$_GET['tab'] = 'general';
|
35 |
+
}
|
36 |
echo '<div class="wrap">
|
37 |
+
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>';
|
38 |
+
echo $this->show_tabs($_GET['tab']);
|
39 |
+
if('atts' == $_GET['tab']) {
|
40 |
+
$this->show_atts();
|
41 |
+
$this->show_filter_syntax();
|
42 |
+
$this->show_date_syntax();
|
43 |
+
$this->show_daterange_syntax();
|
44 |
+
}
|
45 |
+
else {
|
46 |
+
$this->show_help();
|
47 |
+
$this->show_author();
|
48 |
+
}
|
49 |
+
echo '
|
|
|
|
|
|
|
50 |
</div>';
|
|
|
|
|
|
|
|
|
51 |
}
|
52 |
|
53 |
public function embed_about_scripts() {
|
54 |
wp_enqueue_style('eventlist_admin_about', EL_URL.'admin/css/admin_about.css');
|
55 |
}
|
56 |
|
57 |
+
private function show_tabs($current = 'about') {
|
58 |
+
$tabs = array('general' => __('General','event-list'),
|
59 |
+
'atts' => __('Shortcode Attributes','event-list'));
|
60 |
+
$out = '<h3 class="nav-tab-wrapper">';
|
61 |
+
foreach($tabs as $tab => $name){
|
62 |
+
$class = ($tab == $current) ? ' nav-tab-active' : '';
|
63 |
+
$out .= '<a class="nav-tab'.$class.'" href="?page=el_admin_about&tab='.$tab.'">'.$name.'</a>';
|
64 |
+
}
|
65 |
+
$out .= '</h3>';
|
66 |
+
return $out;
|
67 |
+
}
|
68 |
+
|
69 |
+
private function show_help() {
|
70 |
+
echo '
|
71 |
+
<h3 class="el-headline">'.__('Help and Instructions','event-list').'</h3>
|
72 |
+
<p>'.sprintf(__('You can manage the events %1$shere%2$s','event-list'), '<a href="admin.php?page=el_admin_main">', '</a>').'.</p>
|
73 |
+
<p>'.__('To show the events on your site you have 2 possibilities','event-list').':</p>
|
74 |
+
<ul class="el-show-event-options"><li>'.sprintf(__('you can place the <strong>shortcode</strong> %1$s on any page or post','event-list'), '<code>[event-list]</code>').'</li>
|
75 |
+
<li>'.sprintf(__('you can add the <strong>widget</strong> %1$s in your sidebars','event-list'), '"Event List"').'</li></ul>
|
76 |
+
<p>'.__('The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode.','event-list').'<br />
|
77 |
+
'.sprintf(__('A list of all available shortcode attributes with their descriptions is available in the %1$s tab.','event-list'), '<a href="admin.php?page=el_admin_about&tab=atts">'.__('Shortcode Attributes','event-list').'</a>').'<br />
|
78 |
+
'.__('The available widget options are described in their tooltip text.','event-list').'<br />
|
79 |
+
'.sprintf(__('If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page.','event-list'), '"'.__('Add links to the single events','event-list').'"', '"'.__('Add a link to the Event List page','event-list').'"')
|
80 |
+
.__('This is required because the widget does not know in which page or post the shortcode was included.','event-list').'<br />
|
81 |
+
'.__('Additionally you have to insert the correct Shortcode id on the linked page. This id describes which shortcode should be used on the given page or post if you have more than one.','event-list')
|
82 |
+
.sprintf(__('The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post.','event-list'), '[1]')
|
83 |
+
.sprintf(__('The id is available at the end of the URL parameters (e.g. %1$s).','event-list'), '<i>https://www.your-homepage.com/?page_id=99&event_id<strong>1</strong>=11</i>').'
|
84 |
+
</p>
|
85 |
+
<p>'.sprintf(__('Be sure to also check the %1$s to get the plugin behaving just the way you want.','event-list'), '<a href="admin.php?page=el_admin_settings">'.__('Settings page','event-list').'</a>').'</p>';
|
86 |
+
}
|
87 |
+
|
88 |
+
private function show_author() {
|
89 |
+
echo '
|
90 |
+
<br />
|
91 |
+
<h3>'.__('About the plugin author','event-list').'</h3>
|
92 |
+
<div class="help-content">
|
93 |
+
<p>'.sprintf(__('This plugin is developed by %1$s, you can find more information about the plugin on the %2$s.','event-list'), 'mibuthu', '<a href="http://wordpress.org/plugins/event-list" target="_blank" rel="noopener">'.__('wordpress plugin site','event-list').'</a>').'</p>
|
94 |
+
<p>'.sprintf(__('If you like the plugin please rate it on the %1$s.','event-list'), '<a href="http://wordpress.org/support/view/plugin-reviews/event-list" target="_blank" rel="noopener">'.__('wordpress plugin review site','event-list').'</a>').'<br />
|
95 |
+
<p>'.__('If you want to support the plugin I would be happy to get a small donation','event-list').':<br />
|
96 |
+
<a class="donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/paypal_btn_donate.gif" alt="PayPal Donation" title="Donate with PayPal" border="0"></a>
|
97 |
+
<a class="donate" href="https://flattr.com/submit/auto?user_id=mibuthu&url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fevent-list" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0"></a></p>
|
98 |
+
</div>';
|
99 |
+
}
|
100 |
+
|
101 |
private function show_atts() {
|
102 |
+
echo '
|
103 |
<h3 class="el-headline">'.__('Shortcode Attributes', 'event-list').'</h3>
|
104 |
<div>
|
105 |
'.__('You have the possibility to modify the output if you add some of the following attributes to the shortcode.','event-list').'<br />
|
106 |
'.sprintf(__('You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:','event-list'), '"num_events"', '"show_filterbar"').'
|
107 |
<p><code>[event-list num_events=10 show_filterbar=false]</code></p>
|
108 |
<p>'.__('Below you can find a list of all supported attributes with their descriptions and available options:','event-list').'</p>';
|
109 |
+
echo $this->show_atts_table();
|
110 |
+
echo '
|
111 |
</div>';
|
|
|
112 |
}
|
113 |
|
114 |
private function show_atts_table() {
|
139 |
}
|
140 |
|
141 |
private function show_filter_syntax() {
|
142 |
+
echo '
|
143 |
<h3 class="el-headline">'.__('Filter Syntax','event-list').'</h3>
|
144 |
<p>'.__('For date and cat filters you can specify complex filters with the following syntax:','event-list').'</p>
|
145 |
<p>'.sprintf(__('You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries.','event-list'), __('AND','event-list').' ( "<strong>&</strong>" )', __('OR','event-list').' ( "<strong>|</strong>" '.__('or','event-list').' "<strong>,</strong>" )', '( "<strong>(</strong>" '.__('and','event-list').' "<strong>)</strong>" )').'</p>
|
150 |
}
|
151 |
|
152 |
private function show_date_syntax() {
|
153 |
+
echo '
|
154 |
<h3 class="el-headline">'.__('Available Date Formats','event-list').'</h3>
|
155 |
<p>'.__('For date filters you can use the following date formats:','event-list').'</p>
|
156 |
<ul class="el-formats">
|
159 |
}
|
160 |
|
161 |
private function show_daterange_syntax() {
|
162 |
+
echo '
|
163 |
<h3 class="el-headline">'.__('Available Date Range Formats','event-list').'</h3>
|
164 |
<p>'.__('For date filters you can use the following daterange formats:','event-list').'</p>
|
165 |
<ul class="el-formats">
|
@@ -135,9 +135,9 @@ class EL_Admin_Categories {
|
|
135 |
}
|
136 |
// add message if forms are disabled
|
137 |
if($is_disabled) {
|
138 |
-
$out .= '<div id="message" class="updated"><p>'.__('Categories are automatically synced with the post categories
|
139 |
-
|
140 |
-
|
141 |
}
|
142 |
return $out;
|
143 |
}
|
135 |
}
|
136 |
// add message if forms are disabled
|
137 |
if($is_disabled) {
|
138 |
+
$out .= '<div id="message" class="updated"><p>'.__('Categories are automatically synced with the post categories.','event-list').'<br />'.
|
139 |
+
__('Because of this all options to add new categories or editing existing categories are disabled.','event-list').'<br />'.
|
140 |
+
__('If you want to manually edit the categories you have to disable this option.','event-list').'</p></div>';
|
141 |
}
|
142 |
return $out;
|
143 |
}
|
@@ -64,8 +64,8 @@ class EL_Admin_Import {
|
|
64 |
echo '
|
65 |
<h3>'.__('Step','event-list').' 1: '.__('Set import file and options','event-list').'</h3>
|
66 |
<form action="" id="el_import_upload" method="post" enctype="multipart/form-data">
|
67 |
-
'.$this->functions->show_option_table('import').'
|
68 |
-
<input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="'.__('
|
69 |
</form>
|
70 |
<br /><br />
|
71 |
<h3>'.__('Example file','event-list').'</h4>
|
@@ -94,22 +94,41 @@ class EL_Admin_Import {
|
|
94 |
$this->safe_import_settings();
|
95 |
|
96 |
// parse file
|
97 |
-
$import_data = $this->parseImportFile($file);
|
98 |
|
99 |
// parsing failed?
|
100 |
-
if(is_wp_error($import_data)) {
|
101 |
echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>';
|
102 |
-
echo '<p>' . esc_html($import_data->get_error_message()).'</p>';
|
103 |
return;
|
104 |
}
|
105 |
|
106 |
-
// TODO: $this->import_data vs. $import_data ?
|
107 |
-
$this->import_data = $import_data;
|
108 |
$serialized = serialize($this->import_data);
|
109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
// show review page
|
111 |
echo '
|
112 |
-
<h3>'.__('Step','event-list').' 2: '.__('
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
<form method="POST" action="?page=el_admin_main&action=import">';
|
114 |
wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
|
115 |
wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false);
|
@@ -125,8 +144,8 @@ class EL_Admin_Import {
|
|
125 |
</div>
|
126 |
<div id="postbox-container-1" class="postbox-container">
|
127 |
<div id="side-sortables" class="meta-box-sortables ui-sortable">';
|
128 |
-
add_meta_box('event-categories', __('
|
129 |
-
add_meta_box('event-publish', __('Import','event-list'), array(&$this, 'render_publish_metabox'), 'event-list');
|
130 |
do_meta_boxes('event-list', 'advanced', null);
|
131 |
echo '
|
132 |
</div>
|
@@ -153,12 +172,13 @@ class EL_Admin_Import {
|
|
153 |
private function show_event($event) {
|
154 |
echo '
|
155 |
<p>
|
156 |
-
<span
|
157 |
-
<span
|
158 |
-
<span
|
159 |
-
<span
|
160 |
-
<span
|
161 |
-
<span
|
|
|
162 |
</p>';
|
163 |
}
|
164 |
|
@@ -167,7 +187,7 @@ class EL_Admin_Import {
|
|
167 |
*/
|
168 |
private function parseImportFile($file) {
|
169 |
$delimiter = ',';
|
170 |
-
$header = array('title', 'start date', 'end date', 'time', 'location', 'details');
|
171 |
$separator = array('sep=,');
|
172 |
|
173 |
// list of events to import
|
@@ -175,27 +195,32 @@ class EL_Admin_Import {
|
|
175 |
|
176 |
$file_handle = fopen($file, 'r');
|
177 |
$lineNum = 0;
|
|
|
178 |
while(!feof($file_handle)) {
|
179 |
-
$line = fgetcsv($file_handle,
|
180 |
|
181 |
-
// skip empty
|
182 |
if(empty($line)) {
|
|
|
183 |
continue;
|
184 |
}
|
|
|
185 |
if($lineNum === 0) {
|
|
|
186 |
if($line === $separator) {
|
|
|
187 |
continue;
|
188 |
}
|
189 |
-
|
|
|
190 |
$lineNum += 1;
|
191 |
continue;
|
192 |
}
|
193 |
else {
|
194 |
-
|
195 |
-
var_dump($header);
|
196 |
-
return new WP_Error('CSV_parse_error', __('There was an error when reading this CSV file.','event-list'));
|
197 |
}
|
198 |
}
|
|
|
199 |
$events[] = array(
|
200 |
'title' => $line[0],
|
201 |
'start_date' => $line[1],
|
@@ -203,6 +228,7 @@ class EL_Admin_Import {
|
|
203 |
'time' => $line[3],
|
204 |
'location' => $line[4],
|
205 |
'details' => $line[5],
|
|
|
206 |
);
|
207 |
$lineNum += 1;
|
208 |
}
|
@@ -240,7 +266,7 @@ class EL_Admin_Import {
|
|
240 |
echo '
|
241 |
<ul id="categorychecklist" class="categorychecklist form-no-clear">';
|
242 |
$level = 0;
|
243 |
-
$event_cats =
|
244 |
foreach($cat_array as $cat) {
|
245 |
if($cat['level'] > $level) {
|
246 |
//new sub level
|
@@ -273,10 +299,16 @@ class EL_Admin_Import {
|
|
273 |
|
274 |
private function import_events() {
|
275 |
$reviewed_events = unserialize(stripslashes($_POST['reviewed_events']));
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
}
|
281 |
}
|
282 |
$ret = array();
|
@@ -301,5 +333,9 @@ class EL_Admin_Import {
|
|
301 |
// TODO: Improve error messages
|
302 |
return $ret;
|
303 |
}
|
|
|
|
|
|
|
|
|
304 |
}
|
305 |
?>
|
64 |
echo '
|
65 |
<h3>'.__('Step','event-list').' 1: '.__('Set import file and options','event-list').'</h3>
|
66 |
<form action="" id="el_import_upload" method="post" enctype="multipart/form-data">
|
67 |
+
'.$this->functions->show_option_table('import').'<br />
|
68 |
+
<input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="'.sprintf(__('Proceed with Step %1$s','event-list'), '2').' >>" />
|
69 |
</form>
|
70 |
<br /><br />
|
71 |
<h3>'.__('Example file','event-list').'</h4>
|
94 |
$this->safe_import_settings();
|
95 |
|
96 |
// parse file
|
97 |
+
$this->import_data = $this->parseImportFile($file);
|
98 |
|
99 |
// parsing failed?
|
100 |
+
if(is_wp_error($this->import_data)) {
|
101 |
echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>';
|
102 |
+
echo '<p>' . esc_html($this->import_data->get_error_message()).'</p>';
|
103 |
return;
|
104 |
}
|
105 |
|
|
|
|
|
106 |
$serialized = serialize($this->import_data);
|
107 |
|
108 |
+
// Check categories
|
109 |
+
$not_available_cats = array();
|
110 |
+
foreach($this->import_data as $event) {
|
111 |
+
foreach($event['categories'] as $cat) {
|
112 |
+
if(!$this->categories->is_set($cat) && !in_array($cat, $not_available_cats)) {
|
113 |
+
$not_available_cats[] = $cat;
|
114 |
+
}
|
115 |
+
}
|
116 |
+
}
|
117 |
+
|
118 |
// show review page
|
119 |
echo '
|
120 |
+
<h3>'.__('Step','event-list').' 2: '.__('Events review and additonal category selection','event-list').'</h3>';
|
121 |
+
if(!empty($not_available_cats)) {
|
122 |
+
echo '
|
123 |
+
<div class="el-warning">'.__('Warning: The following category slugs are not available and will be removed from the imported events:','event-list').'
|
124 |
+
<ul class="el-categories">';
|
125 |
+
foreach($not_available_cats as $cat) {
|
126 |
+
echo '<li><code>'.$cat.'</code></li>';
|
127 |
+
}
|
128 |
+
echo '</ul>
|
129 |
+
'.__('If you want to keep these categories, please create these Categories first and do the import afterwards.','event-list').'</div>';
|
130 |
+
}
|
131 |
+
echo '
|
132 |
<form method="POST" action="?page=el_admin_main&action=import">';
|
133 |
wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
|
134 |
wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false);
|
144 |
</div>
|
145 |
<div id="postbox-container-1" class="postbox-container">
|
146 |
<div id="side-sortables" class="meta-box-sortables ui-sortable">';
|
147 |
+
add_meta_box('event-categories', __('Add additional categories','event-list'), array(&$this, 'render_category_metabox'),'event-list', 'advanced', 'default', null);
|
148 |
+
add_meta_box('event-publish', __('Import events','event-list'), array(&$this, 'render_publish_metabox'), 'event-list');
|
149 |
do_meta_boxes('event-list', 'advanced', null);
|
150 |
echo '
|
151 |
</div>
|
172 |
private function show_event($event) {
|
173 |
echo '
|
174 |
<p>
|
175 |
+
<span class="el-event-header">'.__('Title','event-list').':</span> <span class="el-event-data">'.$event['title'].'</span><br />
|
176 |
+
<span class="el-event-header">'.__('Start Date','event-list').':</span> <span class="el-event-data">'.$event['start_date'].'</span><br />
|
177 |
+
<span class="el-event-header">'.__('End Date','event-list').':</span> <span class="el-event-data">'.$event['end_date'].'</span><br />
|
178 |
+
<span class="el-event-header">'.__('Time','event-list').':</span> <span class="el-event-data">'.$event['time'].'</span><br />
|
179 |
+
<span class="el-event-header">'.__('Location','event-list').':</span> <span class="el-event-data">'.$event['location'].'</span><br />
|
180 |
+
<span class="el-event-header">'.__('Details','event-list').':</span> <span class="el-event-data">'.$event['details'].'</span><br />
|
181 |
+
<span class="el-event-header">'.__('Category slugs','event-list').':</span> <span class="el-event-data">'.implode(', ', $event['categories']).'</span>
|
182 |
</p>';
|
183 |
}
|
184 |
|
187 |
*/
|
188 |
private function parseImportFile($file) {
|
189 |
$delimiter = ',';
|
190 |
+
$header = array('title', 'start date', 'end date', 'time', 'location', 'details', 'category_slugs');
|
191 |
$separator = array('sep=,');
|
192 |
|
193 |
// list of events to import
|
195 |
|
196 |
$file_handle = fopen($file, 'r');
|
197 |
$lineNum = 0;
|
198 |
+
$emptyLines = 0;
|
199 |
while(!feof($file_handle)) {
|
200 |
+
$line = fgetcsv($file_handle, 0);
|
201 |
|
202 |
+
// skip empty lines
|
203 |
if(empty($line)) {
|
204 |
+
$emptyLines += 1;
|
205 |
continue;
|
206 |
}
|
207 |
+
// check header
|
208 |
if($lineNum === 0) {
|
209 |
+
// check optional separator line
|
210 |
if($line === $separator) {
|
211 |
+
$emptyLines += 1;
|
212 |
continue;
|
213 |
}
|
214 |
+
// check header line
|
215 |
+
elseif($line === $header || $line === array_slice($header,0,-1)) {
|
216 |
$lineNum += 1;
|
217 |
continue;
|
218 |
}
|
219 |
else {
|
220 |
+
return new WP_Error('CSV_parse_error', sprintf(__('There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!','event-list'), $lineNum+$emptyLines));
|
|
|
|
|
221 |
}
|
222 |
}
|
223 |
+
// handle lines with events
|
224 |
$events[] = array(
|
225 |
'title' => $line[0],
|
226 |
'start_date' => $line[1],
|
228 |
'time' => $line[3],
|
229 |
'location' => $line[4],
|
230 |
'details' => $line[5],
|
231 |
+
'categories' => isset($line[6]) ? explode('|', $line[6]) : array(),
|
232 |
);
|
233 |
$lineNum += 1;
|
234 |
}
|
266 |
echo '
|
267 |
<ul id="categorychecklist" class="categorychecklist form-no-clear">';
|
268 |
$level = 0;
|
269 |
+
$event_cats = $this->categories->convert_db_string($metabox['args']['event_cats'], 'slug_array');
|
270 |
foreach($cat_array as $cat) {
|
271 |
if($cat['level'] > $level) {
|
272 |
//new sub level
|
299 |
|
300 |
private function import_events() {
|
301 |
$reviewed_events = unserialize(stripslashes($_POST['reviewed_events']));
|
302 |
+
// Category handling
|
303 |
+
$additional_cats = isset($_POST['categories']) ? $_POST['categories'] : array();
|
304 |
+
foreach($reviewed_events as &$event) {
|
305 |
+
// Remove not available categories of import file
|
306 |
+
$event['categories'] = array_filter($event['categories'], function($e) {
|
307 |
+
return $this->categories->is_set($e);
|
308 |
+
});
|
309 |
+
// Add the additionally specified categories to the event
|
310 |
+
if(!empty($additional_cats)) {
|
311 |
+
$event['categories'] = array_unique(array_merge($event['categories'], $additional_cats));
|
312 |
}
|
313 |
}
|
314 |
$ret = array();
|
333 |
// TODO: Improve error messages
|
334 |
return $ret;
|
335 |
}
|
336 |
+
|
337 |
+
public function embed_import_scripts() {
|
338 |
+
wp_enqueue_style('eventlist_admin_import', EL_URL.'admin/css/admin_import.css');
|
339 |
+
}
|
340 |
}
|
341 |
?>
|
@@ -88,7 +88,6 @@ class EL_Admin_Main {
|
|
88 |
return;
|
89 |
// actions showing import view
|
90 |
case 'import':
|
91 |
-
require_once(EL_PATH.'admin/includes/admin-import.php');
|
92 |
EL_Admin_Import::get_instance()->show_import();
|
93 |
return;
|
94 |
// actions showing event list
|
@@ -141,6 +140,11 @@ class EL_Admin_Main {
|
|
141 |
// embed admin new script
|
142 |
require_once(EL_PATH.'admin/includes/admin-new.php');
|
143 |
EL_Admin_New::get_instance()->embed_new_scripts();
|
|
|
|
|
|
|
|
|
|
|
144 |
default:
|
145 |
// embed admin_main script
|
146 |
wp_enqueue_script('eventlist_admin_main_js', EL_URL.'admin/js/admin_main.js');
|
88 |
return;
|
89 |
// actions showing import view
|
90 |
case 'import':
|
|
|
91 |
EL_Admin_Import::get_instance()->show_import();
|
92 |
return;
|
93 |
// actions showing event list
|
140 |
// embed admin new script
|
141 |
require_once(EL_PATH.'admin/includes/admin-new.php');
|
142 |
EL_Admin_New::get_instance()->embed_new_scripts();
|
143 |
+
break;
|
144 |
+
case 'import':
|
145 |
+
require_once(EL_PATH.'admin/includes/admin-import.php');
|
146 |
+
EL_Admin_Import::get_instance()->embed_import_scripts();
|
147 |
+
break;
|
148 |
default:
|
149 |
// embed admin_main script
|
150 |
wp_enqueue_script('eventlist_admin_main_js', EL_URL.'admin/js/admin_main.js');
|
@@ -51,7 +51,16 @@ class EL_Admin_New {
|
|
51 |
wp_enqueue_script('jquery-ui-datepicker');
|
52 |
wp_enqueue_script('link');
|
53 |
wp_enqueue_script('eventlist_admin_new_js', EL_URL.'admin/js/admin_new.js');
|
|
|
|
|
|
|
|
|
|
|
54 |
wp_enqueue_style('eventlist_admin_new', EL_URL.'admin/css/admin_new.css');
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
|
57 |
public function edit_event() {
|
@@ -68,8 +77,8 @@ class EL_Admin_New {
|
|
68 |
$end_date = strtotime($event->end_date);
|
69 |
}
|
70 |
// Add required data for javascript in a hidden field
|
71 |
-
$json = json_encode(array('
|
72 |
-
'
|
73 |
$out = '
|
74 |
<form method="POST" action="'.add_query_arg('noheader', 'true', '?page=el_admin_main').'">';
|
75 |
$out .= "
|
@@ -99,8 +108,8 @@ class EL_Admin_New {
|
|
99 |
</tr>
|
100 |
<tr>
|
101 |
<th><label>'.__('Date','event-list').' ('.__('required','event-list').')</label></th>
|
102 |
-
<td><input type="text" class="text
|
103 |
-
<span id="end_date_area"> - <input type="text" class="text
|
104 |
<label><input type="checkbox" name="multiday" id="multiday" value="1" /> '.__('Multi-Day Event','event-list').'</label>
|
105 |
<input type="hidden" id="sql_start_date" name="sql_start_date" value="" />
|
106 |
<input type="hidden" id="sql_end_date" name="sql_end_date" value="" />
|
@@ -169,7 +178,7 @@ class EL_Admin_New {
|
|
169 |
$out .= '
|
170 |
<ul id="categorychecklist" class="categorychecklist form-no-clear">';
|
171 |
$level = 0;
|
172 |
-
$event_cats =
|
173 |
foreach($cat_array as $cat) {
|
174 |
if($cat['level'] > $level) {
|
175 |
//new sub level
|
@@ -231,15 +240,18 @@ class EL_Admin_New {
|
|
231 |
* @return string
|
232 |
*/
|
233 |
private function datepicker_format($format) {
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
|
|
|
|
|
|
243 |
}
|
244 |
}
|
245 |
?>
|
51 |
wp_enqueue_script('jquery-ui-datepicker');
|
52 |
wp_enqueue_script('link');
|
53 |
wp_enqueue_script('eventlist_admin_new_js', EL_URL.'admin/js/admin_new.js');
|
54 |
+
// TODO: wp_localize_jquery_ui_datepicker is available since wordpress version 4.6.0.
|
55 |
+
// For compatibility to older versions the function_exists test was added, this test can be removed again in a later version.
|
56 |
+
if(function_exists("wp_localize_jquery_ui_datepicker")) {
|
57 |
+
wp_localize_jquery_ui_datepicker();
|
58 |
+
}
|
59 |
wp_enqueue_style('eventlist_admin_new', EL_URL.'admin/css/admin_new.css');
|
60 |
+
// add the jquery-ui style "smooth" (see https://jqueryui.com/download/) (required for the xwp datepicker skin)
|
61 |
+
wp_enqueue_style('eventlist_jqueryui', EL_URL.'admin/css/jquery-ui.min.css');
|
62 |
+
// add the xwp datepicker skin (see https://github.com/xwp/wp-jquery-ui-datepicker-skins)
|
63 |
+
wp_enqueue_style('eventlist_datepicker', EL_URL.'admin/css/jquery-ui-datepicker.css');
|
64 |
}
|
65 |
|
66 |
public function edit_event() {
|
77 |
$end_date = strtotime($event->end_date);
|
78 |
}
|
79 |
// Add required data for javascript in a hidden field
|
80 |
+
$json = json_encode(array('el_date_format' => $this->datepicker_format($dateformat),
|
81 |
+
'el_start_of_week' => get_option('start_of_week')));
|
82 |
$out = '
|
83 |
<form method="POST" action="'.add_query_arg('noheader', 'true', '?page=el_admin_main').'">';
|
84 |
$out .= "
|
108 |
</tr>
|
109 |
<tr>
|
110 |
<th><label>'.__('Date','event-list').' ('.__('required','event-list').')</label></th>
|
111 |
+
<td><span class="date-wrapper"><input type="text" class="text form-required" name="start_date" id="start_date" value="'.date('Y-m-d', $start_date).'" /><i class="dashicons dashicons-calendar-alt"></i></span>
|
112 |
+
<span id="end_date_area"> - <span class="date-wrapper"><input type="text" class="text" name="end_date" id="end_date" value="'.date('Y-m-d', $end_date).'" /><i class="dashicons dashicons-calendar-alt"></i></span></span>
|
113 |
<label><input type="checkbox" name="multiday" id="multiday" value="1" /> '.__('Multi-Day Event','event-list').'</label>
|
114 |
<input type="hidden" id="sql_start_date" name="sql_start_date" value="" />
|
115 |
<input type="hidden" id="sql_end_date" name="sql_end_date" value="" />
|
178 |
$out .= '
|
179 |
<ul id="categorychecklist" class="categorychecklist form-no-clear">';
|
180 |
$level = 0;
|
181 |
+
$event_cats = $this->categories->convert_db_string($metabox['args']['event_cats'], 'slug_array');
|
182 |
foreach($cat_array as $cat) {
|
183 |
if($cat['level'] > $level) {
|
184 |
//new sub level
|
240 |
* @return string
|
241 |
*/
|
242 |
private function datepicker_format($format) {
|
243 |
+
return str_replace(
|
244 |
+
array(
|
245 |
+
'd', 'j', 'l', 'z', // Day.
|
246 |
+
'F', 'M', 'n', 'm', // Month.
|
247 |
+
'Y', 'y' // Year.
|
248 |
+
),
|
249 |
+
array(
|
250 |
+
'dd', 'd', 'DD', 'o',
|
251 |
+
'MM', 'M', 'm', 'mm',
|
252 |
+
'yy', 'y'
|
253 |
+
),
|
254 |
+
$format);
|
255 |
}
|
256 |
}
|
257 |
?>
|
@@ -14,21 +14,22 @@ jQuery(document).ready(function($) {
|
|
14 |
$("#multiday").attr('checked', true);
|
15 |
}
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
// Datepickers
|
18 |
$("#start_date").datepicker( {
|
19 |
-
dateFormat: conf.el_date_format,
|
20 |
-
firstDay: 1,
|
21 |
-
changeMonth: true,
|
22 |
-
changeYear: true,
|
23 |
-
numberOfMonths: 3,
|
24 |
-
showOn: "both",
|
25 |
-
buttonImage: conf.el_url + "admin/images/calendar.png",
|
26 |
-
buttonImageOnly: true,
|
27 |
-
constrainInput: true,
|
28 |
altField: "#sql_start_date",
|
29 |
-
altFormat: "yy-mm-dd",
|
30 |
-
minDate: $.datepicker.parseDate('yy-mm-dd', "1970-01-01"),
|
31 |
-
maxDate: $.datepicker.parseDate('yy-mm-dd', "2999-12-31"),
|
32 |
onClose: function(selectedDate) {
|
33 |
// set minDate for end_date picker
|
34 |
minDate = $.datepicker.parseDate( conf.el_date_format, selectedDate );
|
@@ -37,19 +38,8 @@ jQuery(document).ready(function($) {
|
|
37 |
}
|
38 |
});
|
39 |
$("#end_date").datepicker( {
|
40 |
-
dateFormat: conf.el_date_format,
|
41 |
-
firstDay: 1,
|
42 |
-
changeMonth: true,
|
43 |
-
changeYear: true,
|
44 |
-
numberOfMonths: 3,
|
45 |
-
showOn: "both",
|
46 |
-
buttonImage: conf.el_url + "admin/images/calendar.png",
|
47 |
-
buttonImageOnly: true,
|
48 |
-
constrainInput: true,
|
49 |
altField: "#sql_end_date",
|
50 |
-
altFormat: "yy-mm-dd",
|
51 |
-
minDate: $.datepicker.parseDate('yy-mm-dd', "1970-01-01"),
|
52 |
-
maxDate: $.datepicker.parseDate('yy-mm-dd', "2999-12-31"),
|
53 |
});
|
54 |
|
55 |
// Toogle end_date visibility and insert the correct date
|
@@ -58,8 +48,8 @@ jQuery(document).ready(function($) {
|
|
58 |
if (this.checked) {
|
59 |
timestamp = enddate.getTime() + 1*24*60*60*1000;
|
60 |
enddate.setTime(timestamp);
|
61 |
-
$("#end_date_area").fadeIn();
|
62 |
$("#end_date").datepicker("option", "minDate", enddate);
|
|
|
63 |
}
|
64 |
else {
|
65 |
$("#end_date_area").fadeOut();
|
14 |
$("#multiday").attr('checked', true);
|
15 |
}
|
16 |
|
17 |
+
$.datepicker.setDefaults({
|
18 |
+
"dateFormat": conf.el_date_format,
|
19 |
+
"firstDay": conf.el_start_of_week,
|
20 |
+
"changeMonth": true,
|
21 |
+
"changeYear": true,
|
22 |
+
"numberOfMonths": 3,
|
23 |
+
"constrainInput": true,
|
24 |
+
"altFormat": "yy-mm-dd",
|
25 |
+
"minDate": $.datepicker.parseDate('yy-mm-dd', "1970-01-01"),
|
26 |
+
"maxDate": $.datepicker.parseDate('yy-mm-dd', "2999-12-31"),
|
27 |
+
});
|
28 |
+
|
29 |
// Datepickers
|
30 |
$("#start_date").datepicker( {
|
31 |
+
dateFormat: conf.el_date_format, // don't work when only set with setDefaults
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
altField: "#sql_start_date",
|
|
|
|
|
|
|
33 |
onClose: function(selectedDate) {
|
34 |
// set minDate for end_date picker
|
35 |
minDate = $.datepicker.parseDate( conf.el_date_format, selectedDate );
|
38 |
}
|
39 |
});
|
40 |
$("#end_date").datepicker( {
|
41 |
+
dateFormat: conf.el_date_format, // don't work when only set with setDefaults
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
altField: "#sql_end_date",
|
|
|
|
|
|
|
43 |
});
|
44 |
|
45 |
// Toogle end_date visibility and insert the correct date
|
48 |
if (this.checked) {
|
49 |
timestamp = enddate.getTime() + 1*24*60*60*1000;
|
50 |
enddate.setTime(timestamp);
|
|
|
51 |
$("#end_date").datepicker("option", "minDate", enddate);
|
52 |
+
$("#end_date_area").fadeIn();
|
53 |
}
|
54 |
else {
|
55 |
$("#end_date_area").fadeOut();
|
@@ -3,14 +3,14 @@
|
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
-
Version: 0.7.
|
7 |
-
Author:
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
10 |
License: GPLv2
|
11 |
|
12 |
A plugin for the blogging MySQL/PHP-based WordPress.
|
13 |
-
Copyright 2012-2017
|
14 |
|
15 |
This program is free software; you can redistribute it and/or
|
16 |
modify it under the terms of the GNUs General Public License
|
@@ -76,7 +76,19 @@ class Event_List {
|
|
76 |
} // end constructor
|
77 |
|
78 |
public function load_textdomain() {
|
79 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
81 |
|
82 |
public function shortcode_event_list($atts) {
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
+
Version: 0.7.8
|
7 |
+
Author: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
10 |
License: GPLv2
|
11 |
|
12 |
A plugin for the blogging MySQL/PHP-based WordPress.
|
13 |
+
Copyright 2012-2017 mibuthu
|
14 |
|
15 |
This program is free software; you can redistribute it and/or
|
16 |
modify it under the terms of the GNUs General Public License
|
76 |
} // end constructor
|
77 |
|
78 |
public function load_textdomain() {
|
79 |
+
$el_lang_path = basename(EL_PATH).'/languages';
|
80 |
+
$domain = 'event-list';
|
81 |
+
if('' !== get_option('el_mo_lang_dir_first', '')) { // this->option->get not available in this early stage
|
82 |
+
// use default wordpress function (language files from language dir wp-content/languages/plugins/ are preferred)
|
83 |
+
load_plugin_textdomain($domain, false, $el_lang_path);
|
84 |
+
}
|
85 |
+
else {
|
86 |
+
// use fork of wordpress function load_plugin_textdomain (see wp-includes/l10n.php) to prefer language files included in plugin (wp-content/plugins/event-list/languages/) and additionally from language dir
|
87 |
+
$locale = apply_filters('plugin_locale', is_admin() ? get_user_locale() : get_locale(), $domain);
|
88 |
+
$mofile = $domain.'-'.$locale.'.mo';
|
89 |
+
load_textdomain($domain, WP_PLUGIN_DIR.'/'.$el_lang_path.'/'.$mofile);
|
90 |
+
load_textdomain($domain, WP_LANG_DIR.'/plugins/'.$mofile);
|
91 |
+
}
|
92 |
}
|
93 |
|
94 |
public function shortcode_event_list($atts) {
|
@@ -1,4 +1,4 @@
|
|
1 |
"sep=,"
|
2 |
-
"title","start date","end date","time","location","details"
|
3 |
-
"Cycling",
|
4 |
-
"Hiking",2020-02-02,2020-02-04,10:00:00,"in the mountains","TestTest?<br>2nd test entry."
|
1 |
"sep=,"
|
2 |
+
"title","start date","end date","time","location","details","category_slugs"
|
3 |
+
"Cycling",2018-01-01,,17:00:00,"at home","This is a test entry."
|
4 |
+
"Hiking",2020-02-02,2020-02-04,10:00:00,"in the mountains","TestTest?<br>2nd test entry.","events|sports"
|
@@ -43,6 +43,10 @@ class EL_Categories {
|
|
43 |
}
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
46 |
public function add_category($cat_data, $allow_duplicate_names=false) {
|
47 |
$this->add_cat_to_array($cat_data, $allow_duplicate_names);
|
48 |
return $this->safe_categories();
|
@@ -50,7 +54,7 @@ class EL_Categories {
|
|
50 |
|
51 |
public function edit_category($cat_data, $old_slug, $allow_duplicate_names=false) {
|
52 |
// check if slug already exists
|
53 |
-
if(
|
54 |
return false;
|
55 |
}
|
56 |
// delete old category
|
@@ -127,7 +131,7 @@ class EL_Categories {
|
|
127 |
// make slug unique
|
128 |
$cat['slug'] = $slug = sanitize_title( $cat_data['slug'] );
|
129 |
$num = 1;
|
130 |
-
while(
|
131 |
$num++;
|
132 |
$cat['slug'] = $slug.'-'.$num;
|
133 |
}
|
@@ -294,7 +298,7 @@ class EL_Categories {
|
|
294 |
}
|
295 |
|
296 |
private function set_parent($cat_slug, $parent_slug) {
|
297 |
-
if(
|
298 |
// set parent and level
|
299 |
$this->cat_array[$cat_slug]['parent'] = $parent_slug;
|
300 |
$this->cat_array[$cat_slug]['level'] = $this->cat_array[$parent_slug]['level'] + 1;
|
@@ -321,28 +325,34 @@ class EL_Categories {
|
|
321 |
* @param string $slug_string The slug string to convert
|
322 |
* @param string $return_type The type to return. Possible values are:
|
323 |
* "name_string" ... to return a string with the category names
|
|
|
324 |
* "slug_string" ... to return a string with the category slugs
|
325 |
* "slug_array" ... to return an array with the category slugs
|
326 |
* @param string $glue The glue or separator when a string should be returned
|
327 |
*/
|
328 |
public function convert_db_string($slug_string, $return_type='name_string', $glue=', ') {
|
329 |
if(2 >= strlen($slug_string)) {
|
330 |
-
return ('
|
331 |
}
|
332 |
-
$slug_array = explode('|', substr(
|
333 |
switch($return_type) {
|
334 |
case 'slug_array':
|
335 |
-
return $slug_array;
|
336 |
case 'slug_string':
|
337 |
-
$
|
338 |
break;
|
|
|
339 |
default: // name_string
|
340 |
-
$
|
341 |
foreach($slug_array as $slug) {
|
342 |
-
$
|
343 |
}
|
344 |
-
sort($string_array, SORT_STRING);
|
345 |
}
|
346 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
347 |
}
|
348 |
}
|
43 |
}
|
44 |
}
|
45 |
|
46 |
+
public function is_set($category_slug) {
|
47 |
+
return isset($this->cat_array[$category_slug]);
|
48 |
+
}
|
49 |
+
|
50 |
public function add_category($cat_data, $allow_duplicate_names=false) {
|
51 |
$this->add_cat_to_array($cat_data, $allow_duplicate_names);
|
52 |
return $this->safe_categories();
|
54 |
|
55 |
public function edit_category($cat_data, $old_slug, $allow_duplicate_names=false) {
|
56 |
// check if slug already exists
|
57 |
+
if(!$this->is_set($old_slug)) {
|
58 |
return false;
|
59 |
}
|
60 |
// delete old category
|
131 |
// make slug unique
|
132 |
$cat['slug'] = $slug = sanitize_title( $cat_data['slug'] );
|
133 |
$num = 1;
|
134 |
+
while($this->is_set($cat['slug'])) {
|
135 |
$num++;
|
136 |
$cat['slug'] = $slug.'-'.$num;
|
137 |
}
|
298 |
}
|
299 |
|
300 |
private function set_parent($cat_slug, $parent_slug) {
|
301 |
+
if($this->is_set($parent_slug)) {
|
302 |
// set parent and level
|
303 |
$this->cat_array[$cat_slug]['parent'] = $parent_slug;
|
304 |
$this->cat_array[$cat_slug]['level'] = $this->cat_array[$parent_slug]['level'] + 1;
|
325 |
* @param string $slug_string The slug string to convert
|
326 |
* @param string $return_type The type to return. Possible values are:
|
327 |
* "name_string" ... to return a string with the category names
|
328 |
+
* "name_array" ... to return an array with the category names
|
329 |
* "slug_string" ... to return a string with the category slugs
|
330 |
* "slug_array" ... to return an array with the category slugs
|
331 |
* @param string $glue The glue or separator when a string should be returned
|
332 |
*/
|
333 |
public function convert_db_string($slug_string, $return_type='name_string', $glue=', ') {
|
334 |
if(2 >= strlen($slug_string)) {
|
335 |
+
return (strpos($return_type, 'array') !== false) ? array() : '';
|
336 |
}
|
337 |
+
$slug_array = explode('|', substr($slug_string, 1, -1));
|
338 |
switch($return_type) {
|
339 |
case 'slug_array':
|
|
|
340 |
case 'slug_string':
|
341 |
+
$ret_array = $slug_array;
|
342 |
break;
|
343 |
+
case 'name_array':
|
344 |
default: // name_string
|
345 |
+
$ret_array = array();
|
346 |
foreach($slug_array as $slug) {
|
347 |
+
$ret_array[] = $this->cat_array[$slug]['name'];
|
348 |
}
|
|
|
349 |
}
|
350 |
+
sort($ret_array, SORT_STRING);
|
351 |
+
if(strpos($return_type, 'array') !== false) {
|
352 |
+
return $ret_array;
|
353 |
+
}
|
354 |
+
else {
|
355 |
+
return implode($glue, $ret_array);
|
356 |
+
}
|
357 |
}
|
358 |
}
|
@@ -292,12 +292,12 @@ class EL_Db {
|
|
292 |
// add wrapper div with css styles for css truncate and return
|
293 |
return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">'.$html.'</div>';
|
294 |
}
|
295 |
-
|
296 |
// do nothing
|
297 |
return $html;
|
298 |
}
|
299 |
elseif(!$preserve_tags) {
|
300 |
-
// only shorten text
|
301 |
return mb_substr($html, 0, $length);
|
302 |
}
|
303 |
else {
|
@@ -327,12 +327,19 @@ class EL_Db {
|
|
327 |
else {
|
328 |
// Handle the tag
|
329 |
$tagName = $match[1][0];
|
330 |
-
if($this->mb_preg_match('{
|
331 |
// This is a closing tag
|
332 |
$openingTag = array_pop($tags);
|
333 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
}
|
335 |
-
else if($this->mb_preg_match('{/\s
|
336 |
// Self-closing tag
|
337 |
$out .= $tag;
|
338 |
}
|
292 |
// add wrapper div with css styles for css truncate and return
|
293 |
return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">'.$html.'</div>';
|
294 |
}
|
295 |
+
elseif(0 >= $length || mb_strlen($html) <= $length || $skip) {
|
296 |
// do nothing
|
297 |
return $html;
|
298 |
}
|
299 |
elseif(!$preserve_tags) {
|
300 |
+
// only shorten the text
|
301 |
return mb_substr($html, 0, $length);
|
302 |
}
|
303 |
else {
|
327 |
else {
|
328 |
// Handle the tag
|
329 |
$tagName = $match[1][0];
|
330 |
+
if($this->mb_preg_match('{^</}', $tag)) {
|
331 |
// This is a closing tag
|
332 |
$openingTag = array_pop($tags);
|
333 |
+
if($openingTag != $tagName) {
|
334 |
+
// Not properly nested tag found: trigger a warning and add the not matching opening tag again
|
335 |
+
trigger_error('Not properly nested tag found (last opening tag: '.$openingTag.', closing tag: '.$tagName.')', E_USER_WARNING);
|
336 |
+
$tags[] = $openingTag;
|
337 |
+
}
|
338 |
+
else {
|
339 |
+
$out .= $tag;
|
340 |
+
}
|
341 |
}
|
342 |
+
else if($this->mb_preg_match('{/\s*>$}', $tag)) {
|
343 |
// Self-closing tag
|
344 |
$out .= $tag;
|
345 |
}
|
@@ -5,6 +5,7 @@ if(!defined('ABSPATH')) {
|
|
5 |
|
6 |
require_once(EL_PATH.'includes/db.php');
|
7 |
require_once(EL_PATH.'includes/options.php');
|
|
|
8 |
|
9 |
// This class handles rss feeds
|
10 |
class EL_Feed {
|
@@ -12,6 +13,7 @@ class EL_Feed {
|
|
12 |
private static $instance;
|
13 |
private $db;
|
14 |
private $options;
|
|
|
15 |
|
16 |
public static function &get_instance() {
|
17 |
// Create class instance if required
|
@@ -25,6 +27,7 @@ class EL_Feed {
|
|
25 |
private function __construct() {
|
26 |
$this->db = EL_Db::get_instance();
|
27 |
$this->options = EL_Options::get_instance();
|
|
|
28 |
$this->init();
|
29 |
}
|
30 |
|
@@ -69,7 +72,14 @@ class EL_Feed {
|
|
69 |
echo '
|
70 |
<item>
|
71 |
<title>'.esc_attr($this->format_date($event->start_date, $event->end_date).' - '.$event->title).'</title>
|
72 |
-
<pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->start_date, false).'</pubDate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
<description>'.esc_attr($this->format_date($event->start_date, $event->end_date).' '.
|
74 |
('' != $event->time ? $event->time : '').('' != $event->location ? ' - '.$event->location : '')).'</description>
|
75 |
'.('' != $event->details ?
|
5 |
|
6 |
require_once(EL_PATH.'includes/db.php');
|
7 |
require_once(EL_PATH.'includes/options.php');
|
8 |
+
require_once(EL_PATH.'includes/categories.php');
|
9 |
|
10 |
// This class handles rss feeds
|
11 |
class EL_Feed {
|
13 |
private static $instance;
|
14 |
private $db;
|
15 |
private $options;
|
16 |
+
private $categories;
|
17 |
|
18 |
public static function &get_instance() {
|
19 |
// Create class instance if required
|
27 |
private function __construct() {
|
28 |
$this->db = EL_Db::get_instance();
|
29 |
$this->options = EL_Options::get_instance();
|
30 |
+
$this->categories = EL_Categories::get_instance();
|
31 |
$this->init();
|
32 |
}
|
33 |
|
72 |
echo '
|
73 |
<item>
|
74 |
<title>'.esc_attr($this->format_date($event->start_date, $event->end_date).' - '.$event->title).'</title>
|
75 |
+
<pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->start_date, false).'</pubDate>';
|
76 |
+
// Feed categories
|
77 |
+
$cats = $this->categories->convert_db_string($event->categories, 'name_array');
|
78 |
+
foreach ($cats as $cat) {
|
79 |
+
echo '
|
80 |
+
<category>'.esc_attr($cat).'</category>';
|
81 |
+
}
|
82 |
+
echo '
|
83 |
<description>'.esc_attr($this->format_date($event->start_date, $event->end_date).' '.
|
84 |
('' != $event->time ? $event->time : '').('' != $event->location ? ' - '.$event->location : '')).'</description>
|
85 |
'.('' != $event->details ?
|
@@ -38,6 +38,7 @@ class EL_Options {
|
|
38 |
'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''),
|
39 |
'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
|
40 |
'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
|
|
|
41 |
|
42 |
'el_show_details_text' => array('section' => 'frontend', 'std_val' => __('Show details','event-list')),
|
43 |
'el_hide_details_text' => array('section' => 'frontend', 'std_val' => __('Hide details','event-list')),
|
38 |
'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''),
|
39 |
'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
|
40 |
'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
|
41 |
+
'el_mo_lang_dir_first' => array('section' => 'general', 'std_val' => ''), // default value must be set also in load_textdomain function in Event-List class
|
42 |
|
43 |
'el_show_details_text' => array('section' => 'frontend', 'std_val' => __('Show details','event-list')),
|
44 |
'el_hide_details_text' => array('section' => 'frontend', 'std_val' => __('Hide details','event-list')),
|
@@ -5,10 +5,7 @@ if(!defined('WPINC')) {
|
|
5 |
|
6 |
$options_helptexts = array(
|
7 |
// Section: "categories"
|
8 |
-
'el_categories' =>
|
9 |
-
'label' => __('Event Categories','event-list'),
|
10 |
-
'caption' => '',
|
11 |
-
'desc' => __('This option specifies all event category data.','event-list')),
|
12 |
|
13 |
'el_sync_cats' => array('type' => 'checkbox',
|
14 |
'label' => __('Sync Categories','event-list'),
|
@@ -56,6 +53,12 @@ $options_helptexts = array(
|
|
56 |
'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')),
|
57 |
'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))),
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
// Section: "frontend"
|
60 |
'el_show_details_text' => array('type' => 'text',
|
61 |
'label' => __('Text for "Show details"','event-list'),
|
@@ -75,72 +78,63 @@ $options_helptexts = array(
|
|
75 |
'el_edit_dateformat' => array('type' => 'text',
|
76 |
'label' => __('Date format in edit form','event-list'),
|
77 |
'desc' => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
|
78 |
-
__('The
|
79 |
sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')),
|
80 |
|
81 |
// Section: "feed"
|
82 |
'el_enable_feed' => array('type' => 'checkbox',
|
83 |
'label' => __('Enable RSS feed','event-list'),
|
84 |
'caption' => __('Enable support for an event RSS feed','event-list'),
|
85 |
-
'desc' => __('This option activates a RSS feed for the events
|
86 |
-
|
87 |
|
88 |
'el_feed_name' => array('type' => 'text',
|
89 |
'label' => __('Feed name','event-list'),
|
90 |
-
'desc' => __('This
|
91 |
-
|
92 |
|
93 |
-
'el_feed_description' => array('
|
94 |
-
'type' => 'text',
|
95 |
'label' => __('Feed Description','event-list'),
|
96 |
-
'desc' => __('This options
|
97 |
-
|
98 |
|
99 |
-
'el_feed_upcoming_only' => array('
|
100 |
-
'type' => 'checkbox',
|
101 |
'label' => __('Listed events','event-list'),
|
102 |
'caption' => __('Only show upcoming events in feed','event-list'),
|
103 |
-
'desc' => __('If this option is enabled only the upcoming events are listed in the feed
|
104 |
-
|
105 |
|
106 |
-
'el_head_feed_link' => array('
|
107 |
-
'type' => 'checkbox',
|
108 |
'label' => __('Add RSS feed link in head','event-list'),
|
109 |
'caption' => __('Add RSS feed link in the html head','event-list'),
|
110 |
-
'desc' => __('This option adds a RSS feed in the html head for the events
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
'el_feed_link_pos' => array('
|
117 |
-
'type' => 'radio',
|
118 |
'label' => __('Position of the RSS feed link','event-list'),
|
119 |
-
'caption' => array('top' => 'at the top (above the navigation bar)', 'below_nav' => 'between navigation bar and events', 'bottom' => 'at the bottom'),
|
120 |
-
'desc' => __('This option specifies the position of the RSS feed link in the event list
|
121 |
-
|
122 |
-
You have to set the shortcode attribute "add_feed_link" to "true" if you want to show the feed link.')),
|
123 |
|
124 |
-
'el_feed_link_align' => array('
|
125 |
-
'type' => 'radio',
|
126 |
'label' => __('Align of the RSS feed link','event-list'),
|
127 |
-
'caption' => array('left' => 'left', 'center' => 'center', 'right' => 'right'),
|
128 |
-
'desc' => __('This option specifies the align of the RSS feed link in the event list
|
129 |
-
|
130 |
-
You have to set the shortcode attribute "add_feed_link" to "true" if you want to show the feed link.')),
|
131 |
|
132 |
-
'el_feed_link_text' => array('
|
133 |
-
'type' => 'text',
|
134 |
'label' => __('Feed link text','event-list'),
|
135 |
-
'desc' => __('This option specifies the caption of the RSS feed link in the event list
|
136 |
-
|
137 |
-
|
138 |
|
139 |
-
'el_feed_link_img' => array('
|
140 |
-
'type' => 'checkbox',
|
141 |
'label' => __('Feed link image','event-list'),
|
142 |
'caption' => __('Show rss image in feed link','event-list'),
|
143 |
-
'desc' => __('This option specifies if the an image should be dispayed in the feed link in front of the text
|
144 |
-
|
145 |
);
|
146 |
?>
|
5 |
|
6 |
$options_helptexts = array(
|
7 |
// Section: "categories"
|
8 |
+
// 'el_categories' => This option specifies all event category data (category has seperate site --> no additional helptexts required)
|
|
|
|
|
|
|
9 |
|
10 |
'el_sync_cats' => array('type' => 'checkbox',
|
11 |
'label' => __('Sync Categories','event-list'),
|
53 |
'caption' => sprintf(__('Allow HTML tags in the event field "%1$s"','event-list'), __('Location','event-list')),
|
54 |
'desc' => sprintf(__('This option specifies if HTML tags are allowed in the event field "%1$s".','event-list'), __('Location','event-list'))),
|
55 |
|
56 |
+
'el_mo_lang_dir_first' => array('type' => 'checkbox',
|
57 |
+
'label' => __('Preferred language file','event-list'),
|
58 |
+
'caption' => __('Load translations from general language directory first','event-list'),
|
59 |
+
'desc' => sprintf(__('The default is to load the %1$s translation file from the plugin language directory first (%2$s).','event-list'), '<code>*.mo</code>', '<code>wp-content/plugins/event-list/languages/</code>').'<br />
|
60 |
+
'.sprintf(__('If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option.','event-list'), '<code>wp-content/languages/plugins/</code>')),
|
61 |
+
|
62 |
// Section: "frontend"
|
63 |
'el_show_details_text' => array('type' => 'text',
|
64 |
'label' => __('Text for "Show details"','event-list'),
|
78 |
'el_edit_dateformat' => array('type' => 'text',
|
79 |
'label' => __('Date format in edit form','event-list'),
|
80 |
'desc' => __('This option sets the displayed date format for the event date fields in the event new / edit form.','event-list').'<br />'.
|
81 |
+
__('The default is an empty string to use the Wordpress standard setting.','event-list').'<br />'.
|
82 |
sprintf(__('All available options to specify the date format can be found %1$shere%2$s.','event-list'), '<a href="http://php.net/manual/en/function.date.php" target="_blank" rel="noopener">', '</a>')),
|
83 |
|
84 |
// Section: "feed"
|
85 |
'el_enable_feed' => array('type' => 'checkbox',
|
86 |
'label' => __('Enable RSS feed','event-list'),
|
87 |
'caption' => __('Enable support for an event RSS feed','event-list'),
|
88 |
+
'desc' => __('This option activates a RSS feed for the events.','event-list').'<br />
|
89 |
+
'.__('You have to enable this option if you want to use one of the RSS feed features.','event-list')),
|
90 |
|
91 |
'el_feed_name' => array('type' => 'text',
|
92 |
'label' => __('Feed name','event-list'),
|
93 |
+
'desc' => sprintf(__('This option sets the feed name. The default value is %1$s.','event-list'), '"event-list"').'<br />
|
94 |
+
'.sprintf(__('This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled).','event-list'), '<code>domain.com/?feed=event-list</code>', '<code>domain.com/feed/eventlist</code>')),
|
95 |
|
96 |
+
'el_feed_description' => array('type' => 'text',
|
|
|
97 |
'label' => __('Feed Description','event-list'),
|
98 |
+
'desc' => sprintf(__('This options set the feed description. The default value is %1$s.','event-list'), '"Eventlist Feed"').'<br />
|
99 |
+
'.__('This description will be used in the title for the feed link in the html head and for the description in the feed itself.','event-list')),
|
100 |
|
101 |
+
'el_feed_upcoming_only' => array('type' => 'checkbox',
|
|
|
102 |
'label' => __('Listed events','event-list'),
|
103 |
'caption' => __('Only show upcoming events in feed','event-list'),
|
104 |
+
'desc' => __('If this option is enabled only the upcoming events are listed in the feed.','event-list').'<br />
|
105 |
+
'.__('If disabled all events (upcoming and past) will be listed.','event-list')),
|
106 |
|
107 |
+
'el_head_feed_link' => array('type' => 'checkbox',
|
|
|
108 |
'label' => __('Add RSS feed link in head','event-list'),
|
109 |
'caption' => __('Add RSS feed link in the html head','event-list'),
|
110 |
+
'desc' => __('This option adds a RSS feed in the html head for the events.','event-list').'<br />
|
111 |
+
'.__('There are 2 alternatives to include the RSS feed','event-list').':<br />
|
112 |
+
'.__('The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers.','event-list').'<br />
|
113 |
+
'.sprintf(__('The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s.','event-list'), '<code>add_feed_link</code>', '"true"').'<br />
|
114 |
+
'.sprintf(__('This option is only valid if the setting %1$s is enabled.','event-list'), '"'.__('Enable RSS feed','event-list').'"')),
|
115 |
+
|
116 |
+
'el_feed_link_pos' => array('type' => 'radio',
|
|
|
117 |
'label' => __('Position of the RSS feed link','event-list'),
|
118 |
+
'caption' => array('top' => __('at the top (above the navigation bar)','event-list'), 'below_nav' => __('between navigation bar and events','event-list'), 'bottom' => __('at the bottom','event-list')),
|
119 |
+
'desc' => __('This option specifies the position of the RSS feed link in the event list.','event-list').'<br />
|
120 |
+
'.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
|
|
|
121 |
|
122 |
+
'el_feed_link_align' => array('type' => 'radio',
|
|
|
123 |
'label' => __('Align of the RSS feed link','event-list'),
|
124 |
+
'caption' => array('left' => __('left','event-list'), 'center' => __('center','event-list'), 'right' => __('right','event-list')),
|
125 |
+
'desc' => __('This option specifies the align of the RSS feed link in the event list.','event-list').'<br />
|
126 |
+
'.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
|
|
|
127 |
|
128 |
+
'el_feed_link_text' => array('type' => 'text',
|
|
|
129 |
'label' => __('Feed link text','event-list'),
|
130 |
+
'desc' => __('This option specifies the caption of the RSS feed link in the event list.','event-list').'<br />
|
131 |
+
'.__('Insert an empty text to hide any text if you only want to show the rss image.','event-list').'<br />
|
132 |
+
'.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
|
133 |
|
134 |
+
'el_feed_link_img' => array('type' => 'checkbox',
|
|
|
135 |
'label' => __('Feed link image','event-list'),
|
136 |
'caption' => __('Show rss image in feed link','event-list'),
|
137 |
+
'desc' => __('This option specifies if the an image should be dispayed in the feed link in front of the text.','event-list').'<br />
|
138 |
+
'.sprintf(__('You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link.','event-list'), '<code>add_feed_link</code>', '"true"')),
|
139 |
);
|
140 |
?>
|
@@ -4,42 +4,40 @@ if(!defined('WPINC')) {
|
|
4 |
}
|
5 |
|
6 |
$sc_eventlist_helptexts = array(
|
7 |
-
'initial_event_id' => array('val' => 'all<br />event-id',
|
8 |
-
'desc' => __('
|
9 |
-
Specify an event-id e.g. "13" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters.','event-list')),
|
10 |
|
11 |
-
'initial_date' => array('val' => 'all<br />upcoming<br />past<br />year',
|
12 |
-
'desc' => __('This attribute
|
13 |
-
|
14 |
|
15 |
-
'initial_cat' => array('val' => 'all<br />category slug',
|
16 |
-
'desc' => __('This attribute
|
17 |
-
|
18 |
|
19 |
'initial_order' => array('val' => 'date_asc<br />date_desc',
|
20 |
-
'desc' => __('This attribute
|
21 |
-
|
22 |
|
23 |
-
'date_filter' => array('val' => 'all<br />upcoming<br />past<br />year',
|
24 |
-
'desc' => __('This attribute
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
|
29 |
-
'cat_filter' => array('val' => 'all<br />category slugs',
|
30 |
-
'desc' => __('This attribute
|
31 |
-
|
32 |
-
|
33 |
|
34 |
-
'num_events' => array('val' => 'number',
|
35 |
-
'desc' => __('This attribute
|
36 |
-
|
37 |
-
Please not that in the actual version there is no pagination of the events available.','event-list')),
|
38 |
|
39 |
'show_filterbar' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only',
|
40 |
-
'desc' => __('This attribute
|
41 |
-
|
42 |
-
|
43 |
|
44 |
'filterbar_items' => array('val' => 'years_hlist<br />years_dropdown<br />months_hlist<br />months_dropdown<br />daterange_hlist<br />daterange_dropdown<br />cats_hlist<br />cats_dropdown<br />reset_link',
|
45 |
'desc' => 'This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see show_filterbar attribute).<br /><br />
|
4 |
}
|
5 |
|
6 |
$sc_eventlist_helptexts = array(
|
7 |
+
'initial_event_id' => array('val' => 'all<br />'.strtoupper(__('event-id','event-list')),
|
8 |
+
'desc' => sprintf(__('By default the event-list is displayed initially. But if an event-id (e.g. %1$s) is provided for this attribute, directly the event-details view of this event is shown.','event-list'), '"13"')),
|
|
|
9 |
|
10 |
+
'initial_date' => array('val' => 'all<br />upcoming<br />past<br />'.strtoupper(__('year','event-list')),
|
11 |
+
'desc' => __('This attribute defines which events are initially shown. The default is to show the upcoming events only.','event-list').'<br />'.
|
12 |
+
sprintf(__('Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters.','event-list'), '"2017"')),
|
13 |
|
14 |
+
'initial_cat' => array('val' => 'all<br />'.strtoupper(__('category slug','event-list')),
|
15 |
+
'desc' => __('This attribute defines the category of which events are initially shown. The default is to show events of all categories.','event-list').'<br />'.
|
16 |
+
__('Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.','event-list')),
|
17 |
|
18 |
'initial_order' => array('val' => 'date_asc<br />date_desc',
|
19 |
+
'desc' => __('This attribute defines the initial order of the events.','event-list').'<br />'.
|
20 |
+
sprintf(__('With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old).','event-list'), '"date_asc"', '"date_desc"')),
|
21 |
|
22 |
+
'date_filter' => array('val' => 'all<br />upcoming<br />past<br />'.strtoupper(__('year','event-list')),
|
23 |
+
'desc' => sprintf(__('This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events.','event-list'), '"all"').'<br />'.
|
24 |
+
sprintf(__('Filtered events according to %1$s value are not available in the event list.','event-list'), 'date_filter').'<br />'.
|
25 |
+
sprintf(__('You can find all available values with a description and examples in the sections %1$s and %2$s below.','event-list'), '"'.__('Available Date Formats','event-list').'"', '"'.__('Available Date Range Formats','event-list').'"').'<br />'.
|
26 |
+
sprintf(__('See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
|
27 |
|
28 |
+
'cat_filter' => array('val' => 'all<br />'.strtoupper(__('category slugs','event-list')),
|
29 |
+
'desc' => sprintf(__('This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events.','event-list'), '"all"').'<br />'.
|
30 |
+
sprintf(__('Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added.','event-list'), 'cat_filter').'<br />'.
|
31 |
+
sprintf(__('The filter is specified via the given category slugs. See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
|
32 |
|
33 |
+
'num_events' => array('val' => strtoupper(__('number','event-list')),
|
34 |
+
'desc' => sprintf(__('This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed.','event-list'), '"0"').'<br />'.
|
35 |
+
__('Please not that in the actual version there is no pagination of the events available, so the event list can be very long.','event-list')),
|
|
|
36 |
|
37 |
'show_filterbar' => array('val' => 'false<br />true<br />event_list_only<br />single_event_only',
|
38 |
+
'desc' => __('This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events.','event-list').'<br />'.
|
39 |
+
sprintf(__('Choose %1$s to always hide and %2$s to always show the filterbar.','event-list'), '"false"', '"true"').'<br />'.
|
40 |
+
sprintf(__('With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view.','event-list'), '"event_list_only"', '"single_event_only"')),
|
41 |
|
42 |
'filterbar_items' => array('val' => 'years_hlist<br />years_dropdown<br />months_hlist<br />months_dropdown<br />daterange_hlist<br />daterange_dropdown<br />cats_hlist<br />cats_dropdown<br />reset_link',
|
43 |
'desc' => 'This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see show_filterbar attribute).<br /><br />
|
Binary file
|
@@ -1,17 +1,19 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
|
|
6 |
# Lasse Schulz <lasse.schulz@netthelp.de>, 2016
|
|
|
7 |
# Marco Schwarzenbach <sp1n@gmx.ch>, 2016
|
8 |
-
# mibuthu, 2015
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
-
"Report-Msgid-Bugs-To:
|
13 |
-
"POT-Creation-Date: 2017-
|
14 |
-
"PO-Revision-Date: 2017-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -20,1215 +22,1389 @@ msgstr ""
|
|
20 |
"Language: de_DE\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
|
23 |
-
#:
|
24 |
msgid "Event List"
|
25 |
msgstr "Event List"
|
26 |
|
27 |
-
#: /
|
28 |
-
#: /
|
29 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
30 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
31 |
msgid "Events"
|
32 |
msgstr "Termine"
|
33 |
|
34 |
-
#:
|
35 |
msgid "All Events"
|
36 |
msgstr "Alle Termine"
|
37 |
|
38 |
-
#: /
|
39 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
40 |
msgid "Add New Event"
|
41 |
msgstr "Neuen Termin erstellen"
|
42 |
|
43 |
-
#: /
|
44 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
45 |
msgid "Add New"
|
46 |
msgstr "Erstellen"
|
47 |
|
48 |
-
#: /
|
49 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
50 |
msgid "Event List Categories"
|
51 |
msgstr "Event List Kategorien"
|
52 |
|
53 |
-
#: /
|
54 |
-
#:
|
55 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
56 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
57 |
msgid "Categories"
|
58 |
msgstr "Kategorien"
|
59 |
|
60 |
-
#: /
|
61 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
62 |
msgid "Event List Settings"
|
63 |
msgstr "Event List Einstellungen"
|
64 |
|
65 |
-
#:
|
66 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
67 |
msgid "Settings"
|
68 |
msgstr "Einstellungen"
|
69 |
|
70 |
-
#: /
|
71 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
72 |
msgid "About Event List"
|
73 |
msgstr "Informationen zu Event List"
|
74 |
|
75 |
-
#:
|
76 |
msgid "About"
|
77 |
msgstr "Informationen"
|
78 |
|
79 |
-
#: /
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
#: /
|
84 |
-
#:
|
85 |
-
msgid "
|
86 |
-
msgstr "
|
87 |
|
88 |
-
#:
|
89 |
msgid "Help and Instructions"
|
90 |
msgstr "Hilfe und Anleitungen"
|
91 |
|
92 |
-
#:
|
93 |
#, php-format
|
94 |
-
msgid "You can manage
|
95 |
msgstr "Die Termine können %1$shier%2$s verwaltet werden"
|
96 |
|
97 |
-
#:
|
98 |
msgid "To show the events on your site you have 2 possibilities"
|
99 |
msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
|
100 |
|
101 |
-
#:
|
102 |
#, php-format
|
103 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
104 |
msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
|
105 |
|
106 |
-
#:
|
107 |
#, php-format
|
108 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
109 |
msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
|
110 |
|
111 |
-
#:
|
112 |
msgid ""
|
113 |
"The displayed events and their style can be modified with the available "
|
114 |
"widget settings and the available attributes for the shortcode."
|
115 |
msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
|
116 |
|
117 |
-
#:
|
|
|
118 |
msgid ""
|
119 |
-
"A list of all available shortcode attributes with their
|
120 |
-
"available
|
121 |
-
msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist
|
122 |
|
123 |
-
#:
|
124 |
msgid "The available widget options are described in their tooltip text."
|
125 |
msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
|
126 |
|
127 |
-
#:
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
-
"
|
131 |
-
"
|
132 |
-
msgstr "
|
133 |
|
134 |
-
#:
|
135 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
136 |
msgid "Add links to the single events"
|
137 |
msgstr "Füge Links zu den einzelnen Terminen ein"
|
138 |
|
139 |
-
#:
|
140 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
141 |
msgid "Add a link to the Event List page"
|
142 |
msgstr "Füge einen Link zur Event List Seite hinzu"
|
143 |
|
144 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
#, php-format
|
146 |
msgid ""
|
147 |
-
"
|
148 |
-
"
|
149 |
-
"
|
150 |
-
msgstr "Zusätzlich muss die korrekte Shortcode ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt, welcher Shortcode auf der verlinkten Seite oder dem verlinkten Beitrag verwendet werden soll, wenn mehrere Shortcodes vorhanden sind. Der Standardwert von \"1\" ist somit normalerweise o.k., aber falls erforderlich kann die korrekte ID über die URL eines Termin-Links auf der verlinkten Seite herausgefunden werden. Die ID wird am Ende des URL-Parameternamens angehängt (z.B. %1$s)."
|
151 |
|
152 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
#, php-format
|
154 |
msgid ""
|
155 |
-
"
|
156 |
-
"
|
157 |
-
msgstr "
|
158 |
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
-
#:
|
164 |
msgid ""
|
165 |
"You have the possibility to modify the output if you add some of the "
|
166 |
"following attributes to the shortcode."
|
167 |
msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
|
168 |
|
169 |
-
#:
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
173 |
"including the attributes %1$s and %2$s would looks like this:"
|
174 |
msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
|
175 |
|
176 |
-
#:
|
177 |
msgid ""
|
178 |
"Below you can find a list of all supported attributes with their "
|
179 |
"descriptions and available options:"
|
180 |
msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
|
181 |
|
182 |
-
#:
|
183 |
msgid "Attribute name"
|
184 |
msgstr "Name"
|
185 |
|
186 |
-
#:
|
187 |
msgid "Value options"
|
188 |
msgstr "zulässige Werte"
|
189 |
|
190 |
-
#:
|
191 |
msgid "Default value"
|
192 |
msgstr "Standard-Wert"
|
193 |
|
194 |
-
#: /
|
195 |
-
#:
|
196 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
197 |
msgid "Description"
|
198 |
msgstr "Beschreibung"
|
199 |
|
200 |
-
#:
|
|
|
201 |
msgid "Filter Syntax"
|
202 |
msgstr "Filter Syntax"
|
203 |
|
204 |
-
#:
|
205 |
msgid ""
|
206 |
"For date and cat filters you can specify complex filters with the following "
|
207 |
"syntax:"
|
208 |
msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
|
209 |
|
210 |
-
#:
|
211 |
#, php-format
|
212 |
msgid ""
|
213 |
"You can use %1$s and %2$s connections to define complex filters. "
|
214 |
"Additionally you can set brackets %3$s for nested queries."
|
215 |
msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
|
216 |
|
217 |
-
#:
|
218 |
msgid "AND"
|
219 |
msgstr "UND"
|
220 |
|
221 |
-
#:
|
222 |
msgid "OR"
|
223 |
msgstr "ODER"
|
224 |
|
225 |
-
#:
|
226 |
msgid "or"
|
227 |
msgstr "oder"
|
228 |
|
229 |
-
#:
|
230 |
msgid "and"
|
231 |
msgstr "und"
|
232 |
|
233 |
-
#:
|
234 |
msgid "Examples for cat filters:"
|
235 |
msgstr "Beispiele für Kategorie-Filter:"
|
236 |
|
237 |
-
#:
|
238 |
#, php-format
|
239 |
msgid "Show all events with category %1$s."
|
240 |
msgstr "Zeige alle Termine mit der Kategorie %1$s."
|
241 |
|
242 |
-
#:
|
243 |
#, php-format
|
244 |
msgid "Show all events with category %1$s or %2$s."
|
245 |
msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
|
246 |
|
247 |
-
#:
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
"Show all events with category %1$s and all events where category %2$s as "
|
251 |
"well as %3$s is selected."
|
252 |
msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
|
253 |
|
254 |
-
#:
|
255 |
msgid "Available Date Formats"
|
256 |
msgstr "Verfügbare Datumsformate"
|
257 |
|
258 |
-
#:
|
259 |
msgid "For date filters you can use the following date formats:"
|
260 |
msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
|
261 |
|
262 |
-
#:
|
263 |
msgid "Available Date Range Formats"
|
264 |
msgstr "Verfügbare Datumsbereichs-Formate"
|
265 |
|
266 |
-
#:
|
267 |
msgid "For date filters you can use the following daterange formats:"
|
268 |
msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
|
269 |
|
270 |
-
#:
|
271 |
msgid "Value"
|
272 |
msgstr "Wert"
|
273 |
|
274 |
-
#:
|
275 |
msgid "Example"
|
276 |
msgstr "Beispiel"
|
277 |
|
278 |
-
#:
|
279 |
msgid "Edit Category"
|
280 |
msgstr "Kategorie bearbeiten"
|
281 |
|
282 |
-
#:
|
283 |
msgid "Update Category"
|
284 |
msgstr "Kategorie aktualisieren"
|
285 |
|
286 |
-
#:
|
287 |
msgid "Add New Category"
|
288 |
msgstr "Neue Kategorie erstellen"
|
289 |
|
290 |
-
#:
|
291 |
#, php-format
|
292 |
msgid "Category \"%s\" deleted."
|
293 |
msgstr "Kategorie \"%s\" gelöscht."
|
294 |
|
295 |
-
#:
|
296 |
#, php-format
|
297 |
msgid "This Category was also removed from %d events."
|
298 |
msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
|
299 |
|
300 |
-
#:
|
301 |
#, php-format
|
302 |
msgid "Error while deleting category \"%s\""
|
303 |
msgstr "Fehler beim Löschen der Kategorie \"%s\""
|
304 |
|
305 |
-
#:
|
306 |
msgid "Sync with post categories enabled."
|
307 |
msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
|
308 |
|
309 |
-
#:
|
310 |
msgid "Sync with post categories disabled."
|
311 |
msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
|
312 |
|
313 |
-
#:
|
314 |
msgid "Manual sync with post categories sucessfully finished."
|
315 |
msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
|
316 |
|
317 |
-
#:
|
318 |
#, php-format
|
319 |
msgid "New Category \"%s\" was added"
|
320 |
msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
|
321 |
|
322 |
-
#:
|
323 |
#, php-format
|
324 |
msgid "Error: New Category \"%s\" could not be added"
|
325 |
msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
|
326 |
|
327 |
-
#:
|
328 |
#, php-format
|
329 |
msgid "Category \"%s\" was modified"
|
330 |
msgstr "Kategorie \"%s\" wurde geändert"
|
331 |
|
332 |
-
#:
|
333 |
#, php-format
|
334 |
msgid "Error: Category \"%s\" could not be modified"
|
335 |
msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
|
336 |
|
337 |
-
#:
|
|
|
|
|
|
|
|
|
338 |
msgid ""
|
339 |
-
"
|
340 |
-
"
|
341 |
-
"
|
342 |
-
msgstr ""
|
343 |
|
344 |
-
#:
|
345 |
-
|
346 |
-
|
347 |
-
msgstr ""
|
348 |
|
349 |
-
#:
|
350 |
msgid "The name is how it appears on your site."
|
351 |
msgstr "Dieser Name wird dann auf der Webseite angezeigt."
|
352 |
|
353 |
-
#:
|
354 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
|
355 |
-
msgid "Slug"
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
|
359 |
msgid ""
|
360 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
361 |
"lowercase and contains only letters, numbers, and hyphens."
|
362 |
msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
|
363 |
|
364 |
-
#:
|
365 |
-
msgid "Parent"
|
366 |
-
msgstr "Parent"
|
367 |
-
|
368 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
369 |
-
msgid "None"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
373 |
msgid ""
|
374 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
375 |
"that have children categories for Bebop and Big Band. Totally optional."
|
376 |
msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
|
377 |
|
378 |
-
#:
|
379 |
msgid "Apply"
|
380 |
msgstr "Anwenden"
|
381 |
|
382 |
-
#:
|
383 |
msgid "Do a manual sync with post categories"
|
384 |
msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
|
385 |
|
386 |
-
#:
|
387 |
msgid "Import Events"
|
388 |
msgstr "Importiere Termine"
|
389 |
|
390 |
-
#: /
|
391 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
392 |
msgid "Step"
|
393 |
-
msgstr ""
|
394 |
|
395 |
-
#:
|
396 |
msgid "Set import file and options"
|
397 |
-
msgstr ""
|
398 |
|
399 |
-
#:
|
400 |
-
|
401 |
-
|
|
|
402 |
|
403 |
-
#:
|
404 |
msgid "Example file"
|
405 |
msgstr "Beispieldatei"
|
406 |
|
407 |
-
#:
|
408 |
#, php-format
|
409 |
msgid ""
|
410 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
411 |
-
msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (CSV
|
412 |
|
413 |
-
#:
|
414 |
msgid "Note"
|
415 |
msgstr "Achtung"
|
416 |
|
417 |
-
#:
|
418 |
msgid ""
|
419 |
"Do not change the column header and separator line (first two lines), "
|
420 |
"otherwise the import will fail!"
|
421 |
msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
422 |
|
423 |
-
#: /
|
424 |
-
#:
|
425 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
426 |
msgid "Sorry, there has been an error."
|
427 |
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
428 |
|
429 |
-
#:
|
430 |
msgid "The file does not exist, please try again."
|
431 |
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
432 |
|
433 |
-
#:
|
434 |
msgid "The file is not a CSV file."
|
435 |
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
436 |
|
437 |
-
#:
|
438 |
-
msgid "
|
439 |
-
msgstr ""
|
440 |
|
441 |
-
#:
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
msgstr "
|
446 |
|
447 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "Import with errors!"
|
449 |
msgstr "Import mit Fehler!"
|
450 |
|
451 |
-
#:
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"An error occurred during import! Please send your import file to %1$sthe "
|
455 |
"administrator%2$s for analysis."
|
456 |
msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
|
457 |
|
458 |
-
#:
|
459 |
msgid "Import successful!"
|
460 |
msgstr "Importieren erfolgreich abgeschlossen!"
|
461 |
|
462 |
-
#:
|
463 |
msgid "Go back to All Events"
|
464 |
msgstr "Gehe zurück zu Alle Termine"
|
465 |
|
466 |
-
#: /
|
467 |
-
#:
|
468 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
469 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
470 |
msgid "Title"
|
471 |
msgstr "Titel"
|
472 |
|
473 |
-
#:
|
474 |
msgid "Start Date"
|
475 |
msgstr "Start-Datum"
|
476 |
|
477 |
-
#:
|
478 |
msgid "End Date"
|
479 |
msgstr "End-Datum"
|
480 |
|
481 |
-
#: /
|
482 |
-
#: /
|
483 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
484 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
485 |
msgid "Time"
|
486 |
msgstr "Uhrzeit"
|
487 |
|
488 |
-
#: /
|
489 |
-
#:
|
490 |
-
#:
|
491 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
492 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
493 |
msgid "Location"
|
494 |
msgstr "Ort"
|
495 |
|
496 |
-
#: /
|
497 |
-
#:
|
498 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
499 |
msgid "Details"
|
500 |
msgstr "Beschreibung"
|
501 |
|
502 |
-
#:
|
503 |
-
msgid "
|
504 |
-
msgstr "
|
505 |
|
506 |
-
#:
|
507 |
-
|
508 |
-
msgid "
|
509 |
-
|
|
|
|
|
510 |
|
511 |
-
#: /
|
512 |
-
|
513 |
-
|
514 |
-
msgstr "Keine Kategorien verfügbar."
|
515 |
|
516 |
-
#:
|
517 |
msgid "Edit Event"
|
518 |
msgstr "Termin bearbeiten"
|
519 |
|
520 |
-
#:
|
521 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
522 |
msgid "Duplicate"
|
523 |
msgstr "Duplizieren"
|
524 |
|
525 |
-
#:
|
526 |
#, php-format
|
527 |
msgid "Duplicate of event id:%d"
|
528 |
msgstr "Duplikat der Termin-ID: %d"
|
529 |
|
530 |
-
#: /
|
531 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
532 |
msgid "required"
|
533 |
msgstr "erforderlich"
|
534 |
|
535 |
-
#:
|
536 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
537 |
msgid "Date"
|
538 |
msgstr "Datum"
|
539 |
|
540 |
-
#:
|
541 |
msgid "Multi-Day Event"
|
542 |
msgstr "Mehrtägiger Termin"
|
543 |
|
544 |
-
#: /
|
545 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
546 |
msgid "Publish"
|
547 |
msgstr "Veröffentlichen"
|
548 |
|
549 |
-
#:
|
550 |
msgid "Update"
|
551 |
msgstr "Aktualisieren"
|
552 |
|
553 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
msgid "Goto Category Settings"
|
555 |
msgstr "Gehe zu Kategorie-Einstellungen"
|
556 |
|
557 |
-
#:
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
|
559 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
560 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
561 |
-
msgid "Y/m/d"
|
562 |
-
msgstr "J/M/T"
|
563 |
-
|
564 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
|
565 |
msgid "Settings saved."
|
566 |
msgstr "Einstellungen gespeichert."
|
567 |
|
568 |
-
#:
|
569 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
570 |
-
msgid "General"
|
571 |
-
msgstr "Allgemein"
|
572 |
-
|
573 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
574 |
msgid "Frontend Settings"
|
575 |
msgstr "Frontend Einstellungen"
|
576 |
|
577 |
-
#:
|
578 |
msgid "Admin Page Settings"
|
579 |
msgstr "Admin-Seiten Einstellungen"
|
580 |
|
581 |
-
#:
|
582 |
msgid "Feed Settings"
|
583 |
msgstr "Feed Einstellungen"
|
584 |
|
585 |
-
#: /
|
586 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
587 |
msgid "event"
|
588 |
msgstr "Termin"
|
589 |
|
590 |
-
#: /
|
591 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
592 |
msgid "events"
|
593 |
msgstr "Termine"
|
594 |
|
595 |
-
#: /
|
596 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
597 |
msgid "Edit"
|
598 |
msgstr "Bearbeiten"
|
599 |
|
600 |
-
#: /
|
601 |
-
#: /
|
602 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
603 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
604 |
msgid "Delete"
|
605 |
msgstr "Löschen"
|
606 |
|
607 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
608 |
msgid "Author"
|
609 |
msgstr "Autor"
|
610 |
|
611 |
-
#:
|
612 |
msgid "Published"
|
613 |
msgstr "Veröffentlicht"
|
614 |
|
615 |
-
#:
|
616 |
msgid "Filter"
|
617 |
msgstr "Auswahl einschränken"
|
618 |
|
619 |
-
#:
|
620 |
#, php-format
|
621 |
msgid "%s ago"
|
622 |
msgstr "vor %s"
|
623 |
|
624 |
-
#:
|
625 |
-
msgid "Y/m/d g:i:s A"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
629 |
msgid "Year"
|
630 |
msgstr "Jahr"
|
631 |
|
632 |
-
#:
|
633 |
msgid "A year can be specified in 4 digit format."
|
634 |
msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
|
635 |
|
636 |
-
#: /
|
637 |
-
#:
|
638 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
639 |
#, php-format
|
640 |
msgid ""
|
641 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
642 |
"last day."
|
643 |
msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
|
644 |
|
645 |
-
#:
|
646 |
msgid "the resulting year"
|
647 |
msgstr "des entsprechenden Jahres"
|
648 |
|
649 |
-
#:
|
650 |
msgid "Month"
|
651 |
msgstr "Monat"
|
652 |
|
653 |
-
#:
|
654 |
msgid ""
|
655 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
656 |
"month, seperated by a hyphen (-)."
|
657 |
msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
|
658 |
|
659 |
-
#:
|
660 |
msgid "the resulting month"
|
661 |
msgstr "des entsprechenden Monats"
|
662 |
|
663 |
-
#:
|
664 |
msgid "Day"
|
665 |
msgstr "Tag"
|
666 |
|
667 |
-
#:
|
668 |
msgid ""
|
669 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
670 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
671 |
msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
|
672 |
|
673 |
-
#:
|
674 |
msgid "Relative Year"
|
675 |
msgstr "Relatives Jahr"
|
676 |
|
677 |
-
#: /
|
678 |
-
#: /
|
679 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
680 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
681 |
#, php-format
|
682 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
683 |
msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
|
684 |
|
685 |
-
#:
|
686 |
msgid "A relative year"
|
687 |
msgstr "Ein relatives Jahr"
|
688 |
|
689 |
-
#: /
|
690 |
-
#: /
|
691 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
692 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
693 |
#, php-format
|
694 |
msgid ""
|
695 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
696 |
"%3$s or %4$s attached (see also the example below)."
|
697 |
msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
|
698 |
|
699 |
-
#:
|
700 |
msgid "number of years"
|
701 |
msgstr "Jahresanzahl"
|
702 |
|
703 |
-
#: /
|
704 |
-
#: /
|
705 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
706 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
707 |
#, php-format
|
708 |
msgid "Additionally the following values are available: %1$s"
|
709 |
msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
|
710 |
|
711 |
-
#:
|
712 |
msgid "Relative Month"
|
713 |
msgstr "Relativer Monat"
|
714 |
|
715 |
-
#:
|
716 |
msgid "A relative month"
|
717 |
msgstr "Ein relativer Monat"
|
718 |
|
719 |
-
#:
|
720 |
msgid "number of months"
|
721 |
msgstr "Monatsanzahl"
|
722 |
|
723 |
-
#:
|
724 |
msgid "Relative Week"
|
725 |
msgstr "Relative Woche"
|
726 |
|
727 |
-
#:
|
728 |
msgid "A relative week"
|
729 |
msgstr "Eine relative Woche"
|
730 |
|
731 |
-
#:
|
732 |
msgid "number of weeks"
|
733 |
msgstr "Wochenanzahl"
|
734 |
|
735 |
-
#:
|
736 |
msgid "the resulting week"
|
737 |
msgstr "der entsprechende Woche"
|
738 |
|
739 |
-
#:
|
740 |
#, php-format
|
741 |
msgid ""
|
742 |
"The first day of the week is depending on the option %1$s which can be found"
|
743 |
" and changed in %2$s."
|
744 |
msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
|
745 |
|
746 |
-
#:
|
747 |
-
msgid "Week Starts On"
|
748 |
-
msgstr "Woche beginnt am"
|
749 |
-
|
750 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
751 |
msgid "Relative Day"
|
752 |
msgstr "Relativer Tag"
|
753 |
|
754 |
-
#:
|
755 |
msgid "A relative day"
|
756 |
msgstr "Ein relativer Tag"
|
757 |
|
758 |
-
#:
|
759 |
msgid "number of days"
|
760 |
msgstr "Tagesanzahl"
|
761 |
|
762 |
-
#:
|
763 |
msgid "Date range"
|
764 |
msgstr "Datumsbereich"
|
765 |
|
766 |
-
#:
|
767 |
msgid ""
|
768 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
769 |
"\t For the start and end date any available date format can be used."
|
770 |
msgstr "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
|
771 |
|
772 |
-
#:
|
773 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
774 |
-
msgid "All"
|
775 |
-
msgstr "Alle"
|
776 |
-
|
777 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
778 |
msgid "This value defines a range without any limits."
|
779 |
msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
|
780 |
|
781 |
-
#: /
|
782 |
-
#:
|
783 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
784 |
#, php-format
|
785 |
msgid "The corresponding date_range format is: %1$s"
|
786 |
msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
|
787 |
|
788 |
-
#:
|
789 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
790 |
msgid "Upcoming"
|
791 |
msgstr "Anstehend"
|
792 |
|
793 |
-
#:
|
794 |
msgid "This value defines a range from the actual day to the future."
|
795 |
msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
|
796 |
|
797 |
-
#:
|
798 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
799 |
msgid "Past"
|
800 |
msgstr "Beendet"
|
801 |
|
802 |
-
#:
|
803 |
msgid "This value defines a range from the past to the previous day."
|
804 |
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
805 |
|
806 |
-
#:
|
|
|
|
|
|
|
|
|
807 |
msgid "Show all dates"
|
808 |
msgstr "Zeige alle Datumsbereiche"
|
809 |
|
810 |
-
#:
|
811 |
msgid "Show all categories"
|
812 |
msgstr "Zeige alle Kategorien"
|
813 |
|
814 |
-
#:
|
815 |
-
msgid "Event Categories"
|
816 |
-
msgstr "Termin Kategorien"
|
817 |
-
|
818 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
819 |
-
msgid "This option specifies all event category data."
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
823 |
msgid "Sync Categories"
|
824 |
msgstr "Synchronisiere Kategorien"
|
825 |
|
826 |
-
#:
|
827 |
msgid "Keep event categories in sync with post categories automatically"
|
828 |
msgstr "Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron"
|
829 |
|
830 |
-
#:
|
831 |
msgid "Attention"
|
832 |
msgstr "Achtung"
|
833 |
|
834 |
-
#:
|
835 |
msgid ""
|
836 |
"Please note that this option will delete all categories which are not "
|
837 |
"available in the post categories! Existing Categories with the same slug "
|
838 |
"will be updated."
|
839 |
msgstr "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert."
|
840 |
|
841 |
-
#:
|
842 |
msgid "CSV File to import"
|
843 |
-
msgstr "CSV
|
844 |
|
845 |
-
#:
|
846 |
msgid "Please select the file which contains the event data in CSV format."
|
847 |
-
msgstr "Bitte wähle die Datei aus, welche die Eventdaten im CSV
|
848 |
|
849 |
-
#:
|
850 |
msgid "Used date format"
|
851 |
msgstr "Verwendetes Datumsformat"
|
852 |
|
853 |
-
#:
|
854 |
msgid ""
|
855 |
"With this option the used date format for event start and end date given in "
|
856 |
"the CSV file can be specified."
|
857 |
-
msgstr "Mit dieser Option kann das in der CSV
|
858 |
|
859 |
-
#:
|
860 |
msgid "Text for no events"
|
861 |
msgstr "Text für keine Termine"
|
862 |
|
863 |
-
#:
|
864 |
msgid ""
|
865 |
"This option defines the displayed text when no events are available for the "
|
866 |
"selected view."
|
867 |
msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
|
868 |
|
869 |
-
#:
|
870 |
msgid "Multiday filter range"
|
871 |
msgstr "Mehrtägiger Bereich für Filter"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Use the complete event range in the date filter"
|
875 |
msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
|
876 |
|
877 |
-
#:
|
878 |
msgid ""
|
879 |
"This option defines if the complete range of a multiday event shall be "
|
880 |
"considered in the date filter."
|
881 |
msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
|
882 |
|
883 |
-
#:
|
884 |
msgid ""
|
885 |
"If disabled, only the start day of an event is considered in the filter."
|
886 |
msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
|
887 |
|
888 |
-
#:
|
889 |
msgid ""
|
890 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
891 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
892 |
"but it is hidden when the option is disabled."
|
893 |
msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
|
894 |
|
895 |
-
#:
|
896 |
msgid "Date display"
|
897 |
msgstr "Datumsanzeige"
|
898 |
|
899 |
-
#:
|
900 |
msgid "Show the date only once per day"
|
901 |
msgstr "Zeige das Datum nur einmal pro Tag"
|
902 |
|
903 |
-
#:
|
904 |
msgid ""
|
905 |
"With this option enabled the date is only displayed once per day if more "
|
906 |
"than one event is available on the same day."
|
907 |
msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
|
908 |
|
909 |
-
#:
|
910 |
msgid ""
|
911 |
"If enabled, the events are ordered in a different way (end date before start"
|
912 |
" time) to allow using the same date for as much events as possible."
|
913 |
msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
|
914 |
|
915 |
-
#:
|
916 |
msgid "HTML tags"
|
917 |
msgstr "HTML-Tags"
|
918 |
|
919 |
-
#: /
|
920 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
921 |
#, php-format
|
922 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
923 |
msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
|
924 |
|
925 |
-
#: /
|
926 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
927 |
#, php-format
|
928 |
msgid ""
|
929 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
930 |
msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
|
931 |
|
932 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
933 |
msgid "Text for \"Show details\""
|
934 |
msgstr "Text für \"Zeige Beschreibung\""
|
935 |
|
936 |
-
#:
|
937 |
msgid ""
|
938 |
"With this option the displayed text for the link to show the event details "
|
939 |
"can be changed, when collapsing is enabled."
|
940 |
msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Anzeigen der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
|
941 |
|
942 |
-
#:
|
943 |
msgid "Text for \"Hide details\""
|
944 |
msgstr "Text für \"Verstecke Beschreibung\""
|
945 |
|
946 |
-
#:
|
947 |
msgid ""
|
948 |
"With this option the displayed text for the link to hide the event details "
|
949 |
"can be changed, when collapsing is enabled."
|
950 |
msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Verstecken der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
|
951 |
|
952 |
-
#:
|
953 |
msgid "Disable CSS file"
|
954 |
msgstr "Deaktiviere die CSS-Datei"
|
955 |
|
956 |
-
#:
|
957 |
#, php-format
|
958 |
msgid "Disable the %1$s file."
|
959 |
msgstr "Deaktiviere die %1$s Datei."
|
960 |
|
961 |
-
#:
|
962 |
#, php-format
|
963 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
964 |
msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
|
965 |
|
966 |
-
#:
|
967 |
msgid ""
|
968 |
"This normally only make sense if you have css conflicts with your theme and "
|
969 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
970 |
msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
|
971 |
|
972 |
-
#:
|
973 |
msgid "Date format in edit form"
|
974 |
msgstr "Datumsformat im Formular"
|
975 |
|
976 |
-
#:
|
977 |
msgid ""
|
978 |
"This option sets the displayed date format for the event date fields in the "
|
979 |
"event new / edit form."
|
980 |
msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
|
981 |
|
982 |
-
#:
|
983 |
-
msgid "The
|
984 |
msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
|
985 |
|
986 |
-
#:
|
987 |
#, php-format
|
988 |
msgid ""
|
989 |
"All available options to specify the date format can be found %1$shere%2$s."
|
990 |
msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
|
991 |
|
992 |
-
#: /
|
993 |
msgid "Enable RSS feed"
|
994 |
msgstr "RSS feed aktivieren"
|
995 |
|
996 |
-
#:
|
997 |
msgid "Enable support for an event RSS feed"
|
998 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
999 |
|
1000 |
-
#:
|
1001 |
msgid ""
|
1002 |
-
"
|
1003 |
-
"
|
1004 |
-
msgstr ""
|
1005 |
|
1006 |
-
#:
|
1007 |
msgid "Feed name"
|
1008 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1009 |
|
1010 |
-
#:
|
|
|
1011 |
msgid ""
|
1012 |
-
"This
|
1013 |
-
"
|
1014 |
-
msgstr ""
|
1015 |
|
1016 |
-
#:
|
1017 |
msgid "Feed Description"
|
1018 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1019 |
|
1020 |
-
#:
|
1021 |
msgid ""
|
1022 |
-
"This
|
1023 |
-
"
|
1024 |
-
msgstr ""
|
1025 |
|
1026 |
-
#:
|
1027 |
msgid "Listed events"
|
1028 |
-
msgstr ""
|
1029 |
|
1030 |
-
#:
|
1031 |
msgid "Only show upcoming events in feed"
|
1032 |
-
msgstr "Zeige nur
|
1033 |
|
1034 |
-
#:
|
1035 |
msgid ""
|
1036 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1037 |
-
"
|
1038 |
-
msgstr ""
|
1039 |
|
1040 |
-
#:
|
|
|
|
|
|
|
|
|
1041 |
msgid "Add RSS feed link in head"
|
1042 |
-
msgstr ""
|
1043 |
|
1044 |
-
#:
|
1045 |
msgid "Add RSS feed link in the html head"
|
1046 |
-
msgstr ""
|
1047 |
|
1048 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1049 |
msgid ""
|
1050 |
-
"
|
1051 |
-
"
|
1052 |
-
"
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
|
|
|
|
|
|
|
|
1056 |
|
1057 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1058 |
msgid "Position of the RSS feed link"
|
1059 |
msgstr "Position des RSS feed Links"
|
1060 |
|
1061 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
msgid ""
|
1063 |
-
"This option specifies the position of the RSS feed link in the event list
|
1064 |
-
"
|
1065 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1066 |
-
msgstr ""
|
1067 |
|
1068 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1069 |
msgid "Align of the RSS feed link"
|
1070 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
|
1072 |
-
#:
|
|
|
|
|
|
|
|
|
1073 |
msgid ""
|
1074 |
-
"This option specifies the align of the RSS feed link in the event list
|
1075 |
-
"
|
1076 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1077 |
-
msgstr ""
|
1078 |
|
1079 |
-
#:
|
1080 |
msgid "Feed link text"
|
1081 |
msgstr "Feed Link Text"
|
1082 |
|
1083 |
-
#:
|
1084 |
msgid ""
|
1085 |
-
"This option specifies the caption of the RSS feed link in the event list
|
1086 |
-
"
|
1087 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1088 |
-
msgstr ""
|
1089 |
|
1090 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1091 |
msgid "Feed link image"
|
1092 |
-
msgstr ""
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "Show rss image in feed link"
|
1096 |
-
msgstr ""
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid ""
|
1100 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1101 |
-
"
|
1102 |
-
msgstr ""
|
1103 |
|
1104 |
-
#:
|
1105 |
msgid "Show details"
|
1106 |
msgstr "Zeige Beschreibung"
|
1107 |
|
1108 |
-
#:
|
1109 |
msgid "Hide details"
|
1110 |
msgstr "Verstecke Beschreibung"
|
1111 |
|
1112 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1113 |
msgid ""
|
1114 |
-
"
|
1115 |
-
"
|
1116 |
-
|
|
|
1117 |
|
1118 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1119 |
msgid ""
|
1120 |
-
"This attribute
|
1121 |
-
"
|
1122 |
-
msgstr ""
|
1123 |
|
1124 |
-
#:
|
|
|
1125 |
msgid ""
|
1126 |
-
"
|
1127 |
-
"
|
1128 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
1129 |
|
1130 |
-
#:
|
1131 |
msgid ""
|
1132 |
-
"This attribute
|
1133 |
-
"
|
1134 |
-
msgstr ""
|
1135 |
|
1136 |
-
#:
|
1137 |
msgid ""
|
1138 |
-
"
|
1139 |
-
"
|
1140 |
-
"
|
1141 |
-
|
1142 |
-
|
|
|
|
|
1143 |
|
1144 |
-
#:
|
1145 |
msgid ""
|
1146 |
-
"
|
1147 |
-
"
|
1148 |
-
"
|
1149 |
-
msgstr ""
|
1150 |
|
1151 |
-
#:
|
|
|
1152 |
msgid ""
|
1153 |
-
"This attribute
|
1154 |
-
"
|
1155 |
-
"
|
1156 |
-
msgstr ""
|
1157 |
|
1158 |
-
#:
|
|
|
1159 |
msgid ""
|
1160 |
-
"
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1164 |
|
1165 |
-
#:
|
1166 |
-
#:
|
1167 |
-
#:
|
|
|
1168 |
msgid "number"
|
1169 |
-
msgstr ""
|
1170 |
|
1171 |
-
#:
|
1172 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1173 |
msgid ""
|
1174 |
"This attribute specifies if the title should be truncated to the given "
|
1175 |
"number of characters in the event list."
|
1176 |
-
msgstr ""
|
1177 |
|
1178 |
-
#:
|
1179 |
-
#:
|
1180 |
#, php-format
|
1181 |
msgid ""
|
1182 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1183 |
"is automatically truncated via css."
|
1184 |
-
msgstr ""
|
1185 |
|
1186 |
-
#:
|
1187 |
-
#:
|
1188 |
-
#:
|
1189 |
msgid "This attribute has no influence if only a single event is shown."
|
1190 |
-
msgstr ""
|
1191 |
|
1192 |
-
#:
|
1193 |
msgid ""
|
1194 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1195 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1196 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#:
|
1200 |
msgid ""
|
1201 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1202 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1203 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid ""
|
1208 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1209 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1210 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#:
|
1214 |
msgid ""
|
1215 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1216 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1217 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#:
|
1221 |
msgid ""
|
1222 |
"This attribute specifies if the details should be truncate to the given "
|
1223 |
"number of characters in the event list."
|
1224 |
-
msgstr ""
|
1225 |
|
1226 |
-
#:
|
1227 |
#, php-format
|
1228 |
msgid "With the standard value %1$s the full text is displayed."
|
1229 |
-
msgstr ""
|
1230 |
|
1231 |
-
#:
|
1232 |
msgid ""
|
1233 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1234 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1236,7 +1412,7 @@ msgid ""
|
|
1236 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#:
|
1240 |
msgid ""
|
1241 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1242 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1244,7 +1420,7 @@ msgid ""
|
|
1244 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#:
|
1248 |
msgid ""
|
1249 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1250 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1253,36 +1429,32 @@ msgid ""
|
|
1253 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#:
|
1257 |
msgid ""
|
1258 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1259 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1260 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#:
|
1264 |
msgid ""
|
1265 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1266 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#:
|
1270 |
msgid "Event Information:"
|
1271 |
msgstr "Termin Informationen:"
|
1272 |
|
1273 |
-
#:
|
1274 |
-
msgid "(more…)"
|
1275 |
-
msgstr ""
|
1276 |
-
|
1277 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1278 |
msgid "This option defines the displayed title for the widget."
|
1279 |
msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
|
1280 |
|
1281 |
-
#:
|
1282 |
msgid "Category Filter"
|
1283 |
msgstr "Kategoriefilter"
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid ""
|
1287 |
"This option defines the categories of which events are shown. The standard "
|
1288 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1291,139 +1463,137 @@ msgid ""
|
|
1291 |
"all possibilities."
|
1292 |
msgstr "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten."
|
1293 |
|
1294 |
-
#:
|
1295 |
msgid "Number of listed events"
|
1296 |
msgstr "Anzahl der angezeigten Termine"
|
1297 |
|
1298 |
-
#:
|
1299 |
msgid "The number of upcoming events to display"
|
1300 |
msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
|
1301 |
|
1302 |
-
#:
|
1303 |
msgid "Truncate event title to"
|
1304 |
msgstr "Kürze den Termin-Titel auf"
|
1305 |
|
1306 |
-
#: /
|
1307 |
-
#:
|
1308 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1309 |
msgid "characters"
|
1310 |
msgstr "Buchstaben"
|
1311 |
|
1312 |
-
#:
|
1313 |
msgid ""
|
1314 |
"This option defines the number of displayed characters for the event title."
|
1315 |
-
msgstr ""
|
1316 |
|
1317 |
-
#: /
|
1318 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1319 |
#, php-format
|
1320 |
msgid ""
|
1321 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1322 |
"automatically truncate the text via css."
|
1323 |
-
msgstr ""
|
1324 |
|
1325 |
-
#:
|
1326 |
msgid "Show event starttime"
|
1327 |
msgstr "Zeige die Termin-Uhrzeit"
|
1328 |
|
1329 |
-
#:
|
1330 |
msgid "This option defines if the event start time will be displayed."
|
1331 |
msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
|
1332 |
|
1333 |
-
#:
|
1334 |
msgid "Show event location"
|
1335 |
msgstr "Zeige den Termin-Ort"
|
1336 |
|
1337 |
-
#:
|
1338 |
msgid "This option defines if the event location will be displayed."
|
1339 |
msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
|
1340 |
|
1341 |
-
#:
|
1342 |
msgid "Truncate location to"
|
1343 |
msgstr "Kürze den Ort auf"
|
1344 |
|
1345 |
-
#:
|
1346 |
msgid ""
|
1347 |
"If the event location is diplayed this option defines the number of "
|
1348 |
"displayed characters."
|
1349 |
-
msgstr ""
|
1350 |
|
1351 |
-
#:
|
1352 |
msgid "Show event details"
|
1353 |
msgstr "Zeige die Termin-Beschreibung"
|
1354 |
|
1355 |
-
#:
|
1356 |
msgid "This option defines if the event details will be displayed."
|
1357 |
msgstr "Diese Option definiert, ob die Beschreibung des Termins angezeigt wird."
|
1358 |
|
1359 |
-
#:
|
1360 |
msgid "Truncate details to"
|
1361 |
msgstr "Kürze Beschreibung auf"
|
1362 |
|
1363 |
-
#:
|
1364 |
msgid ""
|
1365 |
"If the event details are diplayed this option defines the number of diplayed"
|
1366 |
" characters."
|
1367 |
-
msgstr ""
|
1368 |
|
1369 |
-
#:
|
1370 |
#, php-format
|
1371 |
msgid "Set this value to %1$s to view the full text."
|
1372 |
-
msgstr ""
|
1373 |
|
1374 |
-
#:
|
1375 |
msgid "URL to the linked Event List page"
|
1376 |
msgstr "URL zur verlinkten Event List Seite"
|
1377 |
|
1378 |
-
#:
|
1379 |
msgid ""
|
1380 |
"This option defines the url to the linked Event List page. This option is "
|
1381 |
"required if you want to use one of the options below."
|
1382 |
msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
|
1383 |
|
1384 |
-
#:
|
1385 |
msgid "Shortcode ID on linked page"
|
1386 |
msgstr "Shortcode ID auf der verlinkten Seite"
|
1387 |
|
1388 |
-
#:
|
1389 |
msgid ""
|
1390 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1391 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1392 |
"use multiple event-list shortcodes on the linked page."
|
1393 |
msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
|
1394 |
|
1395 |
-
#:
|
1396 |
msgid ""
|
1397 |
"With this option you can add a link to the single event page for every "
|
1398 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1399 |
"id option if you want to use it."
|
1400 |
msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
|
1401 |
|
1402 |
-
#:
|
1403 |
msgid ""
|
1404 |
"With this option you can add a link to the event-list page below the "
|
1405 |
"diplayed events. You have to specify the url to page option if you want to "
|
1406 |
"use it."
|
1407 |
msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
|
1408 |
|
1409 |
-
#:
|
1410 |
msgid "Caption for the link"
|
1411 |
msgstr "Anzuzeigender Text für den Link"
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid ""
|
1415 |
"This option defines the text for the link to the Event List page if the "
|
1416 |
"approriate option is selected."
|
1417 |
msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
|
1418 |
|
1419 |
-
#:
|
1420 |
msgid "With this widget a list of upcoming events can be displayed."
|
1421 |
msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
|
1422 |
|
1423 |
-
#:
|
1424 |
msgid "Upcoming events"
|
1425 |
msgstr "Anstehende Termine"
|
1426 |
|
1427 |
-
#:
|
1428 |
msgid "show events page"
|
1429 |
msgstr "öffne den Kalender"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
+
# K W, 2017
|
7 |
# Lasse Schulz <lasse.schulz@netthelp.de>, 2016
|
8 |
+
# li rak <romankost@gmx.ch>, 2017
|
9 |
# Marco Schwarzenbach <sp1n@gmx.ch>, 2016
|
10 |
+
# mibuthu, 2015,2017
|
11 |
msgid ""
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: wp-event-list\n"
|
14 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
15 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
16 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
17 |
"Last-Translator: mibuthu\n"
|
18 |
"Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
22 |
"Language: de_DE\n"
|
23 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
24 |
|
25 |
+
#: admin/admin.php:45
|
26 |
msgid "Event List"
|
27 |
msgstr "Event List"
|
28 |
|
29 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
30 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
31 |
msgid "Events"
|
32 |
msgstr "Termine"
|
33 |
|
34 |
+
#: admin/admin.php:48
|
35 |
msgid "All Events"
|
36 |
msgstr "Alle Termine"
|
37 |
|
38 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
39 |
msgid "Add New Event"
|
40 |
msgstr "Neuen Termin erstellen"
|
41 |
|
42 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
47 |
msgid "Event List Categories"
|
48 |
msgstr "Event List Kategorien"
|
49 |
|
50 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
51 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
52 |
msgid "Categories"
|
53 |
msgstr "Kategorien"
|
54 |
|
55 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
56 |
msgid "Event List Settings"
|
57 |
msgstr "Event List Einstellungen"
|
58 |
|
59 |
+
#: admin/admin.php:60
|
|
|
60 |
msgid "Settings"
|
61 |
msgstr "Einstellungen"
|
62 |
|
63 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
64 |
msgid "About Event List"
|
65 |
msgstr "Informationen zu Event List"
|
66 |
|
67 |
+
#: admin/admin.php:64
|
68 |
msgid "About"
|
69 |
msgstr "Informationen"
|
70 |
|
71 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
72 |
+
msgid "General"
|
73 |
+
msgstr "Allgemein"
|
74 |
+
|
75 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
76 |
+
#: admin/includes/admin-about.php:103
|
77 |
+
msgid "Shortcode Attributes"
|
78 |
+
msgstr "Shortcode Attribute"
|
79 |
|
80 |
+
#: admin/includes/admin-about.php:71
|
81 |
msgid "Help and Instructions"
|
82 |
msgstr "Hilfe und Anleitungen"
|
83 |
|
84 |
+
#: admin/includes/admin-about.php:72
|
85 |
#, php-format
|
86 |
+
msgid "You can manage the events %1$shere%2$s"
|
87 |
msgstr "Die Termine können %1$shier%2$s verwaltet werden"
|
88 |
|
89 |
+
#: admin/includes/admin-about.php:73
|
90 |
msgid "To show the events on your site you have 2 possibilities"
|
91 |
msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
|
92 |
|
93 |
+
#: admin/includes/admin-about.php:74
|
94 |
#, php-format
|
95 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
96 |
msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
|
97 |
|
98 |
+
#: admin/includes/admin-about.php:75
|
99 |
#, php-format
|
100 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
101 |
msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
|
102 |
|
103 |
+
#: admin/includes/admin-about.php:76
|
104 |
msgid ""
|
105 |
"The displayed events and their style can be modified with the available "
|
106 |
"widget settings and the available attributes for the shortcode."
|
107 |
msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
|
108 |
|
109 |
+
#: admin/includes/admin-about.php:77
|
110 |
+
#, php-format
|
111 |
msgid ""
|
112 |
+
"A list of all available shortcode attributes with their descriptions is "
|
113 |
+
"available in the %1$s tab."
|
114 |
+
msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist im Reiter %1$s verfügbar."
|
115 |
|
116 |
+
#: admin/includes/admin-about.php:78
|
117 |
msgid "The available widget options are described in their tooltip text."
|
118 |
msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
|
119 |
|
120 |
+
#: admin/includes/admin-about.php:79
|
121 |
#, php-format
|
122 |
msgid ""
|
123 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
124 |
+
" to insert an URL to the linked event-list page."
|
125 |
+
msgstr "Wenn eine der Link Optionen (%1$s oder %2$s) im Widget verwendet werden, dann muss die URL zur verlinkten Event-List Seite angegeben werden."
|
126 |
|
127 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
128 |
msgid "Add links to the single events"
|
129 |
msgstr "Füge Links zu den einzelnen Terminen ein"
|
130 |
|
131 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
132 |
msgid "Add a link to the Event List page"
|
133 |
msgstr "Füge einen Link zur Event List Seite hinzu"
|
134 |
|
135 |
+
#: admin/includes/admin-about.php:80
|
136 |
+
msgid ""
|
137 |
+
"This is required because the widget does not know in which page or post the "
|
138 |
+
"shortcode was included."
|
139 |
+
msgstr "Dies ist erforderlich, weil das Widget nicht weiß, in welcher Seite oder welchem Beitrag der Shortcode eingefügt worden ist."
|
140 |
+
|
141 |
+
#: admin/includes/admin-about.php:81
|
142 |
+
msgid ""
|
143 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
144 |
+
" This id describes which shortcode should be used on the given page or post "
|
145 |
+
"if you have more than one."
|
146 |
+
msgstr "Zusätzlich muss die korrekte Shortcode-ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt welcher Shortcode auf der angegebenen Seite oder Artikel verwendet werden soll, wenn mehrere vorhanden sind."
|
147 |
+
|
148 |
+
#: admin/includes/admin-about.php:82
|
149 |
+
#, php-format
|
150 |
+
msgid ""
|
151 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
152 |
+
"but if required you can check the id by looking into the URL of an event "
|
153 |
+
"link on your linked page or post."
|
154 |
+
msgstr "Der Standardwert %1$s ist normalerweise o.k. (für Seiten mit nur einem Shortcode), aber falls erforderlich kann die ID über die URL eines Termin-Links auf der verlinkten Seite ermittelt werden."
|
155 |
+
|
156 |
+
#: admin/includes/admin-about.php:83
|
157 |
+
#, php-format
|
158 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
159 |
+
msgstr "Die ID befindet sich am Ende der URL Parameter (z.B. %1$s)."
|
160 |
+
|
161 |
+
#: admin/includes/admin-about.php:85
|
162 |
#, php-format
|
163 |
msgid ""
|
164 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
165 |
+
"want."
|
166 |
+
msgstr "Bitte werfe auch einen Blick auf die %1$s in der das Plugin nach deinen Vorstellungen angepasst werden kann."
|
|
|
167 |
|
168 |
+
#: admin/includes/admin-about.php:85
|
169 |
+
msgid "Settings page"
|
170 |
+
msgstr "Einstellungs-Seite"
|
171 |
+
|
172 |
+
#: admin/includes/admin-about.php:91
|
173 |
+
msgid "About the plugin author"
|
174 |
+
msgstr "Über den Autor des Plugins"
|
175 |
+
|
176 |
+
#: admin/includes/admin-about.php:93
|
177 |
#, php-format
|
178 |
msgid ""
|
179 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
180 |
+
"plugin on the %2$s."
|
181 |
+
msgstr "Dieses Plugin wird von %1$s entwickelt, zusätzliche Informationen über das Plugin stehen auf der %2$s zur Verfügung."
|
182 |
|
183 |
+
#: admin/includes/admin-about.php:93
|
184 |
+
msgid "wordpress plugin site"
|
185 |
+
msgstr "Wordpress Plugin Seite"
|
186 |
+
|
187 |
+
#: admin/includes/admin-about.php:94
|
188 |
+
#, php-format
|
189 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
190 |
+
msgstr "Wenn dir das Plugin gefällt bewerte es bitte unter der %1$s."
|
191 |
+
|
192 |
+
#: admin/includes/admin-about.php:94
|
193 |
+
msgid "wordpress plugin review site"
|
194 |
+
msgstr "Wordpress Plugin-Bewertungsseite"
|
195 |
+
|
196 |
+
#: admin/includes/admin-about.php:95
|
197 |
+
msgid ""
|
198 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
199 |
+
msgstr "Um das Plugin zu unterstützen würde ich mich auch über eine kleine Spende freuen"
|
200 |
|
201 |
+
#: admin/includes/admin-about.php:105
|
202 |
msgid ""
|
203 |
"You have the possibility to modify the output if you add some of the "
|
204 |
"following attributes to the shortcode."
|
205 |
msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
|
206 |
|
207 |
+
#: admin/includes/admin-about.php:106
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
211 |
"including the attributes %1$s and %2$s would looks like this:"
|
212 |
msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
|
213 |
|
214 |
+
#: admin/includes/admin-about.php:108
|
215 |
msgid ""
|
216 |
"Below you can find a list of all supported attributes with their "
|
217 |
"descriptions and available options:"
|
218 |
msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
|
219 |
|
220 |
+
#: admin/includes/admin-about.php:122
|
221 |
msgid "Attribute name"
|
222 |
msgstr "Name"
|
223 |
|
224 |
+
#: admin/includes/admin-about.php:123
|
225 |
msgid "Value options"
|
226 |
msgstr "zulässige Werte"
|
227 |
|
228 |
+
#: admin/includes/admin-about.php:124
|
229 |
msgid "Default value"
|
230 |
msgstr "Standard-Wert"
|
231 |
|
232 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
233 |
+
#: admin/includes/category_table.php:108
|
|
|
234 |
msgid "Description"
|
235 |
msgstr "Beschreibung"
|
236 |
|
237 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
238 |
+
#: includes/sc_event-list_helptexts.php:31
|
239 |
msgid "Filter Syntax"
|
240 |
msgstr "Filter Syntax"
|
241 |
|
242 |
+
#: admin/includes/admin-about.php:144
|
243 |
msgid ""
|
244 |
"For date and cat filters you can specify complex filters with the following "
|
245 |
"syntax:"
|
246 |
msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
|
247 |
|
248 |
+
#: admin/includes/admin-about.php:145
|
249 |
#, php-format
|
250 |
msgid ""
|
251 |
"You can use %1$s and %2$s connections to define complex filters. "
|
252 |
"Additionally you can set brackets %3$s for nested queries."
|
253 |
msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
|
254 |
|
255 |
+
#: admin/includes/admin-about.php:145
|
256 |
msgid "AND"
|
257 |
msgstr "UND"
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:145
|
260 |
msgid "OR"
|
261 |
msgstr "ODER"
|
262 |
|
263 |
+
#: admin/includes/admin-about.php:145
|
264 |
msgid "or"
|
265 |
msgstr "oder"
|
266 |
|
267 |
+
#: admin/includes/admin-about.php:145
|
268 |
msgid "and"
|
269 |
msgstr "und"
|
270 |
|
271 |
+
#: admin/includes/admin-about.php:146
|
272 |
msgid "Examples for cat filters:"
|
273 |
msgstr "Beispiele für Kategorie-Filter:"
|
274 |
|
275 |
+
#: admin/includes/admin-about.php:147
|
276 |
#, php-format
|
277 |
msgid "Show all events with category %1$s."
|
278 |
msgstr "Zeige alle Termine mit der Kategorie %1$s."
|
279 |
|
280 |
+
#: admin/includes/admin-about.php:148
|
281 |
#, php-format
|
282 |
msgid "Show all events with category %1$s or %2$s."
|
283 |
msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
|
284 |
|
285 |
+
#: admin/includes/admin-about.php:149
|
286 |
#, php-format
|
287 |
msgid ""
|
288 |
"Show all events with category %1$s and all events where category %2$s as "
|
289 |
"well as %3$s is selected."
|
290 |
msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
|
291 |
|
292 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
293 |
msgid "Available Date Formats"
|
294 |
msgstr "Verfügbare Datumsformate"
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:155
|
297 |
msgid "For date filters you can use the following date formats:"
|
298 |
msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
|
299 |
|
300 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
301 |
msgid "Available Date Range Formats"
|
302 |
msgstr "Verfügbare Datumsbereichs-Formate"
|
303 |
|
304 |
+
#: admin/includes/admin-about.php:164
|
305 |
msgid "For date filters you can use the following daterange formats:"
|
306 |
msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
|
307 |
|
308 |
+
#: admin/includes/admin-about.php:176
|
309 |
msgid "Value"
|
310 |
msgstr "Wert"
|
311 |
|
312 |
+
#: admin/includes/admin-about.php:180
|
313 |
msgid "Example"
|
314 |
msgstr "Beispiel"
|
315 |
|
316 |
+
#: admin/includes/admin-categories.php:53
|
317 |
msgid "Edit Category"
|
318 |
msgstr "Kategorie bearbeiten"
|
319 |
|
320 |
+
#: admin/includes/admin-categories.php:53
|
321 |
msgid "Update Category"
|
322 |
msgstr "Kategorie aktualisieren"
|
323 |
|
324 |
+
#: admin/includes/admin-categories.php:59
|
325 |
msgid "Add New Category"
|
326 |
msgstr "Neue Kategorie erstellen"
|
327 |
|
328 |
+
#: admin/includes/admin-categories.php:84
|
329 |
#, php-format
|
330 |
msgid "Category \"%s\" deleted."
|
331 |
msgstr "Kategorie \"%s\" gelöscht."
|
332 |
|
333 |
+
#: admin/includes/admin-categories.php:86
|
334 |
#, php-format
|
335 |
msgid "This Category was also removed from %d events."
|
336 |
msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
|
337 |
|
338 |
+
#: admin/includes/admin-categories.php:92
|
339 |
#, php-format
|
340 |
msgid "Error while deleting category \"%s\""
|
341 |
msgstr "Fehler beim Löschen der Kategorie \"%s\""
|
342 |
|
343 |
+
#: admin/includes/admin-categories.php:102
|
344 |
msgid "Sync with post categories enabled."
|
345 |
msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
|
346 |
|
347 |
+
#: admin/includes/admin-categories.php:105
|
348 |
msgid "Sync with post categories disabled."
|
349 |
msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
|
350 |
|
351 |
+
#: admin/includes/admin-categories.php:111
|
352 |
msgid "Manual sync with post categories sucessfully finished."
|
353 |
msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
|
354 |
|
355 |
+
#: admin/includes/admin-categories.php:119
|
356 |
#, php-format
|
357 |
msgid "New Category \"%s\" was added"
|
358 |
msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
|
359 |
|
360 |
+
#: admin/includes/admin-categories.php:122
|
361 |
#, php-format
|
362 |
msgid "Error: New Category \"%s\" could not be added"
|
363 |
msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
|
364 |
|
365 |
+
#: admin/includes/admin-categories.php:128
|
366 |
#, php-format
|
367 |
msgid "Category \"%s\" was modified"
|
368 |
msgstr "Kategorie \"%s\" wurde geändert"
|
369 |
|
370 |
+
#: admin/includes/admin-categories.php:131
|
371 |
#, php-format
|
372 |
msgid "Error: Category \"%s\" could not be modified"
|
373 |
msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
|
374 |
|
375 |
+
#: admin/includes/admin-categories.php:138
|
376 |
+
msgid "Categories are automatically synced with the post categories."
|
377 |
+
msgstr "Die Kategorien werden automatisch mit den Beitrags-Kategorien synchronisiert."
|
378 |
+
|
379 |
+
#: admin/includes/admin-categories.php:139
|
380 |
msgid ""
|
381 |
+
"Because of this all options to add new categories or editing existing "
|
382 |
+
"categories are disabled."
|
383 |
+
msgstr "Deshalb sind alle Einstellungen zum Hinzufügen neuer bzw. zum Editieren bestehender Kategorien deaktiviert."
|
|
|
384 |
|
385 |
+
#: admin/includes/admin-categories.php:140
|
386 |
+
msgid ""
|
387 |
+
"If you want to manually edit the categories you have to disable this option."
|
388 |
+
msgstr "Wenn die Termin-Kategorien manuell angepasst werden sollen,dann muss diese Option deaktiviert werden."
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:167
|
391 |
msgid "The name is how it appears on your site."
|
392 |
msgstr "Dieser Name wird dann auf der Webseite angezeigt."
|
393 |
|
394 |
+
#: admin/includes/admin-categories.php:172
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid ""
|
396 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
397 |
"lowercase and contains only letters, numbers, and hyphens."
|
398 |
msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
|
399 |
|
400 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
msgid ""
|
402 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
403 |
"that have children categories for Bebop and Big Band. Totally optional."
|
404 |
msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
|
405 |
|
406 |
+
#: admin/includes/admin-categories.php:232
|
407 |
msgid "Apply"
|
408 |
msgstr "Anwenden"
|
409 |
|
410 |
+
#: admin/includes/admin-categories.php:242
|
411 |
msgid "Do a manual sync with post categories"
|
412 |
msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
|
413 |
|
414 |
+
#: admin/includes/admin-import.php:45
|
415 |
msgid "Import Events"
|
416 |
msgstr "Importiere Termine"
|
417 |
|
418 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
419 |
msgid "Step"
|
420 |
+
msgstr "Schritt"
|
421 |
|
422 |
+
#: admin/includes/admin-import.php:65
|
423 |
msgid "Set import file and options"
|
424 |
+
msgstr "Datei und Optionen zum Importieren wählen"
|
425 |
|
426 |
+
#: admin/includes/admin-import.php:68
|
427 |
+
#, php-format
|
428 |
+
msgid "Proceed with Step %1$s"
|
429 |
+
msgstr "Weiter zu Schritt %1$s"
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:71
|
432 |
msgid "Example file"
|
433 |
msgstr "Beispieldatei"
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:72
|
436 |
#, php-format
|
437 |
msgid ""
|
438 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
439 |
+
msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:73
|
442 |
msgid "Note"
|
443 |
msgstr "Achtung"
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:73
|
446 |
msgid ""
|
447 |
"Do not change the column header and separator line (first two lines), "
|
448 |
"otherwise the import will fail!"
|
449 |
msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
452 |
+
#: admin/includes/admin-import.php:101
|
|
|
453 |
msgid "Sorry, there has been an error."
|
454 |
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:81
|
457 |
msgid "The file does not exist, please try again."
|
458 |
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:89
|
461 |
msgid "The file is not a CSV file."
|
462 |
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:120
|
465 |
+
msgid "Events review and additonal category selection"
|
466 |
+
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
467 |
|
468 |
+
#: admin/includes/admin-import.php:123
|
469 |
+
msgid ""
|
470 |
+
"Warning: The following category slugs are not available and will be removed "
|
471 |
+
"from the imported events:"
|
472 |
+
msgstr "Warning: Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Terminen entfernt:"
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:129
|
475 |
+
msgid ""
|
476 |
+
"If you want to keep these categories, please create these Categories first "
|
477 |
+
"and do the import afterwards."
|
478 |
+
msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
479 |
+
|
480 |
+
#: admin/includes/admin-import.php:147
|
481 |
+
msgid "Add additional categories"
|
482 |
+
msgstr "Kategorien ergänzen"
|
483 |
+
|
484 |
+
#: admin/includes/admin-import.php:148
|
485 |
+
msgid "Import events"
|
486 |
+
msgstr "Importiere die Termine"
|
487 |
+
|
488 |
+
#: admin/includes/admin-import.php:162
|
489 |
msgid "Import with errors!"
|
490 |
msgstr "Import mit Fehler!"
|
491 |
|
492 |
+
#: admin/includes/admin-import.php:163
|
493 |
#, php-format
|
494 |
msgid ""
|
495 |
"An error occurred during import! Please send your import file to %1$sthe "
|
496 |
"administrator%2$s for analysis."
|
497 |
msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:167
|
500 |
msgid "Import successful!"
|
501 |
msgstr "Importieren erfolgreich abgeschlossen!"
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:168
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr "Gehe zurück zu Alle Termine"
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
508 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
509 |
msgid "Title"
|
510 |
msgstr "Titel"
|
511 |
|
512 |
+
#: admin/includes/admin-import.php:176
|
513 |
msgid "Start Date"
|
514 |
msgstr "Start-Datum"
|
515 |
|
516 |
+
#: admin/includes/admin-import.php:177
|
517 |
msgid "End Date"
|
518 |
msgstr "End-Datum"
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
521 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
522 |
msgid "Time"
|
523 |
msgstr "Uhrzeit"
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
526 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
527 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
528 |
msgid "Location"
|
529 |
msgstr "Ort"
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
532 |
+
#: admin/includes/event_table.php:110
|
|
|
533 |
msgid "Details"
|
534 |
msgstr "Beschreibung"
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:181
|
537 |
+
msgid "Category slugs"
|
538 |
+
msgstr "Kategorie-Slugs"
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:220
|
541 |
+
#, php-format
|
542 |
+
msgid ""
|
543 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
544 |
+
"missing or not correct!"
|
545 |
+
msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!"
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
548 |
+
msgid "Import"
|
549 |
+
msgstr "Importieren"
|
|
|
550 |
|
551 |
+
#: admin/includes/admin-main.php:114
|
552 |
msgid "Edit Event"
|
553 |
msgstr "Termin bearbeiten"
|
554 |
|
555 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
556 |
msgid "Duplicate"
|
557 |
msgstr "Duplizieren"
|
558 |
|
559 |
+
#: admin/includes/admin-new.php:43
|
560 |
#, php-format
|
561 |
msgid "Duplicate of event id:%d"
|
562 |
msgstr "Duplikat der Termin-ID: %d"
|
563 |
|
564 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
565 |
msgid "required"
|
566 |
msgstr "erforderlich"
|
567 |
|
568 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
569 |
msgid "Date"
|
570 |
msgstr "Datum"
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:113
|
573 |
msgid "Multi-Day Event"
|
574 |
msgstr "Mehrtägiger Termin"
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
577 |
msgid "Publish"
|
578 |
msgstr "Veröffentlichen"
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:160
|
581 |
msgid "Update"
|
582 |
msgstr "Aktualisieren"
|
583 |
|
584 |
+
#: admin/includes/admin-new.php:162
|
585 |
+
msgid "Cancel"
|
586 |
+
msgstr "Abbrechen"
|
587 |
+
|
588 |
+
#: admin/includes/admin-new.php:175
|
589 |
+
msgid "No categories available."
|
590 |
+
msgstr "Keine Kategorien verfügbar."
|
591 |
+
|
592 |
+
#: admin/includes/admin-new.php:221
|
593 |
msgid "Goto Category Settings"
|
594 |
msgstr "Gehe zu Kategorie-Einstellungen"
|
595 |
|
596 |
+
#: admin/includes/admin-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
msgid "Settings saved."
|
598 |
msgstr "Einstellungen gespeichert."
|
599 |
|
600 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
601 |
msgid "Frontend Settings"
|
602 |
msgstr "Frontend Einstellungen"
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:70
|
605 |
msgid "Admin Page Settings"
|
606 |
msgstr "Admin-Seiten Einstellungen"
|
607 |
|
608 |
+
#: admin/includes/admin-settings.php:71
|
609 |
msgid "Feed Settings"
|
610 |
msgstr "Feed Einstellungen"
|
611 |
|
612 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
613 |
msgid "event"
|
614 |
msgstr "Termin"
|
615 |
|
616 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
617 |
msgid "events"
|
618 |
msgstr "Termine"
|
619 |
|
620 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
621 |
msgid "Edit"
|
622 |
msgstr "Bearbeiten"
|
623 |
|
624 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
625 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
626 |
msgid "Delete"
|
627 |
msgstr "Löschen"
|
628 |
|
629 |
+
#: admin/includes/category_table.php:107
|
630 |
+
msgid "Name"
|
631 |
+
msgstr "Name"
|
632 |
+
|
633 |
+
#: admin/includes/category_table.php:109
|
634 |
+
msgid "Slug"
|
635 |
+
msgstr "Slug"
|
636 |
+
|
637 |
+
#: admin/includes/event_table.php:112
|
638 |
msgid "Author"
|
639 |
msgstr "Autor"
|
640 |
|
641 |
+
#: admin/includes/event_table.php:113
|
642 |
msgid "Published"
|
643 |
msgstr "Veröffentlicht"
|
644 |
|
645 |
+
#: admin/includes/event_table.php:175
|
646 |
msgid "Filter"
|
647 |
msgstr "Auswahl einschränken"
|
648 |
|
649 |
+
#: admin/includes/event_table.php:297
|
650 |
#, php-format
|
651 |
msgid "%s ago"
|
652 |
msgstr "vor %s"
|
653 |
|
654 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
655 |
msgid "Year"
|
656 |
msgstr "Jahr"
|
657 |
|
658 |
+
#: includes/daterange_helptexts.php:8
|
659 |
msgid "A year can be specified in 4 digit format."
|
660 |
msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
|
661 |
|
662 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
663 |
+
#: includes/daterange_helptexts.php:36
|
|
|
664 |
#, php-format
|
665 |
msgid ""
|
666 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
667 |
"last day."
|
668 |
msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
|
669 |
|
670 |
+
#: includes/daterange_helptexts.php:9
|
671 |
msgid "the resulting year"
|
672 |
msgstr "des entsprechenden Jahres"
|
673 |
|
674 |
+
#: includes/daterange_helptexts.php:12
|
675 |
msgid "Month"
|
676 |
msgstr "Monat"
|
677 |
|
678 |
+
#: includes/daterange_helptexts.php:13
|
679 |
msgid ""
|
680 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
681 |
"month, seperated by a hyphen (-)."
|
682 |
msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
|
683 |
|
684 |
+
#: includes/daterange_helptexts.php:14
|
685 |
msgid "the resulting month"
|
686 |
msgstr "des entsprechenden Monats"
|
687 |
|
688 |
+
#: includes/daterange_helptexts.php:17
|
689 |
msgid "Day"
|
690 |
msgstr "Tag"
|
691 |
|
692 |
+
#: includes/daterange_helptexts.php:18
|
693 |
msgid ""
|
694 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
695 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
696 |
msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
|
697 |
|
698 |
+
#: includes/daterange_helptexts.php:21
|
699 |
msgid "Relative Year"
|
700 |
msgstr "Relatives Jahr"
|
701 |
|
702 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
703 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
704 |
#, php-format
|
705 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
706 |
msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
|
707 |
|
708 |
+
#: includes/daterange_helptexts.php:22
|
709 |
msgid "A relative year"
|
710 |
msgstr "Ein relatives Jahr"
|
711 |
|
712 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
713 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
714 |
#, php-format
|
715 |
msgid ""
|
716 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
717 |
"%3$s or %4$s attached (see also the example below)."
|
718 |
msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
|
719 |
|
720 |
+
#: includes/daterange_helptexts.php:23
|
721 |
msgid "number of years"
|
722 |
msgstr "Jahresanzahl"
|
723 |
|
724 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
725 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
726 |
#, php-format
|
727 |
msgid "Additionally the following values are available: %1$s"
|
728 |
msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
|
729 |
|
730 |
+
#: includes/daterange_helptexts.php:27
|
731 |
msgid "Relative Month"
|
732 |
msgstr "Relativer Monat"
|
733 |
|
734 |
+
#: includes/daterange_helptexts.php:28
|
735 |
msgid "A relative month"
|
736 |
msgstr "Ein relativer Monat"
|
737 |
|
738 |
+
#: includes/daterange_helptexts.php:29
|
739 |
msgid "number of months"
|
740 |
msgstr "Monatsanzahl"
|
741 |
|
742 |
+
#: includes/daterange_helptexts.php:33
|
743 |
msgid "Relative Week"
|
744 |
msgstr "Relative Woche"
|
745 |
|
746 |
+
#: includes/daterange_helptexts.php:34
|
747 |
msgid "A relative week"
|
748 |
msgstr "Eine relative Woche"
|
749 |
|
750 |
+
#: includes/daterange_helptexts.php:35
|
751 |
msgid "number of weeks"
|
752 |
msgstr "Wochenanzahl"
|
753 |
|
754 |
+
#: includes/daterange_helptexts.php:36
|
755 |
msgid "the resulting week"
|
756 |
msgstr "der entsprechende Woche"
|
757 |
|
758 |
+
#: includes/daterange_helptexts.php:37
|
759 |
#, php-format
|
760 |
msgid ""
|
761 |
"The first day of the week is depending on the option %1$s which can be found"
|
762 |
" and changed in %2$s."
|
763 |
msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
|
764 |
|
765 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
766 |
msgid "Relative Day"
|
767 |
msgstr "Relativer Tag"
|
768 |
|
769 |
+
#: includes/daterange_helptexts.php:42
|
770 |
msgid "A relative day"
|
771 |
msgstr "Ein relativer Tag"
|
772 |
|
773 |
+
#: includes/daterange_helptexts.php:43
|
774 |
msgid "number of days"
|
775 |
msgstr "Tagesanzahl"
|
776 |
|
777 |
+
#: includes/daterange_helptexts.php:49
|
778 |
msgid "Date range"
|
779 |
msgstr "Datumsbereich"
|
780 |
|
781 |
+
#: includes/daterange_helptexts.php:50
|
782 |
msgid ""
|
783 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
784 |
"\t For the start and end date any available date format can be used."
|
785 |
msgstr "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
|
786 |
|
787 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
788 |
msgid "This value defines a range without any limits."
|
789 |
msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
|
790 |
|
791 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
792 |
+
#: includes/daterange_helptexts.php:66
|
|
|
793 |
#, php-format
|
794 |
msgid "The corresponding date_range format is: %1$s"
|
795 |
msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
|
796 |
|
797 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
798 |
msgid "Upcoming"
|
799 |
msgstr "Anstehend"
|
800 |
|
801 |
+
#: includes/daterange_helptexts.php:60
|
802 |
msgid "This value defines a range from the actual day to the future."
|
803 |
msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
|
804 |
|
805 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
806 |
msgid "Past"
|
807 |
msgstr "Beendet"
|
808 |
|
809 |
+
#: includes/daterange_helptexts.php:65
|
810 |
msgid "This value defines a range from the past to the previous day."
|
811 |
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
812 |
|
813 |
+
#: includes/filterbar.php:282
|
814 |
+
msgid "All"
|
815 |
+
msgstr "Alle"
|
816 |
+
|
817 |
+
#: includes/filterbar.php:285
|
818 |
msgid "Show all dates"
|
819 |
msgstr "Zeige alle Datumsbereiche"
|
820 |
|
821 |
+
#: includes/filterbar.php:285
|
822 |
msgid "Show all categories"
|
823 |
msgstr "Zeige alle Kategorien"
|
824 |
|
825 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
826 |
msgid "Sync Categories"
|
827 |
msgstr "Synchronisiere Kategorien"
|
828 |
|
829 |
+
#: includes/options_helptexts.php:12
|
830 |
msgid "Keep event categories in sync with post categories automatically"
|
831 |
msgstr "Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron"
|
832 |
|
833 |
+
#: includes/options_helptexts.php:13
|
834 |
msgid "Attention"
|
835 |
msgstr "Achtung"
|
836 |
|
837 |
+
#: includes/options_helptexts.php:14
|
838 |
msgid ""
|
839 |
"Please note that this option will delete all categories which are not "
|
840 |
"available in the post categories! Existing Categories with the same slug "
|
841 |
"will be updated."
|
842 |
msgstr "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert."
|
843 |
|
844 |
+
#: includes/options_helptexts.php:18
|
845 |
msgid "CSV File to import"
|
846 |
+
msgstr "Zu importierende CSV-Datei"
|
847 |
|
848 |
+
#: includes/options_helptexts.php:20
|
849 |
msgid "Please select the file which contains the event data in CSV format."
|
850 |
+
msgstr "Bitte wähle die Datei aus, welche die Eventdaten im CSV-Format enthält."
|
851 |
|
852 |
+
#: includes/options_helptexts.php:23
|
853 |
msgid "Used date format"
|
854 |
msgstr "Verwendetes Datumsformat"
|
855 |
|
856 |
+
#: includes/options_helptexts.php:25
|
857 |
msgid ""
|
858 |
"With this option the used date format for event start and end date given in "
|
859 |
"the CSV file can be specified."
|
860 |
+
msgstr "Mit dieser Option kann das in der CSV-Datei benutzte Datumsformat für das Termin-Start- und das Termin-End-Datum definiert werden."
|
861 |
|
862 |
+
#: includes/options_helptexts.php:29
|
863 |
msgid "Text for no events"
|
864 |
msgstr "Text für keine Termine"
|
865 |
|
866 |
+
#: includes/options_helptexts.php:31
|
867 |
msgid ""
|
868 |
"This option defines the displayed text when no events are available for the "
|
869 |
"selected view."
|
870 |
msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
|
871 |
|
872 |
+
#: includes/options_helptexts.php:34
|
873 |
msgid "Multiday filter range"
|
874 |
msgstr "Mehrtägiger Bereich für Filter"
|
875 |
|
876 |
+
#: includes/options_helptexts.php:35
|
877 |
msgid "Use the complete event range in the date filter"
|
878 |
msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
|
879 |
|
880 |
+
#: includes/options_helptexts.php:36
|
881 |
msgid ""
|
882 |
"This option defines if the complete range of a multiday event shall be "
|
883 |
"considered in the date filter."
|
884 |
msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
|
885 |
|
886 |
+
#: includes/options_helptexts.php:37
|
887 |
msgid ""
|
888 |
"If disabled, only the start day of an event is considered in the filter."
|
889 |
msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
|
890 |
|
891 |
+
#: includes/options_helptexts.php:38
|
892 |
msgid ""
|
893 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
894 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
895 |
"but it is hidden when the option is disabled."
|
896 |
msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
|
897 |
|
898 |
+
#: includes/options_helptexts.php:41
|
899 |
msgid "Date display"
|
900 |
msgstr "Datumsanzeige"
|
901 |
|
902 |
+
#: includes/options_helptexts.php:42
|
903 |
msgid "Show the date only once per day"
|
904 |
msgstr "Zeige das Datum nur einmal pro Tag"
|
905 |
|
906 |
+
#: includes/options_helptexts.php:43
|
907 |
msgid ""
|
908 |
"With this option enabled the date is only displayed once per day if more "
|
909 |
"than one event is available on the same day."
|
910 |
msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
|
911 |
|
912 |
+
#: includes/options_helptexts.php:44
|
913 |
msgid ""
|
914 |
"If enabled, the events are ordered in a different way (end date before start"
|
915 |
" time) to allow using the same date for as much events as possible."
|
916 |
msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
|
917 |
|
918 |
+
#: includes/options_helptexts.php:47
|
919 |
msgid "HTML tags"
|
920 |
msgstr "HTML-Tags"
|
921 |
|
922 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
923 |
#, php-format
|
924 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
925 |
msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
|
926 |
|
927 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
928 |
#, php-format
|
929 |
msgid ""
|
930 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
931 |
msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
|
932 |
|
933 |
+
#: includes/options_helptexts.php:57
|
934 |
+
msgid "Preferred language file"
|
935 |
+
msgstr "Bevorzugte Sprachdatei"
|
936 |
+
|
937 |
+
#: includes/options_helptexts.php:58
|
938 |
+
msgid "Load translations from general language directory first"
|
939 |
+
msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis"
|
940 |
+
|
941 |
+
#: includes/options_helptexts.php:59
|
942 |
+
#, php-format
|
943 |
+
msgid ""
|
944 |
+
"The default is to load the %1$s translation file from the plugin language "
|
945 |
+
"directory first (%2$s)."
|
946 |
+
msgstr "Standardmäßig wird zuerst die %1$s Übersetzungsdatei aus dem Sprachverzeichnis des Plugins geladen (%2$s)."
|
947 |
+
|
948 |
+
#: includes/options_helptexts.php:60
|
949 |
+
#, php-format
|
950 |
+
msgid ""
|
951 |
+
"If you want to load your own language file from the general language "
|
952 |
+
"directory %1$s for a language which is already included in the plugin "
|
953 |
+
"language directory, you have to enable this option."
|
954 |
+
msgstr "Wenn eine eigene Übersetzungsdatei aus dem generellen Übersetzungsverzeichnis %1$s verwendet werden soll, die bereits im Sprachverzeichnis des Plugins vorhanden ist, dann muss diese Option aktiviert werden."
|
955 |
+
|
956 |
+
#: includes/options_helptexts.php:64
|
957 |
msgid "Text for \"Show details\""
|
958 |
msgstr "Text für \"Zeige Beschreibung\""
|
959 |
|
960 |
+
#: includes/options_helptexts.php:65
|
961 |
msgid ""
|
962 |
"With this option the displayed text for the link to show the event details "
|
963 |
"can be changed, when collapsing is enabled."
|
964 |
msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Anzeigen der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
|
965 |
|
966 |
+
#: includes/options_helptexts.php:68
|
967 |
msgid "Text for \"Hide details\""
|
968 |
msgstr "Text für \"Verstecke Beschreibung\""
|
969 |
|
970 |
+
#: includes/options_helptexts.php:69
|
971 |
msgid ""
|
972 |
"With this option the displayed text for the link to hide the event details "
|
973 |
"can be changed, when collapsing is enabled."
|
974 |
msgstr "Mit dieser Einstellung kann der angezeigte Text für den Link zum Verstecken der Termin-Beschreibung geändert werden, wenn das Einklappen der Termin-Beschreibung aktiviert ist."
|
975 |
|
976 |
+
#: includes/options_helptexts.php:72
|
977 |
msgid "Disable CSS file"
|
978 |
msgstr "Deaktiviere die CSS-Datei"
|
979 |
|
980 |
+
#: includes/options_helptexts.php:73
|
981 |
#, php-format
|
982 |
msgid "Disable the %1$s file."
|
983 |
msgstr "Deaktiviere die %1$s Datei."
|
984 |
|
985 |
+
#: includes/options_helptexts.php:74
|
986 |
#, php-format
|
987 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
988 |
msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
|
989 |
|
990 |
+
#: includes/options_helptexts.php:75
|
991 |
msgid ""
|
992 |
"This normally only make sense if you have css conflicts with your theme and "
|
993 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
994 |
msgstr "Dies ist normalerweise nur bei CSS-Konflikten mit dem verwendeten Theme sinnvoll. Alle erforderlichen CSS-Stile müssen dann irgendwo anders gesetzt werden (z.B. in der CSS-Datei des Themes)."
|
995 |
|
996 |
+
#: includes/options_helptexts.php:79
|
997 |
msgid "Date format in edit form"
|
998 |
msgstr "Datumsformat im Formular"
|
999 |
|
1000 |
+
#: includes/options_helptexts.php:80
|
1001 |
msgid ""
|
1002 |
"This option sets the displayed date format for the event date fields in the "
|
1003 |
"event new / edit form."
|
1004 |
msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
|
1005 |
|
1006 |
+
#: includes/options_helptexts.php:81
|
1007 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1008 |
msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
|
1009 |
|
1010 |
+
#: includes/options_helptexts.php:82
|
1011 |
#, php-format
|
1012 |
msgid ""
|
1013 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1014 |
msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
|
1015 |
|
1016 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1017 |
msgid "Enable RSS feed"
|
1018 |
msgstr "RSS feed aktivieren"
|
1019 |
|
1020 |
+
#: includes/options_helptexts.php:87
|
1021 |
msgid "Enable support for an event RSS feed"
|
1022 |
+
msgstr "Support für ein Termin-RSS-Feed aktivieren"
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:88
|
1025 |
+
msgid "This option activates a RSS feed for the events."
|
1026 |
+
msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine."
|
1027 |
|
1028 |
+
#: includes/options_helptexts.php:89
|
1029 |
msgid ""
|
1030 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1031 |
+
"features."
|
1032 |
+
msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
|
1033 |
|
1034 |
+
#: includes/options_helptexts.php:92
|
1035 |
msgid "Feed name"
|
1036 |
+
msgstr "Feed-Name"
|
1037 |
+
|
1038 |
+
#: includes/options_helptexts.php:93
|
1039 |
+
#, php-format
|
1040 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1041 |
+
msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s."
|
1042 |
|
1043 |
+
#: includes/options_helptexts.php:94
|
1044 |
+
#, php-format
|
1045 |
msgid ""
|
1046 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1047 |
+
"enabled)."
|
1048 |
+
msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:97
|
1051 |
msgid "Feed Description"
|
1052 |
+
msgstr "Feed-Beschreibung"
|
1053 |
+
|
1054 |
+
#: includes/options_helptexts.php:98
|
1055 |
+
#, php-format
|
1056 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1057 |
+
msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s."
|
1058 |
|
1059 |
+
#: includes/options_helptexts.php:99
|
1060 |
msgid ""
|
1061 |
+
"This description will be used in the title for the feed link in the html "
|
1062 |
+
"head and for the description in the feed itself."
|
1063 |
+
msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:102
|
1066 |
msgid "Listed events"
|
1067 |
+
msgstr "Anzuzeigende Termine"
|
1068 |
|
1069 |
+
#: includes/options_helptexts.php:103
|
1070 |
msgid "Only show upcoming events in feed"
|
1071 |
+
msgstr "Zeige nur anstehende Termine im Feed an"
|
1072 |
|
1073 |
+
#: includes/options_helptexts.php:104
|
1074 |
msgid ""
|
1075 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
1076 |
+
msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt."
|
|
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:105
|
1079 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1080 |
+
msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden."
|
1081 |
+
|
1082 |
+
#: includes/options_helptexts.php:108
|
1083 |
msgid "Add RSS feed link in head"
|
1084 |
+
msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:109
|
1087 |
msgid "Add RSS feed link in the html head"
|
1088 |
+
msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein"
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:110
|
1091 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1092 |
+
msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein."
|
1093 |
+
|
1094 |
+
#: includes/options_helptexts.php:111
|
1095 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1096 |
+
msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed"
|
1097 |
+
|
1098 |
+
#: includes/options_helptexts.php:112
|
1099 |
msgid ""
|
1100 |
+
"The first way is this option to include a link in the html head. This link "
|
1101 |
+
"will be recognized by browers or feed readers."
|
1102 |
+
msgstr "Die erste Variante ist diese Einstellung, mit der ein Link in den HTML-Kopfeingefügt wird. Dieser Link wird von den Browsern und Feed-Readern erkannt."
|
1103 |
+
|
1104 |
+
#: includes/options_helptexts.php:113
|
1105 |
+
#, php-format
|
1106 |
+
msgid ""
|
1107 |
+
"The second way is to include a visible feed link directly in the event list."
|
1108 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1109 |
+
msgstr "Die 2. Variante ist die Einbindung eines sichtbaren Feed-Links direkt in der Terminliste. Dies kann durch das Setzen des Shortcode-Attributs %1$s auf %2$s erreicht werden."
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:114
|
1112 |
+
#, php-format
|
1113 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1114 |
+
msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist."
|
1115 |
+
|
1116 |
+
#: includes/options_helptexts.php:117
|
1117 |
msgid "Position of the RSS feed link"
|
1118 |
msgstr "Position des RSS feed Links"
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:118
|
1121 |
+
msgid "at the top (above the navigation bar)"
|
1122 |
+
msgstr "oben (über der Navigationsleiste)"
|
1123 |
+
|
1124 |
+
#: includes/options_helptexts.php:118
|
1125 |
+
msgid "between navigation bar and events"
|
1126 |
+
msgstr "zwischen Navigationsleiste und Terminliste"
|
1127 |
+
|
1128 |
+
#: includes/options_helptexts.php:118
|
1129 |
+
msgid "at the bottom"
|
1130 |
+
msgstr "unterhalb der Terminliste"
|
1131 |
+
|
1132 |
+
#: includes/options_helptexts.php:119
|
1133 |
msgid ""
|
1134 |
+
"This option specifies the position of the RSS feed link in the event list."
|
1135 |
+
msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
|
|
|
|
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1138 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1139 |
+
#, php-format
|
1140 |
+
msgid ""
|
1141 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1142 |
+
" feed link."
|
1143 |
+
msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren."
|
1144 |
+
|
1145 |
+
#: includes/options_helptexts.php:123
|
1146 |
msgid "Align of the RSS feed link"
|
1147 |
+
msgstr "Ausrichtung des RSS-Feed-Links"
|
1148 |
+
|
1149 |
+
#: includes/options_helptexts.php:124
|
1150 |
+
msgid "left"
|
1151 |
+
msgstr "links"
|
1152 |
+
|
1153 |
+
#: includes/options_helptexts.php:124
|
1154 |
+
msgid "center"
|
1155 |
+
msgstr "mittig"
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:124
|
1158 |
+
msgid "right"
|
1159 |
+
msgstr "rechts"
|
1160 |
+
|
1161 |
+
#: includes/options_helptexts.php:125
|
1162 |
msgid ""
|
1163 |
+
"This option specifies the align of the RSS feed link in the event list."
|
1164 |
+
msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
|
|
|
|
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:129
|
1167 |
msgid "Feed link text"
|
1168 |
msgstr "Feed Link Text"
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:130
|
1171 |
msgid ""
|
1172 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1173 |
+
msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste."
|
|
|
|
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:131
|
1176 |
+
msgid ""
|
1177 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1178 |
+
"image."
|
1179 |
+
msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt."
|
1180 |
+
|
1181 |
+
#: includes/options_helptexts.php:135
|
1182 |
msgid "Feed link image"
|
1183 |
+
msgstr "Bild für den Feed-Link"
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:136
|
1186 |
msgid "Show rss image in feed link"
|
1187 |
+
msgstr "Zeige das RSS-Bild im Feed-Link an"
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:137
|
1190 |
msgid ""
|
1191 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1192 |
+
" front of the text."
|
1193 |
+
msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird."
|
1194 |
|
1195 |
+
#: includes/options.php:43
|
1196 |
msgid "Show details"
|
1197 |
msgstr "Zeige Beschreibung"
|
1198 |
|
1199 |
+
#: includes/options.php:44
|
1200 |
msgid "Hide details"
|
1201 |
msgstr "Verstecke Beschreibung"
|
1202 |
|
1203 |
+
#: includes/sc_event-list_helptexts.php:7
|
1204 |
+
msgid "event-id"
|
1205 |
+
msgstr "Termin-ID"
|
1206 |
+
|
1207 |
+
#: includes/sc_event-list_helptexts.php:8
|
1208 |
+
#, php-format
|
1209 |
msgid ""
|
1210 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1211 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1212 |
+
"this event is shown."
|
1213 |
+
msgstr "Standardmäßig wird anfänglich die Termin-Liste angezeigt. Wenn bei diesem Parameter aber eine Termin-ID (z.B. %1$s) angegeben wird, dann wird direkt die Termin-Detailansicht dieses Termins angezeigt."
|
1214 |
|
1215 |
+
#: includes/sc_event-list_helptexts.php:10
|
1216 |
+
#: includes/sc_event-list_helptexts.php:22
|
1217 |
+
msgid "year"
|
1218 |
+
msgstr "Jahr"
|
1219 |
+
|
1220 |
+
#: includes/sc_event-list_helptexts.php:11
|
1221 |
msgid ""
|
1222 |
+
"This attribute defines which events are initially shown. The default is to "
|
1223 |
+
"show the upcoming events only."
|
1224 |
+
msgstr "Dieses Attribut bestimmt die Termine, die anfänglich angezeigt werden. Der Standard ist nur die Anzeige der anstehenden Termine."
|
1225 |
|
1226 |
+
#: includes/sc_event-list_helptexts.php:12
|
1227 |
+
#, php-format
|
1228 |
msgid ""
|
1229 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1230 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1231 |
+
msgstr "Durch die Angabe eines Jahres (z.B. %1$s) kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich den angezeigten Datumsbereich über die Filter-Leiste zu ändern."
|
1232 |
+
|
1233 |
+
#: includes/sc_event-list_helptexts.php:14
|
1234 |
+
msgid "category slug"
|
1235 |
+
msgstr "Kategorie-Slug"
|
1236 |
|
1237 |
+
#: includes/sc_event-list_helptexts.php:15
|
1238 |
msgid ""
|
1239 |
+
"This attribute defines the category of which events are initially shown. The"
|
1240 |
+
" default is to show events of all categories."
|
1241 |
+
msgstr "Dieses Attribut definiert die Kategorien, aus denen die Termine anfänglich angezeigt werden. Standardmäßig werden die Termine aus allen Kategorien angezeigt."
|
1242 |
|
1243 |
+
#: includes/sc_event-list_helptexts.php:16
|
1244 |
msgid ""
|
1245 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1246 |
+
"change the displayed categories via the filterbar or url parameters."
|
1247 |
+
msgstr "Durch die Angabe eine Kategorie-Slugs kann dieses Verhalten geändert werden. Es ist trotzdem noch möglich die angezeigten Kategorien über die Filter-Leiste zu ändern."
|
1248 |
+
|
1249 |
+
#: includes/sc_event-list_helptexts.php:19
|
1250 |
+
msgid "This attribute defines the initial order of the events."
|
1251 |
+
msgstr "Dieses Attribut definiert die anfängliche Sortierung der Termine."
|
1252 |
|
1253 |
+
#: includes/sc_event-list_helptexts.php:20
|
1254 |
msgid ""
|
1255 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1256 |
+
"in the opposite direction (from new to old)."
|
1257 |
+
msgstr "Mit %1$s (Standardwert) werden die Termine von alt nach neu sortiert, durch die Angabe von %2$s in der umgekehrten Reihenfolge (von neu nach alt)."
|
|
|
1258 |
|
1259 |
+
#: includes/sc_event-list_helptexts.php:23
|
1260 |
+
#, php-format
|
1261 |
msgid ""
|
1262 |
+
"This attribute defines the dates and date ranges of which events are "
|
1263 |
+
"displayed. The default is %1$s to show all events."
|
1264 |
+
msgstr "Dieses Attribut definiert die Datumsbereiche, aus denen die Termine angezeigt werden. Standardmäßig wird %1$s verwendet um alle Termine anzuzeigen."
|
|
|
1265 |
|
1266 |
+
#: includes/sc_event-list_helptexts.php:24
|
1267 |
+
#, php-format
|
1268 |
msgid ""
|
1269 |
+
"Filtered events according to %1$s value are not available in the event list."
|
1270 |
+
msgstr "Gefilterte Termine aufgrund des Wertes von %1$s sind in der Termin-Liste nicht verfügbar."
|
1271 |
+
|
1272 |
+
#: includes/sc_event-list_helptexts.php:25
|
1273 |
+
#, php-format
|
1274 |
+
msgid ""
|
1275 |
+
"You can find all available values with a description and examples in the "
|
1276 |
+
"sections %1$s and %2$s below."
|
1277 |
+
msgstr "Alle möglichen Angaben mit Beschreibungen und Beispielen sind unten stehend in den Abschnitten %1$s und %2$s zu finden."
|
1278 |
+
|
1279 |
+
#: includes/sc_event-list_helptexts.php:26
|
1280 |
+
#, php-format
|
1281 |
+
msgid "See %1$s description if you want to define complex filters."
|
1282 |
+
msgstr "Siehe die Beschreibung zu %1$s um komplexe Filter zu definieren."
|
1283 |
+
|
1284 |
+
#: includes/sc_event-list_helptexts.php:28
|
1285 |
+
msgid "category slugs"
|
1286 |
+
msgstr "Kategorie-Slugs"
|
1287 |
+
|
1288 |
+
#: includes/sc_event-list_helptexts.php:29
|
1289 |
+
msgid ""
|
1290 |
+
"This attribute defines the category filter which filters the events to show."
|
1291 |
+
" The default is $1$s or an empty string to show all events."
|
1292 |
+
msgstr "Dieses Attribute definiert den Kategorien-Filter für die angezeigten Termine. Der Standard-Wert ist %1$s oder ein leerer String, mit dem alle Termine angezeigt werden."
|
1293 |
+
|
1294 |
+
#: includes/sc_event-list_helptexts.php:30
|
1295 |
+
#, php-format
|
1296 |
+
msgid ""
|
1297 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1298 |
+
"list. They are also not available if a manual url parameter is added."
|
1299 |
+
msgstr "Termine mit Kategorien, die nicht auf den Filter von %1$s passen, werden in der Termin-Liste nicht angezeigt. Diese sind auch nicht über die Angabe eines manuellen URL-Parameter verfügbar."
|
1300 |
+
|
1301 |
+
#: includes/sc_event-list_helptexts.php:31
|
1302 |
+
#, php-format
|
1303 |
+
msgid ""
|
1304 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1305 |
+
"if you want to define complex filters."
|
1306 |
+
msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. "
|
1307 |
|
1308 |
+
#: includes/sc_event-list_helptexts.php:33
|
1309 |
+
#: includes/sc_event-list_helptexts.php:76
|
1310 |
+
#: includes/sc_event-list_helptexts.php:91
|
1311 |
+
#: includes/sc_event-list_helptexts.php:106
|
1312 |
msgid "number"
|
1313 |
+
msgstr "Nummer"
|
1314 |
|
1315 |
+
#: includes/sc_event-list_helptexts.php:34
|
1316 |
+
#, php-format
|
1317 |
+
msgid ""
|
1318 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1319 |
+
"events is selected. With the default value %1$s all events will be "
|
1320 |
+
"displayed."
|
1321 |
+
msgstr "Dieses Attribut definiert wie viele Termine angezeigt werden sollen, wenn nur anstehende Termine angezeigt werden. Mit dem Standardwert %1$s werden alle Termine angezeigt."
|
1322 |
+
|
1323 |
+
#: includes/sc_event-list_helptexts.php:35
|
1324 |
+
msgid ""
|
1325 |
+
"Please not that in the actual version there is no pagination of the events "
|
1326 |
+
"available, so the event list can be very long."
|
1327 |
+
msgstr "Bitte beachte, dass in der aktuellen Version keine Pagination der Termine verfügbar ist, die Termin-Liste kann dadurch ziemlich lange sein."
|
1328 |
+
|
1329 |
+
#: includes/sc_event-list_helptexts.php:38
|
1330 |
+
msgid ""
|
1331 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1332 |
+
"allows the users to specify filters for the listed events."
|
1333 |
+
msgstr "Dieses Attribut definiert, ob die Filter-Leiste angezeigt wird. Die Filter-Liste erlaubt es dem Anwender die Termin-Liste zu filtern."
|
1334 |
+
|
1335 |
+
#: includes/sc_event-list_helptexts.php:39
|
1336 |
+
#, php-format
|
1337 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1338 |
+
msgstr "Wähle %1$s um die Filter-Leiste immer zu verstecken und %2$s um sie immer anzuzeigen."
|
1339 |
+
|
1340 |
+
#: includes/sc_event-list_helptexts.php:40
|
1341 |
+
#, php-format
|
1342 |
+
msgid ""
|
1343 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1344 |
+
" in the single event view."
|
1345 |
+
msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht."
|
1346 |
+
|
1347 |
+
#: includes/sc_event-list_helptexts.php:77
|
1348 |
+
#: includes/sc_event-list_helptexts.php:92
|
1349 |
msgid ""
|
1350 |
"This attribute specifies if the title should be truncated to the given "
|
1351 |
"number of characters in the event list."
|
1352 |
+
msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll."
|
1353 |
|
1354 |
+
#: includes/sc_event-list_helptexts.php:78
|
1355 |
+
#: includes/sc_event-list_helptexts.php:93
|
1356 |
#, php-format
|
1357 |
msgid ""
|
1358 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1359 |
"is automatically truncated via css."
|
1360 |
+
msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt."
|
1361 |
|
1362 |
+
#: includes/sc_event-list_helptexts.php:79
|
1363 |
+
#: includes/sc_event-list_helptexts.php:94
|
1364 |
+
#: includes/sc_event-list_helptexts.php:109
|
1365 |
msgid "This attribute has no influence if only a single event is shown."
|
1366 |
+
msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
|
1367 |
|
1368 |
+
#: includes/sc_event-list_helptexts.php:82
|
1369 |
msgid ""
|
1370 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1371 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1372 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: includes/sc_event-list_helptexts.php:87
|
1376 |
msgid ""
|
1377 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1378 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1379 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/sc_event-list_helptexts.php:97
|
1383 |
msgid ""
|
1384 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1385 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1386 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: includes/sc_event-list_helptexts.php:102
|
1390 |
msgid ""
|
1391 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1392 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1393 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/sc_event-list_helptexts.php:107
|
1397 |
msgid ""
|
1398 |
"This attribute specifies if the details should be truncate to the given "
|
1399 |
"number of characters in the event list."
|
1400 |
+
msgstr "Dieses Attribut bestimmt, ob die Beschreibung in der Terminliste auf die angegebene Anzahl Zeichen gekürzt werden soll."
|
1401 |
|
1402 |
+
#: includes/sc_event-list_helptexts.php:108
|
1403 |
#, php-format
|
1404 |
msgid "With the standard value %1$s the full text is displayed."
|
1405 |
+
msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
|
1406 |
|
1407 |
+
#: includes/sc_event-list_helptexts.php:112
|
1408 |
msgid ""
|
1409 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1410 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1412 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: includes/sc_event-list_helptexts.php:118
|
1416 |
msgid ""
|
1417 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1418 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1420 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: includes/sc_event-list_helptexts.php:124
|
1424 |
msgid ""
|
1425 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1426 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1429 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: includes/sc_event-list_helptexts.php:130
|
1433 |
msgid ""
|
1434 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1435 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1436 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: includes/sc_event-list_helptexts.php:137
|
1440 |
msgid ""
|
1441 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1442 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: includes/sc_event-list.php:138
|
1446 |
msgid "Event Information:"
|
1447 |
msgstr "Termin Informationen:"
|
1448 |
|
1449 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1450 |
msgid "This option defines the displayed title for the widget."
|
1451 |
msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
|
1452 |
|
1453 |
+
#: includes/widget_helptexts.php:15
|
1454 |
msgid "Category Filter"
|
1455 |
msgstr "Kategoriefilter"
|
1456 |
|
1457 |
+
#: includes/widget_helptexts.php:17
|
1458 |
msgid ""
|
1459 |
"This option defines the categories of which events are shown. The standard "
|
1460 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1463 |
"all possibilities."
|
1464 |
msgstr "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten."
|
1465 |
|
1466 |
+
#: includes/widget_helptexts.php:22
|
1467 |
msgid "Number of listed events"
|
1468 |
msgstr "Anzahl der angezeigten Termine"
|
1469 |
|
1470 |
+
#: includes/widget_helptexts.php:24
|
1471 |
msgid "The number of upcoming events to display"
|
1472 |
msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
|
1473 |
|
1474 |
+
#: includes/widget_helptexts.php:29
|
1475 |
msgid "Truncate event title to"
|
1476 |
msgstr "Kürze den Termin-Titel auf"
|
1477 |
|
1478 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1479 |
+
#: includes/widget_helptexts.php:67
|
|
|
1480 |
msgid "characters"
|
1481 |
msgstr "Buchstaben"
|
1482 |
|
1483 |
+
#: includes/widget_helptexts.php:31
|
1484 |
msgid ""
|
1485 |
"This option defines the number of displayed characters for the event title."
|
1486 |
+
msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest."
|
1487 |
|
1488 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1489 |
#, php-format
|
1490 |
msgid ""
|
1491 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1492 |
"automatically truncate the text via css."
|
1493 |
+
msgstr "Setze den Wert auf %1$s, um den gesamten Text anzuzeigen, oder auf %2$s um den Text automatisch via CSS zu kürzen."
|
1494 |
|
1495 |
+
#: includes/widget_helptexts.php:37
|
1496 |
msgid "Show event starttime"
|
1497 |
msgstr "Zeige die Termin-Uhrzeit"
|
1498 |
|
1499 |
+
#: includes/widget_helptexts.php:39
|
1500 |
msgid "This option defines if the event start time will be displayed."
|
1501 |
msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
|
1502 |
|
1503 |
+
#: includes/widget_helptexts.php:44
|
1504 |
msgid "Show event location"
|
1505 |
msgstr "Zeige den Termin-Ort"
|
1506 |
|
1507 |
+
#: includes/widget_helptexts.php:46
|
1508 |
msgid "This option defines if the event location will be displayed."
|
1509 |
msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
|
1510 |
|
1511 |
+
#: includes/widget_helptexts.php:51
|
1512 |
msgid "Truncate location to"
|
1513 |
msgstr "Kürze den Ort auf"
|
1514 |
|
1515 |
+
#: includes/widget_helptexts.php:53
|
1516 |
msgid ""
|
1517 |
"If the event location is diplayed this option defines the number of "
|
1518 |
"displayed characters."
|
1519 |
+
msgstr "Wenn die Termin-Ort angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
|
1520 |
|
1521 |
+
#: includes/widget_helptexts.php:59
|
1522 |
msgid "Show event details"
|
1523 |
msgstr "Zeige die Termin-Beschreibung"
|
1524 |
|
1525 |
+
#: includes/widget_helptexts.php:61
|
1526 |
msgid "This option defines if the event details will be displayed."
|
1527 |
msgstr "Diese Option definiert, ob die Beschreibung des Termins angezeigt wird."
|
1528 |
|
1529 |
+
#: includes/widget_helptexts.php:66
|
1530 |
msgid "Truncate details to"
|
1531 |
msgstr "Kürze Beschreibung auf"
|
1532 |
|
1533 |
+
#: includes/widget_helptexts.php:68
|
1534 |
msgid ""
|
1535 |
"If the event details are diplayed this option defines the number of diplayed"
|
1536 |
" characters."
|
1537 |
+
msgstr "Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest."
|
1538 |
|
1539 |
+
#: includes/widget_helptexts.php:69
|
1540 |
#, php-format
|
1541 |
msgid "Set this value to %1$s to view the full text."
|
1542 |
+
msgstr "Wird der Wert auf %1$s gesetzt, wird der gesamte Text angezeigt."
|
1543 |
|
1544 |
+
#: includes/widget_helptexts.php:74
|
1545 |
msgid "URL to the linked Event List page"
|
1546 |
msgstr "URL zur verlinkten Event List Seite"
|
1547 |
|
1548 |
+
#: includes/widget_helptexts.php:76
|
1549 |
msgid ""
|
1550 |
"This option defines the url to the linked Event List page. This option is "
|
1551 |
"required if you want to use one of the options below."
|
1552 |
msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
|
1553 |
|
1554 |
+
#: includes/widget_helptexts.php:81
|
1555 |
msgid "Shortcode ID on linked page"
|
1556 |
msgstr "Shortcode ID auf der verlinkten Seite"
|
1557 |
|
1558 |
+
#: includes/widget_helptexts.php:83
|
1559 |
msgid ""
|
1560 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1561 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1562 |
"use multiple event-list shortcodes on the linked page."
|
1563 |
msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
|
1564 |
|
1565 |
+
#: includes/widget_helptexts.php:90
|
1566 |
msgid ""
|
1567 |
"With this option you can add a link to the single event page for every "
|
1568 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1569 |
"id option if you want to use it."
|
1570 |
msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
|
1571 |
|
1572 |
+
#: includes/widget_helptexts.php:97
|
1573 |
msgid ""
|
1574 |
"With this option you can add a link to the event-list page below the "
|
1575 |
"diplayed events. You have to specify the url to page option if you want to "
|
1576 |
"use it."
|
1577 |
msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
|
1578 |
|
1579 |
+
#: includes/widget_helptexts.php:102
|
1580 |
msgid "Caption for the link"
|
1581 |
msgstr "Anzuzeigender Text für den Link"
|
1582 |
|
1583 |
+
#: includes/widget_helptexts.php:104
|
1584 |
msgid ""
|
1585 |
"This option defines the text for the link to the Event List page if the "
|
1586 |
"approriate option is selected."
|
1587 |
msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
|
1588 |
|
1589 |
+
#: includes/widget.php:20
|
1590 |
msgid "With this widget a list of upcoming events can be displayed."
|
1591 |
msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
|
1592 |
|
1593 |
+
#: includes/widget.php:25
|
1594 |
msgid "Upcoming events"
|
1595 |
msgstr "Anstehende Termine"
|
1596 |
|
1597 |
+
#: includes/widget.php:38
|
1598 |
msgid "show events page"
|
1599 |
msgstr "öffne den Kalender"
|
Binary file
|
@@ -1,15 +1,15 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Gustavo Baranovsky <epromd@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
-
"Report-Msgid-Bugs-To:
|
11 |
-
"POT-Creation-Date: 2017-
|
12 |
-
"PO-Revision-Date: 2017-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -18,1215 +18,1389 @@ msgstr ""
|
|
18 |
"Language: es_AR\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
-
#:
|
22 |
msgid "Event List"
|
23 |
msgstr "Listado de Eventos"
|
24 |
|
25 |
-
#: /
|
26 |
-
#: /
|
27 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
28 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
29 |
msgid "Events"
|
30 |
msgstr "Eventos"
|
31 |
|
32 |
-
#:
|
33 |
msgid "All Events"
|
34 |
msgstr "Todos los Eventos"
|
35 |
|
36 |
-
#: /
|
37 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
38 |
msgid "Add New Event"
|
39 |
msgstr "Agregar un Nuevo Evento"
|
40 |
|
41 |
-
#: /
|
42 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
43 |
msgid "Add New"
|
44 |
msgstr "Agregar Nuevo"
|
45 |
|
46 |
-
#: /
|
47 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
48 |
msgid "Event List Categories"
|
49 |
msgstr "Listado de Categorías de Eventos"
|
50 |
|
51 |
-
#: /
|
52 |
-
#:
|
53 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
54 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
55 |
msgid "Categories"
|
56 |
msgstr "Categorías"
|
57 |
|
58 |
-
#: /
|
59 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
60 |
msgid "Event List Settings"
|
61 |
msgstr "Configuraciones del Listado de Eventos"
|
62 |
|
63 |
-
#:
|
64 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
65 |
msgid "Settings"
|
66 |
msgstr "Configuraciones"
|
67 |
|
68 |
-
#: /
|
69 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
70 |
msgid "About Event List"
|
71 |
msgstr "Sobre Listado de Eventos"
|
72 |
|
73 |
-
#:
|
74 |
msgid "About"
|
75 |
msgstr "Sobre"
|
76 |
|
77 |
-
#: /
|
78 |
-
|
79 |
-
|
80 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
81 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
82 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
83 |
-
msgid "You do not have sufficient permissions to access this page."
|
84 |
-
msgstr "Usted no tiene suficientes permisos para acceder a esta página."
|
85 |
|
86 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
87 |
msgid "Help and Instructions"
|
88 |
msgstr "Ayuda e Instrucciones"
|
89 |
|
90 |
-
#:
|
91 |
#, php-format
|
92 |
-
msgid "You can manage
|
93 |
-
msgstr "
|
94 |
|
95 |
-
#:
|
96 |
msgid "To show the events on your site you have 2 possibilities"
|
97 |
msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades"
|
98 |
|
99 |
-
#:
|
100 |
#, php-format
|
101 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
102 |
msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio"
|
103 |
|
104 |
-
#:
|
105 |
#, php-format
|
106 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
107 |
msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral"
|
108 |
|
109 |
-
#:
|
110 |
msgid ""
|
111 |
"The displayed events and their style can be modified with the available "
|
112 |
"widget settings and the available attributes for the shortcode."
|
113 |
msgstr "El evento listado, y su estilo, pueden ser modificados mediante las configuraciones disponibles del widget, como así tambien los atributos disponibles para su atajo."
|
114 |
|
115 |
-
#:
|
|
|
116 |
msgid ""
|
117 |
-
"A list of all available shortcode attributes with their
|
118 |
-
"available
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#:
|
122 |
msgid "The available widget options are described in their tooltip text."
|
123 |
msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información."
|
124 |
|
125 |
-
#:
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
-
"
|
129 |
-
"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#:
|
133 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
134 |
msgid "Add links to the single events"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
138 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
139 |
msgid "Add a link to the Event List page"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
#, php-format
|
144 |
msgid ""
|
145 |
-
"
|
146 |
-
"
|
147 |
-
"
|
|
|
|
|
|
|
|
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
-
"Be sure to also check the %1$
|
154 |
-
"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgid ""
|
163 |
"You have the possibility to modify the output if you add some of the "
|
164 |
"following attributes to the shortcode."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#:
|
168 |
#, php-format
|
169 |
msgid ""
|
170 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
171 |
"including the attributes %1$s and %2$s would looks like this:"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
msgid ""
|
176 |
"Below you can find a list of all supported attributes with their "
|
177 |
"descriptions and available options:"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#:
|
181 |
msgid "Attribute name"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#:
|
185 |
msgid "Value options"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#:
|
189 |
msgid "Default value"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: /
|
193 |
-
#:
|
194 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
195 |
msgid "Description"
|
196 |
msgstr "Descripción"
|
197 |
|
198 |
-
#:
|
|
|
199 |
msgid "Filter Syntax"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#:
|
203 |
msgid ""
|
204 |
"For date and cat filters you can specify complex filters with the following "
|
205 |
"syntax:"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#:
|
209 |
#, php-format
|
210 |
msgid ""
|
211 |
"You can use %1$s and %2$s connections to define complex filters. "
|
212 |
"Additionally you can set brackets %3$s for nested queries."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#:
|
216 |
msgid "AND"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#:
|
220 |
msgid "OR"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#:
|
224 |
msgid "or"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#:
|
228 |
msgid "and"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#:
|
232 |
msgid "Examples for cat filters:"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#:
|
236 |
#, php-format
|
237 |
msgid "Show all events with category %1$s."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#:
|
241 |
#, php-format
|
242 |
msgid "Show all events with category %1$s or %2$s."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"Show all events with category %1$s and all events where category %2$s as "
|
249 |
"well as %3$s is selected."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#:
|
253 |
msgid "Available Date Formats"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#:
|
257 |
msgid "For date filters you can use the following date formats:"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#:
|
261 |
msgid "Available Date Range Formats"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#:
|
265 |
msgid "For date filters you can use the following daterange formats:"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#:
|
269 |
msgid "Value"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#:
|
273 |
msgid "Example"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#:
|
277 |
msgid "Edit Category"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#:
|
281 |
msgid "Update Category"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#:
|
285 |
msgid "Add New Category"
|
286 |
msgstr "Agregar una nueva Categoría"
|
287 |
|
288 |
-
#:
|
289 |
#, php-format
|
290 |
msgid "Category \"%s\" deleted."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
#, php-format
|
295 |
msgid "This Category was also removed from %d events."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#:
|
299 |
#, php-format
|
300 |
msgid "Error while deleting category \"%s\""
|
301 |
msgstr ""
|
302 |
|
303 |
-
#:
|
304 |
msgid "Sync with post categories enabled."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#:
|
308 |
msgid "Sync with post categories disabled."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
312 |
msgid "Manual sync with post categories sucessfully finished."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#:
|
316 |
#, php-format
|
317 |
msgid "New Category \"%s\" was added"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#:
|
321 |
#, php-format
|
322 |
msgid "Error: New Category \"%s\" could not be added"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#:
|
326 |
#, php-format
|
327 |
msgid "Category \"%s\" was modified"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#:
|
331 |
#, php-format
|
332 |
msgid "Error: Category \"%s\" could not be modified"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#:
|
336 |
-
msgid ""
|
337 |
-
"Categories are automatically synced with the post categories.<br />\n"
|
338 |
-
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
339 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#:
|
343 |
-
|
344 |
-
|
345 |
-
|
|
|
346 |
|
347 |
-
#:
|
348 |
-
msgid "
|
|
|
349 |
msgstr ""
|
350 |
|
351 |
-
#:
|
352 |
-
|
353 |
-
msgid "Slug"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#:
|
357 |
msgid ""
|
358 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
359 |
"lowercase and contains only letters, numbers, and hyphens."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#:
|
363 |
-
msgid "Parent"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
367 |
-
msgid "None"
|
368 |
-
msgstr "Ninguno"
|
369 |
-
|
370 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
371 |
msgid ""
|
372 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
373 |
"that have children categories for Bebop and Big Band. Totally optional."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#:
|
377 |
msgid "Apply"
|
378 |
msgstr "Aplicar"
|
379 |
|
380 |
-
#:
|
381 |
msgid "Do a manual sync with post categories"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#:
|
385 |
msgid "Import Events"
|
386 |
msgstr "Importar Eventos"
|
387 |
|
388 |
-
#: /
|
389 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
390 |
msgid "Step"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#:
|
394 |
msgid "Set import file and options"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#:
|
398 |
-
|
|
|
399 |
msgstr ""
|
400 |
|
401 |
-
#:
|
402 |
msgid "Example file"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#:
|
406 |
#, php-format
|
407 |
msgid ""
|
408 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#:
|
412 |
msgid "Note"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#:
|
416 |
msgid ""
|
417 |
"Do not change the column header and separator line (first two lines), "
|
418 |
"otherwise the import will fail!"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: /
|
422 |
-
#:
|
423 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
424 |
msgid "Sorry, there has been an error."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
msgid "The file does not exist, please try again."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#:
|
432 |
msgid "The file is not a CSV file."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
436 |
-
msgid "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#:
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
|
445 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
msgid "Import with errors!"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#:
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
"An error occurred during import! Please send your import file to %1$sthe "
|
453 |
"administrator%2$s for analysis."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#:
|
457 |
msgid "Import successful!"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#:
|
461 |
msgid "Go back to All Events"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: /
|
465 |
-
#:
|
466 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
467 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
468 |
msgid "Title"
|
469 |
msgstr "Título"
|
470 |
|
471 |
-
#:
|
472 |
msgid "Start Date"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#:
|
476 |
msgid "End Date"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: /
|
480 |
-
#: /
|
481 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
482 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
483 |
msgid "Time"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: /
|
487 |
-
#:
|
488 |
-
#:
|
489 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
490 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
491 |
msgid "Location"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: /
|
495 |
-
#:
|
496 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
497 |
msgid "Details"
|
498 |
msgstr "Detalles"
|
499 |
|
500 |
-
#:
|
501 |
-
msgid "
|
502 |
msgstr ""
|
503 |
|
504 |
-
#:
|
505 |
-
|
506 |
-
msgid "
|
507 |
-
|
508 |
-
|
509 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
|
510 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
|
511 |
-
msgid "No categories available."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: /
|
|
|
|
|
|
|
|
|
515 |
msgid "Edit Event"
|
516 |
msgstr "Editar Evento"
|
517 |
|
518 |
-
#:
|
519 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
520 |
msgid "Duplicate"
|
521 |
msgstr "Duplicar"
|
522 |
|
523 |
-
#:
|
524 |
#, php-format
|
525 |
msgid "Duplicate of event id:%d"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: /
|
529 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
530 |
msgid "required"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#:
|
534 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
535 |
msgid "Date"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#:
|
539 |
msgid "Multi-Day Event"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: /
|
543 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
544 |
msgid "Publish"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#:
|
548 |
msgid "Update"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
552 |
-
msgid "
|
553 |
-
msgstr ""
|
554 |
|
555 |
-
#:
|
556 |
-
|
557 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
559 |
-
msgid "Y/m/d"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#:
|
563 |
-
msgid "Settings
|
564 |
msgstr ""
|
565 |
|
566 |
-
#:
|
567 |
-
|
568 |
-
msgid "General"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#:
|
572 |
msgid "Frontend Settings"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#:
|
576 |
msgid "Admin Page Settings"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#:
|
580 |
msgid "Feed Settings"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /
|
584 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
585 |
msgid "event"
|
586 |
msgstr "evento"
|
587 |
|
588 |
-
#: /
|
589 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
590 |
msgid "events"
|
591 |
msgstr "eventos"
|
592 |
|
593 |
-
#: /
|
594 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
595 |
msgid "Edit"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: /
|
599 |
-
#: /
|
600 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
601 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
602 |
msgid "Delete"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
msgid "Author"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#:
|
610 |
msgid "Published"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#:
|
614 |
msgid "Filter"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#:
|
618 |
#, php-format
|
619 |
msgid "%s ago"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#:
|
623 |
-
msgid "Y/m/d g:i:s A"
|
624 |
-
msgstr ""
|
625 |
-
|
626 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
627 |
msgid "Year"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#:
|
631 |
msgid "A year can be specified in 4 digit format."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: /
|
635 |
-
#:
|
636 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
637 |
#, php-format
|
638 |
msgid ""
|
639 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
640 |
"last day."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#:
|
644 |
msgid "the resulting year"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#:
|
648 |
msgid "Month"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#:
|
652 |
msgid ""
|
653 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
654 |
"month, seperated by a hyphen (-)."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#:
|
658 |
msgid "the resulting month"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#:
|
662 |
msgid "Day"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#:
|
666 |
msgid ""
|
667 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
668 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#:
|
672 |
msgid "Relative Year"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: /
|
676 |
-
#: /
|
677 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
678 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
679 |
#, php-format
|
680 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#:
|
684 |
msgid "A relative year"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: /
|
688 |
-
#: /
|
689 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
690 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
691 |
#, php-format
|
692 |
msgid ""
|
693 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
694 |
"%3$s or %4$s attached (see also the example below)."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#:
|
698 |
msgid "number of years"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: /
|
702 |
-
#: /
|
703 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
704 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
705 |
#, php-format
|
706 |
msgid "Additionally the following values are available: %1$s"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#:
|
710 |
msgid "Relative Month"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#:
|
714 |
msgid "A relative month"
|
715 |
msgstr ""
|
716 |
|
717 |
-
#:
|
718 |
msgid "number of months"
|
719 |
msgstr ""
|
720 |
|
721 |
-
#:
|
722 |
msgid "Relative Week"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#:
|
726 |
msgid "A relative week"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#:
|
730 |
msgid "number of weeks"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#:
|
734 |
msgid "the resulting week"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#:
|
738 |
#, php-format
|
739 |
msgid ""
|
740 |
"The first day of the week is depending on the option %1$s which can be found"
|
741 |
" and changed in %2$s."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#:
|
745 |
-
msgid "Week Starts On"
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
749 |
msgid "Relative Day"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#:
|
753 |
msgid "A relative day"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#:
|
757 |
msgid "number of days"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
msgid "Date range"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#:
|
765 |
msgid ""
|
766 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
767 |
"\t For the start and end date any available date format can be used."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#:
|
771 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
772 |
-
msgid "All"
|
773 |
-
msgstr "Todos"
|
774 |
-
|
775 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
776 |
msgid "This value defines a range without any limits."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: /
|
780 |
-
#:
|
781 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
782 |
#, php-format
|
783 |
msgid "The corresponding date_range format is: %1$s"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#:
|
787 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
788 |
msgid "Upcoming"
|
789 |
msgstr "Próximos"
|
790 |
|
791 |
-
#:
|
792 |
msgid "This value defines a range from the actual day to the future."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#:
|
796 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
797 |
msgid "Past"
|
798 |
msgstr "Pasado"
|
799 |
|
800 |
-
#:
|
801 |
msgid "This value defines a range from the past to the previous day."
|
802 |
msgstr ""
|
803 |
|
804 |
-
#:
|
|
|
|
|
|
|
|
|
805 |
msgid "Show all dates"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#:
|
809 |
msgid "Show all categories"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#:
|
813 |
-
msgid "Event Categories"
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
817 |
-
msgid "This option specifies all event category data."
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
821 |
msgid "Sync Categories"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#:
|
825 |
msgid "Keep event categories in sync with post categories automatically"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#:
|
829 |
msgid "Attention"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#:
|
833 |
msgid ""
|
834 |
"Please note that this option will delete all categories which are not "
|
835 |
"available in the post categories! Existing Categories with the same slug "
|
836 |
"will be updated."
|
837 |
msgstr ""
|
838 |
|
839 |
-
#:
|
840 |
msgid "CSV File to import"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#:
|
844 |
msgid "Please select the file which contains the event data in CSV format."
|
845 |
msgstr ""
|
846 |
|
847 |
-
#:
|
848 |
msgid "Used date format"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#:
|
852 |
msgid ""
|
853 |
"With this option the used date format for event start and end date given in "
|
854 |
"the CSV file can be specified."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#:
|
858 |
msgid "Text for no events"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#:
|
862 |
msgid ""
|
863 |
"This option defines the displayed text when no events are available for the "
|
864 |
"selected view."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#:
|
868 |
msgid "Multiday filter range"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#:
|
872 |
msgid "Use the complete event range in the date filter"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#:
|
876 |
msgid ""
|
877 |
"This option defines if the complete range of a multiday event shall be "
|
878 |
"considered in the date filter."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#:
|
882 |
msgid ""
|
883 |
"If disabled, only the start day of an event is considered in the filter."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#:
|
887 |
msgid ""
|
888 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
889 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
890 |
"but it is hidden when the option is disabled."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#:
|
894 |
msgid "Date display"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#:
|
898 |
msgid "Show the date only once per day"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#:
|
902 |
msgid ""
|
903 |
"With this option enabled the date is only displayed once per day if more "
|
904 |
"than one event is available on the same day."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#:
|
908 |
msgid ""
|
909 |
"If enabled, the events are ordered in a different way (end date before start"
|
910 |
" time) to allow using the same date for as much events as possible."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#:
|
914 |
msgid "HTML tags"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: /
|
918 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
919 |
#, php-format
|
920 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: /
|
924 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
925 |
#, php-format
|
926 |
msgid ""
|
927 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
msgid "Text for \"Show details\""
|
932 |
msgstr ""
|
933 |
|
934 |
-
#:
|
935 |
msgid ""
|
936 |
"With this option the displayed text for the link to show the event details "
|
937 |
"can be changed, when collapsing is enabled."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#:
|
941 |
msgid "Text for \"Hide details\""
|
942 |
msgstr ""
|
943 |
|
944 |
-
#:
|
945 |
msgid ""
|
946 |
"With this option the displayed text for the link to hide the event details "
|
947 |
"can be changed, when collapsing is enabled."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#:
|
951 |
msgid "Disable CSS file"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#:
|
955 |
#, php-format
|
956 |
msgid "Disable the %1$s file."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
#, php-format
|
961 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#:
|
965 |
msgid ""
|
966 |
"This normally only make sense if you have css conflicts with your theme and "
|
967 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#:
|
971 |
msgid "Date format in edit form"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#:
|
975 |
msgid ""
|
976 |
"This option sets the displayed date format for the event date fields in the "
|
977 |
"event new / edit form."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#:
|
981 |
-
msgid "The
|
982 |
msgstr ""
|
983 |
|
984 |
-
#:
|
985 |
#, php-format
|
986 |
msgid ""
|
987 |
"All available options to specify the date format can be found %1$shere%2$s."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: /
|
991 |
msgid "Enable RSS feed"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#:
|
995 |
msgid "Enable support for an event RSS feed"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#:
|
|
|
|
|
|
|
|
|
999 |
msgid ""
|
1000 |
-
"
|
1001 |
-
"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#:
|
1005 |
msgid "Feed name"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgid ""
|
1010 |
-
"This
|
1011 |
-
"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
msgid "Feed Description"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid ""
|
1020 |
-
"This
|
1021 |
-
"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Listed events"
|
1026 |
msgstr "Eventos Listados"
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "Only show upcoming events in feed"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid ""
|
1034 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1035 |
-
|
|
|
|
|
|
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#:
|
1039 |
msgid "Add RSS feed link in head"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#:
|
1043 |
msgid "Add RSS feed link in the html head"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1047 |
msgid ""
|
1048 |
-
"
|
1049 |
-
"
|
1050 |
-
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
1051 |
-
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
1052 |
-
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgid "Position of the RSS feed link"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1060 |
msgid ""
|
1061 |
-
"This option specifies the position of the RSS feed link in the event list
|
1062 |
-
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1063 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1067 |
msgid "Align of the RSS feed link"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
msgid ""
|
1072 |
-
"This option specifies the align of the RSS feed link in the event list
|
1073 |
-
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1074 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#:
|
1078 |
msgid "Feed link text"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1082 |
msgid ""
|
1083 |
-
"
|
1084 |
-
"
|
1085 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#:
|
1089 |
msgid "Feed link image"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#:
|
1093 |
msgid "Show rss image in feed link"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#:
|
1097 |
msgid ""
|
1098 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1099 |
-
"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid "Show details"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
1107 |
msgid "Hide details"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1111 |
msgid ""
|
1112 |
-
"
|
1113 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#:
|
1117 |
msgid ""
|
1118 |
-
"This attribute
|
1119 |
-
"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#:
|
|
|
1123 |
msgid ""
|
1124 |
-
"
|
1125 |
-
"
|
|
|
|
|
|
|
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#:
|
1129 |
msgid ""
|
1130 |
-
"This attribute
|
1131 |
-
"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#:
|
1135 |
msgid ""
|
1136 |
-
"
|
1137 |
-
"
|
1138 |
-
|
1139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#:
|
1143 |
msgid ""
|
1144 |
-
"This attribute
|
1145 |
-
"
|
1146 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#:
|
|
|
1150 |
msgid ""
|
1151 |
-
"
|
1152 |
-
"
|
1153 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#:
|
|
|
1157 |
msgid ""
|
1158 |
-
"
|
1159 |
-
"
|
1160 |
-
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#:
|
1164 |
-
#:
|
1165 |
-
#:
|
|
|
1166 |
msgid "number"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#:
|
1170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1171 |
msgid ""
|
1172 |
"This attribute specifies if the title should be truncated to the given "
|
1173 |
"number of characters in the event list."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
-
#:
|
1178 |
#, php-format
|
1179 |
msgid ""
|
1180 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1181 |
"is automatically truncated via css."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
msgid "This attribute has no influence if only a single event is shown."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#:
|
1191 |
msgid ""
|
1192 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1193 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1194 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#:
|
1198 |
msgid ""
|
1199 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1200 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1201 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#:
|
1205 |
msgid ""
|
1206 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1207 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1208 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#:
|
1212 |
msgid ""
|
1213 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1214 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1215 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#:
|
1219 |
msgid ""
|
1220 |
"This attribute specifies if the details should be truncate to the given "
|
1221 |
"number of characters in the event list."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#:
|
1225 |
#, php-format
|
1226 |
msgid "With the standard value %1$s the full text is displayed."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#:
|
1230 |
msgid ""
|
1231 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1232 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1234,7 +1408,7 @@ msgid ""
|
|
1234 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#:
|
1238 |
msgid ""
|
1239 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1240 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1242,7 +1416,7 @@ msgid ""
|
|
1242 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#:
|
1246 |
msgid ""
|
1247 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1248 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1251,36 +1425,32 @@ msgid ""
|
|
1251 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#:
|
1255 |
msgid ""
|
1256 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1257 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1258 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#:
|
1262 |
msgid ""
|
1263 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1264 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#:
|
1268 |
msgid "Event Information:"
|
1269 |
msgstr "Información del evento:"
|
1270 |
|
1271 |
-
#:
|
1272 |
-
msgid "(more…)"
|
1273 |
-
msgstr ""
|
1274 |
-
|
1275 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1276 |
msgid "This option defines the displayed title for the widget."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#:
|
1280 |
msgid "Category Filter"
|
1281 |
msgstr "Filtro de categoría"
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid ""
|
1285 |
"This option defines the categories of which events are shown. The standard "
|
1286 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1289,139 +1459,137 @@ msgid ""
|
|
1289 |
"all possibilities."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#:
|
1293 |
msgid "Number of listed events"
|
1294 |
msgstr "Cantidad de eventos listados"
|
1295 |
|
1296 |
-
#:
|
1297 |
msgid "The number of upcoming events to display"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
-
#:
|
1301 |
msgid "Truncate event title to"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: /
|
1305 |
-
#:
|
1306 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1307 |
msgid "characters"
|
1308 |
msgstr "caracteres"
|
1309 |
|
1310 |
-
#:
|
1311 |
msgid ""
|
1312 |
"This option defines the number of displayed characters for the event title."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: /
|
1316 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1317 |
#, php-format
|
1318 |
msgid ""
|
1319 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1320 |
"automatically truncate the text via css."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#:
|
1324 |
msgid "Show event starttime"
|
1325 |
msgstr "Mostrar horario de comienzo del evento"
|
1326 |
|
1327 |
-
#:
|
1328 |
msgid "This option defines if the event start time will be displayed."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#:
|
1332 |
msgid "Show event location"
|
1333 |
msgstr "Mostrar localización del evento"
|
1334 |
|
1335 |
-
#:
|
1336 |
msgid "This option defines if the event location will be displayed."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#:
|
1340 |
msgid "Truncate location to"
|
1341 |
msgstr "Recortar la localización a"
|
1342 |
|
1343 |
-
#:
|
1344 |
msgid ""
|
1345 |
"If the event location is diplayed this option defines the number of "
|
1346 |
"displayed characters."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#:
|
1350 |
msgid "Show event details"
|
1351 |
msgstr "Mostrar detalles del evento"
|
1352 |
|
1353 |
-
#:
|
1354 |
msgid "This option defines if the event details will be displayed."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#:
|
1358 |
msgid "Truncate details to"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#:
|
1362 |
msgid ""
|
1363 |
"If the event details are diplayed this option defines the number of diplayed"
|
1364 |
" characters."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#:
|
1368 |
#, php-format
|
1369 |
msgid "Set this value to %1$s to view the full text."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#:
|
1373 |
msgid "URL to the linked Event List page"
|
1374 |
msgstr "Link a la Página del Evento"
|
1375 |
|
1376 |
-
#:
|
1377 |
msgid ""
|
1378 |
"This option defines the url to the linked Event List page. This option is "
|
1379 |
"required if you want to use one of the options below."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#:
|
1383 |
msgid "Shortcode ID on linked page"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid ""
|
1388 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1389 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1390 |
"use multiple event-list shortcodes on the linked page."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#:
|
1394 |
msgid ""
|
1395 |
"With this option you can add a link to the single event page for every "
|
1396 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1397 |
"id option if you want to use it."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#:
|
1401 |
msgid ""
|
1402 |
"With this option you can add a link to the event-list page below the "
|
1403 |
"diplayed events. You have to specify the url to page option if you want to "
|
1404 |
"use it."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#:
|
1408 |
msgid "Caption for the link"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#:
|
1412 |
msgid ""
|
1413 |
"This option defines the text for the link to the Event List page if the "
|
1414 |
"approriate option is selected."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#:
|
1418 |
msgid "With this widget a list of upcoming events can be displayed."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#:
|
1422 |
msgid "Upcoming events"
|
1423 |
msgstr "Eventos próximos"
|
1424 |
|
1425 |
-
#:
|
1426 |
msgid "show events page"
|
1427 |
msgstr "Mostrar página de eventos"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Gustavo Baranovsky <epromd@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
12 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
18 |
"Language: es_AR\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
+
#: admin/admin.php:45
|
22 |
msgid "Event List"
|
23 |
msgstr "Listado de Eventos"
|
24 |
|
25 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
26 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
27 |
msgid "Events"
|
28 |
msgstr "Eventos"
|
29 |
|
30 |
+
#: admin/admin.php:48
|
31 |
msgid "All Events"
|
32 |
msgstr "Todos los Eventos"
|
33 |
|
34 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
35 |
msgid "Add New Event"
|
36 |
msgstr "Agregar un Nuevo Evento"
|
37 |
|
38 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
39 |
msgid "Add New"
|
40 |
msgstr "Agregar Nuevo"
|
41 |
|
42 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
43 |
msgid "Event List Categories"
|
44 |
msgstr "Listado de Categorías de Eventos"
|
45 |
|
46 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
47 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
48 |
msgid "Categories"
|
49 |
msgstr "Categorías"
|
50 |
|
51 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
52 |
msgid "Event List Settings"
|
53 |
msgstr "Configuraciones del Listado de Eventos"
|
54 |
|
55 |
+
#: admin/admin.php:60
|
|
|
56 |
msgid "Settings"
|
57 |
msgstr "Configuraciones"
|
58 |
|
59 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
60 |
msgid "About Event List"
|
61 |
msgstr "Sobre Listado de Eventos"
|
62 |
|
63 |
+
#: admin/admin.php:64
|
64 |
msgid "About"
|
65 |
msgstr "Sobre"
|
66 |
|
67 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
68 |
+
msgid "General"
|
69 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
72 |
+
#: admin/includes/admin-about.php:103
|
73 |
+
msgid "Shortcode Attributes"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: admin/includes/admin-about.php:71
|
77 |
msgid "Help and Instructions"
|
78 |
msgstr "Ayuda e Instrucciones"
|
79 |
|
80 |
+
#: admin/includes/admin-about.php:72
|
81 |
#, php-format
|
82 |
+
msgid "You can manage the events %1$shere%2$s"
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: admin/includes/admin-about.php:73
|
86 |
msgid "To show the events on your site you have 2 possibilities"
|
87 |
msgstr "Para mostrar el evento en su sitio tiene 2 posibilidades"
|
88 |
|
89 |
+
#: admin/includes/admin-about.php:74
|
90 |
#, php-format
|
91 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
92 |
msgstr "Ud. puede colocar <strong>shortcode</strong> %1$s en cualquier página o post, del sitio"
|
93 |
|
94 |
+
#: admin/includes/admin-about.php:75
|
95 |
#, php-format
|
96 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
97 |
msgstr "Usted puede agregar el <strong>widget</strong> %1$s en el menú lateral"
|
98 |
|
99 |
+
#: admin/includes/admin-about.php:76
|
100 |
msgid ""
|
101 |
"The displayed events and their style can be modified with the available "
|
102 |
"widget settings and the available attributes for the shortcode."
|
103 |
msgstr "El evento listado, y su estilo, pueden ser modificados mediante las configuraciones disponibles del widget, como así tambien los atributos disponibles para su atajo."
|
104 |
|
105 |
+
#: admin/includes/admin-about.php:77
|
106 |
+
#, php-format
|
107 |
msgid ""
|
108 |
+
"A list of all available shortcode attributes with their descriptions is "
|
109 |
+
"available in the %1$s tab."
|
110 |
+
msgstr ""
|
111 |
|
112 |
+
#: admin/includes/admin-about.php:78
|
113 |
msgid "The available widget options are described in their tooltip text."
|
114 |
msgstr "Las opciones disponibles para el widget estan descriptas en el texto de información."
|
115 |
|
116 |
+
#: admin/includes/admin-about.php:79
|
117 |
#, php-format
|
118 |
msgid ""
|
119 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
120 |
+
" to insert an URL to the linked event-list page."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
124 |
msgid "Add links to the single events"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
128 |
msgid "Add a link to the Event List page"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin/includes/admin-about.php:80
|
132 |
+
msgid ""
|
133 |
+
"This is required because the widget does not know in which page or post the "
|
134 |
+
"shortcode was included."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin/includes/admin-about.php:81
|
138 |
+
msgid ""
|
139 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
140 |
+
" This id describes which shortcode should be used on the given page or post "
|
141 |
+
"if you have more than one."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: admin/includes/admin-about.php:82
|
145 |
#, php-format
|
146 |
msgid ""
|
147 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
148 |
+
"but if required you can check the id by looking into the URL of an event "
|
149 |
+
"link on your linked page or post."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: admin/includes/admin-about.php:83
|
153 |
+
#, php-format
|
154 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin/includes/admin-about.php:85
|
158 |
#, php-format
|
159 |
msgid ""
|
160 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
161 |
+
"want."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin/includes/admin-about.php:85
|
165 |
+
msgid "Settings page"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: admin/includes/admin-about.php:91
|
169 |
+
msgid "About the plugin author"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: admin/includes/admin-about.php:93
|
173 |
+
#, php-format
|
174 |
+
msgid ""
|
175 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
176 |
+
"plugin on the %2$s."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: admin/includes/admin-about.php:93
|
180 |
+
msgid "wordpress plugin site"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: admin/includes/admin-about.php:94
|
184 |
+
#, php-format
|
185 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin/includes/admin-about.php:94
|
189 |
+
msgid "wordpress plugin review site"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: admin/includes/admin-about.php:95
|
193 |
+
msgid ""
|
194 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: admin/includes/admin-about.php:105
|
198 |
msgid ""
|
199 |
"You have the possibility to modify the output if you add some of the "
|
200 |
"following attributes to the shortcode."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin/includes/admin-about.php:106
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
207 |
"including the attributes %1$s and %2$s would looks like this:"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: admin/includes/admin-about.php:108
|
211 |
msgid ""
|
212 |
"Below you can find a list of all supported attributes with their "
|
213 |
"descriptions and available options:"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin/includes/admin-about.php:122
|
217 |
msgid "Attribute name"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin/includes/admin-about.php:123
|
221 |
msgid "Value options"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin/includes/admin-about.php:124
|
225 |
msgid "Default value"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
229 |
+
#: admin/includes/category_table.php:108
|
|
|
230 |
msgid "Description"
|
231 |
msgstr "Descripción"
|
232 |
|
233 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
234 |
+
#: includes/sc_event-list_helptexts.php:31
|
235 |
msgid "Filter Syntax"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin/includes/admin-about.php:144
|
239 |
msgid ""
|
240 |
"For date and cat filters you can specify complex filters with the following "
|
241 |
"syntax:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin/includes/admin-about.php:145
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"You can use %1$s and %2$s connections to define complex filters. "
|
248 |
"Additionally you can set brackets %3$s for nested queries."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/includes/admin-about.php:145
|
252 |
msgid "AND"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin/includes/admin-about.php:145
|
256 |
msgid "OR"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:145
|
260 |
msgid "or"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/includes/admin-about.php:145
|
264 |
msgid "and"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: admin/includes/admin-about.php:146
|
268 |
msgid "Examples for cat filters:"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin/includes/admin-about.php:147
|
272 |
#, php-format
|
273 |
msgid "Show all events with category %1$s."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin/includes/admin-about.php:148
|
277 |
#, php-format
|
278 |
msgid "Show all events with category %1$s or %2$s."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin/includes/admin-about.php:149
|
282 |
#, php-format
|
283 |
msgid ""
|
284 |
"Show all events with category %1$s and all events where category %2$s as "
|
285 |
"well as %3$s is selected."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
289 |
msgid "Available Date Formats"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin/includes/admin-about.php:155
|
293 |
msgid "For date filters you can use the following date formats:"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
297 |
msgid "Available Date Range Formats"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/includes/admin-about.php:164
|
301 |
msgid "For date filters you can use the following daterange formats:"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin/includes/admin-about.php:176
|
305 |
msgid "Value"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin/includes/admin-about.php:180
|
309 |
msgid "Example"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: admin/includes/admin-categories.php:53
|
313 |
msgid "Edit Category"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: admin/includes/admin-categories.php:53
|
317 |
msgid "Update Category"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin/includes/admin-categories.php:59
|
321 |
msgid "Add New Category"
|
322 |
msgstr "Agregar una nueva Categoría"
|
323 |
|
324 |
+
#: admin/includes/admin-categories.php:84
|
325 |
#, php-format
|
326 |
msgid "Category \"%s\" deleted."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/includes/admin-categories.php:86
|
330 |
#, php-format
|
331 |
msgid "This Category was also removed from %d events."
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin/includes/admin-categories.php:92
|
335 |
#, php-format
|
336 |
msgid "Error while deleting category \"%s\""
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/includes/admin-categories.php:102
|
340 |
msgid "Sync with post categories enabled."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/includes/admin-categories.php:105
|
344 |
msgid "Sync with post categories disabled."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin/includes/admin-categories.php:111
|
348 |
msgid "Manual sync with post categories sucessfully finished."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin/includes/admin-categories.php:119
|
352 |
#, php-format
|
353 |
msgid "New Category \"%s\" was added"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/includes/admin-categories.php:122
|
357 |
#, php-format
|
358 |
msgid "Error: New Category \"%s\" could not be added"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/includes/admin-categories.php:128
|
362 |
#, php-format
|
363 |
msgid "Category \"%s\" was modified"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin/includes/admin-categories.php:131
|
367 |
#, php-format
|
368 |
msgid "Error: Category \"%s\" could not be modified"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/includes/admin-categories.php:138
|
372 |
+
msgid "Categories are automatically synced with the post categories."
|
|
|
|
|
|
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin/includes/admin-categories.php:139
|
376 |
+
msgid ""
|
377 |
+
"Because of this all options to add new categories or editing existing "
|
378 |
+
"categories are disabled."
|
379 |
+
msgstr ""
|
380 |
|
381 |
+
#: admin/includes/admin-categories.php:140
|
382 |
+
msgid ""
|
383 |
+
"If you want to manually edit the categories you have to disable this option."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/includes/admin-categories.php:167
|
387 |
+
msgid "The name is how it appears on your site."
|
|
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:172
|
391 |
msgid ""
|
392 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
393 |
"lowercase and contains only letters, numbers, and hyphens."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
msgid ""
|
398 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
399 |
"that have children categories for Bebop and Big Band. Totally optional."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin/includes/admin-categories.php:232
|
403 |
msgid "Apply"
|
404 |
msgstr "Aplicar"
|
405 |
|
406 |
+
#: admin/includes/admin-categories.php:242
|
407 |
msgid "Do a manual sync with post categories"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/includes/admin-import.php:45
|
411 |
msgid "Import Events"
|
412 |
msgstr "Importar Eventos"
|
413 |
|
414 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
415 |
msgid "Step"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin/includes/admin-import.php:65
|
419 |
msgid "Set import file and options"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin/includes/admin-import.php:68
|
423 |
+
#, php-format
|
424 |
+
msgid "Proceed with Step %1$s"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: admin/includes/admin-import.php:71
|
428 |
msgid "Example file"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:72
|
432 |
#, php-format
|
433 |
msgid ""
|
434 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:73
|
438 |
msgid "Note"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:73
|
442 |
msgid ""
|
443 |
"Do not change the column header and separator line (first two lines), "
|
444 |
"otherwise the import will fail!"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
448 |
+
#: admin/includes/admin-import.php:101
|
|
|
449 |
msgid "Sorry, there has been an error."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:81
|
453 |
msgid "The file does not exist, please try again."
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:89
|
457 |
msgid "The file is not a CSV file."
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:120
|
461 |
+
msgid "Events review and additonal category selection"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:123
|
465 |
+
msgid ""
|
466 |
+
"Warning: The following category slugs are not available and will be removed "
|
467 |
+
"from the imported events:"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: admin/includes/admin-import.php:129
|
471 |
+
msgid ""
|
472 |
+
"If you want to keep these categories, please create these Categories first "
|
473 |
+
"and do the import afterwards."
|
474 |
+
msgstr ""
|
475 |
|
476 |
+
#: admin/includes/admin-import.php:147
|
477 |
+
msgid "Add additional categories"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: admin/includes/admin-import.php:148
|
481 |
+
msgid "Import events"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: admin/includes/admin-import.php:162
|
485 |
msgid "Import with errors!"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/includes/admin-import.php:163
|
489 |
#, php-format
|
490 |
msgid ""
|
491 |
"An error occurred during import! Please send your import file to %1$sthe "
|
492 |
"administrator%2$s for analysis."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:167
|
496 |
msgid "Import successful!"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:168
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
504 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
505 |
msgid "Title"
|
506 |
msgstr "Título"
|
507 |
|
508 |
+
#: admin/includes/admin-import.php:176
|
509 |
msgid "Start Date"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/includes/admin-import.php:177
|
513 |
msgid "End Date"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
517 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
518 |
msgid "Time"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
522 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
523 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
524 |
msgid "Location"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
528 |
+
#: admin/includes/event_table.php:110
|
|
|
529 |
msgid "Details"
|
530 |
msgstr "Detalles"
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:181
|
533 |
+
msgid "Category slugs"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:220
|
537 |
+
#, php-format
|
538 |
+
msgid ""
|
539 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
540 |
+
"missing or not correct!"
|
|
|
|
|
|
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
544 |
+
msgid "Import"
|
545 |
+
msgstr "Importar"
|
546 |
+
|
547 |
+
#: admin/includes/admin-main.php:114
|
548 |
msgid "Edit Event"
|
549 |
msgstr "Editar Evento"
|
550 |
|
551 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
552 |
msgid "Duplicate"
|
553 |
msgstr "Duplicar"
|
554 |
|
555 |
+
#: admin/includes/admin-new.php:43
|
556 |
#, php-format
|
557 |
msgid "Duplicate of event id:%d"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
561 |
msgid "required"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
565 |
msgid "Date"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/includes/admin-new.php:113
|
569 |
msgid "Multi-Day Event"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
573 |
msgid "Publish"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:160
|
577 |
msgid "Update"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:162
|
581 |
+
msgid "Cancel"
|
582 |
+
msgstr "Cancelar"
|
583 |
|
584 |
+
#: admin/includes/admin-new.php:175
|
585 |
+
msgid "No categories available."
|
|
|
|
|
|
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:221
|
589 |
+
msgid "Goto Category Settings"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/includes/admin-settings.php:41
|
593 |
+
msgid "Settings saved."
|
|
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/includes/admin-settings.php:69
|
597 |
msgid "Frontend Settings"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/includes/admin-settings.php:70
|
601 |
msgid "Admin Page Settings"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:71
|
605 |
msgid "Feed Settings"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
609 |
msgid "event"
|
610 |
msgstr "evento"
|
611 |
|
612 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
613 |
msgid "events"
|
614 |
msgstr "eventos"
|
615 |
|
616 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
617 |
msgid "Edit"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
621 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
622 |
msgid "Delete"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/includes/category_table.php:107
|
626 |
+
msgid "Name"
|
627 |
+
msgstr "Nombre"
|
628 |
+
|
629 |
+
#: admin/includes/category_table.php:109
|
630 |
+
msgid "Slug"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: admin/includes/event_table.php:112
|
634 |
msgid "Author"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/includes/event_table.php:113
|
638 |
msgid "Published"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/event_table.php:175
|
642 |
msgid "Filter"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/includes/event_table.php:297
|
646 |
#, php-format
|
647 |
msgid "%s ago"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
651 |
msgid "Year"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/daterange_helptexts.php:8
|
655 |
msgid "A year can be specified in 4 digit format."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
659 |
+
#: includes/daterange_helptexts.php:36
|
|
|
660 |
#, php-format
|
661 |
msgid ""
|
662 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
663 |
"last day."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: includes/daterange_helptexts.php:9
|
667 |
msgid "the resulting year"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: includes/daterange_helptexts.php:12
|
671 |
msgid "Month"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: includes/daterange_helptexts.php:13
|
675 |
msgid ""
|
676 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
677 |
"month, seperated by a hyphen (-)."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/daterange_helptexts.php:14
|
681 |
msgid "the resulting month"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/daterange_helptexts.php:17
|
685 |
msgid "Day"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: includes/daterange_helptexts.php:18
|
689 |
msgid ""
|
690 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
691 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/daterange_helptexts.php:21
|
695 |
msgid "Relative Year"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
699 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
700 |
#, php-format
|
701 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/daterange_helptexts.php:22
|
705 |
msgid "A relative year"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
709 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
713 |
"%3$s or %4$s attached (see also the example below)."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/daterange_helptexts.php:23
|
717 |
msgid "number of years"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
721 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
722 |
#, php-format
|
723 |
msgid "Additionally the following values are available: %1$s"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/daterange_helptexts.php:27
|
727 |
msgid "Relative Month"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/daterange_helptexts.php:28
|
731 |
msgid "A relative month"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/daterange_helptexts.php:29
|
735 |
msgid "number of months"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/daterange_helptexts.php:33
|
739 |
msgid "Relative Week"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: includes/daterange_helptexts.php:34
|
743 |
msgid "A relative week"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/daterange_helptexts.php:35
|
747 |
msgid "number of weeks"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: includes/daterange_helptexts.php:36
|
751 |
msgid "the resulting week"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: includes/daterange_helptexts.php:37
|
755 |
#, php-format
|
756 |
msgid ""
|
757 |
"The first day of the week is depending on the option %1$s which can be found"
|
758 |
" and changed in %2$s."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
762 |
msgid "Relative Day"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: includes/daterange_helptexts.php:42
|
766 |
msgid "A relative day"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: includes/daterange_helptexts.php:43
|
770 |
msgid "number of days"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: includes/daterange_helptexts.php:49
|
774 |
msgid "Date range"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: includes/daterange_helptexts.php:50
|
778 |
msgid ""
|
779 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
780 |
"\t For the start and end date any available date format can be used."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "This value defines a range without any limits."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
788 |
+
#: includes/daterange_helptexts.php:66
|
|
|
789 |
#, php-format
|
790 |
msgid "The corresponding date_range format is: %1$s"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
794 |
msgid "Upcoming"
|
795 |
msgstr "Próximos"
|
796 |
|
797 |
+
#: includes/daterange_helptexts.php:60
|
798 |
msgid "This value defines a range from the actual day to the future."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
802 |
msgid "Past"
|
803 |
msgstr "Pasado"
|
804 |
|
805 |
+
#: includes/daterange_helptexts.php:65
|
806 |
msgid "This value defines a range from the past to the previous day."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/filterbar.php:282
|
810 |
+
msgid "All"
|
811 |
+
msgstr "Todos"
|
812 |
+
|
813 |
+
#: includes/filterbar.php:285
|
814 |
msgid "Show all dates"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/filterbar.php:285
|
818 |
msgid "Show all categories"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
msgid "Sync Categories"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: includes/options_helptexts.php:12
|
826 |
msgid "Keep event categories in sync with post categories automatically"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/options_helptexts.php:13
|
830 |
msgid "Attention"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: includes/options_helptexts.php:14
|
834 |
msgid ""
|
835 |
"Please note that this option will delete all categories which are not "
|
836 |
"available in the post categories! Existing Categories with the same slug "
|
837 |
"will be updated."
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/options_helptexts.php:18
|
841 |
msgid "CSV File to import"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: includes/options_helptexts.php:20
|
845 |
msgid "Please select the file which contains the event data in CSV format."
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: includes/options_helptexts.php:23
|
849 |
msgid "Used date format"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: includes/options_helptexts.php:25
|
853 |
msgid ""
|
854 |
"With this option the used date format for event start and end date given in "
|
855 |
"the CSV file can be specified."
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/options_helptexts.php:29
|
859 |
msgid "Text for no events"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: includes/options_helptexts.php:31
|
863 |
msgid ""
|
864 |
"This option defines the displayed text when no events are available for the "
|
865 |
"selected view."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/options_helptexts.php:34
|
869 |
msgid "Multiday filter range"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/options_helptexts.php:35
|
873 |
msgid "Use the complete event range in the date filter"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/options_helptexts.php:36
|
877 |
msgid ""
|
878 |
"This option defines if the complete range of a multiday event shall be "
|
879 |
"considered in the date filter."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/options_helptexts.php:37
|
883 |
msgid ""
|
884 |
"If disabled, only the start day of an event is considered in the filter."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/options_helptexts.php:38
|
888 |
msgid ""
|
889 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
890 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
891 |
"but it is hidden when the option is disabled."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/options_helptexts.php:41
|
895 |
msgid "Date display"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/options_helptexts.php:42
|
899 |
msgid "Show the date only once per day"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/options_helptexts.php:43
|
903 |
msgid ""
|
904 |
"With this option enabled the date is only displayed once per day if more "
|
905 |
"than one event is available on the same day."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/options_helptexts.php:44
|
909 |
msgid ""
|
910 |
"If enabled, the events are ordered in a different way (end date before start"
|
911 |
" time) to allow using the same date for as much events as possible."
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/options_helptexts.php:47
|
915 |
msgid "HTML tags"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
919 |
#, php-format
|
920 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
924 |
#, php-format
|
925 |
msgid ""
|
926 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/options_helptexts.php:57
|
930 |
+
msgid "Preferred language file"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: includes/options_helptexts.php:58
|
934 |
+
msgid "Load translations from general language directory first"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: includes/options_helptexts.php:59
|
938 |
+
#, php-format
|
939 |
+
msgid ""
|
940 |
+
"The default is to load the %1$s translation file from the plugin language "
|
941 |
+
"directory first (%2$s)."
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: includes/options_helptexts.php:60
|
945 |
+
#, php-format
|
946 |
+
msgid ""
|
947 |
+
"If you want to load your own language file from the general language "
|
948 |
+
"directory %1$s for a language which is already included in the plugin "
|
949 |
+
"language directory, you have to enable this option."
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: includes/options_helptexts.php:64
|
953 |
msgid "Text for \"Show details\""
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/options_helptexts.php:65
|
957 |
msgid ""
|
958 |
"With this option the displayed text for the link to show the event details "
|
959 |
"can be changed, when collapsing is enabled."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/options_helptexts.php:68
|
963 |
msgid "Text for \"Hide details\""
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/options_helptexts.php:69
|
967 |
msgid ""
|
968 |
"With this option the displayed text for the link to hide the event details "
|
969 |
"can be changed, when collapsing is enabled."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/options_helptexts.php:72
|
973 |
msgid "Disable CSS file"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: includes/options_helptexts.php:73
|
977 |
#, php-format
|
978 |
msgid "Disable the %1$s file."
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/options_helptexts.php:74
|
982 |
#, php-format
|
983 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: includes/options_helptexts.php:75
|
987 |
msgid ""
|
988 |
"This normally only make sense if you have css conflicts with your theme and "
|
989 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: includes/options_helptexts.php:79
|
993 |
msgid "Date format in edit form"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/options_helptexts.php:80
|
997 |
msgid ""
|
998 |
"This option sets the displayed date format for the event date fields in the "
|
999 |
"event new / edit form."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/options_helptexts.php:81
|
1003 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: includes/options_helptexts.php:82
|
1007 |
#, php-format
|
1008 |
msgid ""
|
1009 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1013 |
msgid "Enable RSS feed"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: includes/options_helptexts.php:87
|
1017 |
msgid "Enable support for an event RSS feed"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: includes/options_helptexts.php:88
|
1021 |
+
msgid "This option activates a RSS feed for the events."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:89
|
1025 |
msgid ""
|
1026 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1027 |
+
"features."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: includes/options_helptexts.php:92
|
1031 |
msgid "Feed name"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: includes/options_helptexts.php:93
|
1035 |
+
#, php-format
|
1036 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: includes/options_helptexts.php:94
|
1040 |
+
#, php-format
|
1041 |
msgid ""
|
1042 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1043 |
+
"enabled)."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:97
|
1047 |
msgid "Feed Description"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:98
|
1051 |
+
#, php-format
|
1052 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: includes/options_helptexts.php:99
|
1056 |
msgid ""
|
1057 |
+
"This description will be used in the title for the feed link in the html "
|
1058 |
+
"head and for the description in the feed itself."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:102
|
1062 |
msgid "Listed events"
|
1063 |
msgstr "Eventos Listados"
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:103
|
1066 |
msgid "Only show upcoming events in feed"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/options_helptexts.php:104
|
1070 |
msgid ""
|
1071 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: includes/options_helptexts.php:105
|
1075 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:108
|
1079 |
msgid "Add RSS feed link in head"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:109
|
1083 |
msgid "Add RSS feed link in the html head"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:110
|
1087 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/options_helptexts.php:111
|
1091 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: includes/options_helptexts.php:112
|
1095 |
+
msgid ""
|
1096 |
+
"The first way is this option to include a link in the html head. This link "
|
1097 |
+
"will be recognized by browers or feed readers."
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: includes/options_helptexts.php:113
|
1101 |
+
#, php-format
|
1102 |
msgid ""
|
1103 |
+
"The second way is to include a visible feed link directly in the event list."
|
1104 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
|
|
|
|
|
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:114
|
1108 |
+
#, php-format
|
1109 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: includes/options_helptexts.php:117
|
1113 |
msgid "Position of the RSS feed link"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:118
|
1117 |
+
msgid "at the top (above the navigation bar)"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: includes/options_helptexts.php:118
|
1121 |
+
msgid "between navigation bar and events"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: includes/options_helptexts.php:118
|
1125 |
+
msgid "at the bottom"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: includes/options_helptexts.php:119
|
1129 |
msgid ""
|
1130 |
+
"This option specifies the position of the RSS feed link in the event list."
|
|
|
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1134 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1135 |
+
#, php-format
|
1136 |
+
msgid ""
|
1137 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1138 |
+
" feed link."
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: includes/options_helptexts.php:123
|
1142 |
msgid "Align of the RSS feed link"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:124
|
1146 |
+
msgid "left"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: includes/options_helptexts.php:124
|
1150 |
+
msgid "center"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: includes/options_helptexts.php:124
|
1154 |
+
msgid "right"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: includes/options_helptexts.php:125
|
1158 |
msgid ""
|
1159 |
+
"This option specifies the align of the RSS feed link in the event list."
|
|
|
|
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:129
|
1163 |
msgid "Feed link text"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:130
|
1167 |
+
msgid ""
|
1168 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: includes/options_helptexts.php:131
|
1172 |
msgid ""
|
1173 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1174 |
+
"image."
|
|
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:135
|
1178 |
msgid "Feed link image"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:136
|
1182 |
msgid "Show rss image in feed link"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:137
|
1186 |
msgid ""
|
1187 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1188 |
+
" front of the text."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options.php:43
|
1192 |
msgid "Show details"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options.php:44
|
1196 |
msgid "Hide details"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/sc_event-list_helptexts.php:7
|
1200 |
+
msgid "event-id"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: includes/sc_event-list_helptexts.php:8
|
1204 |
+
#, php-format
|
1205 |
msgid ""
|
1206 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1207 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1208 |
+
"this event is shown."
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: includes/sc_event-list_helptexts.php:10
|
1212 |
+
#: includes/sc_event-list_helptexts.php:22
|
1213 |
+
msgid "year"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/sc_event-list_helptexts.php:11
|
1217 |
msgid ""
|
1218 |
+
"This attribute defines which events are initially shown. The default is to "
|
1219 |
+
"show the upcoming events only."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/sc_event-list_helptexts.php:12
|
1223 |
+
#, php-format
|
1224 |
msgid ""
|
1225 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1226 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: includes/sc_event-list_helptexts.php:14
|
1230 |
+
msgid "category slug"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/sc_event-list_helptexts.php:15
|
1234 |
msgid ""
|
1235 |
+
"This attribute defines the category of which events are initially shown. The"
|
1236 |
+
" default is to show events of all categories."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/sc_event-list_helptexts.php:16
|
1240 |
msgid ""
|
1241 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1242 |
+
"change the displayed categories via the filterbar or url parameters."
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: includes/sc_event-list_helptexts.php:19
|
1246 |
+
msgid "This attribute defines the initial order of the events."
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: includes/sc_event-list_helptexts.php:20
|
1250 |
+
msgid ""
|
1251 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1252 |
+
"in the opposite direction (from new to old)."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: includes/sc_event-list_helptexts.php:23
|
1256 |
+
#, php-format
|
1257 |
+
msgid ""
|
1258 |
+
"This attribute defines the dates and date ranges of which events are "
|
1259 |
+
"displayed. The default is %1$s to show all events."
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/sc_event-list_helptexts.php:24
|
1263 |
+
#, php-format
|
1264 |
+
msgid ""
|
1265 |
+
"Filtered events according to %1$s value are not available in the event list."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
+
#: includes/sc_event-list_helptexts.php:25
|
1269 |
+
#, php-format
|
1270 |
+
msgid ""
|
1271 |
+
"You can find all available values with a description and examples in the "
|
1272 |
+
"sections %1$s and %2$s below."
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/sc_event-list_helptexts.php:26
|
1276 |
+
#, php-format
|
1277 |
+
msgid "See %1$s description if you want to define complex filters."
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: includes/sc_event-list_helptexts.php:28
|
1281 |
+
msgid "category slugs"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/sc_event-list_helptexts.php:29
|
1285 |
msgid ""
|
1286 |
+
"This attribute defines the category filter which filters the events to show."
|
1287 |
+
" The default is $1$s or an empty string to show all events."
|
|
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/sc_event-list_helptexts.php:30
|
1291 |
+
#, php-format
|
1292 |
msgid ""
|
1293 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1294 |
+
"list. They are also not available if a manual url parameter is added."
|
|
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/sc_event-list_helptexts.php:31
|
1298 |
+
#, php-format
|
1299 |
msgid ""
|
1300 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1301 |
+
"if you want to define complex filters."
|
|
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: includes/sc_event-list_helptexts.php:33
|
1305 |
+
#: includes/sc_event-list_helptexts.php:76
|
1306 |
+
#: includes/sc_event-list_helptexts.php:91
|
1307 |
+
#: includes/sc_event-list_helptexts.php:106
|
1308 |
msgid "number"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/sc_event-list_helptexts.php:34
|
1312 |
+
#, php-format
|
1313 |
+
msgid ""
|
1314 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1315 |
+
"events is selected. With the default value %1$s all events will be "
|
1316 |
+
"displayed."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/sc_event-list_helptexts.php:35
|
1320 |
+
msgid ""
|
1321 |
+
"Please not that in the actual version there is no pagination of the events "
|
1322 |
+
"available, so the event list can be very long."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: includes/sc_event-list_helptexts.php:38
|
1326 |
+
msgid ""
|
1327 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1328 |
+
"allows the users to specify filters for the listed events."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/sc_event-list_helptexts.php:39
|
1332 |
+
#, php-format
|
1333 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: includes/sc_event-list_helptexts.php:40
|
1337 |
+
#, php-format
|
1338 |
+
msgid ""
|
1339 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1340 |
+
" in the single event view."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: includes/sc_event-list_helptexts.php:77
|
1344 |
+
#: includes/sc_event-list_helptexts.php:92
|
1345 |
msgid ""
|
1346 |
"This attribute specifies if the title should be truncated to the given "
|
1347 |
"number of characters in the event list."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: includes/sc_event-list_helptexts.php:78
|
1351 |
+
#: includes/sc_event-list_helptexts.php:93
|
1352 |
#, php-format
|
1353 |
msgid ""
|
1354 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1355 |
"is automatically truncated via css."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/sc_event-list_helptexts.php:79
|
1359 |
+
#: includes/sc_event-list_helptexts.php:94
|
1360 |
+
#: includes/sc_event-list_helptexts.php:109
|
1361 |
msgid "This attribute has no influence if only a single event is shown."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/sc_event-list_helptexts.php:82
|
1365 |
msgid ""
|
1366 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1367 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1368 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/sc_event-list_helptexts.php:87
|
1372 |
msgid ""
|
1373 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1374 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1375 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/sc_event-list_helptexts.php:97
|
1379 |
msgid ""
|
1380 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1381 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1382 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: includes/sc_event-list_helptexts.php:102
|
1386 |
msgid ""
|
1387 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1388 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1389 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/sc_event-list_helptexts.php:107
|
1393 |
msgid ""
|
1394 |
"This attribute specifies if the details should be truncate to the given "
|
1395 |
"number of characters in the event list."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/sc_event-list_helptexts.php:108
|
1399 |
#, php-format
|
1400 |
msgid "With the standard value %1$s the full text is displayed."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: includes/sc_event-list_helptexts.php:112
|
1404 |
msgid ""
|
1405 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1406 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1408 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: includes/sc_event-list_helptexts.php:118
|
1412 |
msgid ""
|
1413 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1414 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1416 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: includes/sc_event-list_helptexts.php:124
|
1420 |
msgid ""
|
1421 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1422 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1425 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: includes/sc_event-list_helptexts.php:130
|
1429 |
msgid ""
|
1430 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1431 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1432 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: includes/sc_event-list_helptexts.php:137
|
1436 |
msgid ""
|
1437 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1438 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: includes/sc_event-list.php:138
|
1442 |
msgid "Event Information:"
|
1443 |
msgstr "Información del evento:"
|
1444 |
|
1445 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1446 |
msgid "This option defines the displayed title for the widget."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: includes/widget_helptexts.php:15
|
1450 |
msgid "Category Filter"
|
1451 |
msgstr "Filtro de categoría"
|
1452 |
|
1453 |
+
#: includes/widget_helptexts.php:17
|
1454 |
msgid ""
|
1455 |
"This option defines the categories of which events are shown. The standard "
|
1456 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1459 |
"all possibilities."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/widget_helptexts.php:22
|
1463 |
msgid "Number of listed events"
|
1464 |
msgstr "Cantidad de eventos listados"
|
1465 |
|
1466 |
+
#: includes/widget_helptexts.php:24
|
1467 |
msgid "The number of upcoming events to display"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: includes/widget_helptexts.php:29
|
1471 |
msgid "Truncate event title to"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1475 |
+
#: includes/widget_helptexts.php:67
|
|
|
1476 |
msgid "characters"
|
1477 |
msgstr "caracteres"
|
1478 |
|
1479 |
+
#: includes/widget_helptexts.php:31
|
1480 |
msgid ""
|
1481 |
"This option defines the number of displayed characters for the event title."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1485 |
#, php-format
|
1486 |
msgid ""
|
1487 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1488 |
"automatically truncate the text via css."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: includes/widget_helptexts.php:37
|
1492 |
msgid "Show event starttime"
|
1493 |
msgstr "Mostrar horario de comienzo del evento"
|
1494 |
|
1495 |
+
#: includes/widget_helptexts.php:39
|
1496 |
msgid "This option defines if the event start time will be displayed."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: includes/widget_helptexts.php:44
|
1500 |
msgid "Show event location"
|
1501 |
msgstr "Mostrar localización del evento"
|
1502 |
|
1503 |
+
#: includes/widget_helptexts.php:46
|
1504 |
msgid "This option defines if the event location will be displayed."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: includes/widget_helptexts.php:51
|
1508 |
msgid "Truncate location to"
|
1509 |
msgstr "Recortar la localización a"
|
1510 |
|
1511 |
+
#: includes/widget_helptexts.php:53
|
1512 |
msgid ""
|
1513 |
"If the event location is diplayed this option defines the number of "
|
1514 |
"displayed characters."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/widget_helptexts.php:59
|
1518 |
msgid "Show event details"
|
1519 |
msgstr "Mostrar detalles del evento"
|
1520 |
|
1521 |
+
#: includes/widget_helptexts.php:61
|
1522 |
msgid "This option defines if the event details will be displayed."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: includes/widget_helptexts.php:66
|
1526 |
msgid "Truncate details to"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: includes/widget_helptexts.php:68
|
1530 |
msgid ""
|
1531 |
"If the event details are diplayed this option defines the number of diplayed"
|
1532 |
" characters."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: includes/widget_helptexts.php:69
|
1536 |
#, php-format
|
1537 |
msgid "Set this value to %1$s to view the full text."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/widget_helptexts.php:74
|
1541 |
msgid "URL to the linked Event List page"
|
1542 |
msgstr "Link a la Página del Evento"
|
1543 |
|
1544 |
+
#: includes/widget_helptexts.php:76
|
1545 |
msgid ""
|
1546 |
"This option defines the url to the linked Event List page. This option is "
|
1547 |
"required if you want to use one of the options below."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/widget_helptexts.php:81
|
1551 |
msgid "Shortcode ID on linked page"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/widget_helptexts.php:83
|
1555 |
msgid ""
|
1556 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1557 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1558 |
"use multiple event-list shortcodes on the linked page."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: includes/widget_helptexts.php:90
|
1562 |
msgid ""
|
1563 |
"With this option you can add a link to the single event page for every "
|
1564 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1565 |
"id option if you want to use it."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: includes/widget_helptexts.php:97
|
1569 |
msgid ""
|
1570 |
"With this option you can add a link to the event-list page below the "
|
1571 |
"diplayed events. You have to specify the url to page option if you want to "
|
1572 |
"use it."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/widget_helptexts.php:102
|
1576 |
msgid "Caption for the link"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: includes/widget_helptexts.php:104
|
1580 |
msgid ""
|
1581 |
"This option defines the text for the link to the Event List page if the "
|
1582 |
"approriate option is selected."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/widget.php:20
|
1586 |
msgid "With this widget a list of upcoming events can be displayed."
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: includes/widget.php:25
|
1590 |
msgid "Upcoming events"
|
1591 |
msgstr "Eventos próximos"
|
1592 |
|
1593 |
+
#: includes/widget.php:38
|
1594 |
msgid "show events page"
|
1595 |
msgstr "Mostrar página de eventos"
|
Binary file
|
@@ -1,14 +1,14 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: wp-event-list\n"
|
9 |
-
"Report-Msgid-Bugs-To:
|
10 |
-
"POT-Creation-Date: 2017-
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: mibuthu\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -17,1215 +17,1389 @@ msgstr ""
|
|
17 |
"Language: es_ES\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
-
#:
|
21 |
msgid "Event List"
|
22 |
msgstr "Listado Eventos"
|
23 |
|
24 |
-
#: /
|
25 |
-
#: /
|
26 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
27 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
28 |
msgid "Events"
|
29 |
msgstr "Eventos"
|
30 |
|
31 |
-
#:
|
32 |
msgid "All Events"
|
33 |
msgstr "Añadir Eventos"
|
34 |
|
35 |
-
#: /
|
36 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Añadir Nuevo Evento"
|
39 |
|
40 |
-
#: /
|
41 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
42 |
msgid "Add New"
|
43 |
msgstr "Añadir Nuevo"
|
44 |
|
45 |
-
#: /
|
46 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
47 |
msgid "Event List Categories"
|
48 |
msgstr "Categorías de Eventos"
|
49 |
|
50 |
-
#: /
|
51 |
-
#:
|
52 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
53 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
54 |
msgid "Categories"
|
55 |
msgstr "Categorías"
|
56 |
|
57 |
-
#: /
|
58 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
59 |
msgid "Event List Settings"
|
60 |
msgstr "Ajustes de eventos"
|
61 |
|
62 |
-
#:
|
63 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
64 |
msgid "Settings"
|
65 |
msgstr "Ajustes"
|
66 |
|
67 |
-
#: /
|
68 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
69 |
msgid "About Event List"
|
70 |
msgstr "Acerca de la lista de eventos"
|
71 |
|
72 |
-
#:
|
73 |
msgid "About"
|
74 |
msgstr "Sobre"
|
75 |
|
76 |
-
#: /
|
77 |
-
|
78 |
-
|
79 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
80 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
81 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
82 |
-
msgid "You do not have sufficient permissions to access this page."
|
83 |
-
msgstr "No tienes permisos suficientes para acceder a esta página."
|
84 |
|
85 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid "Help and Instructions"
|
87 |
msgstr "Ayuda e instrucciones"
|
88 |
|
89 |
-
#:
|
90 |
#, php-format
|
91 |
-
msgid "You can manage
|
92 |
-
msgstr "
|
93 |
|
94 |
-
#:
|
95 |
msgid "To show the events on your site you have 2 possibilities"
|
96 |
msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades"
|
97 |
|
98 |
-
#:
|
99 |
#, php-format
|
100 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
#, php-format
|
105 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#:
|
109 |
msgid ""
|
110 |
"The displayed events and their style can be modified with the available "
|
111 |
"widget settings and the available attributes for the shortcode."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
|
|
115 |
msgid ""
|
116 |
-
"A list of all available shortcode attributes with their
|
117 |
-
"available
|
118 |
msgstr ""
|
119 |
|
120 |
-
#:
|
121 |
msgid "The available widget options are described in their tooltip text."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#:
|
125 |
#, php-format
|
126 |
msgid ""
|
127 |
-
"
|
128 |
-
"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#:
|
132 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
133 |
msgid "Add links to the single events"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#:
|
137 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
138 |
msgid "Add a link to the Event List page"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
#, php-format
|
143 |
msgid ""
|
144 |
-
"
|
145 |
-
"
|
146 |
-
"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
-
"Be sure to also check the %1$
|
153 |
-
"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#:
|
157 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgstr ""
|
159 |
|
160 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
msgid ""
|
162 |
"You have the possibility to modify the output if you add some of the "
|
163 |
"following attributes to the shortcode."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#:
|
167 |
#, php-format
|
168 |
msgid ""
|
169 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
170 |
"including the attributes %1$s and %2$s would looks like this:"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#:
|
174 |
msgid ""
|
175 |
"Below you can find a list of all supported attributes with their "
|
176 |
"descriptions and available options:"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#:
|
180 |
msgid "Attribute name"
|
181 |
msgstr "Nombre de atributo"
|
182 |
|
183 |
-
#:
|
184 |
msgid "Value options"
|
185 |
msgstr "Opciones de valor"
|
186 |
|
187 |
-
#:
|
188 |
msgid "Default value"
|
189 |
msgstr "Valor por defecto"
|
190 |
|
191 |
-
#: /
|
192 |
-
#:
|
193 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
194 |
msgid "Description"
|
195 |
msgstr "Descripción"
|
196 |
|
197 |
-
#:
|
|
|
198 |
msgid "Filter Syntax"
|
199 |
msgstr "Sintaxis de filtro"
|
200 |
|
201 |
-
#:
|
202 |
msgid ""
|
203 |
"For date and cat filters you can specify complex filters with the following "
|
204 |
"syntax:"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#:
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"You can use %1$s and %2$s connections to define complex filters. "
|
211 |
"Additionally you can set brackets %3$s for nested queries."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#:
|
215 |
msgid "AND"
|
216 |
msgstr "Y"
|
217 |
|
218 |
-
#:
|
219 |
msgid "OR"
|
220 |
msgstr "O"
|
221 |
|
222 |
-
#:
|
223 |
msgid "or"
|
224 |
msgstr "o"
|
225 |
|
226 |
-
#:
|
227 |
msgid "and"
|
228 |
msgstr "y"
|
229 |
|
230 |
-
#:
|
231 |
msgid "Examples for cat filters:"
|
232 |
msgstr "Ejemplos de filtros cat:"
|
233 |
|
234 |
-
#:
|
235 |
#, php-format
|
236 |
msgid "Show all events with category %1$s."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
240 |
#, php-format
|
241 |
msgid "Show all events with category %1$s or %2$s."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#:
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"Show all events with category %1$s and all events where category %2$s as "
|
248 |
"well as %3$s is selected."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
msgid "Available Date Formats"
|
253 |
msgstr "Formatos de fecha disponibles"
|
254 |
|
255 |
-
#:
|
256 |
msgid "For date filters you can use the following date formats:"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#:
|
260 |
msgid "Available Date Range Formats"
|
261 |
msgstr "Formatos Rango Fecha Disponible"
|
262 |
|
263 |
-
#:
|
264 |
msgid "For date filters you can use the following daterange formats:"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
msgid "Value"
|
269 |
msgstr "Valor"
|
270 |
|
271 |
-
#:
|
272 |
msgid "Example"
|
273 |
msgstr "Ejemplo"
|
274 |
|
275 |
-
#:
|
276 |
msgid "Edit Category"
|
277 |
msgstr "Editar categoría"
|
278 |
|
279 |
-
#:
|
280 |
msgid "Update Category"
|
281 |
msgstr "Actualizar Categoría"
|
282 |
|
283 |
-
#:
|
284 |
msgid "Add New Category"
|
285 |
msgstr "Agregar nueva categoría"
|
286 |
|
287 |
-
#:
|
288 |
#, php-format
|
289 |
msgid "Category \"%s\" deleted."
|
290 |
msgstr "Categoría “%s” eliminada."
|
291 |
|
292 |
-
#:
|
293 |
#, php-format
|
294 |
msgid "This Category was also removed from %d events."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
298 |
#, php-format
|
299 |
msgid "Error while deleting category \"%s\""
|
300 |
msgstr ""
|
301 |
|
302 |
-
#:
|
303 |
msgid "Sync with post categories enabled."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#:
|
307 |
msgid "Sync with post categories disabled."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#:
|
311 |
msgid "Manual sync with post categories sucessfully finished."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#:
|
315 |
#, php-format
|
316 |
msgid "New Category \"%s\" was added"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#:
|
320 |
#, php-format
|
321 |
msgid "Error: New Category \"%s\" could not be added"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#:
|
325 |
#, php-format
|
326 |
msgid "Category \"%s\" was modified"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#:
|
330 |
#, php-format
|
331 |
msgid "Error: Category \"%s\" could not be modified"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#:
|
|
|
|
|
|
|
|
|
335 |
msgid ""
|
336 |
-
"
|
337 |
-
"
|
338 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#:
|
342 |
-
|
343 |
-
|
344 |
-
msgstr "
|
345 |
|
346 |
-
#:
|
347 |
msgid "The name is how it appears on your site."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#:
|
351 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
|
352 |
-
msgid "Slug"
|
353 |
-
msgstr "Enlace permanente"
|
354 |
-
|
355 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
|
356 |
msgid ""
|
357 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
358 |
"lowercase and contains only letters, numbers, and hyphens."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#:
|
362 |
-
msgid "Parent"
|
363 |
-
msgstr "Padre"
|
364 |
-
|
365 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
366 |
-
msgid "None"
|
367 |
-
msgstr "Ninguno"
|
368 |
-
|
369 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
370 |
msgid ""
|
371 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
372 |
"that have children categories for Bebop and Big Band. Totally optional."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#:
|
376 |
msgid "Apply"
|
377 |
msgstr "Aplicar"
|
378 |
|
379 |
-
#:
|
380 |
msgid "Do a manual sync with post categories"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#:
|
384 |
msgid "Import Events"
|
385 |
msgstr "Importar Eventos"
|
386 |
|
387 |
-
#: /
|
388 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
389 |
msgid "Step"
|
390 |
msgstr "Paso"
|
391 |
|
392 |
-
#:
|
393 |
msgid "Set import file and options"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#:
|
397 |
-
|
|
|
398 |
msgstr ""
|
399 |
|
400 |
-
#:
|
401 |
msgid "Example file"
|
402 |
msgstr "Archivo de ejemplo"
|
403 |
|
404 |
-
#:
|
405 |
#, php-format
|
406 |
msgid ""
|
407 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#:
|
411 |
msgid "Note"
|
412 |
msgstr "Nota"
|
413 |
|
414 |
-
#:
|
415 |
msgid ""
|
416 |
"Do not change the column header and separator line (first two lines), "
|
417 |
"otherwise the import will fail!"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: /
|
421 |
-
#:
|
422 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
423 |
msgid "Sorry, there has been an error."
|
424 |
msgstr ""
|
425 |
|
426 |
-
#:
|
427 |
msgid "The file does not exist, please try again."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#:
|
431 |
msgid "The file is not a CSV file."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#:
|
435 |
-
msgid "
|
436 |
msgstr ""
|
437 |
|
438 |
-
#:
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
msgstr "
|
443 |
|
444 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
msgid "Import with errors!"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#:
|
449 |
#, php-format
|
450 |
msgid ""
|
451 |
"An error occurred during import! Please send your import file to %1$sthe "
|
452 |
"administrator%2$s for analysis."
|
453 |
msgstr ""
|
454 |
|
455 |
-
#:
|
456 |
msgid "Import successful!"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#:
|
460 |
msgid "Go back to All Events"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: /
|
464 |
-
#:
|
465 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
466 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
467 |
msgid "Title"
|
468 |
msgstr "Título"
|
469 |
|
470 |
-
#:
|
471 |
msgid "Start Date"
|
472 |
msgstr "Fecha Inicio"
|
473 |
|
474 |
-
#:
|
475 |
msgid "End Date"
|
476 |
msgstr "Fecha Final"
|
477 |
|
478 |
-
#: /
|
479 |
-
#: /
|
480 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
481 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
482 |
msgid "Time"
|
483 |
msgstr "Hora"
|
484 |
|
485 |
-
#: /
|
486 |
-
#:
|
487 |
-
#:
|
488 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
489 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
490 |
msgid "Location"
|
491 |
msgstr "Ubicación"
|
492 |
|
493 |
-
#: /
|
494 |
-
#:
|
495 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
496 |
msgid "Details"
|
497 |
msgstr "Detalles"
|
498 |
|
499 |
-
#:
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#:
|
504 |
-
|
505 |
-
msgid "
|
506 |
-
|
|
|
|
|
507 |
|
508 |
-
#: /
|
509 |
-
|
510 |
-
|
511 |
-
msgstr "No hay categorías disponibles"
|
512 |
|
513 |
-
#:
|
514 |
msgid "Edit Event"
|
515 |
msgstr "Editar Evento"
|
516 |
|
517 |
-
#:
|
518 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
519 |
msgid "Duplicate"
|
520 |
msgstr "Duplicar"
|
521 |
|
522 |
-
#:
|
523 |
#, php-format
|
524 |
msgid "Duplicate of event id:%d"
|
525 |
msgstr "Duplicado de evento id: % d"
|
526 |
|
527 |
-
#: /
|
528 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
529 |
msgid "required"
|
530 |
msgstr "obligatorio"
|
531 |
|
532 |
-
#:
|
533 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
534 |
msgid "Date"
|
535 |
msgstr "Fecha"
|
536 |
|
537 |
-
#:
|
538 |
msgid "Multi-Day Event"
|
539 |
msgstr "Evento de varios días"
|
540 |
|
541 |
-
#: /
|
542 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
543 |
msgid "Publish"
|
544 |
msgstr "Publicar"
|
545 |
|
546 |
-
#:
|
547 |
msgid "Update"
|
548 |
msgstr "Actualizar"
|
549 |
|
550 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
msgid "Goto Category Settings"
|
552 |
msgstr "Ir a Ajustes de Categorías"
|
553 |
|
554 |
-
#:
|
555 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
|
556 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
557 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
558 |
-
msgid "Y/m/d"
|
559 |
-
msgstr "Y/m/d"
|
560 |
-
|
561 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
|
562 |
msgid "Settings saved."
|
563 |
msgstr "Configuración guardada."
|
564 |
|
565 |
-
#:
|
566 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
567 |
-
msgid "General"
|
568 |
-
msgstr "General"
|
569 |
-
|
570 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
571 |
msgid "Frontend Settings"
|
572 |
msgstr "Configuración de interfaz"
|
573 |
|
574 |
-
#:
|
575 |
msgid "Admin Page Settings"
|
576 |
msgstr "Configuración de página de administrador"
|
577 |
|
578 |
-
#:
|
579 |
msgid "Feed Settings"
|
580 |
msgstr "Configuración Conectores"
|
581 |
|
582 |
-
#: /
|
583 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
584 |
msgid "event"
|
585 |
msgstr "evento"
|
586 |
|
587 |
-
#: /
|
588 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
589 |
msgid "events"
|
590 |
msgstr "eventos"
|
591 |
|
592 |
-
#: /
|
593 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
594 |
msgid "Edit"
|
595 |
msgstr "Editar"
|
596 |
|
597 |
-
#: /
|
598 |
-
#: /
|
599 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
600 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
601 |
msgid "Delete"
|
602 |
msgstr "Borrar"
|
603 |
|
604 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
msgid "Author"
|
606 |
msgstr "Autor"
|
607 |
|
608 |
-
#:
|
609 |
msgid "Published"
|
610 |
msgstr "Publicado"
|
611 |
|
612 |
-
#:
|
613 |
msgid "Filter"
|
614 |
msgstr "Filtro"
|
615 |
|
616 |
-
#:
|
617 |
#, php-format
|
618 |
msgid "%s ago"
|
619 |
msgstr "hace %s"
|
620 |
|
621 |
-
#:
|
622 |
-
msgid "Y/m/d g:i:s A"
|
623 |
-
msgstr "Y/m/d g:i:s A"
|
624 |
-
|
625 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
626 |
msgid "Year"
|
627 |
msgstr "Año"
|
628 |
|
629 |
-
#:
|
630 |
msgid "A year can be specified in 4 digit format."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /
|
634 |
-
#:
|
635 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
639 |
"last day."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#:
|
643 |
msgid "the resulting year"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#:
|
647 |
msgid "Month"
|
648 |
msgstr "Mes"
|
649 |
|
650 |
-
#:
|
651 |
msgid ""
|
652 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
653 |
"month, seperated by a hyphen (-)."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#:
|
657 |
msgid "the resulting month"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#:
|
661 |
msgid "Day"
|
662 |
msgstr "Día"
|
663 |
|
664 |
-
#:
|
665 |
msgid ""
|
666 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
667 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#:
|
671 |
msgid "Relative Year"
|
672 |
msgstr "Año relativo"
|
673 |
|
674 |
-
#: /
|
675 |
-
#: /
|
676 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
677 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
678 |
#, php-format
|
679 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#:
|
683 |
msgid "A relative year"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: /
|
687 |
-
#: /
|
688 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
689 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
690 |
#, php-format
|
691 |
msgid ""
|
692 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
693 |
"%3$s or %4$s attached (see also the example below)."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#:
|
697 |
msgid "number of years"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: /
|
701 |
-
#: /
|
702 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
703 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
704 |
#, php-format
|
705 |
msgid "Additionally the following values are available: %1$s"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#:
|
709 |
msgid "Relative Month"
|
710 |
msgstr "Mes relativo"
|
711 |
|
712 |
-
#:
|
713 |
msgid "A relative month"
|
714 |
msgstr "Un mes relativo"
|
715 |
|
716 |
-
#:
|
717 |
msgid "number of months"
|
718 |
msgstr "número de meses"
|
719 |
|
720 |
-
#:
|
721 |
msgid "Relative Week"
|
722 |
msgstr "Semana relativa"
|
723 |
|
724 |
-
#:
|
725 |
msgid "A relative week"
|
726 |
msgstr "Una semana relativa"
|
727 |
|
728 |
-
#:
|
729 |
msgid "number of weeks"
|
730 |
msgstr "número de semanas"
|
731 |
|
732 |
-
#:
|
733 |
msgid "the resulting week"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#:
|
737 |
#, php-format
|
738 |
msgid ""
|
739 |
"The first day of the week is depending on the option %1$s which can be found"
|
740 |
" and changed in %2$s."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
-
msgid "Week Starts On"
|
745 |
-
msgstr ""
|
746 |
-
|
747 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
748 |
msgid "Relative Day"
|
749 |
msgstr "Día relativo"
|
750 |
|
751 |
-
#:
|
752 |
msgid "A relative day"
|
753 |
msgstr "Un día relativo"
|
754 |
|
755 |
-
#:
|
756 |
msgid "number of days"
|
757 |
msgstr "Número de días"
|
758 |
|
759 |
-
#:
|
760 |
msgid "Date range"
|
761 |
msgstr "Rango de fechas"
|
762 |
|
763 |
-
#:
|
764 |
msgid ""
|
765 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
766 |
"\t For the start and end date any available date format can be used."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#:
|
770 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
771 |
-
msgid "All"
|
772 |
-
msgstr "Todos"
|
773 |
-
|
774 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
775 |
msgid "This value defines a range without any limits."
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: /
|
779 |
-
#:
|
780 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
781 |
#, php-format
|
782 |
msgid "The corresponding date_range format is: %1$s"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#:
|
786 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
787 |
msgid "Upcoming"
|
788 |
msgstr "Próximamente"
|
789 |
|
790 |
-
#:
|
791 |
msgid "This value defines a range from the actual day to the future."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#:
|
795 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
796 |
msgid "Past"
|
797 |
msgstr "Pasado"
|
798 |
|
799 |
-
#:
|
800 |
msgid "This value defines a range from the past to the previous day."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#:
|
|
|
|
|
|
|
|
|
804 |
msgid "Show all dates"
|
805 |
msgstr "Mostrar todas las fechas"
|
806 |
|
807 |
-
#:
|
808 |
msgid "Show all categories"
|
809 |
msgstr "Mostrar todas las categorías"
|
810 |
|
811 |
-
#:
|
812 |
-
msgid "Event Categories"
|
813 |
-
msgstr "Categorías de Eventos"
|
814 |
-
|
815 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
816 |
-
msgid "This option specifies all event category data."
|
817 |
-
msgstr ""
|
818 |
-
|
819 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
820 |
msgid "Sync Categories"
|
821 |
msgstr "Sincronizar Categorías"
|
822 |
|
823 |
-
#:
|
824 |
msgid "Keep event categories in sync with post categories automatically"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#:
|
828 |
msgid "Attention"
|
829 |
msgstr "Atención"
|
830 |
|
831 |
-
#:
|
832 |
msgid ""
|
833 |
"Please note that this option will delete all categories which are not "
|
834 |
"available in the post categories! Existing Categories with the same slug "
|
835 |
"will be updated."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#:
|
839 |
msgid "CSV File to import"
|
840 |
msgstr "Importar vía archivo CSV"
|
841 |
|
842 |
-
#:
|
843 |
msgid "Please select the file which contains the event data in CSV format."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#:
|
847 |
msgid "Used date format"
|
848 |
msgstr "Formato de Fecha utilizado"
|
849 |
|
850 |
-
#:
|
851 |
msgid ""
|
852 |
"With this option the used date format for event start and end date given in "
|
853 |
"the CSV file can be specified."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#:
|
857 |
msgid "Text for no events"
|
858 |
msgstr "Texto para ningún evento"
|
859 |
|
860 |
-
#:
|
861 |
msgid ""
|
862 |
"This option defines the displayed text when no events are available for the "
|
863 |
"selected view."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#:
|
867 |
msgid "Multiday filter range"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#:
|
871 |
msgid "Use the complete event range in the date filter"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#:
|
875 |
msgid ""
|
876 |
"This option defines if the complete range of a multiday event shall be "
|
877 |
"considered in the date filter."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#:
|
881 |
msgid ""
|
882 |
"If disabled, only the start day of an event is considered in the filter."
|
883 |
msgstr ""
|
884 |
|
885 |
-
#:
|
886 |
msgid ""
|
887 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
888 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
889 |
"but it is hidden when the option is disabled."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#:
|
893 |
msgid "Date display"
|
894 |
msgstr "Indicación de la fecha"
|
895 |
|
896 |
-
#:
|
897 |
msgid "Show the date only once per day"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#:
|
901 |
msgid ""
|
902 |
"With this option enabled the date is only displayed once per day if more "
|
903 |
"than one event is available on the same day."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#:
|
907 |
msgid ""
|
908 |
"If enabled, the events are ordered in a different way (end date before start"
|
909 |
" time) to allow using the same date for as much events as possible."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#:
|
913 |
msgid "HTML tags"
|
914 |
msgstr "Etiquetas HTML"
|
915 |
|
916 |
-
#: /
|
917 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
918 |
#, php-format
|
919 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: /
|
923 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
924 |
#, php-format
|
925 |
msgid ""
|
926 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
927 |
msgstr ""
|
928 |
|
929 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
msgid "Text for \"Show details\""
|
931 |
msgstr ""
|
932 |
|
933 |
-
#:
|
934 |
msgid ""
|
935 |
"With this option the displayed text for the link to show the event details "
|
936 |
"can be changed, when collapsing is enabled."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#:
|
940 |
msgid "Text for \"Hide details\""
|
941 |
msgstr ""
|
942 |
|
943 |
-
#:
|
944 |
msgid ""
|
945 |
"With this option the displayed text for the link to hide the event details "
|
946 |
"can be changed, when collapsing is enabled."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#:
|
950 |
msgid "Disable CSS file"
|
951 |
msgstr "Deshabitar CSS"
|
952 |
|
953 |
-
#:
|
954 |
#, php-format
|
955 |
msgid "Disable the %1$s file."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#:
|
959 |
#, php-format
|
960 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
msgid ""
|
965 |
"This normally only make sense if you have css conflicts with your theme and "
|
966 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
967 |
msgstr ""
|
968 |
|
969 |
-
#:
|
970 |
msgid "Date format in edit form"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#:
|
974 |
msgid ""
|
975 |
"This option sets the displayed date format for the event date fields in the "
|
976 |
"event new / edit form."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#:
|
980 |
-
msgid "The
|
981 |
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"All available options to specify the date format can be found %1$shere%2$s."
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: /
|
990 |
msgid "Enable RSS feed"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#:
|
994 |
msgid "Enable support for an event RSS feed"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#:
|
|
|
|
|
|
|
|
|
998 |
msgid ""
|
999 |
-
"
|
1000 |
-
"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#:
|
1004 |
msgid "Feed name"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1008 |
msgid ""
|
1009 |
-
"This
|
1010 |
-
"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#:
|
1014 |
msgid "Feed Description"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1018 |
msgid ""
|
1019 |
-
"This
|
1020 |
-
"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#:
|
1024 |
msgid "Listed events"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#:
|
1028 |
msgid "Only show upcoming events in feed"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#:
|
1032 |
msgid ""
|
1033 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1034 |
-
"\t If disabled all events (upcoming and past) will be listed."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#:
|
|
|
|
|
|
|
|
|
1038 |
msgid "Add RSS feed link in head"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#:
|
1042 |
msgid "Add RSS feed link in the html head"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1046 |
msgid ""
|
1047 |
-
"
|
1048 |
-
"
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
|
|
|
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#:
|
1055 |
msgid "Position of the RSS feed link"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1059 |
msgid ""
|
1060 |
-
"This option specifies the position of the RSS feed link in the event list
|
1061 |
-
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1062 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1066 |
msgid "Align of the RSS feed link"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
msgid ""
|
1071 |
-
"This option specifies the align of the RSS feed link in the event list
|
1072 |
-
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1073 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#:
|
1077 |
msgid "Feed link text"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1081 |
msgid ""
|
1082 |
-
"
|
1083 |
-
"
|
1084 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#:
|
1088 |
msgid "Feed link image"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#:
|
1092 |
msgid "Show rss image in feed link"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#:
|
1096 |
msgid ""
|
1097 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1098 |
-
"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#:
|
1102 |
msgid "Show details"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#:
|
1106 |
msgid "Hide details"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1110 |
msgid ""
|
1111 |
-
"
|
1112 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#:
|
1116 |
msgid ""
|
1117 |
-
"This attribute
|
1118 |
-
"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#:
|
|
|
1122 |
msgid ""
|
1123 |
-
"
|
1124 |
-
"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#:
|
|
|
|
|
|
|
|
|
1128 |
msgid ""
|
1129 |
-
"This attribute
|
1130 |
-
"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
msgid ""
|
1135 |
-
"
|
1136 |
-
"
|
1137 |
-
"\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
|
1138 |
-
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#:
|
|
|
|
|
|
|
|
|
1142 |
msgid ""
|
1143 |
-
"
|
1144 |
-
"
|
1145 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#:
|
|
|
1149 |
msgid ""
|
1150 |
-
"This attribute
|
1151 |
-
"
|
1152 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#:
|
|
|
1156 |
msgid ""
|
1157 |
-
"
|
1158 |
-
"\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
|
1159 |
-
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#:
|
1163 |
-
|
1164 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
msgid "number"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#:
|
1169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1170 |
msgid ""
|
1171 |
"This attribute specifies if the title should be truncated to the given "
|
1172 |
"number of characters in the event list."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#:
|
1176 |
-
#:
|
1177 |
#, php-format
|
1178 |
msgid ""
|
1179 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1180 |
"is automatically truncated via css."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#:
|
1184 |
-
#:
|
1185 |
-
#:
|
1186 |
msgid "This attribute has no influence if only a single event is shown."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#:
|
1190 |
msgid ""
|
1191 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1192 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1193 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#:
|
1197 |
msgid ""
|
1198 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1199 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1200 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#:
|
1204 |
msgid ""
|
1205 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1206 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1207 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#:
|
1211 |
msgid ""
|
1212 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1213 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1214 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#:
|
1218 |
msgid ""
|
1219 |
"This attribute specifies if the details should be truncate to the given "
|
1220 |
"number of characters in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#:
|
1224 |
#, php-format
|
1225 |
msgid "With the standard value %1$s the full text is displayed."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#:
|
1229 |
msgid ""
|
1230 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1231 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1233,7 +1407,7 @@ msgid ""
|
|
1233 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#:
|
1237 |
msgid ""
|
1238 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1239 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1241,7 +1415,7 @@ msgid ""
|
|
1241 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid ""
|
1246 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1247 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1250,36 +1424,32 @@ msgid ""
|
|
1250 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#:
|
1254 |
msgid ""
|
1255 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1256 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1257 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#:
|
1261 |
msgid ""
|
1262 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1263 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#:
|
1267 |
msgid "Event Information:"
|
1268 |
msgstr "Información del evento:"
|
1269 |
|
1270 |
-
#:
|
1271 |
-
msgid "(more…)"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1275 |
msgid "This option defines the displayed title for the widget."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#:
|
1279 |
msgid "Category Filter"
|
1280 |
msgstr "Categoría de filtro"
|
1281 |
|
1282 |
-
#:
|
1283 |
msgid ""
|
1284 |
"This option defines the categories of which events are shown. The standard "
|
1285 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1288,139 +1458,137 @@ msgid ""
|
|
1288 |
"all possibilities."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#:
|
1292 |
msgid "Number of listed events"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#:
|
1296 |
msgid "The number of upcoming events to display"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#:
|
1300 |
msgid "Truncate event title to"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: /
|
1304 |
-
#:
|
1305 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1306 |
msgid "characters"
|
1307 |
msgstr "caracteres"
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid ""
|
1311 |
"This option defines the number of displayed characters for the event title."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: /
|
1315 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1316 |
#, php-format
|
1317 |
msgid ""
|
1318 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1319 |
"automatically truncate the text via css."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#:
|
1323 |
msgid "Show event starttime"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#:
|
1327 |
msgid "This option defines if the event start time will be displayed."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#:
|
1331 |
msgid "Show event location"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#:
|
1335 |
msgid "This option defines if the event location will be displayed."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#:
|
1339 |
msgid "Truncate location to"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#:
|
1343 |
msgid ""
|
1344 |
"If the event location is diplayed this option defines the number of "
|
1345 |
"displayed characters."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#:
|
1349 |
msgid "Show event details"
|
1350 |
msgstr "Ver detalles del evento"
|
1351 |
|
1352 |
-
#:
|
1353 |
msgid "This option defines if the event details will be displayed."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#:
|
1357 |
msgid "Truncate details to"
|
1358 |
msgstr "Truncar los datos para"
|
1359 |
|
1360 |
-
#:
|
1361 |
msgid ""
|
1362 |
"If the event details are diplayed this option defines the number of diplayed"
|
1363 |
" characters."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#:
|
1367 |
#, php-format
|
1368 |
msgid "Set this value to %1$s to view the full text."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#:
|
1372 |
msgid "URL to the linked Event List page"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#:
|
1376 |
msgid ""
|
1377 |
"This option defines the url to the linked Event List page. This option is "
|
1378 |
"required if you want to use one of the options below."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#:
|
1382 |
msgid "Shortcode ID on linked page"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#:
|
1386 |
msgid ""
|
1387 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1388 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1389 |
"use multiple event-list shortcodes on the linked page."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#:
|
1393 |
msgid ""
|
1394 |
"With this option you can add a link to the single event page for every "
|
1395 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1396 |
"id option if you want to use it."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#:
|
1400 |
msgid ""
|
1401 |
"With this option you can add a link to the event-list page below the "
|
1402 |
"diplayed events. You have to specify the url to page option if you want to "
|
1403 |
"use it."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#:
|
1407 |
msgid "Caption for the link"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#:
|
1411 |
msgid ""
|
1412 |
"This option defines the text for the link to the Event List page if the "
|
1413 |
"approriate option is selected."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#:
|
1417 |
msgid "With this widget a list of upcoming events can be displayed."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#:
|
1421 |
msgid "Upcoming events"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#:
|
1425 |
msgid "show events page"
|
1426 |
msgstr ""
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: wp-event-list\n"
|
9 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
10 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
11 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
12 |
"Last-Translator: mibuthu\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
17 |
"Language: es_ES\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
+
#: admin/admin.php:45
|
21 |
msgid "Event List"
|
22 |
msgstr "Listado Eventos"
|
23 |
|
24 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
25 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
26 |
msgid "Events"
|
27 |
msgstr "Eventos"
|
28 |
|
29 |
+
#: admin/admin.php:48
|
30 |
msgid "All Events"
|
31 |
msgstr "Añadir Eventos"
|
32 |
|
33 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
34 |
msgid "Add New Event"
|
35 |
msgstr "Añadir Nuevo Evento"
|
36 |
|
37 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
38 |
msgid "Add New"
|
39 |
msgstr "Añadir Nuevo"
|
40 |
|
41 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
42 |
msgid "Event List Categories"
|
43 |
msgstr "Categorías de Eventos"
|
44 |
|
45 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
46 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
47 |
msgid "Categories"
|
48 |
msgstr "Categorías"
|
49 |
|
50 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
51 |
msgid "Event List Settings"
|
52 |
msgstr "Ajustes de eventos"
|
53 |
|
54 |
+
#: admin/admin.php:60
|
|
|
55 |
msgid "Settings"
|
56 |
msgstr "Ajustes"
|
57 |
|
58 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
59 |
msgid "About Event List"
|
60 |
msgstr "Acerca de la lista de eventos"
|
61 |
|
62 |
+
#: admin/admin.php:64
|
63 |
msgid "About"
|
64 |
msgstr "Sobre"
|
65 |
|
66 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
67 |
+
msgid "General"
|
68 |
+
msgstr "General"
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
71 |
+
#: admin/includes/admin-about.php:103
|
72 |
+
msgid "Shortcode Attributes"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: admin/includes/admin-about.php:71
|
76 |
msgid "Help and Instructions"
|
77 |
msgstr "Ayuda e instrucciones"
|
78 |
|
79 |
+
#: admin/includes/admin-about.php:72
|
80 |
#, php-format
|
81 |
+
msgid "You can manage the events %1$shere%2$s"
|
82 |
+
msgstr ""
|
83 |
|
84 |
+
#: admin/includes/admin-about.php:73
|
85 |
msgid "To show the events on your site you have 2 possibilities"
|
86 |
msgstr "Para mostrar los eventos en tu sitio web tienes 2 posibilidades"
|
87 |
|
88 |
+
#: admin/includes/admin-about.php:74
|
89 |
#, php-format
|
90 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/includes/admin-about.php:75
|
94 |
#, php-format
|
95 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin/includes/admin-about.php:76
|
99 |
msgid ""
|
100 |
"The displayed events and their style can be modified with the available "
|
101 |
"widget settings and the available attributes for the shortcode."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin/includes/admin-about.php:77
|
105 |
+
#, php-format
|
106 |
msgid ""
|
107 |
+
"A list of all available shortcode attributes with their descriptions is "
|
108 |
+
"available in the %1$s tab."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/includes/admin-about.php:78
|
112 |
msgid "The available widget options are described in their tooltip text."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin/includes/admin-about.php:79
|
116 |
#, php-format
|
117 |
msgid ""
|
118 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
119 |
+
" to insert an URL to the linked event-list page."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
123 |
msgid "Add links to the single events"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
127 |
msgid "Add a link to the Event List page"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: admin/includes/admin-about.php:80
|
131 |
+
msgid ""
|
132 |
+
"This is required because the widget does not know in which page or post the "
|
133 |
+
"shortcode was included."
|
134 |
+
msgstr ""
|
135 |
+
|
136 |
+
#: admin/includes/admin-about.php:81
|
137 |
+
msgid ""
|
138 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
139 |
+
" This id describes which shortcode should be used on the given page or post "
|
140 |
+
"if you have more than one."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: admin/includes/admin-about.php:82
|
144 |
#, php-format
|
145 |
msgid ""
|
146 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
147 |
+
"but if required you can check the id by looking into the URL of an event "
|
148 |
+
"link on your linked page or post."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin/includes/admin-about.php:83
|
152 |
+
#, php-format
|
153 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: admin/includes/admin-about.php:85
|
157 |
#, php-format
|
158 |
msgid ""
|
159 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
160 |
+
"want."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin/includes/admin-about.php:85
|
164 |
+
msgid "Settings page"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: admin/includes/admin-about.php:91
|
168 |
+
msgid "About the plugin author"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: admin/includes/admin-about.php:93
|
172 |
+
#, php-format
|
173 |
+
msgid ""
|
174 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
175 |
+
"plugin on the %2$s."
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: admin/includes/admin-about.php:93
|
179 |
+
msgid "wordpress plugin site"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: admin/includes/admin-about.php:94
|
183 |
+
#, php-format
|
184 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: admin/includes/admin-about.php:94
|
188 |
+
msgid "wordpress plugin review site"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: admin/includes/admin-about.php:95
|
192 |
+
msgid ""
|
193 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: admin/includes/admin-about.php:105
|
197 |
msgid ""
|
198 |
"You have the possibility to modify the output if you add some of the "
|
199 |
"following attributes to the shortcode."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: admin/includes/admin-about.php:106
|
203 |
#, php-format
|
204 |
msgid ""
|
205 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
206 |
"including the attributes %1$s and %2$s would looks like this:"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: admin/includes/admin-about.php:108
|
210 |
msgid ""
|
211 |
"Below you can find a list of all supported attributes with their "
|
212 |
"descriptions and available options:"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: admin/includes/admin-about.php:122
|
216 |
msgid "Attribute name"
|
217 |
msgstr "Nombre de atributo"
|
218 |
|
219 |
+
#: admin/includes/admin-about.php:123
|
220 |
msgid "Value options"
|
221 |
msgstr "Opciones de valor"
|
222 |
|
223 |
+
#: admin/includes/admin-about.php:124
|
224 |
msgid "Default value"
|
225 |
msgstr "Valor por defecto"
|
226 |
|
227 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
228 |
+
#: admin/includes/category_table.php:108
|
|
|
229 |
msgid "Description"
|
230 |
msgstr "Descripción"
|
231 |
|
232 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
233 |
+
#: includes/sc_event-list_helptexts.php:31
|
234 |
msgid "Filter Syntax"
|
235 |
msgstr "Sintaxis de filtro"
|
236 |
|
237 |
+
#: admin/includes/admin-about.php:144
|
238 |
msgid ""
|
239 |
"For date and cat filters you can specify complex filters with the following "
|
240 |
"syntax:"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: admin/includes/admin-about.php:145
|
244 |
#, php-format
|
245 |
msgid ""
|
246 |
"You can use %1$s and %2$s connections to define complex filters. "
|
247 |
"Additionally you can set brackets %3$s for nested queries."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin/includes/admin-about.php:145
|
251 |
msgid "AND"
|
252 |
msgstr "Y"
|
253 |
|
254 |
+
#: admin/includes/admin-about.php:145
|
255 |
msgid "OR"
|
256 |
msgstr "O"
|
257 |
|
258 |
+
#: admin/includes/admin-about.php:145
|
259 |
msgid "or"
|
260 |
msgstr "o"
|
261 |
|
262 |
+
#: admin/includes/admin-about.php:145
|
263 |
msgid "and"
|
264 |
msgstr "y"
|
265 |
|
266 |
+
#: admin/includes/admin-about.php:146
|
267 |
msgid "Examples for cat filters:"
|
268 |
msgstr "Ejemplos de filtros cat:"
|
269 |
|
270 |
+
#: admin/includes/admin-about.php:147
|
271 |
#, php-format
|
272 |
msgid "Show all events with category %1$s."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin/includes/admin-about.php:148
|
276 |
#, php-format
|
277 |
msgid "Show all events with category %1$s or %2$s."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin/includes/admin-about.php:149
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
"Show all events with category %1$s and all events where category %2$s as "
|
284 |
"well as %3$s is selected."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
288 |
msgid "Available Date Formats"
|
289 |
msgstr "Formatos de fecha disponibles"
|
290 |
|
291 |
+
#: admin/includes/admin-about.php:155
|
292 |
msgid "For date filters you can use the following date formats:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
296 |
msgid "Available Date Range Formats"
|
297 |
msgstr "Formatos Rango Fecha Disponible"
|
298 |
|
299 |
+
#: admin/includes/admin-about.php:164
|
300 |
msgid "For date filters you can use the following daterange formats:"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin/includes/admin-about.php:176
|
304 |
msgid "Value"
|
305 |
msgstr "Valor"
|
306 |
|
307 |
+
#: admin/includes/admin-about.php:180
|
308 |
msgid "Example"
|
309 |
msgstr "Ejemplo"
|
310 |
|
311 |
+
#: admin/includes/admin-categories.php:53
|
312 |
msgid "Edit Category"
|
313 |
msgstr "Editar categoría"
|
314 |
|
315 |
+
#: admin/includes/admin-categories.php:53
|
316 |
msgid "Update Category"
|
317 |
msgstr "Actualizar Categoría"
|
318 |
|
319 |
+
#: admin/includes/admin-categories.php:59
|
320 |
msgid "Add New Category"
|
321 |
msgstr "Agregar nueva categoría"
|
322 |
|
323 |
+
#: admin/includes/admin-categories.php:84
|
324 |
#, php-format
|
325 |
msgid "Category \"%s\" deleted."
|
326 |
msgstr "Categoría “%s” eliminada."
|
327 |
|
328 |
+
#: admin/includes/admin-categories.php:86
|
329 |
#, php-format
|
330 |
msgid "This Category was also removed from %d events."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin/includes/admin-categories.php:92
|
334 |
#, php-format
|
335 |
msgid "Error while deleting category \"%s\""
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/includes/admin-categories.php:102
|
339 |
msgid "Sync with post categories enabled."
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/includes/admin-categories.php:105
|
343 |
msgid "Sync with post categories disabled."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/includes/admin-categories.php:111
|
347 |
msgid "Manual sync with post categories sucessfully finished."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/includes/admin-categories.php:119
|
351 |
#, php-format
|
352 |
msgid "New Category \"%s\" was added"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin/includes/admin-categories.php:122
|
356 |
#, php-format
|
357 |
msgid "Error: New Category \"%s\" could not be added"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/includes/admin-categories.php:128
|
361 |
#, php-format
|
362 |
msgid "Category \"%s\" was modified"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/includes/admin-categories.php:131
|
366 |
#, php-format
|
367 |
msgid "Error: Category \"%s\" could not be modified"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin/includes/admin-categories.php:138
|
371 |
+
msgid "Categories are automatically synced with the post categories."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: admin/includes/admin-categories.php:139
|
375 |
msgid ""
|
376 |
+
"Because of this all options to add new categories or editing existing "
|
377 |
+
"categories are disabled."
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin/includes/admin-categories.php:140
|
381 |
+
msgid ""
|
382 |
+
"If you want to manually edit the categories you have to disable this option."
|
383 |
+
msgstr ""
|
384 |
|
385 |
+
#: admin/includes/admin-categories.php:167
|
386 |
msgid "The name is how it appears on your site."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin/includes/admin-categories.php:172
|
|
|
|
|
|
|
|
|
|
|
390 |
msgid ""
|
391 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
392 |
"lowercase and contains only letters, numbers, and hyphens."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgid ""
|
397 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
398 |
"that have children categories for Bebop and Big Band. Totally optional."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/includes/admin-categories.php:232
|
402 |
msgid "Apply"
|
403 |
msgstr "Aplicar"
|
404 |
|
405 |
+
#: admin/includes/admin-categories.php:242
|
406 |
msgid "Do a manual sync with post categories"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/includes/admin-import.php:45
|
410 |
msgid "Import Events"
|
411 |
msgstr "Importar Eventos"
|
412 |
|
413 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
414 |
msgid "Step"
|
415 |
msgstr "Paso"
|
416 |
|
417 |
+
#: admin/includes/admin-import.php:65
|
418 |
msgid "Set import file and options"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin/includes/admin-import.php:68
|
422 |
+
#, php-format
|
423 |
+
msgid "Proceed with Step %1$s"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin/includes/admin-import.php:71
|
427 |
msgid "Example file"
|
428 |
msgstr "Archivo de ejemplo"
|
429 |
|
430 |
+
#: admin/includes/admin-import.php:72
|
431 |
#, php-format
|
432 |
msgid ""
|
433 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin/includes/admin-import.php:73
|
437 |
msgid "Note"
|
438 |
msgstr "Nota"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:73
|
441 |
msgid ""
|
442 |
"Do not change the column header and separator line (first two lines), "
|
443 |
"otherwise the import will fail!"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
447 |
+
#: admin/includes/admin-import.php:101
|
|
|
448 |
msgid "Sorry, there has been an error."
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:81
|
452 |
msgid "The file does not exist, please try again."
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin/includes/admin-import.php:89
|
456 |
msgid "The file is not a CSV file."
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:120
|
460 |
+
msgid "Events review and additonal category selection"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:123
|
464 |
+
msgid ""
|
465 |
+
"Warning: The following category slugs are not available and will be removed "
|
466 |
+
"from the imported events:"
|
467 |
+
msgstr ""
|
468 |
|
469 |
+
#: admin/includes/admin-import.php:129
|
470 |
+
msgid ""
|
471 |
+
"If you want to keep these categories, please create these Categories first "
|
472 |
+
"and do the import afterwards."
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: admin/includes/admin-import.php:147
|
476 |
+
msgid "Add additional categories"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: admin/includes/admin-import.php:148
|
480 |
+
msgid "Import events"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: admin/includes/admin-import.php:162
|
484 |
msgid "Import with errors!"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:163
|
488 |
#, php-format
|
489 |
msgid ""
|
490 |
"An error occurred during import! Please send your import file to %1$sthe "
|
491 |
"administrator%2$s for analysis."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: admin/includes/admin-import.php:167
|
495 |
msgid "Import successful!"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: admin/includes/admin-import.php:168
|
499 |
msgid "Go back to All Events"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
503 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
504 |
msgid "Title"
|
505 |
msgstr "Título"
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:176
|
508 |
msgid "Start Date"
|
509 |
msgstr "Fecha Inicio"
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:177
|
512 |
msgid "End Date"
|
513 |
msgstr "Fecha Final"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
516 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
517 |
msgid "Time"
|
518 |
msgstr "Hora"
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
521 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
522 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
523 |
msgid "Location"
|
524 |
msgstr "Ubicación"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
527 |
+
#: admin/includes/event_table.php:110
|
|
|
528 |
msgid "Details"
|
529 |
msgstr "Detalles"
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:181
|
532 |
+
msgid "Category slugs"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:220
|
536 |
+
#, php-format
|
537 |
+
msgid ""
|
538 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
539 |
+
"missing or not correct!"
|
540 |
+
msgstr ""
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
543 |
+
msgid "Import"
|
544 |
+
msgstr "Importar"
|
|
|
545 |
|
546 |
+
#: admin/includes/admin-main.php:114
|
547 |
msgid "Edit Event"
|
548 |
msgstr "Editar Evento"
|
549 |
|
550 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
551 |
msgid "Duplicate"
|
552 |
msgstr "Duplicar"
|
553 |
|
554 |
+
#: admin/includes/admin-new.php:43
|
555 |
#, php-format
|
556 |
msgid "Duplicate of event id:%d"
|
557 |
msgstr "Duplicado de evento id: % d"
|
558 |
|
559 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
560 |
msgid "required"
|
561 |
msgstr "obligatorio"
|
562 |
|
563 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
564 |
msgid "Date"
|
565 |
msgstr "Fecha"
|
566 |
|
567 |
+
#: admin/includes/admin-new.php:113
|
568 |
msgid "Multi-Day Event"
|
569 |
msgstr "Evento de varios días"
|
570 |
|
571 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
572 |
msgid "Publish"
|
573 |
msgstr "Publicar"
|
574 |
|
575 |
+
#: admin/includes/admin-new.php:160
|
576 |
msgid "Update"
|
577 |
msgstr "Actualizar"
|
578 |
|
579 |
+
#: admin/includes/admin-new.php:162
|
580 |
+
msgid "Cancel"
|
581 |
+
msgstr "Cancelar"
|
582 |
+
|
583 |
+
#: admin/includes/admin-new.php:175
|
584 |
+
msgid "No categories available."
|
585 |
+
msgstr "No hay categorías disponibles"
|
586 |
+
|
587 |
+
#: admin/includes/admin-new.php:221
|
588 |
msgid "Goto Category Settings"
|
589 |
msgstr "Ir a Ajustes de Categorías"
|
590 |
|
591 |
+
#: admin/includes/admin-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
msgid "Settings saved."
|
593 |
msgstr "Configuración guardada."
|
594 |
|
595 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
596 |
msgid "Frontend Settings"
|
597 |
msgstr "Configuración de interfaz"
|
598 |
|
599 |
+
#: admin/includes/admin-settings.php:70
|
600 |
msgid "Admin Page Settings"
|
601 |
msgstr "Configuración de página de administrador"
|
602 |
|
603 |
+
#: admin/includes/admin-settings.php:71
|
604 |
msgid "Feed Settings"
|
605 |
msgstr "Configuración Conectores"
|
606 |
|
607 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
608 |
msgid "event"
|
609 |
msgstr "evento"
|
610 |
|
611 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
612 |
msgid "events"
|
613 |
msgstr "eventos"
|
614 |
|
615 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
616 |
msgid "Edit"
|
617 |
msgstr "Editar"
|
618 |
|
619 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
620 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
621 |
msgid "Delete"
|
622 |
msgstr "Borrar"
|
623 |
|
624 |
+
#: admin/includes/category_table.php:107
|
625 |
+
msgid "Name"
|
626 |
+
msgstr "Nombre"
|
627 |
+
|
628 |
+
#: admin/includes/category_table.php:109
|
629 |
+
msgid "Slug"
|
630 |
+
msgstr "Enlace permanente"
|
631 |
+
|
632 |
+
#: admin/includes/event_table.php:112
|
633 |
msgid "Author"
|
634 |
msgstr "Autor"
|
635 |
|
636 |
+
#: admin/includes/event_table.php:113
|
637 |
msgid "Published"
|
638 |
msgstr "Publicado"
|
639 |
|
640 |
+
#: admin/includes/event_table.php:175
|
641 |
msgid "Filter"
|
642 |
msgstr "Filtro"
|
643 |
|
644 |
+
#: admin/includes/event_table.php:297
|
645 |
#, php-format
|
646 |
msgid "%s ago"
|
647 |
msgstr "hace %s"
|
648 |
|
649 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
650 |
msgid "Year"
|
651 |
msgstr "Año"
|
652 |
|
653 |
+
#: includes/daterange_helptexts.php:8
|
654 |
msgid "A year can be specified in 4 digit format."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
658 |
+
#: includes/daterange_helptexts.php:36
|
|
|
659 |
#, php-format
|
660 |
msgid ""
|
661 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
662 |
"last day."
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/daterange_helptexts.php:9
|
666 |
msgid "the resulting year"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/daterange_helptexts.php:12
|
670 |
msgid "Month"
|
671 |
msgstr "Mes"
|
672 |
|
673 |
+
#: includes/daterange_helptexts.php:13
|
674 |
msgid ""
|
675 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
676 |
"month, seperated by a hyphen (-)."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: includes/daterange_helptexts.php:14
|
680 |
msgid "the resulting month"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: includes/daterange_helptexts.php:17
|
684 |
msgid "Day"
|
685 |
msgstr "Día"
|
686 |
|
687 |
+
#: includes/daterange_helptexts.php:18
|
688 |
msgid ""
|
689 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
690 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: includes/daterange_helptexts.php:21
|
694 |
msgid "Relative Year"
|
695 |
msgstr "Año relativo"
|
696 |
|
697 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
698 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
699 |
#, php-format
|
700 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: includes/daterange_helptexts.php:22
|
704 |
msgid "A relative year"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
708 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
709 |
#, php-format
|
710 |
msgid ""
|
711 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
712 |
"%3$s or %4$s attached (see also the example below)."
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: includes/daterange_helptexts.php:23
|
716 |
msgid "number of years"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
720 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
721 |
#, php-format
|
722 |
msgid "Additionally the following values are available: %1$s"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/daterange_helptexts.php:27
|
726 |
msgid "Relative Month"
|
727 |
msgstr "Mes relativo"
|
728 |
|
729 |
+
#: includes/daterange_helptexts.php:28
|
730 |
msgid "A relative month"
|
731 |
msgstr "Un mes relativo"
|
732 |
|
733 |
+
#: includes/daterange_helptexts.php:29
|
734 |
msgid "number of months"
|
735 |
msgstr "número de meses"
|
736 |
|
737 |
+
#: includes/daterange_helptexts.php:33
|
738 |
msgid "Relative Week"
|
739 |
msgstr "Semana relativa"
|
740 |
|
741 |
+
#: includes/daterange_helptexts.php:34
|
742 |
msgid "A relative week"
|
743 |
msgstr "Una semana relativa"
|
744 |
|
745 |
+
#: includes/daterange_helptexts.php:35
|
746 |
msgid "number of weeks"
|
747 |
msgstr "número de semanas"
|
748 |
|
749 |
+
#: includes/daterange_helptexts.php:36
|
750 |
msgid "the resulting week"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/daterange_helptexts.php:37
|
754 |
#, php-format
|
755 |
msgid ""
|
756 |
"The first day of the week is depending on the option %1$s which can be found"
|
757 |
" and changed in %2$s."
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
761 |
msgid "Relative Day"
|
762 |
msgstr "Día relativo"
|
763 |
|
764 |
+
#: includes/daterange_helptexts.php:42
|
765 |
msgid "A relative day"
|
766 |
msgstr "Un día relativo"
|
767 |
|
768 |
+
#: includes/daterange_helptexts.php:43
|
769 |
msgid "number of days"
|
770 |
msgstr "Número de días"
|
771 |
|
772 |
+
#: includes/daterange_helptexts.php:49
|
773 |
msgid "Date range"
|
774 |
msgstr "Rango de fechas"
|
775 |
|
776 |
+
#: includes/daterange_helptexts.php:50
|
777 |
msgid ""
|
778 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
779 |
"\t For the start and end date any available date format can be used."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
783 |
msgid "This value defines a range without any limits."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
787 |
+
#: includes/daterange_helptexts.php:66
|
|
|
788 |
#, php-format
|
789 |
msgid "The corresponding date_range format is: %1$s"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
793 |
msgid "Upcoming"
|
794 |
msgstr "Próximamente"
|
795 |
|
796 |
+
#: includes/daterange_helptexts.php:60
|
797 |
msgid "This value defines a range from the actual day to the future."
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
801 |
msgid "Past"
|
802 |
msgstr "Pasado"
|
803 |
|
804 |
+
#: includes/daterange_helptexts.php:65
|
805 |
msgid "This value defines a range from the past to the previous day."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/filterbar.php:282
|
809 |
+
msgid "All"
|
810 |
+
msgstr "Todos"
|
811 |
+
|
812 |
+
#: includes/filterbar.php:285
|
813 |
msgid "Show all dates"
|
814 |
msgstr "Mostrar todas las fechas"
|
815 |
|
816 |
+
#: includes/filterbar.php:285
|
817 |
msgid "Show all categories"
|
818 |
msgstr "Mostrar todas las categorías"
|
819 |
|
820 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
msgid "Sync Categories"
|
822 |
msgstr "Sincronizar Categorías"
|
823 |
|
824 |
+
#: includes/options_helptexts.php:12
|
825 |
msgid "Keep event categories in sync with post categories automatically"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/options_helptexts.php:13
|
829 |
msgid "Attention"
|
830 |
msgstr "Atención"
|
831 |
|
832 |
+
#: includes/options_helptexts.php:14
|
833 |
msgid ""
|
834 |
"Please note that this option will delete all categories which are not "
|
835 |
"available in the post categories! Existing Categories with the same slug "
|
836 |
"will be updated."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/options_helptexts.php:18
|
840 |
msgid "CSV File to import"
|
841 |
msgstr "Importar vía archivo CSV"
|
842 |
|
843 |
+
#: includes/options_helptexts.php:20
|
844 |
msgid "Please select the file which contains the event data in CSV format."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/options_helptexts.php:23
|
848 |
msgid "Used date format"
|
849 |
msgstr "Formato de Fecha utilizado"
|
850 |
|
851 |
+
#: includes/options_helptexts.php:25
|
852 |
msgid ""
|
853 |
"With this option the used date format for event start and end date given in "
|
854 |
"the CSV file can be specified."
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: includes/options_helptexts.php:29
|
858 |
msgid "Text for no events"
|
859 |
msgstr "Texto para ningún evento"
|
860 |
|
861 |
+
#: includes/options_helptexts.php:31
|
862 |
msgid ""
|
863 |
"This option defines the displayed text when no events are available for the "
|
864 |
"selected view."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: includes/options_helptexts.php:34
|
868 |
msgid "Multiday filter range"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/options_helptexts.php:35
|
872 |
msgid "Use the complete event range in the date filter"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: includes/options_helptexts.php:36
|
876 |
msgid ""
|
877 |
"This option defines if the complete range of a multiday event shall be "
|
878 |
"considered in the date filter."
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: includes/options_helptexts.php:37
|
882 |
msgid ""
|
883 |
"If disabled, only the start day of an event is considered in the filter."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: includes/options_helptexts.php:38
|
887 |
msgid ""
|
888 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
889 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
890 |
"but it is hidden when the option is disabled."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: includes/options_helptexts.php:41
|
894 |
msgid "Date display"
|
895 |
msgstr "Indicación de la fecha"
|
896 |
|
897 |
+
#: includes/options_helptexts.php:42
|
898 |
msgid "Show the date only once per day"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/options_helptexts.php:43
|
902 |
msgid ""
|
903 |
"With this option enabled the date is only displayed once per day if more "
|
904 |
"than one event is available on the same day."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: includes/options_helptexts.php:44
|
908 |
msgid ""
|
909 |
"If enabled, the events are ordered in a different way (end date before start"
|
910 |
" time) to allow using the same date for as much events as possible."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/options_helptexts.php:47
|
914 |
msgid "HTML tags"
|
915 |
msgstr "Etiquetas HTML"
|
916 |
|
917 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
918 |
#, php-format
|
919 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
923 |
#, php-format
|
924 |
msgid ""
|
925 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: includes/options_helptexts.php:57
|
929 |
+
msgid "Preferred language file"
|
930 |
+
msgstr ""
|
931 |
+
|
932 |
+
#: includes/options_helptexts.php:58
|
933 |
+
msgid "Load translations from general language directory first"
|
934 |
+
msgstr ""
|
935 |
+
|
936 |
+
#: includes/options_helptexts.php:59
|
937 |
+
#, php-format
|
938 |
+
msgid ""
|
939 |
+
"The default is to load the %1$s translation file from the plugin language "
|
940 |
+
"directory first (%2$s)."
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: includes/options_helptexts.php:60
|
944 |
+
#, php-format
|
945 |
+
msgid ""
|
946 |
+
"If you want to load your own language file from the general language "
|
947 |
+
"directory %1$s for a language which is already included in the plugin "
|
948 |
+
"language directory, you have to enable this option."
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: includes/options_helptexts.php:64
|
952 |
msgid "Text for \"Show details\""
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: includes/options_helptexts.php:65
|
956 |
msgid ""
|
957 |
"With this option the displayed text for the link to show the event details "
|
958 |
"can be changed, when collapsing is enabled."
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: includes/options_helptexts.php:68
|
962 |
msgid "Text for \"Hide details\""
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: includes/options_helptexts.php:69
|
966 |
msgid ""
|
967 |
"With this option the displayed text for the link to hide the event details "
|
968 |
"can be changed, when collapsing is enabled."
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: includes/options_helptexts.php:72
|
972 |
msgid "Disable CSS file"
|
973 |
msgstr "Deshabitar CSS"
|
974 |
|
975 |
+
#: includes/options_helptexts.php:73
|
976 |
#, php-format
|
977 |
msgid "Disable the %1$s file."
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: includes/options_helptexts.php:74
|
981 |
#, php-format
|
982 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: includes/options_helptexts.php:75
|
986 |
msgid ""
|
987 |
"This normally only make sense if you have css conflicts with your theme and "
|
988 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: includes/options_helptexts.php:79
|
992 |
msgid "Date format in edit form"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: includes/options_helptexts.php:80
|
996 |
msgid ""
|
997 |
"This option sets the displayed date format for the event date fields in the "
|
998 |
"event new / edit form."
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: includes/options_helptexts.php:81
|
1002 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: includes/options_helptexts.php:82
|
1006 |
#, php-format
|
1007 |
msgid ""
|
1008 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1012 |
msgid "Enable RSS feed"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/options_helptexts.php:87
|
1016 |
msgid "Enable support for an event RSS feed"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: includes/options_helptexts.php:88
|
1020 |
+
msgid "This option activates a RSS feed for the events."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: includes/options_helptexts.php:89
|
1024 |
msgid ""
|
1025 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1026 |
+
"features."
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/options_helptexts.php:92
|
1030 |
msgid "Feed name"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/options_helptexts.php:93
|
1034 |
+
#, php-format
|
1035 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/options_helptexts.php:94
|
1039 |
+
#, php-format
|
1040 |
msgid ""
|
1041 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1042 |
+
"enabled)."
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: includes/options_helptexts.php:97
|
1046 |
msgid "Feed Description"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/options_helptexts.php:98
|
1050 |
+
#, php-format
|
1051 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: includes/options_helptexts.php:99
|
1055 |
msgid ""
|
1056 |
+
"This description will be used in the title for the feed link in the html "
|
1057 |
+
"head and for the description in the feed itself."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:102
|
1061 |
msgid "Listed events"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/options_helptexts.php:103
|
1065 |
msgid "Only show upcoming events in feed"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:104
|
1069 |
msgid ""
|
1070 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
|
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: includes/options_helptexts.php:105
|
1074 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: includes/options_helptexts.php:108
|
1078 |
msgid "Add RSS feed link in head"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/options_helptexts.php:109
|
1082 |
msgid "Add RSS feed link in the html head"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: includes/options_helptexts.php:110
|
1086 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: includes/options_helptexts.php:111
|
1090 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: includes/options_helptexts.php:112
|
1094 |
+
msgid ""
|
1095 |
+
"The first way is this option to include a link in the html head. This link "
|
1096 |
+
"will be recognized by browers or feed readers."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: includes/options_helptexts.php:113
|
1100 |
+
#, php-format
|
1101 |
msgid ""
|
1102 |
+
"The second way is to include a visible feed link directly in the event list."
|
1103 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: includes/options_helptexts.php:114
|
1107 |
+
#, php-format
|
1108 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:117
|
1112 |
msgid "Position of the RSS feed link"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:118
|
1116 |
+
msgid "at the top (above the navigation bar)"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: includes/options_helptexts.php:118
|
1120 |
+
msgid "between navigation bar and events"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: includes/options_helptexts.php:118
|
1124 |
+
msgid "at the bottom"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: includes/options_helptexts.php:119
|
1128 |
msgid ""
|
1129 |
+
"This option specifies the position of the RSS feed link in the event list."
|
|
|
|
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1133 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1134 |
+
#, php-format
|
1135 |
+
msgid ""
|
1136 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1137 |
+
" feed link."
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: includes/options_helptexts.php:123
|
1141 |
msgid "Align of the RSS feed link"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:124
|
1145 |
+
msgid "left"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: includes/options_helptexts.php:124
|
1149 |
+
msgid "center"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: includes/options_helptexts.php:124
|
1153 |
+
msgid "right"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: includes/options_helptexts.php:125
|
1157 |
msgid ""
|
1158 |
+
"This option specifies the align of the RSS feed link in the event list."
|
|
|
|
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:129
|
1162 |
msgid "Feed link text"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: includes/options_helptexts.php:130
|
1166 |
+
msgid ""
|
1167 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1168 |
+
msgstr ""
|
1169 |
+
|
1170 |
+
#: includes/options_helptexts.php:131
|
1171 |
msgid ""
|
1172 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1173 |
+
"image."
|
|
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:135
|
1177 |
msgid "Feed link image"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/options_helptexts.php:136
|
1181 |
msgid "Show rss image in feed link"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:137
|
1185 |
msgid ""
|
1186 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1187 |
+
" front of the text."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/options.php:43
|
1191 |
msgid "Show details"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options.php:44
|
1195 |
msgid "Hide details"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/sc_event-list_helptexts.php:7
|
1199 |
+
msgid "event-id"
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: includes/sc_event-list_helptexts.php:8
|
1203 |
+
#, php-format
|
1204 |
msgid ""
|
1205 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1206 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1207 |
+
"this event is shown."
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/sc_event-list_helptexts.php:10
|
1211 |
+
#: includes/sc_event-list_helptexts.php:22
|
1212 |
+
msgid "year"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/sc_event-list_helptexts.php:11
|
1216 |
msgid ""
|
1217 |
+
"This attribute defines which events are initially shown. The default is to "
|
1218 |
+
"show the upcoming events only."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/sc_event-list_helptexts.php:12
|
1222 |
+
#, php-format
|
1223 |
msgid ""
|
1224 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1225 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/sc_event-list_helptexts.php:14
|
1229 |
+
msgid "category slug"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: includes/sc_event-list_helptexts.php:15
|
1233 |
msgid ""
|
1234 |
+
"This attribute defines the category of which events are initially shown. The"
|
1235 |
+
" default is to show events of all categories."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/sc_event-list_helptexts.php:16
|
1239 |
msgid ""
|
1240 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1241 |
+
"change the displayed categories via the filterbar or url parameters."
|
|
|
|
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/sc_event-list_helptexts.php:19
|
1245 |
+
msgid "This attribute defines the initial order of the events."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: includes/sc_event-list_helptexts.php:20
|
1249 |
msgid ""
|
1250 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1251 |
+
"in the opposite direction (from new to old)."
|
|
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/sc_event-list_helptexts.php:23
|
1255 |
+
#, php-format
|
1256 |
msgid ""
|
1257 |
+
"This attribute defines the dates and date ranges of which events are "
|
1258 |
+
"displayed. The default is %1$s to show all events."
|
|
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/sc_event-list_helptexts.php:24
|
1262 |
+
#, php-format
|
1263 |
msgid ""
|
1264 |
+
"Filtered events according to %1$s value are not available in the event list."
|
|
|
|
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/sc_event-list_helptexts.php:25
|
1268 |
+
#, php-format
|
1269 |
+
msgid ""
|
1270 |
+
"You can find all available values with a description and examples in the "
|
1271 |
+
"sections %1$s and %2$s below."
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/sc_event-list_helptexts.php:26
|
1275 |
+
#, php-format
|
1276 |
+
msgid "See %1$s description if you want to define complex filters."
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/sc_event-list_helptexts.php:28
|
1280 |
+
msgid "category slugs"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/sc_event-list_helptexts.php:29
|
1284 |
+
msgid ""
|
1285 |
+
"This attribute defines the category filter which filters the events to show."
|
1286 |
+
" The default is $1$s or an empty string to show all events."
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: includes/sc_event-list_helptexts.php:30
|
1290 |
+
#, php-format
|
1291 |
+
msgid ""
|
1292 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1293 |
+
"list. They are also not available if a manual url parameter is added."
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: includes/sc_event-list_helptexts.php:31
|
1297 |
+
#, php-format
|
1298 |
+
msgid ""
|
1299 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1300 |
+
"if you want to define complex filters."
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: includes/sc_event-list_helptexts.php:33
|
1304 |
+
#: includes/sc_event-list_helptexts.php:76
|
1305 |
+
#: includes/sc_event-list_helptexts.php:91
|
1306 |
+
#: includes/sc_event-list_helptexts.php:106
|
1307 |
msgid "number"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/sc_event-list_helptexts.php:34
|
1311 |
+
#, php-format
|
1312 |
+
msgid ""
|
1313 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1314 |
+
"events is selected. With the default value %1$s all events will be "
|
1315 |
+
"displayed."
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/sc_event-list_helptexts.php:35
|
1319 |
+
msgid ""
|
1320 |
+
"Please not that in the actual version there is no pagination of the events "
|
1321 |
+
"available, so the event list can be very long."
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: includes/sc_event-list_helptexts.php:38
|
1325 |
+
msgid ""
|
1326 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1327 |
+
"allows the users to specify filters for the listed events."
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/sc_event-list_helptexts.php:39
|
1331 |
+
#, php-format
|
1332 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/sc_event-list_helptexts.php:40
|
1336 |
+
#, php-format
|
1337 |
+
msgid ""
|
1338 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1339 |
+
" in the single event view."
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/sc_event-list_helptexts.php:77
|
1343 |
+
#: includes/sc_event-list_helptexts.php:92
|
1344 |
msgid ""
|
1345 |
"This attribute specifies if the title should be truncated to the given "
|
1346 |
"number of characters in the event list."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/sc_event-list_helptexts.php:78
|
1350 |
+
#: includes/sc_event-list_helptexts.php:93
|
1351 |
#, php-format
|
1352 |
msgid ""
|
1353 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1354 |
"is automatically truncated via css."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/sc_event-list_helptexts.php:79
|
1358 |
+
#: includes/sc_event-list_helptexts.php:94
|
1359 |
+
#: includes/sc_event-list_helptexts.php:109
|
1360 |
msgid "This attribute has no influence if only a single event is shown."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/sc_event-list_helptexts.php:82
|
1364 |
msgid ""
|
1365 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1366 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1367 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/sc_event-list_helptexts.php:87
|
1371 |
msgid ""
|
1372 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1373 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1374 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: includes/sc_event-list_helptexts.php:97
|
1378 |
msgid ""
|
1379 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1380 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1381 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/sc_event-list_helptexts.php:102
|
1385 |
msgid ""
|
1386 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1387 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1388 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: includes/sc_event-list_helptexts.php:107
|
1392 |
msgid ""
|
1393 |
"This attribute specifies if the details should be truncate to the given "
|
1394 |
"number of characters in the event list."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: includes/sc_event-list_helptexts.php:108
|
1398 |
#, php-format
|
1399 |
msgid "With the standard value %1$s the full text is displayed."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: includes/sc_event-list_helptexts.php:112
|
1403 |
msgid ""
|
1404 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1405 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1407 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: includes/sc_event-list_helptexts.php:118
|
1411 |
msgid ""
|
1412 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1413 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1415 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: includes/sc_event-list_helptexts.php:124
|
1419 |
msgid ""
|
1420 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1421 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1424 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: includes/sc_event-list_helptexts.php:130
|
1428 |
msgid ""
|
1429 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1430 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1431 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: includes/sc_event-list_helptexts.php:137
|
1435 |
msgid ""
|
1436 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1437 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: includes/sc_event-list.php:138
|
1441 |
msgid "Event Information:"
|
1442 |
msgstr "Información del evento:"
|
1443 |
|
1444 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1445 |
msgid "This option defines the displayed title for the widget."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: includes/widget_helptexts.php:15
|
1449 |
msgid "Category Filter"
|
1450 |
msgstr "Categoría de filtro"
|
1451 |
|
1452 |
+
#: includes/widget_helptexts.php:17
|
1453 |
msgid ""
|
1454 |
"This option defines the categories of which events are shown. The standard "
|
1455 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1458 |
"all possibilities."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: includes/widget_helptexts.php:22
|
1462 |
msgid "Number of listed events"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: includes/widget_helptexts.php:24
|
1466 |
msgid "The number of upcoming events to display"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: includes/widget_helptexts.php:29
|
1470 |
msgid "Truncate event title to"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1474 |
+
#: includes/widget_helptexts.php:67
|
|
|
1475 |
msgid "characters"
|
1476 |
msgstr "caracteres"
|
1477 |
|
1478 |
+
#: includes/widget_helptexts.php:31
|
1479 |
msgid ""
|
1480 |
"This option defines the number of displayed characters for the event title."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1484 |
#, php-format
|
1485 |
msgid ""
|
1486 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1487 |
"automatically truncate the text via css."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: includes/widget_helptexts.php:37
|
1491 |
msgid "Show event starttime"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: includes/widget_helptexts.php:39
|
1495 |
msgid "This option defines if the event start time will be displayed."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: includes/widget_helptexts.php:44
|
1499 |
msgid "Show event location"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: includes/widget_helptexts.php:46
|
1503 |
msgid "This option defines if the event location will be displayed."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: includes/widget_helptexts.php:51
|
1507 |
msgid "Truncate location to"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: includes/widget_helptexts.php:53
|
1511 |
msgid ""
|
1512 |
"If the event location is diplayed this option defines the number of "
|
1513 |
"displayed characters."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: includes/widget_helptexts.php:59
|
1517 |
msgid "Show event details"
|
1518 |
msgstr "Ver detalles del evento"
|
1519 |
|
1520 |
+
#: includes/widget_helptexts.php:61
|
1521 |
msgid "This option defines if the event details will be displayed."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: includes/widget_helptexts.php:66
|
1525 |
msgid "Truncate details to"
|
1526 |
msgstr "Truncar los datos para"
|
1527 |
|
1528 |
+
#: includes/widget_helptexts.php:68
|
1529 |
msgid ""
|
1530 |
"If the event details are diplayed this option defines the number of diplayed"
|
1531 |
" characters."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: includes/widget_helptexts.php:69
|
1535 |
#, php-format
|
1536 |
msgid "Set this value to %1$s to view the full text."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/widget_helptexts.php:74
|
1540 |
msgid "URL to the linked Event List page"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: includes/widget_helptexts.php:76
|
1544 |
msgid ""
|
1545 |
"This option defines the url to the linked Event List page. This option is "
|
1546 |
"required if you want to use one of the options below."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: includes/widget_helptexts.php:81
|
1550 |
msgid "Shortcode ID on linked page"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: includes/widget_helptexts.php:83
|
1554 |
msgid ""
|
1555 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1556 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1557 |
"use multiple event-list shortcodes on the linked page."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: includes/widget_helptexts.php:90
|
1561 |
msgid ""
|
1562 |
"With this option you can add a link to the single event page for every "
|
1563 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1564 |
"id option if you want to use it."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/widget_helptexts.php:97
|
1568 |
msgid ""
|
1569 |
"With this option you can add a link to the event-list page below the "
|
1570 |
"diplayed events. You have to specify the url to page option if you want to "
|
1571 |
"use it."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: includes/widget_helptexts.php:102
|
1575 |
msgid "Caption for the link"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: includes/widget_helptexts.php:104
|
1579 |
msgid ""
|
1580 |
"This option defines the text for the link to the Event List page if the "
|
1581 |
"approriate option is selected."
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: includes/widget.php:20
|
1585 |
msgid "With this widget a list of upcoming events can be displayed."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/widget.php:25
|
1589 |
msgid "Upcoming events"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: includes/widget.php:38
|
1593 |
msgid "show events page"
|
1594 |
msgstr ""
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Jarno Vesala <jarno.vesala@jvesala.com>, 2015
|
@@ -8,9 +8,9 @@
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
-
"Report-Msgid-Bugs-To:
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -19,1215 +19,1389 @@ msgstr ""
|
|
19 |
"Language: fi_FI\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21 |
|
22 |
-
#:
|
23 |
msgid "Event List"
|
24 |
msgstr "Tapahtuma lista"
|
25 |
|
26 |
-
#: /
|
27 |
-
#: /
|
28 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
29 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
30 |
msgid "Events"
|
31 |
msgstr "Tapahtumat"
|
32 |
|
33 |
-
#:
|
34 |
msgid "All Events"
|
35 |
msgstr "Kaikki tapahtumat"
|
36 |
|
37 |
-
#: /
|
38 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
39 |
msgid "Add New Event"
|
40 |
msgstr "Lisää uusi tapahtuma"
|
41 |
|
42 |
-
#: /
|
43 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
44 |
msgid "Add New"
|
45 |
msgstr "Lisää uusi"
|
46 |
|
47 |
-
#: /
|
48 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
49 |
msgid "Event List Categories"
|
50 |
msgstr "Tapahtuma listan gategoriat"
|
51 |
|
52 |
-
#: /
|
53 |
-
#:
|
54 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
55 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
56 |
msgid "Categories"
|
57 |
msgstr "Kategoriat"
|
58 |
|
59 |
-
#: /
|
60 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
61 |
msgid "Event List Settings"
|
62 |
msgstr "Tapahtuma listan asetukset"
|
63 |
|
64 |
-
#:
|
65 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
66 |
msgid "Settings"
|
67 |
msgstr "Asetukset"
|
68 |
|
69 |
-
#: /
|
70 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
71 |
msgid "About Event List"
|
72 |
msgstr "Lisätietoa Tapahtumalistasta"
|
73 |
|
74 |
-
#:
|
75 |
msgid "About"
|
76 |
msgstr "Lisätietoa"
|
77 |
|
78 |
-
#: /
|
79 |
-
|
80 |
-
|
81 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
82 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
83 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
84 |
-
msgid "You do not have sufficient permissions to access this page."
|
85 |
-
msgstr "Sinulla ei ole tarvittavia oikeuksia tälle sivustolle."
|
86 |
|
87 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
88 |
msgid "Help and Instructions"
|
89 |
msgstr "Apu ja ohjeet"
|
90 |
|
91 |
-
#:
|
92 |
#, php-format
|
93 |
-
msgid "You can manage
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#:
|
97 |
msgid "To show the events on your site you have 2 possibilities"
|
98 |
msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi."
|
99 |
|
100 |
-
#:
|
101 |
#, php-format
|
102 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
103 |
msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen."
|
104 |
|
105 |
-
#:
|
106 |
#, php-format
|
107 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
108 |
msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi."
|
109 |
|
110 |
-
#:
|
111 |
msgid ""
|
112 |
"The displayed events and their style can be modified with the available "
|
113 |
"widget settings and the available attributes for the shortcode."
|
114 |
msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa."
|
115 |
|
116 |
-
#:
|
|
|
117 |
msgid ""
|
118 |
-
"A list of all available shortcode attributes with their
|
119 |
-
"available
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#:
|
123 |
msgid "The available widget options are described in their tooltip text."
|
124 |
msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä."
|
125 |
|
126 |
-
#:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
-
"
|
130 |
-
"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#:
|
134 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
135 |
msgid "Add links to the single events"
|
136 |
msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
|
137 |
|
138 |
-
#:
|
139 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
140 |
msgid "Add a link to the Event List page"
|
141 |
msgstr "Lisää linkki Tapahtumalistan sivulle"
|
142 |
|
143 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
#, php-format
|
145 |
msgid ""
|
146 |
-
"
|
147 |
-
"
|
148 |
-
"
|
|
|
|
|
|
|
|
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
-
#:
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
-
"Be sure to also check the %1$
|
155 |
-
"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
msgid ""
|
164 |
"You have the possibility to modify the output if you add some of the "
|
165 |
"following attributes to the shortcode."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#:
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
172 |
"including the attributes %1$s and %2$s would looks like this:"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
msgid ""
|
177 |
"Below you can find a list of all supported attributes with their "
|
178 |
"descriptions and available options:"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
182 |
msgid "Attribute name"
|
183 |
msgstr "Atribuutin nimi"
|
184 |
|
185 |
-
#:
|
186 |
msgid "Value options"
|
187 |
msgstr "Arvon vaihtoehdot"
|
188 |
|
189 |
-
#:
|
190 |
msgid "Default value"
|
191 |
msgstr "Oletus arvo"
|
192 |
|
193 |
-
#: /
|
194 |
-
#:
|
195 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
196 |
msgid "Description"
|
197 |
msgstr "Kuvaus"
|
198 |
|
199 |
-
#:
|
|
|
200 |
msgid "Filter Syntax"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
204 |
msgid ""
|
205 |
"For date and cat filters you can specify complex filters with the following "
|
206 |
"syntax:"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#:
|
210 |
#, php-format
|
211 |
msgid ""
|
212 |
"You can use %1$s and %2$s connections to define complex filters. "
|
213 |
"Additionally you can set brackets %3$s for nested queries."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
msgid "AND"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#:
|
221 |
msgid "OR"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#:
|
225 |
msgid "or"
|
226 |
msgstr "tai"
|
227 |
|
228 |
-
#:
|
229 |
msgid "and"
|
230 |
msgstr "ja"
|
231 |
|
232 |
-
#:
|
233 |
msgid "Examples for cat filters:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#:
|
237 |
#, php-format
|
238 |
msgid "Show all events with category %1$s."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
#, php-format
|
243 |
msgid "Show all events with category %1$s or %2$s."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#:
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"Show all events with category %1$s and all events where category %2$s as "
|
250 |
"well as %3$s is selected."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
254 |
msgid "Available Date Formats"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
msgid "For date filters you can use the following date formats:"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
msgid "Available Date Range Formats"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
msgid "For date filters you can use the following daterange formats:"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
270 |
msgid "Value"
|
271 |
msgstr "Arvo"
|
272 |
|
273 |
-
#:
|
274 |
msgid "Example"
|
275 |
msgstr "Esimerkki"
|
276 |
|
277 |
-
#:
|
278 |
msgid "Edit Category"
|
279 |
msgstr "Muokkaa kategoriaa"
|
280 |
|
281 |
-
#:
|
282 |
msgid "Update Category"
|
283 |
msgstr "Päivitä kategoria"
|
284 |
|
285 |
-
#:
|
286 |
msgid "Add New Category"
|
287 |
msgstr "Lisää uusi kategoria"
|
288 |
|
289 |
-
#:
|
290 |
#, php-format
|
291 |
msgid "Category \"%s\" deleted."
|
292 |
msgstr "Kategoria \"%s\" on poistettu."
|
293 |
|
294 |
-
#:
|
295 |
#, php-format
|
296 |
msgid "This Category was also removed from %d events."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#:
|
300 |
#, php-format
|
301 |
msgid "Error while deleting category \"%s\""
|
302 |
msgstr ""
|
303 |
|
304 |
-
#:
|
305 |
msgid "Sync with post categories enabled."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#:
|
309 |
msgid "Sync with post categories disabled."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#:
|
313 |
msgid "Manual sync with post categories sucessfully finished."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#:
|
317 |
#, php-format
|
318 |
msgid "New Category \"%s\" was added"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#:
|
322 |
#, php-format
|
323 |
msgid "Error: New Category \"%s\" could not be added"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#:
|
327 |
#, php-format
|
328 |
msgid "Category \"%s\" was modified"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#:
|
332 |
#, php-format
|
333 |
msgid "Error: Category \"%s\" could not be modified"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#:
|
337 |
-
msgid ""
|
338 |
-
"Categories are automatically synced with the post categories.<br />\n"
|
339 |
-
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
340 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#:
|
344 |
-
|
345 |
-
|
346 |
-
|
|
|
347 |
|
348 |
-
#:
|
349 |
-
msgid "
|
|
|
350 |
msgstr ""
|
351 |
|
352 |
-
#:
|
353 |
-
|
354 |
-
msgid "Slug"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#:
|
358 |
msgid ""
|
359 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
360 |
"lowercase and contains only letters, numbers, and hyphens."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#:
|
364 |
-
msgid "Parent"
|
365 |
-
msgstr ""
|
366 |
-
|
367 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
368 |
-
msgid "None"
|
369 |
-
msgstr "Tyhjä"
|
370 |
-
|
371 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
372 |
msgid ""
|
373 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
374 |
"that have children categories for Bebop and Big Band. Totally optional."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#:
|
378 |
msgid "Apply"
|
379 |
msgstr "Aseta"
|
380 |
|
381 |
-
#:
|
382 |
msgid "Do a manual sync with post categories"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#:
|
386 |
msgid "Import Events"
|
387 |
msgstr "Tuo tapahtumia"
|
388 |
|
389 |
-
#: /
|
390 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
391 |
msgid "Step"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#:
|
395 |
msgid "Set import file and options"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#:
|
399 |
-
|
400 |
-
|
|
|
401 |
|
402 |
-
#:
|
403 |
msgid "Example file"
|
404 |
msgstr "Esimerkki tiedosto"
|
405 |
|
406 |
-
#:
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#:
|
413 |
msgid "Note"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#:
|
417 |
msgid ""
|
418 |
"Do not change the column header and separator line (first two lines), "
|
419 |
"otherwise the import will fail!"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: /
|
423 |
-
#:
|
424 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
425 |
msgid "Sorry, there has been an error."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#:
|
429 |
msgid "The file does not exist, please try again."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#:
|
433 |
msgid "The file is not a CSV file."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#:
|
437 |
-
msgid "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
|
446 |
-
#:
|
|
|
|
|
|
|
|
|
447 |
msgid "Import with errors!"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"An error occurred during import! Please send your import file to %1$sthe "
|
454 |
"administrator%2$s for analysis."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#:
|
458 |
msgid "Import successful!"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#:
|
462 |
msgid "Go back to All Events"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: /
|
466 |
-
#:
|
467 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
468 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
469 |
msgid "Title"
|
470 |
msgstr "Otsikko"
|
471 |
|
472 |
-
#:
|
473 |
msgid "Start Date"
|
474 |
msgstr "Alku päivämäärä"
|
475 |
|
476 |
-
#:
|
477 |
msgid "End Date"
|
478 |
msgstr "Loppu päivämäärä"
|
479 |
|
480 |
-
#: /
|
481 |
-
#: /
|
482 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
483 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
484 |
msgid "Time"
|
485 |
msgstr "Aika"
|
486 |
|
487 |
-
#: /
|
488 |
-
#:
|
489 |
-
#:
|
490 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
491 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
492 |
msgid "Location"
|
493 |
msgstr "Sijainti"
|
494 |
|
495 |
-
#: /
|
496 |
-
#:
|
497 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
498 |
msgid "Details"
|
499 |
msgstr "Yksityiskohdat"
|
500 |
|
501 |
-
#:
|
502 |
-
msgid "
|
503 |
msgstr ""
|
504 |
|
505 |
-
#:
|
506 |
-
|
507 |
-
msgid "
|
508 |
-
|
509 |
-
|
510 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:237
|
511 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:166
|
512 |
-
msgid "No categories available."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: /
|
|
|
|
|
|
|
|
|
516 |
msgid "Edit Event"
|
517 |
msgstr "Muokkaa tapahtumaa"
|
518 |
|
519 |
-
#:
|
520 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
521 |
msgid "Duplicate"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#:
|
525 |
#, php-format
|
526 |
msgid "Duplicate of event id:%d"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: /
|
530 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
531 |
msgid "required"
|
532 |
msgstr "tarpeellinen"
|
533 |
|
534 |
-
#:
|
535 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
536 |
msgid "Date"
|
537 |
msgstr "Päiväys"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Multi-Day Event"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: /
|
544 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
545 |
msgid "Publish"
|
546 |
msgstr "Julkaise"
|
547 |
|
548 |
-
#:
|
549 |
msgid "Update"
|
550 |
msgstr "Päivitä"
|
551 |
|
552 |
-
#:
|
553 |
-
msgid "
|
|
|
|
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
-
#:
|
557 |
-
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
559 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
560 |
-
msgid "Y/m/d"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#:
|
564 |
msgid "Settings saved."
|
565 |
msgstr "Asetukset tallennettu."
|
566 |
|
567 |
-
#:
|
568 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
569 |
-
msgid "General"
|
570 |
-
msgstr "Yleinen"
|
571 |
-
|
572 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
573 |
msgid "Frontend Settings"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#:
|
577 |
msgid "Admin Page Settings"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#:
|
581 |
msgid "Feed Settings"
|
582 |
msgstr "Syöte asetukset"
|
583 |
|
584 |
-
#: /
|
585 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
586 |
msgid "event"
|
587 |
msgstr "tapahtuma"
|
588 |
|
589 |
-
#: /
|
590 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
591 |
msgid "events"
|
592 |
msgstr "Tapahtumat"
|
593 |
|
594 |
-
#: /
|
595 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
596 |
msgid "Edit"
|
597 |
msgstr "Muokkaa"
|
598 |
|
599 |
-
#: /
|
600 |
-
#: /
|
601 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
602 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
603 |
msgid "Delete"
|
604 |
msgstr "Poista"
|
605 |
|
606 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Author"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#:
|
611 |
msgid "Published"
|
612 |
msgstr "Julkaistu"
|
613 |
|
614 |
-
#:
|
615 |
msgid "Filter"
|
616 |
msgstr "Suodatin"
|
617 |
|
618 |
-
#:
|
619 |
#, php-format
|
620 |
msgid "%s ago"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#:
|
624 |
-
msgid "Y/m/d g:i:s A"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
628 |
msgid "Year"
|
629 |
msgstr "Vuosi"
|
630 |
|
631 |
-
#:
|
632 |
msgid "A year can be specified in 4 digit format."
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: /
|
636 |
-
#:
|
637 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
638 |
#, php-format
|
639 |
msgid ""
|
640 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
641 |
"last day."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#:
|
645 |
msgid "the resulting year"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#:
|
649 |
msgid "Month"
|
650 |
msgstr "Kuukausi"
|
651 |
|
652 |
-
#:
|
653 |
msgid ""
|
654 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
655 |
"month, seperated by a hyphen (-)."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#:
|
659 |
msgid "the resulting month"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#:
|
663 |
msgid "Day"
|
664 |
msgstr "Päivä"
|
665 |
|
666 |
-
#:
|
667 |
msgid ""
|
668 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
669 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#:
|
673 |
msgid "Relative Year"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: /
|
677 |
-
#: /
|
678 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
679 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
680 |
#, php-format
|
681 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#:
|
685 |
msgid "A relative year"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: /
|
689 |
-
#: /
|
690 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
691 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
695 |
"%3$s or %4$s attached (see also the example below)."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#:
|
699 |
msgid "number of years"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: /
|
703 |
-
#: /
|
704 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
705 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
706 |
#, php-format
|
707 |
msgid "Additionally the following values are available: %1$s"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#:
|
711 |
msgid "Relative Month"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#:
|
715 |
msgid "A relative month"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#:
|
719 |
msgid "number of months"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#:
|
723 |
msgid "Relative Week"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#:
|
727 |
msgid "A relative week"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#:
|
731 |
msgid "number of weeks"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#:
|
735 |
msgid "the resulting week"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#:
|
739 |
#, php-format
|
740 |
msgid ""
|
741 |
"The first day of the week is depending on the option %1$s which can be found"
|
742 |
" and changed in %2$s."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#:
|
746 |
-
msgid "Week Starts On"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
750 |
msgid "Relative Day"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#:
|
754 |
msgid "A relative day"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#:
|
758 |
msgid "number of days"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#:
|
762 |
msgid "Date range"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#:
|
766 |
msgid ""
|
767 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
768 |
"\t For the start and end date any available date format can be used."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#:
|
772 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
773 |
-
msgid "All"
|
774 |
-
msgstr "Kaikki"
|
775 |
-
|
776 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
777 |
msgid "This value defines a range without any limits."
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: /
|
781 |
-
#:
|
782 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
783 |
#, php-format
|
784 |
msgid "The corresponding date_range format is: %1$s"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#:
|
788 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
789 |
msgid "Upcoming"
|
790 |
msgstr "Tulevat"
|
791 |
|
792 |
-
#:
|
793 |
msgid "This value defines a range from the actual day to the future."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#:
|
797 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
798 |
msgid "Past"
|
799 |
msgstr "Menneet"
|
800 |
|
801 |
-
#:
|
802 |
msgid "This value defines a range from the past to the previous day."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#:
|
|
|
|
|
|
|
|
|
806 |
msgid "Show all dates"
|
807 |
msgstr "Näytä kaikki päiväykset"
|
808 |
|
809 |
-
#:
|
810 |
msgid "Show all categories"
|
811 |
msgstr "Näytä kaikki kategoriat"
|
812 |
|
813 |
-
#:
|
814 |
-
msgid "Event Categories"
|
815 |
-
msgstr "Tapahtuma kategoriat"
|
816 |
-
|
817 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
818 |
-
msgid "This option specifies all event category data."
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
822 |
msgid "Sync Categories"
|
823 |
msgstr "Synkronoi kategoriat"
|
824 |
|
825 |
-
#:
|
826 |
msgid "Keep event categories in sync with post categories automatically"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#:
|
830 |
msgid "Attention"
|
831 |
msgstr "Huomio"
|
832 |
|
833 |
-
#:
|
834 |
msgid ""
|
835 |
"Please note that this option will delete all categories which are not "
|
836 |
"available in the post categories! Existing Categories with the same slug "
|
837 |
"will be updated."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#:
|
841 |
msgid "CSV File to import"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#:
|
845 |
msgid "Please select the file which contains the event data in CSV format."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#:
|
849 |
msgid "Used date format"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#:
|
853 |
msgid ""
|
854 |
"With this option the used date format for event start and end date given in "
|
855 |
"the CSV file can be specified."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#:
|
859 |
msgid "Text for no events"
|
860 |
msgstr "Ei tapahtumia teksti"
|
861 |
|
862 |
-
#:
|
863 |
msgid ""
|
864 |
"This option defines the displayed text when no events are available for the "
|
865 |
"selected view."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#:
|
869 |
msgid "Multiday filter range"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#:
|
873 |
msgid "Use the complete event range in the date filter"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#:
|
877 |
msgid ""
|
878 |
"This option defines if the complete range of a multiday event shall be "
|
879 |
"considered in the date filter."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#:
|
883 |
msgid ""
|
884 |
"If disabled, only the start day of an event is considered in the filter."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#:
|
888 |
msgid ""
|
889 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
890 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
891 |
"but it is hidden when the option is disabled."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#:
|
895 |
msgid "Date display"
|
896 |
msgstr "Päivä näyttö"
|
897 |
|
898 |
-
#:
|
899 |
msgid "Show the date only once per day"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#:
|
903 |
msgid ""
|
904 |
"With this option enabled the date is only displayed once per day if more "
|
905 |
"than one event is available on the same day."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#:
|
909 |
msgid ""
|
910 |
"If enabled, the events are ordered in a different way (end date before start"
|
911 |
" time) to allow using the same date for as much events as possible."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#:
|
915 |
msgid "HTML tags"
|
916 |
msgstr "HTML merkit"
|
917 |
|
918 |
-
#: /
|
919 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
920 |
#, php-format
|
921 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: /
|
925 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
926 |
#, php-format
|
927 |
msgid ""
|
928 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
929 |
msgstr ""
|
930 |
|
931 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
msgid "Text for \"Show details\""
|
933 |
msgstr ""
|
934 |
|
935 |
-
#:
|
936 |
msgid ""
|
937 |
"With this option the displayed text for the link to show the event details "
|
938 |
"can be changed, when collapsing is enabled."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#:
|
942 |
msgid "Text for \"Hide details\""
|
943 |
msgstr ""
|
944 |
|
945 |
-
#:
|
946 |
msgid ""
|
947 |
"With this option the displayed text for the link to hide the event details "
|
948 |
"can be changed, when collapsing is enabled."
|
949 |
msgstr ""
|
950 |
|
951 |
-
#:
|
952 |
msgid "Disable CSS file"
|
953 |
msgstr "Estä CSS tiedosto"
|
954 |
|
955 |
-
#:
|
956 |
#, php-format
|
957 |
msgid "Disable the %1$s file."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#:
|
961 |
#, php-format
|
962 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#:
|
966 |
msgid ""
|
967 |
"This normally only make sense if you have css conflicts with your theme and "
|
968 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#:
|
972 |
msgid "Date format in edit form"
|
973 |
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
974 |
|
975 |
-
#:
|
976 |
msgid ""
|
977 |
"This option sets the displayed date format for the event date fields in the "
|
978 |
"event new / edit form."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
-
msgid "The
|
983 |
msgstr ""
|
984 |
|
985 |
-
#:
|
986 |
#, php-format
|
987 |
msgid ""
|
988 |
"All available options to specify the date format can be found %1$shere%2$s."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: /
|
992 |
msgid "Enable RSS feed"
|
993 |
msgstr "Salli RSS syöte"
|
994 |
|
995 |
-
#:
|
996 |
msgid "Enable support for an event RSS feed"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#:
|
|
|
|
|
|
|
|
|
1000 |
msgid ""
|
1001 |
-
"
|
1002 |
-
"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
msgid "Feed name"
|
1007 |
msgstr "Syötteen nimi"
|
1008 |
|
1009 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid ""
|
1011 |
-
"This
|
1012 |
-
"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#:
|
1016 |
msgid "Feed Description"
|
1017 |
msgstr "Syötteen kuvaus"
|
1018 |
|
1019 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1020 |
msgid ""
|
1021 |
-
"This
|
1022 |
-
"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "Listed events"
|
1027 |
msgstr "Listatut tapahtumat"
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid "Only show upcoming events in feed"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#:
|
1034 |
msgid ""
|
1035 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1036 |
-
|
|
|
|
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#:
|
1040 |
msgid "Add RSS feed link in head"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#:
|
1044 |
msgid "Add RSS feed link in the html head"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
msgid ""
|
1049 |
-
"
|
1050 |
-
"
|
1051 |
-
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
1052 |
-
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
1053 |
-
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1057 |
msgid "Position of the RSS feed link"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgid ""
|
1062 |
-
"This option specifies the position of the RSS feed link in the event list
|
1063 |
-
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1064 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1068 |
msgid "Align of the RSS feed link"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgid ""
|
1073 |
-
"This option specifies the align of the RSS feed link in the event list
|
1074 |
-
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1075 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Feed link text"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1083 |
msgid ""
|
1084 |
-
"
|
1085 |
-
"
|
1086 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#:
|
1090 |
msgid "Feed link image"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#:
|
1094 |
msgid "Show rss image in feed link"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#:
|
1098 |
msgid ""
|
1099 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1100 |
-
"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#:
|
1104 |
msgid "Show details"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#:
|
1108 |
msgid "Hide details"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1112 |
msgid ""
|
1113 |
-
"
|
1114 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid ""
|
1119 |
-
"This attribute
|
1120 |
-
"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#:
|
|
|
1124 |
msgid ""
|
1125 |
-
"
|
1126 |
-
"
|
|
|
|
|
|
|
|
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#:
|
1130 |
msgid ""
|
1131 |
-
"This attribute
|
1132 |
-
"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#:
|
1136 |
msgid ""
|
1137 |
-
"
|
1138 |
-
"
|
1139 |
-
|
1140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#:
|
1144 |
msgid ""
|
1145 |
-
"This attribute
|
1146 |
-
"
|
1147 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#:
|
|
|
1151 |
msgid ""
|
1152 |
-
"
|
1153 |
-
"
|
1154 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#:
|
|
|
1158 |
msgid ""
|
1159 |
-
"
|
1160 |
-
"
|
1161 |
-
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#:
|
1165 |
-
#:
|
1166 |
-
#:
|
|
|
1167 |
msgid "number"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#:
|
1171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
msgid ""
|
1173 |
"This attribute specifies if the title should be truncated to the given "
|
1174 |
"number of characters in the event list."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#:
|
1178 |
-
#:
|
1179 |
#, php-format
|
1180 |
msgid ""
|
1181 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1182 |
"is automatically truncated via css."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
-
#:
|
1188 |
msgid "This attribute has no influence if only a single event is shown."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#:
|
1192 |
msgid ""
|
1193 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1194 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1195 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#:
|
1199 |
msgid ""
|
1200 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1201 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1202 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#:
|
1206 |
msgid ""
|
1207 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1208 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1209 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#:
|
1213 |
msgid ""
|
1214 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1215 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1216 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#:
|
1220 |
msgid ""
|
1221 |
"This attribute specifies if the details should be truncate to the given "
|
1222 |
"number of characters in the event list."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#:
|
1226 |
#, php-format
|
1227 |
msgid "With the standard value %1$s the full text is displayed."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#:
|
1231 |
msgid ""
|
1232 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1233 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1235,7 +1409,7 @@ msgid ""
|
|
1235 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#:
|
1239 |
msgid ""
|
1240 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1241 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1243,7 +1417,7 @@ msgid ""
|
|
1243 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#:
|
1247 |
msgid ""
|
1248 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1249 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1252,36 +1426,32 @@ msgid ""
|
|
1252 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid ""
|
1257 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1258 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1259 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#:
|
1263 |
msgid ""
|
1264 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1265 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#:
|
1269 |
msgid "Event Information:"
|
1270 |
msgstr "Tapahtuman tiedot:"
|
1271 |
|
1272 |
-
#:
|
1273 |
-
msgid "(more…)"
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1277 |
msgid "This option defines the displayed title for the widget."
|
1278 |
msgstr "Määritä vimpaimen näkyvä otsikko"
|
1279 |
|
1280 |
-
#:
|
1281 |
msgid "Category Filter"
|
1282 |
msgstr "Kategoria suodatin"
|
1283 |
|
1284 |
-
#:
|
1285 |
msgid ""
|
1286 |
"This option defines the categories of which events are shown. The standard "
|
1287 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1290,139 +1460,137 @@ msgid ""
|
|
1290 |
"all possibilities."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "Number of listed events"
|
1295 |
msgstr "Listattujen tapahtumien määrä"
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "The number of upcoming events to display"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "Truncate event title to"
|
1303 |
msgstr "Tapahtuma otsikon lyhenne"
|
1304 |
|
1305 |
-
#: /
|
1306 |
-
#:
|
1307 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1308 |
msgid "characters"
|
1309 |
msgstr "merkkejä"
|
1310 |
|
1311 |
-
#:
|
1312 |
msgid ""
|
1313 |
"This option defines the number of displayed characters for the event title."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: /
|
1317 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1321 |
"automatically truncate the text via css."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#:
|
1325 |
msgid "Show event starttime"
|
1326 |
msgstr "Näytä tapahtuman alkamisajankohta"
|
1327 |
|
1328 |
-
#:
|
1329 |
msgid "This option defines if the event start time will be displayed."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#:
|
1333 |
msgid "Show event location"
|
1334 |
msgstr "Näytä tapahtuman paikka"
|
1335 |
|
1336 |
-
#:
|
1337 |
msgid "This option defines if the event location will be displayed."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#:
|
1341 |
msgid "Truncate location to"
|
1342 |
msgstr "Sijainnin lyhenne"
|
1343 |
|
1344 |
-
#:
|
1345 |
msgid ""
|
1346 |
"If the event location is diplayed this option defines the number of "
|
1347 |
"displayed characters."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#:
|
1351 |
msgid "Show event details"
|
1352 |
msgstr "Näytä tapahtuman tiedot"
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid "This option defines if the event details will be displayed."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#:
|
1359 |
msgid "Truncate details to"
|
1360 |
msgstr "Yksityiskohtien lyhenne"
|
1361 |
|
1362 |
-
#:
|
1363 |
msgid ""
|
1364 |
"If the event details are diplayed this option defines the number of diplayed"
|
1365 |
" characters."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
#, php-format
|
1370 |
msgid "Set this value to %1$s to view the full text."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#:
|
1374 |
msgid "URL to the linked Event List page"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#:
|
1378 |
msgid ""
|
1379 |
"This option defines the url to the linked Event List page. This option is "
|
1380 |
"required if you want to use one of the options below."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#:
|
1384 |
msgid "Shortcode ID on linked page"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#:
|
1388 |
msgid ""
|
1389 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1390 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1391 |
"use multiple event-list shortcodes on the linked page."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#:
|
1395 |
msgid ""
|
1396 |
"With this option you can add a link to the single event page for every "
|
1397 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1398 |
"id option if you want to use it."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#:
|
1402 |
msgid ""
|
1403 |
"With this option you can add a link to the event-list page below the "
|
1404 |
"diplayed events. You have to specify the url to page option if you want to "
|
1405 |
"use it."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#:
|
1409 |
msgid "Caption for the link"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#:
|
1413 |
msgid ""
|
1414 |
"This option defines the text for the link to the Event List page if the "
|
1415 |
"approriate option is selected."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#:
|
1419 |
msgid "With this widget a list of upcoming events can be displayed."
|
1420 |
msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Upcoming events"
|
1424 |
msgstr "Tulevat tapahtumat"
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "show events page"
|
1428 |
msgstr "näytä tapahtuma sivu"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Jarno Vesala <jarno.vesala@jvesala.com>, 2015
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
13 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
19 |
"Language: fi_FI\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21 |
|
22 |
+
#: admin/admin.php:45
|
23 |
msgid "Event List"
|
24 |
msgstr "Tapahtuma lista"
|
25 |
|
26 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
27 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
28 |
msgid "Events"
|
29 |
msgstr "Tapahtumat"
|
30 |
|
31 |
+
#: admin/admin.php:48
|
32 |
msgid "All Events"
|
33 |
msgstr "Kaikki tapahtumat"
|
34 |
|
35 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
36 |
msgid "Add New Event"
|
37 |
msgstr "Lisää uusi tapahtuma"
|
38 |
|
39 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
40 |
msgid "Add New"
|
41 |
msgstr "Lisää uusi"
|
42 |
|
43 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
44 |
msgid "Event List Categories"
|
45 |
msgstr "Tapahtuma listan gategoriat"
|
46 |
|
47 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
48 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
49 |
msgid "Categories"
|
50 |
msgstr "Kategoriat"
|
51 |
|
52 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
53 |
msgid "Event List Settings"
|
54 |
msgstr "Tapahtuma listan asetukset"
|
55 |
|
56 |
+
#: admin/admin.php:60
|
|
|
57 |
msgid "Settings"
|
58 |
msgstr "Asetukset"
|
59 |
|
60 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
61 |
msgid "About Event List"
|
62 |
msgstr "Lisätietoa Tapahtumalistasta"
|
63 |
|
64 |
+
#: admin/admin.php:64
|
65 |
msgid "About"
|
66 |
msgstr "Lisätietoa"
|
67 |
|
68 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
69 |
+
msgid "General"
|
70 |
+
msgstr "Yleinen"
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
73 |
+
#: admin/includes/admin-about.php:103
|
74 |
+
msgid "Shortcode Attributes"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: admin/includes/admin-about.php:71
|
78 |
msgid "Help and Instructions"
|
79 |
msgstr "Apu ja ohjeet"
|
80 |
|
81 |
+
#: admin/includes/admin-about.php:72
|
82 |
#, php-format
|
83 |
+
msgid "You can manage the events %1$shere%2$s"
|
84 |
+
msgstr ""
|
85 |
|
86 |
+
#: admin/includes/admin-about.php:73
|
87 |
msgid "To show the events on your site you have 2 possibilities"
|
88 |
msgstr "Sinulla on 2 tapaa näyttää Tapahtumalistan tapahtumia sivullasi."
|
89 |
|
90 |
+
#: admin/includes/admin-about.php:74
|
91 |
#, php-format
|
92 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
93 |
msgstr "Voit asettaa <strong>shortcoden</strong> %1$s mille tahansa sivulle tai mihin tahansa postaukseen."
|
94 |
|
95 |
+
#: admin/includes/admin-about.php:75
|
96 |
#, php-format
|
97 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
98 |
msgstr "Voit lisätä <strong>widgetin</strong> %1$s sivupalkkeihisi."
|
99 |
|
100 |
+
#: admin/includes/admin-about.php:76
|
101 |
msgid ""
|
102 |
"The displayed events and their style can be modified with the available "
|
103 |
"widget settings and the available attributes for the shortcode."
|
104 |
msgstr "Näytettävät tapahtumat ja niiden ulkoasua voidaan muokata widgetin asetuksista ja käyttämällä attribuutteja shortcodessa."
|
105 |
|
106 |
+
#: admin/includes/admin-about.php:77
|
107 |
+
#, php-format
|
108 |
msgid ""
|
109 |
+
"A list of all available shortcode attributes with their descriptions is "
|
110 |
+
"available in the %1$s tab."
|
111 |
+
msgstr ""
|
112 |
|
113 |
+
#: admin/includes/admin-about.php:78
|
114 |
msgid "The available widget options are described in their tooltip text."
|
115 |
msgstr "Saatavilla olevat widget-asetukset on kuvattu tooltipissä."
|
116 |
|
117 |
+
#: admin/includes/admin-about.php:79
|
118 |
#, php-format
|
119 |
msgid ""
|
120 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
121 |
+
" to insert an URL to the linked event-list page."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
125 |
msgid "Add links to the single events"
|
126 |
msgstr "Lisää linkkejä yksittäisiin tapahtumiin"
|
127 |
|
128 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
129 |
msgid "Add a link to the Event List page"
|
130 |
msgstr "Lisää linkki Tapahtumalistan sivulle"
|
131 |
|
132 |
+
#: admin/includes/admin-about.php:80
|
133 |
+
msgid ""
|
134 |
+
"This is required because the widget does not know in which page or post the "
|
135 |
+
"shortcode was included."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: admin/includes/admin-about.php:81
|
139 |
+
msgid ""
|
140 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
141 |
+
" This id describes which shortcode should be used on the given page or post "
|
142 |
+
"if you have more than one."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: admin/includes/admin-about.php:82
|
146 |
#, php-format
|
147 |
msgid ""
|
148 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
149 |
+
"but if required you can check the id by looking into the URL of an event "
|
150 |
+
"link on your linked page or post."
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: admin/includes/admin-about.php:83
|
154 |
+
#, php-format
|
155 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: admin/includes/admin-about.php:85
|
159 |
#, php-format
|
160 |
msgid ""
|
161 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
162 |
+
"want."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: admin/includes/admin-about.php:85
|
166 |
+
msgid "Settings page"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: admin/includes/admin-about.php:91
|
170 |
+
msgid "About the plugin author"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: admin/includes/admin-about.php:93
|
174 |
+
#, php-format
|
175 |
+
msgid ""
|
176 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
177 |
+
"plugin on the %2$s."
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/includes/admin-about.php:93
|
181 |
+
msgid "wordpress plugin site"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: admin/includes/admin-about.php:94
|
185 |
+
#, php-format
|
186 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: admin/includes/admin-about.php:94
|
190 |
+
msgid "wordpress plugin review site"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: admin/includes/admin-about.php:95
|
194 |
+
msgid ""
|
195 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: admin/includes/admin-about.php:105
|
199 |
msgid ""
|
200 |
"You have the possibility to modify the output if you add some of the "
|
201 |
"following attributes to the shortcode."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin/includes/admin-about.php:106
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
208 |
"including the attributes %1$s and %2$s would looks like this:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/includes/admin-about.php:108
|
212 |
msgid ""
|
213 |
"Below you can find a list of all supported attributes with their "
|
214 |
"descriptions and available options:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: admin/includes/admin-about.php:122
|
218 |
msgid "Attribute name"
|
219 |
msgstr "Atribuutin nimi"
|
220 |
|
221 |
+
#: admin/includes/admin-about.php:123
|
222 |
msgid "Value options"
|
223 |
msgstr "Arvon vaihtoehdot"
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:124
|
226 |
msgid "Default value"
|
227 |
msgstr "Oletus arvo"
|
228 |
|
229 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
230 |
+
#: admin/includes/category_table.php:108
|
|
|
231 |
msgid "Description"
|
232 |
msgstr "Kuvaus"
|
233 |
|
234 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
235 |
+
#: includes/sc_event-list_helptexts.php:31
|
236 |
msgid "Filter Syntax"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:144
|
240 |
msgid ""
|
241 |
"For date and cat filters you can specify complex filters with the following "
|
242 |
"syntax:"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin/includes/admin-about.php:145
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"You can use %1$s and %2$s connections to define complex filters. "
|
249 |
"Additionally you can set brackets %3$s for nested queries."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin/includes/admin-about.php:145
|
253 |
msgid "AND"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin/includes/admin-about.php:145
|
257 |
msgid "OR"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/includes/admin-about.php:145
|
261 |
msgid "or"
|
262 |
msgstr "tai"
|
263 |
|
264 |
+
#: admin/includes/admin-about.php:145
|
265 |
msgid "and"
|
266 |
msgstr "ja"
|
267 |
|
268 |
+
#: admin/includes/admin-about.php:146
|
269 |
msgid "Examples for cat filters:"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin/includes/admin-about.php:147
|
273 |
#, php-format
|
274 |
msgid "Show all events with category %1$s."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/includes/admin-about.php:148
|
278 |
#, php-format
|
279 |
msgid "Show all events with category %1$s or %2$s."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:149
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Show all events with category %1$s and all events where category %2$s as "
|
286 |
"well as %3$s is selected."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
290 |
msgid "Available Date Formats"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin/includes/admin-about.php:155
|
294 |
msgid "For date filters you can use the following date formats:"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
298 |
msgid "Available Date Range Formats"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin/includes/admin-about.php:164
|
302 |
msgid "For date filters you can use the following daterange formats:"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin/includes/admin-about.php:176
|
306 |
msgid "Value"
|
307 |
msgstr "Arvo"
|
308 |
|
309 |
+
#: admin/includes/admin-about.php:180
|
310 |
msgid "Example"
|
311 |
msgstr "Esimerkki"
|
312 |
|
313 |
+
#: admin/includes/admin-categories.php:53
|
314 |
msgid "Edit Category"
|
315 |
msgstr "Muokkaa kategoriaa"
|
316 |
|
317 |
+
#: admin/includes/admin-categories.php:53
|
318 |
msgid "Update Category"
|
319 |
msgstr "Päivitä kategoria"
|
320 |
|
321 |
+
#: admin/includes/admin-categories.php:59
|
322 |
msgid "Add New Category"
|
323 |
msgstr "Lisää uusi kategoria"
|
324 |
|
325 |
+
#: admin/includes/admin-categories.php:84
|
326 |
#, php-format
|
327 |
msgid "Category \"%s\" deleted."
|
328 |
msgstr "Kategoria \"%s\" on poistettu."
|
329 |
|
330 |
+
#: admin/includes/admin-categories.php:86
|
331 |
#, php-format
|
332 |
msgid "This Category was also removed from %d events."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:92
|
336 |
#, php-format
|
337 |
msgid "Error while deleting category \"%s\""
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: admin/includes/admin-categories.php:102
|
341 |
msgid "Sync with post categories enabled."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: admin/includes/admin-categories.php:105
|
345 |
msgid "Sync with post categories disabled."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: admin/includes/admin-categories.php:111
|
349 |
msgid "Manual sync with post categories sucessfully finished."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/includes/admin-categories.php:119
|
353 |
#, php-format
|
354 |
msgid "New Category \"%s\" was added"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/includes/admin-categories.php:122
|
358 |
#, php-format
|
359 |
msgid "Error: New Category \"%s\" could not be added"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:128
|
363 |
#, php-format
|
364 |
msgid "Category \"%s\" was modified"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: admin/includes/admin-categories.php:131
|
368 |
#, php-format
|
369 |
msgid "Error: Category \"%s\" could not be modified"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin/includes/admin-categories.php:138
|
373 |
+
msgid "Categories are automatically synced with the post categories."
|
|
|
|
|
|
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/includes/admin-categories.php:139
|
377 |
+
msgid ""
|
378 |
+
"Because of this all options to add new categories or editing existing "
|
379 |
+
"categories are disabled."
|
380 |
+
msgstr ""
|
381 |
|
382 |
+
#: admin/includes/admin-categories.php:140
|
383 |
+
msgid ""
|
384 |
+
"If you want to manually edit the categories you have to disable this option."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin/includes/admin-categories.php:167
|
388 |
+
msgid "The name is how it appears on your site."
|
|
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin/includes/admin-categories.php:172
|
392 |
msgid ""
|
393 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
394 |
"lowercase and contains only letters, numbers, and hyphens."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgid ""
|
399 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
400 |
"that have children categories for Bebop and Big Band. Totally optional."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/includes/admin-categories.php:232
|
404 |
msgid "Apply"
|
405 |
msgstr "Aseta"
|
406 |
|
407 |
+
#: admin/includes/admin-categories.php:242
|
408 |
msgid "Do a manual sync with post categories"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin/includes/admin-import.php:45
|
412 |
msgid "Import Events"
|
413 |
msgstr "Tuo tapahtumia"
|
414 |
|
415 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
416 |
msgid "Step"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin/includes/admin-import.php:65
|
420 |
msgid "Set import file and options"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin/includes/admin-import.php:68
|
424 |
+
#, php-format
|
425 |
+
msgid "Proceed with Step %1$s"
|
426 |
+
msgstr ""
|
427 |
|
428 |
+
#: admin/includes/admin-import.php:71
|
429 |
msgid "Example file"
|
430 |
msgstr "Esimerkki tiedosto"
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:72
|
433 |
#, php-format
|
434 |
msgid ""
|
435 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:73
|
439 |
msgid "Note"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:73
|
443 |
msgid ""
|
444 |
"Do not change the column header and separator line (first two lines), "
|
445 |
"otherwise the import will fail!"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
449 |
+
#: admin/includes/admin-import.php:101
|
|
|
450 |
msgid "Sorry, there has been an error."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:81
|
454 |
msgid "The file does not exist, please try again."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:89
|
458 |
msgid "The file is not a CSV file."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:120
|
462 |
+
msgid "Events review and additonal category selection"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin/includes/admin-import.php:123
|
466 |
+
msgid ""
|
467 |
+
"Warning: The following category slugs are not available and will be removed "
|
468 |
+
"from the imported events:"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: admin/includes/admin-import.php:129
|
472 |
+
msgid ""
|
473 |
+
"If you want to keep these categories, please create these Categories first "
|
474 |
+
"and do the import afterwards."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: admin/includes/admin-import.php:147
|
478 |
+
msgid "Add additional categories"
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:148
|
482 |
+
msgid "Import events"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: admin/includes/admin-import.php:162
|
486 |
msgid "Import with errors!"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:163
|
490 |
#, php-format
|
491 |
msgid ""
|
492 |
"An error occurred during import! Please send your import file to %1$sthe "
|
493 |
"administrator%2$s for analysis."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/includes/admin-import.php:167
|
497 |
msgid "Import successful!"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/includes/admin-import.php:168
|
501 |
msgid "Go back to All Events"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
505 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
506 |
msgid "Title"
|
507 |
msgstr "Otsikko"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:176
|
510 |
msgid "Start Date"
|
511 |
msgstr "Alku päivämäärä"
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:177
|
514 |
msgid "End Date"
|
515 |
msgstr "Loppu päivämäärä"
|
516 |
|
517 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
518 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
519 |
msgid "Time"
|
520 |
msgstr "Aika"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
523 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
524 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
525 |
msgid "Location"
|
526 |
msgstr "Sijainti"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
529 |
+
#: admin/includes/event_table.php:110
|
|
|
530 |
msgid "Details"
|
531 |
msgstr "Yksityiskohdat"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:181
|
534 |
+
msgid "Category slugs"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:220
|
538 |
+
#, php-format
|
539 |
+
msgid ""
|
540 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
541 |
+
"missing or not correct!"
|
|
|
|
|
|
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
545 |
+
msgid "Import"
|
546 |
+
msgstr "Tuo"
|
547 |
+
|
548 |
+
#: admin/includes/admin-main.php:114
|
549 |
msgid "Edit Event"
|
550 |
msgstr "Muokkaa tapahtumaa"
|
551 |
|
552 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
553 |
msgid "Duplicate"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/includes/admin-new.php:43
|
557 |
#, php-format
|
558 |
msgid "Duplicate of event id:%d"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
562 |
msgid "required"
|
563 |
msgstr "tarpeellinen"
|
564 |
|
565 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
566 |
msgid "Date"
|
567 |
msgstr "Päiväys"
|
568 |
|
569 |
+
#: admin/includes/admin-new.php:113
|
570 |
msgid "Multi-Day Event"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
574 |
msgid "Publish"
|
575 |
msgstr "Julkaise"
|
576 |
|
577 |
+
#: admin/includes/admin-new.php:160
|
578 |
msgid "Update"
|
579 |
msgstr "Päivitä"
|
580 |
|
581 |
+
#: admin/includes/admin-new.php:162
|
582 |
+
msgid "Cancel"
|
583 |
+
msgstr "Peruuta"
|
584 |
+
|
585 |
+
#: admin/includes/admin-new.php:175
|
586 |
+
msgid "No categories available."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/includes/admin-new.php:221
|
590 |
+
msgid "Goto Category Settings"
|
|
|
|
|
|
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/admin-settings.php:41
|
594 |
msgid "Settings saved."
|
595 |
msgstr "Asetukset tallennettu."
|
596 |
|
597 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
598 |
msgid "Frontend Settings"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: admin/includes/admin-settings.php:70
|
602 |
msgid "Admin Page Settings"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: admin/includes/admin-settings.php:71
|
606 |
msgid "Feed Settings"
|
607 |
msgstr "Syöte asetukset"
|
608 |
|
609 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
610 |
msgid "event"
|
611 |
msgstr "tapahtuma"
|
612 |
|
613 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
614 |
msgid "events"
|
615 |
msgstr "Tapahtumat"
|
616 |
|
617 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
618 |
msgid "Edit"
|
619 |
msgstr "Muokkaa"
|
620 |
|
621 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
622 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
623 |
msgid "Delete"
|
624 |
msgstr "Poista"
|
625 |
|
626 |
+
#: admin/includes/category_table.php:107
|
627 |
+
msgid "Name"
|
628 |
+
msgstr "Nimi"
|
629 |
+
|
630 |
+
#: admin/includes/category_table.php:109
|
631 |
+
msgid "Slug"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: admin/includes/event_table.php:112
|
635 |
msgid "Author"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/includes/event_table.php:113
|
639 |
msgid "Published"
|
640 |
msgstr "Julkaistu"
|
641 |
|
642 |
+
#: admin/includes/event_table.php:175
|
643 |
msgid "Filter"
|
644 |
msgstr "Suodatin"
|
645 |
|
646 |
+
#: admin/includes/event_table.php:297
|
647 |
#, php-format
|
648 |
msgid "%s ago"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
652 |
msgid "Year"
|
653 |
msgstr "Vuosi"
|
654 |
|
655 |
+
#: includes/daterange_helptexts.php:8
|
656 |
msgid "A year can be specified in 4 digit format."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
660 |
+
#: includes/daterange_helptexts.php:36
|
|
|
661 |
#, php-format
|
662 |
msgid ""
|
663 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
664 |
"last day."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/daterange_helptexts.php:9
|
668 |
msgid "the resulting year"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: includes/daterange_helptexts.php:12
|
672 |
msgid "Month"
|
673 |
msgstr "Kuukausi"
|
674 |
|
675 |
+
#: includes/daterange_helptexts.php:13
|
676 |
msgid ""
|
677 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
678 |
"month, seperated by a hyphen (-)."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: includes/daterange_helptexts.php:14
|
682 |
msgid "the resulting month"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: includes/daterange_helptexts.php:17
|
686 |
msgid "Day"
|
687 |
msgstr "Päivä"
|
688 |
|
689 |
+
#: includes/daterange_helptexts.php:18
|
690 |
msgid ""
|
691 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
692 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: includes/daterange_helptexts.php:21
|
696 |
msgid "Relative Year"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
700 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
701 |
#, php-format
|
702 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/daterange_helptexts.php:22
|
706 |
msgid "A relative year"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
710 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
711 |
#, php-format
|
712 |
msgid ""
|
713 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
714 |
"%3$s or %4$s attached (see also the example below)."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/daterange_helptexts.php:23
|
718 |
msgid "number of years"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
722 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
723 |
#, php-format
|
724 |
msgid "Additionally the following values are available: %1$s"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: includes/daterange_helptexts.php:27
|
728 |
msgid "Relative Month"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: includes/daterange_helptexts.php:28
|
732 |
msgid "A relative month"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: includes/daterange_helptexts.php:29
|
736 |
msgid "number of months"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: includes/daterange_helptexts.php:33
|
740 |
msgid "Relative Week"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: includes/daterange_helptexts.php:34
|
744 |
msgid "A relative week"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/daterange_helptexts.php:35
|
748 |
msgid "number of weeks"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/daterange_helptexts.php:36
|
752 |
msgid "the resulting week"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: includes/daterange_helptexts.php:37
|
756 |
#, php-format
|
757 |
msgid ""
|
758 |
"The first day of the week is depending on the option %1$s which can be found"
|
759 |
" and changed in %2$s."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
763 |
msgid "Relative Day"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: includes/daterange_helptexts.php:42
|
767 |
msgid "A relative day"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: includes/daterange_helptexts.php:43
|
771 |
msgid "number of days"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: includes/daterange_helptexts.php:49
|
775 |
msgid "Date range"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: includes/daterange_helptexts.php:50
|
779 |
msgid ""
|
780 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
781 |
"\t For the start and end date any available date format can be used."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
785 |
msgid "This value defines a range without any limits."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
789 |
+
#: includes/daterange_helptexts.php:66
|
|
|
790 |
#, php-format
|
791 |
msgid "The corresponding date_range format is: %1$s"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
795 |
msgid "Upcoming"
|
796 |
msgstr "Tulevat"
|
797 |
|
798 |
+
#: includes/daterange_helptexts.php:60
|
799 |
msgid "This value defines a range from the actual day to the future."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
803 |
msgid "Past"
|
804 |
msgstr "Menneet"
|
805 |
|
806 |
+
#: includes/daterange_helptexts.php:65
|
807 |
msgid "This value defines a range from the past to the previous day."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/filterbar.php:282
|
811 |
+
msgid "All"
|
812 |
+
msgstr "Kaikki"
|
813 |
+
|
814 |
+
#: includes/filterbar.php:285
|
815 |
msgid "Show all dates"
|
816 |
msgstr "Näytä kaikki päiväykset"
|
817 |
|
818 |
+
#: includes/filterbar.php:285
|
819 |
msgid "Show all categories"
|
820 |
msgstr "Näytä kaikki kategoriat"
|
821 |
|
822 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
msgid "Sync Categories"
|
824 |
msgstr "Synkronoi kategoriat"
|
825 |
|
826 |
+
#: includes/options_helptexts.php:12
|
827 |
msgid "Keep event categories in sync with post categories automatically"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/options_helptexts.php:13
|
831 |
msgid "Attention"
|
832 |
msgstr "Huomio"
|
833 |
|
834 |
+
#: includes/options_helptexts.php:14
|
835 |
msgid ""
|
836 |
"Please note that this option will delete all categories which are not "
|
837 |
"available in the post categories! Existing Categories with the same slug "
|
838 |
"will be updated."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/options_helptexts.php:18
|
842 |
msgid "CSV File to import"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: includes/options_helptexts.php:20
|
846 |
msgid "Please select the file which contains the event data in CSV format."
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: includes/options_helptexts.php:23
|
850 |
msgid "Used date format"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: includes/options_helptexts.php:25
|
854 |
msgid ""
|
855 |
"With this option the used date format for event start and end date given in "
|
856 |
"the CSV file can be specified."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/options_helptexts.php:29
|
860 |
msgid "Text for no events"
|
861 |
msgstr "Ei tapahtumia teksti"
|
862 |
|
863 |
+
#: includes/options_helptexts.php:31
|
864 |
msgid ""
|
865 |
"This option defines the displayed text when no events are available for the "
|
866 |
"selected view."
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/options_helptexts.php:34
|
870 |
msgid "Multiday filter range"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/options_helptexts.php:35
|
874 |
msgid "Use the complete event range in the date filter"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/options_helptexts.php:36
|
878 |
msgid ""
|
879 |
"This option defines if the complete range of a multiday event shall be "
|
880 |
"considered in the date filter."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/options_helptexts.php:37
|
884 |
msgid ""
|
885 |
"If disabled, only the start day of an event is considered in the filter."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/options_helptexts.php:38
|
889 |
msgid ""
|
890 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
891 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
892 |
"but it is hidden when the option is disabled."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/options_helptexts.php:41
|
896 |
msgid "Date display"
|
897 |
msgstr "Päivä näyttö"
|
898 |
|
899 |
+
#: includes/options_helptexts.php:42
|
900 |
msgid "Show the date only once per day"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/options_helptexts.php:43
|
904 |
msgid ""
|
905 |
"With this option enabled the date is only displayed once per day if more "
|
906 |
"than one event is available on the same day."
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/options_helptexts.php:44
|
910 |
msgid ""
|
911 |
"If enabled, the events are ordered in a different way (end date before start"
|
912 |
" time) to allow using the same date for as much events as possible."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/options_helptexts.php:47
|
916 |
msgid "HTML tags"
|
917 |
msgstr "HTML merkit"
|
918 |
|
919 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
920 |
#, php-format
|
921 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
925 |
#, php-format
|
926 |
msgid ""
|
927 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: includes/options_helptexts.php:57
|
931 |
+
msgid "Preferred language file"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/options_helptexts.php:58
|
935 |
+
msgid "Load translations from general language directory first"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: includes/options_helptexts.php:59
|
939 |
+
#, php-format
|
940 |
+
msgid ""
|
941 |
+
"The default is to load the %1$s translation file from the plugin language "
|
942 |
+
"directory first (%2$s)."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/options_helptexts.php:60
|
946 |
+
#, php-format
|
947 |
+
msgid ""
|
948 |
+
"If you want to load your own language file from the general language "
|
949 |
+
"directory %1$s for a language which is already included in the plugin "
|
950 |
+
"language directory, you have to enable this option."
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/options_helptexts.php:64
|
954 |
msgid "Text for \"Show details\""
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: includes/options_helptexts.php:65
|
958 |
msgid ""
|
959 |
"With this option the displayed text for the link to show the event details "
|
960 |
"can be changed, when collapsing is enabled."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/options_helptexts.php:68
|
964 |
msgid "Text for \"Hide details\""
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/options_helptexts.php:69
|
968 |
msgid ""
|
969 |
"With this option the displayed text for the link to hide the event details "
|
970 |
"can be changed, when collapsing is enabled."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/options_helptexts.php:72
|
974 |
msgid "Disable CSS file"
|
975 |
msgstr "Estä CSS tiedosto"
|
976 |
|
977 |
+
#: includes/options_helptexts.php:73
|
978 |
#, php-format
|
979 |
msgid "Disable the %1$s file."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/options_helptexts.php:74
|
983 |
#, php-format
|
984 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: includes/options_helptexts.php:75
|
988 |
msgid ""
|
989 |
"This normally only make sense if you have css conflicts with your theme and "
|
990 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/options_helptexts.php:79
|
994 |
msgid "Date format in edit form"
|
995 |
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
996 |
|
997 |
+
#: includes/options_helptexts.php:80
|
998 |
msgid ""
|
999 |
"This option sets the displayed date format for the event date fields in the "
|
1000 |
"event new / edit form."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/options_helptexts.php:81
|
1004 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: includes/options_helptexts.php:82
|
1008 |
#, php-format
|
1009 |
msgid ""
|
1010 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1014 |
msgid "Enable RSS feed"
|
1015 |
msgstr "Salli RSS syöte"
|
1016 |
|
1017 |
+
#: includes/options_helptexts.php:87
|
1018 |
msgid "Enable support for an event RSS feed"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/options_helptexts.php:88
|
1022 |
+
msgid "This option activates a RSS feed for the events."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/options_helptexts.php:89
|
1026 |
msgid ""
|
1027 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1028 |
+
"features."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/options_helptexts.php:92
|
1032 |
msgid "Feed name"
|
1033 |
msgstr "Syötteen nimi"
|
1034 |
|
1035 |
+
#: includes/options_helptexts.php:93
|
1036 |
+
#, php-format
|
1037 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: includes/options_helptexts.php:94
|
1041 |
+
#, php-format
|
1042 |
msgid ""
|
1043 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1044 |
+
"enabled)."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/options_helptexts.php:97
|
1048 |
msgid "Feed Description"
|
1049 |
msgstr "Syötteen kuvaus"
|
1050 |
|
1051 |
+
#: includes/options_helptexts.php:98
|
1052 |
+
#, php-format
|
1053 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: includes/options_helptexts.php:99
|
1057 |
msgid ""
|
1058 |
+
"This description will be used in the title for the feed link in the html "
|
1059 |
+
"head and for the description in the feed itself."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:102
|
1063 |
msgid "Listed events"
|
1064 |
msgstr "Listatut tapahtumat"
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:103
|
1067 |
msgid "Only show upcoming events in feed"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:104
|
1071 |
msgid ""
|
1072 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: includes/options_helptexts.php:105
|
1076 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: includes/options_helptexts.php:108
|
1080 |
msgid "Add RSS feed link in head"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/options_helptexts.php:109
|
1084 |
msgid "Add RSS feed link in the html head"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:110
|
1088 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/options_helptexts.php:111
|
1092 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/options_helptexts.php:112
|
1096 |
+
msgid ""
|
1097 |
+
"The first way is this option to include a link in the html head. This link "
|
1098 |
+
"will be recognized by browers or feed readers."
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: includes/options_helptexts.php:113
|
1102 |
+
#, php-format
|
1103 |
msgid ""
|
1104 |
+
"The second way is to include a visible feed link directly in the event list."
|
1105 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
|
|
|
|
|
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:114
|
1109 |
+
#, php-format
|
1110 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: includes/options_helptexts.php:117
|
1114 |
msgid "Position of the RSS feed link"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:118
|
1118 |
+
msgid "at the top (above the navigation bar)"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: includes/options_helptexts.php:118
|
1122 |
+
msgid "between navigation bar and events"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: includes/options_helptexts.php:118
|
1126 |
+
msgid "at the bottom"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: includes/options_helptexts.php:119
|
1130 |
msgid ""
|
1131 |
+
"This option specifies the position of the RSS feed link in the event list."
|
|
|
|
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1135 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1136 |
+
#, php-format
|
1137 |
+
msgid ""
|
1138 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1139 |
+
" feed link."
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/options_helptexts.php:123
|
1143 |
msgid "Align of the RSS feed link"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:124
|
1147 |
+
msgid "left"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/options_helptexts.php:124
|
1151 |
+
msgid "center"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/options_helptexts.php:124
|
1155 |
+
msgid "right"
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/options_helptexts.php:125
|
1159 |
msgid ""
|
1160 |
+
"This option specifies the align of the RSS feed link in the event list."
|
|
|
|
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:129
|
1164 |
msgid "Feed link text"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:130
|
1168 |
+
msgid ""
|
1169 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: includes/options_helptexts.php:131
|
1173 |
msgid ""
|
1174 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1175 |
+
"image."
|
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:135
|
1179 |
msgid "Feed link image"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:136
|
1183 |
msgid "Show rss image in feed link"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:137
|
1187 |
msgid ""
|
1188 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1189 |
+
" front of the text."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options.php:43
|
1193 |
msgid "Show details"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options.php:44
|
1197 |
msgid "Hide details"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/sc_event-list_helptexts.php:7
|
1201 |
+
msgid "event-id"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: includes/sc_event-list_helptexts.php:8
|
1205 |
+
#, php-format
|
1206 |
msgid ""
|
1207 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1208 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1209 |
+
"this event is shown."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: includes/sc_event-list_helptexts.php:10
|
1213 |
+
#: includes/sc_event-list_helptexts.php:22
|
1214 |
+
msgid "year"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/sc_event-list_helptexts.php:11
|
1218 |
msgid ""
|
1219 |
+
"This attribute defines which events are initially shown. The default is to "
|
1220 |
+
"show the upcoming events only."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: includes/sc_event-list_helptexts.php:12
|
1224 |
+
#, php-format
|
1225 |
msgid ""
|
1226 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1227 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/sc_event-list_helptexts.php:14
|
1231 |
+
msgid "category slug"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: includes/sc_event-list_helptexts.php:15
|
1235 |
msgid ""
|
1236 |
+
"This attribute defines the category of which events are initially shown. The"
|
1237 |
+
" default is to show events of all categories."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/sc_event-list_helptexts.php:16
|
1241 |
msgid ""
|
1242 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1243 |
+
"change the displayed categories via the filterbar or url parameters."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/sc_event-list_helptexts.php:19
|
1247 |
+
msgid "This attribute defines the initial order of the events."
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/sc_event-list_helptexts.php:20
|
1251 |
+
msgid ""
|
1252 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1253 |
+
"in the opposite direction (from new to old)."
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: includes/sc_event-list_helptexts.php:23
|
1257 |
+
#, php-format
|
1258 |
+
msgid ""
|
1259 |
+
"This attribute defines the dates and date ranges of which events are "
|
1260 |
+
"displayed. The default is %1$s to show all events."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/sc_event-list_helptexts.php:24
|
1264 |
+
#, php-format
|
1265 |
+
msgid ""
|
1266 |
+
"Filtered events according to %1$s value are not available in the event list."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: includes/sc_event-list_helptexts.php:25
|
1270 |
+
#, php-format
|
1271 |
+
msgid ""
|
1272 |
+
"You can find all available values with a description and examples in the "
|
1273 |
+
"sections %1$s and %2$s below."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: includes/sc_event-list_helptexts.php:26
|
1277 |
+
#, php-format
|
1278 |
+
msgid "See %1$s description if you want to define complex filters."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: includes/sc_event-list_helptexts.php:28
|
1282 |
+
msgid "category slugs"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/sc_event-list_helptexts.php:29
|
1286 |
msgid ""
|
1287 |
+
"This attribute defines the category filter which filters the events to show."
|
1288 |
+
" The default is $1$s or an empty string to show all events."
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/sc_event-list_helptexts.php:30
|
1292 |
+
#, php-format
|
1293 |
msgid ""
|
1294 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1295 |
+
"list. They are also not available if a manual url parameter is added."
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/sc_event-list_helptexts.php:31
|
1299 |
+
#, php-format
|
1300 |
msgid ""
|
1301 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1302 |
+
"if you want to define complex filters."
|
|
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/sc_event-list_helptexts.php:33
|
1306 |
+
#: includes/sc_event-list_helptexts.php:76
|
1307 |
+
#: includes/sc_event-list_helptexts.php:91
|
1308 |
+
#: includes/sc_event-list_helptexts.php:106
|
1309 |
msgid "number"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/sc_event-list_helptexts.php:34
|
1313 |
+
#, php-format
|
1314 |
+
msgid ""
|
1315 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1316 |
+
"events is selected. With the default value %1$s all events will be "
|
1317 |
+
"displayed."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: includes/sc_event-list_helptexts.php:35
|
1321 |
+
msgid ""
|
1322 |
+
"Please not that in the actual version there is no pagination of the events "
|
1323 |
+
"available, so the event list can be very long."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: includes/sc_event-list_helptexts.php:38
|
1327 |
+
msgid ""
|
1328 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1329 |
+
"allows the users to specify filters for the listed events."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: includes/sc_event-list_helptexts.php:39
|
1333 |
+
#, php-format
|
1334 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: includes/sc_event-list_helptexts.php:40
|
1338 |
+
#, php-format
|
1339 |
+
msgid ""
|
1340 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1341 |
+
" in the single event view."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/sc_event-list_helptexts.php:77
|
1345 |
+
#: includes/sc_event-list_helptexts.php:92
|
1346 |
msgid ""
|
1347 |
"This attribute specifies if the title should be truncated to the given "
|
1348 |
"number of characters in the event list."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/sc_event-list_helptexts.php:78
|
1352 |
+
#: includes/sc_event-list_helptexts.php:93
|
1353 |
#, php-format
|
1354 |
msgid ""
|
1355 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1356 |
"is automatically truncated via css."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:79
|
1360 |
+
#: includes/sc_event-list_helptexts.php:94
|
1361 |
+
#: includes/sc_event-list_helptexts.php:109
|
1362 |
msgid "This attribute has no influence if only a single event is shown."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/sc_event-list_helptexts.php:82
|
1366 |
msgid ""
|
1367 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1368 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1369 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/sc_event-list_helptexts.php:87
|
1373 |
msgid ""
|
1374 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1375 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1376 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: includes/sc_event-list_helptexts.php:97
|
1380 |
msgid ""
|
1381 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1382 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1383 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/sc_event-list_helptexts.php:102
|
1387 |
msgid ""
|
1388 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1389 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1390 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: includes/sc_event-list_helptexts.php:107
|
1394 |
msgid ""
|
1395 |
"This attribute specifies if the details should be truncate to the given "
|
1396 |
"number of characters in the event list."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: includes/sc_event-list_helptexts.php:108
|
1400 |
#, php-format
|
1401 |
msgid "With the standard value %1$s the full text is displayed."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/sc_event-list_helptexts.php:112
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1407 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1409 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/sc_event-list_helptexts.php:118
|
1413 |
msgid ""
|
1414 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1415 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1417 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: includes/sc_event-list_helptexts.php:124
|
1421 |
msgid ""
|
1422 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1423 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1426 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: includes/sc_event-list_helptexts.php:130
|
1430 |
msgid ""
|
1431 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1432 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1433 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: includes/sc_event-list_helptexts.php:137
|
1437 |
msgid ""
|
1438 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1439 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: includes/sc_event-list.php:138
|
1443 |
msgid "Event Information:"
|
1444 |
msgstr "Tapahtuman tiedot:"
|
1445 |
|
1446 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1447 |
msgid "This option defines the displayed title for the widget."
|
1448 |
msgstr "Määritä vimpaimen näkyvä otsikko"
|
1449 |
|
1450 |
+
#: includes/widget_helptexts.php:15
|
1451 |
msgid "Category Filter"
|
1452 |
msgstr "Kategoria suodatin"
|
1453 |
|
1454 |
+
#: includes/widget_helptexts.php:17
|
1455 |
msgid ""
|
1456 |
"This option defines the categories of which events are shown. The standard "
|
1457 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1460 |
"all possibilities."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: includes/widget_helptexts.php:22
|
1464 |
msgid "Number of listed events"
|
1465 |
msgstr "Listattujen tapahtumien määrä"
|
1466 |
|
1467 |
+
#: includes/widget_helptexts.php:24
|
1468 |
msgid "The number of upcoming events to display"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: includes/widget_helptexts.php:29
|
1472 |
msgid "Truncate event title to"
|
1473 |
msgstr "Tapahtuma otsikon lyhenne"
|
1474 |
|
1475 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1476 |
+
#: includes/widget_helptexts.php:67
|
|
|
1477 |
msgid "characters"
|
1478 |
msgstr "merkkejä"
|
1479 |
|
1480 |
+
#: includes/widget_helptexts.php:31
|
1481 |
msgid ""
|
1482 |
"This option defines the number of displayed characters for the event title."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1486 |
#, php-format
|
1487 |
msgid ""
|
1488 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1489 |
"automatically truncate the text via css."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: includes/widget_helptexts.php:37
|
1493 |
msgid "Show event starttime"
|
1494 |
msgstr "Näytä tapahtuman alkamisajankohta"
|
1495 |
|
1496 |
+
#: includes/widget_helptexts.php:39
|
1497 |
msgid "This option defines if the event start time will be displayed."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: includes/widget_helptexts.php:44
|
1501 |
msgid "Show event location"
|
1502 |
msgstr "Näytä tapahtuman paikka"
|
1503 |
|
1504 |
+
#: includes/widget_helptexts.php:46
|
1505 |
msgid "This option defines if the event location will be displayed."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: includes/widget_helptexts.php:51
|
1509 |
msgid "Truncate location to"
|
1510 |
msgstr "Sijainnin lyhenne"
|
1511 |
|
1512 |
+
#: includes/widget_helptexts.php:53
|
1513 |
msgid ""
|
1514 |
"If the event location is diplayed this option defines the number of "
|
1515 |
"displayed characters."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: includes/widget_helptexts.php:59
|
1519 |
msgid "Show event details"
|
1520 |
msgstr "Näytä tapahtuman tiedot"
|
1521 |
|
1522 |
+
#: includes/widget_helptexts.php:61
|
1523 |
msgid "This option defines if the event details will be displayed."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: includes/widget_helptexts.php:66
|
1527 |
msgid "Truncate details to"
|
1528 |
msgstr "Yksityiskohtien lyhenne"
|
1529 |
|
1530 |
+
#: includes/widget_helptexts.php:68
|
1531 |
msgid ""
|
1532 |
"If the event details are diplayed this option defines the number of diplayed"
|
1533 |
" characters."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/widget_helptexts.php:69
|
1537 |
#, php-format
|
1538 |
msgid "Set this value to %1$s to view the full text."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: includes/widget_helptexts.php:74
|
1542 |
msgid "URL to the linked Event List page"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: includes/widget_helptexts.php:76
|
1546 |
msgid ""
|
1547 |
"This option defines the url to the linked Event List page. This option is "
|
1548 |
"required if you want to use one of the options below."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: includes/widget_helptexts.php:81
|
1552 |
msgid "Shortcode ID on linked page"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: includes/widget_helptexts.php:83
|
1556 |
msgid ""
|
1557 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1558 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1559 |
"use multiple event-list shortcodes on the linked page."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: includes/widget_helptexts.php:90
|
1563 |
msgid ""
|
1564 |
"With this option you can add a link to the single event page for every "
|
1565 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1566 |
"id option if you want to use it."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: includes/widget_helptexts.php:97
|
1570 |
msgid ""
|
1571 |
"With this option you can add a link to the event-list page below the "
|
1572 |
"diplayed events. You have to specify the url to page option if you want to "
|
1573 |
"use it."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/widget_helptexts.php:102
|
1577 |
msgid "Caption for the link"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: includes/widget_helptexts.php:104
|
1581 |
msgid ""
|
1582 |
"This option defines the text for the link to the Event List page if the "
|
1583 |
"approriate option is selected."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: includes/widget.php:20
|
1587 |
msgid "With this widget a list of upcoming events can be displayed."
|
1588 |
msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
|
1589 |
|
1590 |
+
#: includes/widget.php:25
|
1591 |
msgid "Upcoming events"
|
1592 |
msgstr "Tulevat tapahtumat"
|
1593 |
|
1594 |
+
#: includes/widget.php:38
|
1595 |
msgid "show events page"
|
1596 |
msgstr "näytä tapahtuma sivu"
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Gwenael Jan <gwejan@gmail.com>, 2015
|
@@ -8,9 +8,9 @@
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
-
"Report-Msgid-Bugs-To:
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -19,1215 +19,1389 @@ msgstr ""
|
|
19 |
"Language: fr_FR\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
|
22 |
-
#:
|
23 |
msgid "Event List"
|
24 |
msgstr "Liste des événements"
|
25 |
|
26 |
-
#: /
|
27 |
-
#: /
|
28 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
29 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
30 |
msgid "Events"
|
31 |
msgstr "Evénements"
|
32 |
|
33 |
-
#:
|
34 |
msgid "All Events"
|
35 |
msgstr "Tous les évènements"
|
36 |
|
37 |
-
#: /
|
38 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
39 |
msgid "Add New Event"
|
40 |
msgstr "Ajouter un nouvel évènement"
|
41 |
|
42 |
-
#: /
|
43 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
44 |
msgid "Add New"
|
45 |
msgstr "Ajouter"
|
46 |
|
47 |
-
#: /
|
48 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
49 |
msgid "Event List Categories"
|
50 |
msgstr "Liste des catégories d'évènements"
|
51 |
|
52 |
-
#: /
|
53 |
-
#:
|
54 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
55 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
56 |
msgid "Categories"
|
57 |
msgstr "Catégories"
|
58 |
|
59 |
-
#: /
|
60 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
61 |
msgid "Event List Settings"
|
62 |
msgstr "Préférences"
|
63 |
|
64 |
-
#:
|
65 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
66 |
msgid "Settings"
|
67 |
msgstr "Préférences"
|
68 |
|
69 |
-
#: /
|
70 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
71 |
msgid "About Event List"
|
72 |
msgstr "A propos de la liste d'évènement"
|
73 |
|
74 |
-
#:
|
75 |
msgid "About"
|
76 |
msgstr "A propos"
|
77 |
|
78 |
-
#: /
|
79 |
-
|
80 |
-
|
81 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
82 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
83 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
84 |
-
msgid "You do not have sufficient permissions to access this page."
|
85 |
-
msgstr "Vous n'avez pas la permission d’accéder à cette page."
|
86 |
|
87 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
88 |
msgid "Help and Instructions"
|
89 |
msgstr "Aide et instructions"
|
90 |
|
91 |
-
#:
|
92 |
#, php-format
|
93 |
-
msgid "You can manage
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#:
|
97 |
msgid "To show the events on your site you have 2 possibilities"
|
98 |
msgstr "Pour voir les évènements sur votre site, vous avez 2 possibilités."
|
99 |
|
100 |
-
#:
|
101 |
#, php-format
|
102 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
103 |
msgstr "Vous pouvez placer le <strong>shortcode</strong> %1$s sur n'importe quel page ou article."
|
104 |
|
105 |
-
#:
|
106 |
#, php-format
|
107 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
108 |
msgstr "Vous pouvez ajouter le <strong>widget</strong> %1$s dans votre barre latérale."
|
109 |
|
110 |
-
#:
|
111 |
msgid ""
|
112 |
"The displayed events and their style can be modified with the available "
|
113 |
"widget settings and the available attributes for the shortcode."
|
114 |
msgstr "L'évènement affiché et son style peut être modifié avec les paramètres du widget et attributs disponible pour le shortcode."
|
115 |
|
116 |
-
#:
|
|
|
117 |
msgid ""
|
118 |
-
"A list of all available shortcode attributes with their
|
119 |
-
"available
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#:
|
123 |
msgid "The available widget options are described in their tooltip text."
|
124 |
msgstr "Les options disponibles du widget sont disponible dans leurs infobulles"
|
125 |
|
126 |
-
#:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
-
"
|
130 |
-
"
|
131 |
-
msgstr "
|
132 |
|
133 |
-
#:
|
134 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
135 |
msgid "Add links to the single events"
|
136 |
msgstr "Ajoute un lien vers le détail de l'évènement."
|
137 |
|
138 |
-
#:
|
139 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
140 |
msgid "Add a link to the Event List page"
|
141 |
msgstr "Ajoute un liens vers la page des évènements."
|
142 |
|
143 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
#, php-format
|
145 |
msgid ""
|
146 |
-
"
|
147 |
-
"
|
148 |
-
"
|
149 |
-
msgstr "
|
150 |
|
151 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
-
"Be sure to also check the %1$
|
155 |
-
"
|
156 |
-
msgstr "
|
157 |
|
158 |
-
#:
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
|
162 |
-
#:
|
163 |
msgid ""
|
164 |
"You have the possibility to modify the output if you add some of the "
|
165 |
"following attributes to the shortcode."
|
166 |
msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
|
167 |
|
168 |
-
#:
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
172 |
"including the attributes %1$s and %2$s would looks like this:"
|
173 |
msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
|
174 |
|
175 |
-
#:
|
176 |
msgid ""
|
177 |
"Below you can find a list of all supported attributes with their "
|
178 |
"descriptions and available options:"
|
179 |
msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
|
180 |
|
181 |
-
#:
|
182 |
msgid "Attribute name"
|
183 |
msgstr "Nom de l'attribut"
|
184 |
|
185 |
-
#:
|
186 |
msgid "Value options"
|
187 |
msgstr "Valeurs possibles"
|
188 |
|
189 |
-
#:
|
190 |
msgid "Default value"
|
191 |
msgstr "Valeur par défaut"
|
192 |
|
193 |
-
#: /
|
194 |
-
#:
|
195 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
196 |
msgid "Description"
|
197 |
msgstr "Description"
|
198 |
|
199 |
-
#:
|
|
|
200 |
msgid "Filter Syntax"
|
201 |
msgstr "Syntaxe des filtres"
|
202 |
|
203 |
-
#:
|
204 |
msgid ""
|
205 |
"For date and cat filters you can specify complex filters with the following "
|
206 |
"syntax:"
|
207 |
msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
|
208 |
|
209 |
-
#:
|
210 |
#, php-format
|
211 |
msgid ""
|
212 |
"You can use %1$s and %2$s connections to define complex filters. "
|
213 |
"Additionally you can set brackets %3$s for nested queries."
|
214 |
msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
|
215 |
|
216 |
-
#:
|
217 |
msgid "AND"
|
218 |
msgstr "ET"
|
219 |
|
220 |
-
#:
|
221 |
msgid "OR"
|
222 |
msgstr "OU"
|
223 |
|
224 |
-
#:
|
225 |
msgid "or"
|
226 |
msgstr "ou"
|
227 |
|
228 |
-
#:
|
229 |
msgid "and"
|
230 |
msgstr "et"
|
231 |
|
232 |
-
#:
|
233 |
msgid "Examples for cat filters:"
|
234 |
msgstr "Exemple de filtre de catégorie :"
|
235 |
|
236 |
-
#:
|
237 |
#, php-format
|
238 |
msgid "Show all events with category %1$s."
|
239 |
msgstr "Voir tous les évènements de la catégorie %1$s."
|
240 |
|
241 |
-
#:
|
242 |
#, php-format
|
243 |
msgid "Show all events with category %1$s or %2$s."
|
244 |
msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
|
245 |
|
246 |
-
#:
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"Show all events with category %1$s and all events where category %2$s as "
|
250 |
"well as %3$s is selected."
|
251 |
msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
|
252 |
|
253 |
-
#:
|
254 |
msgid "Available Date Formats"
|
255 |
msgstr "Formats de date disponible"
|
256 |
|
257 |
-
#:
|
258 |
msgid "For date filters you can use the following date formats:"
|
259 |
msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
|
260 |
|
261 |
-
#:
|
262 |
msgid "Available Date Range Formats"
|
263 |
msgstr "Formats de d'intervalle de date disponible"
|
264 |
|
265 |
-
#:
|
266 |
msgid "For date filters you can use the following daterange formats:"
|
267 |
msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
|
268 |
|
269 |
-
#:
|
270 |
msgid "Value"
|
271 |
msgstr "Valeur"
|
272 |
|
273 |
-
#:
|
274 |
msgid "Example"
|
275 |
msgstr "Exemple"
|
276 |
|
277 |
-
#:
|
278 |
msgid "Edit Category"
|
279 |
msgstr "Modifier catégorie"
|
280 |
|
281 |
-
#:
|
282 |
msgid "Update Category"
|
283 |
msgstr "Mettre à jour catégorie"
|
284 |
|
285 |
-
#:
|
286 |
msgid "Add New Category"
|
287 |
msgstr "Ajouter une nouvelle catégorie"
|
288 |
|
289 |
-
#:
|
290 |
#, php-format
|
291 |
msgid "Category \"%s\" deleted."
|
292 |
msgstr "Catégorie \"%s\" supprimé."
|
293 |
|
294 |
-
#:
|
295 |
#, php-format
|
296 |
msgid "This Category was also removed from %d events."
|
297 |
msgstr "Cette catégorie a aussi été supprimé de %d évènements."
|
298 |
|
299 |
-
#:
|
300 |
#, php-format
|
301 |
msgid "Error while deleting category \"%s\""
|
302 |
msgstr "Erreur lors de la suppression de la catégorie \"%s\""
|
303 |
|
304 |
-
#:
|
305 |
msgid "Sync with post categories enabled."
|
306 |
msgstr "Synchronisation avec les catégories d'articles activé"
|
307 |
|
308 |
-
#:
|
309 |
msgid "Sync with post categories disabled."
|
310 |
msgstr "Synchronisation avec les catégories d'articles désactivé."
|
311 |
|
312 |
-
#:
|
313 |
msgid "Manual sync with post categories sucessfully finished."
|
314 |
msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés."
|
315 |
|
316 |
-
#:
|
317 |
#, php-format
|
318 |
msgid "New Category \"%s\" was added"
|
319 |
msgstr "Nouvelle catégorie \"%s\" ajouté."
|
320 |
|
321 |
-
#:
|
322 |
#, php-format
|
323 |
msgid "Error: New Category \"%s\" could not be added"
|
324 |
msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée."
|
325 |
|
326 |
-
#:
|
327 |
#, php-format
|
328 |
msgid "Category \"%s\" was modified"
|
329 |
msgstr "La catégorie \"%s\" a été modifié."
|
330 |
|
331 |
-
#:
|
332 |
#, php-format
|
333 |
msgid "Error: Category \"%s\" could not be modified"
|
334 |
msgstr "Erreur: La catégorie \"%s\" ne peut pas être modifié."
|
335 |
|
336 |
-
#:
|
|
|
|
|
|
|
|
|
337 |
msgid ""
|
338 |
-
"
|
339 |
-
"
|
340 |
-
|
341 |
-
msgstr "Les catégories sont automatiquement synchronisé avec les catégories des articles.<br/>\n⇥⇥⇥ C'est pourquoi toutes les options pour ajouter ou modifier les catégories existantes sont désactivés.<br/>\n⇥⇥⇥ Si vous voulez éditer manuellement les catégories vous devez désactiver cette option."
|
342 |
|
343 |
-
#:
|
344 |
-
|
345 |
-
|
346 |
-
msgstr "
|
347 |
|
348 |
-
#:
|
349 |
msgid "The name is how it appears on your site."
|
350 |
msgstr "Le nom est la façon dont il apparaît sur votre site."
|
351 |
|
352 |
-
#:
|
353 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
|
354 |
-
msgid "Slug"
|
355 |
-
msgstr "Slug"
|
356 |
-
|
357 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
|
358 |
msgid ""
|
359 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
360 |
"lowercase and contains only letters, numbers, and hyphens."
|
361 |
msgstr "Le \"slug\" est la version du nom dans l'URL, c'est la version du nom ne contenant que des lettres minuscules (sans accents), des chiffres et des tirets."
|
362 |
|
363 |
-
#:
|
364 |
-
msgid "Parent"
|
365 |
-
msgstr "Parent"
|
366 |
-
|
367 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
368 |
-
msgid "None"
|
369 |
-
msgstr "Aucune"
|
370 |
-
|
371 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
372 |
msgid ""
|
373 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
374 |
"that have children categories for Bebop and Big Band. Totally optional."
|
375 |
msgstr "Les catégories peuvent avoir une hierarchie. Vous pouvez avoir une catégorie Jazz et avoir en dessous les catégories enfants Bebop et Big Band. Totalement optionnel."
|
376 |
|
377 |
-
#:
|
378 |
msgid "Apply"
|
379 |
msgstr "Appliquer"
|
380 |
|
381 |
-
#:
|
382 |
msgid "Do a manual sync with post categories"
|
383 |
msgstr "Faire une synchronisation manuel avec les catégories d'articles."
|
384 |
|
385 |
-
#:
|
386 |
msgid "Import Events"
|
387 |
msgstr "Importer évènements."
|
388 |
|
389 |
-
#: /
|
390 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
391 |
msgid "Step"
|
392 |
msgstr "Etape"
|
393 |
|
394 |
-
#:
|
395 |
msgid "Set import file and options"
|
396 |
msgstr "Sélection du fichier à importer et des options."
|
397 |
|
398 |
-
#:
|
399 |
-
|
400 |
-
|
|
|
401 |
|
402 |
-
#:
|
403 |
msgid "Example file"
|
404 |
msgstr "Fichier d'exemple"
|
405 |
|
406 |
-
#:
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
410 |
msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
|
411 |
|
412 |
-
#:
|
413 |
msgid "Note"
|
414 |
msgstr "Remarque"
|
415 |
|
416 |
-
#:
|
417 |
msgid ""
|
418 |
"Do not change the column header and separator line (first two lines), "
|
419 |
"otherwise the import will fail!"
|
420 |
msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
|
421 |
|
422 |
-
#: /
|
423 |
-
#:
|
424 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
425 |
msgid "Sorry, there has been an error."
|
426 |
msgstr "Désolé, il y a eu une erreur."
|
427 |
|
428 |
-
#:
|
429 |
msgid "The file does not exist, please try again."
|
430 |
msgstr "Le fichier n'existe pas, essayez encore."
|
431 |
|
432 |
-
#:
|
433 |
msgid "The file is not a CSV file."
|
434 |
msgstr "Le fichier n'est pas un fichier CSV valide."
|
435 |
|
436 |
-
#:
|
437 |
-
msgid "
|
438 |
-
msgstr "
|
439 |
|
440 |
-
#:
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
|
446 |
-
#:
|
|
|
|
|
|
|
|
|
447 |
msgid "Import with errors!"
|
448 |
msgstr "Importé avec des erreurs!"
|
449 |
|
450 |
-
#:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"An error occurred during import! Please send your import file to %1$sthe "
|
454 |
"administrator%2$s for analysis."
|
455 |
msgstr "Une erreur est survenue durant l'import! Merci d'envoyer votre fichier d'import à l'%1$sadministrateur%2$s pour analyse."
|
456 |
|
457 |
-
#:
|
458 |
msgid "Import successful!"
|
459 |
msgstr "Importation réussis!"
|
460 |
|
461 |
-
#:
|
462 |
msgid "Go back to All Events"
|
463 |
msgstr "Retour à la liste des évènements"
|
464 |
|
465 |
-
#: /
|
466 |
-
#:
|
467 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
468 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
469 |
msgid "Title"
|
470 |
msgstr "Titre"
|
471 |
|
472 |
-
#:
|
473 |
msgid "Start Date"
|
474 |
msgstr "Date de début"
|
475 |
|
476 |
-
#:
|
477 |
msgid "End Date"
|
478 |
msgstr "Date de fin"
|
479 |
|
480 |
-
#: /
|
481 |
-
#: /
|
482 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
483 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
484 |
msgid "Time"
|
485 |
msgstr "Heure"
|
486 |
|
487 |
-
#: /
|
488 |
-
#:
|
489 |
-
#:
|
490 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
491 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
492 |
msgid "Location"
|
493 |
msgstr "Lieu"
|
494 |
|
495 |
-
#: /
|
496 |
-
#:
|
497 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
498 |
msgid "Details"
|
499 |
msgstr "Détails"
|
500 |
|
501 |
-
#:
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
|
505 |
-
#:
|
506 |
-
|
507 |
-
msgid "
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /
|
511 |
-
|
512 |
-
|
513 |
-
msgstr "Pas de catégories disponible."
|
514 |
|
515 |
-
#:
|
516 |
msgid "Edit Event"
|
517 |
msgstr "Modifier évènement"
|
518 |
|
519 |
-
#:
|
520 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
521 |
msgid "Duplicate"
|
522 |
msgstr "Dupliquer"
|
523 |
|
524 |
-
#:
|
525 |
#, php-format
|
526 |
msgid "Duplicate of event id:%d"
|
527 |
msgstr "Duplication de l'évènement: %d"
|
528 |
|
529 |
-
#: /
|
530 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
531 |
msgid "required"
|
532 |
msgstr "Requis"
|
533 |
|
534 |
-
#:
|
535 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
536 |
msgid "Date"
|
537 |
msgstr "Date"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Multi-Day Event"
|
541 |
msgstr "Evènement sur plusieurs jours"
|
542 |
|
543 |
-
#: /
|
544 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
545 |
msgid "Publish"
|
546 |
msgstr "Publier"
|
547 |
|
548 |
-
#:
|
549 |
msgid "Update"
|
550 |
msgstr "Modifier"
|
551 |
|
552 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Goto Category Settings"
|
554 |
msgstr "Aller sur les paramètres des catégories"
|
555 |
|
556 |
-
#:
|
557 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
559 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
560 |
-
msgid "Y/m/d"
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
|
564 |
msgid "Settings saved."
|
565 |
msgstr "Paramètres sauvegardé."
|
566 |
|
567 |
-
#:
|
568 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
569 |
-
msgid "General"
|
570 |
-
msgstr "Général"
|
571 |
-
|
572 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
573 |
msgid "Frontend Settings"
|
574 |
msgstr "Frontend Préférences"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Admin Page Settings"
|
578 |
msgstr "Administration Préférences"
|
579 |
|
580 |
-
#:
|
581 |
msgid "Feed Settings"
|
582 |
msgstr "Flux RSS Préférences"
|
583 |
|
584 |
-
#: /
|
585 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
586 |
msgid "event"
|
587 |
msgstr "évènement"
|
588 |
|
589 |
-
#: /
|
590 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
591 |
msgid "events"
|
592 |
msgstr "évènements"
|
593 |
|
594 |
-
#: /
|
595 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
596 |
msgid "Edit"
|
597 |
msgstr "Modifier"
|
598 |
|
599 |
-
#: /
|
600 |
-
#: /
|
601 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
602 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
603 |
msgid "Delete"
|
604 |
msgstr "Supprimer"
|
605 |
|
606 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Author"
|
608 |
msgstr "Auteur"
|
609 |
|
610 |
-
#:
|
611 |
msgid "Published"
|
612 |
msgstr "Publié"
|
613 |
|
614 |
-
#:
|
615 |
msgid "Filter"
|
616 |
msgstr "Filtrer"
|
617 |
|
618 |
-
#:
|
619 |
#, php-format
|
620 |
msgid "%s ago"
|
621 |
msgstr "depuis %s"
|
622 |
|
623 |
-
#:
|
624 |
-
msgid "Y/m/d g:i:s A"
|
625 |
-
msgstr ""
|
626 |
-
|
627 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
628 |
msgid "Year"
|
629 |
msgstr "Année"
|
630 |
|
631 |
-
#:
|
632 |
msgid "A year can be specified in 4 digit format."
|
633 |
msgstr "Une année peut être spécifié au format 4 chiffres."
|
634 |
|
635 |
-
#: /
|
636 |
-
#:
|
637 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
638 |
#, php-format
|
639 |
msgid ""
|
640 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
641 |
"last day."
|
642 |
msgstr "Pour un filtre de date de début, le premier jour de %1$s est utilisé, dans une date de fin, le dernier jours est utilisé."
|
643 |
|
644 |
-
#:
|
645 |
msgid "the resulting year"
|
646 |
msgstr "Année résultante"
|
647 |
|
648 |
-
#:
|
649 |
msgid "Month"
|
650 |
msgstr "Mois"
|
651 |
|
652 |
-
#:
|
653 |
msgid ""
|
654 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
655 |
"month, seperated by a hyphen (-)."
|
656 |
msgstr "Un mois peut être spécifié avec 4 chiffres pour l'année et 2 chiffres pour le mois, séparé par un tiret (-)."
|
657 |
|
658 |
-
#:
|
659 |
msgid "the resulting month"
|
660 |
msgstr "Mois résultant"
|
661 |
|
662 |
-
#:
|
663 |
msgid "Day"
|
664 |
msgstr "Jour"
|
665 |
|
666 |
-
#:
|
667 |
msgid ""
|
668 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
669 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
670 |
msgstr "Un jour peut être spécifié avec le format de 4 chiffres pour l'année, 2 chiffres pour le mois et 2 chiffres pour le jour, séparé par un tiret (-)."
|
671 |
|
672 |
-
#:
|
673 |
msgid "Relative Year"
|
674 |
msgstr "Année relative"
|
675 |
|
676 |
-
#: /
|
677 |
-
#: /
|
678 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
679 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
680 |
#, php-format
|
681 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
682 |
msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s"
|
683 |
|
684 |
-
#:
|
685 |
msgid "A relative year"
|
686 |
msgstr "Une année relative"
|
687 |
|
688 |
-
#: /
|
689 |
-
#: /
|
690 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
691 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
695 |
"%3$s or %4$s attached (see also the example below)."
|
696 |
msgstr "Cela signifie que vous pouvez spécifier un %2$s positif ou négatif (%1$s) à partir de maintenant suffixé par %3$s ou %4$s (voir l'exemple ci-dessous)"
|
697 |
|
698 |
-
#:
|
699 |
msgid "number of years"
|
700 |
msgstr "nombre d'année"
|
701 |
|
702 |
-
#: /
|
703 |
-
#: /
|
704 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
705 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
706 |
#, php-format
|
707 |
msgid "Additionally the following values are available: %1$s"
|
708 |
msgstr "De plus, les valeurs suivantes sont disponibles : %1$s"
|
709 |
|
710 |
-
#:
|
711 |
msgid "Relative Month"
|
712 |
msgstr "Mois relatif"
|
713 |
|
714 |
-
#:
|
715 |
msgid "A relative month"
|
716 |
msgstr "Un mois relatif"
|
717 |
|
718 |
-
#:
|
719 |
msgid "number of months"
|
720 |
msgstr "Nombre de mois"
|
721 |
|
722 |
-
#:
|
723 |
msgid "Relative Week"
|
724 |
msgstr "Semaine relative"
|
725 |
|
726 |
-
#:
|
727 |
msgid "A relative week"
|
728 |
msgstr "Une semaine relative"
|
729 |
|
730 |
-
#:
|
731 |
msgid "number of weeks"
|
732 |
msgstr "Nombre de semaines"
|
733 |
|
734 |
-
#:
|
735 |
msgid "the resulting week"
|
736 |
msgstr "Une semaine relative"
|
737 |
|
738 |
-
#:
|
739 |
#, php-format
|
740 |
msgid ""
|
741 |
"The first day of the week is depending on the option %1$s which can be found"
|
742 |
" and changed in %2$s."
|
743 |
msgstr "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s"
|
744 |
|
745 |
-
#:
|
746 |
-
msgid "Week Starts On"
|
747 |
-
msgstr "Semaine commence le "
|
748 |
-
|
749 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
750 |
msgid "Relative Day"
|
751 |
msgstr "Jour relatif"
|
752 |
|
753 |
-
#:
|
754 |
msgid "A relative day"
|
755 |
msgstr "Un jour relatif"
|
756 |
|
757 |
-
#:
|
758 |
msgid "number of days"
|
759 |
msgstr "nombre de jours"
|
760 |
|
761 |
-
#:
|
762 |
msgid "Date range"
|
763 |
msgstr "Période"
|
764 |
|
765 |
-
#:
|
766 |
msgid ""
|
767 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
768 |
"\t For the start and end date any available date format can be used."
|
769 |
msgstr "Une période peut être spécifié via une date de début et une date de fin séparé par un tilde (~).<br/>\n⇥ Pour la date de début et de fin, n'importe quel format de date peut être utilisé."
|
770 |
|
771 |
-
#:
|
772 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
773 |
-
msgid "All"
|
774 |
-
msgstr "Tous"
|
775 |
-
|
776 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
777 |
msgid "This value defines a range without any limits."
|
778 |
msgstr "Cette valeur définie une période sans aucune limites"
|
779 |
|
780 |
-
#: /
|
781 |
-
#:
|
782 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
783 |
#, php-format
|
784 |
msgid "The corresponding date_range format is: %1$s"
|
785 |
msgstr "Le période correspondant est : %1$s"
|
786 |
|
787 |
-
#:
|
788 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
789 |
msgid "Upcoming"
|
790 |
msgstr "A venir"
|
791 |
|
792 |
-
#:
|
793 |
msgid "This value defines a range from the actual day to the future."
|
794 |
msgstr "Cette valeur définie une période à partir du jour actuel juste que dans le future."
|
795 |
|
796 |
-
#:
|
797 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
798 |
msgid "Past"
|
799 |
msgstr "Passé"
|
800 |
|
801 |
-
#:
|
802 |
msgid "This value defines a range from the past to the previous day."
|
803 |
msgstr "Cette valeur définie une période antérieur à la date du jour."
|
804 |
|
805 |
-
#:
|
|
|
|
|
|
|
|
|
806 |
msgid "Show all dates"
|
807 |
msgstr "Voir toutes les dates"
|
808 |
|
809 |
-
#:
|
810 |
msgid "Show all categories"
|
811 |
msgstr "Voir toutes les catégories"
|
812 |
|
813 |
-
#:
|
814 |
-
msgid "Event Categories"
|
815 |
-
msgstr "Catégories d'évènements"
|
816 |
-
|
817 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
818 |
-
msgid "This option specifies all event category data."
|
819 |
-
msgstr "Cette option spécifie toutes les données de la catégorie d'événement."
|
820 |
-
|
821 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
822 |
msgid "Sync Categories"
|
823 |
msgstr "Synchroniser les catégories"
|
824 |
|
825 |
-
#:
|
826 |
msgid "Keep event categories in sync with post categories automatically"
|
827 |
msgstr "Garder automatiquement synchronisé les catégories d'évènements avec les catégories d'articles."
|
828 |
|
829 |
-
#:
|
830 |
msgid "Attention"
|
831 |
msgstr "Attention"
|
832 |
|
833 |
-
#:
|
834 |
msgid ""
|
835 |
"Please note that this option will delete all categories which are not "
|
836 |
"available in the post categories! Existing Categories with the same slug "
|
837 |
"will be updated."
|
838 |
msgstr "Veuillez notez que cette option va supprimer toutes les catégories qui ne sont pas disponibles dans les catégories d'articles!"
|
839 |
|
840 |
-
#:
|
841 |
msgid "CSV File to import"
|
842 |
msgstr "Fichier CSV à importer"
|
843 |
|
844 |
-
#:
|
845 |
msgid "Please select the file which contains the event data in CSV format."
|
846 |
msgstr "Veuillez sélectionner le fichier qui contient les évènements au format CSV."
|
847 |
|
848 |
-
#:
|
849 |
msgid "Used date format"
|
850 |
msgstr "Utilise le format de date suivant"
|
851 |
|
852 |
-
#:
|
853 |
msgid ""
|
854 |
"With this option the used date format for event start and end date given in "
|
855 |
"the CSV file can be specified."
|
856 |
msgstr "Avec cette option le format de la date de début et de fin peut être spécifié pour le fichier CSV importé."
|
857 |
|
858 |
-
#:
|
859 |
msgid "Text for no events"
|
860 |
msgstr "Texte si pas d'événements."
|
861 |
|
862 |
-
#:
|
863 |
msgid ""
|
864 |
"This option defines the displayed text when no events are available for the "
|
865 |
"selected view."
|
866 |
msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
|
867 |
|
868 |
-
#:
|
869 |
msgid "Multiday filter range"
|
870 |
msgstr "Filtre sur plusieurs jours"
|
871 |
|
872 |
-
#:
|
873 |
msgid "Use the complete event range in the date filter"
|
874 |
msgstr "Utiliser la période complète dans le filtre par date."
|
875 |
|
876 |
-
#:
|
877 |
msgid ""
|
878 |
"This option defines if the complete range of a multiday event shall be "
|
879 |
"considered in the date filter."
|
880 |
msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
|
881 |
|
882 |
-
#:
|
883 |
msgid ""
|
884 |
"If disabled, only the start day of an event is considered in the filter."
|
885 |
msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
|
886 |
|
887 |
-
#:
|
888 |
msgid ""
|
889 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
890 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
891 |
"but it is hidden when the option is disabled."
|
892 |
msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
|
893 |
|
894 |
-
#:
|
895 |
msgid "Date display"
|
896 |
msgstr "Affichage de la date"
|
897 |
|
898 |
-
#:
|
899 |
msgid "Show the date only once per day"
|
900 |
msgstr "Afficher la date seulement une fois par jour."
|
901 |
|
902 |
-
#:
|
903 |
msgid ""
|
904 |
"With this option enabled the date is only displayed once per day if more "
|
905 |
"than one event is available on the same day."
|
906 |
msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
|
907 |
|
908 |
-
#:
|
909 |
msgid ""
|
910 |
"If enabled, the events are ordered in a different way (end date before start"
|
911 |
" time) to allow using the same date for as much events as possible."
|
912 |
msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
|
913 |
|
914 |
-
#:
|
915 |
msgid "HTML tags"
|
916 |
msgstr "Tags HTML"
|
917 |
|
918 |
-
#: /
|
919 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
920 |
#, php-format
|
921 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
922 |
msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
|
923 |
|
924 |
-
#: /
|
925 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
926 |
#, php-format
|
927 |
msgid ""
|
928 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
929 |
msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
|
930 |
|
931 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
msgid "Text for \"Show details\""
|
933 |
msgstr "Texte pour \"Afficher détails\""
|
934 |
|
935 |
-
#:
|
936 |
msgid ""
|
937 |
"With this option the displayed text for the link to show the event details "
|
938 |
"can be changed, when collapsing is enabled."
|
939 |
msgstr "Avec cette option, le texte affiché pour le lien qui permet de lire le texte d'un évènement peut être changé, lorsque l'option Replier est activé."
|
940 |
|
941 |
-
#:
|
942 |
msgid "Text for \"Hide details\""
|
943 |
msgstr "Texte pour \"Cacher les détails\""
|
944 |
|
945 |
-
#:
|
946 |
msgid ""
|
947 |
"With this option the displayed text for the link to hide the event details "
|
948 |
"can be changed, when collapsing is enabled."
|
949 |
msgstr "Avec cette option, le texte affiché pour le lien qui permet de cacher le texte d'un évènement peut être changé, lorsque l'option Replier est activé."
|
950 |
|
951 |
-
#:
|
952 |
msgid "Disable CSS file"
|
953 |
msgstr "Désactiver le fichier CSS"
|
954 |
|
955 |
-
#:
|
956 |
#, php-format
|
957 |
msgid "Disable the %1$s file."
|
958 |
msgstr "Désactiver le fichier %1$s."
|
959 |
|
960 |
-
#:
|
961 |
#, php-format
|
962 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
963 |
msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
|
964 |
|
965 |
-
#:
|
966 |
msgid ""
|
967 |
"This normally only make sense if you have css conflicts with your theme and "
|
968 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
969 |
msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
|
970 |
|
971 |
-
#:
|
972 |
msgid "Date format in edit form"
|
973 |
msgstr "Format de la date dans le formulaire d'édition."
|
974 |
|
975 |
-
#:
|
976 |
msgid ""
|
977 |
"This option sets the displayed date format for the event date fields in the "
|
978 |
"event new / edit form."
|
979 |
msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
|
980 |
|
981 |
-
#:
|
982 |
-
msgid "The
|
983 |
-
msgstr "
|
984 |
|
985 |
-
#:
|
986 |
#, php-format
|
987 |
msgid ""
|
988 |
"All available options to specify the date format can be found %1$shere%2$s."
|
989 |
msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
|
990 |
|
991 |
-
#: /
|
992 |
msgid "Enable RSS feed"
|
993 |
msgstr "Activer flux RSS"
|
994 |
|
995 |
-
#:
|
996 |
msgid "Enable support for an event RSS feed"
|
997 |
msgstr "Activer le support pour un flux RSS des évènements"
|
998 |
|
999 |
-
#:
|
|
|
|
|
|
|
|
|
1000 |
msgid ""
|
1001 |
-
"
|
1002 |
-
"
|
1003 |
-
msgstr "
|
1004 |
|
1005 |
-
#:
|
1006 |
msgid "Feed name"
|
1007 |
msgstr "Nom du flux"
|
1008 |
|
1009 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid ""
|
1011 |
-
"This
|
1012 |
-
"
|
1013 |
-
msgstr "
|
1014 |
|
1015 |
-
#:
|
1016 |
msgid "Feed Description"
|
1017 |
msgstr "Description du Flux"
|
1018 |
|
1019 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1020 |
msgid ""
|
1021 |
-
"This
|
1022 |
-
"
|
1023 |
-
msgstr "
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "Listed events"
|
1027 |
msgstr "Evènements listés"
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid "Only show upcoming events in feed"
|
1031 |
msgstr "Voir seulement les prochains évènements dans le flux."
|
1032 |
|
1033 |
-
#:
|
1034 |
msgid ""
|
1035 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1036 |
-
|
1037 |
-
msgstr "Si cette option est activé, seulement les prochains évènements seront listés dans le flux.<br/>\n⇥ Si désactivé, tous les évènements (prochain et passé) seront listés."
|
1038 |
|
1039 |
-
#:
|
|
|
|
|
|
|
|
|
1040 |
msgid "Add RSS feed link in head"
|
1041 |
msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
|
1042 |
|
1043 |
-
#:
|
1044 |
msgid "Add RSS feed link in the html head"
|
1045 |
msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
|
1046 |
|
1047 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
msgid ""
|
1049 |
-
"
|
1050 |
-
"
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
|
|
|
|
|
|
|
|
1055 |
|
1056 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1057 |
msgid "Position of the RSS feed link"
|
1058 |
msgstr "Position du flux RSS"
|
1059 |
|
1060 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgid ""
|
1062 |
-
"This option specifies the position of the RSS feed link in the event list
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1066 |
|
1067 |
-
#:
|
1068 |
msgid "Align of the RSS feed link"
|
1069 |
msgstr "Alignement du lien RSS"
|
1070 |
|
1071 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgid ""
|
1073 |
-
"This option specifies the align of the RSS feed link in the event list
|
1074 |
-
|
1075 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1076 |
-
msgstr "Cette option spécifie l'alignement du lien RSS dans la liste des évènements.<br/>\n⇥ Ce lien sera aligné à gauche, à droite ou centré.<br/>\n⇥ Vous devez ajouter l'attribut add_feed_link=true au shortcode si vous voulez voir ce lien."
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Feed link text"
|
1080 |
msgstr "Text du lien du flux"
|
1081 |
|
1082 |
-
#:
|
1083 |
msgid ""
|
1084 |
-
"This option specifies the caption of the RSS feed link in the event list
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
|
|
|
|
|
|
|
|
1088 |
|
1089 |
-
#:
|
1090 |
msgid "Feed link image"
|
1091 |
msgstr "Image du flux RSS"
|
1092 |
|
1093 |
-
#:
|
1094 |
msgid "Show rss image in feed link"
|
1095 |
msgstr "Afficher l'image dans le lien vers le flux RSS"
|
1096 |
|
1097 |
-
#:
|
1098 |
msgid ""
|
1099 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1100 |
-
"
|
1101 |
-
msgstr "
|
1102 |
|
1103 |
-
#:
|
1104 |
msgid "Show details"
|
1105 |
msgstr "Afficher les détails"
|
1106 |
|
1107 |
-
#:
|
1108 |
msgid "Hide details"
|
1109 |
msgstr "Cacher les détails"
|
1110 |
|
1111 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
msgid ""
|
1113 |
-
"
|
1114 |
-
"
|
1115 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid ""
|
1119 |
-
"
|
1120 |
-
"
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
-
#:
|
|
|
1124 |
msgid ""
|
1125 |
-
"This attribute
|
1126 |
-
"
|
1127 |
-
msgstr "
|
1128 |
|
1129 |
-
#:
|
|
|
1130 |
msgid ""
|
1131 |
-
"
|
1132 |
-
|
1133 |
-
msgstr "Cet attribut spécifie le trie initiale des évènements.<br/>\n⇥ Avec \"date_asc\" (par défaut) les évènements sont triés par les plus anciens au plus récent, avec \"date_desc\" les évènements sont triés dans l'autre sens (du plus récent au plus ancien)."
|
1134 |
|
1135 |
-
#:
|
|
|
1136 |
msgid ""
|
1137 |
-
"
|
1138 |
-
"
|
1139 |
-
|
1140 |
-
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1141 |
-
msgstr "Cet attribut spécifie les dates et la période des évènements qui seront affichés. La valeur par défaut est \"all\" pour afficher tous les évènments.<br/>\n⇥ Les évènements filtrés selon la valeur de ce filtre ne seront pas affiché dans la liste des évènements.\n⇥ Vous pouvez trouver toutes les valeurs disponible avec une description et des exemples dans les sections \"Format de date disponible\" et \"Format de période de date disponible\" ci-dessous.\n⇥ Voir la section \"Syntaxe des filtres\" si vous voulez définir des filtres complexes."
|
1142 |
|
1143 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
msgid ""
|
1145 |
-
"This attribute
|
1146 |
-
"
|
1147 |
-
|
1148 |
-
msgstr "Cet attribut spécifie les catégories des évènements qui seront affichés. La valeur par défaut est \"all\" ou une chaine vide pour afficher tous les évènements.<br/>\n⇥ Les évènements filtrés selon la valeur de ce filtre ne seront pas affiché dans la liste des évènements. Ils ne seront pas disponible si un paramètre dans l'URL est ajouté manuellement.\n⇥ Le filtre utilise les sluf de catégories.\n⇥ Voir la section \"Syntaxe des filtres\" si vous voulez définir des filtres complexes."
|
1149 |
|
1150 |
-
#:
|
|
|
1151 |
msgid ""
|
1152 |
-
"
|
1153 |
-
"
|
1154 |
-
|
1155 |
-
msgstr "Cet attribut définie combien d'évènements sont affiché si l'option prochain évènements est selectionné.<br/>\n⇥ 0 est la valeur par défaut et signifie que tous les évènements sont affichés.\n⇥ Veuillez noter que dans cette version actuel il n'y a pas de pagination de disponible."
|
1156 |
|
1157 |
-
#:
|
|
|
1158 |
msgid ""
|
1159 |
-
"
|
1160 |
-
"
|
1161 |
-
|
1162 |
-
msgstr "Cet attribut spécifie si la barre de filtre doit être affiché. La bare de filtre permet à l'utilisateur de sélectionner le filtre pour limiter les évènements affichés.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la barre de filtre.<br/>\n⇥ Avec la valeur \"event_list_only\" la barre de filtre est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la barre de filtre est visible seulement sur l'affichage d'un évènement simple."
|
1163 |
|
1164 |
-
#:
|
1165 |
-
#:
|
1166 |
-
#:
|
|
|
1167 |
msgid "number"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#:
|
1171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
msgid ""
|
1173 |
"This attribute specifies if the title should be truncated to the given "
|
1174 |
"number of characters in the event list."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#:
|
1178 |
-
#:
|
1179 |
#, php-format
|
1180 |
msgid ""
|
1181 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1182 |
"is automatically truncated via css."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
-
#:
|
1188 |
msgid "This attribute has no influence if only a single event is shown."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#:
|
1192 |
msgid ""
|
1193 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1194 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1195 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1196 |
msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
|
1197 |
|
1198 |
-
#:
|
1199 |
msgid ""
|
1200 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1201 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1202 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1203 |
msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
|
1204 |
|
1205 |
-
#:
|
1206 |
msgid ""
|
1207 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1208 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1209 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1210 |
msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
|
1211 |
|
1212 |
-
#:
|
1213 |
msgid ""
|
1214 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1215 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1216 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1217 |
msgstr "Cet attribut spécifie si le détail doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le détail est visible seulement sur l'affichage d'un évènement simple."
|
1218 |
|
1219 |
-
#:
|
1220 |
msgid ""
|
1221 |
"This attribute specifies if the details should be truncate to the given "
|
1222 |
"number of characters in the event list."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#:
|
1226 |
#, php-format
|
1227 |
msgid "With the standard value %1$s the full text is displayed."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#:
|
1231 |
msgid ""
|
1232 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1233 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1235,7 +1409,7 @@ msgid ""
|
|
1235 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1236 |
msgstr "Cet attribut spécifie si le détail doit être initialement replier.<br/>\n⇥ Alors un lien apparaitra à la place du détail. En cliquant sur le lien le détails sera visible.<br/>\n⇥ Choisissez \"false\" pour désactiver et \"true\" pour activer l'option pour replier le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement replié sur la liste des évènements, avec la valeur \"single_event_only\" le détail est replié seulement sur l'affichage d'un évènement simple."
|
1237 |
|
1238 |
-
#:
|
1239 |
msgid ""
|
1240 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1241 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1243,7 +1417,7 @@ msgid ""
|
|
1243 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1244 |
msgstr "Cet attribut spécifie si un lien vers l'évènement simple doit être ajouté sur le nom de l'évènement dans la liste des évènements.<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1245 |
|
1246 |
-
#:
|
1247 |
msgid ""
|
1248 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1249 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1252,36 +1426,32 @@ msgid ""
|
|
1252 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1253 |
msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid ""
|
1257 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1258 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1259 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1260 |
msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
|
1261 |
|
1262 |
-
#:
|
1263 |
msgid ""
|
1264 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1265 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1266 |
msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
|
1267 |
|
1268 |
-
#:
|
1269 |
msgid "Event Information:"
|
1270 |
msgstr "Information sur l'évènement"
|
1271 |
|
1272 |
-
#:
|
1273 |
-
msgid "(more…)"
|
1274 |
-
msgstr "(plus…)"
|
1275 |
-
|
1276 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1277 |
msgid "This option defines the displayed title for the widget."
|
1278 |
msgstr "Cette option définie le titre affiché pour le widget"
|
1279 |
|
1280 |
-
#:
|
1281 |
msgid "Category Filter"
|
1282 |
msgstr "Filtre par catégories"
|
1283 |
|
1284 |
-
#:
|
1285 |
msgid ""
|
1286 |
"This option defines the categories of which events are shown. The standard "
|
1287 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1290,139 +1460,137 @@ msgid ""
|
|
1290 |
"all possibilities."
|
1291 |
msgstr "Cette option définie la catégorie d'évènement qui doit être affiché. Par défaut est \"all\" ou une chaîne vide pour afficher tous les évènements.\nSpécifiez un slug de catégorie ou une liste de slug de catégories pour afficher seulement les évènements de ces catégories.\nVoir la description des attributs du shortcode cat_filter pour avoir les informations détaillées de toutes les possibilités."
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "Number of listed events"
|
1295 |
msgstr "Nombre d'événement listés."
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "The number of upcoming events to display"
|
1299 |
msgstr "Le nombre des prochains d'évènements à afficher."
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "Truncate event title to"
|
1303 |
msgstr "Tronquer le titre à"
|
1304 |
|
1305 |
-
#: /
|
1306 |
-
#:
|
1307 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1308 |
msgid "characters"
|
1309 |
msgstr "caractères"
|
1310 |
|
1311 |
-
#:
|
1312 |
msgid ""
|
1313 |
"This option defines the number of displayed characters for the event title."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: /
|
1317 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1321 |
"automatically truncate the text via css."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#:
|
1325 |
msgid "Show event starttime"
|
1326 |
msgstr "Afficher l'horaire de début de l'évènement"
|
1327 |
|
1328 |
-
#:
|
1329 |
msgid "This option defines if the event start time will be displayed."
|
1330 |
msgstr "Cette option définie si l’horaire de début doit être affiché."
|
1331 |
|
1332 |
-
#:
|
1333 |
msgid "Show event location"
|
1334 |
msgstr "Afficher la localisation de l'évènement"
|
1335 |
|
1336 |
-
#:
|
1337 |
msgid "This option defines if the event location will be displayed."
|
1338 |
msgstr "Cette option définie si la localisation de l'évènement doit être affiché."
|
1339 |
|
1340 |
-
#:
|
1341 |
msgid "Truncate location to"
|
1342 |
msgstr "Tronquer la localisation à"
|
1343 |
|
1344 |
-
#:
|
1345 |
msgid ""
|
1346 |
"If the event location is diplayed this option defines the number of "
|
1347 |
"displayed characters."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#:
|
1351 |
msgid "Show event details"
|
1352 |
msgstr "Afficher les détails de l'évènements"
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid "This option defines if the event details will be displayed."
|
1356 |
msgstr "Cette option définie si les détails des évènements doit être affiché."
|
1357 |
|
1358 |
-
#:
|
1359 |
msgid "Truncate details to"
|
1360 |
msgstr "Tronquer les détails à "
|
1361 |
|
1362 |
-
#:
|
1363 |
msgid ""
|
1364 |
"If the event details are diplayed this option defines the number of diplayed"
|
1365 |
" characters."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
#, php-format
|
1370 |
msgid "Set this value to %1$s to view the full text."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#:
|
1374 |
msgid "URL to the linked Event List page"
|
1375 |
msgstr "URL vers la page d'évènement"
|
1376 |
|
1377 |
-
#:
|
1378 |
msgid ""
|
1379 |
"This option defines the url to the linked Event List page. This option is "
|
1380 |
"required if you want to use one of the options below."
|
1381 |
msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
|
1382 |
|
1383 |
-
#:
|
1384 |
msgid "Shortcode ID on linked page"
|
1385 |
msgstr "Identifiant du shortcode sur la page lié"
|
1386 |
|
1387 |
-
#:
|
1388 |
msgid ""
|
1389 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1390 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1391 |
"use multiple event-list shortcodes on the linked page."
|
1392 |
msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
|
1393 |
|
1394 |
-
#:
|
1395 |
msgid ""
|
1396 |
"With this option you can add a link to the single event page for every "
|
1397 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1398 |
"id option if you want to use it."
|
1399 |
msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
|
1400 |
|
1401 |
-
#:
|
1402 |
msgid ""
|
1403 |
"With this option you can add a link to the event-list page below the "
|
1404 |
"diplayed events. You have to specify the url to page option if you want to "
|
1405 |
"use it."
|
1406 |
msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
|
1407 |
|
1408 |
-
#:
|
1409 |
msgid "Caption for the link"
|
1410 |
msgstr "Texte du lien."
|
1411 |
|
1412 |
-
#:
|
1413 |
msgid ""
|
1414 |
"This option defines the text for the link to the Event List page if the "
|
1415 |
"approriate option is selected."
|
1416 |
msgstr "Cette option définie le texte du lien vers la liste des évènements si l'option est activé."
|
1417 |
|
1418 |
-
#:
|
1419 |
msgid "With this widget a list of upcoming events can be displayed."
|
1420 |
msgstr "Avec ce widget une liste des prochains évènements peut être affichées."
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Upcoming events"
|
1424 |
msgstr "Prochains évènements"
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "show events page"
|
1428 |
msgstr "Voir tous les évènements"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Gwenael Jan <gwejan@gmail.com>, 2015
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
13 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
19 |
"Language: fr_FR\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
|
22 |
+
#: admin/admin.php:45
|
23 |
msgid "Event List"
|
24 |
msgstr "Liste des événements"
|
25 |
|
26 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
27 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
28 |
msgid "Events"
|
29 |
msgstr "Evénements"
|
30 |
|
31 |
+
#: admin/admin.php:48
|
32 |
msgid "All Events"
|
33 |
msgstr "Tous les évènements"
|
34 |
|
35 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
36 |
msgid "Add New Event"
|
37 |
msgstr "Ajouter un nouvel évènement"
|
38 |
|
39 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
40 |
msgid "Add New"
|
41 |
msgstr "Ajouter"
|
42 |
|
43 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
44 |
msgid "Event List Categories"
|
45 |
msgstr "Liste des catégories d'évènements"
|
46 |
|
47 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
48 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
49 |
msgid "Categories"
|
50 |
msgstr "Catégories"
|
51 |
|
52 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
53 |
msgid "Event List Settings"
|
54 |
msgstr "Préférences"
|
55 |
|
56 |
+
#: admin/admin.php:60
|
|
|
57 |
msgid "Settings"
|
58 |
msgstr "Préférences"
|
59 |
|
60 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
61 |
msgid "About Event List"
|
62 |
msgstr "A propos de la liste d'évènement"
|
63 |
|
64 |
+
#: admin/admin.php:64
|
65 |
msgid "About"
|
66 |
msgstr "A propos"
|
67 |
|
68 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
69 |
+
msgid "General"
|
70 |
+
msgstr "Général"
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
73 |
+
#: admin/includes/admin-about.php:103
|
74 |
+
msgid "Shortcode Attributes"
|
75 |
+
msgstr "Attributs du shortcode"
|
76 |
+
|
77 |
+
#: admin/includes/admin-about.php:71
|
78 |
msgid "Help and Instructions"
|
79 |
msgstr "Aide et instructions"
|
80 |
|
81 |
+
#: admin/includes/admin-about.php:72
|
82 |
#, php-format
|
83 |
+
msgid "You can manage the events %1$shere%2$s"
|
84 |
+
msgstr ""
|
85 |
|
86 |
+
#: admin/includes/admin-about.php:73
|
87 |
msgid "To show the events on your site you have 2 possibilities"
|
88 |
msgstr "Pour voir les évènements sur votre site, vous avez 2 possibilités."
|
89 |
|
90 |
+
#: admin/includes/admin-about.php:74
|
91 |
#, php-format
|
92 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
93 |
msgstr "Vous pouvez placer le <strong>shortcode</strong> %1$s sur n'importe quel page ou article."
|
94 |
|
95 |
+
#: admin/includes/admin-about.php:75
|
96 |
#, php-format
|
97 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
98 |
msgstr "Vous pouvez ajouter le <strong>widget</strong> %1$s dans votre barre latérale."
|
99 |
|
100 |
+
#: admin/includes/admin-about.php:76
|
101 |
msgid ""
|
102 |
"The displayed events and their style can be modified with the available "
|
103 |
"widget settings and the available attributes for the shortcode."
|
104 |
msgstr "L'évènement affiché et son style peut être modifié avec les paramètres du widget et attributs disponible pour le shortcode."
|
105 |
|
106 |
+
#: admin/includes/admin-about.php:77
|
107 |
+
#, php-format
|
108 |
msgid ""
|
109 |
+
"A list of all available shortcode attributes with their descriptions is "
|
110 |
+
"available in the %1$s tab."
|
111 |
+
msgstr ""
|
112 |
|
113 |
+
#: admin/includes/admin-about.php:78
|
114 |
msgid "The available widget options are described in their tooltip text."
|
115 |
msgstr "Les options disponibles du widget sont disponible dans leurs infobulles"
|
116 |
|
117 |
+
#: admin/includes/admin-about.php:79
|
118 |
#, php-format
|
119 |
msgid ""
|
120 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
121 |
+
" to insert an URL to the linked event-list page."
|
122 |
+
msgstr ""
|
123 |
|
124 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
125 |
msgid "Add links to the single events"
|
126 |
msgstr "Ajoute un lien vers le détail de l'évènement."
|
127 |
|
128 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
129 |
msgid "Add a link to the Event List page"
|
130 |
msgstr "Ajoute un liens vers la page des évènements."
|
131 |
|
132 |
+
#: admin/includes/admin-about.php:80
|
133 |
+
msgid ""
|
134 |
+
"This is required because the widget does not know in which page or post the "
|
135 |
+
"shortcode was included."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: admin/includes/admin-about.php:81
|
139 |
+
msgid ""
|
140 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
141 |
+
" This id describes which shortcode should be used on the given page or post "
|
142 |
+
"if you have more than one."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: admin/includes/admin-about.php:82
|
146 |
#, php-format
|
147 |
msgid ""
|
148 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
149 |
+
"but if required you can check the id by looking into the URL of an event "
|
150 |
+
"link on your linked page or post."
|
151 |
+
msgstr ""
|
152 |
|
153 |
+
#: admin/includes/admin-about.php:83
|
154 |
+
#, php-format
|
155 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: admin/includes/admin-about.php:85
|
159 |
#, php-format
|
160 |
msgid ""
|
161 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
162 |
+
"want."
|
163 |
+
msgstr ""
|
164 |
|
165 |
+
#: admin/includes/admin-about.php:85
|
166 |
+
msgid "Settings page"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: admin/includes/admin-about.php:91
|
170 |
+
msgid "About the plugin author"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: admin/includes/admin-about.php:93
|
174 |
+
#, php-format
|
175 |
+
msgid ""
|
176 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
177 |
+
"plugin on the %2$s."
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/includes/admin-about.php:93
|
181 |
+
msgid "wordpress plugin site"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: admin/includes/admin-about.php:94
|
185 |
+
#, php-format
|
186 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: admin/includes/admin-about.php:94
|
190 |
+
msgid "wordpress plugin review site"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: admin/includes/admin-about.php:95
|
194 |
+
msgid ""
|
195 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: admin/includes/admin-about.php:105
|
199 |
msgid ""
|
200 |
"You have the possibility to modify the output if you add some of the "
|
201 |
"following attributes to the shortcode."
|
202 |
msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
|
203 |
|
204 |
+
#: admin/includes/admin-about.php:106
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
208 |
"including the attributes %1$s and %2$s would looks like this:"
|
209 |
msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
|
210 |
|
211 |
+
#: admin/includes/admin-about.php:108
|
212 |
msgid ""
|
213 |
"Below you can find a list of all supported attributes with their "
|
214 |
"descriptions and available options:"
|
215 |
msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
|
216 |
|
217 |
+
#: admin/includes/admin-about.php:122
|
218 |
msgid "Attribute name"
|
219 |
msgstr "Nom de l'attribut"
|
220 |
|
221 |
+
#: admin/includes/admin-about.php:123
|
222 |
msgid "Value options"
|
223 |
msgstr "Valeurs possibles"
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:124
|
226 |
msgid "Default value"
|
227 |
msgstr "Valeur par défaut"
|
228 |
|
229 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
230 |
+
#: admin/includes/category_table.php:108
|
|
|
231 |
msgid "Description"
|
232 |
msgstr "Description"
|
233 |
|
234 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
235 |
+
#: includes/sc_event-list_helptexts.php:31
|
236 |
msgid "Filter Syntax"
|
237 |
msgstr "Syntaxe des filtres"
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:144
|
240 |
msgid ""
|
241 |
"For date and cat filters you can specify complex filters with the following "
|
242 |
"syntax:"
|
243 |
msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
|
244 |
|
245 |
+
#: admin/includes/admin-about.php:145
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"You can use %1$s and %2$s connections to define complex filters. "
|
249 |
"Additionally you can set brackets %3$s for nested queries."
|
250 |
msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
|
251 |
|
252 |
+
#: admin/includes/admin-about.php:145
|
253 |
msgid "AND"
|
254 |
msgstr "ET"
|
255 |
|
256 |
+
#: admin/includes/admin-about.php:145
|
257 |
msgid "OR"
|
258 |
msgstr "OU"
|
259 |
|
260 |
+
#: admin/includes/admin-about.php:145
|
261 |
msgid "or"
|
262 |
msgstr "ou"
|
263 |
|
264 |
+
#: admin/includes/admin-about.php:145
|
265 |
msgid "and"
|
266 |
msgstr "et"
|
267 |
|
268 |
+
#: admin/includes/admin-about.php:146
|
269 |
msgid "Examples for cat filters:"
|
270 |
msgstr "Exemple de filtre de catégorie :"
|
271 |
|
272 |
+
#: admin/includes/admin-about.php:147
|
273 |
#, php-format
|
274 |
msgid "Show all events with category %1$s."
|
275 |
msgstr "Voir tous les évènements de la catégorie %1$s."
|
276 |
|
277 |
+
#: admin/includes/admin-about.php:148
|
278 |
#, php-format
|
279 |
msgid "Show all events with category %1$s or %2$s."
|
280 |
msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:149
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Show all events with category %1$s and all events where category %2$s as "
|
286 |
"well as %3$s is selected."
|
287 |
msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
|
288 |
|
289 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
290 |
msgid "Available Date Formats"
|
291 |
msgstr "Formats de date disponible"
|
292 |
|
293 |
+
#: admin/includes/admin-about.php:155
|
294 |
msgid "For date filters you can use the following date formats:"
|
295 |
msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
|
296 |
|
297 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
298 |
msgid "Available Date Range Formats"
|
299 |
msgstr "Formats de d'intervalle de date disponible"
|
300 |
|
301 |
+
#: admin/includes/admin-about.php:164
|
302 |
msgid "For date filters you can use the following daterange formats:"
|
303 |
msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
|
304 |
|
305 |
+
#: admin/includes/admin-about.php:176
|
306 |
msgid "Value"
|
307 |
msgstr "Valeur"
|
308 |
|
309 |
+
#: admin/includes/admin-about.php:180
|
310 |
msgid "Example"
|
311 |
msgstr "Exemple"
|
312 |
|
313 |
+
#: admin/includes/admin-categories.php:53
|
314 |
msgid "Edit Category"
|
315 |
msgstr "Modifier catégorie"
|
316 |
|
317 |
+
#: admin/includes/admin-categories.php:53
|
318 |
msgid "Update Category"
|
319 |
msgstr "Mettre à jour catégorie"
|
320 |
|
321 |
+
#: admin/includes/admin-categories.php:59
|
322 |
msgid "Add New Category"
|
323 |
msgstr "Ajouter une nouvelle catégorie"
|
324 |
|
325 |
+
#: admin/includes/admin-categories.php:84
|
326 |
#, php-format
|
327 |
msgid "Category \"%s\" deleted."
|
328 |
msgstr "Catégorie \"%s\" supprimé."
|
329 |
|
330 |
+
#: admin/includes/admin-categories.php:86
|
331 |
#, php-format
|
332 |
msgid "This Category was also removed from %d events."
|
333 |
msgstr "Cette catégorie a aussi été supprimé de %d évènements."
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:92
|
336 |
#, php-format
|
337 |
msgid "Error while deleting category \"%s\""
|
338 |
msgstr "Erreur lors de la suppression de la catégorie \"%s\""
|
339 |
|
340 |
+
#: admin/includes/admin-categories.php:102
|
341 |
msgid "Sync with post categories enabled."
|
342 |
msgstr "Synchronisation avec les catégories d'articles activé"
|
343 |
|
344 |
+
#: admin/includes/admin-categories.php:105
|
345 |
msgid "Sync with post categories disabled."
|
346 |
msgstr "Synchronisation avec les catégories d'articles désactivé."
|
347 |
|
348 |
+
#: admin/includes/admin-categories.php:111
|
349 |
msgid "Manual sync with post categories sucessfully finished."
|
350 |
msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés."
|
351 |
|
352 |
+
#: admin/includes/admin-categories.php:119
|
353 |
#, php-format
|
354 |
msgid "New Category \"%s\" was added"
|
355 |
msgstr "Nouvelle catégorie \"%s\" ajouté."
|
356 |
|
357 |
+
#: admin/includes/admin-categories.php:122
|
358 |
#, php-format
|
359 |
msgid "Error: New Category \"%s\" could not be added"
|
360 |
msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée."
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:128
|
363 |
#, php-format
|
364 |
msgid "Category \"%s\" was modified"
|
365 |
msgstr "La catégorie \"%s\" a été modifié."
|
366 |
|
367 |
+
#: admin/includes/admin-categories.php:131
|
368 |
#, php-format
|
369 |
msgid "Error: Category \"%s\" could not be modified"
|
370 |
msgstr "Erreur: La catégorie \"%s\" ne peut pas être modifié."
|
371 |
|
372 |
+
#: admin/includes/admin-categories.php:138
|
373 |
+
msgid "Categories are automatically synced with the post categories."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: admin/includes/admin-categories.php:139
|
377 |
msgid ""
|
378 |
+
"Because of this all options to add new categories or editing existing "
|
379 |
+
"categories are disabled."
|
380 |
+
msgstr ""
|
|
|
381 |
|
382 |
+
#: admin/includes/admin-categories.php:140
|
383 |
+
msgid ""
|
384 |
+
"If you want to manually edit the categories you have to disable this option."
|
385 |
+
msgstr ""
|
386 |
|
387 |
+
#: admin/includes/admin-categories.php:167
|
388 |
msgid "The name is how it appears on your site."
|
389 |
msgstr "Le nom est la façon dont il apparaît sur votre site."
|
390 |
|
391 |
+
#: admin/includes/admin-categories.php:172
|
|
|
|
|
|
|
|
|
|
|
392 |
msgid ""
|
393 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
394 |
"lowercase and contains only letters, numbers, and hyphens."
|
395 |
msgstr "Le \"slug\" est la version du nom dans l'URL, c'est la version du nom ne contenant que des lettres minuscules (sans accents), des chiffres et des tirets."
|
396 |
|
397 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgid ""
|
399 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
400 |
"that have children categories for Bebop and Big Band. Totally optional."
|
401 |
msgstr "Les catégories peuvent avoir une hierarchie. Vous pouvez avoir une catégorie Jazz et avoir en dessous les catégories enfants Bebop et Big Band. Totalement optionnel."
|
402 |
|
403 |
+
#: admin/includes/admin-categories.php:232
|
404 |
msgid "Apply"
|
405 |
msgstr "Appliquer"
|
406 |
|
407 |
+
#: admin/includes/admin-categories.php:242
|
408 |
msgid "Do a manual sync with post categories"
|
409 |
msgstr "Faire une synchronisation manuel avec les catégories d'articles."
|
410 |
|
411 |
+
#: admin/includes/admin-import.php:45
|
412 |
msgid "Import Events"
|
413 |
msgstr "Importer évènements."
|
414 |
|
415 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
416 |
msgid "Step"
|
417 |
msgstr "Etape"
|
418 |
|
419 |
+
#: admin/includes/admin-import.php:65
|
420 |
msgid "Set import file and options"
|
421 |
msgstr "Sélection du fichier à importer et des options."
|
422 |
|
423 |
+
#: admin/includes/admin-import.php:68
|
424 |
+
#, php-format
|
425 |
+
msgid "Proceed with Step %1$s"
|
426 |
+
msgstr ""
|
427 |
|
428 |
+
#: admin/includes/admin-import.php:71
|
429 |
msgid "Example file"
|
430 |
msgstr "Fichier d'exemple"
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:72
|
433 |
#, php-format
|
434 |
msgid ""
|
435 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
436 |
msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:73
|
439 |
msgid "Note"
|
440 |
msgstr "Remarque"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:73
|
443 |
msgid ""
|
444 |
"Do not change the column header and separator line (first two lines), "
|
445 |
"otherwise the import will fail!"
|
446 |
msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
|
447 |
|
448 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
449 |
+
#: admin/includes/admin-import.php:101
|
|
|
450 |
msgid "Sorry, there has been an error."
|
451 |
msgstr "Désolé, il y a eu une erreur."
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:81
|
454 |
msgid "The file does not exist, please try again."
|
455 |
msgstr "Le fichier n'existe pas, essayez encore."
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:89
|
458 |
msgid "The file is not a CSV file."
|
459 |
msgstr "Le fichier n'est pas un fichier CSV valide."
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:120
|
462 |
+
msgid "Events review and additonal category selection"
|
463 |
+
msgstr ""
|
464 |
|
465 |
+
#: admin/includes/admin-import.php:123
|
466 |
+
msgid ""
|
467 |
+
"Warning: The following category slugs are not available and will be removed "
|
468 |
+
"from the imported events:"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: admin/includes/admin-import.php:129
|
472 |
+
msgid ""
|
473 |
+
"If you want to keep these categories, please create these Categories first "
|
474 |
+
"and do the import afterwards."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: admin/includes/admin-import.php:147
|
478 |
+
msgid "Add additional categories"
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:148
|
482 |
+
msgid "Import events"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: admin/includes/admin-import.php:162
|
486 |
msgid "Import with errors!"
|
487 |
msgstr "Importé avec des erreurs!"
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:163
|
490 |
#, php-format
|
491 |
msgid ""
|
492 |
"An error occurred during import! Please send your import file to %1$sthe "
|
493 |
"administrator%2$s for analysis."
|
494 |
msgstr "Une erreur est survenue durant l'import! Merci d'envoyer votre fichier d'import à l'%1$sadministrateur%2$s pour analyse."
|
495 |
|
496 |
+
#: admin/includes/admin-import.php:167
|
497 |
msgid "Import successful!"
|
498 |
msgstr "Importation réussis!"
|
499 |
|
500 |
+
#: admin/includes/admin-import.php:168
|
501 |
msgid "Go back to All Events"
|
502 |
msgstr "Retour à la liste des évènements"
|
503 |
|
504 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
505 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
506 |
msgid "Title"
|
507 |
msgstr "Titre"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:176
|
510 |
msgid "Start Date"
|
511 |
msgstr "Date de début"
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:177
|
514 |
msgid "End Date"
|
515 |
msgstr "Date de fin"
|
516 |
|
517 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
518 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
519 |
msgid "Time"
|
520 |
msgstr "Heure"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
523 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
524 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
525 |
msgid "Location"
|
526 |
msgstr "Lieu"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
529 |
+
#: admin/includes/event_table.php:110
|
|
|
530 |
msgid "Details"
|
531 |
msgstr "Détails"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:181
|
534 |
+
msgid "Category slugs"
|
535 |
+
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:220
|
538 |
+
#, php-format
|
539 |
+
msgid ""
|
540 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
541 |
+
"missing or not correct!"
|
542 |
+
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
545 |
+
msgid "Import"
|
546 |
+
msgstr "Importer"
|
|
|
547 |
|
548 |
+
#: admin/includes/admin-main.php:114
|
549 |
msgid "Edit Event"
|
550 |
msgstr "Modifier évènement"
|
551 |
|
552 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
553 |
msgid "Duplicate"
|
554 |
msgstr "Dupliquer"
|
555 |
|
556 |
+
#: admin/includes/admin-new.php:43
|
557 |
#, php-format
|
558 |
msgid "Duplicate of event id:%d"
|
559 |
msgstr "Duplication de l'évènement: %d"
|
560 |
|
561 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
562 |
msgid "required"
|
563 |
msgstr "Requis"
|
564 |
|
565 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
566 |
msgid "Date"
|
567 |
msgstr "Date"
|
568 |
|
569 |
+
#: admin/includes/admin-new.php:113
|
570 |
msgid "Multi-Day Event"
|
571 |
msgstr "Evènement sur plusieurs jours"
|
572 |
|
573 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
574 |
msgid "Publish"
|
575 |
msgstr "Publier"
|
576 |
|
577 |
+
#: admin/includes/admin-new.php:160
|
578 |
msgid "Update"
|
579 |
msgstr "Modifier"
|
580 |
|
581 |
+
#: admin/includes/admin-new.php:162
|
582 |
+
msgid "Cancel"
|
583 |
+
msgstr "Annuler"
|
584 |
+
|
585 |
+
#: admin/includes/admin-new.php:175
|
586 |
+
msgid "No categories available."
|
587 |
+
msgstr "Pas de catégories disponible."
|
588 |
+
|
589 |
+
#: admin/includes/admin-new.php:221
|
590 |
msgid "Goto Category Settings"
|
591 |
msgstr "Aller sur les paramètres des catégories"
|
592 |
|
593 |
+
#: admin/includes/admin-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
594 |
msgid "Settings saved."
|
595 |
msgstr "Paramètres sauvegardé."
|
596 |
|
597 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
598 |
msgid "Frontend Settings"
|
599 |
msgstr "Frontend Préférences"
|
600 |
|
601 |
+
#: admin/includes/admin-settings.php:70
|
602 |
msgid "Admin Page Settings"
|
603 |
msgstr "Administration Préférences"
|
604 |
|
605 |
+
#: admin/includes/admin-settings.php:71
|
606 |
msgid "Feed Settings"
|
607 |
msgstr "Flux RSS Préférences"
|
608 |
|
609 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
610 |
msgid "event"
|
611 |
msgstr "évènement"
|
612 |
|
613 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
614 |
msgid "events"
|
615 |
msgstr "évènements"
|
616 |
|
617 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
618 |
msgid "Edit"
|
619 |
msgstr "Modifier"
|
620 |
|
621 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
622 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
623 |
msgid "Delete"
|
624 |
msgstr "Supprimer"
|
625 |
|
626 |
+
#: admin/includes/category_table.php:107
|
627 |
+
msgid "Name"
|
628 |
+
msgstr "Nom"
|
629 |
+
|
630 |
+
#: admin/includes/category_table.php:109
|
631 |
+
msgid "Slug"
|
632 |
+
msgstr "Slug"
|
633 |
+
|
634 |
+
#: admin/includes/event_table.php:112
|
635 |
msgid "Author"
|
636 |
msgstr "Auteur"
|
637 |
|
638 |
+
#: admin/includes/event_table.php:113
|
639 |
msgid "Published"
|
640 |
msgstr "Publié"
|
641 |
|
642 |
+
#: admin/includes/event_table.php:175
|
643 |
msgid "Filter"
|
644 |
msgstr "Filtrer"
|
645 |
|
646 |
+
#: admin/includes/event_table.php:297
|
647 |
#, php-format
|
648 |
msgid "%s ago"
|
649 |
msgstr "depuis %s"
|
650 |
|
651 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
652 |
msgid "Year"
|
653 |
msgstr "Année"
|
654 |
|
655 |
+
#: includes/daterange_helptexts.php:8
|
656 |
msgid "A year can be specified in 4 digit format."
|
657 |
msgstr "Une année peut être spécifié au format 4 chiffres."
|
658 |
|
659 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
660 |
+
#: includes/daterange_helptexts.php:36
|
|
|
661 |
#, php-format
|
662 |
msgid ""
|
663 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
664 |
"last day."
|
665 |
msgstr "Pour un filtre de date de début, le premier jour de %1$s est utilisé, dans une date de fin, le dernier jours est utilisé."
|
666 |
|
667 |
+
#: includes/daterange_helptexts.php:9
|
668 |
msgid "the resulting year"
|
669 |
msgstr "Année résultante"
|
670 |
|
671 |
+
#: includes/daterange_helptexts.php:12
|
672 |
msgid "Month"
|
673 |
msgstr "Mois"
|
674 |
|
675 |
+
#: includes/daterange_helptexts.php:13
|
676 |
msgid ""
|
677 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
678 |
"month, seperated by a hyphen (-)."
|
679 |
msgstr "Un mois peut être spécifié avec 4 chiffres pour l'année et 2 chiffres pour le mois, séparé par un tiret (-)."
|
680 |
|
681 |
+
#: includes/daterange_helptexts.php:14
|
682 |
msgid "the resulting month"
|
683 |
msgstr "Mois résultant"
|
684 |
|
685 |
+
#: includes/daterange_helptexts.php:17
|
686 |
msgid "Day"
|
687 |
msgstr "Jour"
|
688 |
|
689 |
+
#: includes/daterange_helptexts.php:18
|
690 |
msgid ""
|
691 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
692 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
693 |
msgstr "Un jour peut être spécifié avec le format de 4 chiffres pour l'année, 2 chiffres pour le mois et 2 chiffres pour le jour, séparé par un tiret (-)."
|
694 |
|
695 |
+
#: includes/daterange_helptexts.php:21
|
696 |
msgid "Relative Year"
|
697 |
msgstr "Année relative"
|
698 |
|
699 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
700 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
701 |
#, php-format
|
702 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
703 |
msgstr "%1$s peut maintenant être spécifié avec la notation suivante : %2$s"
|
704 |
|
705 |
+
#: includes/daterange_helptexts.php:22
|
706 |
msgid "A relative year"
|
707 |
msgstr "Une année relative"
|
708 |
|
709 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
710 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
711 |
#, php-format
|
712 |
msgid ""
|
713 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
714 |
"%3$s or %4$s attached (see also the example below)."
|
715 |
msgstr "Cela signifie que vous pouvez spécifier un %2$s positif ou négatif (%1$s) à partir de maintenant suffixé par %3$s ou %4$s (voir l'exemple ci-dessous)"
|
716 |
|
717 |
+
#: includes/daterange_helptexts.php:23
|
718 |
msgid "number of years"
|
719 |
msgstr "nombre d'année"
|
720 |
|
721 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
722 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
723 |
#, php-format
|
724 |
msgid "Additionally the following values are available: %1$s"
|
725 |
msgstr "De plus, les valeurs suivantes sont disponibles : %1$s"
|
726 |
|
727 |
+
#: includes/daterange_helptexts.php:27
|
728 |
msgid "Relative Month"
|
729 |
msgstr "Mois relatif"
|
730 |
|
731 |
+
#: includes/daterange_helptexts.php:28
|
732 |
msgid "A relative month"
|
733 |
msgstr "Un mois relatif"
|
734 |
|
735 |
+
#: includes/daterange_helptexts.php:29
|
736 |
msgid "number of months"
|
737 |
msgstr "Nombre de mois"
|
738 |
|
739 |
+
#: includes/daterange_helptexts.php:33
|
740 |
msgid "Relative Week"
|
741 |
msgstr "Semaine relative"
|
742 |
|
743 |
+
#: includes/daterange_helptexts.php:34
|
744 |
msgid "A relative week"
|
745 |
msgstr "Une semaine relative"
|
746 |
|
747 |
+
#: includes/daterange_helptexts.php:35
|
748 |
msgid "number of weeks"
|
749 |
msgstr "Nombre de semaines"
|
750 |
|
751 |
+
#: includes/daterange_helptexts.php:36
|
752 |
msgid "the resulting week"
|
753 |
msgstr "Une semaine relative"
|
754 |
|
755 |
+
#: includes/daterange_helptexts.php:37
|
756 |
#, php-format
|
757 |
msgid ""
|
758 |
"The first day of the week is depending on the option %1$s which can be found"
|
759 |
" and changed in %2$s."
|
760 |
msgstr "Le premier jour de la semaine dépens de l'option %1$s qui peut être trouvé et changé dans %2$s"
|
761 |
|
762 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
763 |
msgid "Relative Day"
|
764 |
msgstr "Jour relatif"
|
765 |
|
766 |
+
#: includes/daterange_helptexts.php:42
|
767 |
msgid "A relative day"
|
768 |
msgstr "Un jour relatif"
|
769 |
|
770 |
+
#: includes/daterange_helptexts.php:43
|
771 |
msgid "number of days"
|
772 |
msgstr "nombre de jours"
|
773 |
|
774 |
+
#: includes/daterange_helptexts.php:49
|
775 |
msgid "Date range"
|
776 |
msgstr "Période"
|
777 |
|
778 |
+
#: includes/daterange_helptexts.php:50
|
779 |
msgid ""
|
780 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
781 |
"\t For the start and end date any available date format can be used."
|
782 |
msgstr "Une période peut être spécifié via une date de début et une date de fin séparé par un tilde (~).<br/>\n⇥ Pour la date de début et de fin, n'importe quel format de date peut être utilisé."
|
783 |
|
784 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
785 |
msgid "This value defines a range without any limits."
|
786 |
msgstr "Cette valeur définie une période sans aucune limites"
|
787 |
|
788 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
789 |
+
#: includes/daterange_helptexts.php:66
|
|
|
790 |
#, php-format
|
791 |
msgid "The corresponding date_range format is: %1$s"
|
792 |
msgstr "Le période correspondant est : %1$s"
|
793 |
|
794 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
795 |
msgid "Upcoming"
|
796 |
msgstr "A venir"
|
797 |
|
798 |
+
#: includes/daterange_helptexts.php:60
|
799 |
msgid "This value defines a range from the actual day to the future."
|
800 |
msgstr "Cette valeur définie une période à partir du jour actuel juste que dans le future."
|
801 |
|
802 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
803 |
msgid "Past"
|
804 |
msgstr "Passé"
|
805 |
|
806 |
+
#: includes/daterange_helptexts.php:65
|
807 |
msgid "This value defines a range from the past to the previous day."
|
808 |
msgstr "Cette valeur définie une période antérieur à la date du jour."
|
809 |
|
810 |
+
#: includes/filterbar.php:282
|
811 |
+
msgid "All"
|
812 |
+
msgstr "Tous"
|
813 |
+
|
814 |
+
#: includes/filterbar.php:285
|
815 |
msgid "Show all dates"
|
816 |
msgstr "Voir toutes les dates"
|
817 |
|
818 |
+
#: includes/filterbar.php:285
|
819 |
msgid "Show all categories"
|
820 |
msgstr "Voir toutes les catégories"
|
821 |
|
822 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
msgid "Sync Categories"
|
824 |
msgstr "Synchroniser les catégories"
|
825 |
|
826 |
+
#: includes/options_helptexts.php:12
|
827 |
msgid "Keep event categories in sync with post categories automatically"
|
828 |
msgstr "Garder automatiquement synchronisé les catégories d'évènements avec les catégories d'articles."
|
829 |
|
830 |
+
#: includes/options_helptexts.php:13
|
831 |
msgid "Attention"
|
832 |
msgstr "Attention"
|
833 |
|
834 |
+
#: includes/options_helptexts.php:14
|
835 |
msgid ""
|
836 |
"Please note that this option will delete all categories which are not "
|
837 |
"available in the post categories! Existing Categories with the same slug "
|
838 |
"will be updated."
|
839 |
msgstr "Veuillez notez que cette option va supprimer toutes les catégories qui ne sont pas disponibles dans les catégories d'articles!"
|
840 |
|
841 |
+
#: includes/options_helptexts.php:18
|
842 |
msgid "CSV File to import"
|
843 |
msgstr "Fichier CSV à importer"
|
844 |
|
845 |
+
#: includes/options_helptexts.php:20
|
846 |
msgid "Please select the file which contains the event data in CSV format."
|
847 |
msgstr "Veuillez sélectionner le fichier qui contient les évènements au format CSV."
|
848 |
|
849 |
+
#: includes/options_helptexts.php:23
|
850 |
msgid "Used date format"
|
851 |
msgstr "Utilise le format de date suivant"
|
852 |
|
853 |
+
#: includes/options_helptexts.php:25
|
854 |
msgid ""
|
855 |
"With this option the used date format for event start and end date given in "
|
856 |
"the CSV file can be specified."
|
857 |
msgstr "Avec cette option le format de la date de début et de fin peut être spécifié pour le fichier CSV importé."
|
858 |
|
859 |
+
#: includes/options_helptexts.php:29
|
860 |
msgid "Text for no events"
|
861 |
msgstr "Texte si pas d'événements."
|
862 |
|
863 |
+
#: includes/options_helptexts.php:31
|
864 |
msgid ""
|
865 |
"This option defines the displayed text when no events are available for the "
|
866 |
"selected view."
|
867 |
msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
|
868 |
|
869 |
+
#: includes/options_helptexts.php:34
|
870 |
msgid "Multiday filter range"
|
871 |
msgstr "Filtre sur plusieurs jours"
|
872 |
|
873 |
+
#: includes/options_helptexts.php:35
|
874 |
msgid "Use the complete event range in the date filter"
|
875 |
msgstr "Utiliser la période complète dans le filtre par date."
|
876 |
|
877 |
+
#: includes/options_helptexts.php:36
|
878 |
msgid ""
|
879 |
"This option defines if the complete range of a multiday event shall be "
|
880 |
"considered in the date filter."
|
881 |
msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
|
882 |
|
883 |
+
#: includes/options_helptexts.php:37
|
884 |
msgid ""
|
885 |
"If disabled, only the start day of an event is considered in the filter."
|
886 |
msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
|
887 |
|
888 |
+
#: includes/options_helptexts.php:38
|
889 |
msgid ""
|
890 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
891 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
892 |
"but it is hidden when the option is disabled."
|
893 |
msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
|
894 |
|
895 |
+
#: includes/options_helptexts.php:41
|
896 |
msgid "Date display"
|
897 |
msgstr "Affichage de la date"
|
898 |
|
899 |
+
#: includes/options_helptexts.php:42
|
900 |
msgid "Show the date only once per day"
|
901 |
msgstr "Afficher la date seulement une fois par jour."
|
902 |
|
903 |
+
#: includes/options_helptexts.php:43
|
904 |
msgid ""
|
905 |
"With this option enabled the date is only displayed once per day if more "
|
906 |
"than one event is available on the same day."
|
907 |
msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
|
908 |
|
909 |
+
#: includes/options_helptexts.php:44
|
910 |
msgid ""
|
911 |
"If enabled, the events are ordered in a different way (end date before start"
|
912 |
" time) to allow using the same date for as much events as possible."
|
913 |
msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
|
914 |
|
915 |
+
#: includes/options_helptexts.php:47
|
916 |
msgid "HTML tags"
|
917 |
msgstr "Tags HTML"
|
918 |
|
919 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
920 |
#, php-format
|
921 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
922 |
msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
|
923 |
|
924 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
925 |
#, php-format
|
926 |
msgid ""
|
927 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
928 |
msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
|
929 |
|
930 |
+
#: includes/options_helptexts.php:57
|
931 |
+
msgid "Preferred language file"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/options_helptexts.php:58
|
935 |
+
msgid "Load translations from general language directory first"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: includes/options_helptexts.php:59
|
939 |
+
#, php-format
|
940 |
+
msgid ""
|
941 |
+
"The default is to load the %1$s translation file from the plugin language "
|
942 |
+
"directory first (%2$s)."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/options_helptexts.php:60
|
946 |
+
#, php-format
|
947 |
+
msgid ""
|
948 |
+
"If you want to load your own language file from the general language "
|
949 |
+
"directory %1$s for a language which is already included in the plugin "
|
950 |
+
"language directory, you have to enable this option."
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/options_helptexts.php:64
|
954 |
msgid "Text for \"Show details\""
|
955 |
msgstr "Texte pour \"Afficher détails\""
|
956 |
|
957 |
+
#: includes/options_helptexts.php:65
|
958 |
msgid ""
|
959 |
"With this option the displayed text for the link to show the event details "
|
960 |
"can be changed, when collapsing is enabled."
|
961 |
msgstr "Avec cette option, le texte affiché pour le lien qui permet de lire le texte d'un évènement peut être changé, lorsque l'option Replier est activé."
|
962 |
|
963 |
+
#: includes/options_helptexts.php:68
|
964 |
msgid "Text for \"Hide details\""
|
965 |
msgstr "Texte pour \"Cacher les détails\""
|
966 |
|
967 |
+
#: includes/options_helptexts.php:69
|
968 |
msgid ""
|
969 |
"With this option the displayed text for the link to hide the event details "
|
970 |
"can be changed, when collapsing is enabled."
|
971 |
msgstr "Avec cette option, le texte affiché pour le lien qui permet de cacher le texte d'un évènement peut être changé, lorsque l'option Replier est activé."
|
972 |
|
973 |
+
#: includes/options_helptexts.php:72
|
974 |
msgid "Disable CSS file"
|
975 |
msgstr "Désactiver le fichier CSS"
|
976 |
|
977 |
+
#: includes/options_helptexts.php:73
|
978 |
#, php-format
|
979 |
msgid "Disable the %1$s file."
|
980 |
msgstr "Désactiver le fichier %1$s."
|
981 |
|
982 |
+
#: includes/options_helptexts.php:74
|
983 |
#, php-format
|
984 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
985 |
msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
|
986 |
|
987 |
+
#: includes/options_helptexts.php:75
|
988 |
msgid ""
|
989 |
"This normally only make sense if you have css conflicts with your theme and "
|
990 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
991 |
msgstr "Cela n'a de sens que si vous avez un conflit de CSS avec votre theme et voulez définir tous les styles CSS à un autre endroit (I.E. dans le CSS de votre thème)."
|
992 |
|
993 |
+
#: includes/options_helptexts.php:79
|
994 |
msgid "Date format in edit form"
|
995 |
msgstr "Format de la date dans le formulaire d'édition."
|
996 |
|
997 |
+
#: includes/options_helptexts.php:80
|
998 |
msgid ""
|
999 |
"This option sets the displayed date format for the event date fields in the "
|
1000 |
"event new / edit form."
|
1001 |
msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
|
1002 |
|
1003 |
+
#: includes/options_helptexts.php:81
|
1004 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1005 |
+
msgstr ""
|
1006 |
|
1007 |
+
#: includes/options_helptexts.php:82
|
1008 |
#, php-format
|
1009 |
msgid ""
|
1010 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1011 |
msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
|
1012 |
|
1013 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1014 |
msgid "Enable RSS feed"
|
1015 |
msgstr "Activer flux RSS"
|
1016 |
|
1017 |
+
#: includes/options_helptexts.php:87
|
1018 |
msgid "Enable support for an event RSS feed"
|
1019 |
msgstr "Activer le support pour un flux RSS des évènements"
|
1020 |
|
1021 |
+
#: includes/options_helptexts.php:88
|
1022 |
+
msgid "This option activates a RSS feed for the events."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/options_helptexts.php:89
|
1026 |
msgid ""
|
1027 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1028 |
+
"features."
|
1029 |
+
msgstr ""
|
1030 |
|
1031 |
+
#: includes/options_helptexts.php:92
|
1032 |
msgid "Feed name"
|
1033 |
msgstr "Nom du flux"
|
1034 |
|
1035 |
+
#: includes/options_helptexts.php:93
|
1036 |
+
#, php-format
|
1037 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: includes/options_helptexts.php:94
|
1041 |
+
#, php-format
|
1042 |
msgid ""
|
1043 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1044 |
+
"enabled)."
|
1045 |
+
msgstr ""
|
1046 |
|
1047 |
+
#: includes/options_helptexts.php:97
|
1048 |
msgid "Feed Description"
|
1049 |
msgstr "Description du Flux"
|
1050 |
|
1051 |
+
#: includes/options_helptexts.php:98
|
1052 |
+
#, php-format
|
1053 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: includes/options_helptexts.php:99
|
1057 |
msgid ""
|
1058 |
+
"This description will be used in the title for the feed link in the html "
|
1059 |
+
"head and for the description in the feed itself."
|
1060 |
+
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:102
|
1063 |
msgid "Listed events"
|
1064 |
msgstr "Evènements listés"
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:103
|
1067 |
msgid "Only show upcoming events in feed"
|
1068 |
msgstr "Voir seulement les prochains évènements dans le flux."
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:104
|
1071 |
msgid ""
|
1072 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
1073 |
+
msgstr ""
|
|
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:105
|
1076 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: includes/options_helptexts.php:108
|
1080 |
msgid "Add RSS feed link in head"
|
1081 |
msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
|
1082 |
|
1083 |
+
#: includes/options_helptexts.php:109
|
1084 |
msgid "Add RSS feed link in the html head"
|
1085 |
msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:110
|
1088 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/options_helptexts.php:111
|
1092 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/options_helptexts.php:112
|
1096 |
msgid ""
|
1097 |
+
"The first way is this option to include a link in the html head. This link "
|
1098 |
+
"will be recognized by browers or feed readers."
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: includes/options_helptexts.php:113
|
1102 |
+
#, php-format
|
1103 |
+
msgid ""
|
1104 |
+
"The second way is to include a visible feed link directly in the event list."
|
1105 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1106 |
+
msgstr ""
|
1107 |
|
1108 |
+
#: includes/options_helptexts.php:114
|
1109 |
+
#, php-format
|
1110 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: includes/options_helptexts.php:117
|
1114 |
msgid "Position of the RSS feed link"
|
1115 |
msgstr "Position du flux RSS"
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:118
|
1118 |
+
msgid "at the top (above the navigation bar)"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: includes/options_helptexts.php:118
|
1122 |
+
msgid "between navigation bar and events"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: includes/options_helptexts.php:118
|
1126 |
+
msgid "at the bottom"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: includes/options_helptexts.php:119
|
1130 |
msgid ""
|
1131 |
+
"This option specifies the position of the RSS feed link in the event list."
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1135 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1136 |
+
#, php-format
|
1137 |
+
msgid ""
|
1138 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1139 |
+
" feed link."
|
1140 |
+
msgstr ""
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:123
|
1143 |
msgid "Align of the RSS feed link"
|
1144 |
msgstr "Alignement du lien RSS"
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:124
|
1147 |
+
msgid "left"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/options_helptexts.php:124
|
1151 |
+
msgid "center"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/options_helptexts.php:124
|
1155 |
+
msgid "right"
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/options_helptexts.php:125
|
1159 |
msgid ""
|
1160 |
+
"This option specifies the align of the RSS feed link in the event list."
|
1161 |
+
msgstr ""
|
|
|
|
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:129
|
1164 |
msgid "Feed link text"
|
1165 |
msgstr "Text du lien du flux"
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:130
|
1168 |
msgid ""
|
1169 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: includes/options_helptexts.php:131
|
1173 |
+
msgid ""
|
1174 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1175 |
+
"image."
|
1176 |
+
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:135
|
1179 |
msgid "Feed link image"
|
1180 |
msgstr "Image du flux RSS"
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:136
|
1183 |
msgid "Show rss image in feed link"
|
1184 |
msgstr "Afficher l'image dans le lien vers le flux RSS"
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:137
|
1187 |
msgid ""
|
1188 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1189 |
+
" front of the text."
|
1190 |
+
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options.php:43
|
1193 |
msgid "Show details"
|
1194 |
msgstr "Afficher les détails"
|
1195 |
|
1196 |
+
#: includes/options.php:44
|
1197 |
msgid "Hide details"
|
1198 |
msgstr "Cacher les détails"
|
1199 |
|
1200 |
+
#: includes/sc_event-list_helptexts.php:7
|
1201 |
+
msgid "event-id"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: includes/sc_event-list_helptexts.php:8
|
1205 |
+
#, php-format
|
1206 |
+
msgid ""
|
1207 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1208 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1209 |
+
"this event is shown."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: includes/sc_event-list_helptexts.php:10
|
1213 |
+
#: includes/sc_event-list_helptexts.php:22
|
1214 |
+
msgid "year"
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: includes/sc_event-list_helptexts.php:11
|
1218 |
+
msgid ""
|
1219 |
+
"This attribute defines which events are initially shown. The default is to "
|
1220 |
+
"show the upcoming events only."
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/sc_event-list_helptexts.php:12
|
1224 |
+
#, php-format
|
1225 |
+
msgid ""
|
1226 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1227 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/sc_event-list_helptexts.php:14
|
1231 |
+
msgid "category slug"
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: includes/sc_event-list_helptexts.php:15
|
1235 |
+
msgid ""
|
1236 |
+
"This attribute defines the category of which events are initially shown. The"
|
1237 |
+
" default is to show events of all categories."
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: includes/sc_event-list_helptexts.php:16
|
1241 |
msgid ""
|
1242 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1243 |
+
"change the displayed categories via the filterbar or url parameters."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/sc_event-list_helptexts.php:19
|
1247 |
+
msgid "This attribute defines the initial order of the events."
|
1248 |
+
msgstr ""
|
1249 |
|
1250 |
+
#: includes/sc_event-list_helptexts.php:20
|
1251 |
msgid ""
|
1252 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1253 |
+
"in the opposite direction (from new to old)."
|
1254 |
+
msgstr ""
|
1255 |
|
1256 |
+
#: includes/sc_event-list_helptexts.php:23
|
1257 |
+
#, php-format
|
1258 |
msgid ""
|
1259 |
+
"This attribute defines the dates and date ranges of which events are "
|
1260 |
+
"displayed. The default is %1$s to show all events."
|
1261 |
+
msgstr ""
|
1262 |
|
1263 |
+
#: includes/sc_event-list_helptexts.php:24
|
1264 |
+
#, php-format
|
1265 |
msgid ""
|
1266 |
+
"Filtered events according to %1$s value are not available in the event list."
|
1267 |
+
msgstr ""
|
|
|
1268 |
|
1269 |
+
#: includes/sc_event-list_helptexts.php:25
|
1270 |
+
#, php-format
|
1271 |
msgid ""
|
1272 |
+
"You can find all available values with a description and examples in the "
|
1273 |
+
"sections %1$s and %2$s below."
|
1274 |
+
msgstr ""
|
|
|
|
|
1275 |
|
1276 |
+
#: includes/sc_event-list_helptexts.php:26
|
1277 |
+
#, php-format
|
1278 |
+
msgid "See %1$s description if you want to define complex filters."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: includes/sc_event-list_helptexts.php:28
|
1282 |
+
msgid "category slugs"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: includes/sc_event-list_helptexts.php:29
|
1286 |
msgid ""
|
1287 |
+
"This attribute defines the category filter which filters the events to show."
|
1288 |
+
" The default is $1$s or an empty string to show all events."
|
1289 |
+
msgstr ""
|
|
|
1290 |
|
1291 |
+
#: includes/sc_event-list_helptexts.php:30
|
1292 |
+
#, php-format
|
1293 |
msgid ""
|
1294 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1295 |
+
"list. They are also not available if a manual url parameter is added."
|
1296 |
+
msgstr ""
|
|
|
1297 |
|
1298 |
+
#: includes/sc_event-list_helptexts.php:31
|
1299 |
+
#, php-format
|
1300 |
msgid ""
|
1301 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1302 |
+
"if you want to define complex filters."
|
1303 |
+
msgstr ""
|
|
|
1304 |
|
1305 |
+
#: includes/sc_event-list_helptexts.php:33
|
1306 |
+
#: includes/sc_event-list_helptexts.php:76
|
1307 |
+
#: includes/sc_event-list_helptexts.php:91
|
1308 |
+
#: includes/sc_event-list_helptexts.php:106
|
1309 |
msgid "number"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/sc_event-list_helptexts.php:34
|
1313 |
+
#, php-format
|
1314 |
+
msgid ""
|
1315 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1316 |
+
"events is selected. With the default value %1$s all events will be "
|
1317 |
+
"displayed."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: includes/sc_event-list_helptexts.php:35
|
1321 |
+
msgid ""
|
1322 |
+
"Please not that in the actual version there is no pagination of the events "
|
1323 |
+
"available, so the event list can be very long."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: includes/sc_event-list_helptexts.php:38
|
1327 |
+
msgid ""
|
1328 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1329 |
+
"allows the users to specify filters for the listed events."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: includes/sc_event-list_helptexts.php:39
|
1333 |
+
#, php-format
|
1334 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: includes/sc_event-list_helptexts.php:40
|
1338 |
+
#, php-format
|
1339 |
+
msgid ""
|
1340 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1341 |
+
" in the single event view."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/sc_event-list_helptexts.php:77
|
1345 |
+
#: includes/sc_event-list_helptexts.php:92
|
1346 |
msgid ""
|
1347 |
"This attribute specifies if the title should be truncated to the given "
|
1348 |
"number of characters in the event list."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/sc_event-list_helptexts.php:78
|
1352 |
+
#: includes/sc_event-list_helptexts.php:93
|
1353 |
#, php-format
|
1354 |
msgid ""
|
1355 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1356 |
"is automatically truncated via css."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:79
|
1360 |
+
#: includes/sc_event-list_helptexts.php:94
|
1361 |
+
#: includes/sc_event-list_helptexts.php:109
|
1362 |
msgid "This attribute has no influence if only a single event is shown."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/sc_event-list_helptexts.php:82
|
1366 |
msgid ""
|
1367 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1368 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1369 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1370 |
msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
|
1371 |
|
1372 |
+
#: includes/sc_event-list_helptexts.php:87
|
1373 |
msgid ""
|
1374 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1375 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1376 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1377 |
msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
|
1378 |
|
1379 |
+
#: includes/sc_event-list_helptexts.php:97
|
1380 |
msgid ""
|
1381 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1382 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1383 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1384 |
msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
|
1385 |
|
1386 |
+
#: includes/sc_event-list_helptexts.php:102
|
1387 |
msgid ""
|
1388 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1389 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1390 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1391 |
msgstr "Cet attribut spécifie si le détail doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le détail est visible seulement sur l'affichage d'un évènement simple."
|
1392 |
|
1393 |
+
#: includes/sc_event-list_helptexts.php:107
|
1394 |
msgid ""
|
1395 |
"This attribute specifies if the details should be truncate to the given "
|
1396 |
"number of characters in the event list."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: includes/sc_event-list_helptexts.php:108
|
1400 |
#, php-format
|
1401 |
msgid "With the standard value %1$s the full text is displayed."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/sc_event-list_helptexts.php:112
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1407 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1409 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1410 |
msgstr "Cet attribut spécifie si le détail doit être initialement replier.<br/>\n⇥ Alors un lien apparaitra à la place du détail. En cliquant sur le lien le détails sera visible.<br/>\n⇥ Choisissez \"false\" pour désactiver et \"true\" pour activer l'option pour replier le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement replié sur la liste des évènements, avec la valeur \"single_event_only\" le détail est replié seulement sur l'affichage d'un évènement simple."
|
1411 |
|
1412 |
+
#: includes/sc_event-list_helptexts.php:118
|
1413 |
msgid ""
|
1414 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1415 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1417 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1418 |
msgstr "Cet attribut spécifie si un lien vers l'évènement simple doit être ajouté sur le nom de l'évènement dans la liste des évènements.<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1419 |
|
1420 |
+
#: includes/sc_event-list_helptexts.php:124
|
1421 |
msgid ""
|
1422 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1423 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1426 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1427 |
msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1428 |
|
1429 |
+
#: includes/sc_event-list_helptexts.php:130
|
1430 |
msgid ""
|
1431 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1432 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1433 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1434 |
msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
|
1435 |
|
1436 |
+
#: includes/sc_event-list_helptexts.php:137
|
1437 |
msgid ""
|
1438 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1439 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1440 |
msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
|
1441 |
|
1442 |
+
#: includes/sc_event-list.php:138
|
1443 |
msgid "Event Information:"
|
1444 |
msgstr "Information sur l'évènement"
|
1445 |
|
1446 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1447 |
msgid "This option defines the displayed title for the widget."
|
1448 |
msgstr "Cette option définie le titre affiché pour le widget"
|
1449 |
|
1450 |
+
#: includes/widget_helptexts.php:15
|
1451 |
msgid "Category Filter"
|
1452 |
msgstr "Filtre par catégories"
|
1453 |
|
1454 |
+
#: includes/widget_helptexts.php:17
|
1455 |
msgid ""
|
1456 |
"This option defines the categories of which events are shown. The standard "
|
1457 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1460 |
"all possibilities."
|
1461 |
msgstr "Cette option définie la catégorie d'évènement qui doit être affiché. Par défaut est \"all\" ou une chaîne vide pour afficher tous les évènements.\nSpécifiez un slug de catégorie ou une liste de slug de catégories pour afficher seulement les évènements de ces catégories.\nVoir la description des attributs du shortcode cat_filter pour avoir les informations détaillées de toutes les possibilités."
|
1462 |
|
1463 |
+
#: includes/widget_helptexts.php:22
|
1464 |
msgid "Number of listed events"
|
1465 |
msgstr "Nombre d'événement listés."
|
1466 |
|
1467 |
+
#: includes/widget_helptexts.php:24
|
1468 |
msgid "The number of upcoming events to display"
|
1469 |
msgstr "Le nombre des prochains d'évènements à afficher."
|
1470 |
|
1471 |
+
#: includes/widget_helptexts.php:29
|
1472 |
msgid "Truncate event title to"
|
1473 |
msgstr "Tronquer le titre à"
|
1474 |
|
1475 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1476 |
+
#: includes/widget_helptexts.php:67
|
|
|
1477 |
msgid "characters"
|
1478 |
msgstr "caractères"
|
1479 |
|
1480 |
+
#: includes/widget_helptexts.php:31
|
1481 |
msgid ""
|
1482 |
"This option defines the number of displayed characters for the event title."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1486 |
#, php-format
|
1487 |
msgid ""
|
1488 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1489 |
"automatically truncate the text via css."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: includes/widget_helptexts.php:37
|
1493 |
msgid "Show event starttime"
|
1494 |
msgstr "Afficher l'horaire de début de l'évènement"
|
1495 |
|
1496 |
+
#: includes/widget_helptexts.php:39
|
1497 |
msgid "This option defines if the event start time will be displayed."
|
1498 |
msgstr "Cette option définie si l’horaire de début doit être affiché."
|
1499 |
|
1500 |
+
#: includes/widget_helptexts.php:44
|
1501 |
msgid "Show event location"
|
1502 |
msgstr "Afficher la localisation de l'évènement"
|
1503 |
|
1504 |
+
#: includes/widget_helptexts.php:46
|
1505 |
msgid "This option defines if the event location will be displayed."
|
1506 |
msgstr "Cette option définie si la localisation de l'évènement doit être affiché."
|
1507 |
|
1508 |
+
#: includes/widget_helptexts.php:51
|
1509 |
msgid "Truncate location to"
|
1510 |
msgstr "Tronquer la localisation à"
|
1511 |
|
1512 |
+
#: includes/widget_helptexts.php:53
|
1513 |
msgid ""
|
1514 |
"If the event location is diplayed this option defines the number of "
|
1515 |
"displayed characters."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: includes/widget_helptexts.php:59
|
1519 |
msgid "Show event details"
|
1520 |
msgstr "Afficher les détails de l'évènements"
|
1521 |
|
1522 |
+
#: includes/widget_helptexts.php:61
|
1523 |
msgid "This option defines if the event details will be displayed."
|
1524 |
msgstr "Cette option définie si les détails des évènements doit être affiché."
|
1525 |
|
1526 |
+
#: includes/widget_helptexts.php:66
|
1527 |
msgid "Truncate details to"
|
1528 |
msgstr "Tronquer les détails à "
|
1529 |
|
1530 |
+
#: includes/widget_helptexts.php:68
|
1531 |
msgid ""
|
1532 |
"If the event details are diplayed this option defines the number of diplayed"
|
1533 |
" characters."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/widget_helptexts.php:69
|
1537 |
#, php-format
|
1538 |
msgid "Set this value to %1$s to view the full text."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: includes/widget_helptexts.php:74
|
1542 |
msgid "URL to the linked Event List page"
|
1543 |
msgstr "URL vers la page d'évènement"
|
1544 |
|
1545 |
+
#: includes/widget_helptexts.php:76
|
1546 |
msgid ""
|
1547 |
"This option defines the url to the linked Event List page. This option is "
|
1548 |
"required if you want to use one of the options below."
|
1549 |
msgstr "Cette option définie l'url de la page affichant la liste des évènements. Cette option est obligatoire si vous voulez utiliser une des options ci-dessous."
|
1550 |
|
1551 |
+
#: includes/widget_helptexts.php:81
|
1552 |
msgid "Shortcode ID on linked page"
|
1553 |
msgstr "Identifiant du shortcode sur la page lié"
|
1554 |
|
1555 |
+
#: includes/widget_helptexts.php:83
|
1556 |
msgid ""
|
1557 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1558 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1559 |
"use multiple event-list shortcodes on the linked page."
|
1560 |
msgstr "Cette option définie l'identifiant dans le shortcode sur la page lié. Normalement, la valeur 1 est correct, vous avez à changer cela seulement si vous afficher plusieurs shortcode sur la page lié."
|
1561 |
|
1562 |
+
#: includes/widget_helptexts.php:90
|
1563 |
msgid ""
|
1564 |
"With this option you can add a link to the single event page for every "
|
1565 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1566 |
"id option if you want to use it."
|
1567 |
msgstr "Avec cette option vous pouvez afficher un lien vers une page spécifique pour chaque évènement. Vous devez spécifier une url vers la page et le shortcode identifiant pour utiliser cette option."
|
1568 |
|
1569 |
+
#: includes/widget_helptexts.php:97
|
1570 |
msgid ""
|
1571 |
"With this option you can add a link to the event-list page below the "
|
1572 |
"diplayed events. You have to specify the url to page option if you want to "
|
1573 |
"use it."
|
1574 |
msgstr "Avec cette option, vous pouvez ajouter un lien vers la liste des évènements affiché en dessous des évènements affichés. Vous devez spécifier l'url de la page si vous voulez utiliser cette option."
|
1575 |
|
1576 |
+
#: includes/widget_helptexts.php:102
|
1577 |
msgid "Caption for the link"
|
1578 |
msgstr "Texte du lien."
|
1579 |
|
1580 |
+
#: includes/widget_helptexts.php:104
|
1581 |
msgid ""
|
1582 |
"This option defines the text for the link to the Event List page if the "
|
1583 |
"approriate option is selected."
|
1584 |
msgstr "Cette option définie le texte du lien vers la liste des évènements si l'option est activé."
|
1585 |
|
1586 |
+
#: includes/widget.php:20
|
1587 |
msgid "With this widget a list of upcoming events can be displayed."
|
1588 |
msgstr "Avec ce widget une liste des prochains évènements peut être affichées."
|
1589 |
|
1590 |
+
#: includes/widget.php:25
|
1591 |
msgid "Upcoming events"
|
1592 |
msgstr "Prochains évènements"
|
1593 |
|
1594 |
+
#: includes/widget.php:38
|
1595 |
msgid "show events page"
|
1596 |
msgstr "Voir tous les évènements"
|
Binary file
|
@@ -1,15 +1,15 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Adam <caldanei@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
-
"Report-Msgid-Bugs-To:
|
11 |
-
"POT-Creation-Date: 2017-
|
12 |
-
"PO-Revision-Date: 2017-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -18,1215 +18,1389 @@ msgstr ""
|
|
18 |
"Language: it_IT\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
-
#:
|
22 |
msgid "Event List"
|
23 |
msgstr "Lista Eventi"
|
24 |
|
25 |
-
#: /
|
26 |
-
#: /
|
27 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
28 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
29 |
msgid "Events"
|
30 |
msgstr "Eventi"
|
31 |
|
32 |
-
#:
|
33 |
msgid "All Events"
|
34 |
msgstr "Tutti gli eventi"
|
35 |
|
36 |
-
#: /
|
37 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
38 |
msgid "Add New Event"
|
39 |
msgstr "Aggiungi un nuovo evento"
|
40 |
|
41 |
-
#: /
|
42 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
43 |
msgid "Add New"
|
44 |
msgstr "Aggiungi nuovo"
|
45 |
|
46 |
-
#: /
|
47 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
48 |
msgid "Event List Categories"
|
49 |
msgstr "Categorie Lista Eventi"
|
50 |
|
51 |
-
#: /
|
52 |
-
#:
|
53 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
54 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
55 |
msgid "Categories"
|
56 |
msgstr "Categorie"
|
57 |
|
58 |
-
#: /
|
59 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
60 |
msgid "Event List Settings"
|
61 |
msgstr "Impostazioni Eventi Lista"
|
62 |
|
63 |
-
#:
|
64 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
65 |
msgid "Settings"
|
66 |
msgstr "Impostazioni"
|
67 |
|
68 |
-
#: /
|
69 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
70 |
msgid "About Event List"
|
71 |
msgstr "Informazioni su Lista Eventi"
|
72 |
|
73 |
-
#:
|
74 |
msgid "About"
|
75 |
msgstr "Informazioni su"
|
76 |
|
77 |
-
#: /
|
78 |
-
|
79 |
-
|
80 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
81 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
82 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
83 |
-
msgid "You do not have sufficient permissions to access this page."
|
84 |
-
msgstr "Non possiedi autorizzazioni sufficienti per accedere a questa pagina"
|
85 |
|
86 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
87 |
msgid "Help and Instructions"
|
88 |
msgstr "Aiuto e Istruzioni"
|
89 |
|
90 |
-
#:
|
91 |
#, php-format
|
92 |
-
msgid "You can manage
|
93 |
-
msgstr "
|
94 |
|
95 |
-
#:
|
96 |
msgid "To show the events on your site you have 2 possibilities"
|
97 |
msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità"
|
98 |
|
99 |
-
#:
|
100 |
#, php-format
|
101 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
102 |
msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo"
|
103 |
|
104 |
-
#:
|
105 |
#, php-format
|
106 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
107 |
msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar"
|
108 |
|
109 |
-
#:
|
110 |
msgid ""
|
111 |
"The displayed events and their style can be modified with the available "
|
112 |
"widget settings and the available attributes for the shortcode."
|
113 |
msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode"
|
114 |
|
115 |
-
#:
|
|
|
116 |
msgid ""
|
117 |
-
"A list of all available shortcode attributes with their
|
118 |
-
"available
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#:
|
122 |
msgid "The available widget options are described in their tooltip text."
|
123 |
msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text"
|
124 |
|
125 |
-
#:
|
126 |
#, php-format
|
127 |
msgid ""
|
128 |
-
"
|
129 |
-
"
|
130 |
-
msgstr "
|
131 |
|
132 |
-
#:
|
133 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
134 |
msgid "Add links to the single events"
|
135 |
msgstr "Aggiungi link ai singoli eventi"
|
136 |
|
137 |
-
#:
|
138 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
139 |
msgid "Add a link to the Event List page"
|
140 |
msgstr "Aggiungi un link alla pagina Elenco eventi"
|
141 |
|
142 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
#, php-format
|
144 |
msgid ""
|
145 |
-
"
|
146 |
-
"
|
147 |
-
"
|
148 |
-
msgstr "
|
149 |
|
150 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
151 |
#, php-format
|
152 |
msgid ""
|
153 |
-
"Be sure to also check the %1$
|
154 |
-
"
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
|
161 |
-
#:
|
162 |
msgid ""
|
163 |
"You have the possibility to modify the output if you add some of the "
|
164 |
"following attributes to the shortcode."
|
165 |
msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
|
166 |
|
167 |
-
#:
|
168 |
#, php-format
|
169 |
msgid ""
|
170 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
171 |
"including the attributes %1$s and %2$s would looks like this:"
|
172 |
msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
|
173 |
|
174 |
-
#:
|
175 |
msgid ""
|
176 |
"Below you can find a list of all supported attributes with their "
|
177 |
"descriptions and available options:"
|
178 |
msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
|
179 |
|
180 |
-
#:
|
181 |
msgid "Attribute name"
|
182 |
msgstr "Nome attributo"
|
183 |
|
184 |
-
#:
|
185 |
msgid "Value options"
|
186 |
msgstr "Valore opzioni"
|
187 |
|
188 |
-
#:
|
189 |
msgid "Default value"
|
190 |
msgstr "Valore di default"
|
191 |
|
192 |
-
#: /
|
193 |
-
#:
|
194 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
195 |
msgid "Description"
|
196 |
msgstr "Descrizione"
|
197 |
|
198 |
-
#:
|
|
|
199 |
msgid "Filter Syntax"
|
200 |
msgstr "Sintassi del filtro"
|
201 |
|
202 |
-
#:
|
203 |
msgid ""
|
204 |
"For date and cat filters you can specify complex filters with the following "
|
205 |
"syntax:"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#:
|
209 |
#, php-format
|
210 |
msgid ""
|
211 |
"You can use %1$s and %2$s connections to define complex filters. "
|
212 |
"Additionally you can set brackets %3$s for nested queries."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#:
|
216 |
msgid "AND"
|
217 |
msgstr "E"
|
218 |
|
219 |
-
#:
|
220 |
msgid "OR"
|
221 |
msgstr "O"
|
222 |
|
223 |
-
#:
|
224 |
msgid "or"
|
225 |
msgstr "o"
|
226 |
|
227 |
-
#:
|
228 |
msgid "and"
|
229 |
msgstr "e"
|
230 |
|
231 |
-
#:
|
232 |
msgid "Examples for cat filters:"
|
233 |
msgstr "Esempio per il filtro di categorie:"
|
234 |
|
235 |
-
#:
|
236 |
#, php-format
|
237 |
msgid "Show all events with category %1$s."
|
238 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s."
|
239 |
|
240 |
-
#:
|
241 |
#, php-format
|
242 |
msgid "Show all events with category %1$s or %2$s."
|
243 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
|
244 |
|
245 |
-
#:
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"Show all events with category %1$s and all events where category %2$s as "
|
249 |
"well as %3$s is selected."
|
250 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
|
251 |
|
252 |
-
#:
|
253 |
msgid "Available Date Formats"
|
254 |
msgstr "Formati data disponibili"
|
255 |
|
256 |
-
#:
|
257 |
msgid "For date filters you can use the following date formats:"
|
258 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
|
259 |
|
260 |
-
#:
|
261 |
msgid "Available Date Range Formats"
|
262 |
msgstr "Formati intervallo date disponibili"
|
263 |
|
264 |
-
#:
|
265 |
msgid "For date filters you can use the following daterange formats:"
|
266 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
|
267 |
|
268 |
-
#:
|
269 |
msgid "Value"
|
270 |
msgstr "Valore"
|
271 |
|
272 |
-
#:
|
273 |
msgid "Example"
|
274 |
msgstr "Esempio"
|
275 |
|
276 |
-
#:
|
277 |
msgid "Edit Category"
|
278 |
msgstr "Modifica categoria"
|
279 |
|
280 |
-
#:
|
281 |
msgid "Update Category"
|
282 |
msgstr "Categoria aggiornata"
|
283 |
|
284 |
-
#:
|
285 |
msgid "Add New Category"
|
286 |
msgstr "Aggiunta nuova categoria"
|
287 |
|
288 |
-
#:
|
289 |
#, php-format
|
290 |
msgid "Category \"%s\" deleted."
|
291 |
msgstr "Categoria \"%s\" cancellata."
|
292 |
|
293 |
-
#:
|
294 |
#, php-format
|
295 |
msgid "This Category was also removed from %d events."
|
296 |
msgstr "Questa categoria è stato rimossa anche da %d eventi."
|
297 |
|
298 |
-
#:
|
299 |
#, php-format
|
300 |
msgid "Error while deleting category \"%s\""
|
301 |
msgstr "Errore durante la cancellazione della categoria \"%s\""
|
302 |
|
303 |
-
#:
|
304 |
msgid "Sync with post categories enabled."
|
305 |
msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
|
306 |
|
307 |
-
#:
|
308 |
msgid "Sync with post categories disabled."
|
309 |
msgstr "Sincronizzazione con le categorie dei post abilitata"
|
310 |
|
311 |
-
#:
|
312 |
msgid "Manual sync with post categories sucessfully finished."
|
313 |
msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
|
314 |
|
315 |
-
#:
|
316 |
#, php-format
|
317 |
msgid "New Category \"%s\" was added"
|
318 |
msgstr "La nuova categoria \"%s\" è stata aggiunta"
|
319 |
|
320 |
-
#:
|
321 |
#, php-format
|
322 |
msgid "Error: New Category \"%s\" could not be added"
|
323 |
msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
|
324 |
|
325 |
-
#:
|
326 |
#, php-format
|
327 |
msgid "Category \"%s\" was modified"
|
328 |
msgstr "Categoria \"%s\" è stata modificata"
|
329 |
|
330 |
-
#:
|
331 |
#, php-format
|
332 |
msgid "Error: Category \"%s\" could not be modified"
|
333 |
msgstr "Errore: Categoria \"%s\" non può essere modificata"
|
334 |
|
335 |
-
#:
|
|
|
|
|
|
|
|
|
336 |
msgid ""
|
337 |
-
"
|
338 |
-
"
|
339 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#:
|
343 |
-
|
344 |
-
|
345 |
-
msgstr "
|
346 |
|
347 |
-
#:
|
348 |
msgid "The name is how it appears on your site."
|
349 |
msgstr "Il nome è come appare sul tuo sito."
|
350 |
|
351 |
-
#:
|
352 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
|
353 |
-
msgid "Slug"
|
354 |
-
msgstr "Slug"
|
355 |
-
|
356 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
|
357 |
msgid ""
|
358 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
359 |
"lowercase and contains only letters, numbers, and hyphens."
|
360 |
msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini."
|
361 |
|
362 |
-
#:
|
363 |
-
msgid "Parent"
|
364 |
-
msgstr "Genitore"
|
365 |
-
|
366 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
367 |
-
msgid "None"
|
368 |
-
msgstr "Nessuno"
|
369 |
-
|
370 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
371 |
msgid ""
|
372 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
373 |
"that have children categories for Bebop and Big Band. Totally optional."
|
374 |
msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale."
|
375 |
|
376 |
-
#:
|
377 |
msgid "Apply"
|
378 |
msgstr "Applica"
|
379 |
|
380 |
-
#:
|
381 |
msgid "Do a manual sync with post categories"
|
382 |
msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
|
383 |
|
384 |
-
#:
|
385 |
msgid "Import Events"
|
386 |
msgstr "Importazione Eventi"
|
387 |
|
388 |
-
#: /
|
389 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
390 |
msgid "Step"
|
391 |
msgstr "Passo"
|
392 |
|
393 |
-
#:
|
394 |
msgid "Set import file and options"
|
395 |
msgstr "Insieme dei file e delle opzioni di importazione"
|
396 |
|
397 |
-
#:
|
398 |
-
|
399 |
-
|
|
|
400 |
|
401 |
-
#:
|
402 |
msgid "Example file"
|
403 |
msgstr "File di esempio"
|
404 |
|
405 |
-
#:
|
406 |
#, php-format
|
407 |
msgid ""
|
408 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
409 |
msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
|
410 |
|
411 |
-
#:
|
412 |
msgid "Note"
|
413 |
msgstr "Nota"
|
414 |
|
415 |
-
#:
|
416 |
msgid ""
|
417 |
"Do not change the column header and separator line (first two lines), "
|
418 |
"otherwise the import will fail!"
|
419 |
msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
|
420 |
|
421 |
-
#: /
|
422 |
-
#:
|
423 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
424 |
msgid "Sorry, there has been an error."
|
425 |
msgstr "Siamo spiacenti, si è verificato un errore."
|
426 |
|
427 |
-
#:
|
428 |
msgid "The file does not exist, please try again."
|
429 |
msgstr "Il file non esiste, riprova."
|
430 |
|
431 |
-
#:
|
432 |
msgid "The file is not a CSV file."
|
433 |
msgstr "Il file non è un file CSV."
|
434 |
|
435 |
-
#:
|
436 |
-
msgid "
|
437 |
-
msgstr "
|
438 |
|
439 |
-
#:
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
msgstr "
|
444 |
|
445 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
msgid "Import with errors!"
|
447 |
msgstr "Importazione avvenuta con errori!"
|
448 |
|
449 |
-
#:
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
"An error occurred during import! Please send your import file to %1$sthe "
|
453 |
"administrator%2$s for analysis."
|
454 |
msgstr "Si è verificato un errore durante l'importazione! Si prega di inviare il file di importazione %1$s all' amministratore %2$s per l'analisi."
|
455 |
|
456 |
-
#:
|
457 |
msgid "Import successful!"
|
458 |
msgstr "Importazione avvenuta con successo"
|
459 |
|
460 |
-
#:
|
461 |
msgid "Go back to All Events"
|
462 |
msgstr "Torna a Tutti gli Eventi"
|
463 |
|
464 |
-
#: /
|
465 |
-
#:
|
466 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
467 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
468 |
msgid "Title"
|
469 |
msgstr "Titolo"
|
470 |
|
471 |
-
#:
|
472 |
msgid "Start Date"
|
473 |
msgstr "Data di inizio"
|
474 |
|
475 |
-
#:
|
476 |
msgid "End Date"
|
477 |
msgstr "Data di fine"
|
478 |
|
479 |
-
#: /
|
480 |
-
#: /
|
481 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
482 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
483 |
msgid "Time"
|
484 |
msgstr "Ora"
|
485 |
|
486 |
-
#: /
|
487 |
-
#:
|
488 |
-
#:
|
489 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
490 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
491 |
msgid "Location"
|
492 |
msgstr "Ubicazione"
|
493 |
|
494 |
-
#: /
|
495 |
-
#:
|
496 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
497 |
msgid "Details"
|
498 |
msgstr "Dettagli"
|
499 |
|
500 |
-
#:
|
501 |
-
msgid "
|
502 |
-
msgstr "
|
503 |
|
504 |
-
#:
|
505 |
-
|
506 |
-
msgid "
|
507 |
-
|
|
|
|
|
508 |
|
509 |
-
#: /
|
510 |
-
|
511 |
-
|
512 |
-
msgstr "Nessuna categoria disponibile"
|
513 |
|
514 |
-
#:
|
515 |
msgid "Edit Event"
|
516 |
msgstr "Modifica Evento"
|
517 |
|
518 |
-
#:
|
519 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
520 |
msgid "Duplicate"
|
521 |
msgstr "Duplica"
|
522 |
|
523 |
-
#:
|
524 |
#, php-format
|
525 |
msgid "Duplicate of event id:%d"
|
526 |
msgstr "Duplicazione di evento avente id: %d"
|
527 |
|
528 |
-
#: /
|
529 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
530 |
msgid "required"
|
531 |
msgstr "richiesto"
|
532 |
|
533 |
-
#:
|
534 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
535 |
msgid "Date"
|
536 |
msgstr "Data"
|
537 |
|
538 |
-
#:
|
539 |
msgid "Multi-Day Event"
|
540 |
msgstr "Evento multi giornaliero"
|
541 |
|
542 |
-
#: /
|
543 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
544 |
msgid "Publish"
|
545 |
msgstr "Pubblica"
|
546 |
|
547 |
-
#:
|
548 |
msgid "Update"
|
549 |
msgstr "Aggiorna"
|
550 |
|
551 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
msgid "Goto Category Settings"
|
553 |
msgstr "Vai alle impostazioni delle categorie"
|
554 |
|
555 |
-
#:
|
556 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
|
557 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
559 |
-
msgid "Y/m/d"
|
560 |
-
msgstr "Y/m/d"
|
561 |
-
|
562 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
|
563 |
msgid "Settings saved."
|
564 |
msgstr "Impostazioni salvate."
|
565 |
|
566 |
-
#:
|
567 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
568 |
-
msgid "General"
|
569 |
-
msgstr "Generico"
|
570 |
-
|
571 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
572 |
msgid "Frontend Settings"
|
573 |
msgstr "Impostazioni interfaccia grafica"
|
574 |
|
575 |
-
#:
|
576 |
msgid "Admin Page Settings"
|
577 |
msgstr "Impostazioni di amministrazione"
|
578 |
|
579 |
-
#:
|
580 |
msgid "Feed Settings"
|
581 |
msgstr "Impostazioni Feed"
|
582 |
|
583 |
-
#: /
|
584 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
585 |
msgid "event"
|
586 |
msgstr "evento"
|
587 |
|
588 |
-
#: /
|
589 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
590 |
msgid "events"
|
591 |
msgstr "eventi"
|
592 |
|
593 |
-
#: /
|
594 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
595 |
msgid "Edit"
|
596 |
msgstr "Modifica"
|
597 |
|
598 |
-
#: /
|
599 |
-
#: /
|
600 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
601 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
602 |
msgid "Delete"
|
603 |
msgstr "Cancella"
|
604 |
|
605 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
606 |
msgid "Author"
|
607 |
msgstr "Autore"
|
608 |
|
609 |
-
#:
|
610 |
msgid "Published"
|
611 |
msgstr "Pubblicato"
|
612 |
|
613 |
-
#:
|
614 |
msgid "Filter"
|
615 |
msgstr "Filtro"
|
616 |
|
617 |
-
#:
|
618 |
#, php-format
|
619 |
msgid "%s ago"
|
620 |
msgstr "%s fa"
|
621 |
|
622 |
-
#:
|
623 |
-
msgid "Y/m/d g:i:s A"
|
624 |
-
msgstr "Y/m/d g:i:s A"
|
625 |
-
|
626 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
627 |
msgid "Year"
|
628 |
msgstr "Anno"
|
629 |
|
630 |
-
#:
|
631 |
msgid "A year can be specified in 4 digit format."
|
632 |
msgstr "Un anno può essere specificato in un formato a 4 cifre."
|
633 |
|
634 |
-
#: /
|
635 |
-
#:
|
636 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
637 |
#, php-format
|
638 |
msgid ""
|
639 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
640 |
"last day."
|
641 |
msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
|
642 |
|
643 |
-
#:
|
644 |
msgid "the resulting year"
|
645 |
msgstr "L' anno risultante"
|
646 |
|
647 |
-
#:
|
648 |
msgid "Month"
|
649 |
msgstr "Mese"
|
650 |
|
651 |
-
#:
|
652 |
msgid ""
|
653 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
654 |
"month, seperated by a hyphen (-)."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#:
|
658 |
msgid "the resulting month"
|
659 |
msgstr "Il mese risultante"
|
660 |
|
661 |
-
#:
|
662 |
msgid "Day"
|
663 |
msgstr "Giorno"
|
664 |
|
665 |
-
#:
|
666 |
msgid ""
|
667 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
668 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
669 |
msgstr "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
|
670 |
|
671 |
-
#:
|
672 |
msgid "Relative Year"
|
673 |
msgstr "Anno relativo"
|
674 |
|
675 |
-
#: /
|
676 |
-
#: /
|
677 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
678 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
679 |
#, php-format
|
680 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
681 |
msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
|
682 |
|
683 |
-
#:
|
684 |
msgid "A relative year"
|
685 |
msgstr "Un anno relativo"
|
686 |
|
687 |
-
#: /
|
688 |
-
#: /
|
689 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
690 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
691 |
#, php-format
|
692 |
msgid ""
|
693 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
694 |
"%3$s or %4$s attached (see also the example below)."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#:
|
698 |
msgid "number of years"
|
699 |
msgstr "Numero di anni"
|
700 |
|
701 |
-
#: /
|
702 |
-
#: /
|
703 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
704 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
705 |
#, php-format
|
706 |
msgid "Additionally the following values are available: %1$s"
|
707 |
msgstr "Inoltre sono disponibili i seguenti valori: %1$s"
|
708 |
|
709 |
-
#:
|
710 |
msgid "Relative Month"
|
711 |
msgstr "Mese relativo"
|
712 |
|
713 |
-
#:
|
714 |
msgid "A relative month"
|
715 |
msgstr "Un mese relativo"
|
716 |
|
717 |
-
#:
|
718 |
msgid "number of months"
|
719 |
msgstr "Numero di mesi"
|
720 |
|
721 |
-
#:
|
722 |
msgid "Relative Week"
|
723 |
msgstr "Settimana relativa"
|
724 |
|
725 |
-
#:
|
726 |
msgid "A relative week"
|
727 |
msgstr "Una settimana relativa"
|
728 |
|
729 |
-
#:
|
730 |
msgid "number of weeks"
|
731 |
msgstr "numero di settimane"
|
732 |
|
733 |
-
#:
|
734 |
msgid "the resulting week"
|
735 |
msgstr "La settimana risultante"
|
736 |
|
737 |
-
#:
|
738 |
#, php-format
|
739 |
msgid ""
|
740 |
"The first day of the week is depending on the option %1$s which can be found"
|
741 |
" and changed in %2$s."
|
742 |
msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
|
743 |
|
744 |
-
#:
|
745 |
-
msgid "Week Starts On"
|
746 |
-
msgstr "Inizio settimana"
|
747 |
-
|
748 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
749 |
msgid "Relative Day"
|
750 |
msgstr "Giorno relativo"
|
751 |
|
752 |
-
#:
|
753 |
msgid "A relative day"
|
754 |
msgstr "Un giorno relativo"
|
755 |
|
756 |
-
#:
|
757 |
msgid "number of days"
|
758 |
msgstr "Numero di giorni"
|
759 |
|
760 |
-
#:
|
761 |
msgid "Date range"
|
762 |
msgstr "Intervallo date"
|
763 |
|
764 |
-
#:
|
765 |
msgid ""
|
766 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
767 |
"\t For the start and end date any available date format can be used."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#:
|
771 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
772 |
-
msgid "All"
|
773 |
-
msgstr "Tutti"
|
774 |
-
|
775 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
776 |
msgid "This value defines a range without any limits."
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: /
|
780 |
-
#:
|
781 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
782 |
#, php-format
|
783 |
msgid "The corresponding date_range format is: %1$s"
|
784 |
msgstr "Il corrispondente formato intervallo date è: %1$s"
|
785 |
|
786 |
-
#:
|
787 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
788 |
msgid "Upcoming"
|
789 |
msgstr "Prossimi"
|
790 |
|
791 |
-
#:
|
792 |
msgid "This value defines a range from the actual day to the future."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#:
|
796 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
797 |
msgid "Past"
|
798 |
msgstr "Passati"
|
799 |
|
800 |
-
#:
|
801 |
msgid "This value defines a range from the past to the previous day."
|
802 |
msgstr ""
|
803 |
|
804 |
-
#:
|
|
|
|
|
|
|
|
|
805 |
msgid "Show all dates"
|
806 |
msgstr "Visualizza tutte le date"
|
807 |
|
808 |
-
#:
|
809 |
msgid "Show all categories"
|
810 |
msgstr "Visualizza tutte le categorie"
|
811 |
|
812 |
-
#:
|
813 |
-
msgid "Event Categories"
|
814 |
-
msgstr "Categorie evento"
|
815 |
-
|
816 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
817 |
-
msgid "This option specifies all event category data."
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
821 |
msgid "Sync Categories"
|
822 |
msgstr "Sincronizza categorie"
|
823 |
|
824 |
-
#:
|
825 |
msgid "Keep event categories in sync with post categories automatically"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#:
|
829 |
msgid "Attention"
|
830 |
msgstr "Attenzione"
|
831 |
|
832 |
-
#:
|
833 |
msgid ""
|
834 |
"Please note that this option will delete all categories which are not "
|
835 |
"available in the post categories! Existing Categories with the same slug "
|
836 |
"will be updated."
|
837 |
msgstr ""
|
838 |
|
839 |
-
#:
|
840 |
msgid "CSV File to import"
|
841 |
msgstr "File CSV da importare"
|
842 |
|
843 |
-
#:
|
844 |
msgid "Please select the file which contains the event data in CSV format."
|
845 |
msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV."
|
846 |
|
847 |
-
#:
|
848 |
msgid "Used date format"
|
849 |
msgstr "Formato data utilizzato"
|
850 |
|
851 |
-
#:
|
852 |
msgid ""
|
853 |
"With this option the used date format for event start and end date given in "
|
854 |
"the CSV file can be specified."
|
855 |
msgstr ""
|
856 |
|
857 |
-
#:
|
858 |
msgid "Text for no events"
|
859 |
msgstr "Testo per assenza di eventi"
|
860 |
|
861 |
-
#:
|
862 |
msgid ""
|
863 |
"This option defines the displayed text when no events are available for the "
|
864 |
"selected view."
|
865 |
msgstr ""
|
866 |
|
867 |
-
#:
|
868 |
msgid "Multiday filter range"
|
869 |
msgstr "Filtro intervallo multi giornaliero"
|
870 |
|
871 |
-
#:
|
872 |
msgid "Use the complete event range in the date filter"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#:
|
876 |
msgid ""
|
877 |
"This option defines if the complete range of a multiday event shall be "
|
878 |
"considered in the date filter."
|
879 |
msgstr ""
|
880 |
|
881 |
-
#:
|
882 |
msgid ""
|
883 |
"If disabled, only the start day of an event is considered in the filter."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#:
|
887 |
msgid ""
|
888 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
889 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
890 |
"but it is hidden when the option is disabled."
|
891 |
msgstr ""
|
892 |
|
893 |
-
#:
|
894 |
msgid "Date display"
|
895 |
msgstr "Visualizza data"
|
896 |
|
897 |
-
#:
|
898 |
msgid "Show the date only once per day"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#:
|
902 |
msgid ""
|
903 |
"With this option enabled the date is only displayed once per day if more "
|
904 |
"than one event is available on the same day."
|
905 |
msgstr ""
|
906 |
|
907 |
-
#:
|
908 |
msgid ""
|
909 |
"If enabled, the events are ordered in a different way (end date before start"
|
910 |
" time) to allow using the same date for as much events as possible."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#:
|
914 |
msgid "HTML tags"
|
915 |
msgstr "HTML tags"
|
916 |
|
917 |
-
#: /
|
918 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
919 |
#, php-format
|
920 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: /
|
924 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
925 |
#, php-format
|
926 |
msgid ""
|
927 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
msgid "Text for \"Show details\""
|
932 |
msgstr ""
|
933 |
|
934 |
-
#:
|
935 |
msgid ""
|
936 |
"With this option the displayed text for the link to show the event details "
|
937 |
"can be changed, when collapsing is enabled."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#:
|
941 |
msgid "Text for \"Hide details\""
|
942 |
msgstr ""
|
943 |
|
944 |
-
#:
|
945 |
msgid ""
|
946 |
"With this option the displayed text for the link to hide the event details "
|
947 |
"can be changed, when collapsing is enabled."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#:
|
951 |
msgid "Disable CSS file"
|
952 |
msgstr "Disabilita file CSS"
|
953 |
|
954 |
-
#:
|
955 |
#, php-format
|
956 |
msgid "Disable the %1$s file."
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
#, php-format
|
961 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#:
|
965 |
msgid ""
|
966 |
"This normally only make sense if you have css conflicts with your theme and "
|
967 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
968 |
msgstr ""
|
969 |
|
970 |
-
#:
|
971 |
msgid "Date format in edit form"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#:
|
975 |
msgid ""
|
976 |
"This option sets the displayed date format for the event date fields in the "
|
977 |
"event new / edit form."
|
978 |
msgstr ""
|
979 |
|
980 |
-
#:
|
981 |
-
msgid "The
|
982 |
msgstr ""
|
983 |
|
984 |
-
#:
|
985 |
#, php-format
|
986 |
msgid ""
|
987 |
"All available options to specify the date format can be found %1$shere%2$s."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: /
|
991 |
msgid "Enable RSS feed"
|
992 |
msgstr "Abilita feed RSS"
|
993 |
|
994 |
-
#:
|
995 |
msgid "Enable support for an event RSS feed"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#:
|
|
|
|
|
|
|
|
|
999 |
msgid ""
|
1000 |
-
"
|
1001 |
-
"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#:
|
1005 |
msgid "Feed name"
|
1006 |
msgstr "Nome del Feed"
|
1007 |
|
1008 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgid ""
|
1010 |
-
"This
|
1011 |
-
"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
msgid "Feed Description"
|
1016 |
msgstr "Descrizione del Feed"
|
1017 |
|
1018 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid ""
|
1020 |
-
"This
|
1021 |
-
"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#:
|
1025 |
msgid "Listed events"
|
1026 |
msgstr "Eventi elencati"
|
1027 |
|
1028 |
-
#:
|
1029 |
msgid "Only show upcoming events in feed"
|
1030 |
msgstr "Mostra solo i prossimi eventi nel Feed"
|
1031 |
|
1032 |
-
#:
|
1033 |
msgid ""
|
1034 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1035 |
-
"\t If disabled all events (upcoming and past) will be listed."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#:
|
|
|
|
|
|
|
|
|
1039 |
msgid "Add RSS feed link in head"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#:
|
1043 |
msgid "Add RSS feed link in the html head"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1047 |
msgid ""
|
1048 |
-
"
|
1049 |
-
"
|
1050 |
-
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
1051 |
-
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
1052 |
-
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgid "Position of the RSS feed link"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1060 |
msgid ""
|
1061 |
-
"This option specifies the position of the RSS feed link in the event list
|
1062 |
-
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1063 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1067 |
msgid "Align of the RSS feed link"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
msgid ""
|
1072 |
-
"This option specifies the align of the RSS feed link in the event list
|
1073 |
-
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1074 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#:
|
1078 |
msgid "Feed link text"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1082 |
msgid ""
|
1083 |
-
"
|
1084 |
-
"
|
1085 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#:
|
1089 |
msgid "Feed link image"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#:
|
1093 |
msgid "Show rss image in feed link"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#:
|
1097 |
msgid ""
|
1098 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1099 |
-
"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid "Show details"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
1107 |
msgid "Hide details"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1111 |
msgid ""
|
1112 |
-
"
|
1113 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#:
|
1117 |
msgid ""
|
1118 |
-
"This attribute
|
1119 |
-
"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#:
|
1123 |
msgid ""
|
1124 |
-
"
|
1125 |
-
"
|
|
|
|
|
|
|
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#:
|
1129 |
msgid ""
|
1130 |
-
"
|
1131 |
-
"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#:
|
|
|
1135 |
msgid ""
|
1136 |
-
"This attribute
|
1137 |
-
"
|
1138 |
-
"\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
|
1139 |
-
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#:
|
|
|
1143 |
msgid ""
|
1144 |
-
"
|
1145 |
-
"\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
|
1146 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#:
|
|
|
1150 |
msgid ""
|
1151 |
-
"
|
1152 |
-
"
|
1153 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1157 |
msgid ""
|
1158 |
-
"This attribute
|
1159 |
-
"
|
1160 |
-
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#:
|
1164 |
-
|
1165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1166 |
msgid "number"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#:
|
1170 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1171 |
msgid ""
|
1172 |
"This attribute specifies if the title should be truncated to the given "
|
1173 |
"number of characters in the event list."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#:
|
1177 |
-
#:
|
1178 |
#, php-format
|
1179 |
msgid ""
|
1180 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1181 |
"is automatically truncated via css."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
msgid "This attribute has no influence if only a single event is shown."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#:
|
1191 |
msgid ""
|
1192 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1193 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1194 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#:
|
1198 |
msgid ""
|
1199 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1200 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1201 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#:
|
1205 |
msgid ""
|
1206 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1207 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1208 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#:
|
1212 |
msgid ""
|
1213 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1214 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1215 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#:
|
1219 |
msgid ""
|
1220 |
"This attribute specifies if the details should be truncate to the given "
|
1221 |
"number of characters in the event list."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#:
|
1225 |
#, php-format
|
1226 |
msgid "With the standard value %1$s the full text is displayed."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#:
|
1230 |
msgid ""
|
1231 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1232 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1234,7 +1408,7 @@ msgid ""
|
|
1234 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#:
|
1238 |
msgid ""
|
1239 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1240 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1242,7 +1416,7 @@ msgid ""
|
|
1242 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#:
|
1246 |
msgid ""
|
1247 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1248 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1251,36 +1425,32 @@ msgid ""
|
|
1251 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#:
|
1255 |
msgid ""
|
1256 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1257 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1258 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#:
|
1262 |
msgid ""
|
1263 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1264 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#:
|
1268 |
msgid "Event Information:"
|
1269 |
msgstr "Informazioni Evento"
|
1270 |
|
1271 |
-
#:
|
1272 |
-
msgid "(more…)"
|
1273 |
-
msgstr ""
|
1274 |
-
|
1275 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1276 |
msgid "This option defines the displayed title for the widget."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#:
|
1280 |
msgid "Category Filter"
|
1281 |
msgstr "Filtro per categoria"
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid ""
|
1285 |
"This option defines the categories of which events are shown. The standard "
|
1286 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1289,139 +1459,137 @@ msgid ""
|
|
1289 |
"all possibilities."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#:
|
1293 |
msgid "Number of listed events"
|
1294 |
msgstr "Il numero degli eventi elencati"
|
1295 |
|
1296 |
-
#:
|
1297 |
msgid "The number of upcoming events to display"
|
1298 |
msgstr "Il numero degli eventi prossimi da visualizzare"
|
1299 |
|
1300 |
-
#:
|
1301 |
msgid "Truncate event title to"
|
1302 |
msgstr "Tronca il titolo dell'evento al"
|
1303 |
|
1304 |
-
#: /
|
1305 |
-
#:
|
1306 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1307 |
msgid "characters"
|
1308 |
msgstr "caratteri"
|
1309 |
|
1310 |
-
#:
|
1311 |
msgid ""
|
1312 |
"This option defines the number of displayed characters for the event title."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: /
|
1316 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1317 |
#, php-format
|
1318 |
msgid ""
|
1319 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1320 |
"automatically truncate the text via css."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#:
|
1324 |
msgid "Show event starttime"
|
1325 |
msgstr "Mostra l'ora di inizio dell'evento"
|
1326 |
|
1327 |
-
#:
|
1328 |
msgid "This option defines if the event start time will be displayed."
|
1329 |
msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
|
1330 |
|
1331 |
-
#:
|
1332 |
msgid "Show event location"
|
1333 |
msgstr "Mostra ubicazione evento"
|
1334 |
|
1335 |
-
#:
|
1336 |
msgid "This option defines if the event location will be displayed."
|
1337 |
msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
|
1338 |
|
1339 |
-
#:
|
1340 |
msgid "Truncate location to"
|
1341 |
msgstr "Tronca ubicazione al"
|
1342 |
|
1343 |
-
#:
|
1344 |
msgid ""
|
1345 |
"If the event location is diplayed this option defines the number of "
|
1346 |
"displayed characters."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#:
|
1350 |
msgid "Show event details"
|
1351 |
msgstr "Mostra i dettagli dell'evento"
|
1352 |
|
1353 |
-
#:
|
1354 |
msgid "This option defines if the event details will be displayed."
|
1355 |
msgstr "Questa opzione definisce se i dettagli dell'evento saranno visualizzati."
|
1356 |
|
1357 |
-
#:
|
1358 |
msgid "Truncate details to"
|
1359 |
msgstr "Tronca i dettagli al"
|
1360 |
|
1361 |
-
#:
|
1362 |
msgid ""
|
1363 |
"If the event details are diplayed this option defines the number of diplayed"
|
1364 |
" characters."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#:
|
1368 |
#, php-format
|
1369 |
msgid "Set this value to %1$s to view the full text."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#:
|
1373 |
msgid "URL to the linked Event List page"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#:
|
1377 |
msgid ""
|
1378 |
"This option defines the url to the linked Event List page. This option is "
|
1379 |
"required if you want to use one of the options below."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#:
|
1383 |
msgid "Shortcode ID on linked page"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#:
|
1387 |
msgid ""
|
1388 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1389 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1390 |
"use multiple event-list shortcodes on the linked page."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#:
|
1394 |
msgid ""
|
1395 |
"With this option you can add a link to the single event page for every "
|
1396 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1397 |
"id option if you want to use it."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#:
|
1401 |
msgid ""
|
1402 |
"With this option you can add a link to the event-list page below the "
|
1403 |
"diplayed events. You have to specify the url to page option if you want to "
|
1404 |
"use it."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#:
|
1408 |
msgid "Caption for the link"
|
1409 |
msgstr "Didascalia per il link"
|
1410 |
|
1411 |
-
#:
|
1412 |
msgid ""
|
1413 |
"This option defines the text for the link to the Event List page if the "
|
1414 |
"approriate option is selected."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#:
|
1418 |
msgid "With this widget a list of upcoming events can be displayed."
|
1419 |
msgstr "Con questo widget può essere mostrata una lista di eventi"
|
1420 |
|
1421 |
-
#:
|
1422 |
msgid "Upcoming events"
|
1423 |
msgstr "Prossimi eventi"
|
1424 |
|
1425 |
-
#:
|
1426 |
msgid "show events page"
|
1427 |
msgstr "mostra pagina eventi"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Adam <caldanei@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
12 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
18 |
"Language: it_IT\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
+
#: admin/admin.php:45
|
22 |
msgid "Event List"
|
23 |
msgstr "Lista Eventi"
|
24 |
|
25 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
26 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
27 |
msgid "Events"
|
28 |
msgstr "Eventi"
|
29 |
|
30 |
+
#: admin/admin.php:48
|
31 |
msgid "All Events"
|
32 |
msgstr "Tutti gli eventi"
|
33 |
|
34 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
35 |
msgid "Add New Event"
|
36 |
msgstr "Aggiungi un nuovo evento"
|
37 |
|
38 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
39 |
msgid "Add New"
|
40 |
msgstr "Aggiungi nuovo"
|
41 |
|
42 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
43 |
msgid "Event List Categories"
|
44 |
msgstr "Categorie Lista Eventi"
|
45 |
|
46 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
47 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
48 |
msgid "Categories"
|
49 |
msgstr "Categorie"
|
50 |
|
51 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
52 |
msgid "Event List Settings"
|
53 |
msgstr "Impostazioni Eventi Lista"
|
54 |
|
55 |
+
#: admin/admin.php:60
|
|
|
56 |
msgid "Settings"
|
57 |
msgstr "Impostazioni"
|
58 |
|
59 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
60 |
msgid "About Event List"
|
61 |
msgstr "Informazioni su Lista Eventi"
|
62 |
|
63 |
+
#: admin/admin.php:64
|
64 |
msgid "About"
|
65 |
msgstr "Informazioni su"
|
66 |
|
67 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
68 |
+
msgid "General"
|
69 |
+
msgstr "Generico"
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
72 |
+
#: admin/includes/admin-about.php:103
|
73 |
+
msgid "Shortcode Attributes"
|
74 |
+
msgstr "Attributi dello Shortcode"
|
75 |
+
|
76 |
+
#: admin/includes/admin-about.php:71
|
77 |
msgid "Help and Instructions"
|
78 |
msgstr "Aiuto e Istruzioni"
|
79 |
|
80 |
+
#: admin/includes/admin-about.php:72
|
81 |
#, php-format
|
82 |
+
msgid "You can manage the events %1$shere%2$s"
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: admin/includes/admin-about.php:73
|
86 |
msgid "To show the events on your site you have 2 possibilities"
|
87 |
msgstr "Per mostrare gli eventi sul tuo sito hai 2 possibilità"
|
88 |
|
89 |
+
#: admin/includes/admin-about.php:74
|
90 |
#, php-format
|
91 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
92 |
msgstr "Puoi inserire lo <strong>shortcode</strong> %1$s su ogni pagina e articolo"
|
93 |
|
94 |
+
#: admin/includes/admin-about.php:75
|
95 |
#, php-format
|
96 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
97 |
msgstr "puoi aggiungere il <strong>widget</strong> %1$s nelle tue sidebar"
|
98 |
|
99 |
+
#: admin/includes/admin-about.php:76
|
100 |
msgid ""
|
101 |
"The displayed events and their style can be modified with the available "
|
102 |
"widget settings and the available attributes for the shortcode."
|
103 |
msgstr "Gli eventi mostrati e i loro stili possono essere modificati con le impostazioni disponibili del widget e gli attributi disponibili dello shortcode"
|
104 |
|
105 |
+
#: admin/includes/admin-about.php:77
|
106 |
+
#, php-format
|
107 |
msgid ""
|
108 |
+
"A list of all available shortcode attributes with their descriptions is "
|
109 |
+
"available in the %1$s tab."
|
110 |
+
msgstr ""
|
111 |
|
112 |
+
#: admin/includes/admin-about.php:78
|
113 |
msgid "The available widget options are described in their tooltip text."
|
114 |
msgstr "Le opzioni del widget disponibili sono descritta nel loro tooltip text"
|
115 |
|
116 |
+
#: admin/includes/admin-about.php:79
|
117 |
#, php-format
|
118 |
msgid ""
|
119 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
120 |
+
" to insert an URL to the linked event-list page."
|
121 |
+
msgstr ""
|
122 |
|
123 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
124 |
msgid "Add links to the single events"
|
125 |
msgstr "Aggiungi link ai singoli eventi"
|
126 |
|
127 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
128 |
msgid "Add a link to the Event List page"
|
129 |
msgstr "Aggiungi un link alla pagina Elenco eventi"
|
130 |
|
131 |
+
#: admin/includes/admin-about.php:80
|
132 |
+
msgid ""
|
133 |
+
"This is required because the widget does not know in which page or post the "
|
134 |
+
"shortcode was included."
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: admin/includes/admin-about.php:81
|
138 |
+
msgid ""
|
139 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
140 |
+
" This id describes which shortcode should be used on the given page or post "
|
141 |
+
"if you have more than one."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: admin/includes/admin-about.php:82
|
145 |
#, php-format
|
146 |
msgid ""
|
147 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
148 |
+
"but if required you can check the id by looking into the URL of an event "
|
149 |
+
"link on your linked page or post."
|
150 |
+
msgstr ""
|
151 |
|
152 |
+
#: admin/includes/admin-about.php:83
|
153 |
+
#, php-format
|
154 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: admin/includes/admin-about.php:85
|
158 |
#, php-format
|
159 |
msgid ""
|
160 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
161 |
+
"want."
|
162 |
+
msgstr ""
|
163 |
|
164 |
+
#: admin/includes/admin-about.php:85
|
165 |
+
msgid "Settings page"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: admin/includes/admin-about.php:91
|
169 |
+
msgid "About the plugin author"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: admin/includes/admin-about.php:93
|
173 |
+
#, php-format
|
174 |
+
msgid ""
|
175 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
176 |
+
"plugin on the %2$s."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: admin/includes/admin-about.php:93
|
180 |
+
msgid "wordpress plugin site"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: admin/includes/admin-about.php:94
|
184 |
+
#, php-format
|
185 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: admin/includes/admin-about.php:94
|
189 |
+
msgid "wordpress plugin review site"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: admin/includes/admin-about.php:95
|
193 |
+
msgid ""
|
194 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
195 |
+
msgstr ""
|
196 |
|
197 |
+
#: admin/includes/admin-about.php:105
|
198 |
msgid ""
|
199 |
"You have the possibility to modify the output if you add some of the "
|
200 |
"following attributes to the shortcode."
|
201 |
msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
|
202 |
|
203 |
+
#: admin/includes/admin-about.php:106
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
207 |
"including the attributes %1$s and %2$s would looks like this:"
|
208 |
msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
|
209 |
|
210 |
+
#: admin/includes/admin-about.php:108
|
211 |
msgid ""
|
212 |
"Below you can find a list of all supported attributes with their "
|
213 |
"descriptions and available options:"
|
214 |
msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
|
215 |
|
216 |
+
#: admin/includes/admin-about.php:122
|
217 |
msgid "Attribute name"
|
218 |
msgstr "Nome attributo"
|
219 |
|
220 |
+
#: admin/includes/admin-about.php:123
|
221 |
msgid "Value options"
|
222 |
msgstr "Valore opzioni"
|
223 |
|
224 |
+
#: admin/includes/admin-about.php:124
|
225 |
msgid "Default value"
|
226 |
msgstr "Valore di default"
|
227 |
|
228 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
229 |
+
#: admin/includes/category_table.php:108
|
|
|
230 |
msgid "Description"
|
231 |
msgstr "Descrizione"
|
232 |
|
233 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
234 |
+
#: includes/sc_event-list_helptexts.php:31
|
235 |
msgid "Filter Syntax"
|
236 |
msgstr "Sintassi del filtro"
|
237 |
|
238 |
+
#: admin/includes/admin-about.php:144
|
239 |
msgid ""
|
240 |
"For date and cat filters you can specify complex filters with the following "
|
241 |
"syntax:"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin/includes/admin-about.php:145
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"You can use %1$s and %2$s connections to define complex filters. "
|
248 |
"Additionally you can set brackets %3$s for nested queries."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/includes/admin-about.php:145
|
252 |
msgid "AND"
|
253 |
msgstr "E"
|
254 |
|
255 |
+
#: admin/includes/admin-about.php:145
|
256 |
msgid "OR"
|
257 |
msgstr "O"
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:145
|
260 |
msgid "or"
|
261 |
msgstr "o"
|
262 |
|
263 |
+
#: admin/includes/admin-about.php:145
|
264 |
msgid "and"
|
265 |
msgstr "e"
|
266 |
|
267 |
+
#: admin/includes/admin-about.php:146
|
268 |
msgid "Examples for cat filters:"
|
269 |
msgstr "Esempio per il filtro di categorie:"
|
270 |
|
271 |
+
#: admin/includes/admin-about.php:147
|
272 |
#, php-format
|
273 |
msgid "Show all events with category %1$s."
|
274 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s."
|
275 |
|
276 |
+
#: admin/includes/admin-about.php:148
|
277 |
#, php-format
|
278 |
msgid "Show all events with category %1$s or %2$s."
|
279 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
|
280 |
|
281 |
+
#: admin/includes/admin-about.php:149
|
282 |
#, php-format
|
283 |
msgid ""
|
284 |
"Show all events with category %1$s and all events where category %2$s as "
|
285 |
"well as %3$s is selected."
|
286 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
|
287 |
|
288 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
289 |
msgid "Available Date Formats"
|
290 |
msgstr "Formati data disponibili"
|
291 |
|
292 |
+
#: admin/includes/admin-about.php:155
|
293 |
msgid "For date filters you can use the following date formats:"
|
294 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
297 |
msgid "Available Date Range Formats"
|
298 |
msgstr "Formati intervallo date disponibili"
|
299 |
|
300 |
+
#: admin/includes/admin-about.php:164
|
301 |
msgid "For date filters you can use the following daterange formats:"
|
302 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
|
303 |
|
304 |
+
#: admin/includes/admin-about.php:176
|
305 |
msgid "Value"
|
306 |
msgstr "Valore"
|
307 |
|
308 |
+
#: admin/includes/admin-about.php:180
|
309 |
msgid "Example"
|
310 |
msgstr "Esempio"
|
311 |
|
312 |
+
#: admin/includes/admin-categories.php:53
|
313 |
msgid "Edit Category"
|
314 |
msgstr "Modifica categoria"
|
315 |
|
316 |
+
#: admin/includes/admin-categories.php:53
|
317 |
msgid "Update Category"
|
318 |
msgstr "Categoria aggiornata"
|
319 |
|
320 |
+
#: admin/includes/admin-categories.php:59
|
321 |
msgid "Add New Category"
|
322 |
msgstr "Aggiunta nuova categoria"
|
323 |
|
324 |
+
#: admin/includes/admin-categories.php:84
|
325 |
#, php-format
|
326 |
msgid "Category \"%s\" deleted."
|
327 |
msgstr "Categoria \"%s\" cancellata."
|
328 |
|
329 |
+
#: admin/includes/admin-categories.php:86
|
330 |
#, php-format
|
331 |
msgid "This Category was also removed from %d events."
|
332 |
msgstr "Questa categoria è stato rimossa anche da %d eventi."
|
333 |
|
334 |
+
#: admin/includes/admin-categories.php:92
|
335 |
#, php-format
|
336 |
msgid "Error while deleting category \"%s\""
|
337 |
msgstr "Errore durante la cancellazione della categoria \"%s\""
|
338 |
|
339 |
+
#: admin/includes/admin-categories.php:102
|
340 |
msgid "Sync with post categories enabled."
|
341 |
msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
|
342 |
|
343 |
+
#: admin/includes/admin-categories.php:105
|
344 |
msgid "Sync with post categories disabled."
|
345 |
msgstr "Sincronizzazione con le categorie dei post abilitata"
|
346 |
|
347 |
+
#: admin/includes/admin-categories.php:111
|
348 |
msgid "Manual sync with post categories sucessfully finished."
|
349 |
msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
|
350 |
|
351 |
+
#: admin/includes/admin-categories.php:119
|
352 |
#, php-format
|
353 |
msgid "New Category \"%s\" was added"
|
354 |
msgstr "La nuova categoria \"%s\" è stata aggiunta"
|
355 |
|
356 |
+
#: admin/includes/admin-categories.php:122
|
357 |
#, php-format
|
358 |
msgid "Error: New Category \"%s\" could not be added"
|
359 |
msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
|
360 |
|
361 |
+
#: admin/includes/admin-categories.php:128
|
362 |
#, php-format
|
363 |
msgid "Category \"%s\" was modified"
|
364 |
msgstr "Categoria \"%s\" è stata modificata"
|
365 |
|
366 |
+
#: admin/includes/admin-categories.php:131
|
367 |
#, php-format
|
368 |
msgid "Error: Category \"%s\" could not be modified"
|
369 |
msgstr "Errore: Categoria \"%s\" non può essere modificata"
|
370 |
|
371 |
+
#: admin/includes/admin-categories.php:138
|
372 |
+
msgid "Categories are automatically synced with the post categories."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: admin/includes/admin-categories.php:139
|
376 |
msgid ""
|
377 |
+
"Because of this all options to add new categories or editing existing "
|
378 |
+
"categories are disabled."
|
|
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/includes/admin-categories.php:140
|
382 |
+
msgid ""
|
383 |
+
"If you want to manually edit the categories you have to disable this option."
|
384 |
+
msgstr ""
|
385 |
|
386 |
+
#: admin/includes/admin-categories.php:167
|
387 |
msgid "The name is how it appears on your site."
|
388 |
msgstr "Il nome è come appare sul tuo sito."
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:172
|
|
|
|
|
|
|
|
|
|
|
391 |
msgid ""
|
392 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
393 |
"lowercase and contains only letters, numbers, and hyphens."
|
394 |
msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini."
|
395 |
|
396 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
msgid ""
|
398 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
399 |
"that have children categories for Bebop and Big Band. Totally optional."
|
400 |
msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale."
|
401 |
|
402 |
+
#: admin/includes/admin-categories.php:232
|
403 |
msgid "Apply"
|
404 |
msgstr "Applica"
|
405 |
|
406 |
+
#: admin/includes/admin-categories.php:242
|
407 |
msgid "Do a manual sync with post categories"
|
408 |
msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
|
409 |
|
410 |
+
#: admin/includes/admin-import.php:45
|
411 |
msgid "Import Events"
|
412 |
msgstr "Importazione Eventi"
|
413 |
|
414 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
415 |
msgid "Step"
|
416 |
msgstr "Passo"
|
417 |
|
418 |
+
#: admin/includes/admin-import.php:65
|
419 |
msgid "Set import file and options"
|
420 |
msgstr "Insieme dei file e delle opzioni di importazione"
|
421 |
|
422 |
+
#: admin/includes/admin-import.php:68
|
423 |
+
#, php-format
|
424 |
+
msgid "Proceed with Step %1$s"
|
425 |
+
msgstr ""
|
426 |
|
427 |
+
#: admin/includes/admin-import.php:71
|
428 |
msgid "Example file"
|
429 |
msgstr "File di esempio"
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:72
|
432 |
#, php-format
|
433 |
msgid ""
|
434 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
435 |
msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:73
|
438 |
msgid "Note"
|
439 |
msgstr "Nota"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:73
|
442 |
msgid ""
|
443 |
"Do not change the column header and separator line (first two lines), "
|
444 |
"otherwise the import will fail!"
|
445 |
msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
448 |
+
#: admin/includes/admin-import.php:101
|
|
|
449 |
msgid "Sorry, there has been an error."
|
450 |
msgstr "Siamo spiacenti, si è verificato un errore."
|
451 |
|
452 |
+
#: admin/includes/admin-import.php:81
|
453 |
msgid "The file does not exist, please try again."
|
454 |
msgstr "Il file non esiste, riprova."
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:89
|
457 |
msgid "The file is not a CSV file."
|
458 |
msgstr "Il file non è un file CSV."
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:120
|
461 |
+
msgid "Events review and additonal category selection"
|
462 |
+
msgstr ""
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:123
|
465 |
+
msgid ""
|
466 |
+
"Warning: The following category slugs are not available and will be removed "
|
467 |
+
"from the imported events:"
|
468 |
+
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:129
|
471 |
+
msgid ""
|
472 |
+
"If you want to keep these categories, please create these Categories first "
|
473 |
+
"and do the import afterwards."
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: admin/includes/admin-import.php:147
|
477 |
+
msgid "Add additional categories"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: admin/includes/admin-import.php:148
|
481 |
+
msgid "Import events"
|
482 |
+
msgstr ""
|
483 |
+
|
484 |
+
#: admin/includes/admin-import.php:162
|
485 |
msgid "Import with errors!"
|
486 |
msgstr "Importazione avvenuta con errori!"
|
487 |
|
488 |
+
#: admin/includes/admin-import.php:163
|
489 |
#, php-format
|
490 |
msgid ""
|
491 |
"An error occurred during import! Please send your import file to %1$sthe "
|
492 |
"administrator%2$s for analysis."
|
493 |
msgstr "Si è verificato un errore durante l'importazione! Si prega di inviare il file di importazione %1$s all' amministratore %2$s per l'analisi."
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:167
|
496 |
msgid "Import successful!"
|
497 |
msgstr "Importazione avvenuta con successo"
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:168
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr "Torna a Tutti gli Eventi"
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
504 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
505 |
msgid "Title"
|
506 |
msgstr "Titolo"
|
507 |
|
508 |
+
#: admin/includes/admin-import.php:176
|
509 |
msgid "Start Date"
|
510 |
msgstr "Data di inizio"
|
511 |
|
512 |
+
#: admin/includes/admin-import.php:177
|
513 |
msgid "End Date"
|
514 |
msgstr "Data di fine"
|
515 |
|
516 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
517 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
518 |
msgid "Time"
|
519 |
msgstr "Ora"
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
522 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
523 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
524 |
msgid "Location"
|
525 |
msgstr "Ubicazione"
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
528 |
+
#: admin/includes/event_table.php:110
|
|
|
529 |
msgid "Details"
|
530 |
msgstr "Dettagli"
|
531 |
|
532 |
+
#: admin/includes/admin-import.php:181
|
533 |
+
msgid "Category slugs"
|
534 |
+
msgstr ""
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:220
|
537 |
+
#, php-format
|
538 |
+
msgid ""
|
539 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
540 |
+
"missing or not correct!"
|
541 |
+
msgstr ""
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
544 |
+
msgid "Import"
|
545 |
+
msgstr "Importazione"
|
|
|
546 |
|
547 |
+
#: admin/includes/admin-main.php:114
|
548 |
msgid "Edit Event"
|
549 |
msgstr "Modifica Evento"
|
550 |
|
551 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
552 |
msgid "Duplicate"
|
553 |
msgstr "Duplica"
|
554 |
|
555 |
+
#: admin/includes/admin-new.php:43
|
556 |
#, php-format
|
557 |
msgid "Duplicate of event id:%d"
|
558 |
msgstr "Duplicazione di evento avente id: %d"
|
559 |
|
560 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
561 |
msgid "required"
|
562 |
msgstr "richiesto"
|
563 |
|
564 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
565 |
msgid "Date"
|
566 |
msgstr "Data"
|
567 |
|
568 |
+
#: admin/includes/admin-new.php:113
|
569 |
msgid "Multi-Day Event"
|
570 |
msgstr "Evento multi giornaliero"
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
573 |
msgid "Publish"
|
574 |
msgstr "Pubblica"
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:160
|
577 |
msgid "Update"
|
578 |
msgstr "Aggiorna"
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:162
|
581 |
+
msgid "Cancel"
|
582 |
+
msgstr "Annulla"
|
583 |
+
|
584 |
+
#: admin/includes/admin-new.php:175
|
585 |
+
msgid "No categories available."
|
586 |
+
msgstr "Nessuna categoria disponibile"
|
587 |
+
|
588 |
+
#: admin/includes/admin-new.php:221
|
589 |
msgid "Goto Category Settings"
|
590 |
msgstr "Vai alle impostazioni delle categorie"
|
591 |
|
592 |
+
#: admin/includes/admin-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
593 |
msgid "Settings saved."
|
594 |
msgstr "Impostazioni salvate."
|
595 |
|
596 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
597 |
msgid "Frontend Settings"
|
598 |
msgstr "Impostazioni interfaccia grafica"
|
599 |
|
600 |
+
#: admin/includes/admin-settings.php:70
|
601 |
msgid "Admin Page Settings"
|
602 |
msgstr "Impostazioni di amministrazione"
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:71
|
605 |
msgid "Feed Settings"
|
606 |
msgstr "Impostazioni Feed"
|
607 |
|
608 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
609 |
msgid "event"
|
610 |
msgstr "evento"
|
611 |
|
612 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
613 |
msgid "events"
|
614 |
msgstr "eventi"
|
615 |
|
616 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
617 |
msgid "Edit"
|
618 |
msgstr "Modifica"
|
619 |
|
620 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
621 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
622 |
msgid "Delete"
|
623 |
msgstr "Cancella"
|
624 |
|
625 |
+
#: admin/includes/category_table.php:107
|
626 |
+
msgid "Name"
|
627 |
+
msgstr "Nome"
|
628 |
+
|
629 |
+
#: admin/includes/category_table.php:109
|
630 |
+
msgid "Slug"
|
631 |
+
msgstr "Slug"
|
632 |
+
|
633 |
+
#: admin/includes/event_table.php:112
|
634 |
msgid "Author"
|
635 |
msgstr "Autore"
|
636 |
|
637 |
+
#: admin/includes/event_table.php:113
|
638 |
msgid "Published"
|
639 |
msgstr "Pubblicato"
|
640 |
|
641 |
+
#: admin/includes/event_table.php:175
|
642 |
msgid "Filter"
|
643 |
msgstr "Filtro"
|
644 |
|
645 |
+
#: admin/includes/event_table.php:297
|
646 |
#, php-format
|
647 |
msgid "%s ago"
|
648 |
msgstr "%s fa"
|
649 |
|
650 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
651 |
msgid "Year"
|
652 |
msgstr "Anno"
|
653 |
|
654 |
+
#: includes/daterange_helptexts.php:8
|
655 |
msgid "A year can be specified in 4 digit format."
|
656 |
msgstr "Un anno può essere specificato in un formato a 4 cifre."
|
657 |
|
658 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
659 |
+
#: includes/daterange_helptexts.php:36
|
|
|
660 |
#, php-format
|
661 |
msgid ""
|
662 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
663 |
"last day."
|
664 |
msgstr "Per un filtro sulla data di inizio viene utilizzato %1$s come primo giorno, nella data finale viene usato l'ultimo giorno."
|
665 |
|
666 |
+
#: includes/daterange_helptexts.php:9
|
667 |
msgid "the resulting year"
|
668 |
msgstr "L' anno risultante"
|
669 |
|
670 |
+
#: includes/daterange_helptexts.php:12
|
671 |
msgid "Month"
|
672 |
msgstr "Mese"
|
673 |
|
674 |
+
#: includes/daterange_helptexts.php:13
|
675 |
msgid ""
|
676 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
677 |
"month, seperated by a hyphen (-)."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: includes/daterange_helptexts.php:14
|
681 |
msgid "the resulting month"
|
682 |
msgstr "Il mese risultante"
|
683 |
|
684 |
+
#: includes/daterange_helptexts.php:17
|
685 |
msgid "Day"
|
686 |
msgstr "Giorno"
|
687 |
|
688 |
+
#: includes/daterange_helptexts.php:18
|
689 |
msgid ""
|
690 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
691 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
692 |
msgstr "Un giorno può essere specificato nel formato a 4 cifre per l'anno, 2 cifre per il mese e 2 cifre per il giorno, separati da trattini (-)."
|
693 |
|
694 |
+
#: includes/daterange_helptexts.php:21
|
695 |
msgid "Relative Year"
|
696 |
msgstr "Anno relativo"
|
697 |
|
698 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
699 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
700 |
#, php-format
|
701 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
702 |
msgstr "da questo momento %1$s può essere specificato nella seguente notazione: %2$s"
|
703 |
|
704 |
+
#: includes/daterange_helptexts.php:22
|
705 |
msgid "A relative year"
|
706 |
msgstr "Un anno relativo"
|
707 |
|
708 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
709 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
710 |
#, php-format
|
711 |
msgid ""
|
712 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
713 |
"%3$s or %4$s attached (see also the example below)."
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/daterange_helptexts.php:23
|
717 |
msgid "number of years"
|
718 |
msgstr "Numero di anni"
|
719 |
|
720 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
721 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
722 |
#, php-format
|
723 |
msgid "Additionally the following values are available: %1$s"
|
724 |
msgstr "Inoltre sono disponibili i seguenti valori: %1$s"
|
725 |
|
726 |
+
#: includes/daterange_helptexts.php:27
|
727 |
msgid "Relative Month"
|
728 |
msgstr "Mese relativo"
|
729 |
|
730 |
+
#: includes/daterange_helptexts.php:28
|
731 |
msgid "A relative month"
|
732 |
msgstr "Un mese relativo"
|
733 |
|
734 |
+
#: includes/daterange_helptexts.php:29
|
735 |
msgid "number of months"
|
736 |
msgstr "Numero di mesi"
|
737 |
|
738 |
+
#: includes/daterange_helptexts.php:33
|
739 |
msgid "Relative Week"
|
740 |
msgstr "Settimana relativa"
|
741 |
|
742 |
+
#: includes/daterange_helptexts.php:34
|
743 |
msgid "A relative week"
|
744 |
msgstr "Una settimana relativa"
|
745 |
|
746 |
+
#: includes/daterange_helptexts.php:35
|
747 |
msgid "number of weeks"
|
748 |
msgstr "numero di settimane"
|
749 |
|
750 |
+
#: includes/daterange_helptexts.php:36
|
751 |
msgid "the resulting week"
|
752 |
msgstr "La settimana risultante"
|
753 |
|
754 |
+
#: includes/daterange_helptexts.php:37
|
755 |
#, php-format
|
756 |
msgid ""
|
757 |
"The first day of the week is depending on the option %1$s which can be found"
|
758 |
" and changed in %2$s."
|
759 |
msgstr "Il primo giorno della settimana dipende dall'opzione %1$s che può essere trovata e cambiata in %2$s."
|
760 |
|
761 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
762 |
msgid "Relative Day"
|
763 |
msgstr "Giorno relativo"
|
764 |
|
765 |
+
#: includes/daterange_helptexts.php:42
|
766 |
msgid "A relative day"
|
767 |
msgstr "Un giorno relativo"
|
768 |
|
769 |
+
#: includes/daterange_helptexts.php:43
|
770 |
msgid "number of days"
|
771 |
msgstr "Numero di giorni"
|
772 |
|
773 |
+
#: includes/daterange_helptexts.php:49
|
774 |
msgid "Date range"
|
775 |
msgstr "Intervallo date"
|
776 |
|
777 |
+
#: includes/daterange_helptexts.php:50
|
778 |
msgid ""
|
779 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
780 |
"\t For the start and end date any available date format can be used."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "This value defines a range without any limits."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
788 |
+
#: includes/daterange_helptexts.php:66
|
|
|
789 |
#, php-format
|
790 |
msgid "The corresponding date_range format is: %1$s"
|
791 |
msgstr "Il corrispondente formato intervallo date è: %1$s"
|
792 |
|
793 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
794 |
msgid "Upcoming"
|
795 |
msgstr "Prossimi"
|
796 |
|
797 |
+
#: includes/daterange_helptexts.php:60
|
798 |
msgid "This value defines a range from the actual day to the future."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
802 |
msgid "Past"
|
803 |
msgstr "Passati"
|
804 |
|
805 |
+
#: includes/daterange_helptexts.php:65
|
806 |
msgid "This value defines a range from the past to the previous day."
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: includes/filterbar.php:282
|
810 |
+
msgid "All"
|
811 |
+
msgstr "Tutti"
|
812 |
+
|
813 |
+
#: includes/filterbar.php:285
|
814 |
msgid "Show all dates"
|
815 |
msgstr "Visualizza tutte le date"
|
816 |
|
817 |
+
#: includes/filterbar.php:285
|
818 |
msgid "Show all categories"
|
819 |
msgstr "Visualizza tutte le categorie"
|
820 |
|
821 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
822 |
msgid "Sync Categories"
|
823 |
msgstr "Sincronizza categorie"
|
824 |
|
825 |
+
#: includes/options_helptexts.php:12
|
826 |
msgid "Keep event categories in sync with post categories automatically"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: includes/options_helptexts.php:13
|
830 |
msgid "Attention"
|
831 |
msgstr "Attenzione"
|
832 |
|
833 |
+
#: includes/options_helptexts.php:14
|
834 |
msgid ""
|
835 |
"Please note that this option will delete all categories which are not "
|
836 |
"available in the post categories! Existing Categories with the same slug "
|
837 |
"will be updated."
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: includes/options_helptexts.php:18
|
841 |
msgid "CSV File to import"
|
842 |
msgstr "File CSV da importare"
|
843 |
|
844 |
+
#: includes/options_helptexts.php:20
|
845 |
msgid "Please select the file which contains the event data in CSV format."
|
846 |
msgstr "Seleziona il file che contiene i dati degli eventi in formato CSV."
|
847 |
|
848 |
+
#: includes/options_helptexts.php:23
|
849 |
msgid "Used date format"
|
850 |
msgstr "Formato data utilizzato"
|
851 |
|
852 |
+
#: includes/options_helptexts.php:25
|
853 |
msgid ""
|
854 |
"With this option the used date format for event start and end date given in "
|
855 |
"the CSV file can be specified."
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: includes/options_helptexts.php:29
|
859 |
msgid "Text for no events"
|
860 |
msgstr "Testo per assenza di eventi"
|
861 |
|
862 |
+
#: includes/options_helptexts.php:31
|
863 |
msgid ""
|
864 |
"This option defines the displayed text when no events are available for the "
|
865 |
"selected view."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/options_helptexts.php:34
|
869 |
msgid "Multiday filter range"
|
870 |
msgstr "Filtro intervallo multi giornaliero"
|
871 |
|
872 |
+
#: includes/options_helptexts.php:35
|
873 |
msgid "Use the complete event range in the date filter"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/options_helptexts.php:36
|
877 |
msgid ""
|
878 |
"This option defines if the complete range of a multiday event shall be "
|
879 |
"considered in the date filter."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: includes/options_helptexts.php:37
|
883 |
msgid ""
|
884 |
"If disabled, only the start day of an event is considered in the filter."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: includes/options_helptexts.php:38
|
888 |
msgid ""
|
889 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
890 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
891 |
"but it is hidden when the option is disabled."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/options_helptexts.php:41
|
895 |
msgid "Date display"
|
896 |
msgstr "Visualizza data"
|
897 |
|
898 |
+
#: includes/options_helptexts.php:42
|
899 |
msgid "Show the date only once per day"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/options_helptexts.php:43
|
903 |
msgid ""
|
904 |
"With this option enabled the date is only displayed once per day if more "
|
905 |
"than one event is available on the same day."
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: includes/options_helptexts.php:44
|
909 |
msgid ""
|
910 |
"If enabled, the events are ordered in a different way (end date before start"
|
911 |
" time) to allow using the same date for as much events as possible."
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: includes/options_helptexts.php:47
|
915 |
msgid "HTML tags"
|
916 |
msgstr "HTML tags"
|
917 |
|
918 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
919 |
#, php-format
|
920 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
924 |
#, php-format
|
925 |
msgid ""
|
926 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: includes/options_helptexts.php:57
|
930 |
+
msgid "Preferred language file"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: includes/options_helptexts.php:58
|
934 |
+
msgid "Load translations from general language directory first"
|
935 |
+
msgstr ""
|
936 |
+
|
937 |
+
#: includes/options_helptexts.php:59
|
938 |
+
#, php-format
|
939 |
+
msgid ""
|
940 |
+
"The default is to load the %1$s translation file from the plugin language "
|
941 |
+
"directory first (%2$s)."
|
942 |
+
msgstr ""
|
943 |
+
|
944 |
+
#: includes/options_helptexts.php:60
|
945 |
+
#, php-format
|
946 |
+
msgid ""
|
947 |
+
"If you want to load your own language file from the general language "
|
948 |
+
"directory %1$s for a language which is already included in the plugin "
|
949 |
+
"language directory, you have to enable this option."
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: includes/options_helptexts.php:64
|
953 |
msgid "Text for \"Show details\""
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: includes/options_helptexts.php:65
|
957 |
msgid ""
|
958 |
"With this option the displayed text for the link to show the event details "
|
959 |
"can be changed, when collapsing is enabled."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/options_helptexts.php:68
|
963 |
msgid "Text for \"Hide details\""
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/options_helptexts.php:69
|
967 |
msgid ""
|
968 |
"With this option the displayed text for the link to hide the event details "
|
969 |
"can be changed, when collapsing is enabled."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: includes/options_helptexts.php:72
|
973 |
msgid "Disable CSS file"
|
974 |
msgstr "Disabilita file CSS"
|
975 |
|
976 |
+
#: includes/options_helptexts.php:73
|
977 |
#, php-format
|
978 |
msgid "Disable the %1$s file."
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: includes/options_helptexts.php:74
|
982 |
#, php-format
|
983 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: includes/options_helptexts.php:75
|
987 |
msgid ""
|
988 |
"This normally only make sense if you have css conflicts with your theme and "
|
989 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: includes/options_helptexts.php:79
|
993 |
msgid "Date format in edit form"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: includes/options_helptexts.php:80
|
997 |
msgid ""
|
998 |
"This option sets the displayed date format for the event date fields in the "
|
999 |
"event new / edit form."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/options_helptexts.php:81
|
1003 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: includes/options_helptexts.php:82
|
1007 |
#, php-format
|
1008 |
msgid ""
|
1009 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1013 |
msgid "Enable RSS feed"
|
1014 |
msgstr "Abilita feed RSS"
|
1015 |
|
1016 |
+
#: includes/options_helptexts.php:87
|
1017 |
msgid "Enable support for an event RSS feed"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: includes/options_helptexts.php:88
|
1021 |
+
msgid "This option activates a RSS feed for the events."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:89
|
1025 |
msgid ""
|
1026 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1027 |
+
"features."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: includes/options_helptexts.php:92
|
1031 |
msgid "Feed name"
|
1032 |
msgstr "Nome del Feed"
|
1033 |
|
1034 |
+
#: includes/options_helptexts.php:93
|
1035 |
+
#, php-format
|
1036 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: includes/options_helptexts.php:94
|
1040 |
+
#, php-format
|
1041 |
msgid ""
|
1042 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1043 |
+
"enabled)."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:97
|
1047 |
msgid "Feed Description"
|
1048 |
msgstr "Descrizione del Feed"
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:98
|
1051 |
+
#, php-format
|
1052 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: includes/options_helptexts.php:99
|
1056 |
msgid ""
|
1057 |
+
"This description will be used in the title for the feed link in the html "
|
1058 |
+
"head and for the description in the feed itself."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:102
|
1062 |
msgid "Listed events"
|
1063 |
msgstr "Eventi elencati"
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:103
|
1066 |
msgid "Only show upcoming events in feed"
|
1067 |
msgstr "Mostra solo i prossimi eventi nel Feed"
|
1068 |
|
1069 |
+
#: includes/options_helptexts.php:104
|
1070 |
msgid ""
|
1071 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:105
|
1075 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: includes/options_helptexts.php:108
|
1079 |
msgid "Add RSS feed link in head"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:109
|
1083 |
msgid "Add RSS feed link in the html head"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:110
|
1087 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: includes/options_helptexts.php:111
|
1091 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: includes/options_helptexts.php:112
|
1095 |
msgid ""
|
1096 |
+
"The first way is this option to include a link in the html head. This link "
|
1097 |
+
"will be recognized by browers or feed readers."
|
|
|
|
|
|
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:113
|
1101 |
+
#, php-format
|
1102 |
+
msgid ""
|
1103 |
+
"The second way is to include a visible feed link directly in the event list."
|
1104 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: includes/options_helptexts.php:114
|
1108 |
+
#, php-format
|
1109 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: includes/options_helptexts.php:117
|
1113 |
msgid "Position of the RSS feed link"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:118
|
1117 |
+
msgid "at the top (above the navigation bar)"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: includes/options_helptexts.php:118
|
1121 |
+
msgid "between navigation bar and events"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: includes/options_helptexts.php:118
|
1125 |
+
msgid "at the bottom"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: includes/options_helptexts.php:119
|
1129 |
msgid ""
|
1130 |
+
"This option specifies the position of the RSS feed link in the event list."
|
|
|
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1134 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1135 |
+
#, php-format
|
1136 |
+
msgid ""
|
1137 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1138 |
+
" feed link."
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: includes/options_helptexts.php:123
|
1142 |
msgid "Align of the RSS feed link"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:124
|
1146 |
+
msgid "left"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: includes/options_helptexts.php:124
|
1150 |
+
msgid "center"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: includes/options_helptexts.php:124
|
1154 |
+
msgid "right"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: includes/options_helptexts.php:125
|
1158 |
msgid ""
|
1159 |
+
"This option specifies the align of the RSS feed link in the event list."
|
|
|
|
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:129
|
1163 |
msgid "Feed link text"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:130
|
1167 |
+
msgid ""
|
1168 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: includes/options_helptexts.php:131
|
1172 |
msgid ""
|
1173 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1174 |
+
"image."
|
|
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:135
|
1178 |
msgid "Feed link image"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:136
|
1182 |
msgid "Show rss image in feed link"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:137
|
1186 |
msgid ""
|
1187 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1188 |
+
" front of the text."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options.php:43
|
1192 |
msgid "Show details"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options.php:44
|
1196 |
msgid "Hide details"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/sc_event-list_helptexts.php:7
|
1200 |
+
msgid "event-id"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: includes/sc_event-list_helptexts.php:8
|
1204 |
+
#, php-format
|
1205 |
msgid ""
|
1206 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1207 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1208 |
+
"this event is shown."
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: includes/sc_event-list_helptexts.php:10
|
1212 |
+
#: includes/sc_event-list_helptexts.php:22
|
1213 |
+
msgid "year"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: includes/sc_event-list_helptexts.php:11
|
1217 |
+
msgid ""
|
1218 |
+
"This attribute defines which events are initially shown. The default is to "
|
1219 |
+
"show the upcoming events only."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/sc_event-list_helptexts.php:12
|
1223 |
+
#, php-format
|
1224 |
+
msgid ""
|
1225 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1226 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: includes/sc_event-list_helptexts.php:14
|
1230 |
+
msgid "category slug"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/sc_event-list_helptexts.php:15
|
1234 |
msgid ""
|
1235 |
+
"This attribute defines the category of which events are initially shown. The"
|
1236 |
+
" default is to show events of all categories."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/sc_event-list_helptexts.php:16
|
1240 |
msgid ""
|
1241 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1242 |
+
"change the displayed categories via the filterbar or url parameters."
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: includes/sc_event-list_helptexts.php:19
|
1246 |
+
msgid "This attribute defines the initial order of the events."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: includes/sc_event-list_helptexts.php:20
|
1250 |
msgid ""
|
1251 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1252 |
+
"in the opposite direction (from new to old)."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/sc_event-list_helptexts.php:23
|
1256 |
+
#, php-format
|
1257 |
msgid ""
|
1258 |
+
"This attribute defines the dates and date ranges of which events are "
|
1259 |
+
"displayed. The default is %1$s to show all events."
|
|
|
|
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/sc_event-list_helptexts.php:24
|
1263 |
+
#, php-format
|
1264 |
msgid ""
|
1265 |
+
"Filtered events according to %1$s value are not available in the event list."
|
|
|
|
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/sc_event-list_helptexts.php:25
|
1269 |
+
#, php-format
|
1270 |
msgid ""
|
1271 |
+
"You can find all available values with a description and examples in the "
|
1272 |
+
"sections %1$s and %2$s below."
|
|
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/sc_event-list_helptexts.php:26
|
1276 |
+
#, php-format
|
1277 |
+
msgid "See %1$s description if you want to define complex filters."
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: includes/sc_event-list_helptexts.php:28
|
1281 |
+
msgid "category slugs"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: includes/sc_event-list_helptexts.php:29
|
1285 |
msgid ""
|
1286 |
+
"This attribute defines the category filter which filters the events to show."
|
1287 |
+
" The default is $1$s or an empty string to show all events."
|
|
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/sc_event-list_helptexts.php:30
|
1291 |
+
#, php-format
|
1292 |
+
msgid ""
|
1293 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1294 |
+
"list. They are also not available if a manual url parameter is added."
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: includes/sc_event-list_helptexts.php:31
|
1298 |
+
#, php-format
|
1299 |
+
msgid ""
|
1300 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1301 |
+
"if you want to define complex filters."
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
#: includes/sc_event-list_helptexts.php:33
|
1305 |
+
#: includes/sc_event-list_helptexts.php:76
|
1306 |
+
#: includes/sc_event-list_helptexts.php:91
|
1307 |
+
#: includes/sc_event-list_helptexts.php:106
|
1308 |
msgid "number"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/sc_event-list_helptexts.php:34
|
1312 |
+
#, php-format
|
1313 |
+
msgid ""
|
1314 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1315 |
+
"events is selected. With the default value %1$s all events will be "
|
1316 |
+
"displayed."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: includes/sc_event-list_helptexts.php:35
|
1320 |
+
msgid ""
|
1321 |
+
"Please not that in the actual version there is no pagination of the events "
|
1322 |
+
"available, so the event list can be very long."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: includes/sc_event-list_helptexts.php:38
|
1326 |
+
msgid ""
|
1327 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1328 |
+
"allows the users to specify filters for the listed events."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/sc_event-list_helptexts.php:39
|
1332 |
+
#, php-format
|
1333 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1334 |
+
msgstr ""
|
1335 |
+
|
1336 |
+
#: includes/sc_event-list_helptexts.php:40
|
1337 |
+
#, php-format
|
1338 |
+
msgid ""
|
1339 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1340 |
+
" in the single event view."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: includes/sc_event-list_helptexts.php:77
|
1344 |
+
#: includes/sc_event-list_helptexts.php:92
|
1345 |
msgid ""
|
1346 |
"This attribute specifies if the title should be truncated to the given "
|
1347 |
"number of characters in the event list."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: includes/sc_event-list_helptexts.php:78
|
1351 |
+
#: includes/sc_event-list_helptexts.php:93
|
1352 |
#, php-format
|
1353 |
msgid ""
|
1354 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1355 |
"is automatically truncated via css."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/sc_event-list_helptexts.php:79
|
1359 |
+
#: includes/sc_event-list_helptexts.php:94
|
1360 |
+
#: includes/sc_event-list_helptexts.php:109
|
1361 |
msgid "This attribute has no influence if only a single event is shown."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/sc_event-list_helptexts.php:82
|
1365 |
msgid ""
|
1366 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1367 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1368 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/sc_event-list_helptexts.php:87
|
1372 |
msgid ""
|
1373 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1374 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1375 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/sc_event-list_helptexts.php:97
|
1379 |
msgid ""
|
1380 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1381 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1382 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: includes/sc_event-list_helptexts.php:102
|
1386 |
msgid ""
|
1387 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1388 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1389 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/sc_event-list_helptexts.php:107
|
1393 |
msgid ""
|
1394 |
"This attribute specifies if the details should be truncate to the given "
|
1395 |
"number of characters in the event list."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: includes/sc_event-list_helptexts.php:108
|
1399 |
#, php-format
|
1400 |
msgid "With the standard value %1$s the full text is displayed."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: includes/sc_event-list_helptexts.php:112
|
1404 |
msgid ""
|
1405 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1406 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1408 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: includes/sc_event-list_helptexts.php:118
|
1412 |
msgid ""
|
1413 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1414 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1416 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: includes/sc_event-list_helptexts.php:124
|
1420 |
msgid ""
|
1421 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1422 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1425 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: includes/sc_event-list_helptexts.php:130
|
1429 |
msgid ""
|
1430 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1431 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1432 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: includes/sc_event-list_helptexts.php:137
|
1436 |
msgid ""
|
1437 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1438 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: includes/sc_event-list.php:138
|
1442 |
msgid "Event Information:"
|
1443 |
msgstr "Informazioni Evento"
|
1444 |
|
1445 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1446 |
msgid "This option defines the displayed title for the widget."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: includes/widget_helptexts.php:15
|
1450 |
msgid "Category Filter"
|
1451 |
msgstr "Filtro per categoria"
|
1452 |
|
1453 |
+
#: includes/widget_helptexts.php:17
|
1454 |
msgid ""
|
1455 |
"This option defines the categories of which events are shown. The standard "
|
1456 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1459 |
"all possibilities."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/widget_helptexts.php:22
|
1463 |
msgid "Number of listed events"
|
1464 |
msgstr "Il numero degli eventi elencati"
|
1465 |
|
1466 |
+
#: includes/widget_helptexts.php:24
|
1467 |
msgid "The number of upcoming events to display"
|
1468 |
msgstr "Il numero degli eventi prossimi da visualizzare"
|
1469 |
|
1470 |
+
#: includes/widget_helptexts.php:29
|
1471 |
msgid "Truncate event title to"
|
1472 |
msgstr "Tronca il titolo dell'evento al"
|
1473 |
|
1474 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1475 |
+
#: includes/widget_helptexts.php:67
|
|
|
1476 |
msgid "characters"
|
1477 |
msgstr "caratteri"
|
1478 |
|
1479 |
+
#: includes/widget_helptexts.php:31
|
1480 |
msgid ""
|
1481 |
"This option defines the number of displayed characters for the event title."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1485 |
#, php-format
|
1486 |
msgid ""
|
1487 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1488 |
"automatically truncate the text via css."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: includes/widget_helptexts.php:37
|
1492 |
msgid "Show event starttime"
|
1493 |
msgstr "Mostra l'ora di inizio dell'evento"
|
1494 |
|
1495 |
+
#: includes/widget_helptexts.php:39
|
1496 |
msgid "This option defines if the event start time will be displayed."
|
1497 |
msgstr "Questa opzione definisce se la data di inizio dell'evento sarà visualizzata."
|
1498 |
|
1499 |
+
#: includes/widget_helptexts.php:44
|
1500 |
msgid "Show event location"
|
1501 |
msgstr "Mostra ubicazione evento"
|
1502 |
|
1503 |
+
#: includes/widget_helptexts.php:46
|
1504 |
msgid "This option defines if the event location will be displayed."
|
1505 |
msgstr "Questa opzione definisce se l'ubicazione dell'evento sarà visualizzata."
|
1506 |
|
1507 |
+
#: includes/widget_helptexts.php:51
|
1508 |
msgid "Truncate location to"
|
1509 |
msgstr "Tronca ubicazione al"
|
1510 |
|
1511 |
+
#: includes/widget_helptexts.php:53
|
1512 |
msgid ""
|
1513 |
"If the event location is diplayed this option defines the number of "
|
1514 |
"displayed characters."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: includes/widget_helptexts.php:59
|
1518 |
msgid "Show event details"
|
1519 |
msgstr "Mostra i dettagli dell'evento"
|
1520 |
|
1521 |
+
#: includes/widget_helptexts.php:61
|
1522 |
msgid "This option defines if the event details will be displayed."
|
1523 |
msgstr "Questa opzione definisce se i dettagli dell'evento saranno visualizzati."
|
1524 |
|
1525 |
+
#: includes/widget_helptexts.php:66
|
1526 |
msgid "Truncate details to"
|
1527 |
msgstr "Tronca i dettagli al"
|
1528 |
|
1529 |
+
#: includes/widget_helptexts.php:68
|
1530 |
msgid ""
|
1531 |
"If the event details are diplayed this option defines the number of diplayed"
|
1532 |
" characters."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: includes/widget_helptexts.php:69
|
1536 |
#, php-format
|
1537 |
msgid "Set this value to %1$s to view the full text."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/widget_helptexts.php:74
|
1541 |
msgid "URL to the linked Event List page"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: includes/widget_helptexts.php:76
|
1545 |
msgid ""
|
1546 |
"This option defines the url to the linked Event List page. This option is "
|
1547 |
"required if you want to use one of the options below."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/widget_helptexts.php:81
|
1551 |
msgid "Shortcode ID on linked page"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/widget_helptexts.php:83
|
1555 |
msgid ""
|
1556 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1557 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1558 |
"use multiple event-list shortcodes on the linked page."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: includes/widget_helptexts.php:90
|
1562 |
msgid ""
|
1563 |
"With this option you can add a link to the single event page for every "
|
1564 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1565 |
"id option if you want to use it."
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: includes/widget_helptexts.php:97
|
1569 |
msgid ""
|
1570 |
"With this option you can add a link to the event-list page below the "
|
1571 |
"diplayed events. You have to specify the url to page option if you want to "
|
1572 |
"use it."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/widget_helptexts.php:102
|
1576 |
msgid "Caption for the link"
|
1577 |
msgstr "Didascalia per il link"
|
1578 |
|
1579 |
+
#: includes/widget_helptexts.php:104
|
1580 |
msgid ""
|
1581 |
"This option defines the text for the link to the Event List page if the "
|
1582 |
"approriate option is selected."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/widget.php:20
|
1586 |
msgid "With this widget a list of upcoming events can be displayed."
|
1587 |
msgstr "Con questo widget può essere mostrata una lista di eventi"
|
1588 |
|
1589 |
+
#: includes/widget.php:25
|
1590 |
msgid "Upcoming events"
|
1591 |
msgstr "Prossimi eventi"
|
1592 |
|
1593 |
+
#: includes/widget.php:38
|
1594 |
msgid "show events page"
|
1595 |
msgstr "mostra pagina eventi"
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Buggi, 2016
|
@@ -9,9 +9,9 @@
|
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
-
"Report-Msgid-Bugs-To:
|
13 |
-
"POT-Creation-Date: 2017-
|
14 |
-
"PO-Revision-Date: 2017-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -20,1215 +20,1389 @@ msgstr ""
|
|
20 |
"Language: nl_NL\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
|
23 |
-
#:
|
24 |
msgid "Event List"
|
25 |
msgstr "Gebeurtenislijst"
|
26 |
|
27 |
-
#: /
|
28 |
-
#: /
|
29 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
30 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
31 |
msgid "Events"
|
32 |
msgstr "Gebeurtenissen"
|
33 |
|
34 |
-
#:
|
35 |
msgid "All Events"
|
36 |
msgstr "Alle gebeurtenissen"
|
37 |
|
38 |
-
#: /
|
39 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
40 |
msgid "Add New Event"
|
41 |
msgstr "Maak een nieuwe gebeurtenis"
|
42 |
|
43 |
-
#: /
|
44 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
45 |
msgid "Add New"
|
46 |
msgstr "Nieuwe toevoegen"
|
47 |
|
48 |
-
#: /
|
49 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
50 |
msgid "Event List Categories"
|
51 |
msgstr "Gebeurtenislijst Categorieën "
|
52 |
|
53 |
-
#: /
|
54 |
-
#:
|
55 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
56 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
57 |
msgid "Categories"
|
58 |
msgstr "Categorieën"
|
59 |
|
60 |
-
#: /
|
61 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
62 |
msgid "Event List Settings"
|
63 |
msgstr "Gebeurtenislijst Instellingen"
|
64 |
|
65 |
-
#:
|
66 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
67 |
msgid "Settings"
|
68 |
msgstr "Instellingen"
|
69 |
|
70 |
-
#: /
|
71 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
72 |
msgid "About Event List"
|
73 |
msgstr "Over Gebeurtenislijst"
|
74 |
|
75 |
-
#:
|
76 |
msgid "About"
|
77 |
msgstr "Over"
|
78 |
|
79 |
-
#: /
|
80 |
-
|
81 |
-
|
82 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
83 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
84 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
85 |
-
msgid "You do not have sufficient permissions to access this page."
|
86 |
-
msgstr "Je hebt niet genoeg toestemming om deze pagina te raadplegen."
|
87 |
|
88 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
89 |
msgid "Help and Instructions"
|
90 |
msgstr "Hulp en instructies"
|
91 |
|
92 |
-
#:
|
93 |
#, php-format
|
94 |
-
msgid "You can manage
|
95 |
-
msgstr "
|
96 |
|
97 |
-
#:
|
98 |
msgid "To show the events on your site you have 2 possibilities"
|
99 |
msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden"
|
100 |
|
101 |
-
#:
|
102 |
#, php-format
|
103 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
104 |
msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen"
|
105 |
|
106 |
-
#:
|
107 |
#, php-format
|
108 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
109 |
msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen"
|
110 |
|
111 |
-
#:
|
112 |
msgid ""
|
113 |
"The displayed events and their style can be modified with the available "
|
114 |
"widget settings and the available attributes for the shortcode."
|
115 |
msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode."
|
116 |
|
117 |
-
#:
|
|
|
118 |
msgid ""
|
119 |
-
"A list of all available shortcode attributes with their
|
120 |
-
"available
|
121 |
-
msgstr "
|
122 |
|
123 |
-
#:
|
124 |
msgid "The available widget options are described in their tooltip text."
|
125 |
msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst."
|
126 |
|
127 |
-
#:
|
128 |
#, php-format
|
129 |
msgid ""
|
130 |
-
"
|
131 |
-
"
|
132 |
-
msgstr "
|
133 |
|
134 |
-
#:
|
135 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
136 |
msgid "Add links to the single events"
|
137 |
msgstr "Voeg links toe aan de enkele gebeurtenis"
|
138 |
|
139 |
-
#:
|
140 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
141 |
msgid "Add a link to the Event List page"
|
142 |
msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
|
143 |
|
144 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
#, php-format
|
146 |
msgid ""
|
147 |
-
"
|
148 |
-
"
|
149 |
-
"
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
153 |
#, php-format
|
154 |
msgid ""
|
155 |
-
"Be sure to also check the %1$
|
156 |
-
"
|
157 |
-
msgstr "
|
158 |
|
159 |
-
#:
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
-
#:
|
164 |
msgid ""
|
165 |
"You have the possibility to modify the output if you add some of the "
|
166 |
"following attributes to the shortcode."
|
167 |
msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
|
168 |
|
169 |
-
#:
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
173 |
"including the attributes %1$s and %2$s would looks like this:"
|
174 |
msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
|
175 |
|
176 |
-
#:
|
177 |
msgid ""
|
178 |
"Below you can find a list of all supported attributes with their "
|
179 |
"descriptions and available options:"
|
180 |
msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
|
181 |
|
182 |
-
#:
|
183 |
msgid "Attribute name"
|
184 |
msgstr "Attribuut naam"
|
185 |
|
186 |
-
#:
|
187 |
msgid "Value options"
|
188 |
msgstr "Waarde opties"
|
189 |
|
190 |
-
#:
|
191 |
msgid "Default value"
|
192 |
msgstr "Standaard waarde"
|
193 |
|
194 |
-
#: /
|
195 |
-
#:
|
196 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
197 |
msgid "Description"
|
198 |
msgstr "Omschrijving"
|
199 |
|
200 |
-
#:
|
|
|
201 |
msgid "Filter Syntax"
|
202 |
msgstr "Filter Syntax"
|
203 |
|
204 |
-
#:
|
205 |
msgid ""
|
206 |
"For date and cat filters you can specify complex filters with the following "
|
207 |
"syntax:"
|
208 |
msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
|
209 |
|
210 |
-
#:
|
211 |
#, php-format
|
212 |
msgid ""
|
213 |
"You can use %1$s and %2$s connections to define complex filters. "
|
214 |
"Additionally you can set brackets %3$s for nested queries."
|
215 |
msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
|
216 |
|
217 |
-
#:
|
218 |
msgid "AND"
|
219 |
msgstr "EN"
|
220 |
|
221 |
-
#:
|
222 |
msgid "OR"
|
223 |
msgstr "OF"
|
224 |
|
225 |
-
#:
|
226 |
msgid "or"
|
227 |
msgstr "of"
|
228 |
|
229 |
-
#:
|
230 |
msgid "and"
|
231 |
msgstr "en"
|
232 |
|
233 |
-
#:
|
234 |
msgid "Examples for cat filters:"
|
235 |
msgstr "Voorbeelden voor categorie filters:"
|
236 |
|
237 |
-
#:
|
238 |
#, php-format
|
239 |
msgid "Show all events with category %1$s."
|
240 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
|
241 |
|
242 |
-
#:
|
243 |
#, php-format
|
244 |
msgid "Show all events with category %1$s or %2$s."
|
245 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
|
246 |
|
247 |
-
#:
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
"Show all events with category %1$s and all events where category %2$s as "
|
251 |
"well as %3$s is selected."
|
252 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
|
253 |
|
254 |
-
#:
|
255 |
msgid "Available Date Formats"
|
256 |
msgstr "Beschikbare Datum Notaties"
|
257 |
|
258 |
-
#:
|
259 |
msgid "For date filters you can use the following date formats:"
|
260 |
msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
|
261 |
|
262 |
-
#:
|
263 |
msgid "Available Date Range Formats"
|
264 |
msgstr "Beschikbare Datum Bereik Notaties"
|
265 |
|
266 |
-
#:
|
267 |
msgid "For date filters you can use the following daterange formats:"
|
268 |
msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
|
269 |
|
270 |
-
#:
|
271 |
msgid "Value"
|
272 |
msgstr "Waarde"
|
273 |
|
274 |
-
#:
|
275 |
msgid "Example"
|
276 |
msgstr "Voorbeeld"
|
277 |
|
278 |
-
#:
|
279 |
msgid "Edit Category"
|
280 |
msgstr "Bewerk Categorie"
|
281 |
|
282 |
-
#:
|
283 |
msgid "Update Category"
|
284 |
msgstr "Pas Categorie aan"
|
285 |
|
286 |
-
#:
|
287 |
msgid "Add New Category"
|
288 |
msgstr "Voeg Nieuwe Categorie toe"
|
289 |
|
290 |
-
#:
|
291 |
#, php-format
|
292 |
msgid "Category \"%s\" deleted."
|
293 |
msgstr "Categorie \"%s\" verwijderd."
|
294 |
|
295 |
-
#:
|
296 |
#, php-format
|
297 |
msgid "This Category was also removed from %d events."
|
298 |
msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen."
|
299 |
|
300 |
-
#:
|
301 |
#, php-format
|
302 |
msgid "Error while deleting category \"%s\""
|
303 |
msgstr "Fout bij het verwijderen van categorie \"%s\""
|
304 |
|
305 |
-
#:
|
306 |
msgid "Sync with post categories enabled."
|
307 |
msgstr "Synchronisatie met bericht categorieën ingeschakeld."
|
308 |
|
309 |
-
#:
|
310 |
msgid "Sync with post categories disabled."
|
311 |
msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
|
312 |
|
313 |
-
#:
|
314 |
msgid "Manual sync with post categories sucessfully finished."
|
315 |
msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
|
316 |
|
317 |
-
#:
|
318 |
#, php-format
|
319 |
msgid "New Category \"%s\" was added"
|
320 |
msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
|
321 |
|
322 |
-
#:
|
323 |
#, php-format
|
324 |
msgid "Error: New Category \"%s\" could not be added"
|
325 |
msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
|
326 |
|
327 |
-
#:
|
328 |
#, php-format
|
329 |
msgid "Category \"%s\" was modified"
|
330 |
msgstr "Categorie \"%s\" is aangepast"
|
331 |
|
332 |
-
#:
|
333 |
#, php-format
|
334 |
msgid "Error: Category \"%s\" could not be modified"
|
335 |
msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
|
336 |
|
337 |
-
#:
|
|
|
|
|
|
|
|
|
338 |
msgid ""
|
339 |
-
"
|
340 |
-
"
|
341 |
-
|
342 |
-
msgstr "Categorieën worden automatisch gesynchroniseerd met de bericht-categorieën.<br/>\n\t\t\tHierdoor zijn alle opties om nieuwe categorieën toe te voegen of bestaande aan te passen uitgeschakeld.<br/>\n\t\t\tAls je handmatig categorieen wil aanpassen dien je deze optie uit te schakelen."
|
343 |
|
344 |
-
#:
|
345 |
-
|
346 |
-
|
347 |
-
msgstr "
|
348 |
|
349 |
-
#:
|
350 |
msgid "The name is how it appears on your site."
|
351 |
msgstr "De naam zoals deze verschijnt op de site"
|
352 |
|
353 |
-
#:
|
354 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
|
355 |
-
msgid "Slug"
|
356 |
-
msgstr "Slug"
|
357 |
-
|
358 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
|
359 |
msgid ""
|
360 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
361 |
"lowercase and contains only letters, numbers, and hyphens."
|
362 |
msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes."
|
363 |
|
364 |
-
#:
|
365 |
-
msgid "Parent"
|
366 |
-
msgstr "Bron"
|
367 |
-
|
368 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
369 |
-
msgid "None"
|
370 |
-
msgstr "Geen"
|
371 |
-
|
372 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
373 |
msgid ""
|
374 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
375 |
"that have children categories for Bebop and Big Band. Totally optional."
|
376 |
msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel."
|
377 |
|
378 |
-
#:
|
379 |
msgid "Apply"
|
380 |
msgstr "Toepassen"
|
381 |
|
382 |
-
#:
|
383 |
msgid "Do a manual sync with post categories"
|
384 |
msgstr "Doe een handmatige synchronisatie met bericht categorieen"
|
385 |
|
386 |
-
#:
|
387 |
msgid "Import Events"
|
388 |
msgstr "Importeer Gebeurtenissen"
|
389 |
|
390 |
-
#: /
|
391 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
392 |
msgid "Step"
|
393 |
msgstr "Stap"
|
394 |
|
395 |
-
#:
|
396 |
msgid "Set import file and options"
|
397 |
msgstr "Stel het import bestand en opties in"
|
398 |
|
399 |
-
#:
|
400 |
-
|
401 |
-
|
|
|
402 |
|
403 |
-
#:
|
404 |
msgid "Example file"
|
405 |
msgstr "Voorbeeld bestand"
|
406 |
|
407 |
-
#:
|
408 |
#, php-format
|
409 |
msgid ""
|
410 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
411 |
msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
|
412 |
|
413 |
-
#:
|
414 |
msgid "Note"
|
415 |
msgstr "Aantekening"
|
416 |
|
417 |
-
#:
|
418 |
msgid ""
|
419 |
"Do not change the column header and separator line (first two lines), "
|
420 |
"otherwise the import will fail!"
|
421 |
msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
|
422 |
|
423 |
-
#: /
|
424 |
-
#:
|
425 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
426 |
msgid "Sorry, there has been an error."
|
427 |
msgstr "Sorry, er ging iets fout."
|
428 |
|
429 |
-
#:
|
430 |
msgid "The file does not exist, please try again."
|
431 |
msgstr "Het bestand bestaat niet, probeer het nog eens."
|
432 |
|
433 |
-
#:
|
434 |
msgid "The file is not a CSV file."
|
435 |
msgstr "Het bestand is geen CSV bestand."
|
436 |
|
437 |
-
#:
|
438 |
-
msgid "
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#:
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
446 |
|
447 |
-
#:
|
|
|
|
|
|
|
|
|
448 |
msgid "Import with errors!"
|
449 |
msgstr "Import met fouten!"
|
450 |
|
451 |
-
#:
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"An error occurred during import! Please send your import file to %1$sthe "
|
455 |
"administrator%2$s for analysis."
|
456 |
msgstr "Er heeft zich een fout voorgedaan tijdens de import! Verstuur je import bestand naar %1$sde administrator%2$s voor analyse."
|
457 |
|
458 |
-
#:
|
459 |
msgid "Import successful!"
|
460 |
msgstr "Import succesvol!"
|
461 |
|
462 |
-
#:
|
463 |
msgid "Go back to All Events"
|
464 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
465 |
|
466 |
-
#: /
|
467 |
-
#:
|
468 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
469 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
470 |
msgid "Title"
|
471 |
msgstr "Titel"
|
472 |
|
473 |
-
#:
|
474 |
msgid "Start Date"
|
475 |
msgstr "Start Datum"
|
476 |
|
477 |
-
#:
|
478 |
msgid "End Date"
|
479 |
msgstr "Eind Datum"
|
480 |
|
481 |
-
#: /
|
482 |
-
#: /
|
483 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
484 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
485 |
msgid "Time"
|
486 |
msgstr "Tijd"
|
487 |
|
488 |
-
#: /
|
489 |
-
#:
|
490 |
-
#:
|
491 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
492 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
493 |
msgid "Location"
|
494 |
msgstr "Locatie"
|
495 |
|
496 |
-
#: /
|
497 |
-
#:
|
498 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
499 |
msgid "Details"
|
500 |
msgstr "Details"
|
501 |
|
502 |
-
#:
|
503 |
-
msgid "
|
504 |
-
msgstr "
|
505 |
|
506 |
-
#:
|
507 |
-
|
508 |
-
msgid "
|
509 |
-
|
|
|
|
|
510 |
|
511 |
-
#: /
|
512 |
-
|
513 |
-
|
514 |
-
msgstr "Geen categorieen beschikbaar."
|
515 |
|
516 |
-
#:
|
517 |
msgid "Edit Event"
|
518 |
msgstr "Gebeurtenis Aanpassen"
|
519 |
|
520 |
-
#:
|
521 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
522 |
msgid "Duplicate"
|
523 |
msgstr "Maak een kopie"
|
524 |
|
525 |
-
#:
|
526 |
#, php-format
|
527 |
msgid "Duplicate of event id:%d"
|
528 |
msgstr "Kopie van gebeurtenis id:%d"
|
529 |
|
530 |
-
#: /
|
531 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
532 |
msgid "required"
|
533 |
msgstr "vereist"
|
534 |
|
535 |
-
#:
|
536 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
537 |
msgid "Date"
|
538 |
msgstr "Datum"
|
539 |
|
540 |
-
#:
|
541 |
msgid "Multi-Day Event"
|
542 |
msgstr "Meerdaagse gebeurtenis"
|
543 |
|
544 |
-
#: /
|
545 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
546 |
msgid "Publish"
|
547 |
msgstr "Publiceer"
|
548 |
|
549 |
-
#:
|
550 |
msgid "Update"
|
551 |
msgstr "Bijwerken"
|
552 |
|
553 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
554 |
msgid "Goto Category Settings"
|
555 |
msgstr "Ga naar Categorie Instellingen"
|
556 |
|
557 |
-
#:
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
|
559 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
560 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
561 |
-
msgid "Y/m/d"
|
562 |
-
msgstr "Y/m/d"
|
563 |
-
|
564 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
|
565 |
msgid "Settings saved."
|
566 |
msgstr "Instellingen bewaard."
|
567 |
|
568 |
-
#:
|
569 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
570 |
-
msgid "General"
|
571 |
-
msgstr "Algemeen"
|
572 |
-
|
573 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
574 |
msgid "Frontend Settings"
|
575 |
msgstr "Frontend Instellingen"
|
576 |
|
577 |
-
#:
|
578 |
msgid "Admin Page Settings"
|
579 |
msgstr "Admin Pagina Instellingen"
|
580 |
|
581 |
-
#:
|
582 |
msgid "Feed Settings"
|
583 |
msgstr "Feed Instellingen"
|
584 |
|
585 |
-
#: /
|
586 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
587 |
msgid "event"
|
588 |
msgstr "gebeurtenis"
|
589 |
|
590 |
-
#: /
|
591 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
592 |
msgid "events"
|
593 |
msgstr "gebeurtenissen"
|
594 |
|
595 |
-
#: /
|
596 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
597 |
msgid "Edit"
|
598 |
msgstr "Aanpassen"
|
599 |
|
600 |
-
#: /
|
601 |
-
#: /
|
602 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
603 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
604 |
msgid "Delete"
|
605 |
msgstr "Verwijderen"
|
606 |
|
607 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
608 |
msgid "Author"
|
609 |
msgstr "Auteur"
|
610 |
|
611 |
-
#:
|
612 |
msgid "Published"
|
613 |
msgstr "Gepubliceerd"
|
614 |
|
615 |
-
#:
|
616 |
msgid "Filter"
|
617 |
msgstr "Filter"
|
618 |
|
619 |
-
#:
|
620 |
#, php-format
|
621 |
msgid "%s ago"
|
622 |
msgstr "%s geleden"
|
623 |
|
624 |
-
#:
|
625 |
-
msgid "Y/m/d g:i:s A"
|
626 |
-
msgstr "Y/m/d g:i:s A"
|
627 |
-
|
628 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
629 |
msgid "Year"
|
630 |
msgstr "Jaar"
|
631 |
|
632 |
-
#:
|
633 |
msgid "A year can be specified in 4 digit format."
|
634 |
msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
|
635 |
|
636 |
-
#: /
|
637 |
-
#:
|
638 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
639 |
#, php-format
|
640 |
msgid ""
|
641 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
642 |
"last day."
|
643 |
msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag"
|
644 |
|
645 |
-
#:
|
646 |
msgid "the resulting year"
|
647 |
msgstr "het betreffende jaar"
|
648 |
|
649 |
-
#:
|
650 |
msgid "Month"
|
651 |
msgstr "Maand"
|
652 |
|
653 |
-
#:
|
654 |
msgid ""
|
655 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
656 |
"month, seperated by a hyphen (-)."
|
657 |
msgstr "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)"
|
658 |
|
659 |
-
#:
|
660 |
msgid "the resulting month"
|
661 |
msgstr "de betreffende maand"
|
662 |
|
663 |
-
#:
|
664 |
msgid "Day"
|
665 |
msgstr "Dag"
|
666 |
|
667 |
-
#:
|
668 |
msgid ""
|
669 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
670 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
671 |
msgstr "Een dag kan aangegeven worden met 4 cijfers voor het jaar, 2 cijfers voor de maand en 2 cijfers voor de dag, gescheiden door een streepje (-)"
|
672 |
|
673 |
-
#:
|
674 |
msgid "Relative Year"
|
675 |
msgstr "Relatief Jaar"
|
676 |
|
677 |
-
#: /
|
678 |
-
#: /
|
679 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
680 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
681 |
#, php-format
|
682 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
683 |
msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s"
|
684 |
|
685 |
-
#:
|
686 |
msgid "A relative year"
|
687 |
msgstr "Een relatief jaar"
|
688 |
|
689 |
-
#: /
|
690 |
-
#: /
|
691 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
692 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
693 |
#, php-format
|
694 |
msgid ""
|
695 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
696 |
"%3$s or %4$s attached (see also the example below)."
|
697 |
msgstr "Dit betekent dat je een een positief of negatief (%1$s) %2$s vanaf nu kan aangeven met %3$s of %4$s erachter gevoegd (zie ook het voorbeeld hieronder)."
|
698 |
|
699 |
-
#:
|
700 |
msgid "number of years"
|
701 |
msgstr "aantal jaar"
|
702 |
|
703 |
-
#: /
|
704 |
-
#: /
|
705 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
706 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
707 |
#, php-format
|
708 |
msgid "Additionally the following values are available: %1$s"
|
709 |
msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s"
|
710 |
|
711 |
-
#:
|
712 |
msgid "Relative Month"
|
713 |
msgstr "Relatieve Maand"
|
714 |
|
715 |
-
#:
|
716 |
msgid "A relative month"
|
717 |
msgstr "Een relatieve maand"
|
718 |
|
719 |
-
#:
|
720 |
msgid "number of months"
|
721 |
msgstr "aantal maand"
|
722 |
|
723 |
-
#:
|
724 |
msgid "Relative Week"
|
725 |
msgstr "Relatieve Week"
|
726 |
|
727 |
-
#:
|
728 |
msgid "A relative week"
|
729 |
msgstr "Een relatieve week"
|
730 |
|
731 |
-
#:
|
732 |
msgid "number of weeks"
|
733 |
msgstr "aantal weken"
|
734 |
|
735 |
-
#:
|
736 |
msgid "the resulting week"
|
737 |
msgstr "de betreffende week"
|
738 |
|
739 |
-
#:
|
740 |
#, php-format
|
741 |
msgid ""
|
742 |
"The first day of the week is depending on the option %1$s which can be found"
|
743 |
" and changed in %2$s."
|
744 |
msgstr "De eerste dag van de week is afhankelijk van de optie %1$s, die terug te vinden en aan te passen is bij %2$s."
|
745 |
|
746 |
-
#:
|
747 |
-
msgid "Week Starts On"
|
748 |
-
msgstr "Week begint op"
|
749 |
-
|
750 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
751 |
msgid "Relative Day"
|
752 |
msgstr "Relatieve Dag"
|
753 |
|
754 |
-
#:
|
755 |
msgid "A relative day"
|
756 |
msgstr "Een relatieve dag"
|
757 |
|
758 |
-
#:
|
759 |
msgid "number of days"
|
760 |
msgstr "aantal dagen"
|
761 |
|
762 |
-
#:
|
763 |
msgid "Date range"
|
764 |
msgstr "Datumbereik"
|
765 |
|
766 |
-
#:
|
767 |
msgid ""
|
768 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
769 |
"\t For the start and end date any available date format can be used."
|
770 |
msgstr "Een datumbereik kan aangegeven worden via een startdatum en einddatum gescheiden door een tilde (~).<br />\n\t Voor de start- en einddatum kan elk datumnotatie gebruikt worden."
|
771 |
|
772 |
-
#:
|
773 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
774 |
-
msgid "All"
|
775 |
-
msgstr "Alles"
|
776 |
-
|
777 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
778 |
msgid "This value defines a range without any limits."
|
779 |
msgstr "Deze waarde geeft een bereik zonder einde aan."
|
780 |
|
781 |
-
#: /
|
782 |
-
#:
|
783 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
784 |
#, php-format
|
785 |
msgid "The corresponding date_range format is: %1$s"
|
786 |
msgstr "De bijbehorende date_range instelling is: %1$s"
|
787 |
|
788 |
-
#:
|
789 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
790 |
msgid "Upcoming"
|
791 |
msgstr "Komende"
|
792 |
|
793 |
-
#:
|
794 |
msgid "This value defines a range from the actual day to the future."
|
795 |
msgstr "De waarde geeft een bereik aan van vandaag tot in de toekomst."
|
796 |
|
797 |
-
#:
|
798 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
799 |
msgid "Past"
|
800 |
msgstr "Eerdere"
|
801 |
|
802 |
-
#:
|
803 |
msgid "This value defines a range from the past to the previous day."
|
804 |
msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
|
805 |
|
806 |
-
#:
|
|
|
|
|
|
|
|
|
807 |
msgid "Show all dates"
|
808 |
msgstr "Toon alle data"
|
809 |
|
810 |
-
#:
|
811 |
msgid "Show all categories"
|
812 |
msgstr "Toon alle categoriën"
|
813 |
|
814 |
-
#:
|
815 |
-
msgid "Event Categories"
|
816 |
-
msgstr "Evenementencategoriën"
|
817 |
-
|
818 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
819 |
-
msgid "This option specifies all event category data."
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
823 |
msgid "Sync Categories"
|
824 |
msgstr "Synchroniseer categoriën"
|
825 |
|
826 |
-
#:
|
827 |
msgid "Keep event categories in sync with post categories automatically"
|
828 |
msgstr "Houd evenementen categoriën gelijk met bericht categorieën"
|
829 |
|
830 |
-
#:
|
831 |
msgid "Attention"
|
832 |
msgstr "Let op"
|
833 |
|
834 |
-
#:
|
835 |
msgid ""
|
836 |
"Please note that this option will delete all categories which are not "
|
837 |
"available in the post categories! Existing Categories with the same slug "
|
838 |
"will be updated."
|
839 |
msgstr "Let op dat deze optie alle categorieën verwijdert die niet bestaan bij de bericht categorieën! Bestaande categorieën met dezelfde slug worden geüpdatet."
|
840 |
|
841 |
-
#:
|
842 |
msgid "CSV File to import"
|
843 |
msgstr "CSV-bestand om te importeren"
|
844 |
|
845 |
-
#:
|
846 |
msgid "Please select the file which contains the event data in CSV format."
|
847 |
msgstr "Selecteer het bestand dat de evenementen data bevat in CSV-format."
|
848 |
|
849 |
-
#:
|
850 |
msgid "Used date format"
|
851 |
msgstr "Gebruikte datumweergave"
|
852 |
|
853 |
-
#:
|
854 |
msgid ""
|
855 |
"With this option the used date format for event start and end date given in "
|
856 |
"the CSV file can be specified."
|
857 |
msgstr "Met deze optie wordt de gebruikte datumnotatie voor de start- en einddatum van een evenement in het CSV-bestand bepaald."
|
858 |
|
859 |
-
#:
|
860 |
msgid "Text for no events"
|
861 |
msgstr "Tekst indien geen evenementen"
|
862 |
|
863 |
-
#:
|
864 |
msgid ""
|
865 |
"This option defines the displayed text when no events are available for the "
|
866 |
"selected view."
|
867 |
msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
|
868 |
|
869 |
-
#:
|
870 |
msgid "Multiday filter range"
|
871 |
msgstr "Meerdaags filter bereik"
|
872 |
|
873 |
-
#:
|
874 |
msgid "Use the complete event range in the date filter"
|
875 |
msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
|
876 |
|
877 |
-
#:
|
878 |
msgid ""
|
879 |
"This option defines if the complete range of a multiday event shall be "
|
880 |
"considered in the date filter."
|
881 |
msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
|
882 |
|
883 |
-
#:
|
884 |
msgid ""
|
885 |
"If disabled, only the start day of an event is considered in the filter."
|
886 |
msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
|
887 |
|
888 |
-
#:
|
889 |
msgid ""
|
890 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
891 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
892 |
"but it is hidden when the option is disabled."
|
893 |
msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
|
894 |
|
895 |
-
#:
|
896 |
msgid "Date display"
|
897 |
msgstr "Datumweergave"
|
898 |
|
899 |
-
#:
|
900 |
msgid "Show the date only once per day"
|
901 |
msgstr "Toon de datum slechts één keer per dag"
|
902 |
|
903 |
-
#:
|
904 |
msgid ""
|
905 |
"With this option enabled the date is only displayed once per day if more "
|
906 |
"than one event is available on the same day."
|
907 |
msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
|
908 |
|
909 |
-
#:
|
910 |
msgid ""
|
911 |
"If enabled, the events are ordered in a different way (end date before start"
|
912 |
" time) to allow using the same date for as much events as possible."
|
913 |
msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
|
914 |
|
915 |
-
#:
|
916 |
msgid "HTML tags"
|
917 |
msgstr "HTML-elementen"
|
918 |
|
919 |
-
#: /
|
920 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
921 |
#, php-format
|
922 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
923 |
msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
|
924 |
|
925 |
-
#: /
|
926 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
927 |
#, php-format
|
928 |
msgid ""
|
929 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
930 |
msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
|
931 |
|
932 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
933 |
msgid "Text for \"Show details\""
|
934 |
msgstr "Tekst voor \"Toon details\""
|
935 |
|
936 |
-
#:
|
937 |
msgid ""
|
938 |
"With this option the displayed text for the link to show the event details "
|
939 |
"can be changed, when collapsing is enabled."
|
940 |
msgstr "Met deze optie kan de weergegeven tekst voor de link naar de evenement details worden aangepast, als uitklappen is ingeschakeld."
|
941 |
|
942 |
-
#:
|
943 |
msgid "Text for \"Hide details\""
|
944 |
msgstr "Tekst voor \"Verberg details\""
|
945 |
|
946 |
-
#:
|
947 |
msgid ""
|
948 |
"With this option the displayed text for the link to hide the event details "
|
949 |
"can be changed, when collapsing is enabled."
|
950 |
msgstr "Met deze optie kan de weergegeven tekst voor de link om de evenement details te verbergen worden aangepast, als uitklappen is ingeschakeld."
|
951 |
|
952 |
-
#:
|
953 |
msgid "Disable CSS file"
|
954 |
msgstr "CSS-bestand uitschakelen"
|
955 |
|
956 |
-
#:
|
957 |
#, php-format
|
958 |
msgid "Disable the %1$s file."
|
959 |
msgstr "Schakel het %1$s bestand uit."
|
960 |
|
961 |
-
#:
|
962 |
#, php-format
|
963 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
964 |
msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
|
965 |
|
966 |
-
#:
|
967 |
msgid ""
|
968 |
"This normally only make sense if you have css conflicts with your theme and "
|
969 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
970 |
msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
|
971 |
|
972 |
-
#:
|
973 |
msgid "Date format in edit form"
|
974 |
msgstr "Datumweergave in formulieren"
|
975 |
|
976 |
-
#:
|
977 |
msgid ""
|
978 |
"This option sets the displayed date format for the event date fields in the "
|
979 |
"event new / edit form."
|
980 |
msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
|
981 |
|
982 |
-
#:
|
983 |
-
msgid "The
|
984 |
-
msgstr "
|
985 |
|
986 |
-
#:
|
987 |
#, php-format
|
988 |
msgid ""
|
989 |
"All available options to specify the date format can be found %1$shere%2$s."
|
990 |
msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
|
991 |
|
992 |
-
#: /
|
993 |
msgid "Enable RSS feed"
|
994 |
msgstr "RSS feed inschakelen"
|
995 |
|
996 |
-
#:
|
997 |
msgid "Enable support for an event RSS feed"
|
998 |
msgstr "Ondersteuning voor een RSS feed inschakelen"
|
999 |
|
1000 |
-
#:
|
|
|
|
|
|
|
|
|
1001 |
msgid ""
|
1002 |
-
"
|
1003 |
-
"
|
1004 |
-
msgstr "
|
1005 |
|
1006 |
-
#:
|
1007 |
msgid "Feed name"
|
1008 |
msgstr "Feed naam"
|
1009 |
|
1010 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
msgid ""
|
1012 |
-
"This
|
1013 |
-
"
|
1014 |
-
msgstr "
|
1015 |
|
1016 |
-
#:
|
1017 |
msgid "Feed Description"
|
1018 |
msgstr "Feed beschrijving"
|
1019 |
|
1020 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1021 |
msgid ""
|
1022 |
-
"This
|
1023 |
-
"
|
1024 |
-
msgstr "
|
1025 |
|
1026 |
-
#:
|
1027 |
msgid "Listed events"
|
1028 |
msgstr "Vermeldde evenementen"
|
1029 |
|
1030 |
-
#:
|
1031 |
msgid "Only show upcoming events in feed"
|
1032 |
msgstr "Toon alleen komende evenementen in feed"
|
1033 |
|
1034 |
-
#:
|
1035 |
msgid ""
|
1036 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1037 |
-
|
1038 |
-
|
|
|
|
|
|
|
1039 |
|
1040 |
-
#:
|
1041 |
msgid "Add RSS feed link in head"
|
1042 |
msgstr "Voeg RSS feed toe in kop"
|
1043 |
|
1044 |
-
#:
|
1045 |
msgid "Add RSS feed link in the html head"
|
1046 |
msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
|
1047 |
|
1048 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1049 |
msgid ""
|
1050 |
-
"
|
1051 |
-
"
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1056 |
|
1057 |
-
#:
|
1058 |
msgid "Position of the RSS feed link"
|
1059 |
msgstr "Plek van de RSS feed link"
|
1060 |
|
1061 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
msgid ""
|
1063 |
-
"This option specifies the position of the RSS feed link in the event list
|
1064 |
-
|
1065 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1066 |
-
msgstr "Deze optie bepaalt de positie van de RSS feed link in de evenementenlijst.<br />\n\t De link kan bovenaan, onderaan of tussen de navigatiebalk en de evenentenlijst weergegeven worden.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
|
1067 |
|
1068 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1069 |
msgid "Align of the RSS feed link"
|
1070 |
msgstr "Uitlijning van RSS feed link"
|
1071 |
|
1072 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1073 |
msgid ""
|
1074 |
-
"This option specifies the align of the RSS feed link in the event list
|
1075 |
-
|
1076 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1077 |
-
msgstr "Deze optie bepaalt de uitlijning van de RSS feed link in de evenementenlijst.<br />\n\t De link kan links, in het midden of rechts weergegeven worden.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
|
1078 |
|
1079 |
-
#:
|
1080 |
msgid "Feed link text"
|
1081 |
msgstr "Tekst feed link"
|
1082 |
|
1083 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1084 |
msgid ""
|
1085 |
-
"
|
1086 |
-
"
|
1087 |
-
|
1088 |
-
msgstr "Deze optie bepaalt de tekst van de RSS feed link in de evenementenlijst.<br />\n\t Laat dit veld leeg als je geen tekst, maar alleen het RSS logo wil weergeven.<br />\n\t Als je de feed link wil weergeven, dien je wel aan de shortcode het attribuut \"add_feed_link=true\" toe te voegen."
|
1089 |
|
1090 |
-
#:
|
1091 |
msgid "Feed link image"
|
1092 |
msgstr "Afbeelding feed link"
|
1093 |
|
1094 |
-
#:
|
1095 |
msgid "Show rss image in feed link"
|
1096 |
msgstr "Toon RSS afbeelding in feed link"
|
1097 |
|
1098 |
-
#:
|
1099 |
msgid ""
|
1100 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1101 |
-
"
|
1102 |
-
msgstr "
|
1103 |
|
1104 |
-
#:
|
1105 |
msgid "Show details"
|
1106 |
msgstr "Toon details"
|
1107 |
|
1108 |
-
#:
|
1109 |
msgid "Hide details"
|
1110 |
msgstr "Verberg details"
|
1111 |
|
1112 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1113 |
msgid ""
|
1114 |
-
"
|
1115 |
-
"
|
1116 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1117 |
|
1118 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1119 |
msgid ""
|
1120 |
-
"
|
1121 |
-
"
|
1122 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1123 |
|
1124 |
-
#:
|
1125 |
msgid ""
|
1126 |
-
"This attribute
|
1127 |
-
"
|
1128 |
-
msgstr "
|
1129 |
|
1130 |
-
#:
|
1131 |
msgid ""
|
1132 |
-
"
|
1133 |
-
"
|
1134 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1135 |
|
1136 |
-
#:
|
1137 |
msgid ""
|
1138 |
-
"
|
1139 |
-
"
|
1140 |
-
|
1141 |
-
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1142 |
-
msgstr "Dit attribuut bepaalt de datum en het datumbereik van de getoonde evenementen. Standaard is 'all', waarmee alle evenementen worden getoond.<br />\n\t Evenementen gefilterd door 'date_filter' zijn niet zichtbaar in de evenementenlijst.<br />\n\t Je kan alle beschikbare waarden met beschrijving en voorbeelden terugvinden bij 'Beschikbare datumnotaties' en 'Beschikbare Datumbereik-notaties'<br />\n\t Zie 'Filter Syntax' voor het definiëren van complexe filters."
|
1143 |
|
1144 |
-
#:
|
|
|
1145 |
msgid ""
|
1146 |
-
"This attribute
|
1147 |
-
"
|
1148 |
-
|
1149 |
-
msgstr "Dit attribuut bepaalt welke categorieën evenementen worden getoond. Standaard is 'all', waarmee alle evenementen worden getoond.<br />\n\t Evenementen in categorieën anders dan gedefinieerd bij 'cat_filter' zijn niet zichtbaar in de evenementenlijst. Ze zijn ook niet te bereiken door het toevoegen van handmatige URL parameters.<br />\n\t Het filter wordt gespecificeerd door een categorie-slug. Zie 'Filter Syntax' voor het definiëren van complexe filters."
|
1150 |
|
1151 |
-
#:
|
|
|
1152 |
msgid ""
|
1153 |
-
"
|
1154 |
-
|
1155 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1156 |
-
msgstr "Dit attribuut bepaalt hoe veel evenementen getoond moeten worden als gekozen is voor komende evenementen.<br />\n\t De standaardwaarde is 0, waarmee alle evenementen worden getoond.<br />\n\t Let op dat er in de evenementenlijst geen onderverdeling in pagina's mogelijk is."
|
1157 |
|
1158 |
-
#:
|
|
|
1159 |
msgid ""
|
1160 |
-
"
|
1161 |
-
"
|
1162 |
-
|
1163 |
-
msgstr "Dit attribuut bepaalt of de filterbar zichtbaar is. De filterbar geeft de mogelijkheid om filters te selecteren om het aantal zichtbare evenementen te beperken.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de filterbar.<br />\n\t Met 'event_list_only' is de filterbar alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1164 |
|
1165 |
-
#:
|
1166 |
-
|
1167 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
msgid "number"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#:
|
1172 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1173 |
msgid ""
|
1174 |
"This attribute specifies if the title should be truncated to the given "
|
1175 |
"number of characters in the event list."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#:
|
1179 |
-
#:
|
1180 |
#, php-format
|
1181 |
msgid ""
|
1182 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1183 |
"is automatically truncated via css."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#:
|
1187 |
-
#:
|
1188 |
-
#:
|
1189 |
msgid "This attribute has no influence if only a single event is shown."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#:
|
1193 |
msgid ""
|
1194 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1195 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1196 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1197 |
msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1198 |
|
1199 |
-
#:
|
1200 |
msgid ""
|
1201 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1202 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1203 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1204 |
msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid ""
|
1208 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1209 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1210 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1211 |
msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1212 |
|
1213 |
-
#:
|
1214 |
msgid ""
|
1215 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1216 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1217 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1218 |
msgstr "Dit attribuut bepaalt of de details worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de details.<br />\n\t Met 'event_list_only' zijn de details alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1219 |
|
1220 |
-
#:
|
1221 |
msgid ""
|
1222 |
"This attribute specifies if the details should be truncate to the given "
|
1223 |
"number of characters in the event list."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#:
|
1227 |
#, php-format
|
1228 |
msgid "With the standard value %1$s the full text is displayed."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#:
|
1232 |
msgid ""
|
1233 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1234 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1236,7 +1410,7 @@ msgid ""
|
|
1236 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1237 |
msgstr "Dit attribuut bepaalt of de details in eerste instantie ingeklapt moeten zijn.<br />\n\t In dat geval wordt er een link getoond in plaats van de details. Door op deze link te klikken worden de details zichtbaar.<br />\n\t Gebruik 'false' om uitklappen van details uit te schakelen en 'true' om het in te schakelen.<br />\n\t Met 'event_list_only' zijn de details alleen ingeklapt in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1238 |
|
1239 |
-
#:
|
1240 |
msgid ""
|
1241 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1242 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1244,7 +1418,7 @@ msgid ""
|
|
1244 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1245 |
msgstr "Dit attribuut bepaalt of een link naar een los evenement moet worden toegevoegd aan de evenementnaam in de evenementenlijst.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen.<br />\n\t Met 'events_with_details_only' wordt de link alleen toegevoegd in de evenementenlijst als er bij een evenement details beschikbaar zijn."
|
1246 |
|
1247 |
-
#:
|
1248 |
msgid ""
|
1249 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1250 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1253,36 +1427,32 @@ msgid ""
|
|
1253 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1254 |
msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1255 |
|
1256 |
-
#:
|
1257 |
msgid ""
|
1258 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1259 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1260 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1261 |
msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
|
1262 |
|
1263 |
-
#:
|
1264 |
msgid ""
|
1265 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1266 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#:
|
1270 |
msgid "Event Information:"
|
1271 |
msgstr "Evenement details:"
|
1272 |
|
1273 |
-
#:
|
1274 |
-
msgid "(more…)"
|
1275 |
-
msgstr "(meer…)"
|
1276 |
-
|
1277 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1278 |
msgid "This option defines the displayed title for the widget."
|
1279 |
msgstr "Deze optie bepaalt de getoonde titel voor de widget."
|
1280 |
|
1281 |
-
#:
|
1282 |
msgid "Category Filter"
|
1283 |
msgstr "Categoriefilter"
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid ""
|
1287 |
"This option defines the categories of which events are shown. The standard "
|
1288 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1291,139 +1461,137 @@ msgid ""
|
|
1291 |
"all possibilities."
|
1292 |
msgstr "Deze optie bepaalt welke categorieën evenementen worden getoond. Standaard is 'all' of geen waarde om alle evenementen te tonen. Gebruikt een categorie-slug of een lijst van slugs om alleen evenementen uit bepaalde categorieën te tonen. Zie de beschrijving van het shortcode-attribuut 'cat_filter' voor meer informatie over de opties."
|
1293 |
|
1294 |
-
#:
|
1295 |
msgid "Number of listed events"
|
1296 |
msgstr "Aantal getoonde events"
|
1297 |
|
1298 |
-
#:
|
1299 |
msgid "The number of upcoming events to display"
|
1300 |
msgstr "Het aantal komende evenementen om te tonen"
|
1301 |
|
1302 |
-
#:
|
1303 |
msgid "Truncate event title to"
|
1304 |
msgstr "Kort evenementtitel in tot"
|
1305 |
|
1306 |
-
#: /
|
1307 |
-
#:
|
1308 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1309 |
msgid "characters"
|
1310 |
msgstr "tekens"
|
1311 |
|
1312 |
-
#:
|
1313 |
msgid ""
|
1314 |
"This option defines the number of displayed characters for the event title."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: /
|
1318 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1319 |
#, php-format
|
1320 |
msgid ""
|
1321 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1322 |
"automatically truncate the text via css."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#:
|
1326 |
msgid "Show event starttime"
|
1327 |
msgstr "Toon starttijd evenement"
|
1328 |
|
1329 |
-
#:
|
1330 |
msgid "This option defines if the event start time will be displayed."
|
1331 |
msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond"
|
1332 |
|
1333 |
-
#:
|
1334 |
msgid "Show event location"
|
1335 |
msgstr "Toon evenementlocatie"
|
1336 |
|
1337 |
-
#:
|
1338 |
msgid "This option defines if the event location will be displayed."
|
1339 |
msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond."
|
1340 |
|
1341 |
-
#:
|
1342 |
msgid "Truncate location to"
|
1343 |
msgstr "Kort de locatie in tot"
|
1344 |
|
1345 |
-
#:
|
1346 |
msgid ""
|
1347 |
"If the event location is diplayed this option defines the number of "
|
1348 |
"displayed characters."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#:
|
1352 |
msgid "Show event details"
|
1353 |
msgstr "Toon evenementdetails"
|
1354 |
|
1355 |
-
#:
|
1356 |
msgid "This option defines if the event details will be displayed."
|
1357 |
msgstr "Deze optie bepaalt of de details van een evenement worden getoond."
|
1358 |
|
1359 |
-
#:
|
1360 |
msgid "Truncate details to"
|
1361 |
msgstr "Kort de details in tot"
|
1362 |
|
1363 |
-
#:
|
1364 |
msgid ""
|
1365 |
"If the event details are diplayed this option defines the number of diplayed"
|
1366 |
" characters."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#:
|
1370 |
#, php-format
|
1371 |
msgid "Set this value to %1$s to view the full text."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#:
|
1375 |
msgid "URL to the linked Event List page"
|
1376 |
msgstr "URL naar de gelinkte evenementenlijst-pagina"
|
1377 |
|
1378 |
-
#:
|
1379 |
msgid ""
|
1380 |
"This option defines the url to the linked Event List page. This option is "
|
1381 |
"required if you want to use one of the options below."
|
1382 |
msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
|
1383 |
|
1384 |
-
#:
|
1385 |
msgid "Shortcode ID on linked page"
|
1386 |
msgstr "Shortcode ID op de gelinkte pagina"
|
1387 |
|
1388 |
-
#:
|
1389 |
msgid ""
|
1390 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1391 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1392 |
"use multiple event-list shortcodes on the linked page."
|
1393 |
msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
|
1394 |
|
1395 |
-
#:
|
1396 |
msgid ""
|
1397 |
"With this option you can add a link to the single event page for every "
|
1398 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1399 |
"id option if you want to use it."
|
1400 |
msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
|
1401 |
|
1402 |
-
#:
|
1403 |
msgid ""
|
1404 |
"With this option you can add a link to the event-list page below the "
|
1405 |
"diplayed events. You have to specify the url to page option if you want to "
|
1406 |
"use it."
|
1407 |
msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
|
1408 |
|
1409 |
-
#:
|
1410 |
msgid "Caption for the link"
|
1411 |
msgstr "Bijschrift bij de link"
|
1412 |
|
1413 |
-
#:
|
1414 |
msgid ""
|
1415 |
"This option defines the text for the link to the Event List page if the "
|
1416 |
"approriate option is selected."
|
1417 |
msgstr "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd."
|
1418 |
|
1419 |
-
#:
|
1420 |
msgid "With this widget a list of upcoming events can be displayed."
|
1421 |
msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
|
1422 |
|
1423 |
-
#:
|
1424 |
msgid "Upcoming events"
|
1425 |
msgstr "Komende evenementen"
|
1426 |
|
1427 |
-
#:
|
1428 |
msgid "show events page"
|
1429 |
msgstr "toon evenementenpagina"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Buggi, 2016
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
14 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
20 |
"Language: nl_NL\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
|
23 |
+
#: admin/admin.php:45
|
24 |
msgid "Event List"
|
25 |
msgstr "Gebeurtenislijst"
|
26 |
|
27 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
28 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
29 |
msgid "Events"
|
30 |
msgstr "Gebeurtenissen"
|
31 |
|
32 |
+
#: admin/admin.php:48
|
33 |
msgid "All Events"
|
34 |
msgstr "Alle gebeurtenissen"
|
35 |
|
36 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Maak een nieuwe gebeurtenis"
|
39 |
|
40 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
41 |
msgid "Add New"
|
42 |
msgstr "Nieuwe toevoegen"
|
43 |
|
44 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
45 |
msgid "Event List Categories"
|
46 |
msgstr "Gebeurtenislijst Categorieën "
|
47 |
|
48 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
49 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
50 |
msgid "Categories"
|
51 |
msgstr "Categorieën"
|
52 |
|
53 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
54 |
msgid "Event List Settings"
|
55 |
msgstr "Gebeurtenislijst Instellingen"
|
56 |
|
57 |
+
#: admin/admin.php:60
|
|
|
58 |
msgid "Settings"
|
59 |
msgstr "Instellingen"
|
60 |
|
61 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
62 |
msgid "About Event List"
|
63 |
msgstr "Over Gebeurtenislijst"
|
64 |
|
65 |
+
#: admin/admin.php:64
|
66 |
msgid "About"
|
67 |
msgstr "Over"
|
68 |
|
69 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
70 |
+
msgid "General"
|
71 |
+
msgstr "Algemeen"
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
74 |
+
#: admin/includes/admin-about.php:103
|
75 |
+
msgid "Shortcode Attributes"
|
76 |
+
msgstr "Shortcode Attributen"
|
77 |
+
|
78 |
+
#: admin/includes/admin-about.php:71
|
79 |
msgid "Help and Instructions"
|
80 |
msgstr "Hulp en instructies"
|
81 |
|
82 |
+
#: admin/includes/admin-about.php:72
|
83 |
#, php-format
|
84 |
+
msgid "You can manage the events %1$shere%2$s"
|
85 |
+
msgstr ""
|
86 |
|
87 |
+
#: admin/includes/admin-about.php:73
|
88 |
msgid "To show the events on your site you have 2 possibilities"
|
89 |
msgstr "Om de gebeurtenissen op je site te tonen heb je 2 mogelijkheden"
|
90 |
|
91 |
+
#: admin/includes/admin-about.php:74
|
92 |
#, php-format
|
93 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
94 |
msgstr "je kunt de <strong>shortcode</strong> %1$s op elke pagina of bericht plaatsen"
|
95 |
|
96 |
+
#: admin/includes/admin-about.php:75
|
97 |
#, php-format
|
98 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
99 |
msgstr "je kunt de <strong>widget</strong> %1$s in je sidebar plaatsen"
|
100 |
|
101 |
+
#: admin/includes/admin-about.php:76
|
102 |
msgid ""
|
103 |
"The displayed events and their style can be modified with the available "
|
104 |
"widget settings and the available attributes for the shortcode."
|
105 |
msgstr "De weergegeven gebeurtenissen en hun stijl kan aangepast worden in de beschikbare widget instellingen en de beschikbare attributen voor de shortcode."
|
106 |
|
107 |
+
#: admin/includes/admin-about.php:77
|
108 |
+
#, php-format
|
109 |
msgid ""
|
110 |
+
"A list of all available shortcode attributes with their descriptions is "
|
111 |
+
"available in the %1$s tab."
|
112 |
+
msgstr ""
|
113 |
|
114 |
+
#: admin/includes/admin-about.php:78
|
115 |
msgid "The available widget options are described in their tooltip text."
|
116 |
msgstr "De beschikbare widget opties zijn omschreven in hun tooltip tekst."
|
117 |
|
118 |
+
#: admin/includes/admin-about.php:79
|
119 |
#, php-format
|
120 |
msgid ""
|
121 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
122 |
+
" to insert an URL to the linked event-list page."
|
123 |
+
msgstr ""
|
124 |
|
125 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
126 |
msgid "Add links to the single events"
|
127 |
msgstr "Voeg links toe aan de enkele gebeurtenis"
|
128 |
|
129 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
130 |
msgid "Add a link to the Event List page"
|
131 |
msgstr "Voeg een link to aan de Gebeurtenislijst pagina"
|
132 |
|
133 |
+
#: admin/includes/admin-about.php:80
|
134 |
+
msgid ""
|
135 |
+
"This is required because the widget does not know in which page or post the "
|
136 |
+
"shortcode was included."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: admin/includes/admin-about.php:81
|
140 |
+
msgid ""
|
141 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
142 |
+
" This id describes which shortcode should be used on the given page or post "
|
143 |
+
"if you have more than one."
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: admin/includes/admin-about.php:82
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
150 |
+
"but if required you can check the id by looking into the URL of an event "
|
151 |
+
"link on your linked page or post."
|
152 |
+
msgstr ""
|
153 |
|
154 |
+
#: admin/includes/admin-about.php:83
|
155 |
+
#, php-format
|
156 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: admin/includes/admin-about.php:85
|
160 |
#, php-format
|
161 |
msgid ""
|
162 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
163 |
+
"want."
|
164 |
+
msgstr ""
|
165 |
|
166 |
+
#: admin/includes/admin-about.php:85
|
167 |
+
msgid "Settings page"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: admin/includes/admin-about.php:91
|
171 |
+
msgid "About the plugin author"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: admin/includes/admin-about.php:93
|
175 |
+
#, php-format
|
176 |
+
msgid ""
|
177 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
178 |
+
"plugin on the %2$s."
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: admin/includes/admin-about.php:93
|
182 |
+
msgid "wordpress plugin site"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: admin/includes/admin-about.php:94
|
186 |
+
#, php-format
|
187 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: admin/includes/admin-about.php:94
|
191 |
+
msgid "wordpress plugin review site"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: admin/includes/admin-about.php:95
|
195 |
+
msgid ""
|
196 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
197 |
+
msgstr ""
|
198 |
|
199 |
+
#: admin/includes/admin-about.php:105
|
200 |
msgid ""
|
201 |
"You have the possibility to modify the output if you add some of the "
|
202 |
"following attributes to the shortcode."
|
203 |
msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
|
204 |
|
205 |
+
#: admin/includes/admin-about.php:106
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
209 |
"including the attributes %1$s and %2$s would looks like this:"
|
210 |
msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
|
211 |
|
212 |
+
#: admin/includes/admin-about.php:108
|
213 |
msgid ""
|
214 |
"Below you can find a list of all supported attributes with their "
|
215 |
"descriptions and available options:"
|
216 |
msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
|
217 |
|
218 |
+
#: admin/includes/admin-about.php:122
|
219 |
msgid "Attribute name"
|
220 |
msgstr "Attribuut naam"
|
221 |
|
222 |
+
#: admin/includes/admin-about.php:123
|
223 |
msgid "Value options"
|
224 |
msgstr "Waarde opties"
|
225 |
|
226 |
+
#: admin/includes/admin-about.php:124
|
227 |
msgid "Default value"
|
228 |
msgstr "Standaard waarde"
|
229 |
|
230 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
231 |
+
#: admin/includes/category_table.php:108
|
|
|
232 |
msgid "Description"
|
233 |
msgstr "Omschrijving"
|
234 |
|
235 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
236 |
+
#: includes/sc_event-list_helptexts.php:31
|
237 |
msgid "Filter Syntax"
|
238 |
msgstr "Filter Syntax"
|
239 |
|
240 |
+
#: admin/includes/admin-about.php:144
|
241 |
msgid ""
|
242 |
"For date and cat filters you can specify complex filters with the following "
|
243 |
"syntax:"
|
244 |
msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
|
245 |
|
246 |
+
#: admin/includes/admin-about.php:145
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"You can use %1$s and %2$s connections to define complex filters. "
|
250 |
"Additionally you can set brackets %3$s for nested queries."
|
251 |
msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
|
252 |
|
253 |
+
#: admin/includes/admin-about.php:145
|
254 |
msgid "AND"
|
255 |
msgstr "EN"
|
256 |
|
257 |
+
#: admin/includes/admin-about.php:145
|
258 |
msgid "OR"
|
259 |
msgstr "OF"
|
260 |
|
261 |
+
#: admin/includes/admin-about.php:145
|
262 |
msgid "or"
|
263 |
msgstr "of"
|
264 |
|
265 |
+
#: admin/includes/admin-about.php:145
|
266 |
msgid "and"
|
267 |
msgstr "en"
|
268 |
|
269 |
+
#: admin/includes/admin-about.php:146
|
270 |
msgid "Examples for cat filters:"
|
271 |
msgstr "Voorbeelden voor categorie filters:"
|
272 |
|
273 |
+
#: admin/includes/admin-about.php:147
|
274 |
#, php-format
|
275 |
msgid "Show all events with category %1$s."
|
276 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
|
277 |
|
278 |
+
#: admin/includes/admin-about.php:148
|
279 |
#, php-format
|
280 |
msgid "Show all events with category %1$s or %2$s."
|
281 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
|
282 |
|
283 |
+
#: admin/includes/admin-about.php:149
|
284 |
#, php-format
|
285 |
msgid ""
|
286 |
"Show all events with category %1$s and all events where category %2$s as "
|
287 |
"well as %3$s is selected."
|
288 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
|
289 |
|
290 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
291 |
msgid "Available Date Formats"
|
292 |
msgstr "Beschikbare Datum Notaties"
|
293 |
|
294 |
+
#: admin/includes/admin-about.php:155
|
295 |
msgid "For date filters you can use the following date formats:"
|
296 |
msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
|
297 |
|
298 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
299 |
msgid "Available Date Range Formats"
|
300 |
msgstr "Beschikbare Datum Bereik Notaties"
|
301 |
|
302 |
+
#: admin/includes/admin-about.php:164
|
303 |
msgid "For date filters you can use the following daterange formats:"
|
304 |
msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
|
305 |
|
306 |
+
#: admin/includes/admin-about.php:176
|
307 |
msgid "Value"
|
308 |
msgstr "Waarde"
|
309 |
|
310 |
+
#: admin/includes/admin-about.php:180
|
311 |
msgid "Example"
|
312 |
msgstr "Voorbeeld"
|
313 |
|
314 |
+
#: admin/includes/admin-categories.php:53
|
315 |
msgid "Edit Category"
|
316 |
msgstr "Bewerk Categorie"
|
317 |
|
318 |
+
#: admin/includes/admin-categories.php:53
|
319 |
msgid "Update Category"
|
320 |
msgstr "Pas Categorie aan"
|
321 |
|
322 |
+
#: admin/includes/admin-categories.php:59
|
323 |
msgid "Add New Category"
|
324 |
msgstr "Voeg Nieuwe Categorie toe"
|
325 |
|
326 |
+
#: admin/includes/admin-categories.php:84
|
327 |
#, php-format
|
328 |
msgid "Category \"%s\" deleted."
|
329 |
msgstr "Categorie \"%s\" verwijderd."
|
330 |
|
331 |
+
#: admin/includes/admin-categories.php:86
|
332 |
#, php-format
|
333 |
msgid "This Category was also removed from %d events."
|
334 |
msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen."
|
335 |
|
336 |
+
#: admin/includes/admin-categories.php:92
|
337 |
#, php-format
|
338 |
msgid "Error while deleting category \"%s\""
|
339 |
msgstr "Fout bij het verwijderen van categorie \"%s\""
|
340 |
|
341 |
+
#: admin/includes/admin-categories.php:102
|
342 |
msgid "Sync with post categories enabled."
|
343 |
msgstr "Synchronisatie met bericht categorieën ingeschakeld."
|
344 |
|
345 |
+
#: admin/includes/admin-categories.php:105
|
346 |
msgid "Sync with post categories disabled."
|
347 |
msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
|
348 |
|
349 |
+
#: admin/includes/admin-categories.php:111
|
350 |
msgid "Manual sync with post categories sucessfully finished."
|
351 |
msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
|
352 |
|
353 |
+
#: admin/includes/admin-categories.php:119
|
354 |
#, php-format
|
355 |
msgid "New Category \"%s\" was added"
|
356 |
msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
|
357 |
|
358 |
+
#: admin/includes/admin-categories.php:122
|
359 |
#, php-format
|
360 |
msgid "Error: New Category \"%s\" could not be added"
|
361 |
msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
|
362 |
|
363 |
+
#: admin/includes/admin-categories.php:128
|
364 |
#, php-format
|
365 |
msgid "Category \"%s\" was modified"
|
366 |
msgstr "Categorie \"%s\" is aangepast"
|
367 |
|
368 |
+
#: admin/includes/admin-categories.php:131
|
369 |
#, php-format
|
370 |
msgid "Error: Category \"%s\" could not be modified"
|
371 |
msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
|
372 |
|
373 |
+
#: admin/includes/admin-categories.php:138
|
374 |
+
msgid "Categories are automatically synced with the post categories."
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: admin/includes/admin-categories.php:139
|
378 |
msgid ""
|
379 |
+
"Because of this all options to add new categories or editing existing "
|
380 |
+
"categories are disabled."
|
381 |
+
msgstr ""
|
|
|
382 |
|
383 |
+
#: admin/includes/admin-categories.php:140
|
384 |
+
msgid ""
|
385 |
+
"If you want to manually edit the categories you have to disable this option."
|
386 |
+
msgstr ""
|
387 |
|
388 |
+
#: admin/includes/admin-categories.php:167
|
389 |
msgid "The name is how it appears on your site."
|
390 |
msgstr "De naam zoals deze verschijnt op de site"
|
391 |
|
392 |
+
#: admin/includes/admin-categories.php:172
|
|
|
|
|
|
|
|
|
|
|
393 |
msgid ""
|
394 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
395 |
"lowercase and contains only letters, numbers, and hyphens."
|
396 |
msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes."
|
397 |
|
398 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
399 |
msgid ""
|
400 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
401 |
"that have children categories for Bebop and Big Band. Totally optional."
|
402 |
msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel."
|
403 |
|
404 |
+
#: admin/includes/admin-categories.php:232
|
405 |
msgid "Apply"
|
406 |
msgstr "Toepassen"
|
407 |
|
408 |
+
#: admin/includes/admin-categories.php:242
|
409 |
msgid "Do a manual sync with post categories"
|
410 |
msgstr "Doe een handmatige synchronisatie met bericht categorieen"
|
411 |
|
412 |
+
#: admin/includes/admin-import.php:45
|
413 |
msgid "Import Events"
|
414 |
msgstr "Importeer Gebeurtenissen"
|
415 |
|
416 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
417 |
msgid "Step"
|
418 |
msgstr "Stap"
|
419 |
|
420 |
+
#: admin/includes/admin-import.php:65
|
421 |
msgid "Set import file and options"
|
422 |
msgstr "Stel het import bestand en opties in"
|
423 |
|
424 |
+
#: admin/includes/admin-import.php:68
|
425 |
+
#, php-format
|
426 |
+
msgid "Proceed with Step %1$s"
|
427 |
+
msgstr ""
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:71
|
430 |
msgid "Example file"
|
431 |
msgstr "Voorbeeld bestand"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:72
|
434 |
#, php-format
|
435 |
msgid ""
|
436 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
437 |
msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:73
|
440 |
msgid "Note"
|
441 |
msgstr "Aantekening"
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:73
|
444 |
msgid ""
|
445 |
"Do not change the column header and separator line (first two lines), "
|
446 |
"otherwise the import will fail!"
|
447 |
msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
450 |
+
#: admin/includes/admin-import.php:101
|
|
|
451 |
msgid "Sorry, there has been an error."
|
452 |
msgstr "Sorry, er ging iets fout."
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:81
|
455 |
msgid "The file does not exist, please try again."
|
456 |
msgstr "Het bestand bestaat niet, probeer het nog eens."
|
457 |
|
458 |
+
#: admin/includes/admin-import.php:89
|
459 |
msgid "The file is not a CSV file."
|
460 |
msgstr "Het bestand is geen CSV bestand."
|
461 |
|
462 |
+
#: admin/includes/admin-import.php:120
|
463 |
+
msgid "Events review and additonal category selection"
|
464 |
+
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:123
|
467 |
+
msgid ""
|
468 |
+
"Warning: The following category slugs are not available and will be removed "
|
469 |
+
"from the imported events:"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: admin/includes/admin-import.php:129
|
473 |
+
msgid ""
|
474 |
+
"If you want to keep these categories, please create these Categories first "
|
475 |
+
"and do the import afterwards."
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: admin/includes/admin-import.php:147
|
479 |
+
msgid "Add additional categories"
|
480 |
+
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:148
|
483 |
+
msgid "Import events"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/includes/admin-import.php:162
|
487 |
msgid "Import with errors!"
|
488 |
msgstr "Import met fouten!"
|
489 |
|
490 |
+
#: admin/includes/admin-import.php:163
|
491 |
#, php-format
|
492 |
msgid ""
|
493 |
"An error occurred during import! Please send your import file to %1$sthe "
|
494 |
"administrator%2$s for analysis."
|
495 |
msgstr "Er heeft zich een fout voorgedaan tijdens de import! Verstuur je import bestand naar %1$sde administrator%2$s voor analyse."
|
496 |
|
497 |
+
#: admin/includes/admin-import.php:167
|
498 |
msgid "Import successful!"
|
499 |
msgstr "Import succesvol!"
|
500 |
|
501 |
+
#: admin/includes/admin-import.php:168
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
504 |
|
505 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
506 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
507 |
msgid "Title"
|
508 |
msgstr "Titel"
|
509 |
|
510 |
+
#: admin/includes/admin-import.php:176
|
511 |
msgid "Start Date"
|
512 |
msgstr "Start Datum"
|
513 |
|
514 |
+
#: admin/includes/admin-import.php:177
|
515 |
msgid "End Date"
|
516 |
msgstr "Eind Datum"
|
517 |
|
518 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
519 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
520 |
msgid "Time"
|
521 |
msgstr "Tijd"
|
522 |
|
523 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
524 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
525 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
526 |
msgid "Location"
|
527 |
msgstr "Locatie"
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
530 |
+
#: admin/includes/event_table.php:110
|
|
|
531 |
msgid "Details"
|
532 |
msgstr "Details"
|
533 |
|
534 |
+
#: admin/includes/admin-import.php:181
|
535 |
+
msgid "Category slugs"
|
536 |
+
msgstr ""
|
537 |
|
538 |
+
#: admin/includes/admin-import.php:220
|
539 |
+
#, php-format
|
540 |
+
msgid ""
|
541 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
542 |
+
"missing or not correct!"
|
543 |
+
msgstr ""
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
546 |
+
msgid "Import"
|
547 |
+
msgstr "Importeer"
|
|
|
548 |
|
549 |
+
#: admin/includes/admin-main.php:114
|
550 |
msgid "Edit Event"
|
551 |
msgstr "Gebeurtenis Aanpassen"
|
552 |
|
553 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
554 |
msgid "Duplicate"
|
555 |
msgstr "Maak een kopie"
|
556 |
|
557 |
+
#: admin/includes/admin-new.php:43
|
558 |
#, php-format
|
559 |
msgid "Duplicate of event id:%d"
|
560 |
msgstr "Kopie van gebeurtenis id:%d"
|
561 |
|
562 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
563 |
msgid "required"
|
564 |
msgstr "vereist"
|
565 |
|
566 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
567 |
msgid "Date"
|
568 |
msgstr "Datum"
|
569 |
|
570 |
+
#: admin/includes/admin-new.php:113
|
571 |
msgid "Multi-Day Event"
|
572 |
msgstr "Meerdaagse gebeurtenis"
|
573 |
|
574 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
575 |
msgid "Publish"
|
576 |
msgstr "Publiceer"
|
577 |
|
578 |
+
#: admin/includes/admin-new.php:160
|
579 |
msgid "Update"
|
580 |
msgstr "Bijwerken"
|
581 |
|
582 |
+
#: admin/includes/admin-new.php:162
|
583 |
+
msgid "Cancel"
|
584 |
+
msgstr "Annuleer"
|
585 |
+
|
586 |
+
#: admin/includes/admin-new.php:175
|
587 |
+
msgid "No categories available."
|
588 |
+
msgstr "Geen categorieen beschikbaar."
|
589 |
+
|
590 |
+
#: admin/includes/admin-new.php:221
|
591 |
msgid "Goto Category Settings"
|
592 |
msgstr "Ga naar Categorie Instellingen"
|
593 |
|
594 |
+
#: admin/includes/admin-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
595 |
msgid "Settings saved."
|
596 |
msgstr "Instellingen bewaard."
|
597 |
|
598 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
599 |
msgid "Frontend Settings"
|
600 |
msgstr "Frontend Instellingen"
|
601 |
|
602 |
+
#: admin/includes/admin-settings.php:70
|
603 |
msgid "Admin Page Settings"
|
604 |
msgstr "Admin Pagina Instellingen"
|
605 |
|
606 |
+
#: admin/includes/admin-settings.php:71
|
607 |
msgid "Feed Settings"
|
608 |
msgstr "Feed Instellingen"
|
609 |
|
610 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
611 |
msgid "event"
|
612 |
msgstr "gebeurtenis"
|
613 |
|
614 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
615 |
msgid "events"
|
616 |
msgstr "gebeurtenissen"
|
617 |
|
618 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
619 |
msgid "Edit"
|
620 |
msgstr "Aanpassen"
|
621 |
|
622 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
623 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
624 |
msgid "Delete"
|
625 |
msgstr "Verwijderen"
|
626 |
|
627 |
+
#: admin/includes/category_table.php:107
|
628 |
+
msgid "Name"
|
629 |
+
msgstr "Naam"
|
630 |
+
|
631 |
+
#: admin/includes/category_table.php:109
|
632 |
+
msgid "Slug"
|
633 |
+
msgstr "Slug"
|
634 |
+
|
635 |
+
#: admin/includes/event_table.php:112
|
636 |
msgid "Author"
|
637 |
msgstr "Auteur"
|
638 |
|
639 |
+
#: admin/includes/event_table.php:113
|
640 |
msgid "Published"
|
641 |
msgstr "Gepubliceerd"
|
642 |
|
643 |
+
#: admin/includes/event_table.php:175
|
644 |
msgid "Filter"
|
645 |
msgstr "Filter"
|
646 |
|
647 |
+
#: admin/includes/event_table.php:297
|
648 |
#, php-format
|
649 |
msgid "%s ago"
|
650 |
msgstr "%s geleden"
|
651 |
|
652 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
653 |
msgid "Year"
|
654 |
msgstr "Jaar"
|
655 |
|
656 |
+
#: includes/daterange_helptexts.php:8
|
657 |
msgid "A year can be specified in 4 digit format."
|
658 |
msgstr "Een jaar kan aangegeven worden in 4 cijferig formaat."
|
659 |
|
660 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
661 |
+
#: includes/daterange_helptexts.php:36
|
|
|
662 |
#, php-format
|
663 |
msgid ""
|
664 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
665 |
"last day."
|
666 |
msgstr "Voor een filter op startdatum wordt de eerste dag van %1$s gebruikt, bij een einddatum de laatste dag"
|
667 |
|
668 |
+
#: includes/daterange_helptexts.php:9
|
669 |
msgid "the resulting year"
|
670 |
msgstr "het betreffende jaar"
|
671 |
|
672 |
+
#: includes/daterange_helptexts.php:12
|
673 |
msgid "Month"
|
674 |
msgstr "Maand"
|
675 |
|
676 |
+
#: includes/daterange_helptexts.php:13
|
677 |
msgid ""
|
678 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
679 |
"month, seperated by a hyphen (-)."
|
680 |
msgstr "Een maand kan aangegeven worden met 4 cijfers voor het jaar en 2 cijfers voor de maand, gescheiden door een streepje (-)"
|
681 |
|
682 |
+
#: includes/daterange_helptexts.php:14
|
683 |
msgid "the resulting month"
|
684 |
msgstr "de betreffende maand"
|
685 |
|
686 |
+
#: includes/daterange_helptexts.php:17
|
687 |
msgid "Day"
|
688 |
msgstr "Dag"
|
689 |
|
690 |
+
#: includes/daterange_helptexts.php:18
|
691 |
msgid ""
|
692 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
693 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
694 |
msgstr "Een dag kan aangegeven worden met 4 cijfers voor het jaar, 2 cijfers voor de maand en 2 cijfers voor de dag, gescheiden door een streepje (-)"
|
695 |
|
696 |
+
#: includes/daterange_helptexts.php:21
|
697 |
msgid "Relative Year"
|
698 |
msgstr "Relatief Jaar"
|
699 |
|
700 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
701 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
702 |
#, php-format
|
703 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
704 |
msgstr "%1$s vanaf nu kan aangegeven worden in de volgende notatie: %2$s"
|
705 |
|
706 |
+
#: includes/daterange_helptexts.php:22
|
707 |
msgid "A relative year"
|
708 |
msgstr "Een relatief jaar"
|
709 |
|
710 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
711 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
712 |
#, php-format
|
713 |
msgid ""
|
714 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
715 |
"%3$s or %4$s attached (see also the example below)."
|
716 |
msgstr "Dit betekent dat je een een positief of negatief (%1$s) %2$s vanaf nu kan aangeven met %3$s of %4$s erachter gevoegd (zie ook het voorbeeld hieronder)."
|
717 |
|
718 |
+
#: includes/daterange_helptexts.php:23
|
719 |
msgid "number of years"
|
720 |
msgstr "aantal jaar"
|
721 |
|
722 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
723 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
724 |
#, php-format
|
725 |
msgid "Additionally the following values are available: %1$s"
|
726 |
msgstr "Daarnaast zijn de volgende waarden te gebruiken: %1$s"
|
727 |
|
728 |
+
#: includes/daterange_helptexts.php:27
|
729 |
msgid "Relative Month"
|
730 |
msgstr "Relatieve Maand"
|
731 |
|
732 |
+
#: includes/daterange_helptexts.php:28
|
733 |
msgid "A relative month"
|
734 |
msgstr "Een relatieve maand"
|
735 |
|
736 |
+
#: includes/daterange_helptexts.php:29
|
737 |
msgid "number of months"
|
738 |
msgstr "aantal maand"
|
739 |
|
740 |
+
#: includes/daterange_helptexts.php:33
|
741 |
msgid "Relative Week"
|
742 |
msgstr "Relatieve Week"
|
743 |
|
744 |
+
#: includes/daterange_helptexts.php:34
|
745 |
msgid "A relative week"
|
746 |
msgstr "Een relatieve week"
|
747 |
|
748 |
+
#: includes/daterange_helptexts.php:35
|
749 |
msgid "number of weeks"
|
750 |
msgstr "aantal weken"
|
751 |
|
752 |
+
#: includes/daterange_helptexts.php:36
|
753 |
msgid "the resulting week"
|
754 |
msgstr "de betreffende week"
|
755 |
|
756 |
+
#: includes/daterange_helptexts.php:37
|
757 |
#, php-format
|
758 |
msgid ""
|
759 |
"The first day of the week is depending on the option %1$s which can be found"
|
760 |
" and changed in %2$s."
|
761 |
msgstr "De eerste dag van de week is afhankelijk van de optie %1$s, die terug te vinden en aan te passen is bij %2$s."
|
762 |
|
763 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
764 |
msgid "Relative Day"
|
765 |
msgstr "Relatieve Dag"
|
766 |
|
767 |
+
#: includes/daterange_helptexts.php:42
|
768 |
msgid "A relative day"
|
769 |
msgstr "Een relatieve dag"
|
770 |
|
771 |
+
#: includes/daterange_helptexts.php:43
|
772 |
msgid "number of days"
|
773 |
msgstr "aantal dagen"
|
774 |
|
775 |
+
#: includes/daterange_helptexts.php:49
|
776 |
msgid "Date range"
|
777 |
msgstr "Datumbereik"
|
778 |
|
779 |
+
#: includes/daterange_helptexts.php:50
|
780 |
msgid ""
|
781 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
782 |
"\t For the start and end date any available date format can be used."
|
783 |
msgstr "Een datumbereik kan aangegeven worden via een startdatum en einddatum gescheiden door een tilde (~).<br />\n\t Voor de start- en einddatum kan elk datumnotatie gebruikt worden."
|
784 |
|
785 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
786 |
msgid "This value defines a range without any limits."
|
787 |
msgstr "Deze waarde geeft een bereik zonder einde aan."
|
788 |
|
789 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
790 |
+
#: includes/daterange_helptexts.php:66
|
|
|
791 |
#, php-format
|
792 |
msgid "The corresponding date_range format is: %1$s"
|
793 |
msgstr "De bijbehorende date_range instelling is: %1$s"
|
794 |
|
795 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
796 |
msgid "Upcoming"
|
797 |
msgstr "Komende"
|
798 |
|
799 |
+
#: includes/daterange_helptexts.php:60
|
800 |
msgid "This value defines a range from the actual day to the future."
|
801 |
msgstr "De waarde geeft een bereik aan van vandaag tot in de toekomst."
|
802 |
|
803 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
804 |
msgid "Past"
|
805 |
msgstr "Eerdere"
|
806 |
|
807 |
+
#: includes/daterange_helptexts.php:65
|
808 |
msgid "This value defines a range from the past to the previous day."
|
809 |
msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
|
810 |
|
811 |
+
#: includes/filterbar.php:282
|
812 |
+
msgid "All"
|
813 |
+
msgstr "Alles"
|
814 |
+
|
815 |
+
#: includes/filterbar.php:285
|
816 |
msgid "Show all dates"
|
817 |
msgstr "Toon alle data"
|
818 |
|
819 |
+
#: includes/filterbar.php:285
|
820 |
msgid "Show all categories"
|
821 |
msgstr "Toon alle categoriën"
|
822 |
|
823 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
824 |
msgid "Sync Categories"
|
825 |
msgstr "Synchroniseer categoriën"
|
826 |
|
827 |
+
#: includes/options_helptexts.php:12
|
828 |
msgid "Keep event categories in sync with post categories automatically"
|
829 |
msgstr "Houd evenementen categoriën gelijk met bericht categorieën"
|
830 |
|
831 |
+
#: includes/options_helptexts.php:13
|
832 |
msgid "Attention"
|
833 |
msgstr "Let op"
|
834 |
|
835 |
+
#: includes/options_helptexts.php:14
|
836 |
msgid ""
|
837 |
"Please note that this option will delete all categories which are not "
|
838 |
"available in the post categories! Existing Categories with the same slug "
|
839 |
"will be updated."
|
840 |
msgstr "Let op dat deze optie alle categorieën verwijdert die niet bestaan bij de bericht categorieën! Bestaande categorieën met dezelfde slug worden geüpdatet."
|
841 |
|
842 |
+
#: includes/options_helptexts.php:18
|
843 |
msgid "CSV File to import"
|
844 |
msgstr "CSV-bestand om te importeren"
|
845 |
|
846 |
+
#: includes/options_helptexts.php:20
|
847 |
msgid "Please select the file which contains the event data in CSV format."
|
848 |
msgstr "Selecteer het bestand dat de evenementen data bevat in CSV-format."
|
849 |
|
850 |
+
#: includes/options_helptexts.php:23
|
851 |
msgid "Used date format"
|
852 |
msgstr "Gebruikte datumweergave"
|
853 |
|
854 |
+
#: includes/options_helptexts.php:25
|
855 |
msgid ""
|
856 |
"With this option the used date format for event start and end date given in "
|
857 |
"the CSV file can be specified."
|
858 |
msgstr "Met deze optie wordt de gebruikte datumnotatie voor de start- en einddatum van een evenement in het CSV-bestand bepaald."
|
859 |
|
860 |
+
#: includes/options_helptexts.php:29
|
861 |
msgid "Text for no events"
|
862 |
msgstr "Tekst indien geen evenementen"
|
863 |
|
864 |
+
#: includes/options_helptexts.php:31
|
865 |
msgid ""
|
866 |
"This option defines the displayed text when no events are available for the "
|
867 |
"selected view."
|
868 |
msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
|
869 |
|
870 |
+
#: includes/options_helptexts.php:34
|
871 |
msgid "Multiday filter range"
|
872 |
msgstr "Meerdaags filter bereik"
|
873 |
|
874 |
+
#: includes/options_helptexts.php:35
|
875 |
msgid "Use the complete event range in the date filter"
|
876 |
msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
|
877 |
|
878 |
+
#: includes/options_helptexts.php:36
|
879 |
msgid ""
|
880 |
"This option defines if the complete range of a multiday event shall be "
|
881 |
"considered in the date filter."
|
882 |
msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
|
883 |
|
884 |
+
#: includes/options_helptexts.php:37
|
885 |
msgid ""
|
886 |
"If disabled, only the start day of an event is considered in the filter."
|
887 |
msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
|
888 |
|
889 |
+
#: includes/options_helptexts.php:38
|
890 |
msgid ""
|
891 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
892 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
893 |
"but it is hidden when the option is disabled."
|
894 |
msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
|
895 |
|
896 |
+
#: includes/options_helptexts.php:41
|
897 |
msgid "Date display"
|
898 |
msgstr "Datumweergave"
|
899 |
|
900 |
+
#: includes/options_helptexts.php:42
|
901 |
msgid "Show the date only once per day"
|
902 |
msgstr "Toon de datum slechts één keer per dag"
|
903 |
|
904 |
+
#: includes/options_helptexts.php:43
|
905 |
msgid ""
|
906 |
"With this option enabled the date is only displayed once per day if more "
|
907 |
"than one event is available on the same day."
|
908 |
msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
|
909 |
|
910 |
+
#: includes/options_helptexts.php:44
|
911 |
msgid ""
|
912 |
"If enabled, the events are ordered in a different way (end date before start"
|
913 |
" time) to allow using the same date for as much events as possible."
|
914 |
msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
|
915 |
|
916 |
+
#: includes/options_helptexts.php:47
|
917 |
msgid "HTML tags"
|
918 |
msgstr "HTML-elementen"
|
919 |
|
920 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
921 |
#, php-format
|
922 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
923 |
msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
|
924 |
|
925 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
926 |
#, php-format
|
927 |
msgid ""
|
928 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
929 |
msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
|
930 |
|
931 |
+
#: includes/options_helptexts.php:57
|
932 |
+
msgid "Preferred language file"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: includes/options_helptexts.php:58
|
936 |
+
msgid "Load translations from general language directory first"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: includes/options_helptexts.php:59
|
940 |
+
#, php-format
|
941 |
+
msgid ""
|
942 |
+
"The default is to load the %1$s translation file from the plugin language "
|
943 |
+
"directory first (%2$s)."
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: includes/options_helptexts.php:60
|
947 |
+
#, php-format
|
948 |
+
msgid ""
|
949 |
+
"If you want to load your own language file from the general language "
|
950 |
+
"directory %1$s for a language which is already included in the plugin "
|
951 |
+
"language directory, you have to enable this option."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: includes/options_helptexts.php:64
|
955 |
msgid "Text for \"Show details\""
|
956 |
msgstr "Tekst voor \"Toon details\""
|
957 |
|
958 |
+
#: includes/options_helptexts.php:65
|
959 |
msgid ""
|
960 |
"With this option the displayed text for the link to show the event details "
|
961 |
"can be changed, when collapsing is enabled."
|
962 |
msgstr "Met deze optie kan de weergegeven tekst voor de link naar de evenement details worden aangepast, als uitklappen is ingeschakeld."
|
963 |
|
964 |
+
#: includes/options_helptexts.php:68
|
965 |
msgid "Text for \"Hide details\""
|
966 |
msgstr "Tekst voor \"Verberg details\""
|
967 |
|
968 |
+
#: includes/options_helptexts.php:69
|
969 |
msgid ""
|
970 |
"With this option the displayed text for the link to hide the event details "
|
971 |
"can be changed, when collapsing is enabled."
|
972 |
msgstr "Met deze optie kan de weergegeven tekst voor de link om de evenement details te verbergen worden aangepast, als uitklappen is ingeschakeld."
|
973 |
|
974 |
+
#: includes/options_helptexts.php:72
|
975 |
msgid "Disable CSS file"
|
976 |
msgstr "CSS-bestand uitschakelen"
|
977 |
|
978 |
+
#: includes/options_helptexts.php:73
|
979 |
#, php-format
|
980 |
msgid "Disable the %1$s file."
|
981 |
msgstr "Schakel het %1$s bestand uit."
|
982 |
|
983 |
+
#: includes/options_helptexts.php:74
|
984 |
#, php-format
|
985 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
986 |
msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
|
987 |
|
988 |
+
#: includes/options_helptexts.php:75
|
989 |
msgid ""
|
990 |
"This normally only make sense if you have css conflicts with your theme and "
|
991 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
992 |
msgstr "Dit is alleen nuttig als je CSS conflicten hebt met je thema en je alle vereiste CSS opmaak elders wil onderbrengen (bijv. in de CSS van je thema)."
|
993 |
|
994 |
+
#: includes/options_helptexts.php:79
|
995 |
msgid "Date format in edit form"
|
996 |
msgstr "Datumweergave in formulieren"
|
997 |
|
998 |
+
#: includes/options_helptexts.php:80
|
999 |
msgid ""
|
1000 |
"This option sets the displayed date format for the event date fields in the "
|
1001 |
"event new / edit form."
|
1002 |
msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
|
1003 |
|
1004 |
+
#: includes/options_helptexts.php:81
|
1005 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1006 |
+
msgstr ""
|
1007 |
|
1008 |
+
#: includes/options_helptexts.php:82
|
1009 |
#, php-format
|
1010 |
msgid ""
|
1011 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1012 |
msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
|
1013 |
|
1014 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1015 |
msgid "Enable RSS feed"
|
1016 |
msgstr "RSS feed inschakelen"
|
1017 |
|
1018 |
+
#: includes/options_helptexts.php:87
|
1019 |
msgid "Enable support for an event RSS feed"
|
1020 |
msgstr "Ondersteuning voor een RSS feed inschakelen"
|
1021 |
|
1022 |
+
#: includes/options_helptexts.php:88
|
1023 |
+
msgid "This option activates a RSS feed for the events."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/options_helptexts.php:89
|
1027 |
msgid ""
|
1028 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1029 |
+
"features."
|
1030 |
+
msgstr ""
|
1031 |
|
1032 |
+
#: includes/options_helptexts.php:92
|
1033 |
msgid "Feed name"
|
1034 |
msgstr "Feed naam"
|
1035 |
|
1036 |
+
#: includes/options_helptexts.php:93
|
1037 |
+
#, php-format
|
1038 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: includes/options_helptexts.php:94
|
1042 |
+
#, php-format
|
1043 |
msgid ""
|
1044 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1045 |
+
"enabled)."
|
1046 |
+
msgstr ""
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:97
|
1049 |
msgid "Feed Description"
|
1050 |
msgstr "Feed beschrijving"
|
1051 |
|
1052 |
+
#: includes/options_helptexts.php:98
|
1053 |
+
#, php-format
|
1054 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: includes/options_helptexts.php:99
|
1058 |
msgid ""
|
1059 |
+
"This description will be used in the title for the feed link in the html "
|
1060 |
+
"head and for the description in the feed itself."
|
1061 |
+
msgstr ""
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:102
|
1064 |
msgid "Listed events"
|
1065 |
msgstr "Vermeldde evenementen"
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:103
|
1068 |
msgid "Only show upcoming events in feed"
|
1069 |
msgstr "Toon alleen komende evenementen in feed"
|
1070 |
|
1071 |
+
#: includes/options_helptexts.php:104
|
1072 |
msgid ""
|
1073 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: includes/options_helptexts.php:105
|
1077 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1078 |
+
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:108
|
1081 |
msgid "Add RSS feed link in head"
|
1082 |
msgstr "Voeg RSS feed toe in kop"
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:109
|
1085 |
msgid "Add RSS feed link in the html head"
|
1086 |
msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:110
|
1089 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: includes/options_helptexts.php:111
|
1093 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: includes/options_helptexts.php:112
|
1097 |
msgid ""
|
1098 |
+
"The first way is this option to include a link in the html head. This link "
|
1099 |
+
"will be recognized by browers or feed readers."
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: includes/options_helptexts.php:113
|
1103 |
+
#, php-format
|
1104 |
+
msgid ""
|
1105 |
+
"The second way is to include a visible feed link directly in the event list."
|
1106 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: includes/options_helptexts.php:114
|
1110 |
+
#, php-format
|
1111 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1112 |
+
msgstr ""
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:117
|
1115 |
msgid "Position of the RSS feed link"
|
1116 |
msgstr "Plek van de RSS feed link"
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:118
|
1119 |
+
msgid "at the top (above the navigation bar)"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: includes/options_helptexts.php:118
|
1123 |
+
msgid "between navigation bar and events"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: includes/options_helptexts.php:118
|
1127 |
+
msgid "at the bottom"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/options_helptexts.php:119
|
1131 |
msgid ""
|
1132 |
+
"This option specifies the position of the RSS feed link in the event list."
|
1133 |
+
msgstr ""
|
|
|
|
|
1134 |
|
1135 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1136 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1137 |
+
#, php-format
|
1138 |
+
msgid ""
|
1139 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1140 |
+
" feed link."
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: includes/options_helptexts.php:123
|
1144 |
msgid "Align of the RSS feed link"
|
1145 |
msgstr "Uitlijning van RSS feed link"
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:124
|
1148 |
+
msgid "left"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: includes/options_helptexts.php:124
|
1152 |
+
msgid "center"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: includes/options_helptexts.php:124
|
1156 |
+
msgid "right"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: includes/options_helptexts.php:125
|
1160 |
msgid ""
|
1161 |
+
"This option specifies the align of the RSS feed link in the event list."
|
1162 |
+
msgstr ""
|
|
|
|
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:129
|
1165 |
msgid "Feed link text"
|
1166 |
msgstr "Tekst feed link"
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:130
|
1169 |
+
msgid ""
|
1170 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: includes/options_helptexts.php:131
|
1174 |
msgid ""
|
1175 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1176 |
+
"image."
|
1177 |
+
msgstr ""
|
|
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:135
|
1180 |
msgid "Feed link image"
|
1181 |
msgstr "Afbeelding feed link"
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:136
|
1184 |
msgid "Show rss image in feed link"
|
1185 |
msgstr "Toon RSS afbeelding in feed link"
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:137
|
1188 |
msgid ""
|
1189 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1190 |
+
" front of the text."
|
1191 |
+
msgstr ""
|
1192 |
|
1193 |
+
#: includes/options.php:43
|
1194 |
msgid "Show details"
|
1195 |
msgstr "Toon details"
|
1196 |
|
1197 |
+
#: includes/options.php:44
|
1198 |
msgid "Hide details"
|
1199 |
msgstr "Verberg details"
|
1200 |
|
1201 |
+
#: includes/sc_event-list_helptexts.php:7
|
1202 |
+
msgid "event-id"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: includes/sc_event-list_helptexts.php:8
|
1206 |
+
#, php-format
|
1207 |
msgid ""
|
1208 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1209 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1210 |
+
"this event is shown."
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: includes/sc_event-list_helptexts.php:10
|
1214 |
+
#: includes/sc_event-list_helptexts.php:22
|
1215 |
+
msgid "year"
|
1216 |
+
msgstr ""
|
1217 |
|
1218 |
+
#: includes/sc_event-list_helptexts.php:11
|
1219 |
+
msgid ""
|
1220 |
+
"This attribute defines which events are initially shown. The default is to "
|
1221 |
+
"show the upcoming events only."
|
1222 |
+
msgstr ""
|
1223 |
+
|
1224 |
+
#: includes/sc_event-list_helptexts.php:12
|
1225 |
+
#, php-format
|
1226 |
msgid ""
|
1227 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1228 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: includes/sc_event-list_helptexts.php:14
|
1232 |
+
msgid "category slug"
|
1233 |
+
msgstr ""
|
1234 |
|
1235 |
+
#: includes/sc_event-list_helptexts.php:15
|
1236 |
msgid ""
|
1237 |
+
"This attribute defines the category of which events are initially shown. The"
|
1238 |
+
" default is to show events of all categories."
|
1239 |
+
msgstr ""
|
1240 |
|
1241 |
+
#: includes/sc_event-list_helptexts.php:16
|
1242 |
msgid ""
|
1243 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1244 |
+
"change the displayed categories via the filterbar or url parameters."
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: includes/sc_event-list_helptexts.php:19
|
1248 |
+
msgid "This attribute defines the initial order of the events."
|
1249 |
+
msgstr ""
|
1250 |
|
1251 |
+
#: includes/sc_event-list_helptexts.php:20
|
1252 |
msgid ""
|
1253 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1254 |
+
"in the opposite direction (from new to old)."
|
1255 |
+
msgstr ""
|
|
|
|
|
1256 |
|
1257 |
+
#: includes/sc_event-list_helptexts.php:23
|
1258 |
+
#, php-format
|
1259 |
msgid ""
|
1260 |
+
"This attribute defines the dates and date ranges of which events are "
|
1261 |
+
"displayed. The default is %1$s to show all events."
|
1262 |
+
msgstr ""
|
|
|
1263 |
|
1264 |
+
#: includes/sc_event-list_helptexts.php:24
|
1265 |
+
#, php-format
|
1266 |
msgid ""
|
1267 |
+
"Filtered events according to %1$s value are not available in the event list."
|
1268 |
+
msgstr ""
|
|
|
|
|
1269 |
|
1270 |
+
#: includes/sc_event-list_helptexts.php:25
|
1271 |
+
#, php-format
|
1272 |
msgid ""
|
1273 |
+
"You can find all available values with a description and examples in the "
|
1274 |
+
"sections %1$s and %2$s below."
|
1275 |
+
msgstr ""
|
|
|
1276 |
|
1277 |
+
#: includes/sc_event-list_helptexts.php:26
|
1278 |
+
#, php-format
|
1279 |
+
msgid "See %1$s description if you want to define complex filters."
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: includes/sc_event-list_helptexts.php:28
|
1283 |
+
msgid "category slugs"
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: includes/sc_event-list_helptexts.php:29
|
1287 |
+
msgid ""
|
1288 |
+
"This attribute defines the category filter which filters the events to show."
|
1289 |
+
" The default is $1$s or an empty string to show all events."
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: includes/sc_event-list_helptexts.php:30
|
1293 |
+
#, php-format
|
1294 |
+
msgid ""
|
1295 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1296 |
+
"list. They are also not available if a manual url parameter is added."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: includes/sc_event-list_helptexts.php:31
|
1300 |
+
#, php-format
|
1301 |
+
msgid ""
|
1302 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1303 |
+
"if you want to define complex filters."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/sc_event-list_helptexts.php:33
|
1307 |
+
#: includes/sc_event-list_helptexts.php:76
|
1308 |
+
#: includes/sc_event-list_helptexts.php:91
|
1309 |
+
#: includes/sc_event-list_helptexts.php:106
|
1310 |
msgid "number"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/sc_event-list_helptexts.php:34
|
1314 |
+
#, php-format
|
1315 |
+
msgid ""
|
1316 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1317 |
+
"events is selected. With the default value %1$s all events will be "
|
1318 |
+
"displayed."
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: includes/sc_event-list_helptexts.php:35
|
1322 |
+
msgid ""
|
1323 |
+
"Please not that in the actual version there is no pagination of the events "
|
1324 |
+
"available, so the event list can be very long."
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/sc_event-list_helptexts.php:38
|
1328 |
+
msgid ""
|
1329 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1330 |
+
"allows the users to specify filters for the listed events."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/sc_event-list_helptexts.php:39
|
1334 |
+
#, php-format
|
1335 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/sc_event-list_helptexts.php:40
|
1339 |
+
#, php-format
|
1340 |
+
msgid ""
|
1341 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1342 |
+
" in the single event view."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: includes/sc_event-list_helptexts.php:77
|
1346 |
+
#: includes/sc_event-list_helptexts.php:92
|
1347 |
msgid ""
|
1348 |
"This attribute specifies if the title should be truncated to the given "
|
1349 |
"number of characters in the event list."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: includes/sc_event-list_helptexts.php:78
|
1353 |
+
#: includes/sc_event-list_helptexts.php:93
|
1354 |
#, php-format
|
1355 |
msgid ""
|
1356 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1357 |
"is automatically truncated via css."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/sc_event-list_helptexts.php:79
|
1361 |
+
#: includes/sc_event-list_helptexts.php:94
|
1362 |
+
#: includes/sc_event-list_helptexts.php:109
|
1363 |
msgid "This attribute has no influence if only a single event is shown."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/sc_event-list_helptexts.php:82
|
1367 |
msgid ""
|
1368 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1369 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1370 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1371 |
msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1372 |
|
1373 |
+
#: includes/sc_event-list_helptexts.php:87
|
1374 |
msgid ""
|
1375 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1376 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1377 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1378 |
msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1379 |
|
1380 |
+
#: includes/sc_event-list_helptexts.php:97
|
1381 |
msgid ""
|
1382 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1383 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1384 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1385 |
msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1386 |
|
1387 |
+
#: includes/sc_event-list_helptexts.php:102
|
1388 |
msgid ""
|
1389 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1390 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1391 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1392 |
msgstr "Dit attribuut bepaalt of de details worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de details.<br />\n\t Met 'event_list_only' zijn de details alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1393 |
|
1394 |
+
#: includes/sc_event-list_helptexts.php:107
|
1395 |
msgid ""
|
1396 |
"This attribute specifies if the details should be truncate to the given "
|
1397 |
"number of characters in the event list."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/sc_event-list_helptexts.php:108
|
1401 |
#, php-format
|
1402 |
msgid "With the standard value %1$s the full text is displayed."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: includes/sc_event-list_helptexts.php:112
|
1406 |
msgid ""
|
1407 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1408 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1410 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1411 |
msgstr "Dit attribuut bepaalt of de details in eerste instantie ingeklapt moeten zijn.<br />\n\t In dat geval wordt er een link getoond in plaats van de details. Door op deze link te klikken worden de details zichtbaar.<br />\n\t Gebruik 'false' om uitklappen van details uit te schakelen en 'true' om het in te schakelen.<br />\n\t Met 'event_list_only' zijn de details alleen ingeklapt in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1412 |
|
1413 |
+
#: includes/sc_event-list_helptexts.php:118
|
1414 |
msgid ""
|
1415 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1416 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1418 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1419 |
msgstr "Dit attribuut bepaalt of een link naar een los evenement moet worden toegevoegd aan de evenementnaam in de evenementenlijst.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen.<br />\n\t Met 'events_with_details_only' wordt de link alleen toegevoegd in de evenementenlijst als er bij een evenement details beschikbaar zijn."
|
1420 |
|
1421 |
+
#: includes/sc_event-list_helptexts.php:124
|
1422 |
msgid ""
|
1423 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1424 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1427 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1428 |
msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1429 |
|
1430 |
+
#: includes/sc_event-list_helptexts.php:130
|
1431 |
msgid ""
|
1432 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1433 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1434 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1435 |
msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
|
1436 |
|
1437 |
+
#: includes/sc_event-list_helptexts.php:137
|
1438 |
msgid ""
|
1439 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1440 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: includes/sc_event-list.php:138
|
1444 |
msgid "Event Information:"
|
1445 |
msgstr "Evenement details:"
|
1446 |
|
1447 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1448 |
msgid "This option defines the displayed title for the widget."
|
1449 |
msgstr "Deze optie bepaalt de getoonde titel voor de widget."
|
1450 |
|
1451 |
+
#: includes/widget_helptexts.php:15
|
1452 |
msgid "Category Filter"
|
1453 |
msgstr "Categoriefilter"
|
1454 |
|
1455 |
+
#: includes/widget_helptexts.php:17
|
1456 |
msgid ""
|
1457 |
"This option defines the categories of which events are shown. The standard "
|
1458 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1461 |
"all possibilities."
|
1462 |
msgstr "Deze optie bepaalt welke categorieën evenementen worden getoond. Standaard is 'all' of geen waarde om alle evenementen te tonen. Gebruikt een categorie-slug of een lijst van slugs om alleen evenementen uit bepaalde categorieën te tonen. Zie de beschrijving van het shortcode-attribuut 'cat_filter' voor meer informatie over de opties."
|
1463 |
|
1464 |
+
#: includes/widget_helptexts.php:22
|
1465 |
msgid "Number of listed events"
|
1466 |
msgstr "Aantal getoonde events"
|
1467 |
|
1468 |
+
#: includes/widget_helptexts.php:24
|
1469 |
msgid "The number of upcoming events to display"
|
1470 |
msgstr "Het aantal komende evenementen om te tonen"
|
1471 |
|
1472 |
+
#: includes/widget_helptexts.php:29
|
1473 |
msgid "Truncate event title to"
|
1474 |
msgstr "Kort evenementtitel in tot"
|
1475 |
|
1476 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1477 |
+
#: includes/widget_helptexts.php:67
|
|
|
1478 |
msgid "characters"
|
1479 |
msgstr "tekens"
|
1480 |
|
1481 |
+
#: includes/widget_helptexts.php:31
|
1482 |
msgid ""
|
1483 |
"This option defines the number of displayed characters for the event title."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1487 |
#, php-format
|
1488 |
msgid ""
|
1489 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1490 |
"automatically truncate the text via css."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: includes/widget_helptexts.php:37
|
1494 |
msgid "Show event starttime"
|
1495 |
msgstr "Toon starttijd evenement"
|
1496 |
|
1497 |
+
#: includes/widget_helptexts.php:39
|
1498 |
msgid "This option defines if the event start time will be displayed."
|
1499 |
msgstr "Deze optie bepaalt of de starttijd van het evenement wordt getoond"
|
1500 |
|
1501 |
+
#: includes/widget_helptexts.php:44
|
1502 |
msgid "Show event location"
|
1503 |
msgstr "Toon evenementlocatie"
|
1504 |
|
1505 |
+
#: includes/widget_helptexts.php:46
|
1506 |
msgid "This option defines if the event location will be displayed."
|
1507 |
msgstr "Deze optie bepaalt of de evenementlocatie wordt getoond."
|
1508 |
|
1509 |
+
#: includes/widget_helptexts.php:51
|
1510 |
msgid "Truncate location to"
|
1511 |
msgstr "Kort de locatie in tot"
|
1512 |
|
1513 |
+
#: includes/widget_helptexts.php:53
|
1514 |
msgid ""
|
1515 |
"If the event location is diplayed this option defines the number of "
|
1516 |
"displayed characters."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: includes/widget_helptexts.php:59
|
1520 |
msgid "Show event details"
|
1521 |
msgstr "Toon evenementdetails"
|
1522 |
|
1523 |
+
#: includes/widget_helptexts.php:61
|
1524 |
msgid "This option defines if the event details will be displayed."
|
1525 |
msgstr "Deze optie bepaalt of de details van een evenement worden getoond."
|
1526 |
|
1527 |
+
#: includes/widget_helptexts.php:66
|
1528 |
msgid "Truncate details to"
|
1529 |
msgstr "Kort de details in tot"
|
1530 |
|
1531 |
+
#: includes/widget_helptexts.php:68
|
1532 |
msgid ""
|
1533 |
"If the event details are diplayed this option defines the number of diplayed"
|
1534 |
" characters."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: includes/widget_helptexts.php:69
|
1538 |
#, php-format
|
1539 |
msgid "Set this value to %1$s to view the full text."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: includes/widget_helptexts.php:74
|
1543 |
msgid "URL to the linked Event List page"
|
1544 |
msgstr "URL naar de gelinkte evenementenlijst-pagina"
|
1545 |
|
1546 |
+
#: includes/widget_helptexts.php:76
|
1547 |
msgid ""
|
1548 |
"This option defines the url to the linked Event List page. This option is "
|
1549 |
"required if you want to use one of the options below."
|
1550 |
msgstr "Deze optie bepaalt de URL van de gelinkte evenementenlijst-pagina."
|
1551 |
|
1552 |
+
#: includes/widget_helptexts.php:81
|
1553 |
msgid "Shortcode ID on linked page"
|
1554 |
msgstr "Shortcode ID op de gelinkte pagina"
|
1555 |
|
1556 |
+
#: includes/widget_helptexts.php:83
|
1557 |
msgid ""
|
1558 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1559 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1560 |
"use multiple event-list shortcodes on the linked page."
|
1561 |
msgstr "Deze optie bepaalt de shortcode ID voor de evenementenlijst op de gelinkte pagina. Normaal gesproken is de standaardwaarde 1 correct. Dit hoeft alleen aangepast te worden bij gebruik van meerdere evenementenlijsten op de gelinkte pagina."
|
1562 |
|
1563 |
+
#: includes/widget_helptexts.php:90
|
1564 |
msgid ""
|
1565 |
"With this option you can add a link to the single event page for every "
|
1566 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1567 |
"id option if you want to use it."
|
1568 |
msgstr "Met deze optie kan je een link naar de pagina van de individuele evenementen toevoegen voor elk getoonde evenement. Je dient een URL te specificeren naar de pagina en de shortcode ID als je dit wil gebruiken."
|
1569 |
|
1570 |
+
#: includes/widget_helptexts.php:97
|
1571 |
msgid ""
|
1572 |
"With this option you can add a link to the event-list page below the "
|
1573 |
"diplayed events. You have to specify the url to page option if you want to "
|
1574 |
"use it."
|
1575 |
msgstr "Met deze optie kan je een link naar de evenementenlijst-pagina toevoegen onder de getoonde evenementen. Je dient een URL naar de pagina te specificeren als je dit wil gebruiken."
|
1576 |
|
1577 |
+
#: includes/widget_helptexts.php:102
|
1578 |
msgid "Caption for the link"
|
1579 |
msgstr "Bijschrift bij de link"
|
1580 |
|
1581 |
+
#: includes/widget_helptexts.php:104
|
1582 |
msgid ""
|
1583 |
"This option defines the text for the link to the Event List page if the "
|
1584 |
"approriate option is selected."
|
1585 |
msgstr "Deze optie bepaalt de tekst voor de link naar de evenementenlijst-pagina, als de bijbehorende optie is geselecteerd."
|
1586 |
|
1587 |
+
#: includes/widget.php:20
|
1588 |
msgid "With this widget a list of upcoming events can be displayed."
|
1589 |
msgstr "Met dit widget kan een lijst van komende evenementen worden getoond."
|
1590 |
|
1591 |
+
#: includes/widget.php:25
|
1592 |
msgid "Upcoming events"
|
1593 |
msgstr "Komende evenementen"
|
1594 |
|
1595 |
+
#: includes/widget.php:38
|
1596 |
msgid "show events page"
|
1597 |
msgstr "toon evenementenpagina"
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Fagner C. Andrade <fagner88@gmail.com>, 2015
|
@@ -8,9 +8,9 @@
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
-
"Report-Msgid-Bugs-To:
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -19,1215 +19,1389 @@ msgstr ""
|
|
19 |
"Language: pt_BR\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
|
22 |
-
#:
|
23 |
msgid "Event List"
|
24 |
msgstr "Lista de Eventos"
|
25 |
|
26 |
-
#: /
|
27 |
-
#: /
|
28 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
29 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
30 |
msgid "Events"
|
31 |
msgstr "Eventos"
|
32 |
|
33 |
-
#:
|
34 |
msgid "All Events"
|
35 |
msgstr "Todos os Eventos"
|
36 |
|
37 |
-
#: /
|
38 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
39 |
msgid "Add New Event"
|
40 |
msgstr "Adicionar Novo Evento"
|
41 |
|
42 |
-
#: /
|
43 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
44 |
msgid "Add New"
|
45 |
msgstr "Adicionar Novo"
|
46 |
|
47 |
-
#: /
|
48 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
49 |
msgid "Event List Categories"
|
50 |
msgstr "Categorias da Lista de Eventos"
|
51 |
|
52 |
-
#: /
|
53 |
-
#:
|
54 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
55 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
56 |
msgid "Categories"
|
57 |
msgstr "Categorias"
|
58 |
|
59 |
-
#: /
|
60 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
61 |
msgid "Event List Settings"
|
62 |
msgstr "Configurações da Lista de Eventos"
|
63 |
|
64 |
-
#:
|
65 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
66 |
msgid "Settings"
|
67 |
msgstr "Configurações"
|
68 |
|
69 |
-
#: /
|
70 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
71 |
msgid "About Event List"
|
72 |
msgstr "Sobre o Lista de Eventos"
|
73 |
|
74 |
-
#:
|
75 |
msgid "About"
|
76 |
msgstr "Sobre"
|
77 |
|
78 |
-
#: /
|
79 |
-
|
80 |
-
|
81 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:74
|
82 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:38
|
83 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:31
|
84 |
-
msgid "You do not have sufficient permissions to access this page."
|
85 |
-
msgstr "Você não tem permissões suficientes para acessar esta página"
|
86 |
|
87 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
88 |
msgid "Help and Instructions"
|
89 |
msgstr "Ajuda e Instruções"
|
90 |
|
91 |
-
#:
|
92 |
#, php-format
|
93 |
-
msgid "You can manage
|
94 |
-
msgstr "
|
95 |
|
96 |
-
#:
|
97 |
msgid "To show the events on your site you have 2 possibilities"
|
98 |
msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site"
|
99 |
|
100 |
-
#:
|
101 |
#, php-format
|
102 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
103 |
msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post"
|
104 |
|
105 |
-
#:
|
106 |
#, php-format
|
107 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
108 |
msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars"
|
109 |
|
110 |
-
#:
|
111 |
msgid ""
|
112 |
"The displayed events and their style can be modified with the available "
|
113 |
"widget settings and the available attributes for the shortcode."
|
114 |
msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configurações disponíveis do widget e os atributos disponíveis para o shortcode."
|
115 |
|
116 |
-
#:
|
|
|
117 |
msgid ""
|
118 |
-
"A list of all available shortcode attributes with their
|
119 |
-
"available
|
120 |
-
msgstr "
|
121 |
|
122 |
-
#:
|
123 |
msgid "The available widget options are described in their tooltip text."
|
124 |
msgstr "As opções de widgets disponíveis são descritas em suas dicas."
|
125 |
|
126 |
-
#:
|
127 |
#, php-format
|
128 |
msgid ""
|
129 |
-
"
|
130 |
-
"
|
131 |
-
msgstr "
|
132 |
|
133 |
-
#:
|
134 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
135 |
msgid "Add links to the single events"
|
136 |
msgstr "Adicionar links para os eventos individuais"
|
137 |
|
138 |
-
#:
|
139 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
140 |
msgid "Add a link to the Event List page"
|
141 |
msgstr "Adicionar um link para a Página de Lista de Eventos"
|
142 |
|
143 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
#, php-format
|
145 |
msgid ""
|
146 |
-
"
|
147 |
-
"
|
148 |
-
"
|
149 |
-
msgstr "
|
150 |
|
151 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
152 |
#, php-format
|
153 |
msgid ""
|
154 |
-
"Be sure to also check the %1$
|
155 |
-
"
|
156 |
-
msgstr "
|
157 |
|
158 |
-
#:
|
159 |
-
msgid "
|
|
|
|
|
|
|
|
|
160 |
msgstr ""
|
161 |
|
162 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
msgid ""
|
164 |
"You have the possibility to modify the output if you add some of the "
|
165 |
"following attributes to the shortcode."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#:
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
172 |
"including the attributes %1$s and %2$s would looks like this:"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
msgid ""
|
177 |
"Below you can find a list of all supported attributes with their "
|
178 |
"descriptions and available options:"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
182 |
msgid "Attribute name"
|
183 |
msgstr "Nome do atributo"
|
184 |
|
185 |
-
#:
|
186 |
msgid "Value options"
|
187 |
msgstr "Opções de valor"
|
188 |
|
189 |
-
#:
|
190 |
msgid "Default value"
|
191 |
msgstr "Valor padrão"
|
192 |
|
193 |
-
#: /
|
194 |
-
#:
|
195 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
196 |
msgid "Description"
|
197 |
msgstr "Descrição"
|
198 |
|
199 |
-
#:
|
|
|
200 |
msgid "Filter Syntax"
|
201 |
msgstr "Sintaxe do Filtro"
|
202 |
|
203 |
-
#:
|
204 |
msgid ""
|
205 |
"For date and cat filters you can specify complex filters with the following "
|
206 |
"syntax:"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#:
|
210 |
#, php-format
|
211 |
msgid ""
|
212 |
"You can use %1$s and %2$s connections to define complex filters. "
|
213 |
"Additionally you can set brackets %3$s for nested queries."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
msgid "AND"
|
218 |
msgstr "E"
|
219 |
|
220 |
-
#:
|
221 |
msgid "OR"
|
222 |
msgstr "OU"
|
223 |
|
224 |
-
#:
|
225 |
msgid "or"
|
226 |
msgstr "ou"
|
227 |
|
228 |
-
#:
|
229 |
msgid "and"
|
230 |
msgstr "e"
|
231 |
|
232 |
-
#:
|
233 |
msgid "Examples for cat filters:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#:
|
237 |
#, php-format
|
238 |
msgid "Show all events with category %1$s."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
#, php-format
|
243 |
msgid "Show all events with category %1$s or %2$s."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#:
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"Show all events with category %1$s and all events where category %2$s as "
|
250 |
"well as %3$s is selected."
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
254 |
msgid "Available Date Formats"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
msgid "For date filters you can use the following date formats:"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
msgid "Available Date Range Formats"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
msgid "For date filters you can use the following daterange formats:"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
270 |
msgid "Value"
|
271 |
msgstr "Valor"
|
272 |
|
273 |
-
#:
|
274 |
msgid "Example"
|
275 |
msgstr "Exemplo"
|
276 |
|
277 |
-
#:
|
278 |
msgid "Edit Category"
|
279 |
msgstr "Editar Categoria"
|
280 |
|
281 |
-
#:
|
282 |
msgid "Update Category"
|
283 |
msgstr "Atualizar Categoria"
|
284 |
|
285 |
-
#:
|
286 |
msgid "Add New Category"
|
287 |
msgstr "Adicionar Nova Categoria"
|
288 |
|
289 |
-
#:
|
290 |
#, php-format
|
291 |
msgid "Category \"%s\" deleted."
|
292 |
msgstr "Categoria \"%s\" removida."
|
293 |
|
294 |
-
#:
|
295 |
#, php-format
|
296 |
msgid "This Category was also removed from %d events."
|
297 |
msgstr "Esta Categoria também foi removida de %d eventos."
|
298 |
|
299 |
-
#:
|
300 |
#, php-format
|
301 |
msgid "Error while deleting category \"%s\""
|
302 |
msgstr "Erro ao remover categoria \"%s\""
|
303 |
|
304 |
-
#:
|
305 |
msgid "Sync with post categories enabled."
|
306 |
msgstr "Sincronizar com categorias de post habilitado."
|
307 |
|
308 |
-
#:
|
309 |
msgid "Sync with post categories disabled."
|
310 |
msgstr "Sincronizar com categorias de post desabilitado"
|
311 |
|
312 |
-
#:
|
313 |
msgid "Manual sync with post categories sucessfully finished."
|
314 |
msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
|
315 |
|
316 |
-
#:
|
317 |
#, php-format
|
318 |
msgid "New Category \"%s\" was added"
|
319 |
msgstr "Nova Categoria \"%s\" foi adicionada"
|
320 |
|
321 |
-
#:
|
322 |
#, php-format
|
323 |
msgid "Error: New Category \"%s\" could not be added"
|
324 |
msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
|
325 |
|
326 |
-
#:
|
327 |
#, php-format
|
328 |
msgid "Category \"%s\" was modified"
|
329 |
msgstr "Categoria \"%s\" foi modificada"
|
330 |
|
331 |
-
#:
|
332 |
#, php-format
|
333 |
msgid "Error: Category \"%s\" could not be modified"
|
334 |
msgstr "Erro: Categoria \"%s\" não pode ser modificada"
|
335 |
|
336 |
-
#:
|
|
|
|
|
|
|
|
|
337 |
msgid ""
|
338 |
-
"
|
339 |
-
"
|
340 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#:
|
344 |
-
|
345 |
-
|
346 |
-
msgstr "
|
347 |
|
348 |
-
#:
|
349 |
msgid "The name is how it appears on your site."
|
350 |
msgstr "O nome é como é exibido em seu site."
|
351 |
|
352 |
-
#:
|
353 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:109
|
354 |
-
msgid "Slug"
|
355 |
-
msgstr "Slug"
|
356 |
-
|
357 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:172
|
358 |
msgid ""
|
359 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
360 |
"lowercase and contains only letters, numbers, and hyphens."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#:
|
364 |
-
msgid "Parent"
|
365 |
-
msgstr "Pai"
|
366 |
-
|
367 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
368 |
-
msgid "None"
|
369 |
-
msgstr "Nenhum"
|
370 |
-
|
371 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
372 |
msgid ""
|
373 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
374 |
"that have children categories for Bebop and Big Band. Totally optional."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#:
|
378 |
msgid "Apply"
|
379 |
msgstr "Aplicar"
|
380 |
|
381 |
-
#:
|
382 |
msgid "Do a manual sync with post categories"
|
383 |
msgstr "Fazer sincronia manual com categorias de post"
|
384 |
|
385 |
-
#:
|
386 |
msgid "Import Events"
|
387 |
msgstr "Importar Eventos"
|
388 |
|
389 |
-
#: /
|
390 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
391 |
msgid "Step"
|
392 |
msgstr "Passo"
|
393 |
|
394 |
-
#:
|
395 |
msgid "Set import file and options"
|
396 |
msgstr "Informar arquivo de importação e opções"
|
397 |
|
398 |
-
#:
|
399 |
-
|
400 |
-
|
|
|
401 |
|
402 |
-
#:
|
403 |
msgid "Example file"
|
404 |
msgstr "Arquivo de exemplo"
|
405 |
|
406 |
-
#:
|
407 |
#, php-format
|
408 |
msgid ""
|
409 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#:
|
413 |
msgid "Note"
|
414 |
msgstr "Nota"
|
415 |
|
416 |
-
#:
|
417 |
msgid ""
|
418 |
"Do not change the column header and separator line (first two lines), "
|
419 |
"otherwise the import will fail!"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: /
|
423 |
-
#:
|
424 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
425 |
msgid "Sorry, there has been an error."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#:
|
429 |
msgid "The file does not exist, please try again."
|
430 |
msgstr ""
|
431 |
|
432 |
-
#:
|
433 |
msgid "The file is not a CSV file."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#:
|
437 |
-
msgid "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#:
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
msgid "Import with errors!"
|
448 |
msgstr "Importar com erros!"
|
449 |
|
450 |
-
#:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"An error occurred during import! Please send your import file to %1$sthe "
|
454 |
"administrator%2$s for analysis."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#:
|
458 |
msgid "Import successful!"
|
459 |
msgstr "Importado com sucesso!"
|
460 |
|
461 |
-
#:
|
462 |
msgid "Go back to All Events"
|
463 |
msgstr "Voltar para Todos os Eventos"
|
464 |
|
465 |
-
#: /
|
466 |
-
#:
|
467 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
468 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
469 |
msgid "Title"
|
470 |
msgstr "Título"
|
471 |
|
472 |
-
#:
|
473 |
msgid "Start Date"
|
474 |
msgstr "Início"
|
475 |
|
476 |
-
#:
|
477 |
msgid "End Date"
|
478 |
msgstr "Término"
|
479 |
|
480 |
-
#: /
|
481 |
-
#: /
|
482 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
483 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
484 |
msgid "Time"
|
485 |
msgstr "Hora"
|
486 |
|
487 |
-
#: /
|
488 |
-
#:
|
489 |
-
#:
|
490 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
491 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
492 |
msgid "Location"
|
493 |
msgstr "Localização"
|
494 |
|
495 |
-
#: /
|
496 |
-
#:
|
497 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
498 |
msgid "Details"
|
499 |
msgstr "Detalhes"
|
500 |
|
501 |
-
#:
|
502 |
-
msgid "
|
503 |
-
msgstr "
|
504 |
|
505 |
-
#:
|
506 |
-
|
507 |
-
msgid "
|
508 |
-
|
|
|
|
|
509 |
|
510 |
-
#: /
|
511 |
-
|
512 |
-
|
513 |
-
msgstr "Nenhuma categoria disponível."
|
514 |
|
515 |
-
#:
|
516 |
msgid "Edit Event"
|
517 |
msgstr "Editar Evento"
|
518 |
|
519 |
-
#:
|
520 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
521 |
msgid "Duplicate"
|
522 |
msgstr "Duplicar"
|
523 |
|
524 |
-
#:
|
525 |
#, php-format
|
526 |
msgid "Duplicate of event id:%d"
|
527 |
msgstr "Duplicar evento id:%d"
|
528 |
|
529 |
-
#: /
|
530 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
531 |
msgid "required"
|
532 |
msgstr "obrigatório"
|
533 |
|
534 |
-
#:
|
535 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
536 |
msgid "Date"
|
537 |
msgstr "Data"
|
538 |
|
539 |
-
#:
|
540 |
msgid "Multi-Day Event"
|
541 |
msgstr "Evento de vários dias"
|
542 |
|
543 |
-
#: /
|
544 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
545 |
msgid "Publish"
|
546 |
msgstr "Publicar"
|
547 |
|
548 |
-
#:
|
549 |
msgid "Update"
|
550 |
msgstr "Atualizar"
|
551 |
|
552 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Goto Category Settings"
|
554 |
msgstr "Ir para Configurações de Categoria"
|
555 |
|
556 |
-
#:
|
557 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:273
|
558 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
559 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
560 |
-
msgid "Y/m/d"
|
561 |
-
msgstr "d/m/Y"
|
562 |
-
|
563 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:41
|
564 |
msgid "Settings saved."
|
565 |
msgstr "Configurações salvas."
|
566 |
|
567 |
-
#:
|
568 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
569 |
-
msgid "General"
|
570 |
-
msgstr "Geral"
|
571 |
-
|
572 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:69
|
573 |
msgid "Frontend Settings"
|
574 |
msgstr "Configurações de Frontend"
|
575 |
|
576 |
-
#:
|
577 |
msgid "Admin Page Settings"
|
578 |
msgstr "Configurações do Administrador"
|
579 |
|
580 |
-
#:
|
581 |
msgid "Feed Settings"
|
582 |
msgstr "Configurações de Feed"
|
583 |
|
584 |
-
#: /
|
585 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
586 |
msgid "event"
|
587 |
msgstr "evento"
|
588 |
|
589 |
-
#: /
|
590 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
591 |
msgid "events"
|
592 |
msgstr "eventos"
|
593 |
|
594 |
-
#: /
|
595 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
596 |
msgid "Edit"
|
597 |
msgstr "Editar"
|
598 |
|
599 |
-
#: /
|
600 |
-
#: /
|
601 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
602 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
603 |
msgid "Delete"
|
604 |
msgstr "Remover"
|
605 |
|
606 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Author"
|
608 |
msgstr "Autor"
|
609 |
|
610 |
-
#:
|
611 |
msgid "Published"
|
612 |
msgstr "Publicado"
|
613 |
|
614 |
-
#:
|
615 |
msgid "Filter"
|
616 |
msgstr "Filtro"
|
617 |
|
618 |
-
#:
|
619 |
#, php-format
|
620 |
msgid "%s ago"
|
621 |
msgstr "%s atrás"
|
622 |
|
623 |
-
#:
|
624 |
-
msgid "Y/m/d g:i:s A"
|
625 |
-
msgstr "d/m/Y g:i:s A"
|
626 |
-
|
627 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
628 |
msgid "Year"
|
629 |
msgstr "Ano"
|
630 |
|
631 |
-
#:
|
632 |
msgid "A year can be specified in 4 digit format."
|
633 |
msgstr "Um ano pode ser especificado em formato de 4 dígitos."
|
634 |
|
635 |
-
#: /
|
636 |
-
#:
|
637 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
638 |
#, php-format
|
639 |
msgid ""
|
640 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
641 |
"last day."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#:
|
645 |
msgid "the resulting year"
|
646 |
msgstr "o ano resultado"
|
647 |
|
648 |
-
#:
|
649 |
msgid "Month"
|
650 |
msgstr "Mês"
|
651 |
|
652 |
-
#:
|
653 |
msgid ""
|
654 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
655 |
"month, seperated by a hyphen (-)."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#:
|
659 |
msgid "the resulting month"
|
660 |
msgstr "o mês resultado"
|
661 |
|
662 |
-
#:
|
663 |
msgid "Day"
|
664 |
msgstr "Dia"
|
665 |
|
666 |
-
#:
|
667 |
msgid ""
|
668 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
669 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#:
|
673 |
msgid "Relative Year"
|
674 |
msgstr "Ano Relativo"
|
675 |
|
676 |
-
#: /
|
677 |
-
#: /
|
678 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
679 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
680 |
#, php-format
|
681 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#:
|
685 |
msgid "A relative year"
|
686 |
msgstr "Um ano relativo"
|
687 |
|
688 |
-
#: /
|
689 |
-
#: /
|
690 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
691 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
695 |
"%3$s or %4$s attached (see also the example below)."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#:
|
699 |
msgid "number of years"
|
700 |
msgstr "número de anos"
|
701 |
|
702 |
-
#: /
|
703 |
-
#: /
|
704 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
705 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
706 |
#, php-format
|
707 |
msgid "Additionally the following values are available: %1$s"
|
708 |
msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s"
|
709 |
|
710 |
-
#:
|
711 |
msgid "Relative Month"
|
712 |
msgstr "Mês Relativo"
|
713 |
|
714 |
-
#:
|
715 |
msgid "A relative month"
|
716 |
msgstr "Um mês relativo"
|
717 |
|
718 |
-
#:
|
719 |
msgid "number of months"
|
720 |
msgstr "número de meses"
|
721 |
|
722 |
-
#:
|
723 |
msgid "Relative Week"
|
724 |
msgstr "Semana Relativa"
|
725 |
|
726 |
-
#:
|
727 |
msgid "A relative week"
|
728 |
msgstr "Uma semana relativa"
|
729 |
|
730 |
-
#:
|
731 |
msgid "number of weeks"
|
732 |
msgstr "número de semanas"
|
733 |
|
734 |
-
#:
|
735 |
msgid "the resulting week"
|
736 |
msgstr "a semana resultante"
|
737 |
|
738 |
-
#:
|
739 |
#, php-format
|
740 |
msgid ""
|
741 |
"The first day of the week is depending on the option %1$s which can be found"
|
742 |
" and changed in %2$s."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#:
|
746 |
-
msgid "Week Starts On"
|
747 |
-
msgstr "Semana Inicia Em"
|
748 |
-
|
749 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
750 |
msgid "Relative Day"
|
751 |
msgstr "Dia Relativo"
|
752 |
|
753 |
-
#:
|
754 |
msgid "A relative day"
|
755 |
msgstr "Um dia relativo"
|
756 |
|
757 |
-
#:
|
758 |
msgid "number of days"
|
759 |
msgstr "número de dias"
|
760 |
|
761 |
-
#:
|
762 |
msgid "Date range"
|
763 |
msgstr "Intervalo de data"
|
764 |
|
765 |
-
#:
|
766 |
msgid ""
|
767 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
768 |
"\t For the start and end date any available date format can be used."
|
769 |
msgstr ""
|
770 |
|
771 |
-
#:
|
772 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
773 |
-
msgid "All"
|
774 |
-
msgstr "Tudo"
|
775 |
-
|
776 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
777 |
msgid "This value defines a range without any limits."
|
778 |
msgstr "Este valor defina um intervalo sem qualquer limite."
|
779 |
|
780 |
-
#: /
|
781 |
-
#:
|
782 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
783 |
#, php-format
|
784 |
msgid "The corresponding date_range format is: %1$s"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#:
|
788 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
789 |
msgid "Upcoming"
|
790 |
msgstr "Próximos"
|
791 |
|
792 |
-
#:
|
793 |
msgid "This value defines a range from the actual day to the future."
|
794 |
msgstr ""
|
795 |
|
796 |
-
#:
|
797 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
798 |
msgid "Past"
|
799 |
msgstr "Passado"
|
800 |
|
801 |
-
#:
|
802 |
msgid "This value defines a range from the past to the previous day."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#:
|
|
|
|
|
|
|
|
|
806 |
msgid "Show all dates"
|
807 |
msgstr "Exibir todas as datas"
|
808 |
|
809 |
-
#:
|
810 |
msgid "Show all categories"
|
811 |
msgstr "Exibir todas as categorias"
|
812 |
|
813 |
-
#:
|
814 |
-
msgid "Event Categories"
|
815 |
-
msgstr "Categorias de Evento"
|
816 |
-
|
817 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:11
|
818 |
-
msgid "This option specifies all event category data."
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:14
|
822 |
msgid "Sync Categories"
|
823 |
msgstr "Sincronizar Categorias"
|
824 |
|
825 |
-
#:
|
826 |
msgid "Keep event categories in sync with post categories automatically"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#:
|
830 |
msgid "Attention"
|
831 |
msgstr "Atenção"
|
832 |
|
833 |
-
#:
|
834 |
msgid ""
|
835 |
"Please note that this option will delete all categories which are not "
|
836 |
"available in the post categories! Existing Categories with the same slug "
|
837 |
"will be updated."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#:
|
841 |
msgid "CSV File to import"
|
842 |
msgstr "Arquivo CSV a importar"
|
843 |
|
844 |
-
#:
|
845 |
msgid "Please select the file which contains the event data in CSV format."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#:
|
849 |
msgid "Used date format"
|
850 |
msgstr "Formato de data usado"
|
851 |
|
852 |
-
#:
|
853 |
msgid ""
|
854 |
"With this option the used date format for event start and end date given in "
|
855 |
"the CSV file can be specified."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#:
|
859 |
msgid "Text for no events"
|
860 |
msgstr "Texto para \"nenhum evento\""
|
861 |
|
862 |
-
#:
|
863 |
msgid ""
|
864 |
"This option defines the displayed text when no events are available for the "
|
865 |
"selected view."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#:
|
869 |
msgid "Multiday filter range"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#:
|
873 |
msgid "Use the complete event range in the date filter"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#:
|
877 |
msgid ""
|
878 |
"This option defines if the complete range of a multiday event shall be "
|
879 |
"considered in the date filter."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#:
|
883 |
msgid ""
|
884 |
"If disabled, only the start day of an event is considered in the filter."
|
885 |
msgstr ""
|
886 |
|
887 |
-
#:
|
888 |
msgid ""
|
889 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
890 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
891 |
"but it is hidden when the option is disabled."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#:
|
895 |
msgid "Date display"
|
896 |
msgstr "Exibição de data"
|
897 |
|
898 |
-
#:
|
899 |
msgid "Show the date only once per day"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#:
|
903 |
msgid ""
|
904 |
"With this option enabled the date is only displayed once per day if more "
|
905 |
"than one event is available on the same day."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#:
|
909 |
msgid ""
|
910 |
"If enabled, the events are ordered in a different way (end date before start"
|
911 |
" time) to allow using the same date for as much events as possible."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#:
|
915 |
msgid "HTML tags"
|
916 |
msgstr "Tags HTML"
|
917 |
|
918 |
-
#: /
|
919 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
920 |
#, php-format
|
921 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: /
|
925 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
926 |
#, php-format
|
927 |
msgid ""
|
928 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
929 |
msgstr ""
|
930 |
|
931 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
msgid "Text for \"Show details\""
|
933 |
msgstr ""
|
934 |
|
935 |
-
#:
|
936 |
msgid ""
|
937 |
"With this option the displayed text for the link to show the event details "
|
938 |
"can be changed, when collapsing is enabled."
|
939 |
msgstr ""
|
940 |
|
941 |
-
#:
|
942 |
msgid "Text for \"Hide details\""
|
943 |
msgstr ""
|
944 |
|
945 |
-
#:
|
946 |
msgid ""
|
947 |
"With this option the displayed text for the link to hide the event details "
|
948 |
"can be changed, when collapsing is enabled."
|
949 |
msgstr ""
|
950 |
|
951 |
-
#:
|
952 |
msgid "Disable CSS file"
|
953 |
msgstr "Desativar arquivo CSS"
|
954 |
|
955 |
-
#:
|
956 |
#, php-format
|
957 |
msgid "Disable the %1$s file."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#:
|
961 |
#, php-format
|
962 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#:
|
966 |
msgid ""
|
967 |
"This normally only make sense if you have css conflicts with your theme and "
|
968 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#:
|
972 |
msgid "Date format in edit form"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#:
|
976 |
msgid ""
|
977 |
"This option sets the displayed date format for the event date fields in the "
|
978 |
"event new / edit form."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
-
msgid "The
|
983 |
msgstr ""
|
984 |
|
985 |
-
#:
|
986 |
#, php-format
|
987 |
msgid ""
|
988 |
"All available options to specify the date format can be found %1$shere%2$s."
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: /
|
992 |
msgid "Enable RSS feed"
|
993 |
msgstr "Habilitar Feed RSS"
|
994 |
|
995 |
-
#:
|
996 |
msgid "Enable support for an event RSS feed"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#:
|
|
|
|
|
|
|
|
|
1000 |
msgid ""
|
1001 |
-
"
|
1002 |
-
"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
msgid "Feed name"
|
1007 |
msgstr "Nome do feed"
|
1008 |
|
1009 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgid ""
|
1011 |
-
"This
|
1012 |
-
"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#:
|
1016 |
msgid "Feed Description"
|
1017 |
msgstr "Descrição do feed"
|
1018 |
|
1019 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1020 |
msgid ""
|
1021 |
-
"This
|
1022 |
-
"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
msgid "Listed events"
|
1027 |
msgstr "Eventos listados"
|
1028 |
|
1029 |
-
#:
|
1030 |
msgid "Only show upcoming events in feed"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#:
|
1034 |
msgid ""
|
1035 |
-
"If this option is enabled only the upcoming events are listed in the feed
|
1036 |
-
|
|
|
|
|
|
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#:
|
1040 |
msgid "Add RSS feed link in head"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#:
|
1044 |
msgid "Add RSS feed link in the html head"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
msgid ""
|
1049 |
-
"
|
1050 |
-
"
|
1051 |
-
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
1052 |
-
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
1053 |
-
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1057 |
msgid "Position of the RSS feed link"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
msgid ""
|
1062 |
-
"This option specifies the position of the RSS feed link in the event list
|
1063 |
-
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1064 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: /
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1068 |
msgid "Align of the RSS feed link"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1072 |
msgid ""
|
1073 |
-
"This option specifies the align of the RSS feed link in the event list
|
1074 |
-
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1075 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#:
|
1079 |
msgid "Feed link text"
|
1080 |
msgstr "Texto do link do Feed"
|
1081 |
|
1082 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1083 |
msgid ""
|
1084 |
-
"
|
1085 |
-
"
|
1086 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#:
|
1090 |
msgid "Feed link image"
|
1091 |
msgstr "Imagem do link do Feed"
|
1092 |
|
1093 |
-
#:
|
1094 |
msgid "Show rss image in feed link"
|
1095 |
msgstr "Exibir imagem rss no link do feed"
|
1096 |
|
1097 |
-
#:
|
1098 |
msgid ""
|
1099 |
-
"This option specifies if the an image should be dispayed in the feed link in
|
1100 |
-
"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#:
|
1104 |
msgid "Show details"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#:
|
1108 |
msgid "Hide details"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
1112 |
msgid ""
|
1113 |
-
"
|
1114 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
msgid ""
|
1119 |
-
"This attribute
|
1120 |
-
"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#:
|
|
|
1124 |
msgid ""
|
1125 |
-
"
|
1126 |
-
"
|
|
|
|
|
|
|
|
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#:
|
1130 |
msgid ""
|
1131 |
-
"This attribute
|
1132 |
-
"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#:
|
1136 |
msgid ""
|
1137 |
-
"
|
1138 |
-
"
|
1139 |
-
|
1140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#:
|
1144 |
msgid ""
|
1145 |
-
"This attribute
|
1146 |
-
"
|
1147 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#:
|
|
|
1151 |
msgid ""
|
1152 |
-
"
|
1153 |
-
"
|
1154 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#:
|
|
|
1158 |
msgid ""
|
1159 |
-
"
|
1160 |
-
"
|
1161 |
-
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#:
|
1165 |
-
#:
|
1166 |
-
#:
|
|
|
1167 |
msgid "number"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#:
|
1171 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
msgid ""
|
1173 |
"This attribute specifies if the title should be truncated to the given "
|
1174 |
"number of characters in the event list."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#:
|
1178 |
-
#:
|
1179 |
#, php-format
|
1180 |
msgid ""
|
1181 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1182 |
"is automatically truncated via css."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#:
|
1186 |
-
#:
|
1187 |
-
#:
|
1188 |
msgid "This attribute has no influence if only a single event is shown."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#:
|
1192 |
msgid ""
|
1193 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1194 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1195 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#:
|
1199 |
msgid ""
|
1200 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1201 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1202 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#:
|
1206 |
msgid ""
|
1207 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1208 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1209 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#:
|
1213 |
msgid ""
|
1214 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1215 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1216 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#:
|
1220 |
msgid ""
|
1221 |
"This attribute specifies if the details should be truncate to the given "
|
1222 |
"number of characters in the event list."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#:
|
1226 |
#, php-format
|
1227 |
msgid "With the standard value %1$s the full text is displayed."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#:
|
1231 |
msgid ""
|
1232 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1233 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1235,7 +1409,7 @@ msgid ""
|
|
1235 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#:
|
1239 |
msgid ""
|
1240 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1241 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1243,7 +1417,7 @@ msgid ""
|
|
1243 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#:
|
1247 |
msgid ""
|
1248 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1249 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1252,36 +1426,32 @@ msgid ""
|
|
1252 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#:
|
1256 |
msgid ""
|
1257 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1258 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1259 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#:
|
1263 |
msgid ""
|
1264 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1265 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#:
|
1269 |
msgid "Event Information:"
|
1270 |
msgstr "Informação do Evento:"
|
1271 |
|
1272 |
-
#:
|
1273 |
-
msgid "(more…)"
|
1274 |
-
msgstr ""
|
1275 |
-
|
1276 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1277 |
msgid "This option defines the displayed title for the widget."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#:
|
1281 |
msgid "Category Filter"
|
1282 |
msgstr "Filtro de Categoria"
|
1283 |
|
1284 |
-
#:
|
1285 |
msgid ""
|
1286 |
"This option defines the categories of which events are shown. The standard "
|
1287 |
"is all or an empty string to show all events. Specify a category slug or a "
|
@@ -1290,139 +1460,137 @@ msgid ""
|
|
1290 |
"all possibilities."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "Number of listed events"
|
1295 |
msgstr "Número de eventos listados"
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "The number of upcoming events to display"
|
1299 |
msgstr "Número de próximos eventos a exibir"
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "Truncate event title to"
|
1303 |
msgstr "Truncar título do evento em"
|
1304 |
|
1305 |
-
#: /
|
1306 |
-
#:
|
1307 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1308 |
msgid "characters"
|
1309 |
msgstr "caracteres"
|
1310 |
|
1311 |
-
#:
|
1312 |
msgid ""
|
1313 |
"This option defines the number of displayed characters for the event title."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: /
|
1317 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1321 |
"automatically truncate the text via css."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#:
|
1325 |
msgid "Show event starttime"
|
1326 |
msgstr "Exibir data de início do evento"
|
1327 |
|
1328 |
-
#:
|
1329 |
msgid "This option defines if the event start time will be displayed."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#:
|
1333 |
msgid "Show event location"
|
1334 |
msgstr "Exibir localização do evento"
|
1335 |
|
1336 |
-
#:
|
1337 |
msgid "This option defines if the event location will be displayed."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#:
|
1341 |
msgid "Truncate location to"
|
1342 |
msgstr "Truncar localização em"
|
1343 |
|
1344 |
-
#:
|
1345 |
msgid ""
|
1346 |
"If the event location is diplayed this option defines the number of "
|
1347 |
"displayed characters."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#:
|
1351 |
msgid "Show event details"
|
1352 |
msgstr "Exibir detalhes do evento"
|
1353 |
|
1354 |
-
#:
|
1355 |
msgid "This option defines if the event details will be displayed."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#:
|
1359 |
msgid "Truncate details to"
|
1360 |
msgstr "Truncar detalhes em"
|
1361 |
|
1362 |
-
#:
|
1363 |
msgid ""
|
1364 |
"If the event details are diplayed this option defines the number of diplayed"
|
1365 |
" characters."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#:
|
1369 |
#, php-format
|
1370 |
msgid "Set this value to %1$s to view the full text."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#:
|
1374 |
msgid "URL to the linked Event List page"
|
1375 |
msgstr "URL para página associada ao Event List"
|
1376 |
|
1377 |
-
#:
|
1378 |
msgid ""
|
1379 |
"This option defines the url to the linked Event List page. This option is "
|
1380 |
"required if you want to use one of the options below."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#:
|
1384 |
msgid "Shortcode ID on linked page"
|
1385 |
msgstr "ID do Shortcode na página associada"
|
1386 |
|
1387 |
-
#:
|
1388 |
msgid ""
|
1389 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1390 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1391 |
"use multiple event-list shortcodes on the linked page."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#:
|
1395 |
msgid ""
|
1396 |
"With this option you can add a link to the single event page for every "
|
1397 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1398 |
"id option if you want to use it."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#:
|
1402 |
msgid ""
|
1403 |
"With this option you can add a link to the event-list page below the "
|
1404 |
"diplayed events. You have to specify the url to page option if you want to "
|
1405 |
"use it."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#:
|
1409 |
msgid "Caption for the link"
|
1410 |
msgstr "Legenda para o link"
|
1411 |
|
1412 |
-
#:
|
1413 |
msgid ""
|
1414 |
"This option defines the text for the link to the Event List page if the "
|
1415 |
"approriate option is selected."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#:
|
1419 |
msgid "With this widget a list of upcoming events can be displayed."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid "Upcoming events"
|
1424 |
msgstr "Próximos eventos"
|
1425 |
|
1426 |
-
#:
|
1427 |
msgid "show events page"
|
1428 |
msgstr "exibir página de eventos"
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
# Fagner C. Andrade <fagner88@gmail.com>, 2015
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
13 |
+
"PO-Revision-Date: 2017-03-17 16:25+0000\n"
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
19 |
"Language: pt_BR\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
|
22 |
+
#: admin/admin.php:45
|
23 |
msgid "Event List"
|
24 |
msgstr "Lista de Eventos"
|
25 |
|
26 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
27 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
28 |
msgid "Events"
|
29 |
msgstr "Eventos"
|
30 |
|
31 |
+
#: admin/admin.php:48
|
32 |
msgid "All Events"
|
33 |
msgstr "Todos os Eventos"
|
34 |
|
35 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
36 |
msgid "Add New Event"
|
37 |
msgstr "Adicionar Novo Evento"
|
38 |
|
39 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
40 |
msgid "Add New"
|
41 |
msgstr "Adicionar Novo"
|
42 |
|
43 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
44 |
msgid "Event List Categories"
|
45 |
msgstr "Categorias da Lista de Eventos"
|
46 |
|
47 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
48 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
49 |
msgid "Categories"
|
50 |
msgstr "Categorias"
|
51 |
|
52 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
53 |
msgid "Event List Settings"
|
54 |
msgstr "Configurações da Lista de Eventos"
|
55 |
|
56 |
+
#: admin/admin.php:60
|
|
|
57 |
msgid "Settings"
|
58 |
msgstr "Configurações"
|
59 |
|
60 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
61 |
msgid "About Event List"
|
62 |
msgstr "Sobre o Lista de Eventos"
|
63 |
|
64 |
+
#: admin/admin.php:64
|
65 |
msgid "About"
|
66 |
msgstr "Sobre"
|
67 |
|
68 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
69 |
+
msgid "General"
|
70 |
+
msgstr "Geral"
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
73 |
+
#: admin/includes/admin-about.php:103
|
74 |
+
msgid "Shortcode Attributes"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: admin/includes/admin-about.php:71
|
78 |
msgid "Help and Instructions"
|
79 |
msgstr "Ajuda e Instruções"
|
80 |
|
81 |
+
#: admin/includes/admin-about.php:72
|
82 |
#, php-format
|
83 |
+
msgid "You can manage the events %1$shere%2$s"
|
84 |
+
msgstr ""
|
85 |
|
86 |
+
#: admin/includes/admin-about.php:73
|
87 |
msgid "To show the events on your site you have 2 possibilities"
|
88 |
msgstr "Existem 2 possibilidades para mostrar seus eventos em seu site"
|
89 |
|
90 |
+
#: admin/includes/admin-about.php:74
|
91 |
#, php-format
|
92 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
93 |
msgstr "você pode colocar o <strong>shortcode</strong> %1$s em qualquer página ou post"
|
94 |
|
95 |
+
#: admin/includes/admin-about.php:75
|
96 |
#, php-format
|
97 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
98 |
msgstr "você pode adicionar o <strong>widget</strong> %1$s em suas sidebars"
|
99 |
|
100 |
+
#: admin/includes/admin-about.php:76
|
101 |
msgid ""
|
102 |
"The displayed events and their style can be modified with the available "
|
103 |
"widget settings and the available attributes for the shortcode."
|
104 |
msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configurações disponíveis do widget e os atributos disponíveis para o shortcode."
|
105 |
|
106 |
+
#: admin/includes/admin-about.php:77
|
107 |
+
#, php-format
|
108 |
msgid ""
|
109 |
+
"A list of all available shortcode attributes with their descriptions is "
|
110 |
+
"available in the %1$s tab."
|
111 |
+
msgstr ""
|
112 |
|
113 |
+
#: admin/includes/admin-about.php:78
|
114 |
msgid "The available widget options are described in their tooltip text."
|
115 |
msgstr "As opções de widgets disponíveis são descritas em suas dicas."
|
116 |
|
117 |
+
#: admin/includes/admin-about.php:79
|
118 |
#, php-format
|
119 |
msgid ""
|
120 |
+
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
121 |
+
" to insert an URL to the linked event-list page."
|
122 |
+
msgstr ""
|
123 |
|
124 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
125 |
msgid "Add links to the single events"
|
126 |
msgstr "Adicionar links para os eventos individuais"
|
127 |
|
128 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
129 |
msgid "Add a link to the Event List page"
|
130 |
msgstr "Adicionar um link para a Página de Lista de Eventos"
|
131 |
|
132 |
+
#: admin/includes/admin-about.php:80
|
133 |
+
msgid ""
|
134 |
+
"This is required because the widget does not know in which page or post the "
|
135 |
+
"shortcode was included."
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: admin/includes/admin-about.php:81
|
139 |
+
msgid ""
|
140 |
+
"Additionally you have to insert the correct Shortcode id on the linked page."
|
141 |
+
" This id describes which shortcode should be used on the given page or post "
|
142 |
+
"if you have more than one."
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: admin/includes/admin-about.php:82
|
146 |
#, php-format
|
147 |
msgid ""
|
148 |
+
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
149 |
+
"but if required you can check the id by looking into the URL of an event "
|
150 |
+
"link on your linked page or post."
|
151 |
+
msgstr ""
|
152 |
|
153 |
+
#: admin/includes/admin-about.php:83
|
154 |
+
#, php-format
|
155 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: admin/includes/admin-about.php:85
|
159 |
#, php-format
|
160 |
msgid ""
|
161 |
+
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
162 |
+
"want."
|
163 |
+
msgstr ""
|
164 |
|
165 |
+
#: admin/includes/admin-about.php:85
|
166 |
+
msgid "Settings page"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: admin/includes/admin-about.php:91
|
170 |
+
msgid "About the plugin author"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: admin/includes/admin-about.php:93
|
174 |
+
#, php-format
|
175 |
+
msgid ""
|
176 |
+
"This plugin is developed by %1$s, you can find more information about the "
|
177 |
+
"plugin on the %2$s."
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: admin/includes/admin-about.php:93
|
181 |
+
msgid "wordpress plugin site"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: admin/includes/admin-about.php:94
|
185 |
+
#, php-format
|
186 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: admin/includes/admin-about.php:94
|
190 |
+
msgid "wordpress plugin review site"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: admin/includes/admin-about.php:95
|
194 |
+
msgid ""
|
195 |
+
"If you want to support the plugin I would be happy to get a small donation"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: admin/includes/admin-about.php:105
|
199 |
msgid ""
|
200 |
"You have the possibility to modify the output if you add some of the "
|
201 |
"following attributes to the shortcode."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin/includes/admin-about.php:106
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
208 |
"including the attributes %1$s and %2$s would looks like this:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/includes/admin-about.php:108
|
212 |
msgid ""
|
213 |
"Below you can find a list of all supported attributes with their "
|
214 |
"descriptions and available options:"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: admin/includes/admin-about.php:122
|
218 |
msgid "Attribute name"
|
219 |
msgstr "Nome do atributo"
|
220 |
|
221 |
+
#: admin/includes/admin-about.php:123
|
222 |
msgid "Value options"
|
223 |
msgstr "Opções de valor"
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:124
|
226 |
msgid "Default value"
|
227 |
msgstr "Valor padrão"
|
228 |
|
229 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
230 |
+
#: admin/includes/category_table.php:108
|
|
|
231 |
msgid "Description"
|
232 |
msgstr "Descrição"
|
233 |
|
234 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
235 |
+
#: includes/sc_event-list_helptexts.php:31
|
236 |
msgid "Filter Syntax"
|
237 |
msgstr "Sintaxe do Filtro"
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:144
|
240 |
msgid ""
|
241 |
"For date and cat filters you can specify complex filters with the following "
|
242 |
"syntax:"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin/includes/admin-about.php:145
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"You can use %1$s and %2$s connections to define complex filters. "
|
249 |
"Additionally you can set brackets %3$s for nested queries."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin/includes/admin-about.php:145
|
253 |
msgid "AND"
|
254 |
msgstr "E"
|
255 |
|
256 |
+
#: admin/includes/admin-about.php:145
|
257 |
msgid "OR"
|
258 |
msgstr "OU"
|
259 |
|
260 |
+
#: admin/includes/admin-about.php:145
|
261 |
msgid "or"
|
262 |
msgstr "ou"
|
263 |
|
264 |
+
#: admin/includes/admin-about.php:145
|
265 |
msgid "and"
|
266 |
msgstr "e"
|
267 |
|
268 |
+
#: admin/includes/admin-about.php:146
|
269 |
msgid "Examples for cat filters:"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin/includes/admin-about.php:147
|
273 |
#, php-format
|
274 |
msgid "Show all events with category %1$s."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/includes/admin-about.php:148
|
278 |
#, php-format
|
279 |
msgid "Show all events with category %1$s or %2$s."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:149
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Show all events with category %1$s and all events where category %2$s as "
|
286 |
"well as %3$s is selected."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
290 |
msgid "Available Date Formats"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin/includes/admin-about.php:155
|
294 |
msgid "For date filters you can use the following date formats:"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
298 |
msgid "Available Date Range Formats"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin/includes/admin-about.php:164
|
302 |
msgid "For date filters you can use the following daterange formats:"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin/includes/admin-about.php:176
|
306 |
msgid "Value"
|
307 |
msgstr "Valor"
|
308 |
|
309 |
+
#: admin/includes/admin-about.php:180
|
310 |
msgid "Example"
|
311 |
msgstr "Exemplo"
|
312 |
|
313 |
+
#: admin/includes/admin-categories.php:53
|
314 |
msgid "Edit Category"
|
315 |
msgstr "Editar Categoria"
|
316 |
|
317 |
+
#: admin/includes/admin-categories.php:53
|
318 |
msgid "Update Category"
|
319 |
msgstr "Atualizar Categoria"
|
320 |
|
321 |
+
#: admin/includes/admin-categories.php:59
|
322 |
msgid "Add New Category"
|
323 |
msgstr "Adicionar Nova Categoria"
|
324 |
|
325 |
+
#: admin/includes/admin-categories.php:84
|
326 |
#, php-format
|
327 |
msgid "Category \"%s\" deleted."
|
328 |
msgstr "Categoria \"%s\" removida."
|
329 |
|
330 |
+
#: admin/includes/admin-categories.php:86
|
331 |
#, php-format
|
332 |
msgid "This Category was also removed from %d events."
|
333 |
msgstr "Esta Categoria também foi removida de %d eventos."
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:92
|
336 |
#, php-format
|
337 |
msgid "Error while deleting category \"%s\""
|
338 |
msgstr "Erro ao remover categoria \"%s\""
|
339 |
|
340 |
+
#: admin/includes/admin-categories.php:102
|
341 |
msgid "Sync with post categories enabled."
|
342 |
msgstr "Sincronizar com categorias de post habilitado."
|
343 |
|
344 |
+
#: admin/includes/admin-categories.php:105
|
345 |
msgid "Sync with post categories disabled."
|
346 |
msgstr "Sincronizar com categorias de post desabilitado"
|
347 |
|
348 |
+
#: admin/includes/admin-categories.php:111
|
349 |
msgid "Manual sync with post categories sucessfully finished."
|
350 |
msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
|
351 |
|
352 |
+
#: admin/includes/admin-categories.php:119
|
353 |
#, php-format
|
354 |
msgid "New Category \"%s\" was added"
|
355 |
msgstr "Nova Categoria \"%s\" foi adicionada"
|
356 |
|
357 |
+
#: admin/includes/admin-categories.php:122
|
358 |
#, php-format
|
359 |
msgid "Error: New Category \"%s\" could not be added"
|
360 |
msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:128
|
363 |
#, php-format
|
364 |
msgid "Category \"%s\" was modified"
|
365 |
msgstr "Categoria \"%s\" foi modificada"
|
366 |
|
367 |
+
#: admin/includes/admin-categories.php:131
|
368 |
#, php-format
|
369 |
msgid "Error: Category \"%s\" could not be modified"
|
370 |
msgstr "Erro: Categoria \"%s\" não pode ser modificada"
|
371 |
|
372 |
+
#: admin/includes/admin-categories.php:138
|
373 |
+
msgid "Categories are automatically synced with the post categories."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: admin/includes/admin-categories.php:139
|
377 |
msgid ""
|
378 |
+
"Because of this all options to add new categories or editing existing "
|
379 |
+
"categories are disabled."
|
|
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: admin/includes/admin-categories.php:140
|
383 |
+
msgid ""
|
384 |
+
"If you want to manually edit the categories you have to disable this option."
|
385 |
+
msgstr ""
|
386 |
|
387 |
+
#: admin/includes/admin-categories.php:167
|
388 |
msgid "The name is how it appears on your site."
|
389 |
msgstr "O nome é como é exibido em seu site."
|
390 |
|
391 |
+
#: admin/includes/admin-categories.php:172
|
|
|
|
|
|
|
|
|
|
|
392 |
msgid ""
|
393 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
394 |
"lowercase and contains only letters, numbers, and hyphens."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgid ""
|
399 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
400 |
"that have children categories for Bebop and Big Band. Totally optional."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/includes/admin-categories.php:232
|
404 |
msgid "Apply"
|
405 |
msgstr "Aplicar"
|
406 |
|
407 |
+
#: admin/includes/admin-categories.php:242
|
408 |
msgid "Do a manual sync with post categories"
|
409 |
msgstr "Fazer sincronia manual com categorias de post"
|
410 |
|
411 |
+
#: admin/includes/admin-import.php:45
|
412 |
msgid "Import Events"
|
413 |
msgstr "Importar Eventos"
|
414 |
|
415 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
416 |
msgid "Step"
|
417 |
msgstr "Passo"
|
418 |
|
419 |
+
#: admin/includes/admin-import.php:65
|
420 |
msgid "Set import file and options"
|
421 |
msgstr "Informar arquivo de importação e opções"
|
422 |
|
423 |
+
#: admin/includes/admin-import.php:68
|
424 |
+
#, php-format
|
425 |
+
msgid "Proceed with Step %1$s"
|
426 |
+
msgstr ""
|
427 |
|
428 |
+
#: admin/includes/admin-import.php:71
|
429 |
msgid "Example file"
|
430 |
msgstr "Arquivo de exemplo"
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:72
|
433 |
#, php-format
|
434 |
msgid ""
|
435 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:73
|
439 |
msgid "Note"
|
440 |
msgstr "Nota"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:73
|
443 |
msgid ""
|
444 |
"Do not change the column header and separator line (first two lines), "
|
445 |
"otherwise the import will fail!"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
449 |
+
#: admin/includes/admin-import.php:101
|
|
|
450 |
msgid "Sorry, there has been an error."
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:81
|
454 |
msgid "The file does not exist, please try again."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:89
|
458 |
msgid "The file is not a CSV file."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:120
|
462 |
+
msgid "Events review and additonal category selection"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin/includes/admin-import.php:123
|
466 |
+
msgid ""
|
467 |
+
"Warning: The following category slugs are not available and will be removed "
|
468 |
+
"from the imported events:"
|
469 |
+
msgstr ""
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:129
|
472 |
+
msgid ""
|
473 |
+
"If you want to keep these categories, please create these Categories first "
|
474 |
+
"and do the import afterwards."
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: admin/includes/admin-import.php:147
|
478 |
+
msgid "Add additional categories"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: admin/includes/admin-import.php:148
|
482 |
+
msgid "Import events"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: admin/includes/admin-import.php:162
|
486 |
msgid "Import with errors!"
|
487 |
msgstr "Importar com erros!"
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:163
|
490 |
#, php-format
|
491 |
msgid ""
|
492 |
"An error occurred during import! Please send your import file to %1$sthe "
|
493 |
"administrator%2$s for analysis."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/includes/admin-import.php:167
|
497 |
msgid "Import successful!"
|
498 |
msgstr "Importado com sucesso!"
|
499 |
|
500 |
+
#: admin/includes/admin-import.php:168
|
501 |
msgid "Go back to All Events"
|
502 |
msgstr "Voltar para Todos os Eventos"
|
503 |
|
504 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
505 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
506 |
msgid "Title"
|
507 |
msgstr "Título"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:176
|
510 |
msgid "Start Date"
|
511 |
msgstr "Início"
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:177
|
514 |
msgid "End Date"
|
515 |
msgstr "Término"
|
516 |
|
517 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
518 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
519 |
msgid "Time"
|
520 |
msgstr "Hora"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
523 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
524 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
525 |
msgid "Location"
|
526 |
msgstr "Localização"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
529 |
+
#: admin/includes/event_table.php:110
|
|
|
530 |
msgid "Details"
|
531 |
msgstr "Detalhes"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:181
|
534 |
+
msgid "Category slugs"
|
535 |
+
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:220
|
538 |
+
#, php-format
|
539 |
+
msgid ""
|
540 |
+
"There was an error at line %1$s when reading this CSV file: Header line is "
|
541 |
+
"missing or not correct!"
|
542 |
+
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
545 |
+
msgid "Import"
|
546 |
+
msgstr "Importar"
|
|
|
547 |
|
548 |
+
#: admin/includes/admin-main.php:114
|
549 |
msgid "Edit Event"
|
550 |
msgstr "Editar Evento"
|
551 |
|
552 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
553 |
msgid "Duplicate"
|
554 |
msgstr "Duplicar"
|
555 |
|
556 |
+
#: admin/includes/admin-new.php:43
|
557 |
#, php-format
|
558 |
msgid "Duplicate of event id:%d"
|
559 |
msgstr "Duplicar evento id:%d"
|
560 |
|
561 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
562 |
msgid "required"
|
563 |
msgstr "obrigatório"
|
564 |
|
565 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
566 |
msgid "Date"
|
567 |
msgstr "Data"
|
568 |
|
569 |
+
#: admin/includes/admin-new.php:113
|
570 |
msgid "Multi-Day Event"
|
571 |
msgstr "Evento de vários dias"
|
572 |
|
573 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
574 |
msgid "Publish"
|
575 |
msgstr "Publicar"
|
576 |
|
577 |
+
#: admin/includes/admin-new.php:160
|
578 |
msgid "Update"
|
579 |
msgstr "Atualizar"
|
580 |
|
581 |
+
#: admin/includes/admin-new.php:162
|
582 |
+
msgid "Cancel"
|
583 |
+
msgstr "Cancelar"
|
584 |
+
|
585 |
+
#: admin/includes/admin-new.php:175
|
586 |
+
msgid "No categories available."
|
587 |
+
msgstr "Nenhuma categoria disponível."
|
588 |
+
|
589 |
+
#: admin/includes/admin-new.php:221
|
590 |
msgid "Goto Category Settings"
|
591 |
msgstr "Ir para Configurações de Categoria"
|
592 |
|
593 |
+
#: admin/includes/admin-settings.php:41
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
594 |
msgid "Settings saved."
|
595 |
msgstr "Configurações salvas."
|
596 |
|
597 |
+
#: admin/includes/admin-settings.php:69
|
|
|
|
|
|
|
|
|
|
|
598 |
msgid "Frontend Settings"
|
599 |
msgstr "Configurações de Frontend"
|
600 |
|
601 |
+
#: admin/includes/admin-settings.php:70
|
602 |
msgid "Admin Page Settings"
|
603 |
msgstr "Configurações do Administrador"
|
604 |
|
605 |
+
#: admin/includes/admin-settings.php:71
|
606 |
msgid "Feed Settings"
|
607 |
msgstr "Configurações de Feed"
|
608 |
|
609 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
610 |
msgid "event"
|
611 |
msgstr "evento"
|
612 |
|
613 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
614 |
msgid "events"
|
615 |
msgstr "eventos"
|
616 |
|
617 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
618 |
msgid "Edit"
|
619 |
msgstr "Editar"
|
620 |
|
621 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
622 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
623 |
msgid "Delete"
|
624 |
msgstr "Remover"
|
625 |
|
626 |
+
#: admin/includes/category_table.php:107
|
627 |
+
msgid "Name"
|
628 |
+
msgstr "Nome"
|
629 |
+
|
630 |
+
#: admin/includes/category_table.php:109
|
631 |
+
msgid "Slug"
|
632 |
+
msgstr "Slug"
|
633 |
+
|
634 |
+
#: admin/includes/event_table.php:112
|
635 |
msgid "Author"
|
636 |
msgstr "Autor"
|
637 |
|
638 |
+
#: admin/includes/event_table.php:113
|
639 |
msgid "Published"
|
640 |
msgstr "Publicado"
|
641 |
|
642 |
+
#: admin/includes/event_table.php:175
|
643 |
msgid "Filter"
|
644 |
msgstr "Filtro"
|
645 |
|
646 |
+
#: admin/includes/event_table.php:297
|
647 |
#, php-format
|
648 |
msgid "%s ago"
|
649 |
msgstr "%s atrás"
|
650 |
|
651 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
652 |
msgid "Year"
|
653 |
msgstr "Ano"
|
654 |
|
655 |
+
#: includes/daterange_helptexts.php:8
|
656 |
msgid "A year can be specified in 4 digit format."
|
657 |
msgstr "Um ano pode ser especificado em formato de 4 dígitos."
|
658 |
|
659 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
660 |
+
#: includes/daterange_helptexts.php:36
|
|
|
661 |
#, php-format
|
662 |
msgid ""
|
663 |
"For a start date filter the first day of %1$s is used, in an end date the "
|
664 |
"last day."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/daterange_helptexts.php:9
|
668 |
msgid "the resulting year"
|
669 |
msgstr "o ano resultado"
|
670 |
|
671 |
+
#: includes/daterange_helptexts.php:12
|
672 |
msgid "Month"
|
673 |
msgstr "Mês"
|
674 |
|
675 |
+
#: includes/daterange_helptexts.php:13
|
676 |
msgid ""
|
677 |
"A month can be specified with 4 digits for the year and 2 digits for the "
|
678 |
"month, seperated by a hyphen (-)."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: includes/daterange_helptexts.php:14
|
682 |
msgid "the resulting month"
|
683 |
msgstr "o mês resultado"
|
684 |
|
685 |
+
#: includes/daterange_helptexts.php:17
|
686 |
msgid "Day"
|
687 |
msgstr "Dia"
|
688 |
|
689 |
+
#: includes/daterange_helptexts.php:18
|
690 |
msgid ""
|
691 |
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
692 |
" month and 2 digets for the day, seperated by hyphens (-)."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: includes/daterange_helptexts.php:21
|
696 |
msgid "Relative Year"
|
697 |
msgstr "Ano Relativo"
|
698 |
|
699 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
700 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
701 |
#, php-format
|
702 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: includes/daterange_helptexts.php:22
|
706 |
msgid "A relative year"
|
707 |
msgstr "Um ano relativo"
|
708 |
|
709 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
710 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
711 |
#, php-format
|
712 |
msgid ""
|
713 |
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
714 |
"%3$s or %4$s attached (see also the example below)."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/daterange_helptexts.php:23
|
718 |
msgid "number of years"
|
719 |
msgstr "número de anos"
|
720 |
|
721 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
722 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
723 |
#, php-format
|
724 |
msgid "Additionally the following values are available: %1$s"
|
725 |
msgstr "Adicionalmente os seguintes valores estão disponíveis: %1$s"
|
726 |
|
727 |
+
#: includes/daterange_helptexts.php:27
|
728 |
msgid "Relative Month"
|
729 |
msgstr "Mês Relativo"
|
730 |
|
731 |
+
#: includes/daterange_helptexts.php:28
|
732 |
msgid "A relative month"
|
733 |
msgstr "Um mês relativo"
|
734 |
|
735 |
+
#: includes/daterange_helptexts.php:29
|
736 |
msgid "number of months"
|
737 |
msgstr "número de meses"
|
738 |
|
739 |
+
#: includes/daterange_helptexts.php:33
|
740 |
msgid "Relative Week"
|
741 |
msgstr "Semana Relativa"
|
742 |
|
743 |
+
#: includes/daterange_helptexts.php:34
|
744 |
msgid "A relative week"
|
745 |
msgstr "Uma semana relativa"
|
746 |
|
747 |
+
#: includes/daterange_helptexts.php:35
|
748 |
msgid "number of weeks"
|
749 |
msgstr "número de semanas"
|
750 |
|
751 |
+
#: includes/daterange_helptexts.php:36
|
752 |
msgid "the resulting week"
|
753 |
msgstr "a semana resultante"
|
754 |
|
755 |
+
#: includes/daterange_helptexts.php:37
|
756 |
#, php-format
|
757 |
msgid ""
|
758 |
"The first day of the week is depending on the option %1$s which can be found"
|
759 |
" and changed in %2$s."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
763 |
msgid "Relative Day"
|
764 |
msgstr "Dia Relativo"
|
765 |
|
766 |
+
#: includes/daterange_helptexts.php:42
|
767 |
msgid "A relative day"
|
768 |
msgstr "Um dia relativo"
|
769 |
|
770 |
+
#: includes/daterange_helptexts.php:43
|
771 |
msgid "number of days"
|
772 |
msgstr "número de dias"
|
773 |
|
774 |
+
#: includes/daterange_helptexts.php:49
|
775 |
msgid "Date range"
|
776 |
msgstr "Intervalo de data"
|
777 |
|
778 |
+
#: includes/daterange_helptexts.php:50
|
779 |
msgid ""
|
780 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
781 |
"\t For the start and end date any available date format can be used."
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
785 |
msgid "This value defines a range without any limits."
|
786 |
msgstr "Este valor defina um intervalo sem qualquer limite."
|
787 |
|
788 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
789 |
+
#: includes/daterange_helptexts.php:66
|
|
|
790 |
#, php-format
|
791 |
msgid "The corresponding date_range format is: %1$s"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
795 |
msgid "Upcoming"
|
796 |
msgstr "Próximos"
|
797 |
|
798 |
+
#: includes/daterange_helptexts.php:60
|
799 |
msgid "This value defines a range from the actual day to the future."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
803 |
msgid "Past"
|
804 |
msgstr "Passado"
|
805 |
|
806 |
+
#: includes/daterange_helptexts.php:65
|
807 |
msgid "This value defines a range from the past to the previous day."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: includes/filterbar.php:282
|
811 |
+
msgid "All"
|
812 |
+
msgstr "Tudo"
|
813 |
+
|
814 |
+
#: includes/filterbar.php:285
|
815 |
msgid "Show all dates"
|
816 |
msgstr "Exibir todas as datas"
|
817 |
|
818 |
+
#: includes/filterbar.php:285
|
819 |
msgid "Show all categories"
|
820 |
msgstr "Exibir todas as categorias"
|
821 |
|
822 |
+
#: includes/options_helptexts.php:11
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
823 |
msgid "Sync Categories"
|
824 |
msgstr "Sincronizar Categorias"
|
825 |
|
826 |
+
#: includes/options_helptexts.php:12
|
827 |
msgid "Keep event categories in sync with post categories automatically"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: includes/options_helptexts.php:13
|
831 |
msgid "Attention"
|
832 |
msgstr "Atenção"
|
833 |
|
834 |
+
#: includes/options_helptexts.php:14
|
835 |
msgid ""
|
836 |
"Please note that this option will delete all categories which are not "
|
837 |
"available in the post categories! Existing Categories with the same slug "
|
838 |
"will be updated."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/options_helptexts.php:18
|
842 |
msgid "CSV File to import"
|
843 |
msgstr "Arquivo CSV a importar"
|
844 |
|
845 |
+
#: includes/options_helptexts.php:20
|
846 |
msgid "Please select the file which contains the event data in CSV format."
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: includes/options_helptexts.php:23
|
850 |
msgid "Used date format"
|
851 |
msgstr "Formato de data usado"
|
852 |
|
853 |
+
#: includes/options_helptexts.php:25
|
854 |
msgid ""
|
855 |
"With this option the used date format for event start and end date given in "
|
856 |
"the CSV file can be specified."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/options_helptexts.php:29
|
860 |
msgid "Text for no events"
|
861 |
msgstr "Texto para \"nenhum evento\""
|
862 |
|
863 |
+
#: includes/options_helptexts.php:31
|
864 |
msgid ""
|
865 |
"This option defines the displayed text when no events are available for the "
|
866 |
"selected view."
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/options_helptexts.php:34
|
870 |
msgid "Multiday filter range"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/options_helptexts.php:35
|
874 |
msgid "Use the complete event range in the date filter"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/options_helptexts.php:36
|
878 |
msgid ""
|
879 |
"This option defines if the complete range of a multiday event shall be "
|
880 |
"considered in the date filter."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: includes/options_helptexts.php:37
|
884 |
msgid ""
|
885 |
"If disabled, only the start day of an event is considered in the filter."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: includes/options_helptexts.php:38
|
889 |
msgid ""
|
890 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
891 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
892 |
"but it is hidden when the option is disabled."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: includes/options_helptexts.php:41
|
896 |
msgid "Date display"
|
897 |
msgstr "Exibição de data"
|
898 |
|
899 |
+
#: includes/options_helptexts.php:42
|
900 |
msgid "Show the date only once per day"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/options_helptexts.php:43
|
904 |
msgid ""
|
905 |
"With this option enabled the date is only displayed once per day if more "
|
906 |
"than one event is available on the same day."
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/options_helptexts.php:44
|
910 |
msgid ""
|
911 |
"If enabled, the events are ordered in a different way (end date before start"
|
912 |
" time) to allow using the same date for as much events as possible."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/options_helptexts.php:47
|
916 |
msgid "HTML tags"
|
917 |
msgstr "Tags HTML"
|
918 |
|
919 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
920 |
#, php-format
|
921 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
925 |
#, php-format
|
926 |
msgid ""
|
927 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: includes/options_helptexts.php:57
|
931 |
+
msgid "Preferred language file"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/options_helptexts.php:58
|
935 |
+
msgid "Load translations from general language directory first"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: includes/options_helptexts.php:59
|
939 |
+
#, php-format
|
940 |
+
msgid ""
|
941 |
+
"The default is to load the %1$s translation file from the plugin language "
|
942 |
+
"directory first (%2$s)."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/options_helptexts.php:60
|
946 |
+
#, php-format
|
947 |
+
msgid ""
|
948 |
+
"If you want to load your own language file from the general language "
|
949 |
+
"directory %1$s for a language which is already included in the plugin "
|
950 |
+
"language directory, you have to enable this option."
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/options_helptexts.php:64
|
954 |
msgid "Text for \"Show details\""
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: includes/options_helptexts.php:65
|
958 |
msgid ""
|
959 |
"With this option the displayed text for the link to show the event details "
|
960 |
"can be changed, when collapsing is enabled."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: includes/options_helptexts.php:68
|
964 |
msgid "Text for \"Hide details\""
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/options_helptexts.php:69
|
968 |
msgid ""
|
969 |
"With this option the displayed text for the link to hide the event details "
|
970 |
"can be changed, when collapsing is enabled."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: includes/options_helptexts.php:72
|
974 |
msgid "Disable CSS file"
|
975 |
msgstr "Desativar arquivo CSS"
|
976 |
|
977 |
+
#: includes/options_helptexts.php:73
|
978 |
#, php-format
|
979 |
msgid "Disable the %1$s file."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/options_helptexts.php:74
|
983 |
#, php-format
|
984 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: includes/options_helptexts.php:75
|
988 |
msgid ""
|
989 |
"This normally only make sense if you have css conflicts with your theme and "
|
990 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: includes/options_helptexts.php:79
|
994 |
msgid "Date format in edit form"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: includes/options_helptexts.php:80
|
998 |
msgid ""
|
999 |
"This option sets the displayed date format for the event date fields in the "
|
1000 |
"event new / edit form."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: includes/options_helptexts.php:81
|
1004 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: includes/options_helptexts.php:82
|
1008 |
#, php-format
|
1009 |
msgid ""
|
1010 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
1014 |
msgid "Enable RSS feed"
|
1015 |
msgstr "Habilitar Feed RSS"
|
1016 |
|
1017 |
+
#: includes/options_helptexts.php:87
|
1018 |
msgid "Enable support for an event RSS feed"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/options_helptexts.php:88
|
1022 |
+
msgid "This option activates a RSS feed for the events."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/options_helptexts.php:89
|
1026 |
msgid ""
|
1027 |
+
"You have to enable this option if you want to use one of the RSS feed "
|
1028 |
+
"features."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: includes/options_helptexts.php:92
|
1032 |
msgid "Feed name"
|
1033 |
msgstr "Nome do feed"
|
1034 |
|
1035 |
+
#: includes/options_helptexts.php:93
|
1036 |
+
#, php-format
|
1037 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: includes/options_helptexts.php:94
|
1041 |
+
#, php-format
|
1042 |
msgid ""
|
1043 |
+
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1044 |
+
"enabled)."
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: includes/options_helptexts.php:97
|
1048 |
msgid "Feed Description"
|
1049 |
msgstr "Descrição do feed"
|
1050 |
|
1051 |
+
#: includes/options_helptexts.php:98
|
1052 |
+
#, php-format
|
1053 |
+
msgid "This options set the feed description. The default value is %1$s."
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: includes/options_helptexts.php:99
|
1057 |
msgid ""
|
1058 |
+
"This description will be used in the title for the feed link in the html "
|
1059 |
+
"head and for the description in the feed itself."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:102
|
1063 |
msgid "Listed events"
|
1064 |
msgstr "Eventos listados"
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:103
|
1067 |
msgid "Only show upcoming events in feed"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:104
|
1071 |
msgid ""
|
1072 |
+
"If this option is enabled only the upcoming events are listed in the feed."
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: includes/options_helptexts.php:105
|
1076 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: includes/options_helptexts.php:108
|
1080 |
msgid "Add RSS feed link in head"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: includes/options_helptexts.php:109
|
1084 |
msgid "Add RSS feed link in the html head"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:110
|
1088 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/options_helptexts.php:111
|
1092 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/options_helptexts.php:112
|
1096 |
msgid ""
|
1097 |
+
"The first way is this option to include a link in the html head. This link "
|
1098 |
+
"will be recognized by browers or feed readers."
|
|
|
|
|
|
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:113
|
1102 |
+
#, php-format
|
1103 |
+
msgid ""
|
1104 |
+
"The second way is to include a visible feed link directly in the event list."
|
1105 |
+
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: includes/options_helptexts.php:114
|
1109 |
+
#, php-format
|
1110 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: includes/options_helptexts.php:117
|
1114 |
msgid "Position of the RSS feed link"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:118
|
1118 |
+
msgid "at the top (above the navigation bar)"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: includes/options_helptexts.php:118
|
1122 |
+
msgid "between navigation bar and events"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: includes/options_helptexts.php:118
|
1126 |
+
msgid "at the bottom"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: includes/options_helptexts.php:119
|
1130 |
msgid ""
|
1131 |
+
"This option specifies the position of the RSS feed link in the event list."
|
|
|
|
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1135 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1136 |
+
#, php-format
|
1137 |
+
msgid ""
|
1138 |
+
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1139 |
+
" feed link."
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: includes/options_helptexts.php:123
|
1143 |
msgid "Align of the RSS feed link"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: includes/options_helptexts.php:124
|
1147 |
+
msgid "left"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: includes/options_helptexts.php:124
|
1151 |
+
msgid "center"
|
1152 |
+
msgstr ""
|
1153 |
+
|
1154 |
+
#: includes/options_helptexts.php:124
|
1155 |
+
msgid "right"
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/options_helptexts.php:125
|
1159 |
msgid ""
|
1160 |
+
"This option specifies the align of the RSS feed link in the event list."
|
|
|
|
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:129
|
1164 |
msgid "Feed link text"
|
1165 |
msgstr "Texto do link do Feed"
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:130
|
1168 |
+
msgid ""
|
1169 |
+
"This option specifies the caption of the RSS feed link in the event list."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: includes/options_helptexts.php:131
|
1173 |
msgid ""
|
1174 |
+
"Insert an empty text to hide any text if you only want to show the rss "
|
1175 |
+
"image."
|
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:135
|
1179 |
msgid "Feed link image"
|
1180 |
msgstr "Imagem do link do Feed"
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:136
|
1183 |
msgid "Show rss image in feed link"
|
1184 |
msgstr "Exibir imagem rss no link do feed"
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:137
|
1187 |
msgid ""
|
1188 |
+
"This option specifies if the an image should be dispayed in the feed link in"
|
1189 |
+
" front of the text."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options.php:43
|
1193 |
msgid "Show details"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options.php:44
|
1197 |
msgid "Hide details"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/sc_event-list_helptexts.php:7
|
1201 |
+
msgid "event-id"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: includes/sc_event-list_helptexts.php:8
|
1205 |
+
#, php-format
|
1206 |
msgid ""
|
1207 |
+
"By default the event-list is displayed initially. But if an event-id (e.g. "
|
1208 |
+
"%1$s) is provided for this attribute, directly the event-details view of "
|
1209 |
+
"this event is shown."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: includes/sc_event-list_helptexts.php:10
|
1213 |
+
#: includes/sc_event-list_helptexts.php:22
|
1214 |
+
msgid "year"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/sc_event-list_helptexts.php:11
|
1218 |
msgid ""
|
1219 |
+
"This attribute defines which events are initially shown. The default is to "
|
1220 |
+
"show the upcoming events only."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: includes/sc_event-list_helptexts.php:12
|
1224 |
+
#, php-format
|
1225 |
msgid ""
|
1226 |
+
"Provide a year (e.g. %1$s) to change this behavior. It is still possible to "
|
1227 |
+
"change the displayed event date range via the filterbar or url parameters."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: includes/sc_event-list_helptexts.php:14
|
1231 |
+
msgid "category slug"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: includes/sc_event-list_helptexts.php:15
|
1235 |
msgid ""
|
1236 |
+
"This attribute defines the category of which events are initially shown. The"
|
1237 |
+
" default is to show events of all categories."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/sc_event-list_helptexts.php:16
|
1241 |
msgid ""
|
1242 |
+
"Provide a category slug to change this behavior. It is still possible to "
|
1243 |
+
"change the displayed categories via the filterbar or url parameters."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/sc_event-list_helptexts.php:19
|
1247 |
+
msgid "This attribute defines the initial order of the events."
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/sc_event-list_helptexts.php:20
|
1251 |
+
msgid ""
|
1252 |
+
"With %1$S (default value) the events are sorted from old to new, with %2$s "
|
1253 |
+
"in the opposite direction (from new to old)."
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: includes/sc_event-list_helptexts.php:23
|
1257 |
+
#, php-format
|
1258 |
+
msgid ""
|
1259 |
+
"This attribute defines the dates and date ranges of which events are "
|
1260 |
+
"displayed. The default is %1$s to show all events."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/sc_event-list_helptexts.php:24
|
1264 |
+
#, php-format
|
1265 |
+
msgid ""
|
1266 |
+
"Filtered events according to %1$s value are not available in the event list."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: includes/sc_event-list_helptexts.php:25
|
1270 |
+
#, php-format
|
1271 |
+
msgid ""
|
1272 |
+
"You can find all available values with a description and examples in the "
|
1273 |
+
"sections %1$s and %2$s below."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: includes/sc_event-list_helptexts.php:26
|
1277 |
+
#, php-format
|
1278 |
+
msgid "See %1$s description if you want to define complex filters."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: includes/sc_event-list_helptexts.php:28
|
1282 |
+
msgid "category slugs"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/sc_event-list_helptexts.php:29
|
1286 |
msgid ""
|
1287 |
+
"This attribute defines the category filter which filters the events to show."
|
1288 |
+
" The default is $1$s or an empty string to show all events."
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/sc_event-list_helptexts.php:30
|
1292 |
+
#, php-format
|
1293 |
msgid ""
|
1294 |
+
"Events with categories that doesn´t match %1$s are not shown in the event "
|
1295 |
+
"list. They are also not available if a manual url parameter is added."
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/sc_event-list_helptexts.php:31
|
1299 |
+
#, php-format
|
1300 |
msgid ""
|
1301 |
+
"The filter is specified via the given category slugs. See %1$s description "
|
1302 |
+
"if you want to define complex filters."
|
|
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/sc_event-list_helptexts.php:33
|
1306 |
+
#: includes/sc_event-list_helptexts.php:76
|
1307 |
+
#: includes/sc_event-list_helptexts.php:91
|
1308 |
+
#: includes/sc_event-list_helptexts.php:106
|
1309 |
msgid "number"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: includes/sc_event-list_helptexts.php:34
|
1313 |
+
#, php-format
|
1314 |
+
msgid ""
|
1315 |
+
"This attribute defines how many events should be displayed if upcoming "
|
1316 |
+
"events is selected. With the default value %1$s all events will be "
|
1317 |
+
"displayed."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: includes/sc_event-list_helptexts.php:35
|
1321 |
+
msgid ""
|
1322 |
+
"Please not that in the actual version there is no pagination of the events "
|
1323 |
+
"available, so the event list can be very long."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: includes/sc_event-list_helptexts.php:38
|
1327 |
+
msgid ""
|
1328 |
+
"This attribute defines if the filterbar should be displayed. The filterbar "
|
1329 |
+
"allows the users to specify filters for the listed events."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: includes/sc_event-list_helptexts.php:39
|
1333 |
+
#, php-format
|
1334 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: includes/sc_event-list_helptexts.php:40
|
1338 |
+
#, php-format
|
1339 |
+
msgid ""
|
1340 |
+
"With %1$s the filterbar is only visible in the event list and with %2$s only"
|
1341 |
+
" in the single event view."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/sc_event-list_helptexts.php:77
|
1345 |
+
#: includes/sc_event-list_helptexts.php:92
|
1346 |
msgid ""
|
1347 |
"This attribute specifies if the title should be truncated to the given "
|
1348 |
"number of characters in the event list."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/sc_event-list_helptexts.php:78
|
1352 |
+
#: includes/sc_event-list_helptexts.php:93
|
1353 |
#, php-format
|
1354 |
msgid ""
|
1355 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1356 |
"is automatically truncated via css."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:79
|
1360 |
+
#: includes/sc_event-list_helptexts.php:94
|
1361 |
+
#: includes/sc_event-list_helptexts.php:109
|
1362 |
msgid "This attribute has no influence if only a single event is shown."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/sc_event-list_helptexts.php:82
|
1366 |
msgid ""
|
1367 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1368 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1369 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/sc_event-list_helptexts.php:87
|
1373 |
msgid ""
|
1374 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1375 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1376 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: includes/sc_event-list_helptexts.php:97
|
1380 |
msgid ""
|
1381 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1382 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1383 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/sc_event-list_helptexts.php:102
|
1387 |
msgid ""
|
1388 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1389 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1390 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: includes/sc_event-list_helptexts.php:107
|
1394 |
msgid ""
|
1395 |
"This attribute specifies if the details should be truncate to the given "
|
1396 |
"number of characters in the event list."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: includes/sc_event-list_helptexts.php:108
|
1400 |
#, php-format
|
1401 |
msgid "With the standard value %1$s the full text is displayed."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/sc_event-list_helptexts.php:112
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1407 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1409 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/sc_event-list_helptexts.php:118
|
1413 |
msgid ""
|
1414 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1415 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1417 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: includes/sc_event-list_helptexts.php:124
|
1421 |
msgid ""
|
1422 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1423 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1426 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: includes/sc_event-list_helptexts.php:130
|
1430 |
msgid ""
|
1431 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1432 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1433 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: includes/sc_event-list_helptexts.php:137
|
1437 |
msgid ""
|
1438 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1439 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: includes/sc_event-list.php:138
|
1443 |
msgid "Event Information:"
|
1444 |
msgstr "Informação do Evento:"
|
1445 |
|
1446 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1447 |
msgid "This option defines the displayed title for the widget."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: includes/widget_helptexts.php:15
|
1451 |
msgid "Category Filter"
|
1452 |
msgstr "Filtro de Categoria"
|
1453 |
|
1454 |
+
#: includes/widget_helptexts.php:17
|
1455 |
msgid ""
|
1456 |
"This option defines the categories of which events are shown. The standard "
|
1457 |
"is all or an empty string to show all events. Specify a category slug or a "
|
1460 |
"all possibilities."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: includes/widget_helptexts.php:22
|
1464 |
msgid "Number of listed events"
|
1465 |
msgstr "Número de eventos listados"
|
1466 |
|
1467 |
+
#: includes/widget_helptexts.php:24
|
1468 |
msgid "The number of upcoming events to display"
|
1469 |
msgstr "Número de próximos eventos a exibir"
|
1470 |
|
1471 |
+
#: includes/widget_helptexts.php:29
|
1472 |
msgid "Truncate event title to"
|
1473 |
msgstr "Truncar título do evento em"
|
1474 |
|
1475 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1476 |
+
#: includes/widget_helptexts.php:67
|
|
|
1477 |
msgid "characters"
|
1478 |
msgstr "caracteres"
|
1479 |
|
1480 |
+
#: includes/widget_helptexts.php:31
|
1481 |
msgid ""
|
1482 |
"This option defines the number of displayed characters for the event title."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1486 |
#, php-format
|
1487 |
msgid ""
|
1488 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1489 |
"automatically truncate the text via css."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: includes/widget_helptexts.php:37
|
1493 |
msgid "Show event starttime"
|
1494 |
msgstr "Exibir data de início do evento"
|
1495 |
|
1496 |
+
#: includes/widget_helptexts.php:39
|
1497 |
msgid "This option defines if the event start time will be displayed."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: includes/widget_helptexts.php:44
|
1501 |
msgid "Show event location"
|
1502 |
msgstr "Exibir localização do evento"
|
1503 |
|
1504 |
+
#: includes/widget_helptexts.php:46
|
1505 |
msgid "This option defines if the event location will be displayed."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: includes/widget_helptexts.php:51
|
1509 |
msgid "Truncate location to"
|
1510 |
msgstr "Truncar localização em"
|
1511 |
|
1512 |
+
#: includes/widget_helptexts.php:53
|
1513 |
msgid ""
|
1514 |
"If the event location is diplayed this option defines the number of "
|
1515 |
"displayed characters."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: includes/widget_helptexts.php:59
|
1519 |
msgid "Show event details"
|
1520 |
msgstr "Exibir detalhes do evento"
|
1521 |
|
1522 |
+
#: includes/widget_helptexts.php:61
|
1523 |
msgid "This option defines if the event details will be displayed."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: includes/widget_helptexts.php:66
|
1527 |
msgid "Truncate details to"
|
1528 |
msgstr "Truncar detalhes em"
|
1529 |
|
1530 |
+
#: includes/widget_helptexts.php:68
|
1531 |
msgid ""
|
1532 |
"If the event details are diplayed this option defines the number of diplayed"
|
1533 |
" characters."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: includes/widget_helptexts.php:69
|
1537 |
#, php-format
|
1538 |
msgid "Set this value to %1$s to view the full text."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: includes/widget_helptexts.php:74
|
1542 |
msgid "URL to the linked Event List page"
|
1543 |
msgstr "URL para página associada ao Event List"
|
1544 |
|
1545 |
+
#: includes/widget_helptexts.php:76
|
1546 |
msgid ""
|
1547 |
"This option defines the url to the linked Event List page. This option is "
|
1548 |
"required if you want to use one of the options below."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: includes/widget_helptexts.php:81
|
1552 |
msgid "Shortcode ID on linked page"
|
1553 |
msgstr "ID do Shortcode na página associada"
|
1554 |
|
1555 |
+
#: includes/widget_helptexts.php:83
|
1556 |
msgid ""
|
1557 |
"This option defines the shortcode-id for the Event List on the linked page. "
|
1558 |
"Normally the standard value 1 is correct, you only have to change it if you "
|
1559 |
"use multiple event-list shortcodes on the linked page."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: includes/widget_helptexts.php:90
|
1563 |
msgid ""
|
1564 |
"With this option you can add a link to the single event page for every "
|
1565 |
"displayed event. You have to specify the url to the page and the shortcode "
|
1566 |
"id option if you want to use it."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: includes/widget_helptexts.php:97
|
1570 |
msgid ""
|
1571 |
"With this option you can add a link to the event-list page below the "
|
1572 |
"diplayed events. You have to specify the url to page option if you want to "
|
1573 |
"use it."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: includes/widget_helptexts.php:102
|
1577 |
msgid "Caption for the link"
|
1578 |
msgstr "Legenda para o link"
|
1579 |
|
1580 |
+
#: includes/widget_helptexts.php:104
|
1581 |
msgid ""
|
1582 |
"This option defines the text for the link to the Event List page if the "
|
1583 |
"approriate option is selected."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: includes/widget.php:20
|
1587 |
msgid "With this widget a list of upcoming events can be displayed."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/widget.php:25
|
1591 |
msgid "Upcoming events"
|
1592 |
msgstr "Próximos eventos"
|
1593 |
|
1594 |
+
#: includes/widget.php:38
|
1595 |
msgid "show events page"
|
1596 |
msgstr "exibir página de eventos"
|
@@ -1,1161 +1,1250 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2017
|
3 |
-
# This file is distributed under the same license as the plugin.
|
4 |
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5 |
#
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
-
"Language: \n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
|
20 |
-
#:
|
21 |
msgid "Event List"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /
|
25 |
-
#: /
|
26 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:117
|
27 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:110
|
28 |
msgid "Events"
|
29 |
msgstr ""
|
30 |
|
31 |
-
#:
|
32 |
msgid "All Events"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: /
|
36 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:41
|
37 |
msgid "Add New Event"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: /
|
41 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-main.php:119
|
42 |
msgid "Add New"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: /
|
46 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:50
|
47 |
msgid "Event List Categories"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: /
|
51 |
-
#:
|
52 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:136
|
53 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:111
|
54 |
msgid "Categories"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: /
|
58 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-settings.php:53
|
59 |
msgid "Event List Settings"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#:
|
63 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:37
|
64 |
msgid "Settings"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: /
|
68 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-about.php:34
|
69 |
msgid "About Event List"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
msgid "About"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: /
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
#: /
|
81 |
-
#:
|
82 |
-
msgid "
|
83 |
msgstr ""
|
84 |
|
85 |
-
#:
|
86 |
msgid "Help and Instructions"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#:
|
90 |
#, php-format
|
91 |
-
msgid "You can manage
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
msgid "To show the events on your site you have 2 possibilities"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#:
|
99 |
#, php-format
|
100 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
#, php-format
|
105 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#:
|
109 |
msgid "The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#:
|
113 |
-
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
-
#:
|
117 |
msgid "The available widget options are described in their tooltip text."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#:
|
121 |
#, php-format
|
122 |
-
msgid ""
|
123 |
-
"For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
|
124 |
-
"\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#:
|
128 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:88
|
129 |
msgid "Add links to the single events"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#:
|
133 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:95
|
134 |
msgid "Add a link to the Event List page"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
#, php-format
|
139 |
-
msgid ""
|
140 |
-
"Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
|
141 |
-
"\t\t\t\t\tSo the standard value \"1\" is normally o.k., but if required you can check the ID by looking into the URL of an event link on your linked page or post.\n"
|
142 |
-
"\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
#, php-format
|
147 |
-
msgid "
|
148 |
msgstr ""
|
149 |
|
150 |
-
#:
|
151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#:
|
159 |
#, php-format
|
160 |
msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#:
|
164 |
msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#:
|
168 |
msgid "Attribute name"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#:
|
172 |
msgid "Value options"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
msgid "Default value"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: /
|
180 |
-
#:
|
181 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/category_table.php:108
|
182 |
msgid "Description"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#:
|
|
|
186 |
msgid "Filter Syntax"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#:
|
190 |
msgid "For date and cat filters you can specify complex filters with the following syntax:"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
#, php-format
|
195 |
msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#:
|
199 |
msgid "AND"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#:
|
203 |
msgid "OR"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#:
|
207 |
msgid "or"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#:
|
211 |
msgid "and"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#:
|
215 |
msgid "Examples for cat filters:"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#:
|
219 |
#, php-format
|
220 |
msgid "Show all events with category %1$s."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#:
|
224 |
#, php-format
|
225 |
msgid "Show all events with category %1$s or %2$s."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#:
|
229 |
#, php-format
|
230 |
msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#:
|
234 |
msgid "Available Date Formats"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#:
|
238 |
msgid "For date filters you can use the following date formats:"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
msgid "Available Date Range Formats"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
msgid "For date filters you can use the following daterange formats:"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#:
|
250 |
msgid "Value"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#:
|
254 |
msgid "Example"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#:
|
258 |
msgid "Edit Category"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#:
|
262 |
msgid "Update Category"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
msgid "Add New Category"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
270 |
#, php-format
|
271 |
msgid "Category \"%s\" deleted."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#:
|
275 |
#, php-format
|
276 |
msgid "This Category was also removed from %d events."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
#, php-format
|
281 |
msgid "Error while deleting category \"%s\""
|
282 |
msgstr ""
|
283 |
|
284 |
-
#:
|
285 |
msgid "Sync with post categories enabled."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#:
|
289 |
msgid "Sync with post categories disabled."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#:
|
293 |
msgid "Manual sync with post categories sucessfully finished."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#:
|
297 |
#, php-format
|
298 |
msgid "New Category \"%s\" was added"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
#, php-format
|
303 |
msgid "Error: New Category \"%s\" could not be added"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#:
|
307 |
#, php-format
|
308 |
msgid "Category \"%s\" was modified"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
312 |
#, php-format
|
313 |
msgid "Error: Category \"%s\" could not be modified"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#:
|
317 |
-
msgid ""
|
318 |
-
"Categories are automatically synced with the post categories.<br />\n"
|
319 |
-
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
320 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#:
|
324 |
-
|
325 |
-
msgid "Name"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#:
|
329 |
-
msgid "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#:
|
333 |
-
|
334 |
-
msgid "Slug"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#:
|
338 |
msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#:
|
342 |
-
msgid "Parent"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:177
|
346 |
-
msgid "None"
|
347 |
-
msgstr ""
|
348 |
-
|
349 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-categories.php:185
|
350 |
msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#:
|
354 |
msgid "Apply"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#:
|
358 |
msgid "Do a manual sync with post categories"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#:
|
362 |
msgid "Import Events"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: /
|
366 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:112
|
367 |
msgid "Step"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#:
|
371 |
msgid "Set import file and options"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#:
|
375 |
-
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
-
#:
|
379 |
msgid "Example file"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#:
|
383 |
#, php-format
|
384 |
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#:
|
388 |
msgid "Note"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#:
|
392 |
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: /
|
396 |
-
#:
|
397 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-import.php:101
|
398 |
msgid "Sorry, there has been an error."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#:
|
402 |
msgid "The file does not exist, please try again."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#:
|
406 |
msgid "The file is not a CSV file."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#:
|
410 |
-
msgid "
|
411 |
msgstr ""
|
412 |
|
413 |
-
#:
|
414 |
-
|
415 |
-
|
416 |
-
|
|
|
|
|
417 |
msgstr ""
|
418 |
|
419 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
msgid "Import with errors!"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
#, php-format
|
425 |
msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#:
|
429 |
msgid "Import successful!"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#:
|
433 |
msgid "Go back to All Events"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: /
|
437 |
-
#:
|
438 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:108
|
439 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:8
|
440 |
msgid "Title"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#:
|
444 |
msgid "Start Date"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#:
|
448 |
msgid "End Date"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: /
|
452 |
-
#: /
|
453 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:51
|
454 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:52
|
455 |
msgid "Time"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: /
|
459 |
-
#:
|
460 |
-
#:
|
461 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
462 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
463 |
msgid "Location"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: /
|
467 |
-
#:
|
468 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:110
|
469 |
msgid "Details"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#:
|
473 |
-
msgid "
|
474 |
msgstr ""
|
475 |
|
476 |
-
#:
|
477 |
-
|
478 |
-
msgid "
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: /
|
482 |
-
|
483 |
-
msgid "No categories available."
|
484 |
msgstr ""
|
485 |
|
486 |
-
#:
|
487 |
msgid "Edit Event"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#:
|
491 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:72
|
492 |
msgid "Duplicate"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#:
|
496 |
#, php-format
|
497 |
msgid "Duplicate of event id:%d"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: /
|
501 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:101
|
502 |
msgid "required"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#:
|
506 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:107
|
507 |
msgid "Date"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#:
|
511 |
msgid "Multi-Day Event"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: /
|
515 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/admin-new.php:151
|
516 |
msgid "Publish"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#:
|
520 |
msgid "Update"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#:
|
524 |
-
msgid "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#:
|
528 |
-
|
529 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:276
|
530 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:300
|
531 |
-
msgid "Y/m/d"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#:
|
535 |
-
msgid "Settings
|
536 |
msgstr ""
|
537 |
|
538 |
-
#:
|
539 |
-
|
540 |
-
msgid "General"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#:
|
544 |
msgid "Frontend Settings"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#:
|
548 |
msgid "Admin Page Settings"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#:
|
552 |
msgid "Feed Settings"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: /
|
556 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:29
|
557 |
msgid "event"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: /
|
561 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:30
|
562 |
msgid "events"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: /
|
566 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:71
|
567 |
msgid "Edit"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /
|
571 |
-
#: /
|
572 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:73
|
573 |
-
#: /home/zeus/mike/workspace/wp-event-list/admin/includes/event_table.php:146
|
574 |
msgid "Delete"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
msgid "Author"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#:
|
582 |
msgid "Published"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#:
|
586 |
msgid "Filter"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#:
|
590 |
#, php-format
|
591 |
msgid "%s ago"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#:
|
595 |
-
msgid "Y/m/d g:i:s A"
|
596 |
-
msgstr ""
|
597 |
-
|
598 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:7
|
599 |
msgid "Year"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
msgid "A year can be specified in 4 digit format."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: /
|
607 |
-
#:
|
608 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:36
|
609 |
#, php-format
|
610 |
msgid "For a start date filter the first day of %1$s is used, in an end date the last day."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#:
|
614 |
msgid "the resulting year"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#:
|
618 |
msgid "Month"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#:
|
622 |
msgid "A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-)."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#:
|
626 |
msgid "the resulting month"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#:
|
630 |
msgid "Day"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#:
|
634 |
msgid "A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-)."
|
635 |
msgstr ""
|
636 |
|
637 |
-
#:
|
638 |
msgid "Relative Year"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: /
|
642 |
-
#: /
|
643 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:34
|
644 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:42
|
645 |
#, php-format
|
646 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#:
|
650 |
msgid "A relative year"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: /
|
654 |
-
#: /
|
655 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:35
|
656 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:43
|
657 |
#, php-format
|
658 |
msgid "This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below)."
|
659 |
msgstr ""
|
660 |
|
661 |
-
#:
|
662 |
msgid "number of years"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: /
|
666 |
-
#: /
|
667 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:38
|
668 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:44
|
669 |
#, php-format
|
670 |
msgid "Additionally the following values are available: %1$s"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#:
|
674 |
msgid "Relative Month"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#:
|
678 |
msgid "A relative month"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#:
|
682 |
msgid "number of months"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#:
|
686 |
msgid "Relative Week"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#:
|
690 |
msgid "A relative week"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#:
|
694 |
msgid "number of weeks"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#:
|
698 |
msgid "the resulting week"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#:
|
702 |
#, php-format
|
703 |
msgid "The first day of the week is depending on the option %1$s which can be found and changed in %2$s."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#:
|
707 |
-
msgid "Week Starts On"
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:41
|
711 |
msgid "Relative Day"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#:
|
715 |
msgid "A relative day"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#:
|
719 |
msgid "number of days"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#:
|
723 |
msgid "Date range"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#:
|
727 |
msgid ""
|
728 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
729 |
"\t For the start and end date any available date format can be used."
|
730 |
msgstr ""
|
731 |
|
732 |
-
#:
|
733 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:282
|
734 |
-
msgid "All"
|
735 |
-
msgstr ""
|
736 |
-
|
737 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:55
|
738 |
msgid "This value defines a range without any limits."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: /
|
742 |
-
#:
|
743 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/daterange_helptexts.php:66
|
744 |
#, php-format
|
745 |
msgid "The corresponding date_range format is: %1$s"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#:
|
749 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:291
|
750 |
msgid "Upcoming"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#:
|
754 |
msgid "This value defines a range from the actual day to the future."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#:
|
758 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:295
|
759 |
msgid "Past"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#:
|
763 |
msgid "This value defines a range from the past to the previous day."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#:
|
767 |
-
msgid "
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/filterbar.php:285
|
771 |
-
msgid "Show all categories"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#:
|
775 |
-
msgid "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#:
|
779 |
-
msgid "
|
780 |
msgstr ""
|
781 |
|
782 |
-
#:
|
783 |
msgid "Sync Categories"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#:
|
787 |
msgid "Keep event categories in sync with post categories automatically"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#:
|
791 |
msgid "Attention"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#:
|
795 |
msgid "Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#:
|
799 |
msgid "CSV File to import"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#:
|
803 |
msgid "Please select the file which contains the event data in CSV format."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#:
|
807 |
msgid "Used date format"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#:
|
811 |
msgid "With this option the used date format for event start and end date given in the CSV file can be specified."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#:
|
815 |
msgid "Text for no events"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#:
|
819 |
msgid "This option defines the displayed text when no events are available for the selected view."
|
820 |
msgstr ""
|
821 |
|
822 |
-
#:
|
823 |
msgid "Multiday filter range"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#:
|
827 |
msgid "Use the complete event range in the date filter"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#:
|
831 |
msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
|
832 |
msgstr ""
|
833 |
|
834 |
-
#:
|
835 |
msgid "If disabled, only the start day of an event is considered in the filter."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#:
|
839 |
msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
840 |
msgstr ""
|
841 |
|
842 |
-
#:
|
843 |
msgid "Date display"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#:
|
847 |
msgid "Show the date only once per day"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#:
|
851 |
msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#:
|
855 |
msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
856 |
msgstr ""
|
857 |
|
858 |
-
#:
|
859 |
msgid "HTML tags"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: /
|
863 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:56
|
864 |
#, php-format
|
865 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: /
|
869 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/options_helptexts.php:57
|
870 |
#, php-format
|
871 |
msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
872 |
msgstr ""
|
873 |
|
874 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
875 |
msgid "Text for \"Show details\""
|
876 |
msgstr ""
|
877 |
|
878 |
-
#:
|
879 |
msgid "With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled."
|
880 |
msgstr ""
|
881 |
|
882 |
-
#:
|
883 |
msgid "Text for \"Hide details\""
|
884 |
msgstr ""
|
885 |
|
886 |
-
#:
|
887 |
msgid "With this option the displayed text for the link to hide the event details can be changed, when collapsing is enabled."
|
888 |
msgstr ""
|
889 |
|
890 |
-
#:
|
891 |
msgid "Disable CSS file"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#:
|
895 |
#, php-format
|
896 |
msgid "Disable the %1$s file."
|
897 |
msgstr ""
|
898 |
|
899 |
-
#:
|
900 |
#, php-format
|
901 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#:
|
905 |
msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
|
906 |
msgstr ""
|
907 |
|
908 |
-
#:
|
909 |
msgid "Date format in edit form"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#:
|
913 |
msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#:
|
917 |
-
msgid "The
|
918 |
msgstr ""
|
919 |
|
920 |
-
#:
|
921 |
#, php-format
|
922 |
msgid "All available options to specify the date format can be found %1$shere%2$s."
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: /
|
926 |
msgid "Enable RSS feed"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#:
|
930 |
msgid "Enable support for an event RSS feed"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#:
|
934 |
-
msgid ""
|
935 |
-
"This option activates a RSS feed for the events.<br />\n"
|
936 |
-
"\t You have to enable this option if you want to use one of the RSS feed features."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#:
|
|
|
|
|
|
|
|
|
940 |
msgid "Feed name"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#:
|
944 |
-
|
945 |
-
"This
|
946 |
-
"\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
950 |
msgid "Feed Description"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#:
|
954 |
-
|
955 |
-
"This options
|
956 |
-
|
|
|
|
|
|
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
msgid "Listed events"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
msgid "Only show upcoming events in feed"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#:
|
968 |
-
msgid ""
|
969 |
-
|
970 |
-
|
|
|
|
|
971 |
msgstr ""
|
972 |
|
973 |
-
#:
|
974 |
msgid "Add RSS feed link in head"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#:
|
978 |
msgid "Add RSS feed link in the html head"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
-
msgid ""
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
"
|
987 |
-
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
991 |
msgid "Position of the RSS feed link"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#:
|
995 |
-
msgid ""
|
996 |
-
|
997 |
-
|
998 |
-
|
|
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
msgid "Align of the RSS feed link"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
-
msgid ""
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
|
|
|
|
|
|
|
|
|
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#:
|
|
|
|
|
|
|
|
|
1013 |
msgid "Feed link text"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#:
|
1017 |
-
msgid ""
|
1018 |
-
"This option specifies the caption of the RSS feed link in the event list.<br />\n"
|
1019 |
-
"\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
|
1020 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#:
|
|
|
|
|
|
|
|
|
1024 |
msgid "Feed link image"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#:
|
1028 |
msgid "Show rss image in feed link"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#:
|
1032 |
-
msgid ""
|
1033 |
-
"This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
|
1034 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#:
|
1038 |
msgid "Show details"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#:
|
1042 |
msgid "Hide details"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#:
|
1046 |
-
msgid ""
|
1047 |
-
"With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
|
1048 |
-
"\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#:
|
1052 |
-
|
1053 |
-
"
|
1054 |
-
"\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#:
|
1058 |
-
|
1059 |
-
|
1060 |
-
"\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#:
|
1064 |
-
msgid ""
|
1065 |
-
"This attribute specifies the initial order of the events.<br />\n"
|
1066 |
-
"\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#:
|
1070 |
-
|
1071 |
-
"
|
1072 |
-
"\t Filtered events according to date_filter value are not available in the event list.<br />\n"
|
1073 |
-
"\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
|
1074 |
-
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#:
|
1078 |
-
msgid ""
|
1079 |
-
"This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
|
1080 |
-
"\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
|
1081 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#:
|
1085 |
-
msgid ""
|
1086 |
-
"This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
|
1087 |
-
"\t 0 is the standard value which means that all events will be displayed.<br />\n"
|
1088 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#:
|
1092 |
-
msgid ""
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#:
|
1099 |
-
|
1100 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1101 |
msgid "number"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#:
|
1105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1106 |
msgid "This attribute specifies if the title should be truncated to the given number of characters in the event list."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#:
|
1110 |
-
#:
|
1111 |
#, php-format
|
1112 |
msgid "With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#:
|
1116 |
-
#:
|
1117 |
-
#:
|
1118 |
msgid "This attribute has no influence if only a single event is shown."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#:
|
1122 |
msgid ""
|
1123 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1124 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1125 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#:
|
1129 |
msgid ""
|
1130 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1131 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1132 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#:
|
1136 |
msgid ""
|
1137 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1138 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1139 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#:
|
1143 |
msgid ""
|
1144 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1145 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1146 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#:
|
1150 |
msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#:
|
1154 |
#, php-format
|
1155 |
msgid "With the standard value %1$s the full text is displayed."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#:
|
1159 |
msgid ""
|
1160 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1161 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1163,7 +1252,7 @@ msgid ""
|
|
1163 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#:
|
1167 |
msgid ""
|
1168 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1169 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1171,7 +1260,7 @@ msgid ""
|
|
1171 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#:
|
1175 |
msgid ""
|
1176 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1177 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1180,152 +1269,146 @@ msgid ""
|
|
1180 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#:
|
1184 |
msgid ""
|
1185 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1186 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1187 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#:
|
1191 |
msgid ""
|
1192 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1193 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#:
|
1197 |
msgid "Event Information:"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#:
|
1201 |
-
msgid "(more…)"
|
1202 |
-
msgstr ""
|
1203 |
-
|
1204 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:10
|
1205 |
msgid "This option defines the displayed title for the widget."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#:
|
1209 |
msgid "Category Filter"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#:
|
1213 |
msgid "This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#:
|
1217 |
msgid "Number of listed events"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#:
|
1221 |
msgid "The number of upcoming events to display"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#:
|
1225 |
msgid "Truncate event title to"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: /
|
1229 |
-
#:
|
1230 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:67
|
1231 |
msgid "characters"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#:
|
1235 |
msgid "This option defines the number of displayed characters for the event title."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: /
|
1239 |
-
#: /home/zeus/mike/workspace/wp-event-list/includes/widget_helptexts.php:54
|
1240 |
#, php-format
|
1241 |
msgid "Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#:
|
1245 |
msgid "Show event starttime"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#:
|
1249 |
msgid "This option defines if the event start time will be displayed."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#:
|
1253 |
msgid "Show event location"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#:
|
1257 |
msgid "This option defines if the event location will be displayed."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#:
|
1261 |
msgid "Truncate location to"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#:
|
1265 |
msgid "If the event location is diplayed this option defines the number of displayed characters."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#:
|
1269 |
msgid "Show event details"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#:
|
1273 |
msgid "This option defines if the event details will be displayed."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#:
|
1277 |
msgid "Truncate details to"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#:
|
1281 |
msgid "If the event details are diplayed this option defines the number of diplayed characters."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#:
|
1285 |
#, php-format
|
1286 |
msgid "Set this value to %1$s to view the full text."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#:
|
1290 |
msgid "URL to the linked Event List page"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#:
|
1294 |
msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#:
|
1298 |
msgid "Shortcode ID on linked page"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#:
|
1306 |
msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#:
|
1310 |
msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#:
|
1314 |
msgid "Caption for the link"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#:
|
1318 |
msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#:
|
1322 |
msgid "With this widget a list of upcoming events can be displayed."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#:
|
1326 |
msgid "Upcoming events"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#:
|
1330 |
msgid "show events page"
|
1331 |
msgstr ""
|
1 |
+
# Translation file for the 'Event List' WordPress plugin
|
2 |
+
# Copyright (C) 2017 by mibuthu
|
3 |
+
# This file is distributed under the same license as the corresponding wordpress plugin.
|
|
|
4 |
#
|
5 |
#, fuzzy
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
+
"POT-Creation-Date: 2017-03-17 17:25+0100\n"
|
10 |
+
"Language: en\n"
|
|
|
|
|
|
|
|
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
|
15 |
+
#: admin/admin.php:45
|
16 |
msgid "Event List"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: admin/admin.php:48 admin/admin.php:80 admin/includes/admin-main.php:117
|
20 |
+
#: admin/includes/category_table.php:110
|
|
|
|
|
21 |
msgid "Events"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin/admin.php:48
|
25 |
msgid "All Events"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/admin.php:52 admin/includes/admin-new.php:41
|
|
|
29 |
msgid "Add New Event"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: admin/admin.php:52 admin/includes/admin-main.php:119
|
|
|
33 |
msgid "Add New"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/admin.php:56 admin/includes/admin-categories.php:50
|
|
|
37 |
msgid "Event List Categories"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: admin/admin.php:56 admin/includes/admin-new.php:145
|
41 |
+
#: admin/includes/event_table.php:111
|
|
|
|
|
42 |
msgid "Categories"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: admin/admin.php:60 admin/includes/admin-settings.php:53
|
|
|
46 |
msgid "Event List Settings"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: admin/admin.php:60
|
|
|
50 |
msgid "Settings"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: admin/admin.php:64 admin/includes/admin-about.php:37
|
|
|
54 |
msgid "About Event List"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: admin/admin.php:64
|
58 |
msgid "About"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:68
|
62 |
+
msgid "General"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
66 |
+
#: admin/includes/admin-about.php:103
|
67 |
+
msgid "Shortcode Attributes"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin/includes/admin-about.php:71
|
71 |
msgid "Help and Instructions"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin/includes/admin-about.php:72
|
75 |
#, php-format
|
76 |
+
msgid "You can manage the events %1$shere%2$s"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: admin/includes/admin-about.php:73
|
80 |
msgid "To show the events on your site you have 2 possibilities"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin/includes/admin-about.php:74
|
84 |
#, php-format
|
85 |
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin/includes/admin-about.php:75
|
89 |
#, php-format
|
90 |
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/includes/admin-about.php:76
|
94 |
msgid "The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin/includes/admin-about.php:77
|
98 |
+
#, php-format
|
99 |
+
msgid "A list of all available shortcode attributes with their descriptions is available in the %1$s tab."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/includes/admin-about.php:78
|
103 |
msgid "The available widget options are described in their tooltip text."
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin/includes/admin-about.php:79
|
107 |
#, php-format
|
108 |
+
msgid "If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page."
|
|
|
|
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
|
|
112 |
msgid "Add links to the single events"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:95
|
|
|
116 |
msgid "Add a link to the Event List page"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin/includes/admin-about.php:80
|
120 |
+
msgid "This is required because the widget does not know in which page or post the shortcode was included."
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: admin/includes/admin-about.php:81
|
124 |
+
msgid "Additionally you have to insert the correct Shortcode id on the linked page. This id describes which shortcode should be used on the given page or post if you have more than one."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: admin/includes/admin-about.php:82
|
128 |
#, php-format
|
129 |
+
msgid "The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post."
|
|
|
|
|
|
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin/includes/admin-about.php:83
|
133 |
#, php-format
|
134 |
+
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin/includes/admin-about.php:85
|
138 |
+
#, php-format
|
139 |
+
msgid "Be sure to also check the %1$s to get the plugin behaving just the way you want."
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: admin/includes/admin-about.php:85
|
143 |
+
msgid "Settings page"
|
144 |
+
msgstr ""
|
145 |
+
|
146 |
+
#: admin/includes/admin-about.php:91
|
147 |
+
msgid "About the plugin author"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: admin/includes/admin-about.php:93
|
151 |
+
#, php-format
|
152 |
+
msgid "This plugin is developed by %1$s, you can find more information about the plugin on the %2$s."
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: admin/includes/admin-about.php:93
|
156 |
+
msgid "wordpress plugin site"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin/includes/admin-about.php:94
|
160 |
+
#, php-format
|
161 |
+
msgid "If you like the plugin please rate it on the %1$s."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: admin/includes/admin-about.php:94
|
165 |
+
msgid "wordpress plugin review site"
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: admin/includes/admin-about.php:95
|
169 |
+
msgid "If you want to support the plugin I would be happy to get a small donation"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: admin/includes/admin-about.php:105
|
173 |
msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin/includes/admin-about.php:106
|
177 |
#, php-format
|
178 |
msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: admin/includes/admin-about.php:108
|
182 |
msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin/includes/admin-about.php:122
|
186 |
msgid "Attribute name"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: admin/includes/admin-about.php:123
|
190 |
msgid "Value options"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin/includes/admin-about.php:124
|
194 |
msgid "Default value"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: admin/includes/admin-about.php:125 admin/includes/admin-categories.php:188
|
198 |
+
#: admin/includes/category_table.php:108
|
|
|
199 |
msgid "Description"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: admin/includes/admin-about.php:143 includes/sc_event-list_helptexts.php:26
|
203 |
+
#: includes/sc_event-list_helptexts.php:31
|
204 |
msgid "Filter Syntax"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin/includes/admin-about.php:144
|
208 |
msgid "For date and cat filters you can specify complex filters with the following syntax:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/includes/admin-about.php:145
|
212 |
#, php-format
|
213 |
msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin/includes/admin-about.php:145
|
217 |
msgid "AND"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin/includes/admin-about.php:145
|
221 |
msgid "OR"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin/includes/admin-about.php:145
|
225 |
msgid "or"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/includes/admin-about.php:145
|
229 |
msgid "and"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin/includes/admin-about.php:146
|
233 |
msgid "Examples for cat filters:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin/includes/admin-about.php:147
|
237 |
#, php-format
|
238 |
msgid "Show all events with category %1$s."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: admin/includes/admin-about.php:148
|
242 |
#, php-format
|
243 |
msgid "Show all events with category %1$s or %2$s."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin/includes/admin-about.php:149
|
247 |
#, php-format
|
248 |
msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/includes/admin-about.php:154 includes/sc_event-list_helptexts.php:25
|
252 |
msgid "Available Date Formats"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin/includes/admin-about.php:155
|
256 |
msgid "For date filters you can use the following date formats:"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:163 includes/sc_event-list_helptexts.php:25
|
260 |
msgid "Available Date Range Formats"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/includes/admin-about.php:164
|
264 |
msgid "For date filters you can use the following daterange formats:"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: admin/includes/admin-about.php:176
|
268 |
msgid "Value"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: admin/includes/admin-about.php:180
|
272 |
msgid "Example"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin/includes/admin-categories.php:53
|
276 |
msgid "Edit Category"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: admin/includes/admin-categories.php:53
|
280 |
msgid "Update Category"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin/includes/admin-categories.php:59
|
284 |
msgid "Add New Category"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin/includes/admin-categories.php:84
|
288 |
#, php-format
|
289 |
msgid "Category \"%s\" deleted."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin/includes/admin-categories.php:86
|
293 |
#, php-format
|
294 |
msgid "This Category was also removed from %d events."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/includes/admin-categories.php:92
|
298 |
#, php-format
|
299 |
msgid "Error while deleting category \"%s\""
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin/includes/admin-categories.php:102
|
303 |
msgid "Sync with post categories enabled."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: admin/includes/admin-categories.php:105
|
307 |
msgid "Sync with post categories disabled."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: admin/includes/admin-categories.php:111
|
311 |
msgid "Manual sync with post categories sucessfully finished."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: admin/includes/admin-categories.php:119
|
315 |
#, php-format
|
316 |
msgid "New Category \"%s\" was added"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/includes/admin-categories.php:122
|
320 |
#, php-format
|
321 |
msgid "Error: New Category \"%s\" could not be added"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin/includes/admin-categories.php:128
|
325 |
#, php-format
|
326 |
msgid "Category \"%s\" was modified"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/includes/admin-categories.php:131
|
330 |
#, php-format
|
331 |
msgid "Error: Category \"%s\" could not be modified"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin/includes/admin-categories.php:138
|
335 |
+
msgid "Categories are automatically synced with the post categories."
|
|
|
|
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/includes/admin-categories.php:139
|
339 |
+
msgid "Because of this all options to add new categories or editing existing categories are disabled."
|
|
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/includes/admin-categories.php:140
|
343 |
+
msgid "If you want to manually edit the categories you have to disable this option."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/includes/admin-categories.php:167
|
347 |
+
msgid "The name is how it appears on your site."
|
|
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/includes/admin-categories.php:172
|
351 |
msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/includes/admin-categories.php:185
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: admin/includes/admin-categories.php:232
|
359 |
msgid "Apply"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:242
|
363 |
msgid "Do a manual sync with post categories"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin/includes/admin-import.php:45
|
367 |
msgid "Import Events"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
|
|
371 |
msgid "Step"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin/includes/admin-import.php:65
|
375 |
msgid "Set import file and options"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin/includes/admin-import.php:68
|
379 |
+
#, php-format
|
380 |
+
msgid "Proceed with Step %1$s"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/includes/admin-import.php:71
|
384 |
msgid "Example file"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin/includes/admin-import.php:72
|
388 |
#, php-format
|
389 |
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/includes/admin-import.php:73
|
393 |
msgid "Note"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/admin-import.php:73
|
397 |
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/includes/admin-import.php:80 admin/includes/admin-import.php:88
|
401 |
+
#: admin/includes/admin-import.php:101
|
|
|
402 |
msgid "Sorry, there has been an error."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/includes/admin-import.php:81
|
406 |
msgid "The file does not exist, please try again."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/includes/admin-import.php:89
|
410 |
msgid "The file is not a CSV file."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/includes/admin-import.php:120
|
414 |
+
msgid "Events review and additonal category selection"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/includes/admin-import.php:123
|
418 |
+
msgid "Warning: The following category slugs are not available and will be removed from the imported events:"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: admin/includes/admin-import.php:129
|
422 |
+
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin/includes/admin-import.php:147
|
426 |
+
msgid "Add additional categories"
|
427 |
+
msgstr ""
|
428 |
+
|
429 |
+
#: admin/includes/admin-import.php:148
|
430 |
+
msgid "Import events"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: admin/includes/admin-import.php:162
|
434 |
msgid "Import with errors!"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:163
|
438 |
#, php-format
|
439 |
msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:167
|
443 |
msgid "Import successful!"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:168
|
447 |
msgid "Go back to All Events"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:106
|
451 |
+
#: admin/includes/event_table.php:108 includes/widget_helptexts.php:8
|
|
|
|
|
452 |
msgid "Title"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin/includes/admin-import.php:176
|
456 |
msgid "Start Date"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:177
|
460 |
msgid "End Date"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:119
|
464 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
|
|
|
|
465 |
msgid "Time"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:123
|
469 |
+
#: admin/includes/event_table.php:109 includes/options_helptexts.php:53
|
470 |
+
#: includes/options_helptexts.php:54
|
|
|
|
|
471 |
msgid "Location"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:127
|
475 |
+
#: admin/includes/event_table.php:110
|
|
|
476 |
msgid "Details"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:181
|
480 |
+
msgid "Category slugs"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:220
|
484 |
+
#, php-format
|
485 |
+
msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/includes/admin-import.php:252 admin/includes/admin-main.php:120
|
489 |
+
msgid "Import"
|
|
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/includes/admin-main.php:114
|
493 |
msgid "Edit Event"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/includes/admin-main.php:114 admin/includes/event_table.php:72
|
|
|
497 |
msgid "Duplicate"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/includes/admin-new.php:43
|
501 |
#, php-format
|
502 |
msgid "Duplicate of event id:%d"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/includes/admin-new.php:106 admin/includes/admin-new.php:110
|
|
|
506 |
msgid "required"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/includes/admin-new.php:110 admin/includes/event_table.php:107
|
|
|
510 |
msgid "Date"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/includes/admin-new.php:113
|
514 |
msgid "Multi-Day Event"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: admin/includes/admin-new.php:143 admin/includes/admin-new.php:160
|
|
|
518 |
msgid "Publish"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-new.php:160
|
522 |
msgid "Update"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-new.php:162
|
526 |
+
msgid "Cancel"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-new.php:175
|
530 |
+
msgid "No categories available."
|
|
|
|
|
|
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/includes/admin-new.php:221
|
534 |
+
msgid "Goto Category Settings"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-settings.php:41
|
538 |
+
msgid "Settings saved."
|
|
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/includes/admin-settings.php:69
|
542 |
msgid "Frontend Settings"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/includes/admin-settings.php:70
|
546 |
msgid "Admin Page Settings"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/includes/admin-settings.php:71
|
550 |
msgid "Feed Settings"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/includes/category_table.php:27 admin/includes/event_table.php:29
|
|
|
554 |
msgid "event"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/includes/category_table.php:28 admin/includes/event_table.php:30
|
|
|
558 |
msgid "events"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/includes/category_table.php:70 admin/includes/event_table.php:71
|
|
|
562 |
msgid "Edit"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin/includes/category_table.php:71 admin/includes/category_table.php:145
|
566 |
+
#: admin/includes/event_table.php:73 admin/includes/event_table.php:146
|
|
|
|
|
567 |
msgid "Delete"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/includes/category_table.php:107
|
571 |
+
msgid "Name"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: admin/includes/category_table.php:109
|
575 |
+
msgid "Slug"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: admin/includes/event_table.php:112
|
579 |
msgid "Author"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/includes/event_table.php:113
|
583 |
msgid "Published"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: admin/includes/event_table.php:175
|
587 |
msgid "Filter"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: admin/includes/event_table.php:297
|
591 |
#, php-format
|
592 |
msgid "%s ago"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/daterange_helptexts.php:7
|
|
|
|
|
|
|
|
|
596 |
msgid "Year"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/daterange_helptexts.php:8
|
600 |
msgid "A year can be specified in 4 digit format."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
604 |
+
#: includes/daterange_helptexts.php:36
|
|
|
605 |
#, php-format
|
606 |
msgid "For a start date filter the first day of %1$s is used, in an end date the last day."
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/daterange_helptexts.php:9
|
610 |
msgid "the resulting year"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/daterange_helptexts.php:12
|
614 |
msgid "Month"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/daterange_helptexts.php:13
|
618 |
msgid "A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-)."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/daterange_helptexts.php:14
|
622 |
msgid "the resulting month"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/daterange_helptexts.php:17
|
626 |
msgid "Day"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: includes/daterange_helptexts.php:18
|
630 |
msgid "A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-)."
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: includes/daterange_helptexts.php:21
|
634 |
msgid "Relative Year"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: includes/daterange_helptexts.php:22 includes/daterange_helptexts.php:28
|
638 |
+
#: includes/daterange_helptexts.php:34 includes/daterange_helptexts.php:42
|
|
|
|
|
639 |
#, php-format
|
640 |
msgid "%1$s from now can be specified in the following notation: %2$s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: includes/daterange_helptexts.php:22
|
644 |
msgid "A relative year"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: includes/daterange_helptexts.php:23 includes/daterange_helptexts.php:29
|
648 |
+
#: includes/daterange_helptexts.php:35 includes/daterange_helptexts.php:43
|
|
|
|
|
649 |
#, php-format
|
650 |
msgid "This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below)."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: includes/daterange_helptexts.php:23
|
654 |
msgid "number of years"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: includes/daterange_helptexts.php:24 includes/daterange_helptexts.php:30
|
658 |
+
#: includes/daterange_helptexts.php:38 includes/daterange_helptexts.php:44
|
|
|
|
|
659 |
#, php-format
|
660 |
msgid "Additionally the following values are available: %1$s"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/daterange_helptexts.php:27
|
664 |
msgid "Relative Month"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/daterange_helptexts.php:28
|
668 |
msgid "A relative month"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: includes/daterange_helptexts.php:29
|
672 |
msgid "number of months"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: includes/daterange_helptexts.php:33
|
676 |
msgid "Relative Week"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: includes/daterange_helptexts.php:34
|
680 |
msgid "A relative week"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: includes/daterange_helptexts.php:35
|
684 |
msgid "number of weeks"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: includes/daterange_helptexts.php:36
|
688 |
msgid "the resulting week"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: includes/daterange_helptexts.php:37
|
692 |
#, php-format
|
693 |
msgid "The first day of the week is depending on the option %1$s which can be found and changed in %2$s."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/daterange_helptexts.php:41
|
|
|
|
|
|
|
|
|
697 |
msgid "Relative Day"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: includes/daterange_helptexts.php:42
|
701 |
msgid "A relative day"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: includes/daterange_helptexts.php:43
|
705 |
msgid "number of days"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: includes/daterange_helptexts.php:49
|
709 |
msgid "Date range"
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: includes/daterange_helptexts.php:50
|
713 |
msgid ""
|
714 |
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
715 |
"\t For the start and end date any available date format can be used."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: includes/daterange_helptexts.php:55
|
|
|
|
|
|
|
|
|
|
|
719 |
msgid "This value defines a range without any limits."
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: includes/daterange_helptexts.php:56 includes/daterange_helptexts.php:61
|
723 |
+
#: includes/daterange_helptexts.php:66
|
|
|
724 |
#, php-format
|
725 |
msgid "The corresponding date_range format is: %1$s"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: includes/daterange_helptexts.php:59 includes/filterbar.php:291
|
|
|
729 |
msgid "Upcoming"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: includes/daterange_helptexts.php:60
|
733 |
msgid "This value defines a range from the actual day to the future."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: includes/daterange_helptexts.php:64 includes/filterbar.php:295
|
|
|
737 |
msgid "Past"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/daterange_helptexts.php:65
|
741 |
msgid "This value defines a range from the past to the previous day."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: includes/filterbar.php:282
|
745 |
+
msgid "All"
|
|
|
|
|
|
|
|
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: includes/filterbar.php:285
|
749 |
+
msgid "Show all dates"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: includes/filterbar.php:285
|
753 |
+
msgid "Show all categories"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/options_helptexts.php:11
|
757 |
msgid "Sync Categories"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/options_helptexts.php:12
|
761 |
msgid "Keep event categories in sync with post categories automatically"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: includes/options_helptexts.php:13
|
765 |
msgid "Attention"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: includes/options_helptexts.php:14
|
769 |
msgid "Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: includes/options_helptexts.php:18
|
773 |
msgid "CSV File to import"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: includes/options_helptexts.php:20
|
777 |
msgid "Please select the file which contains the event data in CSV format."
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: includes/options_helptexts.php:23
|
781 |
msgid "Used date format"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: includes/options_helptexts.php:25
|
785 |
msgid "With this option the used date format for event start and end date given in the CSV file can be specified."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: includes/options_helptexts.php:29
|
789 |
msgid "Text for no events"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/options_helptexts.php:31
|
793 |
msgid "This option defines the displayed text when no events are available for the selected view."
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/options_helptexts.php:34
|
797 |
msgid "Multiday filter range"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: includes/options_helptexts.php:35
|
801 |
msgid "Use the complete event range in the date filter"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: includes/options_helptexts.php:36
|
805 |
msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/options_helptexts.php:37
|
809 |
msgid "If disabled, only the start day of an event is considered in the filter."
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: includes/options_helptexts.php:38
|
813 |
msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: includes/options_helptexts.php:41
|
817 |
msgid "Date display"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: includes/options_helptexts.php:42
|
821 |
msgid "Show the date only once per day"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: includes/options_helptexts.php:43
|
825 |
msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: includes/options_helptexts.php:44
|
829 |
msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: includes/options_helptexts.php:47
|
833 |
msgid "HTML tags"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: includes/options_helptexts.php:48 includes/options_helptexts.php:53
|
|
|
837 |
#, php-format
|
838 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/options_helptexts.php:49 includes/options_helptexts.php:54
|
|
|
842 |
#, php-format
|
843 |
msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: includes/options_helptexts.php:57
|
847 |
+
msgid "Preferred language file"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: includes/options_helptexts.php:58
|
851 |
+
msgid "Load translations from general language directory first"
|
852 |
+
msgstr ""
|
853 |
+
|
854 |
+
#: includes/options_helptexts.php:59
|
855 |
+
#, php-format
|
856 |
+
msgid "The default is to load the %1$s translation file from the plugin language directory first (%2$s)."
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: includes/options_helptexts.php:60
|
860 |
+
#, php-format
|
861 |
+
msgid "If you want to load your own language file from the general language directory %1$s for a language which is already included in the plugin language directory, you have to enable this option."
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: includes/options_helptexts.php:64
|
865 |
msgid "Text for \"Show details\""
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: includes/options_helptexts.php:65
|
869 |
msgid "With this option the displayed text for the link to show the event details can be changed, when collapsing is enabled."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: includes/options_helptexts.php:68
|
873 |
msgid "Text for \"Hide details\""
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: includes/options_helptexts.php:69
|
877 |
msgid "With this option the displayed text for the link to hide the event details can be changed, when collapsing is enabled."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: includes/options_helptexts.php:72
|
881 |
msgid "Disable CSS file"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/options_helptexts.php:73
|
885 |
#, php-format
|
886 |
msgid "Disable the %1$s file."
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/options_helptexts.php:74
|
890 |
#, php-format
|
891 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: includes/options_helptexts.php:75
|
895 |
msgid "This normally only make sense if you have css conflicts with your theme and want to set all required css styles somewhere else (e.g. in the theme css)."
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: includes/options_helptexts.php:79
|
899 |
msgid "Date format in edit form"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: includes/options_helptexts.php:80
|
903 |
msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/options_helptexts.php:81
|
907 |
+
msgid "The default is an empty string to use the Wordpress standard setting."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: includes/options_helptexts.php:82
|
911 |
#, php-format
|
912 |
msgid "All available options to specify the date format can be found %1$shere%2$s."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: includes/options_helptexts.php:86 includes/options_helptexts.php:114
|
916 |
msgid "Enable RSS feed"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/options_helptexts.php:87
|
920 |
msgid "Enable support for an event RSS feed"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/options_helptexts.php:88
|
924 |
+
msgid "This option activates a RSS feed for the events."
|
|
|
|
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: includes/options_helptexts.php:89
|
928 |
+
msgid "You have to enable this option if you want to use one of the RSS feed features."
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: includes/options_helptexts.php:92
|
932 |
msgid "Feed name"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/options_helptexts.php:93
|
936 |
+
#, php-format
|
937 |
+
msgid "This option sets the feed name. The default value is %1$s."
|
|
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: includes/options_helptexts.php:94
|
941 |
+
#, php-format
|
942 |
+
msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/options_helptexts.php:97
|
946 |
msgid "Feed Description"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/options_helptexts.php:98
|
950 |
+
#, php-format
|
951 |
+
msgid "This options set the feed description. The default value is %1$s."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: includes/options_helptexts.php:99
|
955 |
+
msgid "This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: includes/options_helptexts.php:102
|
959 |
msgid "Listed events"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: includes/options_helptexts.php:103
|
963 |
msgid "Only show upcoming events in feed"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/options_helptexts.php:104
|
967 |
+
msgid "If this option is enabled only the upcoming events are listed in the feed."
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: includes/options_helptexts.php:105
|
971 |
+
msgid "If disabled all events (upcoming and past) will be listed."
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: includes/options_helptexts.php:108
|
975 |
msgid "Add RSS feed link in head"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/options_helptexts.php:109
|
979 |
msgid "Add RSS feed link in the html head"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/options_helptexts.php:110
|
983 |
+
msgid "This option adds a RSS feed in the html head for the events."
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: includes/options_helptexts.php:111
|
987 |
+
msgid "There are 2 alternatives to include the RSS feed"
|
|
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/options_helptexts.php:112
|
991 |
+
msgid "The first way is this option to include a link in the html head. This link will be recognized by browers or feed readers."
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: includes/options_helptexts.php:113
|
995 |
+
#, php-format
|
996 |
+
msgid "The second way is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute %1$s to %2$s."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/options_helptexts.php:114
|
1000 |
+
#, php-format
|
1001 |
+
msgid "This option is only valid if the setting %1$s is enabled."
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/options_helptexts.php:117
|
1005 |
msgid "Position of the RSS feed link"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: includes/options_helptexts.php:118
|
1009 |
+
msgid "at the top (above the navigation bar)"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/options_helptexts.php:118
|
1013 |
+
msgid "between navigation bar and events"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: includes/options_helptexts.php:118
|
1017 |
+
msgid "at the bottom"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/options_helptexts.php:119
|
1021 |
+
msgid "This option specifies the position of the RSS feed link in the event list."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:120 includes/options_helptexts.php:126
|
1025 |
+
#: includes/options_helptexts.php:132 includes/options_helptexts.php:138
|
1026 |
+
#, php-format
|
1027 |
+
msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:123
|
1031 |
msgid "Align of the RSS feed link"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: includes/options_helptexts.php:124
|
1035 |
+
msgid "left"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/options_helptexts.php:124
|
1039 |
+
msgid "center"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/options_helptexts.php:124
|
1043 |
+
msgid "right"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:125
|
1047 |
+
msgid "This option specifies the align of the RSS feed link in the event list."
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: includes/options_helptexts.php:129
|
1051 |
msgid "Feed link text"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:130
|
1055 |
+
msgid "This option specifies the caption of the RSS feed link in the event list."
|
|
|
|
|
|
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:131
|
1059 |
+
msgid "Insert an empty text to hide any text if you only want to show the rss image."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: includes/options_helptexts.php:135
|
1063 |
msgid "Feed link image"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:136
|
1067 |
msgid "Show rss image in feed link"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:137
|
1071 |
+
msgid "This option specifies if the an image should be dispayed in the feed link in front of the text."
|
|
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options.php:43
|
1075 |
msgid "Show details"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options.php:44
|
1079 |
msgid "Hide details"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/sc_event-list_helptexts.php:7
|
1083 |
+
msgid "event-id"
|
|
|
|
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/sc_event-list_helptexts.php:8
|
1087 |
+
#, php-format
|
1088 |
+
msgid "By default the event-list is displayed initially. But if an event-id (e.g. %1$s) is provided for this attribute, directly the event-details view of this event is shown."
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: includes/sc_event-list_helptexts.php:10
|
1092 |
+
#: includes/sc_event-list_helptexts.php:22
|
1093 |
+
msgid "year"
|
|
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/sc_event-list_helptexts.php:11
|
1097 |
+
msgid "This attribute defines which events are initially shown. The default is to show the upcoming events only."
|
|
|
|
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: includes/sc_event-list_helptexts.php:12
|
1101 |
+
#, php-format
|
1102 |
+
msgid "Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
|
|
|
|
|
|
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/sc_event-list_helptexts.php:14
|
1106 |
+
msgid "category slug"
|
|
|
|
|
|
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/sc_event-list_helptexts.php:15
|
1110 |
+
msgid "This attribute defines the category of which events are initially shown. The default is to show events of all categories."
|
|
|
|
|
|
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/sc_event-list_helptexts.php:16
|
1114 |
+
msgid "Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: includes/sc_event-list_helptexts.php:19
|
1118 |
+
msgid "This attribute defines the initial order of the events."
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
+
#: includes/sc_event-list_helptexts.php:20
|
1122 |
+
msgid "With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old)."
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: includes/sc_event-list_helptexts.php:23
|
1126 |
+
#, php-format
|
1127 |
+
msgid "This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events."
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: includes/sc_event-list_helptexts.php:24
|
1131 |
+
#, php-format
|
1132 |
+
msgid "Filtered events according to %1$s value are not available in the event list."
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: includes/sc_event-list_helptexts.php:25
|
1136 |
+
#, php-format
|
1137 |
+
msgid "You can find all available values with a description and examples in the sections %1$s and %2$s below."
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: includes/sc_event-list_helptexts.php:26
|
1141 |
+
#, php-format
|
1142 |
+
msgid "See %1$s description if you want to define complex filters."
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: includes/sc_event-list_helptexts.php:28
|
1146 |
+
msgid "category slugs"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/sc_event-list_helptexts.php:29
|
1150 |
+
msgid "This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events."
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: includes/sc_event-list_helptexts.php:30
|
1154 |
+
#, php-format
|
1155 |
+
msgid "Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added."
|
1156 |
+
msgstr ""
|
1157 |
+
|
1158 |
+
#: includes/sc_event-list_helptexts.php:31
|
1159 |
+
#, php-format
|
1160 |
+
msgid "The filter is specified via the given category slugs. See %1$s description if you want to define complex filters."
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: includes/sc_event-list_helptexts.php:33
|
1164 |
+
#: includes/sc_event-list_helptexts.php:76
|
1165 |
+
#: includes/sc_event-list_helptexts.php:91
|
1166 |
+
#: includes/sc_event-list_helptexts.php:106
|
1167 |
msgid "number"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/sc_event-list_helptexts.php:34
|
1171 |
+
#, php-format
|
1172 |
+
msgid "This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed."
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: includes/sc_event-list_helptexts.php:35
|
1176 |
+
msgid "Please not that in the actual version there is no pagination of the events available, so the event list can be very long."
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: includes/sc_event-list_helptexts.php:38
|
1180 |
+
msgid "This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events."
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: includes/sc_event-list_helptexts.php:39
|
1184 |
+
#, php-format
|
1185 |
+
msgid "Choose %1$s to always hide and %2$s to always show the filterbar."
|
1186 |
+
msgstr ""
|
1187 |
+
|
1188 |
+
#: includes/sc_event-list_helptexts.php:40
|
1189 |
+
#, php-format
|
1190 |
+
msgid "With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view."
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: includes/sc_event-list_helptexts.php:77
|
1194 |
+
#: includes/sc_event-list_helptexts.php:92
|
1195 |
msgid "This attribute specifies if the title should be truncated to the given number of characters in the event list."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/sc_event-list_helptexts.php:78
|
1199 |
+
#: includes/sc_event-list_helptexts.php:93
|
1200 |
#, php-format
|
1201 |
msgid "With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: includes/sc_event-list_helptexts.php:79
|
1205 |
+
#: includes/sc_event-list_helptexts.php:94
|
1206 |
+
#: includes/sc_event-list_helptexts.php:109
|
1207 |
msgid "This attribute has no influence if only a single event is shown."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/sc_event-list_helptexts.php:82
|
1211 |
msgid ""
|
1212 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1213 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1214 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/sc_event-list_helptexts.php:87
|
1218 |
msgid ""
|
1219 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1220 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1221 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/sc_event-list_helptexts.php:97
|
1225 |
msgid ""
|
1226 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1227 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1228 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/sc_event-list_helptexts.php:102
|
1232 |
msgid ""
|
1233 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1234 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1235 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/sc_event-list_helptexts.php:107
|
1239 |
msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/sc_event-list_helptexts.php:108
|
1243 |
#, php-format
|
1244 |
msgid "With the standard value %1$s the full text is displayed."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/sc_event-list_helptexts.php:112
|
1248 |
msgid ""
|
1249 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1250 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1252 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/sc_event-list_helptexts.php:118
|
1256 |
msgid ""
|
1257 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1258 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1260 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/sc_event-list_helptexts.php:124
|
1264 |
msgid ""
|
1265 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1266 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1269 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/sc_event-list_helptexts.php:130
|
1273 |
msgid ""
|
1274 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1275 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1276 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/sc_event-list_helptexts.php:137
|
1280 |
msgid ""
|
1281 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1282 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/sc_event-list.php:138
|
1286 |
msgid "Event Information:"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/widget_helptexts.php:10
|
|
|
|
|
|
|
|
|
1290 |
msgid "This option defines the displayed title for the widget."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/widget_helptexts.php:15
|
1294 |
msgid "Category Filter"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/widget_helptexts.php:17
|
1298 |
msgid "This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/widget_helptexts.php:22
|
1302 |
msgid "Number of listed events"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/widget_helptexts.php:24
|
1306 |
msgid "The number of upcoming events to display"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/widget_helptexts.php:29
|
1310 |
msgid "Truncate event title to"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/widget_helptexts.php:30 includes/widget_helptexts.php:52
|
1314 |
+
#: includes/widget_helptexts.php:67
|
|
|
1315 |
msgid "characters"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: includes/widget_helptexts.php:31
|
1319 |
msgid "This option defines the number of displayed characters for the event title."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
|
|
1323 |
#, php-format
|
1324 |
msgid "Set this value to %1$s to view the full text, or set it to %2$s to automatically truncate the text via css."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/widget_helptexts.php:37
|
1328 |
msgid "Show event starttime"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/widget_helptexts.php:39
|
1332 |
msgid "This option defines if the event start time will be displayed."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/widget_helptexts.php:44
|
1336 |
msgid "Show event location"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/widget_helptexts.php:46
|
1340 |
msgid "This option defines if the event location will be displayed."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/widget_helptexts.php:51
|
1344 |
msgid "Truncate location to"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/widget_helptexts.php:53
|
1348 |
msgid "If the event location is diplayed this option defines the number of displayed characters."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/widget_helptexts.php:59
|
1352 |
msgid "Show event details"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: includes/widget_helptexts.php:61
|
1356 |
msgid "This option defines if the event details will be displayed."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/widget_helptexts.php:66
|
1360 |
msgid "Truncate details to"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/widget_helptexts.php:68
|
1364 |
msgid "If the event details are diplayed this option defines the number of diplayed characters."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/widget_helptexts.php:69
|
1368 |
#, php-format
|
1369 |
msgid "Set this value to %1$s to view the full text."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/widget_helptexts.php:74
|
1373 |
msgid "URL to the linked Event List page"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/widget_helptexts.php:76
|
1377 |
msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/widget_helptexts.php:81
|
1381 |
msgid "Shortcode ID on linked page"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/widget_helptexts.php:83
|
1385 |
msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/widget_helptexts.php:90
|
1389 |
msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/widget_helptexts.php:97
|
1393 |
msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/widget_helptexts.php:102
|
1397 |
msgid "Caption for the link"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: includes/widget_helptexts.php:104
|
1401 |
msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: includes/widget.php:20
|
1405 |
msgid "With this widget a list of upcoming events can be displayed."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: includes/widget.php:25
|
1409 |
msgid "Upcoming events"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: includes/widget.php:38
|
1413 |
msgid "show events page"
|
1414 |
msgstr ""
|
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: mibuthu, clhunsen
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
-
Requires at least: 3.
|
6 |
Tested up to: 4.7
|
7 |
-
Stable tag: 0.7.
|
8 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
9 |
Licence: GPLv2
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -82,6 +82,22 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
= 0.7.7 (2017-01-13) =
|
86 |
* replaced custom admin menu icon with wordpress integrated icon for a consistent styling
|
87 |
* added support to truncate text via css to exactly 1 line (length='auto')
|
2 |
Contributors: mibuthu, clhunsen
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
+
Requires at least: 3.8
|
6 |
Tested up to: 4.7
|
7 |
+
Stable tag: 0.7.8
|
8 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
9 |
Licence: GPLv2
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= 0.7.8 (2017-03-17) =
|
86 |
+
* improved datepicker style in new/edit event view
|
87 |
+
* show datepicker in correct language
|
88 |
+
* respect first day of week wordpress setting in the datepicker
|
89 |
+
* include event categories in the event feed
|
90 |
+
* added support for categories in event import file
|
91 |
+
* improvements and better error messages in event import
|
92 |
+
* fixed html tag handling truncate function
|
93 |
+
* splitted about page into 2 tabs
|
94 |
+
* changes in language file handling, additional option to define which language file shall be loaded first
|
95 |
+
* some improvements in the language files itself
|
96 |
+
* prepare more help strings for translation
|
97 |
+
* updated translations and added more german translations
|
98 |
+
* moved screenshots to assets folder to reduce download size
|
99 |
+
* changed mimimum required wordpress version to 3.8
|
100 |
+
|
101 |
= 0.7.7 (2017-01-13) =
|
102 |
* replaced custom admin menu icon with wordpress integrated icon for a consistent styling
|
103 |
* added support to truncate text via css to exactly 1 line (length='auto')
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|