Version Description
- Added additional jQuery triggers and listeners
- Fixed force line break issue
Download this release
Release Info
Developer | metaphorcreations |
Plugin | Ditty News Ticker |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- assets/js/ditty-news-ticker.js +101 -52
- ditty-news-ticker.php +3 -3
- includes/meta-boxes.php +5 -1
- languages/ditty-news-ticker-ar.mo +0 -0
- languages/{ditty-news-ticker-ar_YE.po → ditty-news-ticker-ar.po} +236 -233
- languages/ditty-news-ticker-ar_YE.mo +0 -0
- readme.txt +6 -2
assets/js/ditty-news-ticker.js
CHANGED
@@ -42,7 +42,9 @@
|
|
42 |
var vars = {
|
43 |
id : settings.id,
|
44 |
tick_count : 0,
|
|
|
45 |
current_tick : 0,
|
|
|
46 |
reverse : 0,
|
47 |
running : 0
|
48 |
};
|
@@ -53,10 +55,11 @@
|
|
53 |
}
|
54 |
|
55 |
// Create variables
|
56 |
-
var $
|
57 |
-
$
|
58 |
-
$
|
59 |
-
$
|
|
|
60 |
ticker_width = $ticker.width(),
|
61 |
ticker_height = 0,
|
62 |
ticks = [],
|
@@ -567,10 +570,14 @@
|
|
567 |
if( settings.auto_rotate ) {
|
568 |
clearInterval( ticker_delay );
|
569 |
}
|
|
|
|
|
|
|
570 |
|
571 |
// Trigger the before change callback
|
572 |
-
settings.before_change.call(
|
573 |
-
$
|
|
|
574 |
|
575 |
// Set the running variable
|
576 |
vars.running = 1;
|
@@ -581,14 +588,16 @@
|
|
581 |
// Rotate the new tick in
|
582 |
mtphr_dnt_rotator_in( new_tick );
|
583 |
|
584 |
-
// Set the current tick
|
|
|
585 |
vars.current_tick = new_tick;
|
586 |
|
587 |
// Trigger the after change callback
|
588 |
after_change_timeout = setTimeout( function() {
|
589 |
|
590 |
-
settings.after_change.call(
|
591 |
-
$
|
|
|
592 |
|
593 |
// Reset the rotator type & variables
|
594 |
rotate_adjustment = settings.rotate_type;
|
@@ -1023,8 +1032,53 @@
|
|
1023 |
$tick.hide();
|
1024 |
});
|
1025 |
}
|
1026 |
-
|
1027 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1028 |
|
1029 |
|
1030 |
/**
|
@@ -1036,40 +1090,12 @@
|
|
1036 |
|
1037 |
$nav_prev.bind('click', function( e ) {
|
1038 |
e.preventDefault();
|
1039 |
-
|
1040 |
-
if(vars.running) return false;
|
1041 |
-
|
1042 |
-
// Find the new tick
|
1043 |
-
var new_tick = parseInt(vars.current_tick-1);
|
1044 |
-
if( new_tick < 0 ) {
|
1045 |
-
new_tick = vars.tick_count-1;
|
1046 |
-
}
|
1047 |
-
if( settings.nav_reverse ) {
|
1048 |
-
if( settings.rotate_type == 'slide_left' ) {
|
1049 |
-
rotate_adjustment = 'slide_right';
|
1050 |
-
} else if( settings.rotate_type == 'slide_right' ) {
|
1051 |
-
rotate_adjustment = 'slide_left';
|
1052 |
-
} else if( settings.rotate_type == 'slide_down' ) {
|
1053 |
-
rotate_adjustment = 'slide_up';
|
1054 |
-
} else if( settings.rotate_type == 'slide_up' ) {
|
1055 |
-
rotate_adjustment = 'slide_down';
|
1056 |
-
}
|
1057 |
-
vars.reverse = 1;
|
1058 |
-
}
|
1059 |
-
mtphr_dnt_rotator_update( new_tick );
|
1060 |
});
|
1061 |
|
1062 |
$nav_next.bind('click', function(e) {
|
1063 |
e.preventDefault();
|
1064 |
-
|
1065 |
-
if(vars.running) return false;
|
1066 |
-
|
1067 |
-
// Find the new tick
|
1068 |
-
var new_tick = parseInt(vars.current_tick + 1);
|
1069 |
-
if( new_tick == vars.tick_count ) {
|
1070 |
-
new_tick = 0;
|
1071 |
-
}
|
1072 |
-
mtphr_dnt_rotator_update( new_tick );
|
1073 |
});
|
1074 |
}
|
1075 |
|
@@ -1113,11 +1139,10 @@
|
|
1113 |
|
1114 |
|
1115 |
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
*/
|
1121 |
if( settings.type == 'rotate' ) {
|
1122 |
|
1123 |
$ticker.swipe( {
|
@@ -1165,7 +1190,24 @@
|
|
1165 |
}
|
1166 |
});
|
1167 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1169 |
|
1170 |
|
1171 |
|
@@ -1173,7 +1215,7 @@
|
|
1173 |
* Resize listener
|
1174 |
* Reset the ticker width
|
1175 |
*
|
1176 |
-
* @since 1.
|
1177 |
*/
|
1178 |
$(window).resize( function() {
|
1179 |
|
@@ -1200,11 +1242,17 @@
|
|
1200 |
|
1201 |
|
1202 |
/* --------------------------------------------------------- */
|
1203 |
-
/* !Listen for resize event from other plugins - 1.4.
|
1204 |
/* --------------------------------------------------------- */
|
1205 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1206 |
$('body').on('mtphr_dnt_resize', function( e, id ) {
|
1207 |
-
|
1208 |
if( id && (id.indexOf(settings.id) >= 0) ) {
|
1209 |
if( settings.type == 'scroll' ) {
|
1210 |
mtphr_dnt_scroll_resize_ticks();
|
@@ -1218,8 +1266,9 @@
|
|
1218 |
|
1219 |
|
1220 |
// Trigger the afterLoad callback
|
1221 |
-
settings.after_load.call(
|
1222 |
-
$
|
|
|
1223 |
});
|
1224 |
}
|
1225 |
};
|
42 |
var vars = {
|
43 |
id : settings.id,
|
44 |
tick_count : 0,
|
45 |
+
previous_tick : 0,
|
46 |
current_tick : 0,
|
47 |
+
next_tick : 0,
|
48 |
reverse : 0,
|
49 |
running : 0
|
50 |
};
|
55 |
}
|
56 |
|
57 |
// Create variables
|
58 |
+
var $container = $(this),
|
59 |
+
$ticker = $container.find('.mtphr-dnt-tick-contents'),
|
60 |
+
$nav_prev = $container.find('.mtphr-dnt-nav-prev'),
|
61 |
+
$nav_next = $container.find('.mtphr-dnt-nav-next'),
|
62 |
+
$nav_controls = $container.find('.mtphr-dnt-control-links'),
|
63 |
ticker_width = $ticker.width(),
|
64 |
ticker_height = 0,
|
65 |
ticks = [],
|
570 |
if( settings.auto_rotate ) {
|
571 |
clearInterval( ticker_delay );
|
572 |
}
|
573 |
+
|
574 |
+
// Set the next variable
|
575 |
+
vars.next_tick = new_tick;
|
576 |
|
577 |
// Trigger the before change callback
|
578 |
+
settings.before_change.call( $container, $ticker );
|
579 |
+
$container.trigger('mtphr_dnt_before_change_single', [vars, ticks]);
|
580 |
+
$('body').trigger('mtphr_dnt_before_change', [$container, vars, ticks]);
|
581 |
|
582 |
// Set the running variable
|
583 |
vars.running = 1;
|
588 |
// Rotate the new tick in
|
589 |
mtphr_dnt_rotator_in( new_tick );
|
590 |
|
591 |
+
// Set the previous & current tick
|
592 |
+
vars.previous_tick = vars.current_tick;
|
593 |
vars.current_tick = new_tick;
|
594 |
|
595 |
// Trigger the after change callback
|
596 |
after_change_timeout = setTimeout( function() {
|
597 |
|
598 |
+
settings.after_change.call( $container, $ticker );
|
599 |
+
$container.trigger('mtphr_dnt_after_change_single', [vars, ticks]);
|
600 |
+
$('body').trigger('mtphr_dnt_after_change', [$container, vars, ticks]);
|
601 |
|
602 |
// Reset the rotator type & variables
|
603 |
rotate_adjustment = settings.rotate_type;
|
1032 |
$tick.hide();
|
1033 |
});
|
1034 |
}
|
1035 |
+
|
1036 |
+
|
1037 |
+
|
1038 |
+
|
1039 |
+
/* --------------------------------------------------------- */
|
1040 |
+
/* !Set the next item */
|
1041 |
+
/* --------------------------------------------------------- */
|
1042 |
+
|
1043 |
+
function mtphr_dnt_next() {
|
1044 |
+
|
1045 |
+
if(vars.running) return false;
|
1046 |
+
|
1047 |
+
// Find the new tick
|
1048 |
+
var new_tick = parseInt(vars.current_tick + 1);
|
1049 |
+
if( new_tick == vars.tick_count ) {
|
1050 |
+
new_tick = 0;
|
1051 |
+
}
|
1052 |
+
mtphr_dnt_rotator_update( new_tick );
|
1053 |
+
}
|
1054 |
+
|
1055 |
+
/* --------------------------------------------------------- */
|
1056 |
+
/* !Set the previous item */
|
1057 |
+
/* --------------------------------------------------------- */
|
1058 |
+
|
1059 |
+
function mtphr_dnt_prev() {
|
1060 |
+
|
1061 |
+
if(vars.running) return false;
|
1062 |
+
|
1063 |
+
// Find the new tick
|
1064 |
+
var new_tick = parseInt(vars.current_tick-1);
|
1065 |
+
if( new_tick < 0 ) {
|
1066 |
+
new_tick = vars.tick_count-1;
|
1067 |
+
}
|
1068 |
+
if( settings.nav_reverse ) {
|
1069 |
+
if( settings.rotate_type == 'slide_left' ) {
|
1070 |
+
rotate_adjustment = 'slide_right';
|
1071 |
+
} else if( settings.rotate_type == 'slide_right' ) {
|
1072 |
+
rotate_adjustment = 'slide_left';
|
1073 |
+
} else if( settings.rotate_type == 'slide_down' ) {
|
1074 |
+
rotate_adjustment = 'slide_up';
|
1075 |
+
} else if( settings.rotate_type == 'slide_up' ) {
|
1076 |
+
rotate_adjustment = 'slide_down';
|
1077 |
+
}
|
1078 |
+
vars.reverse = 1;
|
1079 |
+
}
|
1080 |
+
mtphr_dnt_rotator_update( new_tick );
|
1081 |
+
}
|
1082 |
|
1083 |
|
1084 |
/**
|
1090 |
|
1091 |
$nav_prev.bind('click', function( e ) {
|
1092 |
e.preventDefault();
|
1093 |
+
mtphr_dnt_prev();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1094 |
});
|
1095 |
|
1096 |
$nav_next.bind('click', function(e) {
|
1097 |
e.preventDefault();
|
1098 |
+
mtphr_dnt_next();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1099 |
});
|
1100 |
}
|
1101 |
|
1139 |
|
1140 |
|
1141 |
|
1142 |
+
/* --------------------------------------------------------- */
|
1143 |
+
/* !Mobile swipe - 1.1.9 */
|
1144 |
+
/* --------------------------------------------------------- */
|
1145 |
+
|
|
|
1146 |
if( settings.type == 'rotate' ) {
|
1147 |
|
1148 |
$ticker.swipe( {
|
1190 |
}
|
1191 |
});
|
1192 |
}
|
1193 |
+
|
1194 |
+
|
1195 |
+
|
1196 |
+
/* --------------------------------------------------------- */
|
1197 |
+
/* !Listen for external events - 1.4.1 */
|
1198 |
+
/* --------------------------------------------------------- */
|
1199 |
|
1200 |
+
$container.on('mtphr_dnt_next', function( e ) {
|
1201 |
+
mtphr_dnt_next();
|
1202 |
+
});
|
1203 |
+
|
1204 |
+
$container.on('mtphr_dnt_prev', function( e ) {
|
1205 |
+
mtphr_dnt_prev();
|
1206 |
+
});
|
1207 |
+
|
1208 |
+
$container.on('mtphr_dnt_goto', function( e, pos ) {
|
1209 |
+
mtphr_dnt_rotator_update( parseInt(pos) );
|
1210 |
+
});
|
1211 |
|
1212 |
|
1213 |
|
1215 |
* Resize listener
|
1216 |
* Reset the ticker width
|
1217 |
*
|
1218 |
+
* @since 1.4.1
|
1219 |
*/
|
1220 |
$(window).resize( function() {
|
1221 |
|
1242 |
|
1243 |
|
1244 |
/* --------------------------------------------------------- */
|
1245 |
+
/* !Listen for resize event from other plugins - 1.4.1 */
|
1246 |
/* --------------------------------------------------------- */
|
1247 |
+
|
1248 |
+
$container.on('mtphr_dnt_resize_single', function( e ) {
|
1249 |
+
if( settings.type == 'scroll' ) {
|
1250 |
+
mtphr_dnt_scroll_resize_ticks();
|
1251 |
+
} else if( settings.type == 'rotate' ) {
|
1252 |
+
mtphr_dnt_rotator_resize_ticks();
|
1253 |
+
}
|
1254 |
+
});
|
1255 |
$('body').on('mtphr_dnt_resize', function( e, id ) {
|
|
|
1256 |
if( id && (id.indexOf(settings.id) >= 0) ) {
|
1257 |
if( settings.type == 'scroll' ) {
|
1258 |
mtphr_dnt_scroll_resize_ticks();
|
1266 |
|
1267 |
|
1268 |
// Trigger the afterLoad callback
|
1269 |
+
settings.after_load.call($container, $ticker);
|
1270 |
+
$container.trigger('mtphr_dnt_after_load_single', [vars, ticks]);
|
1271 |
+
$('body').trigger('mtphr_dnt_after_load', [$container, vars, ticks]);
|
1272 |
});
|
1273 |
}
|
1274 |
};
|
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.4.
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
@@ -34,9 +34,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
34 |
* @since 1.4.0
|
35 |
*/
|
36 |
if ( WP_DEBUG ) {
|
37 |
-
define ( 'MTPHR_DNT_VERSION', '1.4.
|
38 |
} else {
|
39 |
-
define ( 'MTPHR_DNT_VERSION', '1.4.
|
40 |
}
|
41 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
42 |
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.4.1
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
34 |
* @since 1.4.0
|
35 |
*/
|
36 |
if ( WP_DEBUG ) {
|
37 |
+
define ( 'MTPHR_DNT_VERSION', '1.4.1-'.time() );
|
38 |
} else {
|
39 |
+
define ( 'MTPHR_DNT_VERSION', '1.4.1' );
|
40 |
}
|
41 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
42 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
includes/meta-boxes.php
CHANGED
@@ -787,7 +787,7 @@ function mtphr_dnt_global_settings_render_metabox() {
|
|
787 |
|
788 |
|
789 |
/* --------------------------------------------------------- */
|
790 |
-
/* !Save the custom meta - 1.4.
|
791 |
/* --------------------------------------------------------- */
|
792 |
|
793 |
function mtphr_dnt_metabox_save( $post_id ) {
|
@@ -826,6 +826,10 @@ function mtphr_dnt_metabox_save( $post_id ) {
|
|
826 |
|
827 |
// Save the default ticks
|
828 |
if( isset($_POST['_mtphr_dnt_ticks']) ) {
|
|
|
|
|
|
|
|
|
829 |
$sanitized_ticks = array();
|
830 |
if( count($_POST['_mtphr_dnt_ticks']) > 0 ) {
|
831 |
foreach( $_POST['_mtphr_dnt_ticks'] as $tick ) {
|
787 |
|
788 |
|
789 |
/* --------------------------------------------------------- */
|
790 |
+
/* !Save the custom meta - 1.4.1 */
|
791 |
/* --------------------------------------------------------- */
|
792 |
|
793 |
function mtphr_dnt_metabox_save( $post_id ) {
|
826 |
|
827 |
// Save the default ticks
|
828 |
if( isset($_POST['_mtphr_dnt_ticks']) ) {
|
829 |
+
|
830 |
+
$force_breaks = ( isset($_POST['_mtphr_dnt_line_breaks']) && $_POST['_mtphr_dnt_line_breaks'] != '' ) ? 1 : '';
|
831 |
+
update_post_meta( $post_id, '_mtphr_dnt_line_breaks', $force_breaks );
|
832 |
+
|
833 |
$sanitized_ticks = array();
|
834 |
if( count($_POST['_mtphr_dnt_ticks']) > 0 ) {
|
835 |
foreach( $_POST['_mtphr_dnt_ticks'] as $tick ) {
|
languages/ditty-news-ticker-ar.mo
ADDED
Binary file
|
languages/{ditty-news-ticker-ar_YE.po → ditty-news-ticker-ar.po}
RENAMED
@@ -3,775 +3,778 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Ditty News Ticker v1.4.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
-
"PO-Revision-Date: 2014-01-
|
7 |
"Last-Translator: Osama Alshami <Demor17@gmail.com>\n"
|
8 |
"Language-Team: Osama Alshami <Demor17@gmail.com>\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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3
|
|
|
13 |
"X-Generator: Poedit 1.6.3\n"
|
14 |
-
"X-Poedit-Language: \n"
|
15 |
-
"X-Poedit-Country: \n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;
|
|
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
-
"X-
|
|
|
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 |
-
|
34 |
-
#: includes/meta-boxes.php:18
|
35 |
-
#@ ditty-news-ticker
|
36 |
msgid "Shortcode"
|
37 |
msgstr "الإختصار"
|
38 |
|
39 |
-
|
40 |
-
#: includes/meta-boxes.php:27
|
41 |
-
#@ ditty-news-ticker
|
42 |
msgid "Direct Function"
|
43 |
msgstr "دالة مباشرة"
|
44 |
|
|
|
45 |
#: includes/helpers.php:13
|
46 |
-
#@ ditty-news-ticker
|
47 |
msgid "Default"
|
48 |
msgstr "الافتراضي"
|
49 |
|
|
|
50 |
#: includes/helpers.php:37
|
51 |
-
#@ ditty-news-ticker
|
52 |
msgid "Scroll"
|
53 |
msgstr "تمرير"
|
54 |
|
|
|
55 |
#: includes/helpers.php:41
|
56 |
-
#@ ditty-news-ticker
|
57 |
msgid "Rotate"
|
58 |
msgstr "تناوب"
|
59 |
|
|
|
60 |
#: includes/helpers.php:45
|
61 |
-
#@ ditty-news-ticker
|
62 |
msgid "List"
|
63 |
msgstr "قائمة"
|
64 |
|
|
|
65 |
#: includes/help.php:59
|
66 |
-
#@ ditty-news-ticker
|
67 |
msgid "Scroll Mode"
|
68 |
msgstr "اسلوب عرض التمرير"
|
69 |
|
|
|
70 |
#: includes/help.php:66
|
71 |
-
#@ ditty-news-ticker
|
72 |
msgid "Rotate Mode"
|
73 |
msgstr "اسلوب عرض التناوب"
|
74 |
|
|
|
75 |
#: includes/help.php:73
|
76 |
-
#@ ditty-news-ticker
|
77 |
msgid "List Mode"
|
78 |
msgstr "اسلوب عرض القائمة"
|
79 |
|
80 |
-
|
81 |
-
#: includes/widget.php:51
|
82 |
-
#@ ditty-news-ticker
|
83 |
msgid "Ditty News Ticker"
|
84 |
msgstr "شريط الاخبار"
|
85 |
|
|
|
86 |
#: includes/help.php:110
|
87 |
-
#@ ditty-news-ticker
|
88 |
msgid "For more information:"
|
89 |
msgstr "للمزيد من المعلومات:"
|
90 |
|
|
|
91 |
#: includes/help.php:111
|
92 |
-
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
95 |
|
|
|
96 |
#: includes/help.php:126
|
97 |
-
#@ ditty-news-ticker
|
98 |
msgid "Add general information about Ditty News Ticker."
|
99 |
msgstr "إضافة معلومات عامة عم شريط الأخبار."
|
100 |
|
|
|
101 |
#: includes/help.php:135
|
102 |
-
#@ ditty-news-ticker
|
103 |
msgid "Add scroll mode info."
|
104 |
msgstr "إضافة معلومات عن اسلوب عرض التمرير"
|
105 |
|
|
|
106 |
#: includes/help.php:144
|
107 |
-
#@ ditty-news-ticker
|
108 |
msgid "Add rotate mode info."
|
109 |
msgstr "إضافة معلومات عن اسلوب عرض التناوب"
|
110 |
|
|
|
111 |
#: includes/help.php:153
|
112 |
-
#@ ditty-news-ticker
|
113 |
msgid "Add list mode info."
|
114 |
msgstr "إضافة معلومات عن اسلوب عرض القائمة"
|
115 |
|
|
|
116 |
#: includes/meta-boxes.php:65
|
117 |
-
#@ ditty-news-ticker
|
118 |
msgid "Ticker Type"
|
119 |
msgstr "نوع الشريط"
|
120 |
|
|
|
121 |
#: includes/meta-boxes.php:65
|
122 |
-
#@ ditty-news-ticker
|
123 |
msgid "View all types"
|
124 |
msgstr "عرض كل الأنواع"
|
125 |
|
|
|
126 |
#: includes/meta-boxes.php:221
|
127 |
-
#@ ditty-news-ticker
|
128 |
msgid "Ticker text"
|
129 |
msgstr "عناوين الشريط"
|
130 |
|
|
|
131 |
#: includes/meta-boxes.php:222
|
132 |
-
#@ ditty-news-ticker
|
133 |
msgid "Link"
|
134 |
msgstr "الرابط"
|
135 |
|
|
|
136 |
#: includes/meta-boxes.php:223
|
137 |
-
#@ ditty-news-ticker
|
138 |
msgid "Target"
|
139 |
msgstr "الهدف"
|
140 |
|
|
|
141 |
#: includes/meta-boxes.php:120
|
142 |
-
#@ ditty-news-ticker
|
143 |
msgid "Default Ticker Items"
|
144 |
msgstr "عناوين الشريط الاخباري"
|
145 |
|
|
|
146 |
#: includes/meta-boxes.php:86
|
147 |
-
#@ ditty-news-ticker
|
148 |
msgid "Ticker Mode"
|
149 |
msgstr "اسلوب عرض الشريط"
|
150 |
|
|
|
151 |
#: includes/meta-boxes.php:402
|
152 |
-
#@ ditty-news-ticker
|
153 |
msgid "Scroll direction"
|
154 |
msgstr "اتجاه التمرير"
|
155 |
|
|
|
156 |
#: includes/meta-boxes.php:406
|
157 |
-
#@ ditty-news-ticker
|
158 |
msgid "Left"
|
159 |
msgstr "يسار"
|
160 |
|
|
|
161 |
#: includes/meta-boxes.php:407
|
162 |
-
#@ ditty-news-ticker
|
163 |
msgid "Right"
|
164 |
msgstr "يمين"
|
165 |
|
|
|
166 |
#: includes/meta-boxes.php:408
|
167 |
-
#@ ditty-news-ticker
|
168 |
msgid "Up"
|
169 |
msgstr "اعلى"
|
170 |
|
|
|
171 |
#: includes/meta-boxes.php:409
|
172 |
-
#@ ditty-news-ticker
|
173 |
msgid "Down"
|
174 |
msgstr "اسفل"
|
175 |
|
176 |
-
|
177 |
-
#: includes/meta-boxes.php:533
|
178 |
-
#@ ditty-news-ticker
|
179 |
msgid "Tick dimensions"
|
180 |
msgstr "ابعاد الشريط"
|
181 |
|
|
|
182 |
#: includes/meta-boxes.php:420
|
183 |
-
#@ ditty-news-ticker
|
184 |
msgid "Width"
|
185 |
msgstr "العرض"
|
186 |
|
187 |
-
|
188 |
-
#: includes/meta-boxes.php:537
|
189 |
-
#@ ditty-news-ticker
|
190 |
msgid "Height"
|
191 |
msgstr "الارتفاع"
|
192 |
|
|
|
193 |
#: includes/meta-boxes.php:427
|
194 |
-
#@ ditty-news-ticker
|
195 |
msgid "Scroller padding"
|
196 |
msgstr "حاشية شريط التمرير"
|
197 |
|
198 |
-
|
199 |
-
#: includes/meta-boxes.php:547
|
200 |
#: includes/meta-boxes.php:656
|
201 |
-
#@ ditty-news-ticker
|
202 |
msgid "Vertical padding"
|
203 |
msgstr "الحاشية الرأسية"
|
204 |
|
205 |
-
|
206 |
-
#: includes/meta-boxes.php:548
|
207 |
#: includes/meta-boxes.php:657
|
208 |
-
#@ ditty-news-ticker
|
209 |
msgid "Vertical margin"
|
210 |
msgstr "الهامش الرأسي"
|
211 |
|
|
|
212 |
#: includes/meta-boxes.php:438
|
213 |
-
#@ ditty-news-ticker
|
214 |
msgid "Scroll speed"
|
215 |
msgstr "سرعة التمرير"
|
216 |
|
217 |
-
|
218 |
-
#: includes/meta-boxes.php:560
|
219 |
-
#@ ditty-news-ticker
|
220 |
msgid "Pause on mouse over"
|
221 |
msgstr "إيقاف مؤقت عند التمرير عليه بالفأرة"
|
222 |
|
223 |
-
|
224 |
-
#: includes/meta-boxes.php:663
|
225 |
-
#@ ditty-news-ticker
|
226 |
msgid "Tick spacing"
|
227 |
msgstr "المسافة بين العناوين"
|
228 |
|
229 |
-
|
230 |
-
#: includes/meta-boxes.php:667
|
231 |
-
#@ ditty-news-ticker
|
232 |
msgid "Pixels"
|
233 |
msgstr "بكسل"
|
234 |
|
|
|
235 |
#: includes/meta-boxes.php:142
|
236 |
-
#@ ditty-news-ticker
|
237 |
msgid "Scroll Settings"
|
238 |
msgstr "خيارات التمرير"
|
239 |
|
|
|
240 |
#: includes/meta-boxes.php:518
|
241 |
-
#@ ditty-news-ticker
|
242 |
msgid "Rotation type"
|
243 |
msgstr "نوع التناوب"
|
244 |
|
|
|
245 |
#: includes/meta-boxes.php:522
|
246 |
-
#@ ditty-news-ticker
|
247 |
msgid "Fade"
|
248 |
msgstr "تلاشي"
|
249 |
|
|
|
250 |
#: includes/meta-boxes.php:523
|
251 |
-
#@ ditty-news-ticker
|
252 |
msgid "Slide left"
|
253 |
msgstr "انزلاق من اليسار"
|
254 |
|
|
|
255 |
#: includes/meta-boxes.php:524
|
256 |
-
#@ ditty-news-ticker
|
257 |
msgid "Slide right"
|
258 |
msgstr "انزلاق من اليمين"
|
259 |
|
|
|
260 |
#: includes/meta-boxes.php:525
|
261 |
-
#@ ditty-news-ticker
|
262 |
msgid "Slide up"
|
263 |
msgstr "انزلاق من الاعلى"
|
264 |
|
|
|
265 |
#: includes/meta-boxes.php:526
|
266 |
-
#@ ditty-news-ticker
|
267 |
msgid "Slide down"
|
268 |
msgstr "انزلاق من الاسفل"
|
269 |
|
|
|
270 |
#: includes/meta-boxes.php:527
|
271 |
-
#@ ditty-news-ticker
|
272 |
msgid "Dynamic slide direction"
|
273 |
msgstr "اتجاه الانزلاق الديناميكي"
|
274 |
|
|
|
275 |
#: includes/meta-boxes.php:543
|
276 |
-
#@ ditty-news-ticker
|
277 |
msgid "Rotator padding"
|
278 |
msgstr "حاشية التناوب"
|
279 |
|
|
|
280 |
#: includes/meta-boxes.php:554
|
281 |
-
#@ ditty-news-ticker
|
282 |
msgid "Auto rotate"
|
283 |
msgstr "تناوب ذاتي"
|
284 |
|
285 |
-
|
286 |
-
#: includes/meta-boxes.php:586
|
287 |
-
#: includes/meta-boxes.php:597
|
288 |
-
#: includes/meta-boxes.php:677
|
289 |
-
#@ ditty-news-ticker
|
290 |
msgid "Enable"
|
291 |
msgstr "تفعيل"
|
292 |
|
|
|
293 |
#: includes/meta-boxes.php:559
|
294 |
-
#@ ditty-news-ticker
|
295 |
msgid "Seconds delay"
|
296 |
msgstr "المهلة بالثواني"
|
297 |
|
|
|
298 |
#: includes/meta-boxes.php:566
|
299 |
-
#@ ditty-news-ticker
|
300 |
msgid "Rotate speed"
|
301 |
msgstr "سرعة التناوب"
|
302 |
|
|
|
303 |
#: includes/meta-boxes.php:570
|
304 |
-
#@ ditty-news-ticker
|
305 |
msgid "Tenths of a second"
|
306 |
msgstr "أعشار من الثانية"
|
307 |
|
|
|
308 |
#: includes/meta-boxes.php:582
|
309 |
-
#@ ditty-news-ticker
|
310 |
msgid "Directional navigation"
|
311 |
msgstr "ازرار التحكم المباشرة"
|
312 |
|
|
|
313 |
#: includes/meta-boxes.php:587
|
314 |
-
#@ ditty-news-ticker
|
315 |
msgid "Autohide navigation"
|
316 |
msgstr "اخفاء آلي لازرار التحكم"
|
317 |
|
|
|
318 |
#: includes/meta-boxes.php:593
|
319 |
-
#@ ditty-news-ticker
|
320 |
msgid "Control navigation"
|
321 |
msgstr "ازرار التحكم"
|
322 |
|
|
|
323 |
#: includes/meta-boxes.php:598
|
324 |
-
#@ ditty-news-ticker
|
325 |
msgid "Numbers"
|
326 |
msgstr "الارقام"
|
327 |
|
|
|
328 |
#: includes/meta-boxes.php:599
|
329 |
-
#@ ditty-news-ticker
|
330 |
msgid "Buttons"
|
331 |
msgstr "الازرار"
|
332 |
|
|
|
333 |
#: includes/meta-boxes.php:153
|
334 |
-
#@ ditty-news-ticker
|
335 |
msgid "Rotate Settings"
|
336 |
msgstr "اعدادات التناوب"
|
337 |
|
|
|
338 |
#: includes/meta-boxes.php:652
|
339 |
-
#@ ditty-news-ticker
|
340 |
msgid "List padding"
|
341 |
msgstr "حاشية القائمة"
|
342 |
|
|
|
343 |
#: includes/meta-boxes.php:164
|
344 |
-
#@ ditty-news-ticker
|
345 |
msgid "List Settings"
|
346 |
msgstr "اعدادات القائمة"
|
347 |
|
|
|
348 |
#: includes/meta-boxes.php:742
|
349 |
-
#@ ditty-news-ticker
|
350 |
msgid "Display title"
|
351 |
msgstr "عرض العنوان"
|
352 |
|
|
|
353 |
#: includes/meta-boxes.php:743
|
354 |
-
#@ ditty-news-ticker
|
355 |
msgid "Inline title"
|
356 |
msgstr "العنوان على السطر"
|
357 |
|
|
|
358 |
#: includes/meta-boxes.php:755
|
359 |
-
#@ ditty-news-ticker
|
360 |
msgid "Ticker width <em>(optional)</em>"
|
361 |
msgstr "عرض الشريط <em>(اختياري)</em>"
|
362 |
|
|
|
363 |
#: includes/meta-boxes.php:175
|
364 |
-
#@ ditty-news-ticker
|
365 |
msgid "Global Settings"
|
366 |
msgstr "الاعدادات العامة"
|
367 |
|
|
|
368 |
#: includes/meta-boxes.php:21
|
369 |
-
#@ ditty-news-ticker
|
370 |
msgid "Select Shortcode"
|
371 |
msgstr "اختيار الأختصار"
|
372 |
|
|
|
373 |
#: includes/meta-boxes.php:31
|
374 |
-
#@ ditty-news-ticker
|
375 |
msgid "Select Function"
|
376 |
msgstr "تحديد الدالة"
|
377 |
|
|
|
378 |
#: includes/metaboxer/metaboxer.php:756
|
379 |
-
#@ ditty-news-ticker
|
380 |
msgid "Select Code"
|
381 |
msgstr "إضافة كود"
|
382 |
|
383 |
-
|
384 |
-
#: includes/post-types.php:31
|
385 |
-
#@ ditty-news-ticker
|
386 |
msgid "News Tickers"
|
387 |
msgstr "شريط الاخبار"
|
388 |
|
|
|
389 |
#: includes/post-types.php:21
|
390 |
-
#@ ditty-news-ticker
|
391 |
msgid "News Ticker"
|
392 |
msgstr "شريط الاخبار"
|
393 |
|
|
|
394 |
#: includes/post-types.php:22
|
395 |
-
#@ ditty-news-ticker
|
396 |
msgid "Add New"
|
397 |
msgstr "اضافة جديد"
|
398 |
|
|
|
399 |
#: includes/post-types.php:23
|
400 |
-
#@ ditty-news-ticker
|
401 |
msgid "Add New News Ticker"
|
402 |
msgstr "إضافة شريط اخبار جديد"
|
403 |
|
|
|
404 |
#: includes/post-types.php:24
|
405 |
-
#@ ditty-news-ticker
|
406 |
msgid "Edit News Ticker"
|
407 |
msgstr "تحرير شريط الأخبار"
|
408 |
|
|
|
409 |
#: includes/post-types.php:25
|
410 |
-
#@ ditty-news-ticker
|
411 |
msgid "New News Ticker"
|
412 |
msgstr "شريط اخبار جديد"
|
413 |
|
|
|
414 |
#: includes/post-types.php:26
|
415 |
-
#@ ditty-news-ticker
|
416 |
msgid "View News Ticker"
|
417 |
msgstr "عرض شريط الاخبار"
|
418 |
|
|
|
419 |
#: includes/post-types.php:27
|
420 |
-
#@ ditty-news-ticker
|
421 |
msgid "Search News Tickers"
|
422 |
msgstr "بحث عن شريط اخبار"
|
423 |
|
|
|
424 |
#: includes/post-types.php:28
|
425 |
-
#@ ditty-news-ticker
|
426 |
msgid "No News Tickers Found"
|
427 |
msgstr "لم يتم العثور على عناوين ضمن شريط الاخبار"
|
428 |
|
|
|
429 |
#: includes/post-types.php:29
|
430 |
-
#@ ditty-news-ticker
|
431 |
msgid "No News Tickers Found In Trash"
|
432 |
msgstr "لم يتم العثور على شريط اخباري في سلة المهملات"
|
433 |
|
|
|
434 |
#: includes/post-types.php:62
|
435 |
-
#@ ditty-news-ticker
|
436 |
msgid "Ditty News Ticker Updated!"
|
437 |
msgstr "تم تحديث شريط الأخبار!"
|
438 |
|
439 |
-
|
440 |
-
#: includes/settings.php:12
|
441 |
-
#@ ditty-news-ticker
|
442 |
msgid "Settings"
|
443 |
msgstr "الاعدادات"
|
444 |
|
|
|
445 |
#: includes/settings.php:128
|
446 |
-
#@ ditty-news-ticker
|
447 |
msgid "Custom CSS"
|
448 |
msgstr "تنسيق خاص"
|
449 |
|
|
|
450 |
#: includes/settings.php:44
|
451 |
-
#@ ditty-news-ticker
|
452 |
msgid "Ditty News Ticker Settings"
|
453 |
msgstr "إعدادات شريط الأخبار"
|
454 |
|
|
|
455 |
#: includes/widget.php:42
|
456 |
-
#@ ditty-news-ticker
|
457 |
msgid "Displays a Ditty News Ticker."
|
458 |
msgstr "عرض شريط الأخبار."
|
459 |
|
|
|
460 |
#: includes/widget.php:137
|
461 |
-
#@ ditty-news-ticker
|
462 |
msgid "Title:"
|
463 |
msgstr "العنوان:"
|
464 |
|
|
|
465 |
#: includes/widget.php:143
|
466 |
-
#@ ditty-news-ticker
|
467 |
msgid "Select a Ticker:"
|
468 |
msgstr "اختار شريط:"
|
469 |
|
|
|
470 |
#: includes/widget.php:161
|
471 |
-
#@ ditty-news-ticker
|
472 |
msgid "Display Ticker Title?"
|
473 |
msgstr "عرض شريط العناوين؟"
|
474 |
|
|
|
475 |
#: includes/help.php:112
|
476 |
-
#@ ditty-news-ticker
|
477 |
msgid "View DNT extensions"
|
478 |
msgstr "عرض ملحقات DNT"
|
479 |
|
|
|
480 |
#: includes/meta-boxes.php:224
|
481 |
-
#@ ditty-news-ticker
|
482 |
msgid "NF"
|
483 |
msgstr "NF"
|
484 |
|
|
|
485 |
#: includes/settings.php:28
|
486 |
-
#@ ditty-news-ticker
|
487 |
msgid "The global settings to your news tickers."
|
488 |
msgstr "الإعدادات العامة للشريط الإخباري الخاص بك."
|
489 |
|
|
|
490 |
#: includes/meta-boxes.php:410
|
491 |
-
#@ ditty-news-ticker
|
492 |
msgid "Show first tick on init"
|
493 |
msgstr "عرض العنوان الاول مكتمل"
|
494 |
|
|
|
495 |
#: includes/meta-boxes.php:749
|
496 |
-
#@ ditty-news-ticker
|
497 |
msgid "Randomly shuffle the ticks"
|
498 |
msgstr "عرض العناوين ضمن الشريط عشوائياً"
|
499 |
|
|
|
500 |
#: includes/meta-boxes.php:761
|
501 |
-
#@ ditty-news-ticker
|
502 |
msgid "Offset ticks"
|
503 |
msgstr "الازاحة"
|
504 |
|
|
|
505 |
#: includes/meta-boxes.php:761
|
506 |
-
#@ ditty-news-ticker
|
507 |
msgid "px from the edge"
|
508 |
msgstr "بكسل من الحافة"
|
509 |
|
|
|
510 |
#: includes/meta-boxes.php:762
|
511 |
-
#@ ditty-news-ticker
|
512 |
msgid "The amount of pixels ticks should start and end off the screen."
|
513 |
msgstr "مقدار ازاحة الشريط بالبكسل يجب ان تبدأ وتنتهي بالشاشة."
|
514 |
|
|
|
515 |
#: includes/settings.php:124
|
516 |
-
#@ ditty-news-ticker
|
517 |
msgid "Visual Editor"
|
518 |
msgstr "المحرر المرئي"
|
519 |
|
|
|
520 |
#: includes/settings.php:154
|
521 |
-
#@ ditty-news-ticker
|
522 |
msgid "Use the visual editor for ticks"
|
523 |
msgstr "استخدام المحرر البصري لعناوين الاخبار"
|
524 |
|
|
|
525 |
#: includes/meta-boxes.php:205
|
526 |
-
#@ ditty-news-ticker
|
527 |
msgid "Force line breaks on carriage returns"
|
528 |
msgstr "اجبار فواصل الاسطر على إرجاع الاحرف"
|
529 |
|
|
|
530 |
#: includes/helpers.php:17
|
531 |
-
#@ ditty-news-ticker
|
532 |
msgid "Mixed"
|
533 |
msgstr "مختلط"
|
534 |
|
|
|
535 |
#: includes/meta-boxes.php:131
|
536 |
-
#@ ditty-news-ticker
|
537 |
msgid "Mixed Ticker Items"
|
538 |
msgstr "عناصر شريط مختلط"
|
539 |
|
|
|
540 |
#: includes/meta-boxes.php:301
|
541 |
-
#@ ditty-news-ticker
|
542 |
msgid "Add Tick"
|
543 |
msgstr "اضافة شريط"
|
544 |
|
|
|
545 |
#: includes/meta-boxes.php:307
|
546 |
-
#@ ditty-news-ticker
|
547 |
msgid "Tick selection"
|
548 |
msgstr "اختيار الشريط"
|
549 |
|
|
|
550 |
#: includes/meta-boxes.php:308
|
551 |
-
|
552 |
-
|
553 |
-
|
|
|
|
|
|
|
554 |
|
|
|
555 |
#: includes/meta-boxes.php:336
|
556 |
-
#@ ditty-news-ticker
|
557 |
msgid "Type:"
|
558 |
msgstr "الفئة:"
|
559 |
|
|
|
560 |
#: includes/meta-boxes.php:338
|
561 |
-
#@ ditty-news-ticker
|
562 |
msgid "Select Tick Type"
|
563 |
msgstr "اختار نوع الشريط"
|
564 |
|
|
|
565 |
#: includes/meta-boxes.php:346
|
566 |
-
#@ ditty-news-ticker
|
567 |
msgid "Offset:"
|
568 |
msgstr "الازاحة:"
|
569 |
|
|
|
570 |
#: includes/meta-boxes.php:66
|
571 |
-
#@ ditty-news-ticker
|
572 |
msgid "Select the type of ticker you'd like to use"
|
573 |
msgstr "حدد نوع الشريط الذي ترغب باستخدامه."
|
574 |
|
|
|
575 |
#: includes/meta-boxes.php:87
|
576 |
-
#@ ditty-news-ticker
|
577 |
msgid "Select the mode of the ticker"
|
578 |
msgstr "اختر اسلوب عرض الشريط"
|
579 |
|
|
|
580 |
#: includes/meta-boxes.php:19
|
581 |
-
|
582 |
-
|
|
|
583 |
msgstr ""
|
|
|
|
|
584 |
|
|
|
585 |
#: includes/meta-boxes.php:28
|
586 |
-
|
587 |
-
|
|
|
588 |
msgstr ""
|
|
|
|
|
589 |
|
|
|
590 |
#: includes/meta-boxes.php:204
|
591 |
-
#@ ditty-news-ticker
|
592 |
msgid "Line breaks"
|
593 |
-
msgstr ""
|
594 |
|
|
|
595 |
#: includes/meta-boxes.php:208
|
596 |
-
#@ ditty-news-ticker
|
597 |
msgid "Force line breaks"
|
598 |
-
msgstr ""
|
599 |
|
|
|
600 |
#: includes/meta-boxes.php:214
|
601 |
-
#@ ditty-news-ticker
|
602 |
msgid "Ticks"
|
603 |
-
msgstr ""
|
604 |
|
|
|
605 |
#: includes/meta-boxes.php:215
|
606 |
-
#@ ditty-news-ticker
|
607 |
msgid "Add an unlimited number of ticks to your ticker"
|
608 |
-
msgstr ""
|
609 |
|
|
|
610 |
#: includes/meta-boxes.php:403
|
611 |
-
#@ ditty-news-ticker
|
612 |
msgid "Set the scroll direction of the ticker"
|
613 |
-
msgstr ""
|
614 |
|
615 |
-
|
616 |
-
#: includes/meta-boxes.php:534
|
617 |
-
#@ ditty-news-ticker
|
618 |
msgid "Override the auto dimensions with specific values"
|
619 |
-
msgstr ""
|
620 |
|
|
|
621 |
#: includes/meta-boxes.php:428
|
622 |
-
#@ ditty-news-ticker
|
623 |
msgid "Set the vertical spacing of the scrolling data"
|
624 |
-
msgstr ""
|
625 |
|
|
|
626 |
#: includes/meta-boxes.php:439
|
627 |
-
#@ ditty-news-ticker
|
628 |
msgid "Set the speed of the scrolling data"
|
629 |
-
msgstr ""
|
630 |
|
|
|
631 |
#: includes/meta-boxes.php:450
|
632 |
-
#@ ditty-news-ticker
|
633 |
msgid "Set the spacing between scrolling data"
|
634 |
-
msgstr ""
|
635 |
|
|
|
636 |
#: includes/meta-boxes.php:519
|
637 |
-
#@ ditty-news-ticker
|
638 |
msgid "Set the type of rotation for the ticker"
|
639 |
-
msgstr ""
|
640 |
|
|
|
641 |
#: includes/meta-boxes.php:544
|
642 |
-
#@ ditty-news-ticker
|
643 |
msgid "Set the vertical spacing of the rotating data"
|
644 |
-
msgstr ""
|
645 |
|
|
|
646 |
#: includes/meta-boxes.php:555
|
647 |
-
#@ ditty-news-ticker
|
648 |
msgid "Set the delay between rotations"
|
649 |
-
msgstr ""
|
650 |
|
|
|
651 |
#: includes/meta-boxes.php:567
|
652 |
-
#@ ditty-news-ticker
|
653 |
msgid "Set the speed & easing of the rotation"
|
654 |
-
msgstr ""
|
655 |
|
|
|
656 |
#: includes/meta-boxes.php:583
|
657 |
-
#@ ditty-news-ticker
|
658 |
msgid "Set the directional navigation options"
|
659 |
-
msgstr ""
|
660 |
|
|
|
661 |
#: includes/meta-boxes.php:594
|
662 |
-
#@ ditty-news-ticker
|
663 |
msgid "Set the control navigation options"
|
664 |
-
msgstr ""
|
665 |
|
666 |
-
|
667 |
-
#: includes/meta-boxes.php:924
|
668 |
-
#@ ditty-news-ticker
|
669 |
msgid "« Previous"
|
670 |
-
msgstr ""
|
671 |
|
672 |
-
|
673 |
-
#: includes/meta-boxes.php:925
|
674 |
-
#@ ditty-news-ticker
|
675 |
msgid "Next »"
|
676 |
-
msgstr ""
|
677 |
|
|
|
678 |
#: includes/meta-boxes.php:653
|
679 |
-
#@ ditty-news-ticker
|
680 |
msgid "Set the vertical spacing of the list container"
|
681 |
-
msgstr ""
|
682 |
|
|
|
683 |
#: includes/meta-boxes.php:664
|
684 |
-
#@ ditty-news-ticker
|
685 |
msgid "Set the spacing between ticks"
|
686 |
-
msgstr ""
|
687 |
|
|
|
688 |
#: includes/meta-boxes.php:673
|
689 |
-
#@ ditty-news-ticker
|
690 |
msgid "List paging"
|
691 |
-
msgstr ""
|
692 |
|
|
|
693 |
#: includes/meta-boxes.php:674
|
694 |
-
#@ ditty-news-ticker
|
695 |
msgid "Break the list up into pages"
|
696 |
-
msgstr ""
|
697 |
|
|
|
698 |
#: includes/meta-boxes.php:678
|
699 |
-
#@ ditty-news-ticker
|
700 |
msgid "Ticks per page"
|
701 |
-
msgstr ""
|
702 |
|
|
|
703 |
#: includes/meta-boxes.php:680
|
704 |
-
#@ ditty-news-ticker
|
705 |
msgid "Enable previous & next links"
|
706 |
-
msgstr ""
|
707 |
|
|
|
708 |
#: includes/meta-boxes.php:682
|
709 |
-
#@ ditty-news-ticker
|
710 |
msgid "Previous text"
|
711 |
-
msgstr ""
|
712 |
|
|
|
713 |
#: includes/meta-boxes.php:683
|
714 |
-
#@ ditty-news-ticker
|
715 |
msgid "Next text"
|
716 |
-
msgstr ""
|
717 |
|
|
|
718 |
#: includes/meta-boxes.php:768
|
719 |
-
#@ ditty-news-ticker
|
720 |
msgid "Grid Display"
|
721 |
-
msgstr ""
|
722 |
|
|
|
723 |
#: includes/meta-boxes.php:769
|
724 |
-
#@ ditty-news-ticker
|
725 |
msgid "Display ticks in a grid"
|
726 |
-
msgstr ""
|
727 |
|
|
|
728 |
#: includes/meta-boxes.php:770
|
729 |
-
#@ ditty-news-ticker
|
730 |
msgid "Render empty rows"
|
731 |
-
msgstr ""
|
732 |
|
|
|
733 |
#: includes/meta-boxes.php:771
|
734 |
-
#@ ditty-news-ticker
|
735 |
msgid "Force equal column width"
|
736 |
-
msgstr ""
|
737 |
|
|
|
738 |
#: includes/meta-boxes.php:773
|
739 |
-
#@ ditty-news-ticker
|
740 |
msgid "Columns"
|
741 |
-
msgstr ""
|
742 |
|
|
|
743 |
#: includes/meta-boxes.php:774
|
744 |
-
#@ ditty-news-ticker
|
745 |
msgid "Rows"
|
746 |
-
msgstr ""
|
747 |
|
|
|
748 |
#: includes/meta-boxes.php:776
|
749 |
-
#@ ditty-news-ticker
|
750 |
msgid "Cell padding"
|
751 |
-
msgstr ""
|
752 |
|
|
|
753 |
#: includes/settings.php:116
|
754 |
-
#@ ditty-news-ticker
|
755 |
msgid "Ditty News Ticker settings"
|
756 |
-
msgstr ""
|
757 |
|
|
|
758 |
#: includes/settings.php:124
|
759 |
-
#@ ditty-news-ticker
|
760 |
msgid "Use the visual editor to create tick contents"
|
761 |
-
msgstr ""
|
762 |
|
|
|
763 |
#: includes/settings.php:128
|
764 |
-
|
765 |
-
|
766 |
-
msgstr ""
|
767 |
|
|
|
768 |
#: includes/settings.php:155
|
769 |
-
#@ ditty-news-ticker
|
770 |
msgid "Note:"
|
771 |
-
msgstr ""
|
772 |
|
|
|
773 |
#: includes/settings.php:155
|
774 |
-
|
775 |
-
|
|
|
776 |
msgstr ""
|
777 |
-
|
|
3 |
"Project-Id-Version: Ditty News Ticker v1.4.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: \n"
|
6 |
+
"PO-Revision-Date: 2014-01-17 23:13+0300\n"
|
7 |
"Last-Translator: Osama Alshami <Demor17@gmail.com>\n"
|
8 |
"Language-Team: Osama Alshami <Demor17@gmail.com>\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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
13 |
+
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
14 |
"X-Generator: Poedit 1.6.3\n"
|
|
|
|
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
17 |
+
"_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-Textdomain-Support: yes\n"
|
20 |
+
"Language: ar_YE\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
|
|
22 |
|
23 |
+
# @ ditty-news-ticker
|
24 |
#: includes/edit-columns.php:23
|
|
|
25 |
msgid "Type"
|
26 |
msgstr "الفئة"
|
27 |
|
28 |
+
# @ ditty-news-ticker
|
29 |
#: includes/edit-columns.php:24
|
|
|
30 |
msgid "Mode"
|
31 |
msgstr "اسلوب العرض"
|
32 |
|
33 |
+
# @ ditty-news-ticker
|
34 |
+
#: includes/edit-columns.php:25 includes/meta-boxes.php:18
|
|
|
35 |
msgid "Shortcode"
|
36 |
msgstr "الإختصار"
|
37 |
|
38 |
+
# @ ditty-news-ticker
|
39 |
+
#: includes/edit-columns.php:26 includes/meta-boxes.php:27
|
|
|
40 |
msgid "Direct Function"
|
41 |
msgstr "دالة مباشرة"
|
42 |
|
43 |
+
# @ ditty-news-ticker
|
44 |
#: includes/helpers.php:13
|
|
|
45 |
msgid "Default"
|
46 |
msgstr "الافتراضي"
|
47 |
|
48 |
+
# @ ditty-news-ticker
|
49 |
#: includes/helpers.php:37
|
|
|
50 |
msgid "Scroll"
|
51 |
msgstr "تمرير"
|
52 |
|
53 |
+
# @ ditty-news-ticker
|
54 |
#: includes/helpers.php:41
|
|
|
55 |
msgid "Rotate"
|
56 |
msgstr "تناوب"
|
57 |
|
58 |
+
# @ ditty-news-ticker
|
59 |
#: includes/helpers.php:45
|
|
|
60 |
msgid "List"
|
61 |
msgstr "قائمة"
|
62 |
|
63 |
+
# @ ditty-news-ticker
|
64 |
#: includes/help.php:59
|
|
|
65 |
msgid "Scroll Mode"
|
66 |
msgstr "اسلوب عرض التمرير"
|
67 |
|
68 |
+
# @ ditty-news-ticker
|
69 |
#: includes/help.php:66
|
|
|
70 |
msgid "Rotate Mode"
|
71 |
msgstr "اسلوب عرض التناوب"
|
72 |
|
73 |
+
# @ ditty-news-ticker
|
74 |
#: includes/help.php:73
|
|
|
75 |
msgid "List Mode"
|
76 |
msgstr "اسلوب عرض القائمة"
|
77 |
|
78 |
+
# @ ditty-news-ticker
|
79 |
+
#: includes/help.php:95 includes/widget.php:51
|
|
|
80 |
msgid "Ditty News Ticker"
|
81 |
msgstr "شريط الاخبار"
|
82 |
|
83 |
+
# @ ditty-news-ticker
|
84 |
#: includes/help.php:110
|
|
|
85 |
msgid "For more information:"
|
86 |
msgstr "للمزيد من المعلومات:"
|
87 |
|
88 |
+
# @ ditty-news-ticker
|
89 |
#: includes/help.php:111
|
90 |
+
msgid ""
|
91 |
+
"Visit the <a href=\"http://www.metaphorcreations.com\" target=\"_blank"
|
92 |
+
"\">documentation</a> on the Ditty News Ticker website"
|
93 |
+
msgstr ""
|
94 |
+
"قم بزيارة <a href=\"http://www.metaphorcreations.com\" target=\"_blank"
|
95 |
+
"\">وثائق المساعدة</a> على موقع دايتي شريط الأخبار"
|
96 |
|
97 |
+
# @ ditty-news-ticker
|
98 |
#: includes/help.php:126
|
|
|
99 |
msgid "Add general information about Ditty News Ticker."
|
100 |
msgstr "إضافة معلومات عامة عم شريط الأخبار."
|
101 |
|
102 |
+
# @ ditty-news-ticker
|
103 |
#: includes/help.php:135
|
|
|
104 |
msgid "Add scroll mode info."
|
105 |
msgstr "إضافة معلومات عن اسلوب عرض التمرير"
|
106 |
|
107 |
+
# @ ditty-news-ticker
|
108 |
#: includes/help.php:144
|
|
|
109 |
msgid "Add rotate mode info."
|
110 |
msgstr "إضافة معلومات عن اسلوب عرض التناوب"
|
111 |
|
112 |
+
# @ ditty-news-ticker
|
113 |
#: includes/help.php:153
|
|
|
114 |
msgid "Add list mode info."
|
115 |
msgstr "إضافة معلومات عن اسلوب عرض القائمة"
|
116 |
|
117 |
+
# @ ditty-news-ticker
|
118 |
#: includes/meta-boxes.php:65
|
|
|
119 |
msgid "Ticker Type"
|
120 |
msgstr "نوع الشريط"
|
121 |
|
122 |
+
# @ ditty-news-ticker
|
123 |
#: includes/meta-boxes.php:65
|
|
|
124 |
msgid "View all types"
|
125 |
msgstr "عرض كل الأنواع"
|
126 |
|
127 |
+
# @ ditty-news-ticker
|
128 |
#: includes/meta-boxes.php:221
|
|
|
129 |
msgid "Ticker text"
|
130 |
msgstr "عناوين الشريط"
|
131 |
|
132 |
+
# @ ditty-news-ticker
|
133 |
#: includes/meta-boxes.php:222
|
|
|
134 |
msgid "Link"
|
135 |
msgstr "الرابط"
|
136 |
|
137 |
+
# @ ditty-news-ticker
|
138 |
#: includes/meta-boxes.php:223
|
|
|
139 |
msgid "Target"
|
140 |
msgstr "الهدف"
|
141 |
|
142 |
+
# @ ditty-news-ticker
|
143 |
#: includes/meta-boxes.php:120
|
|
|
144 |
msgid "Default Ticker Items"
|
145 |
msgstr "عناوين الشريط الاخباري"
|
146 |
|
147 |
+
# @ ditty-news-ticker
|
148 |
#: includes/meta-boxes.php:86
|
|
|
149 |
msgid "Ticker Mode"
|
150 |
msgstr "اسلوب عرض الشريط"
|
151 |
|
152 |
+
# @ ditty-news-ticker
|
153 |
#: includes/meta-boxes.php:402
|
|
|
154 |
msgid "Scroll direction"
|
155 |
msgstr "اتجاه التمرير"
|
156 |
|
157 |
+
# @ ditty-news-ticker
|
158 |
#: includes/meta-boxes.php:406
|
|
|
159 |
msgid "Left"
|
160 |
msgstr "يسار"
|
161 |
|
162 |
+
# @ ditty-news-ticker
|
163 |
#: includes/meta-boxes.php:407
|
|
|
164 |
msgid "Right"
|
165 |
msgstr "يمين"
|
166 |
|
167 |
+
# @ ditty-news-ticker
|
168 |
#: includes/meta-boxes.php:408
|
|
|
169 |
msgid "Up"
|
170 |
msgstr "اعلى"
|
171 |
|
172 |
+
# @ ditty-news-ticker
|
173 |
#: includes/meta-boxes.php:409
|
|
|
174 |
msgid "Down"
|
175 |
msgstr "اسفل"
|
176 |
|
177 |
+
# @ ditty-news-ticker
|
178 |
+
#: includes/meta-boxes.php:416 includes/meta-boxes.php:533
|
|
|
179 |
msgid "Tick dimensions"
|
180 |
msgstr "ابعاد الشريط"
|
181 |
|
182 |
+
# @ ditty-news-ticker
|
183 |
#: includes/meta-boxes.php:420
|
|
|
184 |
msgid "Width"
|
185 |
msgstr "العرض"
|
186 |
|
187 |
+
# @ ditty-news-ticker
|
188 |
+
#: includes/meta-boxes.php:421 includes/meta-boxes.php:537
|
|
|
189 |
msgid "Height"
|
190 |
msgstr "الارتفاع"
|
191 |
|
192 |
+
# @ ditty-news-ticker
|
193 |
#: includes/meta-boxes.php:427
|
|
|
194 |
msgid "Scroller padding"
|
195 |
msgstr "حاشية شريط التمرير"
|
196 |
|
197 |
+
# @ ditty-news-ticker
|
198 |
+
#: includes/meta-boxes.php:431 includes/meta-boxes.php:547
|
199 |
#: includes/meta-boxes.php:656
|
|
|
200 |
msgid "Vertical padding"
|
201 |
msgstr "الحاشية الرأسية"
|
202 |
|
203 |
+
# @ ditty-news-ticker
|
204 |
+
#: includes/meta-boxes.php:432 includes/meta-boxes.php:548
|
205 |
#: includes/meta-boxes.php:657
|
|
|
206 |
msgid "Vertical margin"
|
207 |
msgstr "الهامش الرأسي"
|
208 |
|
209 |
+
# @ ditty-news-ticker
|
210 |
#: includes/meta-boxes.php:438
|
|
|
211 |
msgid "Scroll speed"
|
212 |
msgstr "سرعة التمرير"
|
213 |
|
214 |
+
# @ ditty-news-ticker
|
215 |
+
#: includes/meta-boxes.php:443 includes/meta-boxes.php:560
|
|
|
216 |
msgid "Pause on mouse over"
|
217 |
msgstr "إيقاف مؤقت عند التمرير عليه بالفأرة"
|
218 |
|
219 |
+
# @ ditty-news-ticker
|
220 |
+
#: includes/meta-boxes.php:449 includes/meta-boxes.php:663
|
|
|
221 |
msgid "Tick spacing"
|
222 |
msgstr "المسافة بين العناوين"
|
223 |
|
224 |
+
# @ ditty-news-ticker
|
225 |
+
#: includes/meta-boxes.php:453 includes/meta-boxes.php:667
|
|
|
226 |
msgid "Pixels"
|
227 |
msgstr "بكسل"
|
228 |
|
229 |
+
# @ ditty-news-ticker
|
230 |
#: includes/meta-boxes.php:142
|
|
|
231 |
msgid "Scroll Settings"
|
232 |
msgstr "خيارات التمرير"
|
233 |
|
234 |
+
# @ ditty-news-ticker
|
235 |
#: includes/meta-boxes.php:518
|
|
|
236 |
msgid "Rotation type"
|
237 |
msgstr "نوع التناوب"
|
238 |
|
239 |
+
# @ ditty-news-ticker
|
240 |
#: includes/meta-boxes.php:522
|
|
|
241 |
msgid "Fade"
|
242 |
msgstr "تلاشي"
|
243 |
|
244 |
+
# @ ditty-news-ticker
|
245 |
#: includes/meta-boxes.php:523
|
|
|
246 |
msgid "Slide left"
|
247 |
msgstr "انزلاق من اليسار"
|
248 |
|
249 |
+
# @ ditty-news-ticker
|
250 |
#: includes/meta-boxes.php:524
|
|
|
251 |
msgid "Slide right"
|
252 |
msgstr "انزلاق من اليمين"
|
253 |
|
254 |
+
# @ ditty-news-ticker
|
255 |
#: includes/meta-boxes.php:525
|
|
|
256 |
msgid "Slide up"
|
257 |
msgstr "انزلاق من الاعلى"
|
258 |
|
259 |
+
# @ ditty-news-ticker
|
260 |
#: includes/meta-boxes.php:526
|
|
|
261 |
msgid "Slide down"
|
262 |
msgstr "انزلاق من الاسفل"
|
263 |
|
264 |
+
# @ ditty-news-ticker
|
265 |
#: includes/meta-boxes.php:527
|
|
|
266 |
msgid "Dynamic slide direction"
|
267 |
msgstr "اتجاه الانزلاق الديناميكي"
|
268 |
|
269 |
+
# @ ditty-news-ticker
|
270 |
#: includes/meta-boxes.php:543
|
|
|
271 |
msgid "Rotator padding"
|
272 |
msgstr "حاشية التناوب"
|
273 |
|
274 |
+
# @ ditty-news-ticker
|
275 |
#: includes/meta-boxes.php:554
|
|
|
276 |
msgid "Auto rotate"
|
277 |
msgstr "تناوب ذاتي"
|
278 |
|
279 |
+
# @ ditty-news-ticker
|
280 |
+
#: includes/meta-boxes.php:558 includes/meta-boxes.php:586
|
281 |
+
#: includes/meta-boxes.php:597 includes/meta-boxes.php:677
|
|
|
|
|
282 |
msgid "Enable"
|
283 |
msgstr "تفعيل"
|
284 |
|
285 |
+
# @ ditty-news-ticker
|
286 |
#: includes/meta-boxes.php:559
|
|
|
287 |
msgid "Seconds delay"
|
288 |
msgstr "المهلة بالثواني"
|
289 |
|
290 |
+
# @ ditty-news-ticker
|
291 |
#: includes/meta-boxes.php:566
|
|
|
292 |
msgid "Rotate speed"
|
293 |
msgstr "سرعة التناوب"
|
294 |
|
295 |
+
# @ ditty-news-ticker
|
296 |
#: includes/meta-boxes.php:570
|
|
|
297 |
msgid "Tenths of a second"
|
298 |
msgstr "أعشار من الثانية"
|
299 |
|
300 |
+
# @ ditty-news-ticker
|
301 |
#: includes/meta-boxes.php:582
|
|
|
302 |
msgid "Directional navigation"
|
303 |
msgstr "ازرار التحكم المباشرة"
|
304 |
|
305 |
+
# @ ditty-news-ticker
|
306 |
#: includes/meta-boxes.php:587
|
|
|
307 |
msgid "Autohide navigation"
|
308 |
msgstr "اخفاء آلي لازرار التحكم"
|
309 |
|
310 |
+
# @ ditty-news-ticker
|
311 |
#: includes/meta-boxes.php:593
|
|
|
312 |
msgid "Control navigation"
|
313 |
msgstr "ازرار التحكم"
|
314 |
|
315 |
+
# @ ditty-news-ticker
|
316 |
#: includes/meta-boxes.php:598
|
|
|
317 |
msgid "Numbers"
|
318 |
msgstr "الارقام"
|
319 |
|
320 |
+
# @ ditty-news-ticker
|
321 |
#: includes/meta-boxes.php:599
|
|
|
322 |
msgid "Buttons"
|
323 |
msgstr "الازرار"
|
324 |
|
325 |
+
# @ ditty-news-ticker
|
326 |
#: includes/meta-boxes.php:153
|
|
|
327 |
msgid "Rotate Settings"
|
328 |
msgstr "اعدادات التناوب"
|
329 |
|
330 |
+
# @ ditty-news-ticker
|
331 |
#: includes/meta-boxes.php:652
|
|
|
332 |
msgid "List padding"
|
333 |
msgstr "حاشية القائمة"
|
334 |
|
335 |
+
# @ ditty-news-ticker
|
336 |
#: includes/meta-boxes.php:164
|
|
|
337 |
msgid "List Settings"
|
338 |
msgstr "اعدادات القائمة"
|
339 |
|
340 |
+
# @ ditty-news-ticker
|
341 |
#: includes/meta-boxes.php:742
|
|
|
342 |
msgid "Display title"
|
343 |
msgstr "عرض العنوان"
|
344 |
|
345 |
+
# @ ditty-news-ticker
|
346 |
#: includes/meta-boxes.php:743
|
|
|
347 |
msgid "Inline title"
|
348 |
msgstr "العنوان على السطر"
|
349 |
|
350 |
+
# @ ditty-news-ticker
|
351 |
#: includes/meta-boxes.php:755
|
|
|
352 |
msgid "Ticker width <em>(optional)</em>"
|
353 |
msgstr "عرض الشريط <em>(اختياري)</em>"
|
354 |
|
355 |
+
# @ ditty-news-ticker
|
356 |
#: includes/meta-boxes.php:175
|
|
|
357 |
msgid "Global Settings"
|
358 |
msgstr "الاعدادات العامة"
|
359 |
|
360 |
+
# @ ditty-news-ticker
|
361 |
#: includes/meta-boxes.php:21
|
|
|
362 |
msgid "Select Shortcode"
|
363 |
msgstr "اختيار الأختصار"
|
364 |
|
365 |
+
# @ ditty-news-ticker
|
366 |
#: includes/meta-boxes.php:31
|
|
|
367 |
msgid "Select Function"
|
368 |
msgstr "تحديد الدالة"
|
369 |
|
370 |
+
# @ ditty-news-ticker
|
371 |
#: includes/metaboxer/metaboxer.php:756
|
|
|
372 |
msgid "Select Code"
|
373 |
msgstr "إضافة كود"
|
374 |
|
375 |
+
# @ ditty-news-ticker
|
376 |
+
#: includes/post-types.php:20 includes/post-types.php:31
|
|
|
377 |
msgid "News Tickers"
|
378 |
msgstr "شريط الاخبار"
|
379 |
|
380 |
+
# @ ditty-news-ticker
|
381 |
#: includes/post-types.php:21
|
|
|
382 |
msgid "News Ticker"
|
383 |
msgstr "شريط الاخبار"
|
384 |
|
385 |
+
# @ ditty-news-ticker
|
386 |
#: includes/post-types.php:22
|
|
|
387 |
msgid "Add New"
|
388 |
msgstr "اضافة جديد"
|
389 |
|
390 |
+
# @ ditty-news-ticker
|
391 |
#: includes/post-types.php:23
|
|
|
392 |
msgid "Add New News Ticker"
|
393 |
msgstr "إضافة شريط اخبار جديد"
|
394 |
|
395 |
+
# @ ditty-news-ticker
|
396 |
#: includes/post-types.php:24
|
|
|
397 |
msgid "Edit News Ticker"
|
398 |
msgstr "تحرير شريط الأخبار"
|
399 |
|
400 |
+
# @ ditty-news-ticker
|
401 |
#: includes/post-types.php:25
|
|
|
402 |
msgid "New News Ticker"
|
403 |
msgstr "شريط اخبار جديد"
|
404 |
|
405 |
+
# @ ditty-news-ticker
|
406 |
#: includes/post-types.php:26
|
|
|
407 |
msgid "View News Ticker"
|
408 |
msgstr "عرض شريط الاخبار"
|
409 |
|
410 |
+
# @ ditty-news-ticker
|
411 |
#: includes/post-types.php:27
|
|
|
412 |
msgid "Search News Tickers"
|
413 |
msgstr "بحث عن شريط اخبار"
|
414 |
|
415 |
+
# @ ditty-news-ticker
|
416 |
#: includes/post-types.php:28
|
|
|
417 |
msgid "No News Tickers Found"
|
418 |
msgstr "لم يتم العثور على عناوين ضمن شريط الاخبار"
|
419 |
|
420 |
+
# @ ditty-news-ticker
|
421 |
#: includes/post-types.php:29
|
|
|
422 |
msgid "No News Tickers Found In Trash"
|
423 |
msgstr "لم يتم العثور على شريط اخباري في سلة المهملات"
|
424 |
|
425 |
+
# @ ditty-news-ticker
|
426 |
#: includes/post-types.php:62
|
|
|
427 |
msgid "Ditty News Ticker Updated!"
|
428 |
msgstr "تم تحديث شريط الأخبار!"
|
429 |
|
430 |
+
# @ ditty-news-ticker
|
431 |
+
#: includes/settings.php:11 includes/settings.php:12
|
|
|
432 |
msgid "Settings"
|
433 |
msgstr "الاعدادات"
|
434 |
|
435 |
+
# @ ditty-news-ticker
|
436 |
#: includes/settings.php:128
|
|
|
437 |
msgid "Custom CSS"
|
438 |
msgstr "تنسيق خاص"
|
439 |
|
440 |
+
# @ ditty-news-ticker
|
441 |
#: includes/settings.php:44
|
|
|
442 |
msgid "Ditty News Ticker Settings"
|
443 |
msgstr "إعدادات شريط الأخبار"
|
444 |
|
445 |
+
# @ ditty-news-ticker
|
446 |
#: includes/widget.php:42
|
|
|
447 |
msgid "Displays a Ditty News Ticker."
|
448 |
msgstr "عرض شريط الأخبار."
|
449 |
|
450 |
+
# @ ditty-news-ticker
|
451 |
#: includes/widget.php:137
|
|
|
452 |
msgid "Title:"
|
453 |
msgstr "العنوان:"
|
454 |
|
455 |
+
# @ ditty-news-ticker
|
456 |
#: includes/widget.php:143
|
|
|
457 |
msgid "Select a Ticker:"
|
458 |
msgstr "اختار شريط:"
|
459 |
|
460 |
+
# @ ditty-news-ticker
|
461 |
#: includes/widget.php:161
|
|
|
462 |
msgid "Display Ticker Title?"
|
463 |
msgstr "عرض شريط العناوين؟"
|
464 |
|
465 |
+
# @ ditty-news-ticker
|
466 |
#: includes/help.php:112
|
|
|
467 |
msgid "View DNT extensions"
|
468 |
msgstr "عرض ملحقات DNT"
|
469 |
|
470 |
+
# @ ditty-news-ticker
|
471 |
#: includes/meta-boxes.php:224
|
|
|
472 |
msgid "NF"
|
473 |
msgstr "NF"
|
474 |
|
475 |
+
# @ ditty-news-ticker
|
476 |
#: includes/settings.php:28
|
|
|
477 |
msgid "The global settings to your news tickers."
|
478 |
msgstr "الإعدادات العامة للشريط الإخباري الخاص بك."
|
479 |
|
480 |
+
# @ ditty-news-ticker
|
481 |
#: includes/meta-boxes.php:410
|
|
|
482 |
msgid "Show first tick on init"
|
483 |
msgstr "عرض العنوان الاول مكتمل"
|
484 |
|
485 |
+
# @ ditty-news-ticker
|
486 |
#: includes/meta-boxes.php:749
|
|
|
487 |
msgid "Randomly shuffle the ticks"
|
488 |
msgstr "عرض العناوين ضمن الشريط عشوائياً"
|
489 |
|
490 |
+
# @ ditty-news-ticker
|
491 |
#: includes/meta-boxes.php:761
|
|
|
492 |
msgid "Offset ticks"
|
493 |
msgstr "الازاحة"
|
494 |
|
495 |
+
# @ ditty-news-ticker
|
496 |
#: includes/meta-boxes.php:761
|
|
|
497 |
msgid "px from the edge"
|
498 |
msgstr "بكسل من الحافة"
|
499 |
|
500 |
+
# @ ditty-news-ticker
|
501 |
#: includes/meta-boxes.php:762
|
|
|
502 |
msgid "The amount of pixels ticks should start and end off the screen."
|
503 |
msgstr "مقدار ازاحة الشريط بالبكسل يجب ان تبدأ وتنتهي بالشاشة."
|
504 |
|
505 |
+
# @ ditty-news-ticker
|
506 |
#: includes/settings.php:124
|
|
|
507 |
msgid "Visual Editor"
|
508 |
msgstr "المحرر المرئي"
|
509 |
|
510 |
+
# @ ditty-news-ticker
|
511 |
#: includes/settings.php:154
|
|
|
512 |
msgid "Use the visual editor for ticks"
|
513 |
msgstr "استخدام المحرر البصري لعناوين الاخبار"
|
514 |
|
515 |
+
# @ ditty-news-ticker
|
516 |
#: includes/meta-boxes.php:205
|
|
|
517 |
msgid "Force line breaks on carriage returns"
|
518 |
msgstr "اجبار فواصل الاسطر على إرجاع الاحرف"
|
519 |
|
520 |
+
# @ ditty-news-ticker
|
521 |
#: includes/helpers.php:17
|
|
|
522 |
msgid "Mixed"
|
523 |
msgstr "مختلط"
|
524 |
|
525 |
+
# @ ditty-news-ticker
|
526 |
#: includes/meta-boxes.php:131
|
|
|
527 |
msgid "Mixed Ticker Items"
|
528 |
msgstr "عناصر شريط مختلط"
|
529 |
|
530 |
+
# @ ditty-news-ticker
|
531 |
#: includes/meta-boxes.php:301
|
|
|
532 |
msgid "Add Tick"
|
533 |
msgstr "اضافة شريط"
|
534 |
|
535 |
+
# @ ditty-news-ticker
|
536 |
#: includes/meta-boxes.php:307
|
|
|
537 |
msgid "Tick selection"
|
538 |
msgstr "اختيار الشريط"
|
539 |
|
540 |
+
# @ ditty-news-ticker
|
541 |
#: includes/meta-boxes.php:308
|
542 |
+
msgid ""
|
543 |
+
"Select the ticks you would like to display by choosing the tick type and the "
|
544 |
+
"offset position of the selected feed"
|
545 |
+
msgstr ""
|
546 |
+
"حدد شريط الاخبار الذي ترغب بعرضه عن طريق اختيار نوع الشريط وموضع الازاحة "
|
547 |
+
"للتغذية المحدده"
|
548 |
|
549 |
+
# @ ditty-news-ticker
|
550 |
#: includes/meta-boxes.php:336
|
|
|
551 |
msgid "Type:"
|
552 |
msgstr "الفئة:"
|
553 |
|
554 |
+
# @ ditty-news-ticker
|
555 |
#: includes/meta-boxes.php:338
|
|
|
556 |
msgid "Select Tick Type"
|
557 |
msgstr "اختار نوع الشريط"
|
558 |
|
559 |
+
# @ ditty-news-ticker
|
560 |
#: includes/meta-boxes.php:346
|
|
|
561 |
msgid "Offset:"
|
562 |
msgstr "الازاحة:"
|
563 |
|
564 |
+
# @ ditty-news-ticker
|
565 |
#: includes/meta-boxes.php:66
|
|
|
566 |
msgid "Select the type of ticker you'd like to use"
|
567 |
msgstr "حدد نوع الشريط الذي ترغب باستخدامه."
|
568 |
|
569 |
+
# @ ditty-news-ticker
|
570 |
#: includes/meta-boxes.php:87
|
|
|
571 |
msgid "Select the mode of the ticker"
|
572 |
msgstr "اختر اسلوب عرض الشريط"
|
573 |
|
574 |
+
# @ ditty-news-ticker
|
575 |
#: includes/meta-boxes.php:19
|
576 |
+
msgid ""
|
577 |
+
"Copy and paste this shortcode into a page or post to display the ticker "
|
578 |
+
"within the post content."
|
579 |
msgstr ""
|
580 |
+
"انسخ هذا الاختصار واضفه بداخل الصفحة او المقالة التي ترغب بعرض شريط الاخبار "
|
581 |
+
"ضمنها."
|
582 |
|
583 |
+
# @ ditty-news-ticker
|
584 |
#: includes/meta-boxes.php:28
|
585 |
+
msgid ""
|
586 |
+
"Copy and paste this code directly into one of your theme files to display "
|
587 |
+
"the ticker any where you want on your site."
|
588 |
msgstr ""
|
589 |
+
"انسخ هذا الكود مباشرة إلى داخل اي ملف من ملفات قالبك لعرض شريط الاخبار في أي "
|
590 |
+
"مكان تريد على موقعك."
|
591 |
|
592 |
+
# @ ditty-news-ticker
|
593 |
#: includes/meta-boxes.php:204
|
|
|
594 |
msgid "Line breaks"
|
595 |
+
msgstr "فواصل الأسطر"
|
596 |
|
597 |
+
# @ ditty-news-ticker
|
598 |
#: includes/meta-boxes.php:208
|
|
|
599 |
msgid "Force line breaks"
|
600 |
+
msgstr "اجبار فواصل الاسطر"
|
601 |
|
602 |
+
# @ ditty-news-ticker
|
603 |
#: includes/meta-boxes.php:214
|
|
|
604 |
msgid "Ticks"
|
605 |
+
msgstr "العناوين"
|
606 |
|
607 |
+
# @ ditty-news-ticker
|
608 |
#: includes/meta-boxes.php:215
|
|
|
609 |
msgid "Add an unlimited number of ticks to your ticker"
|
610 |
+
msgstr "إضافة عدد غير محدود من العناوين إلى شريط الاخبار"
|
611 |
|
612 |
+
# @ ditty-news-ticker
|
613 |
#: includes/meta-boxes.php:403
|
|
|
614 |
msgid "Set the scroll direction of the ticker"
|
615 |
+
msgstr "تحديد اتجاه تمرير شريط العناوين"
|
616 |
|
617 |
+
# @ ditty-news-ticker
|
618 |
+
#: includes/meta-boxes.php:417 includes/meta-boxes.php:534
|
|
|
619 |
msgid "Override the auto dimensions with specific values"
|
620 |
+
msgstr "تجاوز القيم الافتراضية بقيم اخرى مخصصة"
|
621 |
|
622 |
+
# @ ditty-news-ticker
|
623 |
#: includes/meta-boxes.php:428
|
|
|
624 |
msgid "Set the vertical spacing of the scrolling data"
|
625 |
+
msgstr "تحديد المسافة العمودية لعناوين الشريط"
|
626 |
|
627 |
+
# @ ditty-news-ticker
|
628 |
#: includes/meta-boxes.php:439
|
|
|
629 |
msgid "Set the speed of the scrolling data"
|
630 |
+
msgstr "تحديد سرعة مرور العناوين"
|
631 |
|
632 |
+
# @ ditty-news-ticker
|
633 |
#: includes/meta-boxes.php:450
|
|
|
634 |
msgid "Set the spacing between scrolling data"
|
635 |
+
msgstr "تحديد المسافة بين العناوين في الشريط"
|
636 |
|
637 |
+
# @ ditty-news-ticker
|
638 |
#: includes/meta-boxes.php:519
|
|
|
639 |
msgid "Set the type of rotation for the ticker"
|
640 |
+
msgstr "تحديد نوع التناوب في ظهور عناوين الشريط"
|
641 |
|
642 |
+
# @ ditty-news-ticker
|
643 |
#: includes/meta-boxes.php:544
|
|
|
644 |
msgid "Set the vertical spacing of the rotating data"
|
645 |
+
msgstr "تحديد المسافة العمودية لعناوين الشريط المتناوبة"
|
646 |
|
647 |
+
# @ ditty-news-ticker
|
648 |
#: includes/meta-boxes.php:555
|
|
|
649 |
msgid "Set the delay between rotations"
|
650 |
+
msgstr "تحديد المدة الزمنية بين التناوبات"
|
651 |
|
652 |
+
# @ ditty-news-ticker
|
653 |
#: includes/meta-boxes.php:567
|
|
|
654 |
msgid "Set the speed & easing of the rotation"
|
655 |
+
msgstr "تعيين سرعة وتهدئة التناوب"
|
656 |
|
657 |
+
# @ ditty-news-ticker
|
658 |
#: includes/meta-boxes.php:583
|
|
|
659 |
msgid "Set the directional navigation options"
|
660 |
+
msgstr "تعيين خيارات ازرار التحكم المباشرة"
|
661 |
|
662 |
+
# @ ditty-news-ticker
|
663 |
#: includes/meta-boxes.php:594
|
|
|
664 |
msgid "Set the control navigation options"
|
665 |
+
msgstr "تعيين خيارات ازرار التحكم"
|
666 |
|
667 |
+
# @ ditty-news-ticker
|
668 |
+
#: includes/meta-boxes.php:624 includes/meta-boxes.php:924
|
|
|
669 |
msgid "« Previous"
|
670 |
+
msgstr "« السابق"
|
671 |
|
672 |
+
# @ ditty-news-ticker
|
673 |
+
#: includes/meta-boxes.php:625 includes/meta-boxes.php:925
|
|
|
674 |
msgid "Next »"
|
675 |
+
msgstr "التالي »"
|
676 |
|
677 |
+
# @ ditty-news-ticker
|
678 |
#: includes/meta-boxes.php:653
|
|
|
679 |
msgid "Set the vertical spacing of the list container"
|
680 |
+
msgstr "تعيين التباعد العمودي لمحتوى القائمة"
|
681 |
|
682 |
+
# @ ditty-news-ticker
|
683 |
#: includes/meta-boxes.php:664
|
|
|
684 |
msgid "Set the spacing between ticks"
|
685 |
+
msgstr "تعيين المسافة بين العناوين"
|
686 |
|
687 |
+
# @ ditty-news-ticker
|
688 |
#: includes/meta-boxes.php:673
|
|
|
689 |
msgid "List paging"
|
690 |
+
msgstr "ترقيم القائمة"
|
691 |
|
692 |
+
# @ ditty-news-ticker
|
693 |
#: includes/meta-boxes.php:674
|
|
|
694 |
msgid "Break the list up into pages"
|
695 |
+
msgstr "تقسيم قائمة العناوين إلى صفحات منفصلة"
|
696 |
|
697 |
+
# @ ditty-news-ticker
|
698 |
#: includes/meta-boxes.php:678
|
|
|
699 |
msgid "Ticks per page"
|
700 |
+
msgstr "العناوين في كل صفحة"
|
701 |
|
702 |
+
# @ ditty-news-ticker
|
703 |
#: includes/meta-boxes.php:680
|
|
|
704 |
msgid "Enable previous & next links"
|
705 |
+
msgstr "تفعيل روابط التالي والسابق"
|
706 |
|
707 |
+
# @ ditty-news-ticker
|
708 |
#: includes/meta-boxes.php:682
|
|
|
709 |
msgid "Previous text"
|
710 |
+
msgstr "نص عبارة السابق"
|
711 |
|
712 |
+
# @ ditty-news-ticker
|
713 |
#: includes/meta-boxes.php:683
|
|
|
714 |
msgid "Next text"
|
715 |
+
msgstr "نص عبارة التالي"
|
716 |
|
717 |
+
# @ ditty-news-ticker
|
718 |
#: includes/meta-boxes.php:768
|
|
|
719 |
msgid "Grid Display"
|
720 |
+
msgstr "شبكة العرض"
|
721 |
|
722 |
+
# @ ditty-news-ticker
|
723 |
#: includes/meta-boxes.php:769
|
|
|
724 |
msgid "Display ticks in a grid"
|
725 |
+
msgstr "عرض العناوين في شبكة"
|
726 |
|
727 |
+
# @ ditty-news-ticker
|
728 |
#: includes/meta-boxes.php:770
|
|
|
729 |
msgid "Render empty rows"
|
730 |
+
msgstr "تصيير الصفوف الفارغة"
|
731 |
|
732 |
+
# @ ditty-news-ticker
|
733 |
#: includes/meta-boxes.php:771
|
|
|
734 |
msgid "Force equal column width"
|
735 |
+
msgstr "فرض عرض متساوي للاعمدة"
|
736 |
|
737 |
+
# @ ditty-news-ticker
|
738 |
#: includes/meta-boxes.php:773
|
|
|
739 |
msgid "Columns"
|
740 |
+
msgstr "الاعمدة"
|
741 |
|
742 |
+
# @ ditty-news-ticker
|
743 |
#: includes/meta-boxes.php:774
|
|
|
744 |
msgid "Rows"
|
745 |
+
msgstr "الصفوف"
|
746 |
|
747 |
+
# @ ditty-news-ticker
|
748 |
#: includes/meta-boxes.php:776
|
|
|
749 |
msgid "Cell padding"
|
750 |
+
msgstr "حاشية الخلية"
|
751 |
|
752 |
+
# @ ditty-news-ticker
|
753 |
#: includes/settings.php:116
|
|
|
754 |
msgid "Ditty News Ticker settings"
|
755 |
+
msgstr "اعدادات الشريط الاخباري"
|
756 |
|
757 |
+
# @ ditty-news-ticker
|
758 |
#: includes/settings.php:124
|
|
|
759 |
msgid "Use the visual editor to create tick contents"
|
760 |
+
msgstr "استخدام المحرر المتطور لإنشاء عناوين الشريط الاخباري"
|
761 |
|
762 |
+
# @ ditty-news-ticker
|
763 |
#: includes/settings.php:128
|
764 |
+
msgid ""
|
765 |
+
"Add custom css to style your ticker without modifying any external files"
|
766 |
+
msgstr "إضافة تنسيق مخصص إلى تنسيق الشريط بدون التعديل على اي ملف خارجي"
|
767 |
|
768 |
+
# @ ditty-news-ticker
|
769 |
#: includes/settings.php:155
|
|
|
770 |
msgid "Note:"
|
771 |
+
msgstr "ملاحظة:"
|
772 |
|
773 |
+
# @ ditty-news-ticker
|
774 |
#: includes/settings.php:155
|
775 |
+
msgid ""
|
776 |
+
"The content in the visual editors will disappear after re-arranging ticks. "
|
777 |
+
"That content will re-populate after re-saving the ticker."
|
778 |
msgstr ""
|
779 |
+
"المحتوى في المحرر البصري سوف يختفي بعد إعادة صف الاشرطة. هذا المحتوى سوف "
|
780 |
+
"يعاد تعبئته بعد إعادة حفظ الشريط الاخباري."
|
languages/ditty-news-ticker-ar_YE.mo
DELETED
Binary file
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: metaphorcreations
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FUZKZGAJSBAE6
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 3.8
|
7 |
Stable tag: /trunk/
|
8 |
License: GPL2
|
9 |
|
@@ -52,6 +52,10 @@ Each individual Ticker post has multiple settings to customize.
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
|
|
55 |
= 1.4.0 =
|
56 |
* Added grid display funcitonality
|
57 |
* Added page list functionality to lists
|
@@ -198,4 +202,4 @@ Each individual Ticker post has multiple settings to customize.
|
|
198 |
|
199 |
== Upgrade Notice ==
|
200 |
|
201 |
-
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FUZKZGAJSBAE6
|
4 |
Tags: ticker, news, news ticker, rotator, data rotator, lists, data
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 3.8.1
|
7 |
Stable tag: /trunk/
|
8 |
License: GPL2
|
9 |
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 1.4.1 =
|
56 |
+
* Added additional jQuery triggers and listeners
|
57 |
+
* Fixed force line break issue
|
58 |
+
|
59 |
= 1.4.0 =
|
60 |
* Added grid display funcitonality
|
61 |
* Added page list functionality to lists
|
202 |
|
203 |
== Upgrade Notice ==
|
204 |
|
205 |
+
Added additional jQuery triggers and listeners. Fixed force line break issue
|