Timeline Express - Version 1.1.5.8

Version Description

  • March 5th, 2015 =
  • Enhancement: Upgraded font-awesome to 4.3.0
  • Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
  • Enhancement: Added new setting to toggle Timeline posts from appearing in search queries on the front end (defaults to true)
  • Enhancement: Packaged German translation - thanks to Martin Gerlach
Download this release

Release Info

Developer eherman24
Plugin Icon 128x128 Timeline Express
Version 1.1.5.8
Comparing to
See all releases

Code changes from version 1.1.5.7 to 1.1.5.8

classes/class.timeline-express.php CHANGED
@@ -36,6 +36,7 @@ if(!class_exists("timelineExpressBase"))
36
  // redirect the user on plugin activation
37
  // to the timeline express welcome page
38
  add_option('timeline_express_do_activation_redirect', true);
 
39
  }
40
 
41
  public function deactivate() {
@@ -158,6 +159,19 @@ if(!class_exists("timelineExpressBase"))
158
  add_filter( 'cmb_validate_te_bootstrap_dropdown', array( $this, 'cmb_validate_te_bootstrap_dropdown' ) , 10, 2);
159
  }
160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  /*
162
  * cmb_render_te_date_time_stamp_custom()
163
  * render our custom date time stamp field (allows for a default to be set)
@@ -400,7 +414,22 @@ if(!class_exists("timelineExpressBase"))
400
 
401
  // Register Announcement Custom Post Type
402
  public function timeline_express_generate_announcement_post_type() {
403
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  // Register our Announcement Custom Post Type
405
  // used to easily manage the announcements on the site
406
  $timeline_express_labels = array(
@@ -431,7 +460,7 @@ if(!class_exists("timelineExpressBase"))
431
  'supports' => array( 'title', 'editor' ),
432
  'taxonomies' => array(),
433
  'hierarchical' => true,
434
- 'public' => true,
435
  'show_ui' => true,
436
  'show_in_menu' => true,
437
  'show_in_nav_menus' => true,
@@ -440,8 +469,6 @@ if(!class_exists("timelineExpressBase"))
440
  'menu_icon' => TIMELINE_EXPRESS_URL . '/images/timeline-express-menu-icon.png',
441
  'can_export' => true,
442
  'has_archive' => true,
443
- 'exclude_from_search' => false,
444
- 'publicly_queryable' => true,
445
  'rewrite' => $timeline_express_rewrite,
446
  'capability_type' => 'page',
447
  );
@@ -485,11 +512,11 @@ if(!class_exists("timelineExpressBase"))
485
  // 'on_front' => false, // Optionally designate a field to wp-admin only
486
  ),
487
  array(
488
- 'name' => __( 'Font Awesome Class', 'timeline-express' ),
489
- 'desc' => __( 'enter the font-awesome class name in the box above. This is used for the icon associated with the announcement. <a href="http://fortawesome.github.io/Font-Awesome/cheatsheet/" target="_blank">cheat sheet</a> Example : "fa-times-circle" ', 'timeline-express' ),
490
  'id' => $prefix . 'icon',
491
  'type' => 'te_bootstrap_dropdown',
492
- 'default' => trim( $this->timeline_express_optionVal['default-announcement-icon'] ),
493
  // 'repeatable' => true,
494
  // 'on_front' => false, // Optionally designate a field to wp-admin only
495
  ),
@@ -832,6 +859,7 @@ if(!class_exists("timelineExpressBase"))
832
  $this->timeline_express_optionVal['announcement-box-shadow-color'] = $fd['announcement-box-shadow-color'];
833
  $this->timeline_express_optionVal['announcement-background-line-color'] = $fd['announcement-background-line-color'];
834
  $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] = isset( $fd['delete-announcement-posts-on-uninstallation'] ) ? '1' : '0';
 
835
  return update_option( TIMELINE_EXPRESS_OPTION, $this->timeline_express_optionVal );
836
  }
837
  return false;
@@ -856,7 +884,7 @@ if(!class_exists("timelineExpressBase"))
856
  // Register Styles
857
  wp_enqueue_style( 'timeline-express-css-base', TIMELINE_EXPRESS_URL . 'css/timeline-express-settings.min.css' , array(), '1.0.0', 'all');
858
  // enqueue font awesome for use in column display
859
- wp_enqueue_style( 'prefix-font-awesome' , '//netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css' , array() , '4.2.0' );
860
  }
861
 
862
  }
@@ -1237,7 +1265,7 @@ if(!class_exists("timelineExpressBase"))
1237
  public function timeline_express_build_bootstrap_dropdown( $field, $meta ) {
1238
 
1239
  // get the icons out of the css file
1240
- $response = wp_remote_get( 'http://netdna.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.css' );
1241
 
1242
  // splot the response body, and store the icon classes in a variable
1243
  $split_dat_response = explode( 'icons */' , $response['body'] );
@@ -1282,6 +1310,7 @@ if(!class_exists("timelineExpressBase"))
1282
  .dropdown-toggle .caret { border-top-color: #333 !important; }
1283
  .ui-datepicker-prev:hover, .ui-datepicker-next:hover { cursor: pointer; }
1284
  </style>
 
1285
  <!-- start the font awesome icon select -->
1286
  <select class="selectpicker" name="<?php echo $field['id']; ?>" id="<?php echo $field['id']; ?>">
1287
 
@@ -1354,6 +1383,7 @@ if(!class_exists("timelineExpressBase"))
1354
  $this->timeline_express_optionVal['announcement-box-shadow-color'] = "#B9C5CD";
1355
  $this->timeline_express_optionVal['announcement-background-line-color'] = '#D7E4ED';
1356
  $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] = '0';
 
1357
  return update_option( TIMELINE_EXPRESS_OPTION, $this->timeline_express_optionVal );
1358
  }
1359
 
36
  // redirect the user on plugin activation
37
  // to the timeline express welcome page
38
  add_option('timeline_express_do_activation_redirect', true);
39
+ $this->addMissingOptions();
40
  }
41
 
42
  public function deactivate() {
159
  add_filter( 'cmb_validate_te_bootstrap_dropdown', array( $this, 'cmb_validate_te_bootstrap_dropdown' ) , 10, 2);
160
  }
161
 
