Version Description
- Added 'languages' folder for localization.
- Added an 'in_widget' attribute to tickers displayed in widgets.
- Updated 'sort' metaboxer code.
Download this release
Release Info
Developer | metaphorcreations |
Plugin | Ditty News Ticker |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- ditty-news-ticker.php +3 -3
- includes/edit-columns.php +4 -4
- includes/functions.php +16 -0
- includes/help.php +3 -3
- includes/meta-boxes.php +1 -1
- includes/metaboxer/metaboxer.php +11 -3
- includes/post-types.php +11 -11
- includes/widget.php +5 -2
- languages/ditty-news-ticker-en_US.mo +0 -0
- languages/ditty-news-ticker-en_US.po +660 -0
- readme.txt +9 -1
ditty-news-ticker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ditty News Ticker
|
4 |
Plugin URI: http://dittynewsticker.com/
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
-
Version: 1.0.
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
@@ -45,9 +45,9 @@ The icons are licensed under a Creative Commons Attribution
|
|
45 |
* @since 1.0.0
|
46 |
*/
|
47 |
if ( WP_DEBUG ) {
|
48 |
-
define ( 'MTPHR_DNT_VERSION', '1.0.
|
49 |
} else {
|
50 |
-
define ( 'MTPHR_DNT_VERSION', '1.0.
|
51 |
}
|
52 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
53 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
3 |
Plugin Name: Ditty News Ticker
|
4 |
Plugin URI: http://dittynewsticker.com/
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
+
Version: 1.0.4
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
45 |
* @since 1.0.0
|
46 |
*/
|
47 |
if ( WP_DEBUG ) {
|
48 |
+
define ( 'MTPHR_DNT_VERSION', '1.0.4-'.time() );
|
49 |
} else {
|
50 |
+
define ( 'MTPHR_DNT_VERSION', '1.0.4' );
|
51 |
}
|
52 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
53 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
includes/edit-columns.php
CHANGED
@@ -20,10 +20,10 @@ function mtphr_dnt_set_columns( $columns ){
|
|
20 |
$i = 0;
|
21 |
foreach( $columns as $key => $value ) {
|
22 |
if( $i == 2 ) {
|
23 |
-
$new_columns['dnt_type'] = __( 'Type', '
|
24 |
-
$new_columns['dnt_mode'] = __( 'Mode', '
|
25 |
-
$new_columns['dnt_shortcode'] = __( 'Shortcode', '
|
26 |
-
$new_columns['dnt_function'] = __( 'Direct Function', '
|
27 |
}
|
28 |
$new_columns[$key] = $value;
|
29 |
$i++;
|
20 |
$i = 0;
|
21 |
foreach( $columns as $key => $value ) {
|
22 |
if( $i == 2 ) {
|
23 |
+
$new_columns['dnt_type'] = __( 'Type', 'ditty-news-ticker' );
|
24 |
+
$new_columns['dnt_mode'] = __( 'Mode', 'ditty-news-ticker' );
|
25 |
+
$new_columns['dnt_shortcode'] = __( 'Shortcode', 'ditty-news-ticker' );
|
26 |
+
$new_columns['dnt_function'] = __( 'Direct Function', 'ditty-news-ticker' );
|
27 |
}
|
28 |
$new_columns[$key] = $value;
|
29 |
$i++;
|
includes/functions.php
CHANGED
@@ -373,3 +373,19 @@ function mtphr_dnt_modes_array() {
|
|
373 |
|
374 |
return apply_filters('mtphr_dnt_modes', $dnt_modes_array);
|
375 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
|
374 |
return apply_filters('mtphr_dnt_modes', $dnt_modes_array);
|
375 |
}
|
376 |
+
|
377 |
+
|
378 |
+
|
379 |
+
|
380 |
+
add_action( 'plugins_loaded', 'mtphr_dnt_localization' );
|
381 |
+
/**
|
382 |
+
* Setup localization
|
383 |
+
*
|
384 |
+
* @since 1.0.4
|
385 |
+
*/
|
386 |
+
function mtphr_dnt_localization() {
|
387 |
+
load_plugin_textdomain( 'ditty-news-ticker', false, MTPHR_DNT_DIR.'languages/' );
|
388 |
+
}
|
389 |
+
|
390 |
+
|
391 |
+
|
includes/help.php
CHANGED
@@ -107,9 +107,9 @@ function mtphr_dnt_general_help_tab( $screen ) {
|
|
107 |
*/
|
108 |
function mtphr_dnt_help_sidebar() {
|
109 |
|
110 |
-
$sidebar = '<p><strong>'.__('For more information:').'</strong></p>';
|
111 |
-
$sidebar .= '<p>'.__('Visit the <a href="http://www.metaphorcreations.com" target="_blank">documentation</a> on the Ditty News Ticker website').'</p>';
|
112 |
-
$sidebar .= '<p>'.__('<strong><a href="http://www.metaphorcreations.com" target="_blnak">View DNT extensions').'</strong></a>';
|
113 |
|
114 |
return $sidebar;
|
115 |
}
|
107 |
*/
|
108 |
function mtphr_dnt_help_sidebar() {
|
109 |
|
110 |
+
$sidebar = '<p><strong>'.__('For more information:', 'ditty-news-ticker').'</strong></p>';
|
111 |
+
$sidebar .= '<p>'.__('Visit the <a href="http://www.metaphorcreations.com" target="_blank">documentation</a> on the Ditty News Ticker website', 'ditty-news-ticker').'</p>';
|
112 |
+
$sidebar .= '<p>'.__('<strong><a href="http://www.metaphorcreations.com" target="_blnak">View DNT extensions', 'ditty-news-ticker').'</strong></a>';
|
113 |
|
114 |
return $sidebar;
|
115 |
}
|
includes/meta-boxes.php
CHANGED
@@ -466,7 +466,7 @@ function mtphr_dnt_global_settings() {
|
|
466 |
'id' => '_mtphr_dnt_ticker_width',
|
467 |
'before' => __('Ticker width <em>(optional)</em>', 'ditty-news-ticker'),
|
468 |
'type' => 'number',
|
469 |
-
'after' => 'px<br/>'.'<small><em>'.__('Override the auto width a with specific value.').'</em></small>'
|
470 |
);
|
471 |
|
472 |
// Create the metabox
|
466 |
'id' => '_mtphr_dnt_ticker_width',
|
467 |
'before' => __('Ticker width <em>(optional)</em>', 'ditty-news-ticker'),
|
468 |
'type' => 'number',
|
469 |
+
'after' => 'px<br/>'.'<small><em>'.__('Override the auto width a with specific value.', 'ditty-news-ticker').'</em></small>'
|
470 |
);
|
471 |
|
472 |
// Create the metabox
|
includes/metaboxer/metaboxer.php
CHANGED
@@ -582,21 +582,29 @@ function mtphr_dnt_metaboxer_list_structure( $pos, $fields, $m_value='' ) {
|
|
582 |
/**
|
583 |
* Renders a sort.
|
584 |
*
|
585 |
-
* @since 1.0.
|
586 |
*/
|
587 |
function mtphr_dnt_metaboxer_sort( $field, $value='' ) {
|
588 |
|
589 |
global $post;
|
590 |
-
|
591 |
$rows = array();
|
592 |
if( is_array($value) ) {
|
593 |
foreach( $value as $id ) {
|
594 |
-
|
|
|
|
|
595 |
}
|
596 |
} else {
|
597 |
$rows = $field['rows'];
|
598 |
}
|
599 |
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
$output = '<table>';
|
601 |
|
602 |
foreach( $rows as $id => $data ) {
|
582 |
/**
|
583 |
* Renders a sort.
|
584 |
*
|
585 |
+
* @since 1.0.4
|
586 |
*/
|
587 |
function mtphr_dnt_metaboxer_sort( $field, $value='' ) {
|
588 |
|
589 |
global $post;
|
590 |
+
|
591 |
$rows = array();
|
592 |
if( is_array($value) ) {
|
593 |
foreach( $value as $id ) {
|
594 |
+
if( isset($field['rows'][$id]) ) {
|
595 |
+
$rows[$id] = $field['rows'][$id];
|
596 |
+
}
|
597 |
}
|
598 |
} else {
|
599 |
$rows = $field['rows'];
|
600 |
}
|
601 |
|
602 |
+
foreach( $field['rows'] as $id=>$data ) {
|
603 |
+
if( !isset($rows[$id]) ) {
|
604 |
+
$rows[$id] = $data;
|
605 |
+
}
|
606 |
+
}
|
607 |
+
|
608 |
$output = '<table>';
|
609 |
|
610 |
foreach( $rows as $id => $data ) {
|
includes/post-types.php
CHANGED
@@ -17,18 +17,18 @@ add_action( 'init','mtphr_dnt_posttype' );
|
|
17 |
function mtphr_dnt_posttype() {
|
18 |
|
19 |
$labels = array(
|
20 |
-
'name' => __( 'News Tickers', '
|
21 |
-
'singular_name' => __( 'News Ticker', '
|
22 |
-
'add_new' => __( 'Add New', '
|
23 |
-
'add_new_item' => __( 'Add New News Ticker', '
|
24 |
-
'edit_item' => __( 'Edit News Ticker', '
|
25 |
-
'new_item' => __( 'New News Ticker', '
|
26 |
-
'view_item' => __( 'View News Ticker', '
|
27 |
-
'search_items' => __( 'Search News Tickers', '
|
28 |
-
'not_found' => __( 'No News Tickers Found', '
|
29 |
-
'not_found_in_trash' => __( 'No News Tickers Found In Trash', '
|
30 |
'parent_item_colon' => '',
|
31 |
-
'menu_name' => __( 'News Tickers', '
|
32 |
);
|
33 |
|
34 |
// Create the arguments
|
17 |
function mtphr_dnt_posttype() {
|
18 |
|
19 |
$labels = array(
|
20 |
+
'name' => __( 'News Tickers', 'ditty-news-ticker' ),
|
21 |
+
'singular_name' => __( 'News Ticker', 'ditty-news-ticker' ),
|
22 |
+
'add_new' => __( 'Add New', 'ditty-news-ticker' ),
|
23 |
+
'add_new_item' => __( 'Add New News Ticker', 'ditty-news-ticker' ),
|
24 |
+
'edit_item' => __( 'Edit News Ticker', 'ditty-news-ticker' ),
|
25 |
+
'new_item' => __( 'New News Ticker', 'ditty-news-ticker' ),
|
26 |
+
'view_item' => __( 'View News Ticker', 'ditty-news-ticker' ),
|
27 |
+
'search_items' => __( 'Search News Tickers', 'ditty-news-ticker' ),
|
28 |
+
'not_found' => __( 'No News Tickers Found', 'ditty-news-ticker' ),
|
29 |
+
'not_found_in_trash' => __( 'No News Tickers Found In Trash', 'ditty-news-ticker' ),
|
30 |
'parent_item_colon' => '',
|
31 |
+
'menu_name' => __( 'News Tickers', 'ditty-news-ticker' )
|
32 |
);
|
33 |
|
34 |
// Create the arguments
|
includes/widget.php
CHANGED
@@ -54,7 +54,7 @@ function mtphr_dnt_widget() {
|
|
54 |
/**
|
55 |
* Display the widget
|
56 |
*
|
57 |
-
* @since 1.0
|
58 |
*/
|
59 |
function widget( $args, $instance ) {
|
60 |
|
@@ -84,9 +84,12 @@ function widget( $args, $instance ) {
|
|
84 |
$atts['title'] = 1;
|
85 |
}
|
86 |
|
87 |
-
//
|
88 |
$atts['unique_id'] = 'widget';
|
89 |
|
|
|
|
|
|
|
90 |
// Display the ticker
|
91 |
if( $ticker != '' ) {
|
92 |
ditty_news_ticker( $ticker, '', $atts );
|
54 |
/**
|
55 |
* Display the widget
|
56 |
*
|
57 |
+
* @since 1.0.4
|
58 |
*/
|
59 |
function widget( $args, $instance ) {
|
60 |
|
84 |
$atts['title'] = 1;
|
85 |
}
|
86 |
|
87 |
+
// Add a unique widget ID
|
88 |
$atts['unique_id'] = 'widget';
|
89 |
|
90 |
+
// Add in_widget attribute for customization
|
91 |
+
$atts['in_widget'] = 1;
|
92 |
+
|
93 |
// Display the ticker
|
94 |
if( $ticker != '' ) {
|
95 |
ditty_news_ticker( $ticker, '', $atts );
|
languages/ditty-news-ticker-en_US.mo
ADDED
Binary file
|
languages/ditty-news-ticker-en_US.po
ADDED
@@ -0,0 +1,660 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Ditty News Ticker v1.0.4\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2013-02-12 20:03:34+0000\n"
|
7 |
+
"Last-Translator: admin <joe@metaphorcreations.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Generator: CSL v1.x\n"
|
14 |
+
"X-Poedit-Language: English\n"
|
15 |
+
"X-Poedit-Country: UNITED STATES\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
18 |
+
"X-Poedit-Basepath: \n"
|
19 |
+
"X-Poedit-Bookmarks: \n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Textdomain-Support: yes"
|
22 |
+
|
23 |
+
#: includes/edit-columns.php:23
|
24 |
+
#@ ditty-news-ticker
|
25 |
+
msgid "Type"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: includes/edit-columns.php:24
|
29 |
+
#@ ditty-news-ticker
|
30 |
+
msgid "Mode"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: includes/edit-columns.php:25
|
34 |
+
#: includes/meta-boxes.php:502
|
35 |
+
#@ ditty-news-ticker
|
36 |
+
msgid "Shortcode"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: includes/edit-columns.php:26
|
40 |
+
#@ ditty-news-ticker
|
41 |
+
msgid "Direct Function"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: includes/functions.php:342
|
45 |
+
#@ ditty-news-ticker
|
46 |
+
msgid "Default"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: includes/functions.php:362
|
50 |
+
#@ ditty-news-ticker
|
51 |
+
msgid "Scroll"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/functions.php:366
|
55 |
+
#@ ditty-news-ticker
|
56 |
+
msgid "Rotate"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: includes/functions.php:370
|
60 |
+
#@ ditty-news-ticker
|
61 |
+
msgid "List"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: includes/help.php:59
|
65 |
+
#@ ditty-news-ticker
|
66 |
+
msgid "Scroll Mode"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: includes/help.php:66
|
70 |
+
#@ ditty-news-ticker
|
71 |
+
msgid "Rotate Mode"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/help.php:73
|
75 |
+
#@ ditty-news-ticker
|
76 |
+
msgid "List Mode"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: includes/help.php:95
|
80 |
+
#: includes/widget.php:51
|
81 |
+
#@ ditty-news-ticker
|
82 |
+
msgid "Ditty News Ticker"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: includes/help.php:110
|
86 |
+
#@ ditty-news-ticker
|
87 |
+
msgid "For more information:"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/help.php:111
|
91 |
+
#@ ditty-news-ticker
|
92 |
+
msgid "Visit the <a href=\"http://www.metaphorcreations.com\" target=\"_blank\">documentation</a> on the Ditty News Ticker website"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: includes/help.php:112
|
96 |
+
#@ ditty-news-ticker
|
97 |
+
msgid "<strong><a href=\"http://www.metaphorcreations.com\" target=\"_blnak\">View DNT extensions"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: includes/help.php:126
|
101 |
+
#@ ditty-news-ticker
|
102 |
+
msgid "Add general information about Ditty News Ticker."
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: includes/help.php:135
|
106 |
+
#@ ditty-news-ticker
|
107 |
+
msgid "Add scroll mode info."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/help.php:144
|
111 |
+
#@ ditty-news-ticker
|
112 |
+
msgid "Add rotate mode info."
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: includes/help.php:153
|
116 |
+
#@ ditty-news-ticker
|
117 |
+
msgid "Add list mode info."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: includes/meta-boxes.php:22
|
121 |
+
#@ ditty-news-ticker
|
122 |
+
msgid "Ticker Type"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/meta-boxes.php:35
|
126 |
+
#@ ditty-news-ticker
|
127 |
+
msgid "View all types"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/meta-boxes.php:58
|
131 |
+
#@ ditty-news-ticker
|
132 |
+
msgid "Ticker text"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/meta-boxes.php:64
|
136 |
+
#@ ditty-news-ticker
|
137 |
+
msgid "Link"
|
138 |
+
msgstr ""
|
139 |
+
|
140 |
+
#: includes/meta-boxes.php:68
|
141 |
+
#@ ditty-news-ticker
|
142 |
+
msgid "Target"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: includes/meta-boxes.php:87
|
146 |
+
#@ ditty-news-ticker
|
147 |
+
msgid "Default Ticker Items"
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: includes/meta-boxes.php:119
|
151 |
+
#@ ditty-news-ticker
|
152 |
+
msgid "View all modes"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: includes/meta-boxes.php:127
|
156 |
+
#@ ditty-news-ticker
|
157 |
+
msgid "Ticker Mode"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: includes/meta-boxes.php:154
|
161 |
+
#@ ditty-news-ticker
|
162 |
+
msgid "Scroll direction"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: includes/meta-boxes.php:156
|
166 |
+
#@ ditty-news-ticker
|
167 |
+
msgid "Left"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/meta-boxes.php:157
|
171 |
+
#@ ditty-news-ticker
|
172 |
+
msgid "Right"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/meta-boxes.php:158
|
176 |
+
#@ ditty-news-ticker
|
177 |
+
msgid "Up"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: includes/meta-boxes.php:159
|
181 |
+
#@ ditty-news-ticker
|
182 |
+
msgid "Down"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: includes/meta-boxes.php:162
|
186 |
+
#@ ditty-news-ticker
|
187 |
+
msgid "Set the scroll direction of the ticker."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/meta-boxes.php:170
|
191 |
+
#: includes/meta-boxes.php:278
|
192 |
+
#@ ditty-news-ticker
|
193 |
+
msgid "Tick dimensions"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/meta-boxes.php:172
|
197 |
+
#@ ditty-news-ticker
|
198 |
+
msgid "Width"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/meta-boxes.php:173
|
202 |
+
#: includes/meta-boxes.php:281
|
203 |
+
#@ ditty-news-ticker
|
204 |
+
msgid "Override the auto dimensions with specific values."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/meta-boxes.php:178
|
208 |
+
#: includes/meta-boxes.php:280
|
209 |
+
#@ ditty-news-ticker
|
210 |
+
msgid "Height"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/meta-boxes.php:187
|
214 |
+
#@ ditty-news-ticker
|
215 |
+
msgid "Scroller padding"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/meta-boxes.php:189
|
219 |
+
#: includes/meta-boxes.php:290
|
220 |
+
#: includes/meta-boxes.php:404
|
221 |
+
#@ ditty-news-ticker
|
222 |
+
msgid "Vertical padding"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/meta-boxes.php:190
|
226 |
+
#@ ditty-news-ticker
|
227 |
+
msgid "Set the vertical spacing of the scrolling data."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/meta-boxes.php:195
|
231 |
+
#: includes/meta-boxes.php:296
|
232 |
+
#: includes/meta-boxes.php:410
|
233 |
+
#@ ditty-news-ticker
|
234 |
+
msgid "Vertical margin"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: includes/meta-boxes.php:204
|
238 |
+
#@ ditty-news-ticker
|
239 |
+
msgid "Scroll speed"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/meta-boxes.php:206
|
243 |
+
#@ ditty-news-ticker
|
244 |
+
msgid "Set the speed of the scrolling data."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: includes/meta-boxes.php:210
|
248 |
+
#: includes/meta-boxes.php:316
|
249 |
+
#@ ditty-news-ticker
|
250 |
+
msgid "Pause on mouse over"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/meta-boxes.php:219
|
254 |
+
#: includes/meta-boxes.php:419
|
255 |
+
#@ ditty-news-ticker
|
256 |
+
msgid "Tick spacing"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: includes/meta-boxes.php:221
|
260 |
+
#: includes/meta-boxes.php:421
|
261 |
+
#@ ditty-news-ticker
|
262 |
+
msgid "Pixels"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/meta-boxes.php:222
|
266 |
+
#@ ditty-news-ticker
|
267 |
+
msgid "Set the spacing between scrolling data."
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/meta-boxes.php:228
|
271 |
+
#@ ditty-news-ticker
|
272 |
+
msgid "Scroll Settings"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: includes/meta-boxes.php:255
|
276 |
+
#@ ditty-news-ticker
|
277 |
+
msgid "Rotation type"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: includes/meta-boxes.php:257
|
281 |
+
#@ ditty-news-ticker
|
282 |
+
msgid "Fade"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: includes/meta-boxes.php:258
|
286 |
+
#@ ditty-news-ticker
|
287 |
+
msgid "Slide left"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/meta-boxes.php:259
|
291 |
+
#@ ditty-news-ticker
|
292 |
+
msgid "Slide right"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/meta-boxes.php:260
|
296 |
+
#@ ditty-news-ticker
|
297 |
+
msgid "Slide up"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: includes/meta-boxes.php:261
|
301 |
+
#@ ditty-news-ticker
|
302 |
+
msgid "Slide down"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: includes/meta-boxes.php:264
|
306 |
+
#@ ditty-news-ticker
|
307 |
+
msgid "Set the type of rotation for the ticker."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/meta-boxes.php:269
|
311 |
+
#@ ditty-news-ticker
|
312 |
+
msgid "Dynamic slide direction"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: includes/meta-boxes.php:288
|
316 |
+
#@ ditty-news-ticker
|
317 |
+
msgid "Rotator padding"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/meta-boxes.php:291
|
321 |
+
#@ ditty-news-ticker
|
322 |
+
msgid "Set the vertical spacing of the rotating data."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/meta-boxes.php:305
|
326 |
+
#@ ditty-news-ticker
|
327 |
+
msgid "Auto rotate"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/meta-boxes.php:306
|
331 |
+
#: includes/meta-boxes.php:342
|
332 |
+
#: includes/meta-boxes.php:357
|
333 |
+
#@ ditty-news-ticker
|
334 |
+
msgid "Enable"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: includes/meta-boxes.php:307
|
338 |
+
#@ ditty-news-ticker
|
339 |
+
msgid "Set the delay between rotations."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: includes/meta-boxes.php:312
|
343 |
+
#@ ditty-news-ticker
|
344 |
+
msgid "Seconds delay"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: includes/meta-boxes.php:325
|
348 |
+
#@ ditty-news-ticker
|
349 |
+
msgid "Rotate speed"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: includes/meta-boxes.php:327
|
353 |
+
#@ ditty-news-ticker
|
354 |
+
msgid "Tenths of a second"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: includes/meta-boxes.php:328
|
358 |
+
#@ ditty-news-ticker
|
359 |
+
msgid "Set the speed & easing of the rotation."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: includes/meta-boxes.php:341
|
363 |
+
#@ ditty-news-ticker
|
364 |
+
msgid "Directional navigation"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: includes/meta-boxes.php:343
|
368 |
+
#@ ditty-news-ticker
|
369 |
+
msgid "Set the directional navigation options."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: includes/meta-boxes.php:347
|
373 |
+
#@ ditty-news-ticker
|
374 |
+
msgid "Autohide navigation"
|
375 |
+
msgstr ""
|
376 |
+
|
377 |
+
#: includes/meta-boxes.php:356
|
378 |
+
#@ ditty-news-ticker
|
379 |
+
msgid "Control navigation"
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: includes/meta-boxes.php:358
|
383 |
+
#@ ditty-news-ticker
|
384 |
+
msgid "Set the control navigation options."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: includes/meta-boxes.php:363
|
388 |
+
#@ ditty-news-ticker
|
389 |
+
msgid "Numbers"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: includes/meta-boxes.php:364
|
393 |
+
#@ ditty-news-ticker
|
394 |
+
msgid "Buttons"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: includes/meta-boxes.php:375
|
398 |
+
#@ ditty-news-ticker
|
399 |
+
msgid "Rotate Settings"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: includes/meta-boxes.php:402
|
403 |
+
#@ ditty-news-ticker
|
404 |
+
msgid "List padding"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: includes/meta-boxes.php:405
|
408 |
+
#@ ditty-news-ticker
|
409 |
+
msgid "Set the vertical spacing of the list container."
|
410 |
+
msgstr ""
|
411 |
+
|
412 |
+
#: includes/meta-boxes.php:422
|
413 |
+
#@ ditty-news-ticker
|
414 |
+
msgid "Set the spacing between ticks."
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: includes/meta-boxes.php:428
|
418 |
+
#@ ditty-news-ticker
|
419 |
+
msgid "List Settings"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: includes/meta-boxes.php:455
|
423 |
+
#@ ditty-news-ticker
|
424 |
+
msgid "Display title"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: includes/meta-boxes.php:459
|
428 |
+
#@ ditty-news-ticker
|
429 |
+
msgid "Inline title"
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: includes/meta-boxes.php:467
|
433 |
+
#@ ditty-news-ticker
|
434 |
+
msgid "Ticker width <em>(optional)</em>"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: includes/meta-boxes.php:469
|
438 |
+
#@ ditty-news-ticker
|
439 |
+
msgid "Override the auto width a with specific value."
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: includes/meta-boxes.php:475
|
443 |
+
#@ ditty-news-ticker
|
444 |
+
msgid "Global Settings"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/meta-boxes.php:503
|
448 |
+
#@ ditty-news-ticker
|
449 |
+
msgid "Select Shortcode"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: includes/meta-boxes.php:504
|
453 |
+
#@ ditty-news-ticker
|
454 |
+
msgid "Use this shortcode to insert the ticker into a post/page."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/meta-boxes.php:511
|
458 |
+
#@ ditty-news-ticker
|
459 |
+
msgid "Direct function"
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: includes/meta-boxes.php:512
|
463 |
+
#@ ditty-news-ticker
|
464 |
+
msgid "Select Function"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: includes/meta-boxes.php:513
|
468 |
+
#@ ditty-news-ticker
|
469 |
+
msgid "Place this code directly into your theme to display the ticker."
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: includes/meta-boxes.php:519
|
473 |
+
#@ ditty-news-ticker
|
474 |
+
msgid "Ticker Display"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/metaboxer/metaboxer.php:943
|
478 |
+
#@ ditty-news-ticker
|
479 |
+
msgid "Select Code"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/post-types.php:20
|
483 |
+
#: includes/post-types.php:31
|
484 |
+
#@ ditty-news-ticker
|
485 |
+
msgid "News Tickers"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/post-types.php:21
|
489 |
+
#@ ditty-news-ticker
|
490 |
+
msgid "News Ticker"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: includes/post-types.php:22
|
494 |
+
#@ ditty-news-ticker
|
495 |
+
msgid "Add New"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: includes/post-types.php:23
|
499 |
+
#@ ditty-news-ticker
|
500 |
+
msgid "Add New News Ticker"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: includes/post-types.php:24
|
504 |
+
#@ ditty-news-ticker
|
505 |
+
msgid "Edit News Ticker"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: includes/post-types.php:25
|
509 |
+
#@ ditty-news-ticker
|
510 |
+
msgid "New News Ticker"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/post-types.php:26
|
514 |
+
#@ ditty-news-ticker
|
515 |
+
msgid "View News Ticker"
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/post-types.php:27
|
519 |
+
#@ ditty-news-ticker
|
520 |
+
msgid "Search News Tickers"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/post-types.php:28
|
524 |
+
#@ ditty-news-ticker
|
525 |
+
msgid "No News Tickers Found"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/post-types.php:29
|
529 |
+
#@ ditty-news-ticker
|
530 |
+
msgid "No News Tickers Found In Trash"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: includes/post-types.php:62
|
534 |
+
#@ ditty-news-ticker
|
535 |
+
msgid "Ditty News Ticker Updated!"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/settings.php:21
|
539 |
+
#: includes/settings.php:22
|
540 |
+
#@ ditty-news-ticker
|
541 |
+
msgid "Settings"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/settings.php:46
|
545 |
+
#@ ditty-news-ticker
|
546 |
+
msgid "Custom CSS"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: includes/settings.php:49
|
550 |
+
#@ ditty-news-ticker
|
551 |
+
msgid "Custom CSS will be added to the head of each page that includes a Ditty News Ticker."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: includes/settings.php:58
|
555 |
+
#: includes/settings.php:95
|
556 |
+
#@ ditty-news-ticker
|
557 |
+
msgid " "
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: includes/settings.php:130
|
561 |
+
#@ ditty-news-ticker
|
562 |
+
msgid "Ditty News Ticker Settings"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: includes/settings.php:144
|
566 |
+
#@ ditty-news-ticker
|
567 |
+
msgid "General"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: includes/settings.php:145
|
571 |
+
#@ ditty-news-ticker
|
572 |
+
msgid "Extension Licenses"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: includes/settings.php:178
|
576 |
+
#@ ditty-news-ticker
|
577 |
+
msgid "Add global settings to your news tickers."
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/settings.php:179
|
581 |
+
#@ ditty-news-ticker
|
582 |
+
msgid "Use the Custom CSS textarea to set global or individual styles to each of your tickers."
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: includes/settings.php:188
|
586 |
+
#@ ditty-news-ticker
|
587 |
+
msgid "Add the licenses for each of your extensions."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: includes/taxonomies.php:21
|
591 |
+
#: includes/taxonomies.php:31
|
592 |
+
#@ ditty-news-ticker
|
593 |
+
msgid "Categories"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/taxonomies.php:22
|
597 |
+
#@ ditty-news-ticker
|
598 |
+
msgid "Category"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: includes/taxonomies.php:23
|
602 |
+
#@ ditty-news-ticker
|
603 |
+
msgid "Search Categories"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: includes/taxonomies.php:24
|
607 |
+
#@ ditty-news-ticker
|
608 |
+
msgid "All Categories"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: includes/taxonomies.php:25
|
612 |
+
#@ ditty-news-ticker
|
613 |
+
msgid "Parent"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: includes/taxonomies.php:26
|
617 |
+
#@ ditty-news-ticker
|
618 |
+
msgid "Parent:"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: includes/taxonomies.php:27
|
622 |
+
#@ ditty-news-ticker
|
623 |
+
msgid "Edit Category"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: includes/taxonomies.php:28
|
627 |
+
#@ ditty-news-ticker
|
628 |
+
msgid "Update Category"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/taxonomies.php:29
|
632 |
+
#@ ditty-news-ticker
|
633 |
+
msgid "Add New Category"
|
634 |
+
msgstr ""
|
635 |
+
|
636 |
+
#: includes/taxonomies.php:30
|
637 |
+
#@ ditty-news-ticker
|
638 |
+
msgid "New Category"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/widget.php:42
|
642 |
+
#@ ditty-news-ticker
|
643 |
+
msgid "Displays a Ditty News Ticker."
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: includes/widget.php:134
|
647 |
+
#@ ditty-news-ticker
|
648 |
+
msgid "Title:"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: includes/widget.php:140
|
652 |
+
#@ ditty-news-ticker
|
653 |
+
msgid "Select a Ticker:"
|
654 |
+
msgstr ""
|
655 |
+
|
656 |
+
#: includes/widget.php:158
|
657 |
+
#@ ditty-news-ticker
|
658 |
+
msgid "Display Ticker Title?"
|
659 |
+
msgstr ""
|
660 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 3.5.1
|
7 |
-
Stable tag:
|
8 |
License: GPL2
|
9 |
|
10 |
Ditty News Ticker is a multi-functional data display plugin.
|
@@ -52,6 +52,11 @@ Each individual Ticker post has multiple settings to customize.
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
|
|
|
|
55 |
= 1.0.3 =
|
56 |
* Modified post_updated message.
|
57 |
* Add a ticker (auto) width override setting.
|
@@ -69,6 +74,9 @@ Each individual Ticker post has multiple settings to customize.
|
|
69 |
|
70 |
== Upgrade Notice ==
|
71 |
|
|
|
|
|
|
|
72 |
= 1.0.3 =
|
73 |
Updates.
|
74 |
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 3.5.1
|
7 |
+
Stable tag: 1.0.4
|
8 |
License: GPL2
|
9 |
|
10 |
Ditty News Ticker is a multi-functional data display plugin.
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 1.0.4 =
|
56 |
+
* Added 'languages' folder for localization.
|
57 |
+
* Added an 'in_widget' attribute to tickers displayed in widgets.
|
58 |
+
* Updated 'sort' metaboxer code.
|
59 |
+
|
60 |
= 1.0.3 =
|
61 |
* Modified post_updated message.
|
62 |
* Add a ticker (auto) width override setting.
|
74 |
|
75 |
== Upgrade Notice ==
|
76 |
|
77 |
+
= 1.0.4 =
|
78 |
+
Added 'languages' folder for localization. Added an 'in_widget' attribute to tickers displayed in widgets. Updated 'sort' metaboxer code.
|
79 |
+
|
80 |
= 1.0.3 =
|
81 |
Updates.
|
82 |
|