162
+ function addMissingOptions() {
163
+ // store the option temporarily
164
+ $this->timeline_express_optionVal = get_option( TIMELINE_EXPRESS_OPTION );
165
+ // add new option announcement-appear-in-searches
166
+ // ( toggle display of announcements in searches )
167
+ // @since v1.1.5.8
168
+ if( !isset( $this->timeline_express_optionVal['announcement-appear-in-searches'] ) ) {
169
+ $this->timeline_express_optionVal['announcement-appear-in-searches'] = 'true';
170
+ }
171
+ // update the options
172
+ update_option( TIMELINE_EXPRESS_OPTION , $this->timeline_express_optionVal );
173
+ }
174
+
175
  /*
176
  * cmb_render_te_date_time_stamp_custom()
177
  * render our custom date time stamp field (allows for a default to be set)
414
 
415
  // Register Announcement Custom Post Type
416
  public function timeline_express_generate_announcement_post_type() {
417
+
418
+ $this->timeline_express_optionVal = get_option( TIMELINE_EXPRESS_OPTION );
419
+ if( isset( $this->timeline_express_optionVal['announcement-appear-in-searches'] ) ) {
420
+ $announcements_public = $this->timeline_express_optionVal['announcement-appear-in-searches'];
421
+ } else {
422
+ $announcements_public = 'true';
423
+ }
424
+
425
+ // toggle public search visibility of the announcements
426
+ // @since v1.1.5.8
427
+ if( $announcements_public == 'false' ) {
428
+ $announcements_public = false;
429
+ } else {
430
+ $announcements_public = true;
431
+ }
432
+
433
  // Register our Announcement Custom Post Type
434
  // used to easily manage the announcements on the site
435
  $timeline_express_labels = array(
460
  'supports' => array( 'title', 'editor' ),
461
  'taxonomies' => array(),
462
  'hierarchical' => true,
463
+ 'public' => $announcements_public, // toggled via setitngs page - @since v1.1.5.8
464
  'show_ui' => true,
465
  'show_in_menu' => true,
466
  'show_in_nav_menus' => true,
469
  'menu_icon' => TIMELINE_EXPRESS_URL . '/images/timeline-express-menu-icon.png',
470
  'can_export' => true,
471
  'has_archive' => true,
 
 
472
  'rewrite' => $timeline_express_rewrite,
473
  'capability_type' => 'page',
474
  );
512
  // 'on_front' => false, // Optionally designate a field to wp-admin only
513
  ),
514
  array(
515
+ 'name' => __( 'Announcement Icon', 'timeline-express' ),
516
+ 'desc' => __( 'select an icon from the drop down above. This is used for the icon associated with the announcement.', 'timeline-express' ),
517
  'id' => $prefix . 'icon',
518
  'type' => 'te_bootstrap_dropdown',
519
+ 'default' => 'fa-'.str_replace( 'fa-' , '' , $this->timeline_express_optionVal['default-announcement-icon'] ),
520
  // 'repeatable' => true,
521
  // 'on_front' => false, // Optionally designate a field to wp-admin only
522
  ),
859
  $this->timeline_express_optionVal['announcement-box-shadow-color'] = $fd['announcement-box-shadow-color'];
860
  $this->timeline_express_optionVal['announcement-background-line-color'] = $fd['announcement-background-line-color'];
861
  $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] = isset( $fd['delete-announcement-posts-on-uninstallation'] ) ? '1' : '0';
862
+ $this->timeline_express_optionVal['announcement-appear-in-searches'] = $fd['announcement-appear-in-searches'];
863
  return update_option( TIMELINE_EXPRESS_OPTION, $this->timeline_express_optionVal );
864
  }
865
  return false;
884
  // Register Styles
885
  wp_enqueue_style( 'timeline-express-css-base', TIMELINE_EXPRESS_URL . 'css/timeline-express-settings.min.css' , array(), '1.0.0', 'all');
886
  // enqueue font awesome for use in column display
887
+ wp_enqueue_style( 'prefix-font-awesome' , '//netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' , array() , '4.3.0' );
888
  }
889
 
890
  }
1265
  public function timeline_express_build_bootstrap_dropdown( $field, $meta ) {
1266
 
1267
  // get the icons out of the css file
1268
+ $response = wp_remote_get( 'http://netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.css' );
1269
 
1270
  // splot the response body, and store the icon classes in a variable
1271
  $split_dat_response = explode( 'icons */' , $response['body'] );
1310
  .dropdown-toggle .caret { border-top-color: #333 !important; }
1311
  .ui-datepicker-prev:hover, .ui-datepicker-next:hover { cursor: pointer; }
1312
  </style>
1313
+
1314
  <!-- start the font awesome icon select -->
1315
  <select class="selectpicker" name="<?php echo $field['id']; ?>" id="<?php echo $field['id']; ?>">
1316
 
1383
  $this->timeline_express_optionVal['announcement-box-shadow-color'] = "#B9C5CD";
1384
  $this->timeline_express_optionVal['announcement-background-line-color'] = '#D7E4ED';
1385
  $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] = '0';
1386
+ $this->timeline_express_optionVal['announcement-appear-in-searches'] = 'true';
1387
  return update_option( TIMELINE_EXPRESS_OPTION, $this->timeline_express_optionVal );
1388
  }
1389
 
languages/timeline-express-de_DE.mo ADDED
Binary file
languages/timeline-express-de_DE.po ADDED
@@ -0,0 +1,811 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 Timeline Express
2
+ # This file is distributed under the same license as the Timeline Express package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Timeline Express 1.0.9\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/timeline-express\n"
7
+ "POT-Creation-Date: 2014-11-19 17:43:58+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2015-02-17 22:29+0100\n"
12
+ "Last-Translator: MiXiM <mixim@mixim.de>\n"
13
+ "Language-Team: MiXiM <mixim@mixim.de>\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "Language: de_DE\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+
19
+ #: classes/class.timeline-express.php:234
20
+ msgid "Announcement Info."
21
+ msgstr "Titel der Ankündigungen"
22
+
23
+ #: classes/class.timeline-express.php:242
24
+ msgid "Announcement Color"
25
+ msgstr "Farbe für Ankündigungen"
26
+
27
+ #: classes/class.timeline-express.php:243
28
+ msgid "select the color for this announcement."
29
+ msgstr "Farbe für diese Ankündigung"
30
+
31
+ #: classes/class.timeline-express.php:251
32
+ msgid "Font Awesome Unicode"
33
+ msgstr "Font Awesome Unicode"
34
+
35
+ #: classes/class.timeline-express.php:252
36
+ msgid ""
37
+ "enter the font-awesome class name in the box above. This is used for the "
38
+ "icon associated with the announcement. <a href=\"http://fortawesome.github."
39
+ "io/Font-Awesome/cheatsheet/\" target=\"_blank\">cheat sheet</a> Example : "
40
+ "\"fa-times-circle\" "
41
+ msgstr ""
42
+ "Font-Awesome Class Name. Dieser bestimmt den Icon der Ankündigung. <a href="
43
+ "\"http://fortawesome.github.io/Font-Awesome/cheatsheet/\" target=\"_blank"
44
+ "\">Vorschau</a> Default: \"fa-times-circle\" "
45
+
46
+ #: classes/class.timeline-express.php:260
47
+ msgid "Announcement Date"
48
+ msgstr "Datum der Ankündigung"
49
+
50
+ #: classes/class.timeline-express.php:261
51
+ msgid ""
52
+ "enter the date of the announcement. the announcements will appear in "
53
+ "chronological order according to this date. "
54
+ msgstr ""
55
+ "Trage das Datum (Format: MM/DD/JJJJ) der Ankündigung ein. Die Ankündigungen "
56
+ "erscheinen in chronologischer Reihenfolge dieser Datumseinträge."
57
+
58
+ #: classes/class.timeline-express.php:269
59
+ msgid "Announcement Image"
60
+ msgstr "Bild für diese Ankündigung"
61
+
62
+ #: classes/class.timeline-express.php:270
63
+ msgid ""
64
+ "select a banner image for this announcement (optional). (recommended 650px "
65
+ "wide or larger) "
66
+ msgstr ""
67
+ "Wähle ein Bild für diese Ankündigung (optional). (Empfohlene Breite: 650px "
68
+ "oder mehr)"
69
+
70
+ #: classes/class.timeline-express.php:281
71
+ msgid "About"
72
+ msgstr "Über Timeline Express"
73
+
74
+ #: classes/class.timeline-express.php:308
75
+ msgid "Enter Announcement Title"
76
+ msgstr "Trage den Titel der Ankündigung ein"
77
+
78
+ #: classes/class.timeline-express.php:316
79
+ msgctxt "column name"
80
+ msgid "Announcement Name"
81
+ msgstr "Name de Ankündigung"
82
+
83
+ #: classes/class.timeline-express.php:317
84
+ msgctxt "column name"
85
+ msgid "Color"
86
+ msgstr "Farbe"
87
+
88
+ #: classes/class.timeline-express.php:318
89
+ msgctxt "column name"
90
+ msgid "Icon"
91
+ msgstr "Icon"
92
+
93
+ #: classes/class.timeline-express.php:319
94
+ msgctxt "column name"
95
+ msgid "Announcement Date"
96
+ msgstr "Datum der Ankündigung"
97
+
98
+ #: classes/class.timeline-express.php:320
99
+ msgctxt "column name"
100
+ msgid "Image"
101
+ msgstr "Bild"
102
+
103
+ #: classes/class.timeline-express.php:321
104
+ msgctxt "column name"
105
+ msgid "Announcment Past?"
106
+ msgstr "Ankündigung History?"
107
+
108
+ #: classes/class.timeline-express.php:526
109
+ #: classes/class.timeline-express.php:533
110
+ msgid "Back"
111
+ msgstr "Zurück"
112
+
113
+ #: classes/class.timeline-express.php:792
114
+ #: classes/class.timeline-express.php:799
115
+ #: classes/class.timeline-express.php:812
116
+ msgid "..."
117
+ msgstr "..."
118
+
119
+ #: classes/class.timeline-express.php:844
120
+ msgid "&hellip;"
121
+ msgstr "&hellip;"
122
+
123
+ #. translators: If your word count is based on single characters (East Asian
124
+ #. characters),
125
+ #. enter 'characters'. Otherwise, enter 'words'. Do not translate into
126
+ #. your own language.
127
+ #: classes/class.timeline-express.php:848
128
+ msgctxt "word count: words or characters?"
129
+ msgid "words"
130
+ msgstr "words"
131
+
132
+ #: classes/class.timeline-express.php:882 pages/options.php:179
133
+ msgid "Timeline Express Settings"
134
+ msgstr "Timeline Express - Einstellungen"
135
+
136
+ #: classes/class.timeline-express.php:882
137
+ msgid "Timline Express"
138
+ msgstr "Timline Express"
139
+
140
+ #: classes/class.timeline-express.php:884
141
+ msgid "Timeline Express Welcome"
142
+ msgstr "Timeline Express - Willkommen"
143
+
144
+ #: lib/metabox/about-template.php:38
145
+ msgid "Help!"
146
+ msgstr "Hilfe!"
147
+
148
+ #: lib/metabox/about-template.php:39
149
+ msgid "Review"
150
+ msgstr "Beurteilung"
151
+
152
+ #: lib/metabox/about-template.php:40
153
+ msgid "Donate"
154
+ msgstr "Spende"
155
+
156
+ #: lib/metabox/about-template.php:50
157
+ msgid "this plugin was made with "
158
+ msgstr "dieses Plugin wurde ersttellt mit"
159
+
160
+ #: lib/metabox/about-template.php:50 pages/welcome.php:98
161
+ msgid "by"
162
+ msgstr "von"
163
+
164
+ #: lib/metabox/example-functions.php:25
165
+ msgid "Test Metabox"
166
+ msgstr "Test Metabox"
167
+
168
+ #: lib/metabox/example-functions.php:33 lib/metabox/example-functions.php:254
169
+ msgid "Test Text"
170
+ msgstr "Test Text"
171
+
172
+ #: lib/metabox/example-functions.php:34 lib/metabox/example-functions.php:42
173
+ #: lib/metabox/example-functions.php:49 lib/metabox/example-functions.php:56
174
+ #: lib/metabox/example-functions.php:64 lib/metabox/example-functions.php:71
175
+ #: lib/metabox/example-functions.php:83 lib/metabox/example-functions.php:89
176
+ #: lib/metabox/example-functions.php:96 lib/metabox/example-functions.php:102
177
+ #: lib/metabox/example-functions.php:108 lib/metabox/example-functions.php:116
178
+ #: lib/metabox/example-functions.php:123 lib/metabox/example-functions.php:129
179
+ #: lib/metabox/example-functions.php:135 lib/metabox/example-functions.php:147
180
+ #: lib/metabox/example-functions.php:158 lib/metabox/example-functions.php:169
181
+ #: lib/metabox/example-functions.php:180 lib/metabox/example-functions.php:187
182
+ #: lib/metabox/example-functions.php:194 lib/metabox/example-functions.php:201
183
+ #: lib/metabox/example-functions.php:207 lib/metabox/example-functions.php:218
184
+ #: lib/metabox/example-functions.php:255 lib/metabox/example-functions.php:274
185
+ #: lib/metabox/example-functions.php:281 lib/metabox/example-functions.php:288
186
+ #: lib/metabox/example-functions.php:294 lib/metabox/example-functions.php:300
187
+ #: lib/metabox/example-functions.php:306 lib/metabox/example-functions.php:312
188
+ msgid "field description (optional)"
189
+ msgstr "Feldbeschreibung (optional)"
190
+
191
+ #: lib/metabox/example-functions.php:41
192
+ msgid "Test Text Small"
193
+ msgstr "Teste die kleine Textgröße"
194
+
195
+ #: lib/metabox/example-functions.php:48
196
+ msgid "Test Text Medium"
197
+ msgstr "Teste die mittlere Textgröße"
198
+
199
+ #: lib/metabox/example-functions.php:55
200
+ msgid "Website URL"
201
+ msgstr "Website URL"
202
+
203
+ #: lib/metabox/example-functions.php:63
204
+ msgid "Test Text Email"
205
+ msgstr "Teste die eMail Textgröße"
206
+
207
+ #: lib/metabox/example-functions.php:70
208
+ msgid "Test Time"
209
+ msgstr "Teste die Zeit"
210
+
211
+ #: lib/metabox/example-functions.php:76 lib/metabox/example-functions.php:77
212
+ msgid "Time zone"
213
+ msgstr "Zeitzone"
214
+
215
+ #: lib/metabox/example-functions.php:82
216
+ msgid "Test Date Picker"
217
+ msgstr "Teste die Datumsauswahl"
218
+
219
+ #: lib/metabox/example-functions.php:88
220
+ msgid "Test Date Picker (UNIX timestamp)"
221
+ msgstr "Teste die Datumsauswahl (UNIX Zeitstempel)"
222
+
223
+ #: lib/metabox/example-functions.php:95
224
+ msgid "Test Date/Time Picker Combo (UNIX timestamp)"
225
+ msgstr "Teste die Datums-/Zeitauswahl (UNIX Zeitstempel)"
226
+
227
+ #: lib/metabox/example-functions.php:101
228
+ msgid "Test Date/Time Picker/Time zone Combo (serialized DateTime object)"
229
+ msgstr ""
230
+ "Teste die Datums-/Zeit-/Zeitzonen-Auswahl (serialisiertes Datum-/Zeit Objekt)"
231
+
232
+ #: lib/metabox/example-functions.php:107
233
+ msgid "Test Money"
234
+ msgstr "Teste die Währungseinstellung"
235
+
236
+ #: lib/metabox/example-functions.php:115
237
+ msgid "Test Color Picker"
238
+ msgstr "Testedie Farbauswal"
239
+
240
+ #: lib/metabox/example-functions.php:122
241
+ msgid "Test Text Area"
242
+ msgstr "Teste das Text-Eingabefeld"
243
+
244
+ #: lib/metabox/example-functions.php:128
245
+ msgid "Test Text Area Small"
246
+ msgstr "Teste das kleine Text-Eingabefeld"
247
+
248
+ #: lib/metabox/example-functions.php:134
249
+ msgid "Test Text Area for Code"
250
+ msgstr "Teste das Text-Eingabefeld für Code"
251
+
252
+ #: lib/metabox/example-functions.php:140
253
+ msgid "Test Title Weeeee"
254
+ msgstr "Teste den Titel Weeeee"
255
+
256
+ #: lib/metabox/example-functions.php:141
257
+ msgid "This is a title description"
258
+ msgstr "Das ist die Titelbeschreibung"
259
+
260
+ #: lib/metabox/example-functions.php:146
261
+ msgid "Test Select"
262
+ msgstr "Teste dasAuswahlfeld"
263
+
264
+ #: lib/metabox/example-functions.php:151 lib/metabox/example-functions.php:162
265
+ #: lib/metabox/example-functions.php:173
266
+ msgid "Option One"
267
+ msgstr "Option eins"
268
+
269
+ #: lib/metabox/example-functions.php:152 lib/metabox/example-functions.php:163
270
+ #: lib/metabox/example-functions.php:174
271
+ msgid "Option Two"
272
+ msgstr "Option zwei"
273
+
274
+ #: lib/metabox/example-functions.php:153 lib/metabox/example-functions.php:164
275
+ #: lib/metabox/example-functions.php:175
276
+ msgid "Option Three"
277
+ msgstr "Option drei"
278
+
279
+ #: lib/metabox/example-functions.php:157
280
+ msgid "Test Radio inline"
281
+ msgstr "Teste Radio-Button (inline)"
282
+
283
+ #: lib/metabox/example-functions.php:168
284
+ msgid "Test Radio"
285
+ msgstr "Teste den Radio-Button"
286
+
287
+ #: lib/metabox/example-functions.php:179
288
+ msgid "Test Taxonomy Radio"
289
+ msgstr "Teste den Taxonomy-Radio-Button"
290
+
291
+ #: lib/metabox/example-functions.php:186
292
+ msgid "Test Taxonomy Select"
293
+ msgstr "Teste das Taxonomy-Auswahlfeld"
294
+
295
+ #: lib/metabox/example-functions.php:193
296
+ msgid "Test Taxonomy Multi Checkbox"
297
+ msgstr "Teste die Taxonomy Multi-Checkbox-"
298
+
299
+ #: lib/metabox/example-functions.php:200
300
+ msgid "Test Checkbox"
301
+ msgstr "Teste die Checkbox"
302
+
303
+ #: lib/metabox/example-functions.php:206
304
+ msgid "Test Multi Checkbox"
305
+ msgstr "Teste die Multi-Checkbox"
306
+
307
+ #: lib/metabox/example-functions.php:211
308
+ msgid "Check One"
309
+ msgstr "Auswahl eins"
310
+
311
+ #: lib/metabox/example-functions.php:212
312
+ msgid "Check Two"
313
+ msgstr "Auswahl zwei"
314
+
315
+ #: lib/metabox/example-functions.php:213
316
+ msgid "Check Three"
317
+ msgstr "Auswahl drei"
318
+
319
+ #: lib/metabox/example-functions.php:217
320
+ msgid "Test wysiwyg"
321
+ msgstr "Teste Wysiwyg"
322
+
323
+ #: lib/metabox/example-functions.php:224
324
+ msgid "Test Image"
325
+ msgstr "Teste das Bild"
326
+
327
+ #: lib/metabox/example-functions.php:225
328
+ msgid "Upload an image or enter a URL."
329
+ msgstr "Lade ein Bild hoch oder gib eine Bild-URL ein"
330
+
331
+ #: lib/metabox/example-functions.php:230
332
+ msgid "Multiple Files"
333
+ msgstr "Mehrere Dateien"
334
+
335
+ #: lib/metabox/example-functions.php:231
336
+ msgid "Upload or add multiple images/attachments."
337
+ msgstr "Mehrere Bilder/Anhänge hochladen bzw. hinzufügen"
338
+
339
+ #: lib/metabox/example-functions.php:236
340
+ msgid "oEmbed"
341
+ msgstr "oEmbed"
342
+
343
+ #: lib/metabox/example-functions.php:237
344
+ msgid ""
345
+ "Enter a youtube, twitter, or instagram URL. Supports services listed at <a "
346
+ "href=\"http://codex.wordpress.org/Embeds\">http://codex.wordpress.org/"
347
+ "Embeds</a>."
348
+ msgstr ""
349
+ "Trage eine YouTube-, Twitter- of Instagram-URL ein. Unterstützte Services "
350
+ "sind unter <a href=\"http://codex.wordpress.org/Embeds\">http://codex."
351
+ "wordpress.org/Embeds</a> zu finden."
352
+
353
+ #: lib/metabox/example-functions.php:246
354
+ msgid "About Page Metabox"
355
+ msgstr "Über die Metabox-Seite"
356
+
357
+ #: lib/metabox/example-functions.php:267
358
+ msgid "User Profile Metabox"
359
+ msgstr "Benutzer-Profil Metabox"
360
+
361
+ #: lib/metabox/example-functions.php:273
362
+ msgid "Extra Info"
363
+ msgstr "Extra Information"
364
+
365
+ #: lib/metabox/example-functions.php:280
366
+ msgid "Avatar"
367
+ msgstr "Avatar"
368
+
369
+ #: lib/metabox/example-functions.php:287
370
+ msgid "Facebook URL"
371
+ msgstr "Facebook URL"
372
+
373
+ #: lib/metabox/example-functions.php:293
374
+ msgid "Twitter URL"
375
+ msgstr "Twitter URL"
376
+
377
+ #: lib/metabox/example-functions.php:299
378
+ msgid "Google+ URL"
379
+ msgstr "Google+ URL"
380
+
381
+ #: lib/metabox/example-functions.php:305
382
+ msgid "Linkedin URL"
383
+ msgstr "Linkedin URL"
384
+
385
+ #: lib/metabox/example-functions.php:311
386
+ msgid "User Field"
387
+ msgstr "Benutzerfeld"
388
+
389
+ #: lib/metabox/helpers/timeline_express_MetaBox_ajax.php:47
390
+ msgid "Please Try Again"
391
+ msgstr "Bitte nochmals versucen"
392
+
393
+ #: lib/metabox/helpers/timeline_express_MetaBox_ajax.php:118
394
+ msgid "Remove Embed"
395
+ msgstr "Entferne Einbettung"
396
+
397
+ #: lib/metabox/helpers/timeline_express_MetaBox_ajax.php:121
398
+ msgid "No oEmbed Results Found for %s. View more info at"
399
+ msgstr "Keine oEmbed Resultate gefunden für %s. Mehr Informationen unter"
400
+
401
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:139
402
+ msgid "Add Row"
403
+ msgstr "Zeile hinzufügen"
404
+
405
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:167
406
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:463
407
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:506
408
+ msgid "Remove"
409
+ msgstr "Entfernen"
410
+
411
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:441
412
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:479
413
+ msgid "Add or Upload File"
414
+ msgstr "Hinzufügen/Hochladen einer Datei"
415
+
416
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:452
417
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:498
418
+ msgid "Remove Image"
419
+ msgstr "Entferne Bild"
420
+
421
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:463
422
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:506
423
+ msgid "File:"
424
+ msgstr "Datei:"
425
+
426
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:463
427
+ #: lib/metabox/helpers/timeline_express_MetaBox_types.php:506
428
+ msgid "Download"
429
+ msgstr "Download"
430
+
431
+ #: lib/metabox/init.php:207
432
+ msgid "Clear"
433
+ msgstr "Löschen"
434
+
435
+ #: lib/metabox/init.php:208
436
+ msgid "Default"
437
+ msgstr "Standard"
438
+
439
+ #: lib/metabox/init.php:209
440
+ msgid "Select Color"
441
+ msgstr "Wähle Farbe"
442
+
443
+ #: lib/metabox/init.php:210
444
+ msgid "Current Color"
445
+ msgstr "Aktuelle Farbe"
446
+
447
+ #: lib/metabox/init.php:936
448
+ msgid "Save"
449
+ msgstr "Speichern"
450
+
451
+ #: pages/options.php:27
452
+ msgid "The options were saved successfully!"
453
+ msgstr "Die Einstellungen wurden gespeichert!"
454
+
455
+ #: pages/options.php:30
456
+ msgid "The options could not be saved (or you did not change them)."
457
+ msgstr ""
458
+ "Die Einstellungen wurden nicht gespeichert (oder es wurden keine Änderungen "
459
+ "gemacht)"
460
+
461
+ #: pages/options.php:45
462
+ msgid ""
463
+ "Are you sure you want to revert 'Timeline Express' settings? This cannot be "
464
+ "undone."
465
+ msgstr ""
466
+ "Sollen die 'Timeline Express' Einstellungen wirklich zurückgesetzt werden? "
467
+ "Diese Aktion kann nicht rückgängig gemacht werden."
468
+
469
+ #: pages/options.php:58
470
+ msgid "Timeline Express settings have successfully been reset"
471
+ msgstr "Die Timeline Express Einstellungen wurden erfogreich zurückgesetzt"
472
+
473
+ #: pages/options.php:144
474
+ msgid "Please Consider"
475
+ msgstr "Bitte beachten"
476
+
477
+ #: pages/options.php:145
478
+ msgid "Making a Donation"
479
+ msgstr "Spenden"
480
+
481
+ #: pages/options.php:153
482
+ msgid "Need Help?"
483
+ msgstr "Hilfe benötigt?"
484
+
485
+ #: pages/options.php:154
486
+ msgid "Get Support Now!"
487
+ msgstr "Sofortige Unterstützung!"
488
+
489
+ #: pages/options.php:162
490
+ msgid "Loving the plugin?"
491
+ msgstr "Magst du das Plugin?"
492
+
493
+ #: pages/options.php:163
494
+ msgid "Leave us a nice review"
495
+ msgstr "Gib eine kurze Bewertung ab"
496
+
497
+ #. Plugin Name of the plugin/theme
498
+ #: pages/options.php:175
499
+ msgid "Timeline Express"
500
+ msgstr "Timeline Express"
501
+
502
+ #: pages/options.php:193
503
+ msgid "Timeline Title"
504
+ msgstr "Titel der Timeline"
505
+
506
+ #: pages/options.php:197
507
+ msgid "Left"
508
+ msgstr "Links"
509
+
510
+ #: pages/options.php:198
511
+ msgid "Center"
512
+ msgstr "Mitte"
513
+
514
+ #: pages/options.php:199
515
+ msgid "Right"
516
+ msgstr "Rechts"
517
+
518
+ #: pages/options.php:202
519
+ msgid "H1"
520
+ msgstr "H1"
521
+
522
+ #: pages/options.php:203
523
+ msgid "H2"
524
+ msgstr "H2"
525
+
526
+ #: pages/options.php:204
527
+ msgid "H3"
528
+ msgstr "H3"
529
+
530
+ #: pages/options.php:205
531
+ msgid "H4"
532
+ msgstr "H4"
533
+
534
+ #: pages/options.php:213
535
+ msgid ""
536
+ "Enter the title for the time line // Select the alignment // Select the font "
537
+ "size"
538
+ msgstr ""
539
+ "Wähle den Timeline-Titel // Wähle die Ausrichtung // Wähle die Text-Größe."
540
+
541
+ #: pages/options.php:218
542
+ msgid "Time Frame"
543
+ msgstr "Zeitspanne"
544
+
545
+ #: pages/options.php:221
546
+ msgid "Future Events"
547
+ msgstr "Zukünftige Ankündigungen"
548
+
549
+ #: pages/options.php:222
550
+ msgid "All Events (past+future)"
551
+ msgstr "Alle Ankündigungen (vergangene + zukünftige)"
552
+
553
+ #: pages/options.php:223
554
+ msgid "Past Events"
555
+ msgstr "Vergangene Ankündigungen"
556
+
557
+ #: pages/options.php:231
558
+ msgid "Select the time frame to query events from."
559
+ msgstr "Wähle die Zeitspanne für die Auswahl der Ankündigungen."
560
+
561
+ #: pages/options.php:236
562
+ msgid "Display Order"
563
+ msgstr "Anzeige-Sortierung"
564
+
565
+ #: pages/options.php:239
566
+ msgid "Ascending"
567
+ msgstr "Aufsteigend"
568
+
569
+ #: pages/options.php:240
570
+ msgid "Descending"
571
+ msgstr "Absteigend"
572
+
573
+ #: pages/options.php:248
574
+ msgid ""
575
+ "Select the order you would like the announcements to display. Ascending : "
576
+ "Chronological order by announcement date. Descending : Reverse chronological "
577
+ "order by announcement date."
578
+ msgstr ""
579
+ "Wähle die Reihenfolge in der die Ankündigungen angezeigt werden sollen. "
580
+ "Aufsteigend: Chronologisch auf Basis des Ankündigung-Datum. Absteigend: "
581
+ "Umgekehrt chronologisch auf Basis des Ankündigung-Datum."
582
+
583
+ #: pages/options.php:253
584
+ msgid "Announcement Exceprt Length"
585
+ msgstr "Länge der Ankündigung-Kurzform"
586
+
587
+ #: pages/options.php:262
588
+ msgid ""
589
+ "set the length of the excerpt for each announcement. ( min=25;max=200 eg: 50 "
590
+ "= 50 characters )"
591
+ msgstr ""
592
+ "Trage die Länge für jede Ankündigung-Kurzform ein (min=25 ; max=200 zB.: 50 "
593
+ "= 50 Zeichen)."
594
+
595
+ #: pages/options.php:267
596
+ msgid "Date Visibility"
597
+ msgstr "Datum sichtbar"
598
+
599
+ #: pages/options.php:270 pages/options.php:287
600
+ msgid "Visible"
601
+ msgstr "Sichtbar"
602
+
603
+ #: pages/options.php:271 pages/options.php:288
604
+ msgid "Hidden"
605
+ msgstr "Verborgen"
606
+
607
+ #: pages/options.php:279
608
+ msgid "toggle the visibility of the date next to the icon."
609
+ msgstr "Sichtbarkeit des Datum neben dem Icon umschalten."
610
+
611
+ #: pages/options.php:284
612
+ msgid "Read More Visibility"
613
+ msgstr "Mehr zur Sichtbarkeit"
614
+
615
+ #: pages/options.php:296
616
+ msgid ""
617
+ "toggle the visibility of the read more button. hide to prevent users from "
618
+ "viewing the full announcement."
619
+ msgstr ""
620
+ "Sichtbarkeit des 'Mehr...'-Button. Ausschalten um die Seite mit dem "
621
+ "vollständigen Text der Ankündigung zu verbergen. "
622
+
623
+ #: pages/options.php:301
624
+ msgid "Default Icon"
625
+ msgstr "Standard Icon"
626
+
627
+ #: pages/options.php:310
628
+ msgid ""
629
+ "Enter the font-awesome class name that you would like to use a default icon "
630
+ "for new events. ie: fa-clock-alt"
631
+ msgstr ""
632
+ "Font-Awasome Class-Name der als Default-Icon für neue Ankündigungen genutzt "
633
+ "werden soll, zB.: fa-clock-alt"
634
+
635
+ #: pages/options.php:315
636
+ msgid "Default Announcement Color"
637
+ msgstr "Standard Farbe neuer Ankündigungen"
638
+
639
+ #: pages/options.php:324
640
+ msgid ""
641
+ "Select the default color for all new events. Note : this setting can be "
642
+ "overwritten"
643
+ msgstr ""
644
+ "Standard-Farbe für alle neuen Ankündigungen. Beachte: diese Einstellung kann "
645
+ "überschrieben werden."
646
+
647
+ #: pages/options.php:329
648
+ msgid "Announcement Container Background"
649
+ msgstr "Hintergrundfarbe des Ankündigung-Container"
650
+
651
+ #: pages/options.php:338
652
+ msgid "Select the background color of the announcement container."
653
+ msgstr "Wähle die Hintergrundfarbe des Ankündigung-Container."
654
+
655
+ #: pages/options.php:343
656
+ msgid "Announcement Shadow Color"
657
+ msgstr "Schattenfarbe des Ankündigung-Container"
658
+
659
+ #: pages/options.php:352
660
+ msgid "Select the shadow color for the announcement container."
661
+ msgstr "Wähle die Schattenfarbe des Ankündigung-Container."
662
+
663
+ #: pages/options.php:357
664
+ msgid "Background Line Color"
665
+ msgstr "Hintergrund Linien-Farbe"
666
+
667
+ #: pages/options.php:366
668
+ msgid "Select the color of the line in the background of the timeline."
669
+ msgstr "Wähle die Linien-Farbe im Hintergrund der Timeline."
670
+
671
+ #: pages/options.php:371
672
+ msgid "No Events Message"
673
+ msgstr "Text für 'Kein Event'"
674
+
675
+ #: pages/options.php:380
676
+ msgid "This is the message that will display when no announcements are found."
677
+ msgstr "Dies ist der Text wenn keine Ankündigung gefunden werden kann."
678
+
679
+ #: pages/options.php:385
680
+ msgid "Delete Announcements On Uninstall?"
681
+ msgstr "Alle Ankündigungen löschen nach der Deinstallation?"
682
+
683
+ #: pages/options.php:394
684
+ msgid ""
685
+ "select this to delete all announcement posts from the data base on plugin "
686
+ "uninstallation. this can not be undone, once they are deleted they are gone "
687
+ "forever. If you want to keep them, export your announcements before "
688
+ "uninstalling."
689
+ msgstr ""
690
+ "Mit dieser Option werden alle Ankündigungen aus der Datenbank gelöscht, wenn "
691
+ "das Timeline Express Plugin deinstalliert wird. Das Löschen aus der "
692
+ "Datenbank kann nicht rückgängig gemacht werden. Die Ankündigungen können vor "
693
+ "der Deinstallation exportiert und gesichert werden."
694
+
695
+ #: pages/options.php:399
696
+ msgid "Save Settings"
697
+ msgstr "Einstellungen speichern"
698
+
699
+ #: pages/options.php:399
700
+ msgid "Reset Plugin Settings"
701
+ msgstr "Plugin-Einstellungen zurücksetzen"
702
+
703
+ #: pages/welcome.php:42
704
+ msgid "Welcome to Timeline Express"
705
+ msgstr "Willkommen zum Timeline Express Plugin"
706
+
707
+ #: pages/welcome.php:45
708
+ msgid ""
709
+ "Thanks for installing Timeline Express. We know you're going to find this "
710
+ "free plugin super helpful and easy to use! To get started, hover over "
711
+ "'Timeline Express', in the admin menu, and click"
712
+ msgstr ""
713
+ "Vielen Dank für die Installation des Timeline Express Plugin. Wir sind "
714
+ "sicher, daß dieses Plugin hilfreich und einfach zu handhaben sein wird. Zum "
715
+ "Start, klicke mit der Maus auf 'Timeline Express' im Admin-Menu"
716
+
717
+ #: pages/welcome.php:45
718
+ msgid "'New Announcement'"
719
+ msgstr "'Neue Ankündigung'"
720
+
721
+ #: pages/welcome.php:45
722
+ msgid " to start adding announcements your timeline!"
723
+ msgstr "Zum Beginn füge Ankündigungen deiner Timeline hinzu!"
724
+
725
+ #: pages/welcome.php:47
726
+ msgid "or head over to the"
727
+ msgstr "oder gehe zu"
728
+
729
+ #: pages/welcome.php:47
730
+ msgid "Settings Page"
731
+ msgstr "Einstellungen"
732
+
733
+ #: pages/welcome.php:47
734
+ msgid "to customize and style your form"
735
+ msgstr "um die Formulare und den Stil anzupassen"
736
+
737
+ #: pages/welcome.php:56
738
+ msgid "Create a Beautiful Timeline In Minutes"
739
+ msgstr "Erstelle eine schöne und ansprechende Timeline in wenigen Minuten"
740
+
741
+ #: pages/welcome.php:57
742
+ msgid ""
743
+ "Create a vertical and responsive, CSS3 animated timeline fast...without ever "
744
+ "writing a single line of code."
745
+ msgstr ""
746
+ "Erstelle schnell und einfach eine vertikale und responsive, CSS3 animierte "
747
+ "Timeline .... ohne eine einzige Zeile Code zu schreiben."
748
+
749
+ #: pages/welcome.php:60
750
+ msgid "Font Awesome Included"
751
+ msgstr "Inclusive Font Awesome"
752
+
753
+ #: pages/welcome.php:61
754
+ msgid ""
755
+ "Hundreds of icons to choose from to make your announcements really stand out!"
756
+ msgstr ""
757
+ "Wähle aus hunderten von Icons um deine Ankündigungen auffallend und "
758
+ "einzigartig zu gestalten!"
759
+
760
+ #: pages/welcome.php:70
761
+ msgid "Intuitive Custom Post Creation Screen"
762
+ msgstr "Intuitive konfigurierbare Nachbearbeitungsseite"
763
+
764
+ #: pages/welcome.php:74
765
+ msgid "Manange Announcements Easily"
766
+ msgstr "Manage deine Ankündigungen einfach"
767
+
768
+ #: pages/welcome.php:78
769
+ msgid "Stylize The Timeline"
770
+ msgstr "Passe den Style deiner Timeline an"
771
+
772
+ #: pages/welcome.php:86
773
+ msgid "Timeline Express // Sample Timeline"
774
+ msgstr "Timeline Express // Beispiel Zeitleiste"
775
+
776
+ #: pages/welcome.php:98
777
+ msgid "this free plugin was made with"
778
+ msgstr "dieses freie Plugin wurde erstellt mit"
779
+
780
+ #: pages/welcome.php:98
781
+ msgid "Please consider making a"
782
+ msgstr "Bitte überdenken Sie eine "
783
+
784
+ #: pages/welcome.php:98
785
+ msgid "donation"
786
+ msgstr "Spende"
787
+
788
+ #: pages/welcome.php:98
789
+ msgid "if you need support in any way."
790
+ msgstr "wenn Du Unterstützung benötigst."
791
+
792
+ #: pages/welcome.php:102
793
+ msgid "Keep Up With Me Elsewhere "
794
+ msgstr "Nimm Kontakt mit mir auf"
795
+
796
+ #. Plugin URI of the plugin/theme
797
+ #. Author URI of the plugin/theme
798
+ msgid "http://www.evan-herman.com"
799
+ msgstr "http://www.evan-herman.com"
800
+
801
+ #. Description of the plugin/theme
802
+ msgid ""
803
+ "Create a beautiful vertical, CSS3 animated and responsive timeline in "
804
+ "minutes flat without writing code."
805
+ msgstr ""
806
+ "Erstelle schnell und einfach eine vertikale und responsive, CSS3 animierte "
807
+ "Timeline, ohne eine einzige Zeile Code zu schreiben."
808
+
809
+ #. Author of the plugin/theme
810
+ msgid "Evan Herman"
811
+ msgstr "Evan Herman"
pages/options.php CHANGED
@@ -130,9 +130,6 @@ function toggle_delete_checkbox() {
130
  'textarea_name' => 'no-events-message',
131
  'drag_drop_upload' => true
132
  );
133
-
134
- // used to dictate the active tab
135
- $active_tab = isset( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : 'settings';
136
  ?>
137
  <div class="wrap">
138
 
@@ -179,9 +176,6 @@ function toggle_delete_checkbox() {
179
 
180
  <div class="timeline-express-status" id="timeline-express-status"></div>
181
 
182
- <?php if ( $active_tab == 'settings' ) { ?>
183
-
184
-
185
  <form method="post" name="timeline-express-form" id="timeline-express-form">
186
  <table class="form-table timeline-express-form">
187
  <tbody>
@@ -298,14 +292,17 @@ function toggle_delete_checkbox() {
298
  <!-- Default Announcement Icon -->
299
  <th scope="row"><label for="default-announcement-icon"><?php _e('Default Icon','timeline-express'); ?></label></th>
300
  <td>
301
- <input name="default-announcement-icon" type="text" id="default-announcement-icon" value="<?php echo $this->timeline_express_optionVal['default-announcement-icon']; ?>" class="regular-text" />
 
 
 
302
  </td>
303
  </tr>
304
  <tr>
305
  <td></td>
306
  <!-- Default Announcement Icon Description -->
307
  <td class="timeline-express-settings-description">
308
- <?php _e('Enter the font-awesome class name that you would like to use a default icon for new events. ie: fa-clock-alt','timeline-express'); ?> <a href="http://fortawesome.github.io/Font-Awesome/cheatsheet/" target="_blank" style="font-size:12px;font-style:em;">cheat sheet</a>
309
  </td>
310
  </tr>
311
  <tr valign="top">
@@ -379,7 +376,24 @@ function toggle_delete_checkbox() {
379
  </td>
380
  </tr>
381
  <tr valign="top">
382
- <!-- Background Line Color -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
383
  <th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('Delete Announcements On Uninstall?','timeline-express'); ?></label></th>
384
  <td>
385
  <input type="checkbox" name="delete-announcement-posts-on-uninstallation" onclick="toggleDeleteCheckClass();" <?php checked( $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] , '1' ); ?> value="1" /><span class="<?php if( $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] == '0' ) { ?> delete-no <?php } else { ?> delete-yes <?php } ?>" onclick="toggle_delete_checkbox();"></span>
@@ -387,7 +401,7 @@ function toggle_delete_checkbox() {
387
  </tr>
388
  <tr>
389
  <td></td>
390
- <!-- Background Line Color Description -->
391
  <td class="timeline-express-settings-description">
392
  <?php _e('Select this to delete all announcement posts from the data base on plugin uninstallation. this can not be undone, once they are deleted they are gone forever. If you want to keep them, export your announcements before uninstalling.','timeline-express'); ?>
393
  </td>
@@ -401,7 +415,5 @@ function toggle_delete_checkbox() {
401
  </table>
402
  </form>
403
 
404
- <?php } ?>
405
-
406
  </div>
407
  <!-- end Timeline Express settings page -->
130
  'textarea_name' => 'no-events-message',
131
  'drag_drop_upload' => true
132
  );
 
 
 
133
  ?>
134
  <div class="wrap">
135
 
176
 
177
  <div class="timeline-express-status" id="timeline-express-status"></div>
178
 
 
 
 
179
  <form method="post" name="timeline-express-form" id="timeline-express-form">
180
  <table class="form-table timeline-express-form">
181
  <tbody>
292
  <!-- Default Announcement Icon -->
293
  <th scope="row"><label for="default-announcement-icon"><?php _e('Default Icon','timeline-express'); ?></label></th>
294
  <td>
295
+ <?php
296
+ // display our dropdown, pass in the ID, and empty desc.
297
+ echo $this->timeline_express_build_bootstrap_dropdown( array( 'id' => 'default-announcement-icon' , 'desc' => '' ) , 'fa-'.$this->timeline_express_optionVal['default-announcement-icon'] );
298
+ ?>
299
  </td>
300
  </tr>
301
  <tr>
302
  <td></td>
303
  <!-- Default Announcement Icon Description -->
304
  <td class="timeline-express-settings-description">
305
+ <?php _e('Select the font-awesome class name that you would like to use a default icon for new events in the dropdown above.','timeline-express'); ?> <a href="http://fortawesome.github.io/Font-Awesome/cheatsheet/" target="_blank" style="font-size:12px;font-style:em;">cheat sheet</a>
306
  </td>
307
  </tr>
308
  <tr valign="top">
376
  </td>
377
  </tr>
378
  <tr valign="top">
379
+ <!-- Publicly Query Timeline Announcements Checkbox -->
380
+ <th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('Announcements Appear In Searches','timeline-express'); ?></label></th>
381
+ <td>
382
+ <select name="announcement-appear-in-searches" id="announcement-appear-in-searches" class="regular-text" />
383
+ <option value="true"<?php echo ($this->timeline_express_optionVal['announcement-appear-in-searches'] === 'true' ? ' selected' : ''); ?>><?php _e('True','timeline-express'); ?></option>
384
+ <option value="false"<?php echo ($this->timeline_express_optionVal['announcement-appear-in-searches'] === 'false' ? ' selected' : ''); ?>><?php _e('False','timeline-express'); ?></option>
385
+ </select>
386
+ </td>
387
+ </tr>
388
+ <tr>
389
+ <td></td>
390
+ <!-- Delete Announcements On Uninstall Checkbox Description -->
391
+ <td class="timeline-express-settings-description">
392
+ <?php _e('Set to true to display announcements in site searches. False will disable announcements from appearing in site searchs.','timeline-express'); ?>
393
+ </td>
394
+ </tr>
395
+ <tr valign="top">
396
+ <!-- Delete Announcements On Uninstall Checkbox -->
397
  <th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('Delete Announcements On Uninstall?','timeline-express'); ?></label></th>
398
  <td>
399
  <input type="checkbox" name="delete-announcement-posts-on-uninstallation" onclick="toggleDeleteCheckClass();" <?php checked( $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] , '1' ); ?> value="1" /><span class="<?php if( $this->timeline_express_optionVal['delete-announcement-posts-on-uninstallation'] == '0' ) { ?> delete-no <?php } else { ?> delete-yes <?php } ?>" onclick="toggle_delete_checkbox();"></span>
401
  </tr>
402
  <tr>
403
  <td></td>
404
+ <!-- Delete Announcements On Uninstall Checkbox Description -->
405
  <td class="timeline-express-settings-description">
406
  <?php _e('Select this to delete all announcement posts from the data base on plugin uninstallation. this can not be undone, once they are deleted they are gone forever. If you want to keep them, export your announcements before uninstalling.','timeline-express'); ?>
407
  </td>
415
  </table>
416
  </form>
417
 
 
 
418
  </div>
419
  <!-- end Timeline Express settings page -->
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: eherman24
3
  Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
4
  Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
5
  Requires at least: 3.9
6
- Tested up to: 4.1
7
- Stable tag: 1.1.5.7
8
  License: GPLv2 or later
9
 
10
  Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
@@ -39,6 +39,7 @@ Timeline express comes ready for translation. I would love to get things transla
39
  * Chinese (zh_CN) - thanks goes to <a href="http://www.vahichen.com" target="_blank">Vahi Chen</a>
40
  * Portuguese (pt_BR) - thanks goes to <a href="http://toborino.com" target="_blank">Gustavo Magalhães</a>
41
  * Polish (pl_PL) - thanks goes to Kanios
 
42
 
43
  <em>We're always looking for polyglots to help with the translations. If you enjoy this plugin, speak multiple languages and want to contribute please <a href="http://www.evan-herman.com/contact/" target="_blank">contact me</a> about how you can help translate things so users around the world can benefit from this plugin.</em>
44
 
@@ -87,7 +88,6 @@ If you enjoy this plugin and want to contribute, I'm always looking for people t
87
  * Arabic
88
  * English
89
  * French
90
- * German
91
  * Greek
92
  * Hebrew
93
  * Hindi
@@ -301,6 +301,12 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
301
 
302
  == Changelog ==
303
 
 
 
 
 
 
 
304
  = 1.1.5.7 - February 5th, 2015 =
305
  * Enhancement: Added a dropdown to select the font awesome icon
306
  * Enhancement: Fadded in the timeline after everything has initialized, to prevent seeing a messed up Timeline layout
@@ -414,6 +420,12 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
414
 
415
  == Upgrade Notice ==
416
 
 
 
 
 
 
 
417
  = 1.1.5.7 - February 5th, 2015 =
418
  * Message From The Author: Sorry for multiple updates on the same day. I was feeling ambitious and rolled out one patch to fix an issue and another with some new features. Enjoy :)
419
  * Enhancement: Added a dropdown to select the font awesome icon
3
  Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
4
  Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
5
  Requires at least: 3.9
6
+ Tested up to: 4.1.1
7
+ Stable tag: 1.1.5.8
8
  License: GPLv2 or later
9
 
10
  Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
39
  * Chinese (zh_CN) - thanks goes to <a href="http://www.vahichen.com" target="_blank">Vahi Chen</a>
40
  * Portuguese (pt_BR) - thanks goes to <a href="http://toborino.com" target="_blank">Gustavo Magalhães</a>
41
  * Polish (pl_PL) - thanks goes to Kanios
42
+ * German (de_DE) - thanks goes to <a href="http://www.fairsoft.koeln" target="_blank">Martin Gerlach</a>
43
 
44
  <em>We're always looking for polyglots to help with the translations. If you enjoy this plugin, speak multiple languages and want to contribute please <a href="http://www.evan-herman.com/contact/" target="_blank">contact me</a> about how you can help translate things so users around the world can benefit from this plugin.</em>
45
 
88
  * Arabic
89
  * English
90
  * French
 
91
  * Greek
92
  * Hebrew
93
  * Hindi
301
 
302
  == Changelog ==
303
 
304
+ = 1.1.5.8 - March 5th, 2015 =
305
+ * Enhancement: Upgraded font-awesome to 4.3.0
306
+ * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
307
+ * Enhancement: Added new setting to toggle Timeline posts from appearing in search queries on the front end (defaults to true)
308
+ * Enhancement: Packaged German translation - thanks to <a href="http://www.fairsoft.koeln" target="_blank">Martin Gerlach</a>
309
+
310
  = 1.1.5.7 - February 5th, 2015 =
311
  * Enhancement: Added a dropdown to select the font awesome icon
312
  * Enhancement: Fadded in the timeline after everything has initialized, to prevent seeing a messed up Timeline layout
420
 
421
  == Upgrade Notice ==
422
 
423
+ = 1.1.5.8 - March 5th, 2015 =
424
+ * Enhancement: Upgraded font-awesome to 4.3.0
425
+ * Enhancement: Added icon select dropdown on the settings page, to better mirror the post/page edit screens
426
+ * Enhancement: Added new setting to toggle Timeline posts from appearing in search queries on the front end (defaults to true)
427
+ * Enhancement: Packaged German translation - thanks to <a href="http://www.fairsoft.koeln" target="_blank">Martin Gerlach</a>
428
+
429
  = 1.1.5.7 - February 5th, 2015 =
430
  * Message From The Author: Sorry for multiple updates on the same day. I was feeling ambitious and rolled out one patch to fix an issue and another with some new features. Enjoy :)
431
  * Enhancement: Added a dropdown to select the font awesome icon
timeline-express.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Timeline Express
5
  Plugin URI: http://www.evan-herman.com
6
  Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
7
- Version: 1.1.5.7
8
  Author: Evan Herman
9
  Author URI: http://www.evan-herman.com
10
  License: GPL2
@@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  #_________________________________________________ CONSTANTS
29
 
30
  /** Configuration **/
31
- if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.7');
32
  if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
33
  if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
34
  if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));
4
  Plugin Name: Timeline Express
5
  Plugin URI: http://www.evan-herman.com
6
  Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
7
+ Version: 1.1.5.8
8
  Author: Evan Herman
9
  Author URI: http://www.evan-herman.com
10
  License: GPL2
28
  #_________________________________________________ CONSTANTS
29
 
30
  /** Configuration **/
31
+ if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.8');
32
  if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
33
  if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
34
  if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));