Cyclone Slider - Version 2.7.5

Version Description

  • 2013-10-10 =
  • Fix. Fix critical error with slider not working caused by easing plugin.
  • New. Added ability to add a title to slider widget.
  • Change. Modified easing plugin to v1.3.1.
  • Change. Added minified version of easing plugin.
Download this release

Release Info

Developer kosinix
Plugin Icon 128x128 Cyclone Slider
Version 2.7.5
Comparing to
See all releases

Code changes from version 2.7.4 to 2.7.5

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.codefleet.net/donate/
4
  Tags: slider, slideshow, drag-and-drop, wordpress-slider, wordpress-slideshow, cycle 2, jquery, responsive, translation-ready, custom-post, cyclone-slider
5
  Requires at least: 3.5
6
  Tested up to: 3.6.1
7
- Stable tag: 2.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -99,6 +99,12 @@ Inside your current active theme create a folder named "cycloneslider". Add your
99
 
100
  == Changelog ==
101
 
 
 
 
 
 
 
102
  = 2.7.4 - 2013-10-01 =
103
  * Fix. Fix dynamic height for templates.
104
  * Change. Added RTL support and sanitize output in templates.
@@ -265,6 +271,12 @@ Inside your current active theme create a folder named "cycloneslider". Add your
265
 
266
  == Upgrade Notice ==
267
 
 
 
 
 
 
 
268
  = 2.7.4 - 2013-10-01 =
269
  * Fix. Fix dynamic height for templates.
270
  * Fix. Fix video slide made it fluid.
4
  Tags: slider, slideshow, drag-and-drop, wordpress-slider, wordpress-slideshow, cycle 2, jquery, responsive, translation-ready, custom-post, cyclone-slider
5
  Requires at least: 3.5
6
  Tested up to: 3.6.1
7
+ Stable tag: 2.7.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
99
 
100
  == Changelog ==
101
 
102
+ = 2.7.5 - 2013-10-10 =
103
+ * Fix. Fix critical error with slider not working caused by easing plugin.
104
+ * New. Added ability to add a title to slider widget.
105
+ * Change. Modified easing plugin to v1.3.1.
106
+ * Change. Added minified version of easing plugin.
107
+
108
  = 2.7.4 - 2013-10-01 =
109
  * Fix. Fix dynamic height for templates.
110
  * Change. Added RTL support and sanitize output in templates.
271
 
272
  == Upgrade Notice ==
273
 
274
+ = 2.7.5 - 2013-10-10 =
275
+ * Fix. Fix critical error with slider not working caused by easing plugin.
276
+ * New. Added ability to add a title to slider widget.
277
+ * Change. Modified easing plugin to v1.3.1.
278
+ * Change. Added minified version of easing plugin.
279
+
280
  = 2.7.4 - 2013-10-01 =
281
  * Fix. Fix dynamic height for templates.
282
  * Fix. Fix video slide made it fluid.
classes/class-cyclone-slider-scripts.php CHANGED
@@ -94,11 +94,6 @@ if(!class_exists('Cyclone_Slider_Scripts')):
94
 
95
  /*****************************/
96
 
97
- /*** Easing ***/
98
- if($this->cyclone_settings_data['load_cycle2'] == 1){
99
- wp_enqueue_script( 'jquery-easing', CYCLONE_URL.'libs/jquery.easing.1.3.js', array('jquery'), CYCLONE_VERSION, $in_footer );
100
- }
101
-
102
  /*** Core Cycle2 Scripts ***/
103
  if($this->cyclone_settings_data['load_cycle2'] == 1){
104
  wp_enqueue_script( 'jquery-cycle2', CYCLONE_URL.'libs/cycle2/jquery.cycle2.min.js', array('jquery'), CYCLONE_VERSION, $in_footer );
@@ -116,6 +111,11 @@ if(!class_exists('Cyclone_Slider_Scripts')):
116
  wp_enqueue_script( 'jquery-cycle2-video', CYCLONE_URL.'libs/cycle2/jquery.cycle2.video.min.js', array('jquery', 'jquery-cycle2'), CYCLONE_VERSION, $in_footer );
117
  }
118
 
 
 
 
 
 
119
  /*** Magnific Popup Scripts ***/
120
  if($this->cyclone_settings_data['load_magnific'] == 1){
121
  wp_enqueue_script( 'jquery-magnific-popup', CYCLONE_URL.'libs/magnific-popup/jquery.magnific-popup.min.js', array('jquery'), CYCLONE_VERSION, $in_footer );
94
 
95
  /*****************************/
96
 
 
 
 
 
 
97
  /*** Core Cycle2 Scripts ***/
98
  if($this->cyclone_settings_data['load_cycle2'] == 1){
99
  wp_enqueue_script( 'jquery-cycle2', CYCLONE_URL.'libs/cycle2/jquery.cycle2.min.js', array('jquery'), CYCLONE_VERSION, $in_footer );
111
  wp_enqueue_script( 'jquery-cycle2-video', CYCLONE_URL.'libs/cycle2/jquery.cycle2.video.min.js', array('jquery', 'jquery-cycle2'), CYCLONE_VERSION, $in_footer );
112
  }
113
 
114
+ /*** Easing Script***/
115
+ if($this->cyclone_settings_data['load_easing'] == 1){
116
+ wp_enqueue_script( 'jquery-easing', CYCLONE_URL.'libs/jquery-easing/jquery.easing.1.3.1.min.js', array('jquery'), CYCLONE_VERSION, $in_footer );
117
+ }
118
+
119
  /*** Magnific Popup Scripts ***/
120
  if($this->cyclone_settings_data['load_magnific'] == 1){
121
  wp_enqueue_script( 'jquery-magnific-popup', CYCLONE_URL.'libs/magnific-popup/jquery.magnific-popup.min.js', array('jquery'), CYCLONE_VERSION, $in_footer );
classes/class-cyclone-slider-widget.php CHANGED
@@ -2,21 +2,24 @@
2
  if(!class_exists('Cyclone_Slider_Widget')):
3
 
4
  /**
5
- * Class for widget
6
  */
7
  class Cyclone_Slider_Widget extends WP_Widget {
8
 
9
  /**
10
- * Register widget with WordPress.
11
  */
12
  public function __construct() {
13
  parent::__construct(
14
  'cyclone-slider-widget', // Base ID
15
  __( 'Cyclone Slider Widget', 'cycloneslider' ), // Name
16
- array( 'description' => __( 'Widget for displaying slideshows.', 'cycloneslider' ), ) // Args
17
  );
18
  }
19
 
 
 
 
20
  function widget( $args, $instance ) {
21
  extract($args, EXTR_SKIP);
22
 
@@ -33,21 +36,37 @@ if(!class_exists('Cyclone_Slider_Widget')):
33
  }
34
  echo $after_widget;
35
  }
36
-
 
 
 
37
  function update( $new_instance, $old_instance ) {
38
  $instance = $old_instance;
39
-
 
40
  $instance['slideshow'] = strip_tags($new_instance['slideshow']);
41
 
42
  return $instance;
43
 
44
  }
45
-
 
 
 
46
  function form( $instance ) {
47
- $instance = wp_parse_args( (array) $instance, array( 'slideshow' => '' ) );
 
 
 
 
 
48
  $slideshow = $instance['slideshow'];
49
 
50
  ?>
 
 
 
 
51
  <p>
52
  <?php
53
  $my_query = new WP_Query(
@@ -59,7 +78,7 @@ if(!class_exists('Cyclone_Slider_Widget')):
59
  );
60
  if($my_query->have_posts()):
61
  ?>
62
- <label for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('Select a Slideshow:', 'cycloneslider'); ?></label>
63
  <select class="widefat" id="<?php echo $this->get_field_id('slideshow'); ?>" name="<?php echo $this->get_field_name('slideshow'); ?>">
64
  <option value=""></option>
65
  <?php
@@ -74,7 +93,7 @@ if(!class_exists('Cyclone_Slider_Widget')):
74
  ?>
75
  </select>
76
  <?php else: ?>
77
- <?php _e('No slideshows found.', 'cycloneslider'); ?>
78
  <?php endif; ?>
79
  </p>
80
  <?php
@@ -84,7 +103,9 @@ if(!class_exists('Cyclone_Slider_Widget')):
84
  }
85
 
86
 
87
-
 
 
88
  function cycloneslider_widgets(){
89
  register_widget('Cyclone_Slider_Widget');
90
  }
2
  if(!class_exists('Cyclone_Slider_Widget')):
3
 
4
  /**
5
+ * Class for Cyclone Slider widget
6
  */
7
  class Cyclone_Slider_Widget extends WP_Widget {
8
 
9
  /**
10
+ * Constructor
11
  */
12
  public function __construct() {
13
  parent::__construct(
14
  'cyclone-slider-widget', // Base ID
15
  __( 'Cyclone Slider Widget', 'cycloneslider' ), // Name
16
+ array( 'description' => __( 'Widget for displaying sliders.', 'cycloneslider' ), ) // Args
17
  );
18
  }
19
 
20
+ /**
21
+ * Widget output
22
+ */
23
  function widget( $args, $instance ) {
24
  extract($args, EXTR_SKIP);
25
 
36
  }
37
  echo $after_widget;
38
  }
39
+
40
+ /**
41
+ * Widget on save
42
+ */
43
  function update( $new_instance, $old_instance ) {
44
  $instance = $old_instance;
45
+
46
+ $instance['title'] = strip_tags($new_instance['title']);
47
  $instance['slideshow'] = strip_tags($new_instance['slideshow']);
48
 
49
  return $instance;
50
 
51
  }
52
+
53
+ /**
54
+ * Admin form
55
+ */
56
  function form( $instance ) {
57
+ $defaults = array(
58
+ 'title' => '',
59
+ 'slideshow'=>''
60
+ );
61
+ $instance = wp_parse_args( (array) $instance, $defaults );
62
+
63
  $slideshow = $instance['slideshow'];
64
 
65
  ?>
66
+ <p>
67
+ <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'cycloneslider'); ?></label>
68
+ <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php esc_attr_e($instance['title']); ?>" />
69
+ </p>
70
  <p>
71
  <?php
72
  $my_query = new WP_Query(
78
  );
79
  if($my_query->have_posts()):
80
  ?>
81
+ <label for="<?php echo $this->get_field_id('slideshow'); ?>"><?php _e('Select a Slider:', 'cycloneslider'); ?></label>
82
  <select class="widefat" id="<?php echo $this->get_field_id('slideshow'); ?>" name="<?php echo $this->get_field_name('slideshow'); ?>">
83
  <option value=""></option>
84
  <?php
93
  ?>
94
  </select>
95
  <?php else: ?>
96
+ <?php _e('No sliders found.', 'cycloneslider'); ?>
97
  <?php endif; ?>
98
  </p>
99
  <?php
103
  }
104
 
105
 
106
+ /**
107
+ * Register it
108
+ */
109
  function cycloneslider_widgets(){
110
  register_widget('Cyclone_Slider_Widget');
111
  }
cyclone-slider.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Cyclone Slider 2
4
  Plugin URI: http://www.codefleet.net/cyclone-slider-pro/
5
  Description: Create and manage sliders with ease. Built for both casual users and developers.
6
- Version: 2.7.4
7
  Author: Nico Amarilla
8
  Author URI: http://www.codefleet.net/
9
  License:
@@ -25,7 +25,7 @@ License:
25
 
26
  */
27
  if(!defined('CYCLONE_VERSION')){
28
- define('CYCLONE_VERSION', '2.7.4' );
29
  }
30
  if(!defined('CYCLONE_PATH')){
31
  define('CYCLONE_PATH', realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR );
3
  Plugin Name: Cyclone Slider 2
4
  Plugin URI: http://www.codefleet.net/cyclone-slider-pro/
5
  Description: Create and manage sliders with ease. Built for both casual users and developers.
6
+ Version: 2.7.5
7
  Author: Nico Amarilla
8
  Author URI: http://www.codefleet.net/
9
  License:
25
 
26
  */
27
  if(!defined('CYCLONE_VERSION')){
28
+ define('CYCLONE_VERSION', '2.7.5' );
29
  }
30
  if(!defined('CYCLONE_PATH')){
31
  define('CYCLONE_PATH', realpath(plugin_dir_path(__FILE__)) . DIRECTORY_SEPARATOR );
lang/cycloneslider-ar.mo CHANGED
Binary file
lang/cycloneslider-ar.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cyclone Slider 2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-23 21:08+0800\n"
6
- "PO-Revision-Date: 2013-09-23 21:12+0800\n"
7
  "Last-Translator: \n"
8
  "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,139 +17,139 @@ msgstr ""
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp_dev\\cyclone-slider-2\\wp-content\\plugins\\cyclone-slider-2\n"
19
 
20
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
21
  msgid "Cyclone Slider Settings"
22
  msgstr "إعدادات عرض الشرائح"
23
 
24
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:123
25
  msgid "Settings"
26
  msgstr "إعدادات"
27
 
28
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:94
29
  msgid "Cyclone Slider"
30
  msgstr "عرض الشرائح"
31
 
32
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:95
33
  msgid "Slideshow"
34
  msgstr "عرض الشرائح"
35
 
36
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
37
  msgid "Add Slideshow"
38
  msgstr "أضف عرض شرائح"
39
 
40
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
41
  msgid "Add New Slideshow"
42
  msgstr "أضف عرض شرائح جديد"
43
 
44
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
45
  msgid "Edit Slideshow"
46
  msgstr "تحرير عرض شرائح"
47
 
48
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
49
  msgid "New Slideshow"
50
  msgstr "عرض شرائح جديد"
51
 
52
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
53
  msgid "View Slideshow"
54
  msgstr "إظهار عرض الشرائح"
55
 
56
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
57
  msgid "Search Slideshows"
58
  msgstr "البحث في عروض الشرائح"
59
 
60
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
61
  msgid "No slideshows found"
62
  msgstr "لم يتم إيجاد عروض شرائح"
63
 
64
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
65
  msgid "No slideshows found in Trash"
66
  msgstr "لم يتم إيجاد عروض شرائح في المهملات"
67
 
68
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:139
69
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
70
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
71
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
72
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
73
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
 
 
74
  msgid "Slideshow updated."
75
  msgstr "تم تحديث عرض الشرائح"
76
 
77
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:140
78
  msgid "Custom field updated."
79
  msgstr "تم تحديث الحقل المخصوص."
80
 
81
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
82
  msgid "Custom field deleted."
83
  msgstr "تم حذف الحقل المخصوص."
84
 
85
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
86
  msgid "Slideshow published."
87
  msgstr "تم نشر عرض الشرائح."
88
 
89
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
90
  msgid "Slideshow saved."
91
  msgstr "تم حفظ عرض الشرائح."
92
 
93
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
94
  #, php-format
95
  msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
96
  msgstr "تعذر حفظ كود CSS الخاص بالقالب. الرجاء التأكد من أن %stemplates.css قابل للتعديل."
97
 
98
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
99
  #, php-format
100
  msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
101
  msgstr "تعذر حفظ كود JS الخاص بالقالب. الرجاء التأكد من أن %stemplates.js قابل للتعديل."
102
 
103
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:184
104
  msgid "Slides"
105
  msgstr "شرائح"
106
 
107
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:193
108
  msgid "Slider Preview"
109
  msgstr "معاينة شريط التمرير"
110
 
111
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:202
112
  msgid "Get Slider Codes"
113
  msgstr "احصل على أكواد عرض الشرائح"
114
 
115
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:211
116
  msgid "Basic Settings"
117
  msgstr "الإعدادات الأساسية"
118
 
119
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:220
120
  msgid "Advanced Settings"
121
  msgstr "إعدادات متقدمة"
122
 
123
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:229
124
  msgid "Templates"
125
  msgstr "قوالب"
126
 
127
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:238
128
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:502
129
  msgid "Slideshow ID"
130
  msgstr "رقم عرض الشرائح"
131
 
132
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:266
133
  msgid "Slide"
134
  msgstr "شريحة"
135
 
136
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:435
137
  msgid "Slide *"
138
  msgstr "شريحة *"
139
 
140
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:499
141
  msgid "Slideshow Name"
142
  msgstr "اسم عرض الشرائح"
143
 
144
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:500
145
  msgid "Template"
146
  msgstr "قالب"
147
 
148
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:501
149
  msgid "No. of Slides"
150
  msgstr "عدد الشرائح"
151
 
152
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:503
153
  msgid "Shortcode"
154
  msgstr "كود قصير"
155
 
@@ -165,76 +165,7 @@ msgstr "أضف إلى شريحة"
165
  msgid "Error. Make sure its a valid YouTube URL."
166
  msgstr "خطأ. تأكد من والخمسين URL يوتيوب صالحة."
167
 
168
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:17
169
- msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
170
- msgstr "قم باللعب بهذه الإعدادات إذا كانت الإضافة لا تعمل أو إذا أردت تحسينها."
171
-
172
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:30
173
- msgid "Load scripts in:"
174
- msgstr "تحميل السكربتات في:"
175
-
176
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:33
177
- msgid "Header"
178
- msgstr "الترويسة"
179
-
180
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:34
181
- msgid "Footer"
182
- msgstr "التذييل"
183
-
184
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:39
185
- msgid "Load these scripts:"
186
- msgstr "قم بتحميل هذه السكربتات:"
187
-
188
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:44
189
- msgid "Cycle 2. This is the core script needed by the plugin."
190
- msgstr "Cycle 2. هذا هو السكربت الأساسي المستخدم في الإضافة."
191
-
192
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:49
193
- msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
194
- msgstr "Cycle 2 - Carousel. يستخدم في هذه القوالب: Galleria, Lea, Dos."
195
-
196
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:54
197
- msgid "Cycle 2 - Swipe. For touch swipe events."
198
- msgstr "Cycle 2 - Swipe. للأحداث انتقاد اللمس."
199
-
200
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:59
201
- msgid "Cycle 2 - Tile. Used for tile transition effects."
202
- msgstr "Cycle 2 - Tile. يستخدم لمؤثرات الانتقال مربعة الشكل."
203
-
204
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:64
205
- msgid "Cycle 2 - Video. Used by YouTube template."
206
- msgstr "Cycle 2 - Video. يستخدم في قالب يوتيوب."
207
-
208
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
209
- msgid "Magnific Popup - Enable lightbox option."
210
- msgstr "ماجنيفيك قافزة - خيار العلبة الخفيفة تمكين."
211
-
212
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
213
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
214
- msgid "Available in pro version."
215
- msgstr "تتوفر في الإصدار برو."
216
-
217
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
218
- msgid "Easing - Enable easing options."
219
- msgstr "التيسير - تمكين تخفيف الخيارات."
220
-
221
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:79
222
- msgid "Scripts loading priority:"
223
- msgstr "أولوية تحميل السكربتات:"
224
-
225
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:82
226
- msgid "Make this value bigger to load scripts last."
227
- msgstr "اجعل هذه القيمة أكبر لتحميل السكربتات آخرا."
228
-
229
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:87
230
- msgid "Save Options"
231
- msgstr "حفظ الخيارات"
232
-
233
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:88
234
- msgid "Restore Defaults"
235
- msgstr "إستعادة الإفتراضي"
236
-
237
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:105
238
  msgid "Default options restored."
239
  msgstr "تم استعادة الخيارات الإفتراضية."
240
 
@@ -243,15 +174,22 @@ msgid "Cyclone Slider Widget"
243
  msgstr "مربع عرض الشرائح الجانبي"
244
 
245
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
246
- msgid "Widget for displaying slideshows."
 
247
  msgstr "مربع جانبي لإظهار عروض الشرائح."
248
 
249
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:62
250
- msgid "Select a Slideshow:"
 
 
 
 
 
251
  msgstr "اختر عرض شرائح:"
252
 
253
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:77
254
- msgid "No slideshows found."
 
255
  msgstr "لم يتم العثور على عروض شرائح."
256
 
257
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
@@ -292,10 +230,13 @@ msgstr "مشاهدتها بشكل اكبر"
292
  msgid "Learn More"
293
  msgstr "تعرف على المزيد"
294
 
295
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:59
296
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:63
297
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:67
298
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
 
 
 
299
  msgid "Slide type not supported."
300
  msgstr "نوع الشريحة غير معتمدة."
301
 
@@ -352,6 +293,80 @@ msgstr "استيراد ملف مضغوط:"
352
  msgid "Import operation success!"
353
  msgstr "استيراد نجاح العملية!"
354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
356
  msgid "Delete"
357
  msgstr "حذف"
@@ -389,10 +404,6 @@ msgstr "خصائص الشريحة:"
389
  msgid "Caption"
390
  msgstr "عنوان فرعي"
391
 
392
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:49
393
- msgid "Title:"
394
- msgstr "العنوان:"
395
-
396
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
397
  msgid "Description:"
398
  msgstr "الوصف:"
2
  msgstr ""
3
  "Project-Id-Version: Cyclone Slider 2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-10 15:44+0800\n"
6
+ "PO-Revision-Date: 2013-10-10 15:46+0800\n"
7
  "Last-Translator: \n"
8
  "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
  "MIME-Version: 1.0\n"
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
  "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp_dev\\cyclone-slider-2\\wp-content\\plugins\\cyclone-slider-2\n"
19
 
20
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:121
21
  msgid "Cyclone Slider Settings"
22
  msgstr "إعدادات عرض الشرائح"
23
 
24
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
25
  msgid "Settings"
26
  msgstr "إعدادات"
27
 
28
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
29
  msgid "Cyclone Slider"
30
  msgstr "عرض الشرائح"
31
 
32
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
33
  msgid "Slideshow"
34
  msgstr "عرض الشرائح"
35
 
36
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
37
  msgid "Add Slideshow"
38
  msgstr "أضف عرض شرائح"
39
 
40
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
41
  msgid "Add New Slideshow"
42
  msgstr "أضف عرض شرائح جديد"
43
 
44
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
45
  msgid "Edit Slideshow"
46
  msgstr "تحرير عرض شرائح"
47
 
48
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
49
  msgid "New Slideshow"
50
  msgstr "عرض شرائح جديد"
51
 
52
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
53
  msgid "View Slideshow"
54
  msgstr "إظهار عرض الشرائح"
55
 
56
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
57
  msgid "Search Slideshows"
58
  msgstr "البحث في عروض الشرائح"
59
 
60
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:104
61
  msgid "No slideshows found"
62
  msgstr "لم يتم إيجاد عروض شرائح"
63
 
64
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:105
65
  msgid "No slideshows found in Trash"
66
  msgstr "لم يتم إيجاد عروض شرائح في المهملات"
67
 
68
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
69
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
70
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
 
 
71
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
72
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
73
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
74
  msgid "Slideshow updated."
75
  msgstr "تم تحديث عرض الشرائح"
76
 
77
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
78
  msgid "Custom field updated."
79
  msgstr "تم تحديث الحقل المخصوص."
80
 
81
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
82
  msgid "Custom field deleted."
83
  msgstr "تم حذف الحقل المخصوص."
84
 
85
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
86
  msgid "Slideshow published."
87
  msgstr "تم نشر عرض الشرائح."
88
 
89
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
90
  msgid "Slideshow saved."
91
  msgstr "تم حفظ عرض الشرائح."
92
 
93
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:151
94
  #, php-format
95
  msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
96
  msgstr "تعذر حفظ كود CSS الخاص بالقالب. الرجاء التأكد من أن %stemplates.css قابل للتعديل."
97
 
98
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:152
99
  #, php-format
100
  msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
101
  msgstr "تعذر حفظ كود JS الخاص بالقالب. الرجاء التأكد من أن %stemplates.js قابل للتعديل."
102
 
103
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:186
104
  msgid "Slides"
105
  msgstr "شرائح"
106
 
107
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:195
108
  msgid "Slider Preview"
109
  msgstr "معاينة شريط التمرير"
110
 
111
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:204
112
  msgid "Get Slider Codes"
113
  msgstr "احصل على أكواد عرض الشرائح"
114
 
115
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:213
116
  msgid "Basic Settings"
117
  msgstr "الإعدادات الأساسية"
118
 
119
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:222
120
  msgid "Advanced Settings"
121
  msgstr "إعدادات متقدمة"
122
 
123
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:231
124
  msgid "Templates"
125
  msgstr "قوالب"
126
 
127
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:240
128
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:508
129
  msgid "Slideshow ID"
130
  msgstr "رقم عرض الشرائح"
131
 
132
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:268
133
  msgid "Slide"
134
  msgstr "شريحة"
135
 
136
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:441
137
  msgid "Slide *"
138
  msgstr "شريحة *"
139
 
140
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:505
141
  msgid "Slideshow Name"
142
  msgstr "اسم عرض الشرائح"
143
 
144
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:506
145
  msgid "Template"
146
  msgstr "قالب"
147
 
148
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:507
149
  msgid "No. of Slides"
150
  msgstr "عدد الشرائح"
151
 
152
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:509
153
  msgid "Shortcode"
154
  msgstr "كود قصير"
155
 
165
  msgid "Error. Make sure its a valid YouTube URL."
166
  msgstr "خطأ. تأكد من والخمسين URL يوتيوب صالحة."
167
 
168
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  msgid "Default options restored."
170
  msgstr "تم استعادة الخيارات الإفتراضية."
171
 
174
  msgstr "مربع عرض الشرائح الجانبي"
175
 
176
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
177
+ #, fuzzy
178
+ msgid "Widget for displaying sliders."
179
  msgstr "مربع جانبي لإظهار عروض الشرائح."
180
 
181
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:67
182
+ msgid "Title:"
183
+ msgstr "العنوان:"
184
+
185
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:81
186
+ #, fuzzy
187
+ msgid "Select a Slider:"
188
  msgstr "اختر عرض شرائح:"
189
 
190
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:96
191
+ #, fuzzy
192
+ msgid "No sliders found."
193
  msgstr "لم يتم العثور على عروض شرائح."
194
 
195
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
230
  msgid "Learn More"
231
  msgstr "تعرف على المزيد"
232
 
233
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:62
234
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:66
235
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:70
236
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
237
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:62
238
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:66
239
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:70
240
  msgid "Slide type not supported."
241
  msgstr "نوع الشريحة غير معتمدة."
242
 
293
  msgid "Import operation success!"
294
  msgstr "استيراد نجاح العملية!"
295
 
296
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:7
297
+ msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
298
+ msgstr "قم باللعب بهذه الإعدادات إذا كانت الإضافة لا تعمل أو إذا أردت تحسينها."
299
+
300
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:17
301
+ msgid "Load scripts in:"
302
+ msgstr "تحميل السكربتات في:"
303
+
304
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:20
305
+ msgid "Header"
306
+ msgstr "الترويسة"
307
+
308
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:21
309
+ msgid "Footer"
310
+ msgstr "التذييل"
311
+
312
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:26
313
+ msgid "Load these scripts:"
314
+ msgstr "قم بتحميل هذه السكربتات:"
315
+
316
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:31
317
+ msgid "Cycle 2. This is the core script needed by the plugin."
318
+ msgstr "Cycle 2. هذا هو السكربت الأساسي المستخدم في الإضافة."
319
+
320
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:36
321
+ msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
322
+ msgstr "Cycle 2 - Carousel. يستخدم في هذه القوالب: Galleria, Lea, Dos."
323
+
324
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:41
325
+ msgid "Cycle 2 - Swipe. For touch swipe events."
326
+ msgstr "Cycle 2 - Swipe. للأحداث انتقاد اللمس."
327
+
328
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:46
329
+ msgid "Cycle 2 - Tile. Used for tile transition effects."
330
+ msgstr "Cycle 2 - Tile. يستخدم لمؤثرات الانتقال مربعة الشكل."
331
+
332
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:51
333
+ msgid "Cycle 2 - Video. Used by YouTube template."
334
+ msgstr "Cycle 2 - Video. يستخدم في قالب يوتيوب."
335
+
336
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
337
+ msgid "Magnific Popup - Enable lightbox option."
338
+ msgstr "ماجنيفيك قافزة - خيار العلبة الخفيفة تمكين."
339
+
340
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
341
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
342
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:2
343
+ msgid "Available in pro version."
344
+ msgstr "تتوفر في الإصدار برو."
345
+
346
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
347
+ msgid "Easing - Enable easing options."
348
+ msgstr "التيسير - تمكين تخفيف الخيارات."
349
+
350
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:66
351
+ msgid "Scripts loading priority:"
352
+ msgstr "أولوية تحميل السكربتات:"
353
+
354
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:69
355
+ msgid "Make this value bigger to load scripts last."
356
+ msgstr "اجعل هذه القيمة أكبر لتحميل السكربتات آخرا."
357
+
358
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:73
359
+ msgid "Load these templates:"
360
+ msgstr ""
361
+
362
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:86
363
+ msgid "Save Options"
364
+ msgstr "حفظ الخيارات"
365
+
366
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:87
367
+ msgid "Restore Defaults"
368
+ msgstr "إستعادة الإفتراضي"
369
+
370
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
371
  msgid "Delete"
372
  msgstr "حذف"
404
  msgid "Caption"
405
  msgstr "عنوان فرعي"
406
 
 
 
 
 
407
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
408
  msgid "Description:"
409
  msgstr "الوصف:"
lang/cycloneslider-de_DE.mo CHANGED
Binary file
lang/cycloneslider-de_DE.po CHANGED
@@ -1,776 +1,818 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Cyclone Slider\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-19 09:37+0800\n"
6
- "PO-Revision-Date: 2013-09-19 11:44+0800\n"
7
- "Last-Translator: \n"
8
- "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: German\n"
15
- "X-Poedit-Country: GERMANY\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp1\\wp-content\\plugins\\cyclone-slider-2\n"
18
-
19
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
20
- #, fuzzy
21
- msgid "Cyclone Slider Settings"
22
- msgstr "Slider-Einstellungen"
23
-
24
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:123
25
- #, fuzzy
26
- msgid "Settings"
27
- msgstr "Slider-Einstellungen"
28
-
29
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:94
30
- msgid "Cyclone Slider"
31
- msgstr ""
32
-
33
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:95
34
- msgid "Slideshow"
35
- msgstr ""
36
-
37
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
38
- msgid "Add Slideshow"
39
- msgstr "Slideshow hinzufügen"
40
-
41
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
42
- msgid "Add New Slideshow"
43
- msgstr "Neuer Slideshow"
44
-
45
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
46
- msgid "Edit Slideshow"
47
- msgstr "Bearbeiten Slideshow"
48
-
49
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
50
- msgid "New Slideshow"
51
- msgstr "Neue Slideshow"
52
-
53
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
54
- msgid "View Slideshow"
55
- msgstr "Sehen Slideshow"
56
-
57
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
58
- msgid "Search Slideshows"
59
- msgstr "Suchen Slideshows"
60
-
61
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
62
- msgid "No slideshows found"
63
- msgstr "Keine Slideshows gefunden"
64
-
65
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
66
- msgid "No slideshows found in Trash"
67
- msgstr "Keine Diashows in Trash gefunden"
68
-
69
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:139
70
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
71
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
72
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
73
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
74
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
75
- msgid "Slideshow updated."
76
- msgstr ""
77
-
78
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:140
79
- msgid "Custom field updated."
80
- msgstr ""
81
-
82
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
83
- msgid "Custom field deleted."
84
- msgstr ""
85
-
86
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
87
- #, fuzzy
88
- msgid "Slideshow published."
89
- msgstr "Slideshow gespeichert."
90
-
91
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
92
- msgid "Slideshow saved."
93
- msgstr "Slideshow gespeichert."
94
-
95
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
96
- #, php-format
97
- msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
98
- msgstr ""
99
-
100
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
101
- #, php-format
102
- msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
103
- msgstr ""
104
-
105
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:184
106
- msgid "Slides"
107
- msgstr ""
108
-
109
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:193
110
- #, fuzzy
111
- msgid "Slider Preview"
112
- msgstr "Slider-Einstellungen"
113
-
114
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:202
115
- #, fuzzy
116
- msgid "Get Slider Codes"
117
- msgstr "Next Slide Verzögerung:"
118
-
119
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:211
120
- #, fuzzy
121
- msgid "Basic Settings"
122
- msgstr "Slider-Einstellungen"
123
-
124
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:220
125
- #, fuzzy
126
- msgid "Advanced Settings"
127
- msgstr "Slider-Einstellungen"
128
-
129
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:229
130
- #, fuzzy
131
- msgid "Templates"
132
- msgstr "Slider-Einstellungen"
133
-
134
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:238
135
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:502
136
- msgid "Slideshow ID"
137
- msgstr ""
138
-
139
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:266
140
- msgid "Slide"
141
- msgstr ""
142
-
143
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:435
144
- #, fuzzy
145
- msgid "Slide *"
146
- msgstr "Folie hinzufügen"
147
-
148
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:499
149
- msgid "Slideshow Name"
150
- msgstr "Slideshow Namen"
151
-
152
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:500
153
- msgid "Template"
154
- msgstr ""
155
-
156
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:501
157
- #, fuzzy
158
- msgid "No. of Slides"
159
- msgstr "Folie hinzufügen"
160
-
161
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:503
162
- msgid "Shortcode"
163
- msgstr ""
164
-
165
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
166
- #, fuzzy
167
- msgid "Select an image"
168
- msgstr "Suchen Slideshows"
169
-
170
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
171
- #, fuzzy
172
- msgid "Add to Slide"
173
- msgstr "Folie hinzufügen"
174
-
175
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
176
- msgid "Error. Make sure its a valid YouTube URL."
177
- msgstr ""
178
-
179
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:17
180
- msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
181
- msgstr ""
182
-
183
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:30
184
- msgid "Load scripts in:"
185
- msgstr ""
186
-
187
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:33
188
- msgid "Header"
189
- msgstr ""
190
-
191
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:34
192
- msgid "Footer"
193
- msgstr ""
194
-
195
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:39
196
- msgid "Load these scripts:"
197
- msgstr ""
198
-
199
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:44
200
- msgid "Cycle 2. This is the core script needed by the plugin."
201
- msgstr ""
202
-
203
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:49
204
- msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
205
- msgstr ""
206
-
207
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:54
208
- msgid "Cycle 2 - Swipe. For touch swipe events."
209
- msgstr ""
210
-
211
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:59
212
- msgid "Cycle 2 - Tile. Used for tile transition effects."
213
- msgstr ""
214
-
215
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:64
216
- msgid "Cycle 2 - Video. Used by YouTube template."
217
- msgstr ""
218
-
219
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
220
- msgid "Magnific Popup - Enable lightbox option."
221
- msgstr ""
222
-
223
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
224
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
225
- msgid "Available in pro version."
226
- msgstr ""
227
-
228
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
229
- msgid "Easing - Enable easing options."
230
- msgstr ""
231
-
232
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:79
233
- msgid "Scripts loading priority:"
234
- msgstr ""
235
-
236
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:82
237
- msgid "Make this value bigger to load scripts last."
238
- msgstr ""
239
-
240
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:87
241
- msgid "Save Options"
242
- msgstr ""
243
-
244
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:88
245
- msgid "Restore Defaults"
246
- msgstr ""
247
-
248
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:105
249
- msgid "Default options restored."
250
- msgstr ""
251
-
252
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
253
- msgid "Cyclone Slider Widget"
254
- msgstr ""
255
-
256
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
257
- msgid "Widget for displaying slideshows."
258
- msgstr ""
259
-
260
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:62
261
- #, fuzzy
262
- msgid "Select a Slideshow:"
263
- msgstr "Suchen Slideshows"
264
-
265
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:77
266
- #, fuzzy
267
- msgid "No slideshows found."
268
- msgstr "Keine Slideshows gefunden"
269
-
270
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:55
271
- #, fuzzy, php-format
272
- msgid "[Slideshow \"%s\" not found]"
273
- msgstr "[Slideshow nicht gefunden]"
274
-
275
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:67
276
- #, php-format
277
- msgid "[Template \"%s\" not found]"
278
- msgstr "[Template \"%s\" nicht gefunden]"
279
-
280
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
281
- msgid "NextGEN Integration"
282
- msgstr ""
283
-
284
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
285
- msgid "Choose a NextGEN Gallery"
286
- msgstr ""
287
-
288
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
289
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
290
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
291
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
292
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:7
293
- msgid "Import"
294
- msgstr ""
295
-
296
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
297
- msgid "Select a gallery to import images from. Images will be added as new slides."
298
- msgstr ""
299
-
300
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:55
301
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:59
302
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:63
303
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:63
304
- msgid "Slide type not supported."
305
- msgstr ""
306
-
307
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
308
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
309
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
310
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:6
311
- msgid "Export"
312
- msgstr ""
313
-
314
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
315
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
316
- msgid "Cyclone Slider Export"
317
- msgstr ""
318
-
319
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
320
- #, fuzzy
321
- msgid "Select sliders:"
322
- msgstr "Suchen Slideshows"
323
-
324
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
325
- msgid "Select All"
326
- msgstr ""
327
-
328
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
329
- #, fuzzy
330
- msgid "No slider to export."
331
- msgstr "Keine Slideshows gefunden"
332
-
333
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
334
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
335
- msgid "Next"
336
- msgstr ""
337
-
338
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
339
- msgid "Your export file is ready. Click Download."
340
- msgstr ""
341
-
342
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
343
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
344
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:18
345
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:26
346
- msgid "Back"
347
- msgstr ""
348
-
349
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
350
- msgid "Download"
351
- msgstr ""
352
-
353
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
354
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:9
355
- msgid "Cyclone Slider Import"
356
- msgstr ""
357
-
358
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
359
- msgid "Import Zip File:"
360
- msgstr ""
361
-
362
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
363
- msgid "Import operation success!"
364
- msgstr ""
365
-
366
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
367
- msgid "Delete"
368
- msgstr "löschen"
369
-
370
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
371
- msgid "Image"
372
- msgstr ""
373
-
374
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
375
- msgid "YouTube"
376
- msgstr ""
377
-
378
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
379
- msgid "Vimeo"
380
- msgstr ""
381
-
382
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
383
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:173
384
- msgid "Custom HTML"
385
- msgstr ""
386
-
387
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
388
- msgid "Video (Old Version)"
389
- msgstr ""
390
-
391
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
392
- msgid "Get Image"
393
- msgstr ""
394
-
395
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
396
- #, fuzzy
397
- msgid "Slide Properties:"
398
- msgstr "Slider-Einstellungen"
399
-
400
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
401
- msgid "Link"
402
- msgstr ""
403
-
404
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:49
405
- msgid "Link URL:"
406
- msgstr ""
407
-
408
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
409
- msgid "Open Link in:"
410
- msgstr ""
411
-
412
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:55
413
- msgid "Same Window"
414
- msgstr ""
415
-
416
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:56
417
- msgid "New Tab or Window"
418
- msgstr ""
419
-
420
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:57
421
- msgid "Lightbox"
422
- msgstr ""
423
-
424
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:63
425
- msgid "Title"
426
- msgstr "Titel"
427
-
428
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:71
429
- msgid "Description"
430
- msgstr "Beschreibung"
431
-
432
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:80
433
- msgid "Image Attributes"
434
- msgstr ""
435
-
436
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:83
437
- msgid "Alternate Text:"
438
- msgstr ""
439
-
440
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:87
441
- #, fuzzy
442
- msgid "Title Text:"
443
- msgstr "Titel"
444
-
445
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
446
- #, fuzzy
447
- msgid "Slide Transition Effects"
448
- msgstr "Transition Effects Speed:"
449
-
450
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:97
451
- msgid "Disable"
452
- msgstr ""
453
-
454
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:98
455
- msgid "Enable Slide Effects"
456
- msgstr ""
457
-
458
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:104
459
- #, fuzzy
460
- msgid "Transition Effects:"
461
- msgstr "Transition Effects Speed:"
462
-
463
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:115
464
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
465
- msgid "Transition Effects Speed:"
466
- msgstr "Transition Effects Speed:"
467
-
468
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
469
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:124
470
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
471
- msgid "Milliseconds"
472
- msgstr "Millisekunden"
473
-
474
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:122
475
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
476
- msgid "Next Slide Delay:"
477
- msgstr "Next Slide Verzögerung:"
478
-
479
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:132
480
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
481
- msgid "Tile Count:"
482
- msgstr ""
483
-
484
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:134
485
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
486
- msgid "The number of tiles to use in the transition."
487
- msgstr ""
488
-
489
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:138
490
- #, fuzzy
491
- msgid "Tile Delay:"
492
- msgstr "Next Slide Verzögerung:"
493
-
494
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:140
495
- msgid "Milliseconds to delay each individual tile transition."
496
- msgstr ""
497
-
498
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:144
499
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
500
- msgid "Tile Position:"
501
- msgstr ""
502
-
503
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:146
504
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
505
- msgid "Vertical"
506
- msgstr ""
507
-
508
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:147
509
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
510
- msgid "Horizontal"
511
- msgstr ""
512
-
513
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:159
514
- msgid "YouTube URL:"
515
- msgstr ""
516
-
517
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
518
- msgid "Copy and paste a valid YouTube URL here."
519
- msgstr ""
520
-
521
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:166
522
- msgid "Vimeo URL:"
523
- msgstr ""
524
-
525
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
526
- msgid "Copy and paste a valid Vimeo URL here."
527
- msgstr ""
528
-
529
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:180
530
- msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
531
- msgstr ""
532
-
533
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:191
534
- msgid "Video URL:"
535
- msgstr ""
536
-
537
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:193
538
- msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
539
- msgstr ""
540
-
541
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
542
- msgid "Get Video"
543
- msgstr ""
544
-
545
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:202
546
- msgid "Embed Code"
547
- msgstr ""
548
-
549
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:204
550
- msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
551
- msgstr ""
552
-
553
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:206
554
- msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
555
- msgstr ""
556
-
557
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:208
558
- msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
559
- msgstr ""
560
-
561
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
562
- msgid "Allow Wrap?"
563
- msgstr ""
564
-
565
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
566
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
567
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
568
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:60
569
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:68
570
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:78
571
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:87
572
- msgid "Yes"
573
- msgstr "Ja"
574
-
575
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
576
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
577
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
578
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:61
579
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:69
580
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:77
581
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:86
582
- msgid "No"
583
- msgstr "Nicht"
584
-
585
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
586
- msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
587
- msgstr ""
588
-
589
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
590
- #, fuzzy
591
- msgid "Dynamic Height:"
592
- msgstr "Höhe:"
593
-
594
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
595
- msgid "Off"
596
- msgstr ""
597
-
598
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
599
- msgid "On"
600
- msgstr ""
601
-
602
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
603
- msgid "Adjust slider height depending on current slide."
604
- msgstr ""
605
-
606
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
607
- #, fuzzy
608
- msgid "Delay:"
609
- msgstr "Next Slide Verzögerung:"
610
-
611
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
612
- msgid "Milliseconds to add or substract from the time before the first transition occurs."
613
- msgstr ""
614
-
615
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
616
- msgid "Easing:"
617
- msgstr ""
618
-
619
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
620
- msgid "Easing for transition animations."
621
- msgstr ""
622
-
623
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
624
- msgid "Swipe:"
625
- msgstr ""
626
-
627
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
628
- msgid "Enable swipe gesture support for touch devices."
629
- msgstr ""
630
-
631
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
632
- #, fuzzy
633
- msgid "Resize Options:"
634
- msgstr "Beschreibung"
635
-
636
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
637
- msgid "Force Resize"
638
- msgstr ""
639
-
640
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
641
- msgid "Auto - Cyclone Slider decides the resize option."
642
- msgstr ""
643
-
644
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
645
- msgid "Crop - Resize and remove excess parts."
646
- msgstr ""
647
-
648
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
649
- msgid "Exact - Resize to exact dimensions."
650
- msgstr ""
651
-
652
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
653
- msgid "Landscape - Resize to exact width."
654
- msgstr ""
655
-
656
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
657
- msgid "Portrait - Resize to exact height."
658
- msgstr ""
659
-
660
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
661
- msgid "Your Shortcode:"
662
- msgstr ""
663
-
664
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
665
- msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
666
- msgstr ""
667
-
668
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
669
- msgid "Your PHP Code:"
670
- msgstr ""
671
-
672
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
673
- msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
674
- msgstr ""
675
-
676
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
677
- msgid "Change the Slideshow ID here."
678
- msgstr ""
679
-
680
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
681
- msgid "Your preview will appear here."
682
- msgstr ""
683
-
684
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
685
- msgid "Transition Effects to Use:"
686
- msgstr "Transition Effects zu verwenden:"
687
-
688
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
689
- msgid "Milliseconds. 0 to disable auto advance."
690
- msgstr "Millisekunden. 0 deaktiviert auto Voraus."
691
-
692
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
693
- msgid "Width:"
694
- msgstr "Breite:"
695
-
696
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
697
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
698
- msgid "pixels."
699
- msgstr ""
700
-
701
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
702
- msgid "Height:"
703
- msgstr "Höhe:"
704
-
705
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
706
- msgid "Pause on Hover?"
707
- msgstr ""
708
-
709
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
710
- msgid "Show Prev/Next Buttons?"
711
- msgstr "eige Tasten PREV / NEXT?"
712
-
713
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
714
- msgid "Show Navigation?"
715
- msgstr "Zeige Navigation?"
716
-
717
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:71
718
- msgid "The thumbnails or dots depending on template."
719
- msgstr ""
720
-
721
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
722
- msgid "Resize Images?"
723
- msgstr ""
724
-
725
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
726
- msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
727
- msgstr ""
728
-
729
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:84
730
- msgid "Random Slide Order?"
731
- msgstr ""
732
-
733
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
734
- msgid "Randomize order of slides on every page visit."
735
- msgstr ""
736
-
737
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
738
- msgid "Add Slide"
739
- msgstr "Folie hinzufügen"
740
-
741
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
742
- msgid "Name"
743
- msgstr ""
744
-
745
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
746
- msgid "Supported Slides"
747
- msgstr ""
748
-
749
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
750
- #, fuzzy
751
- msgid "Selected"
752
- msgstr "löschen"
753
-
754
- #~ msgid "Drag"
755
- #~ msgstr "Ziehen"
756
-
757
- #~ msgid "Toggle"
758
- #~ msgstr "Wechseln"
759
-
760
- #, fuzzy
761
- #~ msgid "Get more templates.."
762
- #~ msgstr "Slider-Einstellungen"
763
-
764
- #~ msgid "Slideshow updated. Shortcode is [cycloneslider id=\"%s\"]"
765
- #~ msgstr "Slideshow aktualisiert. Shortcode ist [cycloneslider id=\"%s\"]"
766
-
767
- #~ msgid "Slideshow published. Shortcode is [cycloneslider id=\"%s\"]"
768
- #~ msgstr "Slideshow veröffentlicht. Shortcode ist [cycloneslider id=\"%s\"]"
769
-
770
- #, fuzzy
771
- #~ msgid "Slide Elements:"
772
- #~ msgstr "Zusätzliche Gleitelemente:"
773
-
774
- #, fuzzy
775
- #~ msgid "Slide Effects"
776
- #~ msgstr "Slider-Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cyclone Slider\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-10 15:44+0800\n"
6
+ "PO-Revision-Date: 2013-10-10 15:46+0800\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;_x\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-Language: German\n"
15
+ "X-Poedit-Country: GERMANY\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp1\\wp-content\\plugins\\cyclone-slider-2\n"
18
+
19
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:121
20
+ #, fuzzy
21
+ msgid "Cyclone Slider Settings"
22
+ msgstr "Slider-Einstellungen"
23
+
24
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
25
+ #, fuzzy
26
+ msgid "Settings"
27
+ msgstr "Slider-Einstellungen"
28
+
29
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
30
+ msgid "Cyclone Slider"
31
+ msgstr ""
32
+
33
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
34
+ msgid "Slideshow"
35
+ msgstr ""
36
+
37
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
38
+ msgid "Add Slideshow"
39
+ msgstr "Slideshow hinzufügen"
40
+
41
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
42
+ msgid "Add New Slideshow"
43
+ msgstr "Neuer Slideshow"
44
+
45
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
46
+ msgid "Edit Slideshow"
47
+ msgstr "Bearbeiten Slideshow"
48
+
49
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
50
+ msgid "New Slideshow"
51
+ msgstr "Neue Slideshow"
52
+
53
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
54
+ msgid "View Slideshow"
55
+ msgstr "Sehen Slideshow"
56
+
57
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
58
+ msgid "Search Slideshows"
59
+ msgstr "Suchen Slideshows"
60
+
61
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:104
62
+ msgid "No slideshows found"
63
+ msgstr "Keine Slideshows gefunden"
64
+
65
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:105
66
+ msgid "No slideshows found in Trash"
67
+ msgstr "Keine Diashows in Trash gefunden"
68
+
69
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
70
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
71
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
72
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
73
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
74
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
75
+ msgid "Slideshow updated."
76
+ msgstr ""
77
+
78
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
79
+ msgid "Custom field updated."
80
+ msgstr ""
81
+
82
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
83
+ msgid "Custom field deleted."
84
+ msgstr ""
85
+
86
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
87
+ #, fuzzy
88
+ msgid "Slideshow published."
89
+ msgstr "Slideshow gespeichert."
90
+
91
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
92
+ msgid "Slideshow saved."
93
+ msgstr "Slideshow gespeichert."
94
+
95
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:151
96
+ #, php-format
97
+ msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
98
+ msgstr ""
99
+
100
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:152
101
+ #, php-format
102
+ msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
103
+ msgstr ""
104
+
105
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:186
106
+ msgid "Slides"
107
+ msgstr ""
108
+
109
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:195
110
+ #, fuzzy
111
+ msgid "Slider Preview"
112
+ msgstr "Slider-Einstellungen"
113
+
114
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:204
115
+ #, fuzzy
116
+ msgid "Get Slider Codes"
117
+ msgstr "Next Slide Verzögerung:"
118
+
119
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:213
120
+ #, fuzzy
121
+ msgid "Basic Settings"
122
+ msgstr "Slider-Einstellungen"
123
+
124
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:222
125
+ #, fuzzy
126
+ msgid "Advanced Settings"
127
+ msgstr "Slider-Einstellungen"
128
+
129
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:231
130
+ #, fuzzy
131
+ msgid "Templates"
132
+ msgstr "Slider-Einstellungen"
133
+
134
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:240
135
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:508
136
+ msgid "Slideshow ID"
137
+ msgstr ""
138
+
139
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:268
140
+ msgid "Slide"
141
+ msgstr ""
142
+
143
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:441
144
+ #, fuzzy
145
+ msgid "Slide *"
146
+ msgstr "Folie hinzufügen"
147
+
148
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:505
149
+ msgid "Slideshow Name"
150
+ msgstr "Slideshow Namen"
151
+
152
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:506
153
+ msgid "Template"
154
+ msgstr ""
155
+
156
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:507
157
+ #, fuzzy
158
+ msgid "No. of Slides"
159
+ msgstr "Folie hinzufügen"
160
+
161
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:509
162
+ msgid "Shortcode"
163
+ msgstr ""
164
+
165
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
166
+ #, fuzzy
167
+ msgid "Select an image"
168
+ msgstr "Suchen Slideshows"
169
+
170
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
171
+ #, fuzzy
172
+ msgid "Add to Slide"
173
+ msgstr "Folie hinzufügen"
174
+
175
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
176
+ msgid "Error. Make sure its a valid YouTube URL."
177
+ msgstr ""
178
+
179
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:62
180
+ msgid "Default options restored."
181
+ msgstr ""
182
+
183
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
184
+ msgid "Cyclone Slider Widget"
185
+ msgstr ""
186
+
187
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
188
+ msgid "Widget for displaying sliders."
189
+ msgstr ""
190
+
191
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:67
192
+ #, fuzzy
193
+ msgid "Title:"
194
+ msgstr "Titel"
195
+
196
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:81
197
+ #, fuzzy
198
+ msgid "Select a Slider:"
199
+ msgstr "Suchen Slideshows"
200
+
201
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:96
202
+ #, fuzzy
203
+ msgid "No sliders found."
204
+ msgstr "Keine Slideshows gefunden"
205
+
206
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
207
+ #, fuzzy, php-format
208
+ msgid "[Slideshow \"%s\" not found]"
209
+ msgstr "[Slideshow nicht gefunden]"
210
+
211
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:89
212
+ #, php-format
213
+ msgid "[Template \"%s\" not found]"
214
+ msgstr "[Template \"%s\" nicht gefunden]"
215
+
216
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
217
+ msgid "NextGEN Integration"
218
+ msgstr ""
219
+
220
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
221
+ msgid "Choose a NextGEN Gallery"
222
+ msgstr ""
223
+
224
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
225
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
226
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
227
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
228
+ msgid "Import"
229
+ msgstr ""
230
+
231
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
232
+ msgid "Select a gallery to import images from. Images will be added as new slides."
233
+ msgstr ""
234
+
235
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:43
236
+ msgid "View Larger Image"
237
+ msgstr ""
238
+
239
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:46
240
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:48
241
+ msgid "Learn More"
242
+ msgstr ""
243
+
244
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:62
245
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:66
246
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:70
247
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
248
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:62
249
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:66
250
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:70
251
+ msgid "Slide type not supported."
252
+ msgstr ""
253
+
254
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
255
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
256
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
257
+ msgid "Export"
258
+ msgstr ""
259
+
260
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
261
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
262
+ msgid "Cyclone Slider Export"
263
+ msgstr ""
264
+
265
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
266
+ #, fuzzy
267
+ msgid "Select sliders:"
268
+ msgstr "Suchen Slideshows"
269
+
270
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
271
+ msgid "Select All"
272
+ msgstr ""
273
+
274
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
275
+ #, fuzzy
276
+ msgid "No slider to export."
277
+ msgstr "Keine Slideshows gefunden"
278
+
279
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
280
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
281
+ msgid "Next"
282
+ msgstr ""
283
+
284
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
285
+ msgid "Your export file is ready. Click Download."
286
+ msgstr ""
287
+
288
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
289
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
290
+ msgid "Back"
291
+ msgstr ""
292
+
293
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
294
+ msgid "Download"
295
+ msgstr ""
296
+
297
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
298
+ msgid "Cyclone Slider Import"
299
+ msgstr ""
300
+
301
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
302
+ msgid "Import Zip File:"
303
+ msgstr ""
304
+
305
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
306
+ msgid "Import operation success!"
307
+ msgstr ""
308
+
309
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:7
310
+ msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
311
+ msgstr ""
312
+
313
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:17
314
+ msgid "Load scripts in:"
315
+ msgstr ""
316
+
317
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:20
318
+ msgid "Header"
319
+ msgstr ""
320
+
321
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:21
322
+ msgid "Footer"
323
+ msgstr ""
324
+
325
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:26
326
+ msgid "Load these scripts:"
327
+ msgstr ""
328
+
329
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:31
330
+ msgid "Cycle 2. This is the core script needed by the plugin."
331
+ msgstr ""
332
+
333
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:36
334
+ msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
335
+ msgstr ""
336
+
337
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:41
338
+ msgid "Cycle 2 - Swipe. For touch swipe events."
339
+ msgstr ""
340
+
341
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:46
342
+ msgid "Cycle 2 - Tile. Used for tile transition effects."
343
+ msgstr ""
344
+
345
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:51
346
+ msgid "Cycle 2 - Video. Used by YouTube template."
347
+ msgstr ""
348
+
349
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
350
+ msgid "Magnific Popup - Enable lightbox option."
351
+ msgstr ""
352
+
353
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
354
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
355
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:2
356
+ msgid "Available in pro version."
357
+ msgstr ""
358
+
359
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
360
+ msgid "Easing - Enable easing options."
361
+ msgstr ""
362
+
363
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:66
364
+ msgid "Scripts loading priority:"
365
+ msgstr ""
366
+
367
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:69
368
+ msgid "Make this value bigger to load scripts last."
369
+ msgstr ""
370
+
371
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:73
372
+ msgid "Load these templates:"
373
+ msgstr ""
374
+
375
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:86
376
+ msgid "Save Options"
377
+ msgstr ""
378
+
379
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:87
380
+ msgid "Restore Defaults"
381
+ msgstr ""
382
+
383
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
384
+ msgid "Delete"
385
+ msgstr "löschen"
386
+
387
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
388
+ msgid "Image"
389
+ msgstr ""
390
+
391
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
392
+ msgid "YouTube"
393
+ msgstr ""
394
+
395
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
396
+ msgid "Vimeo"
397
+ msgstr ""
398
+
399
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
400
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
401
+ msgid "Custom HTML"
402
+ msgstr ""
403
+
404
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
405
+ msgid "Video (Old Version)"
406
+ msgstr ""
407
+
408
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
409
+ msgid "Get Image"
410
+ msgstr ""
411
+
412
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
413
+ #, fuzzy
414
+ msgid "Slide Properties:"
415
+ msgstr "Slider-Einstellungen"
416
+
417
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
418
+ msgid "Caption"
419
+ msgstr ""
420
+
421
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
422
+ #, fuzzy
423
+ msgid "Description:"
424
+ msgstr "Beschreibung"
425
+
426
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:59
427
+ msgid "Link"
428
+ msgstr ""
429
+
430
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:62
431
+ msgid "Link URL:"
432
+ msgstr ""
433
+
434
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:66
435
+ msgid "Open Link in:"
436
+ msgstr ""
437
+
438
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:68
439
+ msgid "Same Window"
440
+ msgstr ""
441
+
442
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:69
443
+ msgid "New Tab or Window"
444
+ msgstr ""
445
+
446
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:75
447
+ msgid "Image Attributes"
448
+ msgstr ""
449
+
450
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:78
451
+ msgid "Alternate Text:"
452
+ msgstr ""
453
+
454
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:82
455
+ #, fuzzy
456
+ msgid "Title Text:"
457
+ msgstr "Titel"
458
+
459
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:88
460
+ #, fuzzy
461
+ msgid "Slide Transition Effects"
462
+ msgstr "Transition Effects Speed:"
463
+
464
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:92
465
+ msgid "Disable"
466
+ msgstr ""
467
+
468
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
469
+ msgid "Enable Slide Effects"
470
+ msgstr ""
471
+
472
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:99
473
+ #, fuzzy
474
+ msgid "Transition Effects:"
475
+ msgstr "Transition Effects Speed:"
476
+
477
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:110
478
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
479
+ msgid "Transition Effects Speed:"
480
+ msgstr "Transition Effects Speed:"
481
+
482
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:112
483
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:119
484
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
485
+ msgid "Milliseconds"
486
+ msgstr "Millisekunden"
487
+
488
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
489
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
490
+ msgid "Next Slide Delay:"
491
+ msgstr "Next Slide Verzögerung:"
492
+
493
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:127
494
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
495
+ msgid "Tile Count:"
496
+ msgstr ""
497
+
498
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:129
499
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
500
+ msgid "The number of tiles to use in the transition."
501
+ msgstr ""
502
+
503
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:133
504
+ #, fuzzy
505
+ msgid "Tile Delay:"
506
+ msgstr "Next Slide Verzögerung:"
507
+
508
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:135
509
+ msgid "Milliseconds to delay each individual tile transition."
510
+ msgstr ""
511
+
512
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:139
513
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
514
+ msgid "Tile Position:"
515
+ msgstr ""
516
+
517
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:141
518
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
519
+ msgid "Vertical"
520
+ msgstr ""
521
+
522
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:142
523
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
524
+ msgid "Horizontal"
525
+ msgstr ""
526
+
527
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:154
528
+ msgid "YouTube URL:"
529
+ msgstr ""
530
+
531
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:156
532
+ msgid "Copy and paste a valid YouTube URL here."
533
+ msgstr ""
534
+
535
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
536
+ msgid "Vimeo URL:"
537
+ msgstr ""
538
+
539
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:163
540
+ msgid "Copy and paste a valid Vimeo URL here."
541
+ msgstr ""
542
+
543
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:175
544
+ msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
545
+ msgstr ""
546
+
547
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:186
548
+ msgid "Video URL:"
549
+ msgstr ""
550
+
551
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:188
552
+ msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
553
+ msgstr ""
554
+
555
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:192
556
+ msgid "Get Video"
557
+ msgstr ""
558
+
559
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
560
+ msgid "Embed Code"
561
+ msgstr ""
562
+
563
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:199
564
+ msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
565
+ msgstr ""
566
+
567
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:201
568
+ msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
569
+ msgstr ""
570
+
571
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:203
572
+ msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
573
+ msgstr ""
574
+
575
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
576
+ msgid "Allow Wrap?"
577
+ msgstr ""
578
+
579
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
580
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
581
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
582
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:74
583
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:82
584
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:92
585
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:101
586
+ msgid "Yes"
587
+ msgstr "Ja"
588
+
589
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
590
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
591
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:67
592
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
593
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:83
594
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:91
595
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:100
596
+ msgid "No"
597
+ msgstr "Nicht"
598
+
599
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
600
+ msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
601
+ msgstr ""
602
+
603
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
604
+ #, fuzzy
605
+ msgid "Dynamic Height:"
606
+ msgstr "Höhe:"
607
+
608
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
609
+ msgid "Off"
610
+ msgstr ""
611
+
612
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
613
+ msgid "On"
614
+ msgstr ""
615
+
616
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
617
+ msgid "Adjust slider height depending on current slide."
618
+ msgstr ""
619
+
620
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
621
+ #, fuzzy
622
+ msgid "Delay:"
623
+ msgstr "Next Slide Verzögerung:"
624
+
625
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
626
+ msgid "Milliseconds to add or substract from the time before the first transition occurs."
627
+ msgstr ""
628
+
629
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
630
+ msgid "Easing:"
631
+ msgstr ""
632
+
633
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
634
+ msgid "Easing for transition animations."
635
+ msgstr ""
636
+
637
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
638
+ msgid "Swipe:"
639
+ msgstr ""
640
+
641
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
642
+ msgid "Enable swipe gesture support for touch devices."
643
+ msgstr ""
644
+
645
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
646
+ #, fuzzy
647
+ msgid "Resize Options:"
648
+ msgstr "Beschreibung"
649
+
650
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
651
+ msgid "Force Resize"
652
+ msgstr ""
653
+
654
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
655
+ msgid "Auto - Cyclone Slider decides the resize option."
656
+ msgstr ""
657
+
658
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
659
+ msgid "Crop - Resize and remove excess parts."
660
+ msgstr ""
661
+
662
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
663
+ msgid "Exact - Resize to exact dimensions."
664
+ msgstr ""
665
+
666
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
667
+ msgid "Landscape - Resize to exact width."
668
+ msgstr ""
669
+
670
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
671
+ msgid "Portrait - Resize to exact height."
672
+ msgstr ""
673
+
674
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
675
+ msgid "Your Shortcode:"
676
+ msgstr ""
677
+
678
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
679
+ msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
680
+ msgstr ""
681
+
682
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
683
+ msgid "Your PHP Code:"
684
+ msgstr ""
685
+
686
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
687
+ msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
688
+ msgstr ""
689
+
690
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
691
+ msgid "Change the Slideshow ID here."
692
+ msgstr ""
693
+
694
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
695
+ msgid "Your preview will appear here."
696
+ msgstr ""
697
+
698
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
699
+ msgid "Transition Effects to Use:"
700
+ msgstr "Transition Effects zu verwenden:"
701
+
702
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
703
+ msgid "Milliseconds. 0 to disable auto advance."
704
+ msgstr "Millisekunden. 0 deaktiviert auto Voraus."
705
+
706
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
707
+ msgid "Width:"
708
+ msgstr "Breite:"
709
+
710
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
711
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
712
+ msgid "pixels."
713
+ msgstr ""
714
+
715
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
716
+ msgid "Height:"
717
+ msgstr "Höhe:"
718
+
719
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
720
+ msgid "Width Management:"
721
+ msgstr ""
722
+
723
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
724
+ msgid "Responsive"
725
+ msgstr ""
726
+
727
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
728
+ msgid "Full"
729
+ msgstr ""
730
+
731
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:54
732
+ msgid "Fixed"
733
+ msgstr ""
734
+
735
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:57
736
+ msgid "Responsive - resizes to smaller size but maximum width will be equal to the provided width."
737
+ msgstr ""
738
+
739
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
740
+ msgid "Full - the same as responsive but maximum width will be equal to its container ignoring the provided width."
741
+ msgstr ""
742
+
743
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:59
744
+ msgid "Fixed - width and height are not resized."
745
+ msgstr ""
746
+
747
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:64
748
+ msgid "Pause on Hover?"
749
+ msgstr ""
750
+
751
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:72
752
+ msgid "Show Prev/Next Buttons?"
753
+ msgstr "eige Tasten PREV / NEXT?"
754
+
755
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
756
+ msgid "Show Navigation?"
757
+ msgstr "Zeige Navigation?"
758
+
759
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:85
760
+ msgid "The thumbnails or dots depending on template."
761
+ msgstr ""
762
+
763
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
764
+ msgid "Resize Images?"
765
+ msgstr ""
766
+
767
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:94
768
+ msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
769
+ msgstr ""
770
+
771
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:98
772
+ msgid "Random Slide Order?"
773
+ msgstr ""
774
+
775
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:103
776
+ msgid "Randomize order of slides on every page visit."
777
+ msgstr ""
778
+
779
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
780
+ msgid "Add Slide"
781
+ msgstr "Folie hinzufügen"
782
+
783
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
784
+ msgid "Name"
785
+ msgstr ""
786
+
787
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
788
+ msgid "Supported Slides"
789
+ msgstr ""
790
+
791
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
792
+ #, fuzzy
793
+ msgid "Selected"
794
+ msgstr "löschen"
795
+
796
+ #~ msgid "Drag"
797
+ #~ msgstr "Ziehen"
798
+
799
+ #~ msgid "Toggle"
800
+ #~ msgstr "Wechseln"
801
+
802
+ #, fuzzy
803
+ #~ msgid "Get more templates.."
804
+ #~ msgstr "Slider-Einstellungen"
805
+
806
+ #~ msgid "Slideshow updated. Shortcode is [cycloneslider id=\"%s\"]"
807
+ #~ msgstr "Slideshow aktualisiert. Shortcode ist [cycloneslider id=\"%s\"]"
808
+
809
+ #~ msgid "Slideshow published. Shortcode is [cycloneslider id=\"%s\"]"
810
+ #~ msgstr "Slideshow veröffentlicht. Shortcode ist [cycloneslider id=\"%s\"]"
811
+
812
+ #, fuzzy
813
+ #~ msgid "Slide Elements:"
814
+ #~ msgstr "Zusätzliche Gleitelemente:"
815
+
816
+ #, fuzzy
817
+ #~ msgid "Slide Effects"
818
+ #~ msgstr "Slider-Einstellungen"
lang/cycloneslider-fa_IR.mo CHANGED
Binary file
lang/cycloneslider-fa_IR.po CHANGED
@@ -1,780 +1,826 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Cyclone Slider 2 for persians\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-19 09:37+0800\n"
6
- "PO-Revision-Date: 2013-09-19 11:45+0800\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Mixa <info@Mixa.ir>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
- "Language: Persian\n"
17
- "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp_dev\\cyclone-slider-2\\wp-content\\plugins\\cyclone-slider-2\n"
18
-
19
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
20
- #, fuzzy
21
- msgid "Cyclone Slider Settings"
22
- msgstr "ابزارک اسلایدر میکسا"
23
-
24
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:123
25
- #, fuzzy
26
- msgid "Settings"
27
- msgstr "تنظیمات اسلایدشو"
28
-
29
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:94
30
- msgid "Cyclone Slider"
31
- msgstr "اسلایدر"
32
-
33
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:95
34
- msgid "Slideshow"
35
- msgstr "اسلایدشو"
36
-
37
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
38
- msgid "Add Slideshow"
39
- msgstr "افزودن اسلایدشو"
40
-
41
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
42
- msgid "Add New Slideshow"
43
- msgstr "افزودن اسلایدشو جدید"
44
-
45
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
46
- msgid "Edit Slideshow"
47
- msgstr "ویرایش اسلایدشو"
48
-
49
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
50
- msgid "New Slideshow"
51
- msgstr "اسلایدشو جدید"
52
-
53
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
54
- msgid "View Slideshow"
55
- msgstr "نمایش اسلایدشو"
56
-
57
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
58
- msgid "Search Slideshows"
59
- msgstr "جستجو"
60
-
61
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
62
- msgid "No slideshows found"
63
- msgstr "چیزی یافت نشد"
64
-
65
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
66
- msgid "No slideshows found in Trash"
67
- msgstr "چیزی در سطل زباله یافت نشد"
68
-
69
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:139
70
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
71
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
72
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
73
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
74
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
75
- msgid "Slideshow updated."
76
- msgstr "اسلایدشو به روز شد"
77
-
78
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:140
79
- msgid "Custom field updated."
80
- msgstr "فیلدهای سفارشی بروز شدند"
81
-
82
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
83
- msgid "Custom field deleted."
84
- msgstr "فیلدهای سفارشی حذف شدند"
85
-
86
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
87
- msgid "Slideshow published."
88
- msgstr "اسلایدشو منتشر شد"
89
-
90
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
91
- msgid "Slideshow saved."
92
- msgstr "اسلایدشو ذخیره شد"
93
-
94
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
95
- #, php-format
96
- msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
97
- msgstr "css مربوط به الگو نمی تواند ذخیره شود. دسترسی نوشتن را به %stemplates.css بدهید."
98
-
99
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
100
- #, php-format
101
- msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
102
- msgstr "JS مربوط به الگو نمی تواند ذخیره شود. دسترسی نوشتن را به %stemplates.css بدهید."
103
-
104
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:184
105
- msgid "Slides"
106
- msgstr "اسلایدر"
107
-
108
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:193
109
- #, fuzzy
110
- msgid "Slider Preview"
111
- msgstr "تنظیمات اسلاید"
112
-
113
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:202
114
- msgid "Get Slider Codes"
115
- msgstr "دریافت کد اسلایدر"
116
-
117
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:211
118
- #, fuzzy
119
- msgid "Basic Settings"
120
- msgstr "تنظیمات اسلایدشو"
121
-
122
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:220
123
- #, fuzzy
124
- msgid "Advanced Settings"
125
- msgstr "تنظیمات اسلایدشو"
126
-
127
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:229
128
- #, fuzzy
129
- msgid "Templates"
130
- msgstr "الگو"
131
-
132
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:238
133
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:502
134
- msgid "Slideshow ID"
135
- msgstr "کد اسلایدشو"
136
-
137
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:266
138
- msgid "Slide"
139
- msgstr "اسلاید"
140
-
141
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:435
142
- msgid "Slide *"
143
- msgstr "اسلاید *"
144
-
145
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:499
146
- msgid "Slideshow Name"
147
- msgstr "نام اسلایدشو"
148
-
149
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:500
150
- msgid "Template"
151
- msgstr "الگو"
152
-
153
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:501
154
- msgid "No. of Slides"
155
- msgstr "شماره اسلاید"
156
-
157
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:503
158
- msgid "Shortcode"
159
- msgstr "کد کوتاه"
160
-
161
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
162
- msgid "Select an image"
163
- msgstr "انتخاب عکس"
164
-
165
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
166
- msgid "Add to Slide"
167
- msgstr "افزودن به اسلایدر"
168
-
169
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
170
- msgid "Error. Make sure its a valid YouTube URL."
171
- msgstr ""
172
-
173
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:17
174
- msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
175
- msgstr "در صورتی که مشکل در نمایش صحیح یا برای بهینه سازی اسلایدر، تنظیمات زیر را تغییر دهید."
176
-
177
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:30
178
- #, fuzzy
179
- msgid "Load scripts in:"
180
- msgstr "بارگزاری اسکریپت های زیر"
181
-
182
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:33
183
- msgid "Header"
184
- msgstr "سرصفحه"
185
-
186
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:34
187
- msgid "Footer"
188
- msgstr "پاصفحه"
189
-
190
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:39
191
- msgid "Load these scripts:"
192
- msgstr "بارگزاری اسکریپت های زیر"
193
-
194
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:44
195
- msgid "Cycle 2. This is the core script needed by the plugin."
196
- msgstr "Cycle 2. اسکریپت هسته اصلی افزونه"
197
-
198
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:49
199
- msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
200
- msgstr "Cycle 2 - Carousel. استفاده شده در پوسته های افزونه"
201
-
202
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:54
203
- #, fuzzy
204
- msgid "Cycle 2 - Swipe. For touch swipe events."
205
- msgstr "Cycle 2 - Tile. برای جلوه نمایش حرکت کاشی ها در افزونه"
206
-
207
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:59
208
- msgid "Cycle 2 - Tile. Used for tile transition effects."
209
- msgstr "Cycle 2 - Tile. برای جلوه نمایش حرکت کاشی ها در افزونه"
210
-
211
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:64
212
- msgid "Cycle 2 - Video. Used by YouTube template."
213
- msgstr "Cycle 2 - Video. برای نمایش فایل های یوتیوب در الگوها"
214
-
215
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
216
- msgid "Magnific Popup - Enable lightbox option."
217
- msgstr ""
218
-
219
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
220
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
221
- msgid "Available in pro version."
222
- msgstr ""
223
-
224
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
225
- msgid "Easing - Enable easing options."
226
- msgstr ""
227
-
228
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:79
229
- msgid "Scripts loading priority:"
230
- msgstr ""
231
-
232
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:82
233
- msgid "Make this value bigger to load scripts last."
234
- msgstr "برای سرعت"
235
-
236
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:87
237
- msgid "Save Options"
238
- msgstr ""
239
-
240
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:88
241
- msgid "Restore Defaults"
242
- msgstr ""
243
-
244
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:105
245
- msgid "Default options restored."
246
- msgstr "تنظیمات پیش فرض بازیابی شد"
247
-
248
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
249
- msgid "Cyclone Slider Widget"
250
- msgstr "ابزارک اسلایدر میکسا"
251
-
252
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
253
- msgid "Widget for displaying slideshows."
254
- msgstr "ابزارک برای نمایش اسلایدرشوها"
255
-
256
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:62
257
- msgid "Select a Slideshow:"
258
- msgstr "انتخاب اسلایدشو"
259
-
260
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:77
261
- msgid "No slideshows found."
262
- msgstr "اسلایدشو یافت نشد"
263
-
264
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:55
265
- #, php-format
266
- msgid "[Slideshow \"%s\" not found]"
267
- msgstr "[اسلایدشو \"%s\" یافت نشد]"
268
-
269
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:67
270
- #, php-format
271
- msgid "[Template \"%s\" not found]"
272
- msgstr "[الگوی \"%s\" یافت نشد]"
273
-
274
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
275
- msgid "NextGEN Integration"
276
- msgstr "ادغام با NextGEN"
277
-
278
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
279
- msgid "Choose a NextGEN Gallery"
280
- msgstr "گالری NextGEN را انتخاب کنید"
281
-
282
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
283
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
284
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
285
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
286
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:7
287
- msgid "Import"
288
- msgstr "وارد کردن"
289
-
290
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
291
- msgid "Select a gallery to import images from. Images will be added as new slides."
292
- msgstr "گالری را برای وارد کردن تصاویر انتخاب کنید. تصاویر در یک اسلاید جدید افزوده خواهند شد."
293
-
294
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:55
295
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:59
296
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:63
297
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:63
298
- #, fuzzy
299
- msgid "Slide type not supported."
300
- msgstr "اسلایدشو به روز شد"
301
-
302
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
303
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
304
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
305
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:6
306
- #, fuzzy
307
- msgid "Export"
308
- msgstr "وارد کردن"
309
-
310
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
311
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
312
- #, fuzzy
313
- msgid "Cyclone Slider Export"
314
- msgstr "اسلایدر"
315
-
316
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
317
- #, fuzzy
318
- msgid "Select sliders:"
319
- msgstr "انتخاب اسلایدشو"
320
-
321
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
322
- msgid "Select All"
323
- msgstr ""
324
-
325
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
326
- #, fuzzy
327
- msgid "No slider to export."
328
- msgstr "اسلایدشو یافت نشد"
329
-
330
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
331
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
332
- msgid "Next"
333
- msgstr ""
334
-
335
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
336
- msgid "Your export file is ready. Click Download."
337
- msgstr ""
338
-
339
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
340
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
341
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:18
342
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:26
343
- msgid "Back"
344
- msgstr ""
345
-
346
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
347
- msgid "Download"
348
- msgstr ""
349
-
350
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
351
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:9
352
- #, fuzzy
353
- msgid "Cyclone Slider Import"
354
- msgstr "اسلایدر"
355
-
356
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
357
- msgid "Import Zip File:"
358
- msgstr ""
359
-
360
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
361
- msgid "Import operation success!"
362
- msgstr ""
363
-
364
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
365
- msgid "Delete"
366
- msgstr "حذف"
367
-
368
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
369
- msgid "Image"
370
- msgstr "عکس"
371
-
372
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
373
- msgid "YouTube"
374
- msgstr ""
375
-
376
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
377
- #, fuzzy
378
- msgid "Vimeo"
379
- msgstr "فیلم"
380
-
381
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
382
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:173
383
- msgid "Custom HTML"
384
- msgstr "HTML دلخواه"
385
-
386
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
387
- msgid "Video (Old Version)"
388
- msgstr ""
389
-
390
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
391
- msgid "Get Image"
392
- msgstr "افزودن عکس"
393
-
394
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
395
- msgid "Slide Properties:"
396
- msgstr "تنظیمات اسلاید"
397
-
398
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
399
- msgid "Link"
400
- msgstr "لینک"
401
-
402
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:49
403
- msgid "Link URL:"
404
- msgstr "آدرس لینک"
405
-
406
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
407
- msgid "Open Link in:"
408
- msgstr "نمایش لینک در"
409
-
410
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:55
411
- msgid "Same Window"
412
- msgstr "همان پنجره"
413
-
414
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:56
415
- msgid "New Tab or Window"
416
- msgstr "تب یا پنجره جدید"
417
-
418
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:57
419
- msgid "Lightbox"
420
- msgstr ""
421
-
422
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:63
423
- msgid "Title"
424
- msgstr "عنوان"
425
-
426
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:71
427
- msgid "Description"
428
- msgstr "توضیح"
429
-
430
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:80
431
- msgid "Image Attributes"
432
- msgstr "ویژگی های عکس"
433
-
434
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:83
435
- msgid "Alternate Text:"
436
- msgstr "متن جایگزین تصاویر"
437
-
438
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:87
439
- msgid "Title Text:"
440
- msgstr "متن عنوان"
441
-
442
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
443
- msgid "Slide Transition Effects"
444
- msgstr "افکت حرکت اسلاید"
445
-
446
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:97
447
- msgid "Disable"
448
- msgstr "غیرفعال"
449
-
450
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:98
451
- msgid "Enable Slide Effects"
452
- msgstr "فعال سازی افکت اسلاید"
453
-
454
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:104
455
- msgid "Transition Effects:"
456
- msgstr "افکت حرکت"
457
-
458
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:115
459
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
460
- msgid "Transition Effects Speed:"
461
- msgstr "سرعت نمایش جلوه ها"
462
-
463
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
464
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:124
465
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
466
- msgid "Milliseconds"
467
- msgstr "میلی ثانیه"
468
-
469
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:122
470
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
471
- msgid "Next Slide Delay:"
472
- msgstr "تاخیر نمایش اسلاید"
473
-
474
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:132
475
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
476
- msgid "Tile Count:"
477
- msgstr "تعداد کاشی ها"
478
-
479
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:134
480
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
481
- msgid "The number of tiles to use in the transition."
482
- msgstr "تعداد کاشی ها برای استفاده در جلوه های حرکتی"
483
-
484
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:138
485
- msgid "Tile Delay:"
486
- msgstr "تاخیر کاشی"
487
-
488
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:140
489
- msgid "Milliseconds to delay each individual tile transition."
490
- msgstr "برحسب میلی ثانیه برای تاخیر بین حرکت کاشی ها"
491
-
492
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:144
493
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
494
- msgid "Tile Position:"
495
- msgstr "موقعیت"
496
-
497
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:146
498
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
499
- msgid "Vertical"
500
- msgstr "عمودی"
501
-
502
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:147
503
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
504
- msgid "Horizontal"
505
- msgstr "افقی"
506
-
507
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:159
508
- msgid "YouTube URL:"
509
- msgstr ""
510
-
511
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
512
- msgid "Copy and paste a valid YouTube URL here."
513
- msgstr ""
514
-
515
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:166
516
- #, fuzzy
517
- msgid "Vimeo URL:"
518
- msgstr "آدرس ویدیو"
519
-
520
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
521
- #, fuzzy
522
- msgid "Copy and paste a valid Vimeo URL here."
523
- msgstr "آدرس ویدیو یوتیوب یا Vimeo را در اینجا گذاشته و دکمه افزودن ویدیو را کلیک کنید"
524
-
525
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:180
526
- msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
527
- msgstr ""
528
-
529
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:191
530
- msgid "Video URL:"
531
- msgstr "آدرس ویدیو"
532
-
533
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:193
534
- msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
535
- msgstr "آدرس ویدیو یوتیوب یا Vimeo را در اینجا گذاشته و دکمه افزودن ویدیو را کلیک کنید"
536
-
537
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
538
- msgid "Get Video"
539
- msgstr "افزودن ویدیو"
540
-
541
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:202
542
- msgid "Embed Code"
543
- msgstr "کد ضمیمه شده"
544
-
545
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:204
546
- msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
547
- msgstr "شما می توانید کد ویدیو را مستقیما اینجا بریزید یا با کلیک بر روی افزودن ویدیو آن را به ما بسپارید."
548
-
549
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:206
550
- msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
551
- msgstr "<strong>نکته:</strong> تنظیمات اسلاید و افکت کاشی بر روی ویدیو غیرفعال است"
552
-
553
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:208
554
- msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
555
- msgstr "<strong>نکته:</strong> افزودن &wmode=transparent برای چسباندن ویژگی src برای ساختن المنت HTML در بالای آن"
556
-
557
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
558
- msgid "Allow Wrap?"
559
- msgstr ""
560
-
561
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
562
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
563
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
564
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:60
565
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:68
566
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:78
567
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:87
568
- msgid "Yes"
569
- msgstr "بله"
570
-
571
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
572
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
573
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
574
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:61
575
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:69
576
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:77
577
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:86
578
- msgid "No"
579
- msgstr "خیر"
580
-
581
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
582
- msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
583
- msgstr ""
584
-
585
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
586
- #, fuzzy
587
- msgid "Dynamic Height:"
588
- msgstr "ارتفاع"
589
-
590
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
591
- msgid "Off"
592
- msgstr ""
593
-
594
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
595
- msgid "On"
596
- msgstr ""
597
-
598
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
599
- msgid "Adjust slider height depending on current slide."
600
- msgstr ""
601
-
602
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
603
- #, fuzzy
604
- msgid "Delay:"
605
- msgstr "تاخیر کاشی"
606
-
607
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
608
- msgid "Milliseconds to add or substract from the time before the first transition occurs."
609
- msgstr ""
610
-
611
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
612
- msgid "Easing:"
613
- msgstr ""
614
-
615
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
616
- msgid "Easing for transition animations."
617
- msgstr ""
618
-
619
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
620
- msgid "Swipe:"
621
- msgstr ""
622
-
623
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
624
- msgid "Enable swipe gesture support for touch devices."
625
- msgstr ""
626
-
627
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
628
- #, fuzzy
629
- msgid "Resize Options:"
630
- msgstr "توضیح"
631
-
632
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
633
- msgid "Force Resize"
634
- msgstr ""
635
-
636
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
637
- msgid "Auto - Cyclone Slider decides the resize option."
638
- msgstr ""
639
-
640
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
641
- msgid "Crop - Resize and remove excess parts."
642
- msgstr ""
643
-
644
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
645
- msgid "Exact - Resize to exact dimensions."
646
- msgstr ""
647
-
648
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
649
- msgid "Landscape - Resize to exact width."
650
- msgstr ""
651
-
652
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
653
- msgid "Portrait - Resize to exact height."
654
- msgstr ""
655
-
656
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
657
- msgid "Your Shortcode:"
658
- msgstr "کد کوتاه"
659
-
660
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
661
- msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
662
- msgstr "با نمایش این کد کوتاه در نوشته ها، صفحات و یا ویرایشگرهای سفارشی، می توانید اسلایدر را به نمایش درآوردید."
663
-
664
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
665
- msgid "Your PHP Code:"
666
- msgstr "کد پی اچ پی"
667
-
668
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
669
- msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
670
- msgstr "با استفاده از این کد می توانید در فایل های اصلی پوسته خود اسلایدر را به نمایش درآورید."
671
-
672
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
673
- msgid "Change the Slideshow ID here."
674
- msgstr "آی دی اسلایدشو را از اینجا تغییر دهید"
675
-
676
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
677
- msgid "Your preview will appear here."
678
- msgstr ""
679
-
680
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
681
- msgid "Transition Effects to Use:"
682
- msgstr "افکت حرکت"
683
-
684
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
685
- msgid "Milliseconds. 0 to disable auto advance."
686
- msgstr "میلی ثانیه. 0 برای غیرفعال سازی حالت خودکار"
687
-
688
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
689
- msgid "Width:"
690
- msgstr "عرض"
691
-
692
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
693
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
694
- msgid "pixels."
695
- msgstr "پیکسل"
696
-
697
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
698
- msgid "Height:"
699
- msgstr "ارتفاع"
700
-
701
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
702
- msgid "Pause on Hover?"
703
- msgstr "توقف در زمان عبور ماوس"
704
-
705
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
706
- msgid "Show Prev/Next Buttons?"
707
- msgstr "نمایش دکمه قبلی - بعدی"
708
-
709
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
710
- msgid "Show Navigation?"
711
- msgstr "نمایش ناوبری"
712
-
713
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:71
714
- msgid "The thumbnails or dots depending on template."
715
- msgstr "تصویر بندانگشتی یا نقطه یا نمایه، بسته به تنظیمات طرح انتخابی"
716
-
717
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
718
- msgid "Resize Images?"
719
- msgstr "تغییر اندازه عکس ها"
720
-
721
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
722
- msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
723
- msgstr "بله: تغییر اندازه تصاویر به نسبت ابعاد اسلایدشو </br> خیر: استفاده از فایل اصلی آپلود شده"
724
-
725
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:84
726
- msgid "Random Slide Order?"
727
- msgstr "نمایش نامرتب اسلایدها"
728
-
729
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
730
- msgid "Randomize order of slides on every page visit."
731
- msgstr "نمایش تصادفی ترتیب اسلایدها در هر بار نمایش سایت"
732
-
733
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
734
- msgid "Add Slide"
735
- msgstr "افزودن اسلاید"
736
-
737
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
738
- msgid "Name"
739
- msgstr ""
740
-
741
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
742
- msgid "Supported Slides"
743
- msgstr ""
744
-
745
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
746
- #, fuzzy
747
- msgid "Selected"
748
- msgstr "حذف"
749
-
750
- #~ msgid "Slideshow Settings"
751
- #~ msgstr "تنظیمات اسلایدشو"
752
-
753
- #~ msgid "Slideshow Templates"
754
- #~ msgstr "الگوهای اسلایشو"
755
-
756
- #~ msgid "Drag"
757
- #~ msgstr "کشیدن"
758
-
759
- #~ msgid "Toggle"
760
- #~ msgstr "Toggle"
761
-
762
- #~ msgid "Custom"
763
- #~ msgstr "سایر"
764
-
765
- #~ msgid ""
766
- #~ "Select a template to use. Check the template icons to see what slide type "
767
- #~ "it supports."
768
- #~ msgstr ""
769
- #~ "یک الگو را برای استفاده انتخاب کنید. با چک کردن آیکن های نمایش داده شده، "
770
- #~ "از ساپورت فرمت مورد نظر خود مطمئن شوید."
771
-
772
- #~ msgid ""
773
- #~ "Note: If you are looking for the Black, Blue or Myrtle, checkout this <a "
774
- #~ "href=\"%s\">post</a>."
775
- #~ msgstr ""
776
- #~ "نکته: اگر به دنبال استفاده از طرحی خاص مثل مشکی، آبی هستید، <a href=\"%s"
777
- #~ "\">اینجا</a> را چک کنید."
778
-
779
- #~ msgid "Get more templates.."
780
- #~ msgstr "دانلود مدل های بیشتر..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cyclone Slider 2 for persians\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-10 15:44+0800\n"
6
+ "PO-Revision-Date: 2013-10-10 15:47+0800\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Mixa <info@Mixa.ir>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;_x\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.5.7\n"
16
+ "Language: Persian\n"
17
+ "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp_dev\\cyclone-slider-2\\wp-content\\plugins\\cyclone-slider-2\n"
18
+
19
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:121
20
+ #, fuzzy
21
+ msgid "Cyclone Slider Settings"
22
+ msgstr "ابزارک اسلایدر میکسا"
23
+
24
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
25
+ #, fuzzy
26
+ msgid "Settings"
27
+ msgstr "تنظیمات اسلایدشو"
28
+
29
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
30
+ msgid "Cyclone Slider"
31
+ msgstr "اسلایدر"
32
+
33
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
34
+ msgid "Slideshow"
35
+ msgstr "اسلایدشو"
36
+
37
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
38
+ msgid "Add Slideshow"
39
+ msgstr "افزودن اسلایدشو"
40
+
41
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
42
+ msgid "Add New Slideshow"
43
+ msgstr "افزودن اسلایدشو جدید"
44
+
45
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
46
+ msgid "Edit Slideshow"
47
+ msgstr "ویرایش اسلایدشو"
48
+
49
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
50
+ msgid "New Slideshow"
51
+ msgstr "اسلایدشو جدید"
52
+
53
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
54
+ msgid "View Slideshow"
55
+ msgstr "نمایش اسلایدشو"
56
+
57
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
58
+ msgid "Search Slideshows"
59
+ msgstr "جستجو"
60
+
61
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:104
62
+ msgid "No slideshows found"
63
+ msgstr "چیزی یافت نشد"
64
+
65
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:105
66
+ msgid "No slideshows found in Trash"
67
+ msgstr "چیزی در سطل زباله یافت نشد"
68
+
69
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
70
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
71
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
72
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
73
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
74
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
75
+ msgid "Slideshow updated."
76
+ msgstr "اسلایدشو به روز شد"
77
+
78
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
79
+ msgid "Custom field updated."
80
+ msgstr "فیلدهای سفارشی بروز شدند"
81
+
82
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
83
+ msgid "Custom field deleted."
84
+ msgstr "فیلدهای سفارشی حذف شدند"
85
+
86
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
87
+ msgid "Slideshow published."
88
+ msgstr "اسلایدشو منتشر شد"
89
+
90
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
91
+ msgid "Slideshow saved."
92
+ msgstr "اسلایدشو ذخیره شد"
93
+
94
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:151
95
+ #, php-format
96
+ msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
97
+ msgstr "css مربوط به الگو نمی تواند ذخیره شود. دسترسی نوشتن را به %stemplates.css بدهید."
98
+
99
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:152
100
+ #, php-format
101
+ msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
102
+ msgstr "JS مربوط به الگو نمی تواند ذخیره شود. دسترسی نوشتن را به %stemplates.css بدهید."
103
+
104
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:186
105
+ msgid "Slides"
106
+ msgstr "اسلایدر"
107
+
108
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:195
109
+ #, fuzzy
110
+ msgid "Slider Preview"
111
+ msgstr "تنظیمات اسلاید"
112
+
113
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:204
114
+ msgid "Get Slider Codes"
115
+ msgstr "دریافت کد اسلایدر"
116
+
117
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:213
118
+ #, fuzzy
119
+ msgid "Basic Settings"
120
+ msgstr "تنظیمات اسلایدشو"
121
+
122
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:222
123
+ #, fuzzy
124
+ msgid "Advanced Settings"
125
+ msgstr "تنظیمات اسلایدشو"
126
+
127
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:231
128
+ #, fuzzy
129
+ msgid "Templates"
130
+ msgstr "الگو"
131
+
132
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:240
133
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:508
134
+ msgid "Slideshow ID"
135
+ msgstr "کد اسلایدشو"
136
+
137
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:268
138
+ msgid "Slide"
139
+ msgstr "اسلاید"
140
+
141
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:441
142
+ msgid "Slide *"
143
+ msgstr "اسلاید *"
144
+
145
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:505
146
+ msgid "Slideshow Name"
147
+ msgstr "نام اسلایدشو"
148
+
149
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:506
150
+ msgid "Template"
151
+ msgstr "الگو"
152
+
153
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:507
154
+ msgid "No. of Slides"
155
+ msgstr "شماره اسلاید"
156
+
157
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:509
158
+ msgid "Shortcode"
159
+ msgstr "کد کوتاه"
160
+
161
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
162
+ msgid "Select an image"
163
+ msgstr "انتخاب عکس"
164
+
165
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
166
+ msgid "Add to Slide"
167
+ msgstr "افزودن به اسلایدر"
168
+
169
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
170
+ msgid "Error. Make sure its a valid YouTube URL."
171
+ msgstr ""
172
+
173
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:62
174
+ msgid "Default options restored."
175
+ msgstr "تنظیمات پیش فرض بازیابی شد"
176
+
177
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
178
+ msgid "Cyclone Slider Widget"
179
+ msgstr "ابزارک اسلایدر میکسا"
180
+
181
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
182
+ #, fuzzy
183
+ msgid "Widget for displaying sliders."
184
+ msgstr "ابزارک برای نمایش اسلایدرشوها"
185
+
186
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:67
187
+ #, fuzzy
188
+ msgid "Title:"
189
+ msgstr "عنوان"
190
+
191
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:81
192
+ #, fuzzy
193
+ msgid "Select a Slider:"
194
+ msgstr "انتخاب اسلایدشو"
195
+
196
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:96
197
+ #, fuzzy
198
+ msgid "No sliders found."
199
+ msgstr "اسلایدشو یافت نشد"
200
+
201
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
202
+ #, php-format
203
+ msgid "[Slideshow \"%s\" not found]"
204
+ msgstr "[اسلایدشو \"%s\" یافت نشد]"
205
+
206
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:89
207
+ #, php-format
208
+ msgid "[Template \"%s\" not found]"
209
+ msgstr "[الگوی \"%s\" یافت نشد]"
210
+
211
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
212
+ msgid "NextGEN Integration"
213
+ msgstr "ادغام با NextGEN"
214
+
215
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
216
+ msgid "Choose a NextGEN Gallery"
217
+ msgstr "گالری NextGEN را انتخاب کنید"
218
+
219
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
220
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
221
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
222
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
223
+ msgid "Import"
224
+ msgstr "وارد کردن"
225
+
226
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
227
+ msgid "Select a gallery to import images from. Images will be added as new slides."
228
+ msgstr "گالری را برای وارد کردن تصاویر انتخاب کنید. تصاویر در یک اسلاید جدید افزوده خواهند شد."
229
+
230
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:43
231
+ msgid "View Larger Image"
232
+ msgstr ""
233
+
234
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:46
235
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:48
236
+ msgid "Learn More"
237
+ msgstr ""
238
+
239
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:62
240
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:66
241
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:70
242
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
243
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:62
244
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:66
245
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:70
246
+ #, fuzzy
247
+ msgid "Slide type not supported."
248
+ msgstr "اسلایدشو به روز شد"
249
+
250
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
251
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
252
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
253
+ #, fuzzy
254
+ msgid "Export"
255
+ msgstr "وارد کردن"
256
+
257
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
258
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
259
+ #, fuzzy
260
+ msgid "Cyclone Slider Export"
261
+ msgstr "اسلایدر"
262
+
263
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
264
+ #, fuzzy
265
+ msgid "Select sliders:"
266
+ msgstr "انتخاب اسلایدشو"
267
+
268
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
269
+ msgid "Select All"
270
+ msgstr ""
271
+
272
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
273
+ #, fuzzy
274
+ msgid "No slider to export."
275
+ msgstr "اسلایدشو یافت نشد"
276
+
277
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
278
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
279
+ msgid "Next"
280
+ msgstr ""
281
+
282
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
283
+ msgid "Your export file is ready. Click Download."
284
+ msgstr ""
285
+
286
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
287
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
288
+ msgid "Back"
289
+ msgstr ""
290
+
291
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
292
+ msgid "Download"
293
+ msgstr ""
294
+
295
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
296
+ #, fuzzy
297
+ msgid "Cyclone Slider Import"
298
+ msgstr "اسلایدر"
299
+
300
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
301
+ msgid "Import Zip File:"
302
+ msgstr ""
303
+
304
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
305
+ msgid "Import operation success!"
306
+ msgstr ""
307
+
308
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:7
309
+ msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
310
+ msgstr "در صورتی که مشکل در نمایش صحیح یا برای بهینه سازی اسلایدر، تنظیمات زیر را تغییر دهید."
311
+
312
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:17
313
+ #, fuzzy
314
+ msgid "Load scripts in:"
315
+ msgstr "بارگزاری اسکریپت های زیر"
316
+
317
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:20
318
+ msgid "Header"
319
+ msgstr "سرصفحه"
320
+
321
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:21
322
+ msgid "Footer"
323
+ msgstr "پاصفحه"
324
+
325
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:26
326
+ msgid "Load these scripts:"
327
+ msgstr "بارگزاری اسکریپت های زیر"
328
+
329
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:31
330
+ msgid "Cycle 2. This is the core script needed by the plugin."
331
+ msgstr "Cycle 2. اسکریپت هسته اصلی افزونه"
332
+
333
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:36
334
+ msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
335
+ msgstr "Cycle 2 - Carousel. استفاده شده در پوسته های افزونه"
336
+
337
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:41
338
+ #, fuzzy
339
+ msgid "Cycle 2 - Swipe. For touch swipe events."
340
+ msgstr "Cycle 2 - Tile. برای جلوه نمایش حرکت کاشی ها در افزونه"
341
+
342
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:46
343
+ msgid "Cycle 2 - Tile. Used for tile transition effects."
344
+ msgstr "Cycle 2 - Tile. برای جلوه نمایش حرکت کاشی ها در افزونه"
345
+
346
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:51
347
+ msgid "Cycle 2 - Video. Used by YouTube template."
348
+ msgstr "Cycle 2 - Video. برای نمایش فایل های یوتیوب در الگوها"
349
+
350
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
351
+ msgid "Magnific Popup - Enable lightbox option."
352
+ msgstr ""
353
+
354
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
355
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
356
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:2
357
+ msgid "Available in pro version."
358
+ msgstr ""
359
+
360
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
361
+ msgid "Easing - Enable easing options."
362
+ msgstr ""
363
+
364
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:66
365
+ msgid "Scripts loading priority:"
366
+ msgstr ""
367
+
368
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:69
369
+ msgid "Make this value bigger to load scripts last."
370
+ msgstr "برای سرعت"
371
+
372
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:73
373
+ #, fuzzy
374
+ msgid "Load these templates:"
375
+ msgstr "بارگزاری اسکریپت های زیر"
376
+
377
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:86
378
+ msgid "Save Options"
379
+ msgstr ""
380
+
381
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:87
382
+ msgid "Restore Defaults"
383
+ msgstr ""
384
+
385
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
386
+ msgid "Delete"
387
+ msgstr "حذف"
388
+
389
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
390
+ msgid "Image"
391
+ msgstr "عکس"
392
+
393
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
394
+ msgid "YouTube"
395
+ msgstr ""
396
+
397
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
398
+ #, fuzzy
399
+ msgid "Vimeo"
400
+ msgstr "فیلم"
401
+
402
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
403
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
404
+ msgid "Custom HTML"
405
+ msgstr "HTML دلخواه"
406
+
407
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
408
+ msgid "Video (Old Version)"
409
+ msgstr ""
410
+
411
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
412
+ msgid "Get Image"
413
+ msgstr "افزودن عکس"
414
+
415
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
416
+ msgid "Slide Properties:"
417
+ msgstr "تنظیمات اسلاید"
418
+
419
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
420
+ msgid "Caption"
421
+ msgstr ""
422
+
423
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
424
+ #, fuzzy
425
+ msgid "Description:"
426
+ msgstr "توضیح"
427
+
428
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:59
429
+ msgid "Link"
430
+ msgstr "لینک"
431
+
432
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:62
433
+ msgid "Link URL:"
434
+ msgstr "آدرس لینک"
435
+
436
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:66
437
+ msgid "Open Link in:"
438
+ msgstr "نمایش لینک در"
439
+
440
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:68
441
+ msgid "Same Window"
442
+ msgstr "همان پنجره"
443
+
444
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:69
445
+ msgid "New Tab or Window"
446
+ msgstr "تب یا پنجره جدید"
447
+
448
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:75
449
+ msgid "Image Attributes"
450
+ msgstr "ویژگی های عکس"
451
+
452
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:78
453
+ msgid "Alternate Text:"
454
+ msgstr "متن جایگزین تصاویر"
455
+
456
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:82
457
+ msgid "Title Text:"
458
+ msgstr "متن عنوان"
459
+
460
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:88
461
+ msgid "Slide Transition Effects"
462
+ msgstr "افکت حرکت اسلاید"
463
+
464
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:92
465
+ msgid "Disable"
466
+ msgstr "غیرفعال"
467
+
468
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
469
+ msgid "Enable Slide Effects"
470
+ msgstr "فعال سازی افکت اسلاید"
471
+
472
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:99
473
+ msgid "Transition Effects:"
474
+ msgstr "افکت حرکت"
475
+
476
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:110
477
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
478
+ msgid "Transition Effects Speed:"
479
+ msgstr "سرعت نمایش جلوه ها"
480
+
481
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:112
482
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:119
483
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
484
+ msgid "Milliseconds"
485
+ msgstr "میلی ثانیه"
486
+
487
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
488
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
489
+ msgid "Next Slide Delay:"
490
+ msgstr "تاخیر نمایش اسلاید"
491
+
492
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:127
493
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
494
+ msgid "Tile Count:"
495
+ msgstr "تعداد کاشی ها"
496
+
497
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:129
498
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
499
+ msgid "The number of tiles to use in the transition."
500
+ msgstr "تعداد کاشی ها برای استفاده در جلوه های حرکتی"
501
+
502
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:133
503
+ msgid "Tile Delay:"
504
+ msgstr "تاخیر کاشی"
505
+
506
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:135
507
+ msgid "Milliseconds to delay each individual tile transition."
508
+ msgstr "برحسب میلی ثانیه برای تاخیر بین حرکت کاشی ها"
509
+
510
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:139
511
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
512
+ msgid "Tile Position:"
513
+ msgstr "موقعیت"
514
+
515
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:141
516
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
517
+ msgid "Vertical"
518
+ msgstr "عمودی"
519
+
520
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:142
521
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
522
+ msgid "Horizontal"
523
+ msgstr "افقی"
524
+
525
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:154
526
+ msgid "YouTube URL:"
527
+ msgstr ""
528
+
529
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:156
530
+ msgid "Copy and paste a valid YouTube URL here."
531
+ msgstr ""
532
+
533
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
534
+ #, fuzzy
535
+ msgid "Vimeo URL:"
536
+ msgstr "آدرس ویدیو"
537
+
538
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:163
539
+ #, fuzzy
540
+ msgid "Copy and paste a valid Vimeo URL here."
541
+ msgstr "آدرس ویدیو یوتیوب یا Vimeo را در اینجا گذاشته و دکمه افزودن ویدیو را کلیک کنید"
542
+
543
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:175
544
+ msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
545
+ msgstr ""
546
+
547
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:186
548
+ msgid "Video URL:"
549
+ msgstr "آدرس ویدیو"
550
+
551
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:188
552
+ msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
553
+ msgstr "آدرس ویدیو یوتیوب یا Vimeo را در اینجا گذاشته و دکمه افزودن ویدیو را کلیک کنید"
554
+
555
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:192
556
+ msgid "Get Video"
557
+ msgstr "افزودن ویدیو"
558
+
559
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
560
+ msgid "Embed Code"
561
+ msgstr "کد ضمیمه شده"
562
+
563
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:199
564
+ msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
565
+ msgstr "شما می توانید کد ویدیو را مستقیما اینجا بریزید یا با کلیک بر روی افزودن ویدیو آن را به ما بسپارید."
566
+
567
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:201
568
+ msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
569
+ msgstr "<strong>نکته:</strong> تنظیمات اسلاید و افکت کاشی بر روی ویدیو غیرفعال است"
570
+
571
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:203
572
+ msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
573
+ msgstr "<strong>نکته:</strong> افزودن &wmode=transparent برای چسباندن ویژگی src برای ساختن المنت HTML در بالای آن"
574
+
575
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
576
+ msgid "Allow Wrap?"
577
+ msgstr ""
578
+
579
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
580
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
581
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
582
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:74
583
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:82
584
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:92
585
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:101
586
+ msgid "Yes"
587
+ msgstr "بله"
588
+
589
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
590
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
591
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:67
592
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
593
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:83
594
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:91
595
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:100
596
+ msgid "No"
597
+ msgstr "خیر"
598
+
599
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
600
+ msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
601
+ msgstr ""
602
+
603
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
604
+ #, fuzzy
605
+ msgid "Dynamic Height:"
606
+ msgstr "ارتفاع"
607
+
608
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
609
+ msgid "Off"
610
+ msgstr ""
611
+
612
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
613
+ msgid "On"
614
+ msgstr ""
615
+
616
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
617
+ msgid "Adjust slider height depending on current slide."
618
+ msgstr ""
619
+
620
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
621
+ #, fuzzy
622
+ msgid "Delay:"
623
+ msgstr "تاخیر کاشی"
624
+
625
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
626
+ msgid "Milliseconds to add or substract from the time before the first transition occurs."
627
+ msgstr ""
628
+
629
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
630
+ msgid "Easing:"
631
+ msgstr ""
632
+
633
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
634
+ msgid "Easing for transition animations."
635
+ msgstr ""
636
+
637
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
638
+ msgid "Swipe:"
639
+ msgstr ""
640
+
641
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
642
+ msgid "Enable swipe gesture support for touch devices."
643
+ msgstr ""
644
+
645
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
646
+ #, fuzzy
647
+ msgid "Resize Options:"
648
+ msgstr "توضیح"
649
+
650
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
651
+ msgid "Force Resize"
652
+ msgstr ""
653
+
654
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
655
+ msgid "Auto - Cyclone Slider decides the resize option."
656
+ msgstr ""
657
+
658
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
659
+ msgid "Crop - Resize and remove excess parts."
660
+ msgstr ""
661
+
662
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
663
+ msgid "Exact - Resize to exact dimensions."
664
+ msgstr ""
665
+
666
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
667
+ msgid "Landscape - Resize to exact width."
668
+ msgstr ""
669
+
670
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
671
+ msgid "Portrait - Resize to exact height."
672
+ msgstr ""
673
+
674
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
675
+ msgid "Your Shortcode:"
676
+ msgstr "کد کوتاه"
677
+
678
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
679
+ msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
680
+ msgstr "با نمایش این کد کوتاه در نوشته ها، صفحات و یا ویرایشگرهای سفارشی، می توانید اسلایدر را به نمایش درآوردید."
681
+
682
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
683
+ msgid "Your PHP Code:"
684
+ msgstr "کد پی اچ پی"
685
+
686
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
687
+ msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
688
+ msgstr "با استفاده از این کد می توانید در فایل های اصلی پوسته خود اسلایدر را به نمایش درآورید."
689
+
690
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
691
+ msgid "Change the Slideshow ID here."
692
+ msgstr "آی دی اسلایدشو را از اینجا تغییر دهید"
693
+
694
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
695
+ msgid "Your preview will appear here."
696
+ msgstr ""
697
+
698
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
699
+ msgid "Transition Effects to Use:"
700
+ msgstr "افکت حرکت"
701
+
702
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
703
+ msgid "Milliseconds. 0 to disable auto advance."
704
+ msgstr "میلی ثانیه. 0 برای غیرفعال سازی حالت خودکار"
705
+
706
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
707
+ msgid "Width:"
708
+ msgstr "عرض"
709
+
710
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
711
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
712
+ msgid "pixels."
713
+ msgstr "پیکسل"
714
+
715
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
716
+ msgid "Height:"
717
+ msgstr "ارتفاع"
718
+
719
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
720
+ msgid "Width Management:"
721
+ msgstr ""
722
+
723
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
724
+ msgid "Responsive"
725
+ msgstr ""
726
+
727
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
728
+ msgid "Full"
729
+ msgstr ""
730
+
731
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:54
732
+ msgid "Fixed"
733
+ msgstr ""
734
+
735
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:57
736
+ msgid "Responsive - resizes to smaller size but maximum width will be equal to the provided width."
737
+ msgstr ""
738
+
739
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
740
+ msgid "Full - the same as responsive but maximum width will be equal to its container ignoring the provided width."
741
+ msgstr ""
742
+
743
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:59
744
+ msgid "Fixed - width and height are not resized."
745
+ msgstr ""
746
+
747
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:64
748
+ msgid "Pause on Hover?"
749
+ msgstr "توقف در زمان عبور ماوس"
750
+
751
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:72
752
+ msgid "Show Prev/Next Buttons?"
753
+ msgstr "نمایش دکمه قبلی - بعدی"
754
+
755
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
756
+ msgid "Show Navigation?"
757
+ msgstr "نمایش ناوبری"
758
+
759
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:85
760
+ msgid "The thumbnails or dots depending on template."
761
+ msgstr "تصویر بندانگشتی یا نقطه یا نمایه، بسته به تنظیمات طرح انتخابی"
762
+
763
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
764
+ msgid "Resize Images?"
765
+ msgstr "تغییر اندازه عکس ها"
766
+
767
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:94
768
+ msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
769
+ msgstr "بله: تغییر اندازه تصاویر به نسبت ابعاد اسلایدشو </br> خیر: استفاده از فایل اصلی آپلود شده"
770
+
771
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:98
772
+ msgid "Random Slide Order?"
773
+ msgstr "نمایش نامرتب اسلایدها"
774
+
775
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:103
776
+ msgid "Randomize order of slides on every page visit."
777
+ msgstr "نمایش تصادفی ترتیب اسلایدها در هر بار نمایش سایت"
778
+
779
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
780
+ msgid "Add Slide"
781
+ msgstr "افزودن اسلاید"
782
+
783
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
784
+ msgid "Name"
785
+ msgstr ""
786
+
787
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
788
+ msgid "Supported Slides"
789
+ msgstr ""
790
+
791
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
792
+ #, fuzzy
793
+ msgid "Selected"
794
+ msgstr "حذف"
795
+
796
+ #~ msgid "Slideshow Settings"
797
+ #~ msgstr "تنظیمات اسلایدشو"
798
+
799
+ #~ msgid "Slideshow Templates"
800
+ #~ msgstr "الگوهای اسلایشو"
801
+
802
+ #~ msgid "Drag"
803
+ #~ msgstr "کشیدن"
804
+
805
+ #~ msgid "Toggle"
806
+ #~ msgstr "Toggle"
807
+
808
+ #~ msgid "Custom"
809
+ #~ msgstr "سایر"
810
+
811
+ #~ msgid ""
812
+ #~ "Select a template to use. Check the template icons to see what slide type "
813
+ #~ "it supports."
814
+ #~ msgstr ""
815
+ #~ "یک الگو را برای استفاده انتخاب کنید. با چک کردن آیکن های نمایش داده شده، "
816
+ #~ "از ساپورت فرمت مورد نظر خود مطمئن شوید."
817
+
818
+ #~ msgid ""
819
+ #~ "Note: If you are looking for the Black, Blue or Myrtle, checkout this <a "
820
+ #~ "href=\"%s\">post</a>."
821
+ #~ msgstr ""
822
+ #~ "نکته: اگر به دنبال استفاده از طرحی خاص مثل مشکی، آبی هستید، <a href=\"%s"
823
+ #~ "\">اینجا</a> را چک کنید."
824
+
825
+ #~ msgid "Get more templates.."
826
+ #~ msgstr "دانلود مدل های بیشتر..."
lang/cycloneslider-fr_FR.mo CHANGED
Binary file
lang/cycloneslider-fr_FR.po CHANGED
@@ -1,789 +1,832 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Cyclone Slider\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-19 09:37+0800\n"
6
- "PO-Revision-Date: 2013-09-19 11:45+0800\n"
7
- "Last-Translator: \n"
8
- "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "Language: de_DE\n"
16
- "X-Generator: Poedit 1.5.5\n"
17
- "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp1\\wp-content\\plugins\\cyclone-slider-2\n"
18
-
19
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
20
- #, fuzzy
21
- msgid "Cyclone Slider Settings"
22
- msgstr "Module de diaporama"
23
-
24
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:123
25
- #, fuzzy
26
- msgid "Settings"
27
- msgstr "Réglages du diaporama"
28
-
29
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:94
30
- msgid "Cyclone Slider"
31
- msgstr "Diaporama"
32
-
33
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:95
34
- msgid "Slideshow"
35
- msgstr "Diaporama"
36
-
37
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
38
- msgid "Add Slideshow"
39
- msgstr "Ajoutez un diaporama"
40
-
41
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
42
- msgid "Add New Slideshow"
43
- msgstr "Ajouter un nouveau diaporama"
44
-
45
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
46
- msgid "Edit Slideshow"
47
- msgstr "Editer le diaporama"
48
-
49
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
50
- msgid "New Slideshow"
51
- msgstr "Nouveau diaporama"
52
-
53
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
54
- msgid "View Slideshow"
55
- msgstr "Voir le diaporama"
56
-
57
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
58
- msgid "Search Slideshows"
59
- msgstr "Rechercher des diaporamas"
60
-
61
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
62
- msgid "No slideshows found"
63
- msgstr "Pas de diaporama trouvé"
64
-
65
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
66
- msgid "No slideshows found in Trash"
67
- msgstr "Pas de diaporama trouvé"
68
-
69
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:139
70
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
71
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
72
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
73
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
74
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
75
- msgid "Slideshow updated."
76
- msgstr "Diaporama mis à jour"
77
-
78
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:140
79
- msgid "Custom field updated."
80
- msgstr "Champ mis à jours"
81
-
82
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
83
- msgid "Custom field deleted."
84
- msgstr "Champ supprimé"
85
-
86
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
87
- #, fuzzy
88
- msgid "Slideshow published."
89
- msgstr "Diaporama sauvegardé"
90
-
91
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
92
- msgid "Slideshow saved."
93
- msgstr "Diaporama sauvegardé"
94
-
95
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
96
- #, php-format
97
- msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
98
- msgstr "Thème CSS non sauvegardé. Assurez-vous que le fichier %stemplates.css puisse être modifié."
99
-
100
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
101
- #, php-format
102
- msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
103
- msgstr "Thème JS non sauvegardé. Assurez-vous que le fichier %stemplates.js puisse être modifié."
104
-
105
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:184
106
- msgid "Slides"
107
- msgstr "Diapos"
108
-
109
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:193
110
- #, fuzzy
111
- msgid "Slider Preview"
112
- msgstr "Propriétés de la diapo"
113
-
114
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:202
115
- #, fuzzy
116
- msgid "Get Slider Codes"
117
- msgstr "Modifier vidéo"
118
-
119
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:211
120
- #, fuzzy
121
- msgid "Basic Settings"
122
- msgstr "Réglages du diaporama"
123
-
124
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:220
125
- #, fuzzy
126
- msgid "Advanced Settings"
127
- msgstr "Réglages du diaporama"
128
-
129
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:229
130
- #, fuzzy
131
- msgid "Templates"
132
- msgstr "Thème"
133
-
134
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:238
135
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:502
136
- msgid "Slideshow ID"
137
- msgstr "Diaporama ID"
138
-
139
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:266
140
- msgid "Slide"
141
- msgstr "Diapo"
142
-
143
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:435
144
- msgid "Slide *"
145
- msgstr "Diapo *"
146
-
147
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:499
148
- msgid "Slideshow Name"
149
- msgstr "Nom du diaporama"
150
-
151
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:500
152
- msgid "Template"
153
- msgstr "Thème"
154
-
155
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:501
156
- #, fuzzy
157
- msgid "No. of Slides"
158
- msgstr "Ajouter au diaporama"
159
-
160
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:503
161
- msgid "Shortcode"
162
- msgstr "Shortcode"
163
-
164
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
165
- msgid "Select an image"
166
- msgstr "Sélectionnez une image"
167
-
168
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
169
- msgid "Add to Slide"
170
- msgstr "Ajouter au diaporama"
171
-
172
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
173
- msgid "Error. Make sure its a valid YouTube URL."
174
- msgstr ""
175
-
176
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:17
177
- msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
178
- msgstr ""
179
-
180
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:30
181
- msgid "Load scripts in:"
182
- msgstr ""
183
-
184
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:33
185
- msgid "Header"
186
- msgstr ""
187
-
188
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:34
189
- msgid "Footer"
190
- msgstr ""
191
-
192
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:39
193
- msgid "Load these scripts:"
194
- msgstr ""
195
-
196
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:44
197
- msgid "Cycle 2. This is the core script needed by the plugin."
198
- msgstr ""
199
-
200
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:49
201
- msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
202
- msgstr ""
203
-
204
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:54
205
- msgid "Cycle 2 - Swipe. For touch swipe events."
206
- msgstr ""
207
-
208
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:59
209
- msgid "Cycle 2 - Tile. Used for tile transition effects."
210
- msgstr ""
211
-
212
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:64
213
- msgid "Cycle 2 - Video. Used by YouTube template."
214
- msgstr ""
215
-
216
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
217
- msgid "Magnific Popup - Enable lightbox option."
218
- msgstr ""
219
-
220
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
221
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
222
- msgid "Available in pro version."
223
- msgstr ""
224
-
225
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
226
- msgid "Easing - Enable easing options."
227
- msgstr ""
228
-
229
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:79
230
- msgid "Scripts loading priority:"
231
- msgstr ""
232
-
233
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:82
234
- msgid "Make this value bigger to load scripts last."
235
- msgstr ""
236
-
237
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:87
238
- msgid "Save Options"
239
- msgstr ""
240
-
241
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:88
242
- msgid "Restore Defaults"
243
- msgstr ""
244
-
245
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:105
246
- msgid "Default options restored."
247
- msgstr ""
248
-
249
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
250
- msgid "Cyclone Slider Widget"
251
- msgstr "Module de diaporama"
252
-
253
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
254
- msgid "Widget for displaying slideshows."
255
- msgstr "Module pour afficher des diaporamas"
256
-
257
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:62
258
- msgid "Select a Slideshow:"
259
- msgstr "Sélectionner un diaporama"
260
-
261
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:77
262
- msgid "No slideshows found."
263
- msgstr "Aucuns diaporamas"
264
-
265
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:55
266
- #, fuzzy, php-format
267
- msgid "[Slideshow \"%s\" not found]"
268
- msgstr "[Diaporama non trouvé]"
269
-
270
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:67
271
- #, php-format
272
- msgid "[Template \"%s\" not found]"
273
- msgstr "[Thème \"%s\" non trouvé]"
274
-
275
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
276
- msgid "NextGEN Integration"
277
- msgstr "NextGEN Integration"
278
-
279
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
280
- msgid "Choose a NextGEN Gallery"
281
- msgstr "Choose a NextGEN Gallery"
282
-
283
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
284
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
285
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
286
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
287
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:7
288
- msgid "Import"
289
- msgstr "Importer"
290
-
291
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
292
- msgid "Select a gallery to import images from. Images will be added as new slides."
293
- msgstr "Selectionnez une galerie pour importer les images. Les images devront être ajoutées comme des nouvelles diapos "
294
-
295
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:55
296
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:59
297
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:63
298
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:63
299
- #, fuzzy
300
- msgid "Slide type not supported."
301
- msgstr "Diaporama mis à jour"
302
-
303
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
304
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
305
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
306
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:6
307
- #, fuzzy
308
- msgid "Export"
309
- msgstr "Importer"
310
-
311
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
312
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
313
- #, fuzzy
314
- msgid "Cyclone Slider Export"
315
- msgstr "Diaporama"
316
-
317
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
318
- #, fuzzy
319
- msgid "Select sliders:"
320
- msgstr "Sélectionner un diaporama"
321
-
322
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
323
- msgid "Select All"
324
- msgstr ""
325
-
326
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
327
- #, fuzzy
328
- msgid "No slider to export."
329
- msgstr "Aucuns diaporamas"
330
-
331
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
332
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
333
- msgid "Next"
334
- msgstr ""
335
-
336
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
337
- msgid "Your export file is ready. Click Download."
338
- msgstr ""
339
-
340
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
341
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
342
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:18
343
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:26
344
- msgid "Back"
345
- msgstr ""
346
-
347
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
348
- msgid "Download"
349
- msgstr ""
350
-
351
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
352
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:9
353
- #, fuzzy
354
- msgid "Cyclone Slider Import"
355
- msgstr "Diaporama"
356
-
357
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
358
- msgid "Import Zip File:"
359
- msgstr ""
360
-
361
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
362
- msgid "Import operation success!"
363
- msgstr ""
364
-
365
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
366
- msgid "Delete"
367
- msgstr "Supprimer"
368
-
369
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
370
- msgid "Image"
371
- msgstr "Image"
372
-
373
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
374
- msgid "YouTube"
375
- msgstr ""
376
-
377
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
378
- #, fuzzy
379
- msgid "Vimeo"
380
- msgstr "Vidéo"
381
-
382
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
383
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:173
384
- msgid "Custom HTML"
385
- msgstr "Code HTML personnalisé"
386
-
387
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
388
- msgid "Video (Old Version)"
389
- msgstr ""
390
-
391
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
392
- msgid "Get Image"
393
- msgstr "Importer une image"
394
-
395
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
396
- msgid "Slide Properties:"
397
- msgstr "Propriétés de la diapo"
398
-
399
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
400
- msgid "Link"
401
- msgstr "Lien"
402
-
403
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:49
404
- msgid "Link URL:"
405
- msgstr "Lien"
406
-
407
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
408
- msgid "Open Link in:"
409
- msgstr "Ouvrir le lien dans :"
410
-
411
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:55
412
- msgid "Same Window"
413
- msgstr "Même fenêtre"
414
-
415
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:56
416
- msgid "New Tab or Window"
417
- msgstr "Nouvel onglet ou fenêtre"
418
-
419
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:57
420
- msgid "Lightbox"
421
- msgstr ""
422
-
423
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:63
424
- msgid "Title"
425
- msgstr "Titre"
426
-
427
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:71
428
- msgid "Description"
429
- msgstr "Description"
430
-
431
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:80
432
- msgid "Image Attributes"
433
- msgstr "Attributs de l'image"
434
-
435
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:83
436
- msgid "Alternate Text:"
437
- msgstr "Texte alternatif"
438
-
439
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:87
440
- msgid "Title Text:"
441
- msgstr "Titre"
442
-
443
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
444
- msgid "Slide Transition Effects"
445
- msgstr "Effets de transition"
446
-
447
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:97
448
- msgid "Disable"
449
- msgstr "Désactivé"
450
-
451
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:98
452
- msgid "Enable Slide Effects"
453
- msgstr "Permettre les effets de transition"
454
-
455
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:104
456
- msgid "Transition Effects:"
457
- msgstr "Effets de transition"
458
-
459
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:115
460
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
461
- msgid "Transition Effects Speed:"
462
- msgstr "Temps de l'effet de transtion"
463
-
464
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
465
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:124
466
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
467
- msgid "Milliseconds"
468
- msgstr "Millisecondes"
469
-
470
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:122
471
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
472
- msgid "Next Slide Delay:"
473
- msgstr "Temps avant la prochaine diapo"
474
-
475
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:132
476
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
477
- msgid "Tile Count:"
478
- msgstr "Nombre de carreaux"
479
-
480
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:134
481
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
482
- msgid "The number of tiles to use in the transition."
483
- msgstr "Nombre de carreaux à utiliser pour les transitions"
484
-
485
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:138
486
- msgid "Tile Delay:"
487
- msgstr "Délais"
488
-
489
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:140
490
- msgid "Milliseconds to delay each individual tile transition."
491
- msgstr "Delais de transition en millisecondes"
492
-
493
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:144
494
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
495
- msgid "Tile Position:"
496
- msgstr "Position"
497
-
498
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:146
499
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
500
- msgid "Vertical"
501
- msgstr "Vertical"
502
-
503
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:147
504
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
505
- msgid "Horizontal"
506
- msgstr "Horizontal"
507
-
508
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:159
509
- msgid "YouTube URL:"
510
- msgstr ""
511
-
512
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
513
- msgid "Copy and paste a valid YouTube URL here."
514
- msgstr ""
515
-
516
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:166
517
- #, fuzzy
518
- msgid "Vimeo URL:"
519
- msgstr "Lien vidéo"
520
-
521
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
522
- #, fuzzy
523
- msgid "Copy and paste a valid Vimeo URL here."
524
- msgstr "copier et coller un lien Youtube ou Vimeo"
525
-
526
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:180
527
- msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
528
- msgstr ""
529
-
530
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:191
531
- msgid "Video URL:"
532
- msgstr "Lien vidéo"
533
-
534
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:193
535
- msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
536
- msgstr "copier et coller un lien Youtube ou Vimeo"
537
-
538
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
539
- msgid "Get Video"
540
- msgstr "Modifier vidéo"
541
-
542
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:202
543
- msgid "Embed Code"
544
- msgstr "Code HTML"
545
-
546
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:204
547
- msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
548
- msgstr "Vous pouvez placer du code directement ici"
549
-
550
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:206
551
- msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
552
- msgstr "Note : les propriétés du diaporama ne sont pas supportés pour les vidéos"
553
-
554
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:208
555
- msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
556
- msgstr "Note : ajouter à l'attribut &wmode=transparent pour que les éléments HTML apparaissent au dessus de Flash."
557
-
558
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
559
- msgid "Allow Wrap?"
560
- msgstr ""
561
-
562
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
563
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
564
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
565
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:60
566
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:68
567
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:78
568
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:87
569
- msgid "Yes"
570
- msgstr "Oui"
571
-
572
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
573
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
574
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
575
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:61
576
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:69
577
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:77
578
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:86
579
- msgid "No"
580
- msgstr "Non"
581
-
582
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
583
- msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
584
- msgstr ""
585
-
586
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
587
- #, fuzzy
588
- msgid "Dynamic Height:"
589
- msgstr "Hauteur :"
590
-
591
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
592
- msgid "Off"
593
- msgstr ""
594
-
595
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
596
- msgid "On"
597
- msgstr ""
598
-
599
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
600
- msgid "Adjust slider height depending on current slide."
601
- msgstr ""
602
-
603
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
604
- #, fuzzy
605
- msgid "Delay:"
606
- msgstr "Délais"
607
-
608
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
609
- msgid "Milliseconds to add or substract from the time before the first transition occurs."
610
- msgstr ""
611
-
612
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
613
- msgid "Easing:"
614
- msgstr ""
615
-
616
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
617
- msgid "Easing for transition animations."
618
- msgstr ""
619
-
620
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
621
- msgid "Swipe:"
622
- msgstr ""
623
-
624
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
625
- msgid "Enable swipe gesture support for touch devices."
626
- msgstr ""
627
-
628
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
629
- #, fuzzy
630
- msgid "Resize Options:"
631
- msgstr "Description"
632
-
633
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
634
- msgid "Force Resize"
635
- msgstr ""
636
-
637
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
638
- msgid "Auto - Cyclone Slider decides the resize option."
639
- msgstr ""
640
-
641
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
642
- msgid "Crop - Resize and remove excess parts."
643
- msgstr ""
644
-
645
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
646
- msgid "Exact - Resize to exact dimensions."
647
- msgstr ""
648
-
649
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
650
- msgid "Landscape - Resize to exact width."
651
- msgstr ""
652
-
653
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
654
- msgid "Portrait - Resize to exact height."
655
- msgstr ""
656
-
657
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
658
- #, fuzzy
659
- msgid "Your Shortcode:"
660
- msgstr "Shortcode"
661
-
662
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
663
- msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
664
- msgstr ""
665
-
666
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
667
- msgid "Your PHP Code:"
668
- msgstr ""
669
-
670
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
671
- msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
672
- msgstr ""
673
-
674
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
675
- msgid "Change the Slideshow ID here."
676
- msgstr ""
677
-
678
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
679
- msgid "Your preview will appear here."
680
- msgstr ""
681
-
682
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
683
- msgid "Transition Effects to Use:"
684
- msgstr "Effet de transition à utiliser"
685
-
686
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
687
- msgid "Milliseconds. 0 to disable auto advance."
688
- msgstr "Millisecondes. 0 ou désactiver le défilement automatique"
689
-
690
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
691
- msgid "Width:"
692
- msgstr "Largeur :"
693
-
694
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
695
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
696
- msgid "pixels."
697
- msgstr "pixels."
698
-
699
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
700
- msgid "Height:"
701
- msgstr "Hauteur :"
702
-
703
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
704
- msgid "Pause on Hover?"
705
- msgstr "Pause au survol"
706
-
707
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
708
- msgid "Show Prev/Next Buttons?"
709
- msgstr "Afficher les boutons précédent et suivant ?"
710
-
711
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
712
- msgid "Show Navigation?"
713
- msgstr "Afficher la navigation ?"
714
-
715
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:71
716
- msgid "The thumbnails or dots depending on template."
717
- msgstr "Les miniatures dépendent du template"
718
-
719
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
720
- msgid "Resize Images?"
721
- msgstr "Retailler l'image ?"
722
-
723
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
724
- msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
725
- msgstr "Oui - Retailler les images à la dimension du diaporama. <br /> Non - utiliser la taille original de l'image importée"
726
-
727
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:84
728
- msgid "Random Slide Order?"
729
- msgstr "Ordre des diapos aléatoire ?"
730
-
731
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
732
- msgid "Randomize order of slides on every page visit."
733
- msgstr "Faire un ordre des diapos aléatoires sur chaque page visité"
734
-
735
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
736
- msgid "Add Slide"
737
- msgstr "Ajouter une diapo"
738
-
739
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
740
- msgid "Name"
741
- msgstr ""
742
-
743
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
744
- msgid "Supported Slides"
745
- msgstr ""
746
-
747
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
748
- #, fuzzy
749
- msgid "Selected"
750
- msgstr "Supprimer"
751
-
752
- #~ msgid "Slideshow Templates"
753
- #~ msgstr "Thèmes de diaporama"
754
-
755
- #~ msgid "Drag"
756
- #~ msgstr "Glisser"
757
-
758
- #~ msgid "Toggle"
759
- #~ msgstr "Basculer"
760
-
761
- #~ msgid "Custom"
762
- #~ msgstr "Personnalisé"
763
-
764
- #~ msgid ""
765
- #~ "Select a template to use. Check the template icons to see what slide type "
766
- #~ "it supports."
767
- #~ msgstr ""
768
- #~ "Choisissez le thème à utiliser. Vérifier les icônes du thème pour savoir "
769
- #~ "les options qu'il supporte."
770
-
771
- #~ msgid "Get more templates.."
772
- #~ msgstr "Plus de thèmes..."
773
-
774
- #~ msgid "Slideshow updated. Shortcode is [cycloneslider id=\"%s\"]"
775
- #~ msgstr "Diaporama mis à jours. Son shortcode est [cycloneslider id=\"%s\"]"
776
-
777
- #~ msgid "Slideshow published. Shortcode is [cycloneslider id=\"%s\"]"
778
- #~ msgstr "Diaporama publié. Son shortcode est [cycloneslider id=\"%s\"]"
779
-
780
- #~ msgid "Images"
781
- #~ msgstr "Images"
782
-
783
- #, fuzzy
784
- #~ msgid "Slide Elements:"
785
- #~ msgstr "Zusätzliche Gleitelemente:"
786
-
787
- #, fuzzy
788
- #~ msgid "Slide Effects"
789
- #~ msgstr "Slider-Einstellungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cyclone Slider\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-10 15:44+0800\n"
6
+ "PO-Revision-Date: 2013-10-10 15:47+0800\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;_x\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "Language: de_DE\n"
16
+ "X-Generator: Poedit 1.5.5\n"
17
+ "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp1\\wp-content\\plugins\\cyclone-slider-2\n"
18
+
19
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:121
20
+ #, fuzzy
21
+ msgid "Cyclone Slider Settings"
22
+ msgstr "Module de diaporama"
23
+
24
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
25
+ #, fuzzy
26
+ msgid "Settings"
27
+ msgstr "Réglages du diaporama"
28
+
29
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
30
+ msgid "Cyclone Slider"
31
+ msgstr "Diaporama"
32
+
33
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
34
+ msgid "Slideshow"
35
+ msgstr "Diaporama"
36
+
37
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
38
+ msgid "Add Slideshow"
39
+ msgstr "Ajoutez un diaporama"
40
+
41
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
42
+ msgid "Add New Slideshow"
43
+ msgstr "Ajouter un nouveau diaporama"
44
+
45
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
46
+ msgid "Edit Slideshow"
47
+ msgstr "Editer le diaporama"
48
+
49
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
50
+ msgid "New Slideshow"
51
+ msgstr "Nouveau diaporama"
52
+
53
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
54
+ msgid "View Slideshow"
55
+ msgstr "Voir le diaporama"
56
+
57
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
58
+ msgid "Search Slideshows"
59
+ msgstr "Rechercher des diaporamas"
60
+
61
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:104
62
+ msgid "No slideshows found"
63
+ msgstr "Pas de diaporama trouvé"
64
+
65
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:105
66
+ msgid "No slideshows found in Trash"
67
+ msgstr "Pas de diaporama trouvé"
68
+
69
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
70
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
71
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
72
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
73
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
74
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
75
+ msgid "Slideshow updated."
76
+ msgstr "Diaporama mis à jour"
77
+
78
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
79
+ msgid "Custom field updated."
80
+ msgstr "Champ mis à jours"
81
+
82
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
83
+ msgid "Custom field deleted."
84
+ msgstr "Champ supprimé"
85
+
86
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
87
+ #, fuzzy
88
+ msgid "Slideshow published."
89
+ msgstr "Diaporama sauvegardé"
90
+
91
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
92
+ msgid "Slideshow saved."
93
+ msgstr "Diaporama sauvegardé"
94
+
95
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:151
96
+ #, php-format
97
+ msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
98
+ msgstr "Thème CSS non sauvegardé. Assurez-vous que le fichier %stemplates.css puisse être modifié."
99
+
100
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:152
101
+ #, php-format
102
+ msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
103
+ msgstr "Thème JS non sauvegardé. Assurez-vous que le fichier %stemplates.js puisse être modifié."
104
+
105
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:186
106
+ msgid "Slides"
107
+ msgstr "Diapos"
108
+
109
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:195
110
+ #, fuzzy
111
+ msgid "Slider Preview"
112
+ msgstr "Propriétés de la diapo"
113
+
114
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:204
115
+ #, fuzzy
116
+ msgid "Get Slider Codes"
117
+ msgstr "Modifier vidéo"
118
+
119
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:213
120
+ #, fuzzy
121
+ msgid "Basic Settings"
122
+ msgstr "Réglages du diaporama"
123
+
124
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:222
125
+ #, fuzzy
126
+ msgid "Advanced Settings"
127
+ msgstr "Réglages du diaporama"
128
+
129
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:231
130
+ #, fuzzy
131
+ msgid "Templates"
132
+ msgstr "Thème"
133
+
134
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:240
135
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:508
136
+ msgid "Slideshow ID"
137
+ msgstr "Diaporama ID"
138
+
139
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:268
140
+ msgid "Slide"
141
+ msgstr "Diapo"
142
+
143
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:441
144
+ msgid "Slide *"
145
+ msgstr "Diapo *"
146
+
147
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:505
148
+ msgid "Slideshow Name"
149
+ msgstr "Nom du diaporama"
150
+
151
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:506
152
+ msgid "Template"
153
+ msgstr "Thème"
154
+
155
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:507
156
+ #, fuzzy
157
+ msgid "No. of Slides"
158
+ msgstr "Ajouter au diaporama"
159
+
160
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:509
161
+ msgid "Shortcode"
162
+ msgstr "Shortcode"
163
+
164
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
165
+ msgid "Select an image"
166
+ msgstr "Sélectionnez une image"
167
+
168
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
169
+ msgid "Add to Slide"
170
+ msgstr "Ajouter au diaporama"
171
+
172
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
173
+ msgid "Error. Make sure its a valid YouTube URL."
174
+ msgstr ""
175
+
176
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:62
177
+ msgid "Default options restored."
178
+ msgstr ""
179
+
180
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
181
+ msgid "Cyclone Slider Widget"
182
+ msgstr "Module de diaporama"
183
+
184
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
185
+ #, fuzzy
186
+ msgid "Widget for displaying sliders."
187
+ msgstr "Module pour afficher des diaporamas"
188
+
189
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:67
190
+ #, fuzzy
191
+ msgid "Title:"
192
+ msgstr "Titre"
193
+
194
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:81
195
+ #, fuzzy
196
+ msgid "Select a Slider:"
197
+ msgstr "Sélectionner un diaporama"
198
+
199
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:96
200
+ #, fuzzy
201
+ msgid "No sliders found."
202
+ msgstr "Aucuns diaporamas"
203
+
204
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
205
+ #, fuzzy, php-format
206
+ msgid "[Slideshow \"%s\" not found]"
207
+ msgstr "[Diaporama non trouvé]"
208
+
209
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:89
210
+ #, php-format
211
+ msgid "[Template \"%s\" not found]"
212
+ msgstr "[Thème \"%s\" non trouvé]"
213
+
214
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
215
+ msgid "NextGEN Integration"
216
+ msgstr "NextGEN Integration"
217
+
218
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
219
+ msgid "Choose a NextGEN Gallery"
220
+ msgstr "Choose a NextGEN Gallery"
221
+
222
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
223
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
224
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
225
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
226
+ msgid "Import"
227
+ msgstr "Importer"
228
+
229
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
230
+ msgid "Select a gallery to import images from. Images will be added as new slides."
231
+ msgstr "Selectionnez une galerie pour importer les images. Les images devront être ajoutées comme des nouvelles diapos "
232
+
233
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:43
234
+ msgid "View Larger Image"
235
+ msgstr ""
236
+
237
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:46
238
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:48
239
+ msgid "Learn More"
240
+ msgstr ""
241
+
242
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:62
243
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:66
244
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:70
245
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
246
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:62
247
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:66
248
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:70
249
+ #, fuzzy
250
+ msgid "Slide type not supported."
251
+ msgstr "Diaporama mis à jour"
252
+
253
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
254
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
255
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
256
+ #, fuzzy
257
+ msgid "Export"
258
+ msgstr "Importer"
259
+
260
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
261
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
262
+ #, fuzzy
263
+ msgid "Cyclone Slider Export"
264
+ msgstr "Diaporama"
265
+
266
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
267
+ #, fuzzy
268
+ msgid "Select sliders:"
269
+ msgstr "Sélectionner un diaporama"
270
+
271
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
272
+ msgid "Select All"
273
+ msgstr ""
274
+
275
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
276
+ #, fuzzy
277
+ msgid "No slider to export."
278
+ msgstr "Aucuns diaporamas"
279
+
280
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
281
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
282
+ msgid "Next"
283
+ msgstr ""
284
+
285
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
286
+ msgid "Your export file is ready. Click Download."
287
+ msgstr ""
288
+
289
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
290
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
291
+ msgid "Back"
292
+ msgstr ""
293
+
294
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
295
+ msgid "Download"
296
+ msgstr ""
297
+
298
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
299
+ #, fuzzy
300
+ msgid "Cyclone Slider Import"
301
+ msgstr "Diaporama"
302
+
303
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
304
+ msgid "Import Zip File:"
305
+ msgstr ""
306
+
307
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
308
+ msgid "Import operation success!"
309
+ msgstr ""
310
+
311
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:7
312
+ msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
313
+ msgstr ""
314
+
315
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:17
316
+ msgid "Load scripts in:"
317
+ msgstr ""
318
+
319
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:20
320
+ msgid "Header"
321
+ msgstr ""
322
+
323
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:21
324
+ msgid "Footer"
325
+ msgstr ""
326
+
327
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:26
328
+ msgid "Load these scripts:"
329
+ msgstr ""
330
+
331
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:31
332
+ msgid "Cycle 2. This is the core script needed by the plugin."
333
+ msgstr ""
334
+
335
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:36
336
+ msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
337
+ msgstr ""
338
+
339
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:41
340
+ msgid "Cycle 2 - Swipe. For touch swipe events."
341
+ msgstr ""
342
+
343
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:46
344
+ msgid "Cycle 2 - Tile. Used for tile transition effects."
345
+ msgstr ""
346
+
347
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:51
348
+ msgid "Cycle 2 - Video. Used by YouTube template."
349
+ msgstr ""
350
+
351
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
352
+ msgid "Magnific Popup - Enable lightbox option."
353
+ msgstr ""
354
+
355
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
356
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
357
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:2
358
+ msgid "Available in pro version."
359
+ msgstr ""
360
+
361
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
362
+ msgid "Easing - Enable easing options."
363
+ msgstr ""
364
+
365
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:66
366
+ msgid "Scripts loading priority:"
367
+ msgstr ""
368
+
369
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:69
370
+ msgid "Make this value bigger to load scripts last."
371
+ msgstr ""
372
+
373
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:73
374
+ #, fuzzy
375
+ msgid "Load these templates:"
376
+ msgstr "Thèmes de diaporama"
377
+
378
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:86
379
+ msgid "Save Options"
380
+ msgstr ""
381
+
382
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:87
383
+ msgid "Restore Defaults"
384
+ msgstr ""
385
+
386
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
387
+ msgid "Delete"
388
+ msgstr "Supprimer"
389
+
390
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
391
+ msgid "Image"
392
+ msgstr "Image"
393
+
394
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
395
+ msgid "YouTube"
396
+ msgstr ""
397
+
398
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
399
+ #, fuzzy
400
+ msgid "Vimeo"
401
+ msgstr "Vidéo"
402
+
403
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
404
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
405
+ msgid "Custom HTML"
406
+ msgstr "Code HTML personnalisé"
407
+
408
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
409
+ msgid "Video (Old Version)"
410
+ msgstr ""
411
+
412
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
413
+ msgid "Get Image"
414
+ msgstr "Importer une image"
415
+
416
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
417
+ msgid "Slide Properties:"
418
+ msgstr "Propriétés de la diapo"
419
+
420
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
421
+ msgid "Caption"
422
+ msgstr ""
423
+
424
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
425
+ #, fuzzy
426
+ msgid "Description:"
427
+ msgstr "Description"
428
+
429
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:59
430
+ msgid "Link"
431
+ msgstr "Lien"
432
+
433
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:62
434
+ msgid "Link URL:"
435
+ msgstr "Lien"
436
+
437
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:66
438
+ msgid "Open Link in:"
439
+ msgstr "Ouvrir le lien dans :"
440
+
441
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:68
442
+ msgid "Same Window"
443
+ msgstr "Même fenêtre"
444
+
445
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:69
446
+ msgid "New Tab or Window"
447
+ msgstr "Nouvel onglet ou fenêtre"
448
+
449
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:75
450
+ msgid "Image Attributes"
451
+ msgstr "Attributs de l'image"
452
+
453
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:78
454
+ msgid "Alternate Text:"
455
+ msgstr "Texte alternatif"
456
+
457
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:82
458
+ msgid "Title Text:"
459
+ msgstr "Titre"
460
+
461
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:88
462
+ msgid "Slide Transition Effects"
463
+ msgstr "Effets de transition"
464
+
465
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:92
466
+ msgid "Disable"
467
+ msgstr "Désactivé"
468
+
469
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
470
+ msgid "Enable Slide Effects"
471
+ msgstr "Permettre les effets de transition"
472
+
473
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:99
474
+ msgid "Transition Effects:"
475
+ msgstr "Effets de transition"
476
+
477
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:110
478
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
479
+ msgid "Transition Effects Speed:"
480
+ msgstr "Temps de l'effet de transtion"
481
+
482
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:112
483
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:119
484
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
485
+ msgid "Milliseconds"
486
+ msgstr "Millisecondes"
487
+
488
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
489
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
490
+ msgid "Next Slide Delay:"
491
+ msgstr "Temps avant la prochaine diapo"
492
+
493
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:127
494
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
495
+ msgid "Tile Count:"
496
+ msgstr "Nombre de carreaux"
497
+
498
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:129
499
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
500
+ msgid "The number of tiles to use in the transition."
501
+ msgstr "Nombre de carreaux à utiliser pour les transitions"
502
+
503
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:133
504
+ msgid "Tile Delay:"
505
+ msgstr "Délais"
506
+
507
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:135
508
+ msgid "Milliseconds to delay each individual tile transition."
509
+ msgstr "Delais de transition en millisecondes"
510
+
511
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:139
512
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
513
+ msgid "Tile Position:"
514
+ msgstr "Position"
515
+
516
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:141
517
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
518
+ msgid "Vertical"
519
+ msgstr "Vertical"
520
+
521
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:142
522
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
523
+ msgid "Horizontal"
524
+ msgstr "Horizontal"
525
+
526
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:154
527
+ msgid "YouTube URL:"
528
+ msgstr ""
529
+
530
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:156
531
+ msgid "Copy and paste a valid YouTube URL here."
532
+ msgstr ""
533
+
534
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
535
+ #, fuzzy
536
+ msgid "Vimeo URL:"
537
+ msgstr "Lien vidéo"
538
+
539
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:163
540
+ #, fuzzy
541
+ msgid "Copy and paste a valid Vimeo URL here."
542
+ msgstr "copier et coller un lien Youtube ou Vimeo"
543
+
544
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:175
545
+ msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
546
+ msgstr ""
547
+
548
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:186
549
+ msgid "Video URL:"
550
+ msgstr "Lien vidéo"
551
+
552
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:188
553
+ msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
554
+ msgstr "copier et coller un lien Youtube ou Vimeo"
555
+
556
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:192
557
+ msgid "Get Video"
558
+ msgstr "Modifier vidéo"
559
+
560
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
561
+ msgid "Embed Code"
562
+ msgstr "Code HTML"
563
+
564
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:199
565
+ msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
566
+ msgstr "Vous pouvez placer du code directement ici"
567
+
568
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:201
569
+ msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
570
+ msgstr "Note : les propriétés du diaporama ne sont pas supportés pour les vidéos"
571
+
572
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:203
573
+ msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
574
+ msgstr "Note : ajouter à l'attribut &wmode=transparent pour que les éléments HTML apparaissent au dessus de Flash."
575
+
576
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
577
+ msgid "Allow Wrap?"
578
+ msgstr ""
579
+
580
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
581
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
582
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
583
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:74
584
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:82
585
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:92
586
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:101
587
+ msgid "Yes"
588
+ msgstr "Oui"
589
+
590
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
591
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
592
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:67
593
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
594
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:83
595
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:91
596
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:100
597
+ msgid "No"
598
+ msgstr "Non"
599
+
600
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
601
+ msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
602
+ msgstr ""
603
+
604
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
605
+ #, fuzzy
606
+ msgid "Dynamic Height:"
607
+ msgstr "Hauteur :"
608
+
609
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
610
+ msgid "Off"
611
+ msgstr ""
612
+
613
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
614
+ msgid "On"
615
+ msgstr ""
616
+
617
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
618
+ msgid "Adjust slider height depending on current slide."
619
+ msgstr ""
620
+
621
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
622
+ #, fuzzy
623
+ msgid "Delay:"
624
+ msgstr "Délais"
625
+
626
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
627
+ msgid "Milliseconds to add or substract from the time before the first transition occurs."
628
+ msgstr ""
629
+
630
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
631
+ msgid "Easing:"
632
+ msgstr ""
633
+
634
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
635
+ msgid "Easing for transition animations."
636
+ msgstr ""
637
+
638
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
639
+ msgid "Swipe:"
640
+ msgstr ""
641
+
642
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
643
+ msgid "Enable swipe gesture support for touch devices."
644
+ msgstr ""
645
+
646
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
647
+ #, fuzzy
648
+ msgid "Resize Options:"
649
+ msgstr "Description"
650
+
651
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
652
+ msgid "Force Resize"
653
+ msgstr ""
654
+
655
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
656
+ msgid "Auto - Cyclone Slider decides the resize option."
657
+ msgstr ""
658
+
659
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
660
+ msgid "Crop - Resize and remove excess parts."
661
+ msgstr ""
662
+
663
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
664
+ msgid "Exact - Resize to exact dimensions."
665
+ msgstr ""
666
+
667
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
668
+ msgid "Landscape - Resize to exact width."
669
+ msgstr ""
670
+
671
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
672
+ msgid "Portrait - Resize to exact height."
673
+ msgstr ""
674
+
675
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
676
+ #, fuzzy
677
+ msgid "Your Shortcode:"
678
+ msgstr "Shortcode"
679
+
680
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
681
+ msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
682
+ msgstr ""
683
+
684
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
685
+ msgid "Your PHP Code:"
686
+ msgstr ""
687
+
688
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
689
+ msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
690
+ msgstr ""
691
+
692
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
693
+ msgid "Change the Slideshow ID here."
694
+ msgstr ""
695
+
696
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
697
+ msgid "Your preview will appear here."
698
+ msgstr ""
699
+
700
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
701
+ msgid "Transition Effects to Use:"
702
+ msgstr "Effet de transition à utiliser"
703
+
704
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
705
+ msgid "Milliseconds. 0 to disable auto advance."
706
+ msgstr "Millisecondes. 0 ou désactiver le défilement automatique"
707
+
708
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
709
+ msgid "Width:"
710
+ msgstr "Largeur :"
711
+
712
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
713
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
714
+ msgid "pixels."
715
+ msgstr "pixels."
716
+
717
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
718
+ msgid "Height:"
719
+ msgstr "Hauteur :"
720
+
721
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
722
+ msgid "Width Management:"
723
+ msgstr ""
724
+
725
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
726
+ msgid "Responsive"
727
+ msgstr ""
728
+
729
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
730
+ msgid "Full"
731
+ msgstr ""
732
+
733
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:54
734
+ msgid "Fixed"
735
+ msgstr ""
736
+
737
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:57
738
+ msgid "Responsive - resizes to smaller size but maximum width will be equal to the provided width."
739
+ msgstr ""
740
+
741
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
742
+ msgid "Full - the same as responsive but maximum width will be equal to its container ignoring the provided width."
743
+ msgstr ""
744
+
745
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:59
746
+ msgid "Fixed - width and height are not resized."
747
+ msgstr ""
748
+
749
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:64
750
+ msgid "Pause on Hover?"
751
+ msgstr "Pause au survol"
752
+
753
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:72
754
+ msgid "Show Prev/Next Buttons?"
755
+ msgstr "Afficher les boutons précédent et suivant ?"
756
+
757
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
758
+ msgid "Show Navigation?"
759
+ msgstr "Afficher la navigation ?"
760
+
761
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:85
762
+ msgid "The thumbnails or dots depending on template."
763
+ msgstr "Les miniatures dépendent du template"
764
+
765
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
766
+ msgid "Resize Images?"
767
+ msgstr "Retailler l'image ?"
768
+
769
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:94
770
+ msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
771
+ msgstr "Oui - Retailler les images à la dimension du diaporama. <br /> Non - utiliser la taille original de l'image importée"
772
+
773
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:98
774
+ msgid "Random Slide Order?"
775
+ msgstr "Ordre des diapos aléatoire ?"
776
+
777
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:103
778
+ msgid "Randomize order of slides on every page visit."
779
+ msgstr "Faire un ordre des diapos aléatoires sur chaque page visité"
780
+
781
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
782
+ msgid "Add Slide"
783
+ msgstr "Ajouter une diapo"
784
+
785
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
786
+ msgid "Name"
787
+ msgstr ""
788
+
789
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
790
+ msgid "Supported Slides"
791
+ msgstr ""
792
+
793
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
794
+ #, fuzzy
795
+ msgid "Selected"
796
+ msgstr "Supprimer"
797
+
798
+ #~ msgid "Drag"
799
+ #~ msgstr "Glisser"
800
+
801
+ #~ msgid "Toggle"
802
+ #~ msgstr "Basculer"
803
+
804
+ #~ msgid "Custom"
805
+ #~ msgstr "Personnalisé"
806
+
807
+ #~ msgid ""
808
+ #~ "Select a template to use. Check the template icons to see what slide type "
809
+ #~ "it supports."
810
+ #~ msgstr ""
811
+ #~ "Choisissez le thème à utiliser. Vérifier les icônes du thème pour savoir "
812
+ #~ "les options qu'il supporte."
813
+
814
+ #~ msgid "Get more templates.."
815
+ #~ msgstr "Plus de thèmes..."
816
+
817
+ #~ msgid "Slideshow updated. Shortcode is [cycloneslider id=\"%s\"]"
818
+ #~ msgstr "Diaporama mis à jours. Son shortcode est [cycloneslider id=\"%s\"]"
819
+
820
+ #~ msgid "Slideshow published. Shortcode is [cycloneslider id=\"%s\"]"
821
+ #~ msgstr "Diaporama publié. Son shortcode est [cycloneslider id=\"%s\"]"
822
+
823
+ #~ msgid "Images"
824
+ #~ msgstr "Images"
825
+
826
+ #, fuzzy
827
+ #~ msgid "Slide Elements:"
828
+ #~ msgstr "Zusätzliche Gleitelemente:"
829
+
830
+ #, fuzzy
831
+ #~ msgid "Slide Effects"
832
+ #~ msgstr "Slider-Einstellungen"
lang/cycloneslider-it_IT.mo CHANGED
Binary file
lang/cycloneslider-it_IT.po CHANGED
@@ -1,789 +1,832 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Cyclone Slider\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-19 09:37+0800\n"
6
- "PO-Revision-Date: 2013-09-19 11:45+0800\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Max Guglielmino <info@maxguglielmino.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-Language: Italian\n"
16
- "X-Poedit-Country: ITALY\n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
21
- #, fuzzy
22
- msgid "Cyclone Slider Settings"
23
- msgstr "Cyclone Slider Widget"
24
-
25
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:123
26
- #, fuzzy
27
- msgid "Settings"
28
- msgstr "Impostazioni Proiettore"
29
-
30
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:94
31
- msgid "Cyclone Slider"
32
- msgstr "Cyclone Slider"
33
-
34
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:95
35
- msgid "Slideshow"
36
- msgstr "Proiettore"
37
-
38
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
39
- msgid "Add Slideshow"
40
- msgstr "Aggiungi Proiettore"
41
-
42
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
43
- msgid "Add New Slideshow"
44
- msgstr "Aggiungi Nuovo Proiettore"
45
-
46
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
47
- msgid "Edit Slideshow"
48
- msgstr "Modifica Proiettore"
49
-
50
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
51
- msgid "New Slideshow"
52
- msgstr "Nuovo Proiettore"
53
-
54
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
55
- msgid "View Slideshow"
56
- msgstr "Visualizza Proiettore"
57
-
58
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
59
- msgid "Search Slideshows"
60
- msgstr "Cerca Proiettori"
61
-
62
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
63
- msgid "No slideshows found"
64
- msgstr "Nessun proiettore trovato"
65
-
66
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
67
- msgid "No slideshows found in Trash"
68
- msgstr "Nessun proiettore trovato nel cestino"
69
-
70
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:139
71
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
72
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
73
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
74
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
75
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
76
- msgid "Slideshow updated."
77
- msgstr "Proiettore aggiornato."
78
-
79
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:140
80
- msgid "Custom field updated."
81
- msgstr "Campo personalizzato aggiornato."
82
-
83
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
84
- msgid "Custom field deleted."
85
- msgstr "Campo personalizzato cancellato."
86
-
87
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
88
- #, fuzzy
89
- msgid "Slideshow published."
90
- msgstr "Proiettore salvato."
91
-
92
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
93
- msgid "Slideshow saved."
94
- msgstr "Proiettore salvato."
95
-
96
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
97
- #, php-format
98
- msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
99
- msgstr "Non è stato possibile salvare il modello CSS. Assicurarsi che %stemplates.css sia scrivibile."
100
-
101
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
102
- #, php-format
103
- msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
104
- msgstr "Non è stato possibile salvare il modello JS. Assicurarsi che %stemplates.js sia scrivibile."
105
-
106
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:184
107
- msgid "Slides"
108
- msgstr "Diapositive"
109
-
110
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:193
111
- #, fuzzy
112
- msgid "Slider Preview"
113
- msgstr "Proprietà Diapositiva:"
114
-
115
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:202
116
- #, fuzzy
117
- msgid "Get Slider Codes"
118
- msgstr "Prendi Video"
119
-
120
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:211
121
- #, fuzzy
122
- msgid "Basic Settings"
123
- msgstr "Impostazioni Proiettore"
124
-
125
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:220
126
- #, fuzzy
127
- msgid "Advanced Settings"
128
- msgstr "Impostazioni Proiettore"
129
-
130
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:229
131
- #, fuzzy
132
- msgid "Templates"
133
- msgstr "Modello"
134
-
135
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:238
136
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:502
137
- msgid "Slideshow ID"
138
- msgstr "ID Proiettore"
139
-
140
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:266
141
- msgid "Slide"
142
- msgstr "Diapositiva"
143
-
144
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:435
145
- msgid "Slide *"
146
- msgstr "Diapositiva *"
147
-
148
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:499
149
- msgid "Slideshow Name"
150
- msgstr "Nome Proiettore"
151
-
152
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:500
153
- msgid "Template"
154
- msgstr "Modello"
155
-
156
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:501
157
- #, fuzzy
158
- msgid "No. of Slides"
159
- msgstr "Aggiungi alla Diapositiva"
160
-
161
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:503
162
- msgid "Shortcode"
163
- msgstr "Shortcode"
164
-
165
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
166
- msgid "Select an image"
167
- msgstr "Seleziona una immagine"
168
-
169
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
170
- msgid "Add to Slide"
171
- msgstr "Aggiungi alla Diapositiva"
172
-
173
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
174
- msgid "Error. Make sure its a valid YouTube URL."
175
- msgstr ""
176
-
177
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:17
178
- msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
179
- msgstr ""
180
-
181
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:30
182
- msgid "Load scripts in:"
183
- msgstr ""
184
-
185
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:33
186
- msgid "Header"
187
- msgstr ""
188
-
189
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:34
190
- msgid "Footer"
191
- msgstr ""
192
-
193
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:39
194
- msgid "Load these scripts:"
195
- msgstr ""
196
-
197
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:44
198
- msgid "Cycle 2. This is the core script needed by the plugin."
199
- msgstr ""
200
-
201
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:49
202
- msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
203
- msgstr ""
204
-
205
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:54
206
- msgid "Cycle 2 - Swipe. For touch swipe events."
207
- msgstr ""
208
-
209
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:59
210
- msgid "Cycle 2 - Tile. Used for tile transition effects."
211
- msgstr ""
212
-
213
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:64
214
- msgid "Cycle 2 - Video. Used by YouTube template."
215
- msgstr ""
216
-
217
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
218
- msgid "Magnific Popup - Enable lightbox option."
219
- msgstr ""
220
-
221
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
222
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
223
- msgid "Available in pro version."
224
- msgstr ""
225
-
226
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
227
- msgid "Easing - Enable easing options."
228
- msgstr ""
229
-
230
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:79
231
- msgid "Scripts loading priority:"
232
- msgstr ""
233
-
234
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:82
235
- msgid "Make this value bigger to load scripts last."
236
- msgstr ""
237
-
238
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:87
239
- msgid "Save Options"
240
- msgstr ""
241
-
242
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:88
243
- msgid "Restore Defaults"
244
- msgstr ""
245
-
246
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:105
247
- msgid "Default options restored."
248
- msgstr ""
249
-
250
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
251
- msgid "Cyclone Slider Widget"
252
- msgstr "Cyclone Slider Widget"
253
-
254
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
255
- msgid "Widget for displaying slideshows."
256
- msgstr "Widget per mostrare i Proiettori realizzati con Cyclone Slider."
257
-
258
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:62
259
- msgid "Select a Slideshow:"
260
- msgstr "Seleziona un Proiettore:"
261
-
262
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:77
263
- msgid "No slideshows found."
264
- msgstr "Nessun proiettore trovato."
265
-
266
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:55
267
- #, php-format
268
- msgid "[Slideshow \"%s\" not found]"
269
- msgstr "[Proiettore \"%s\" non trovato]"
270
-
271
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:67
272
- #, php-format
273
- msgid "[Template \"%s\" not found]"
274
- msgstr "[Modello \"%s\" non trovato]"
275
-
276
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
277
- msgid "NextGEN Integration"
278
- msgstr "Integrazione NextGEN"
279
-
280
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
281
- msgid "Choose a NextGEN Gallery"
282
- msgstr "Scegli una Galleria NextGEN"
283
-
284
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
285
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
286
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
287
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
288
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:7
289
- msgid "Import"
290
- msgstr "Importa"
291
-
292
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
293
- msgid "Select a gallery to import images from. Images will be added as new slides."
294
- msgstr "Seleziona una galleria da cui importare le immagini. Le immagini verranno aggiunte come nuove diapositive."
295
-
296
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:55
297
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:59
298
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:63
299
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:63
300
- #, fuzzy
301
- msgid "Slide type not supported."
302
- msgstr "Proiettore aggiornato."
303
-
304
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
305
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
306
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
307
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:6
308
- #, fuzzy
309
- msgid "Export"
310
- msgstr "Importa"
311
-
312
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
313
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
314
- #, fuzzy
315
- msgid "Cyclone Slider Export"
316
- msgstr "Cyclone Slider"
317
-
318
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
319
- #, fuzzy
320
- msgid "Select sliders:"
321
- msgstr "Seleziona un Proiettore:"
322
-
323
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
324
- msgid "Select All"
325
- msgstr ""
326
-
327
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
328
- #, fuzzy
329
- msgid "No slider to export."
330
- msgstr "Nessun proiettore trovato."
331
-
332
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
333
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
334
- msgid "Next"
335
- msgstr ""
336
-
337
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
338
- msgid "Your export file is ready. Click Download."
339
- msgstr ""
340
-
341
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
342
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
343
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:18
344
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:26
345
- msgid "Back"
346
- msgstr ""
347
-
348
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
349
- msgid "Download"
350
- msgstr ""
351
-
352
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
353
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:9
354
- #, fuzzy
355
- msgid "Cyclone Slider Import"
356
- msgstr "Cyclone Slider"
357
-
358
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
359
- msgid "Import Zip File:"
360
- msgstr ""
361
-
362
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
363
- msgid "Import operation success!"
364
- msgstr ""
365
-
366
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
367
- msgid "Delete"
368
- msgstr "Cancella"
369
-
370
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
371
- msgid "Image"
372
- msgstr "Immagine"
373
-
374
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
375
- msgid "YouTube"
376
- msgstr ""
377
-
378
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
379
- #, fuzzy
380
- msgid "Vimeo"
381
- msgstr "Video"
382
-
383
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
384
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:173
385
- msgid "Custom HTML"
386
- msgstr "HTML Personalizzato"
387
-
388
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
389
- msgid "Video (Old Version)"
390
- msgstr ""
391
-
392
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
393
- msgid "Get Image"
394
- msgstr "Prendi Immagine"
395
-
396
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
397
- msgid "Slide Properties:"
398
- msgstr "Proprietà Diapositiva:"
399
-
400
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
401
- msgid "Link"
402
- msgstr "Link"
403
-
404
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:49
405
- msgid "Link URL:"
406
- msgstr "URL Link:"
407
-
408
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
409
- msgid "Open Link in:"
410
- msgstr "Apri il link:"
411
-
412
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:55
413
- msgid "Same Window"
414
- msgstr "Stessa Finestra"
415
-
416
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:56
417
- msgid "New Tab or Window"
418
- msgstr "Nuova Scheda o Finestra"
419
-
420
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:57
421
- msgid "Lightbox"
422
- msgstr ""
423
-
424
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:63
425
- msgid "Title"
426
- msgstr "Titolo"
427
-
428
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:71
429
- msgid "Description"
430
- msgstr "Descrizione"
431
-
432
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:80
433
- msgid "Image Attributes"
434
- msgstr "Attributi Immagine"
435
-
436
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:83
437
- msgid "Alternate Text:"
438
- msgstr "Testo Alternativo:"
439
-
440
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:87
441
- msgid "Title Text:"
442
- msgstr "Testo Titolo:"
443
-
444
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
445
- msgid "Slide Transition Effects"
446
- msgstr "Effetti Transizione Diapositiva"
447
-
448
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:97
449
- msgid "Disable"
450
- msgstr "Disabilita"
451
-
452
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:98
453
- msgid "Enable Slide Effects"
454
- msgstr "Abilita Effetti"
455
-
456
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:104
457
- msgid "Transition Effects:"
458
- msgstr "Effetti Transizione:"
459
-
460
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:115
461
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
462
- msgid "Transition Effects Speed:"
463
- msgstr "Velocità Effetti Transizione:"
464
-
465
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
466
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:124
467
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
468
- msgid "Milliseconds"
469
- msgstr "Millisecondi"
470
-
471
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:122
472
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
473
- msgid "Next Slide Delay:"
474
- msgstr "Ritardo Diapositiva Successiva:"
475
-
476
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:132
477
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
478
- msgid "Tile Count:"
479
- msgstr "Conteggio Riquadri"
480
-
481
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:134
482
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
483
- msgid "The number of tiles to use in the transition."
484
- msgstr "Numero di riquadri da usare nella transizione."
485
-
486
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:138
487
- msgid "Tile Delay:"
488
- msgstr "Ritardo Riquadri:"
489
-
490
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:140
491
- msgid "Milliseconds to delay each individual tile transition."
492
- msgstr "I millisecondi per ogni transizione individuale dei riquadri."
493
-
494
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:144
495
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
496
- msgid "Tile Position:"
497
- msgstr "Posizione Riquadro:"
498
-
499
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:146
500
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
501
- msgid "Vertical"
502
- msgstr "Verticale"
503
-
504
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:147
505
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
506
- msgid "Horizontal"
507
- msgstr "Orizzontale"
508
-
509
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:159
510
- msgid "YouTube URL:"
511
- msgstr ""
512
-
513
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
514
- msgid "Copy and paste a valid YouTube URL here."
515
- msgstr ""
516
-
517
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:166
518
- #, fuzzy
519
- msgid "Vimeo URL:"
520
- msgstr "URL Video:"
521
-
522
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
523
- #, fuzzy
524
- msgid "Copy and paste a valid Vimeo URL here."
525
- msgstr "Copia e incolla un URL di YouTube o Vimeo e clicca il pulsante Prendi Video."
526
-
527
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:180
528
- msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
529
- msgstr ""
530
-
531
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:191
532
- msgid "Video URL:"
533
- msgstr "URL Video:"
534
-
535
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:193
536
- msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
537
- msgstr "Copia e incolla un URL di YouTube o Vimeo e clicca il pulsante Prendi Video."
538
-
539
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
540
- msgid "Get Video"
541
- msgstr "Prendi Video"
542
-
543
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:202
544
- msgid "Embed Code"
545
- msgstr "Codice Embed"
546
-
547
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:204
548
- msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
549
- msgstr "Puoi piazzare il tuo codice embed direttamente qui. Oppure puoi usare il pulsante Prendi Video per generare il codice embed."
550
-
551
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:206
552
- msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
553
- msgstr "<strong>Nota:</strong> Le Proprietà e gli Effetti delle diapositive non sono supportate per i video."
554
-
555
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:208
556
- msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
557
- msgstr "<strong>Nota:</strong> Aggiungi &wmode=transparent all'attributo src del codice embedper fare apparire gli elementi HTML sopra il formato Flash."
558
-
559
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
560
- msgid "Allow Wrap?"
561
- msgstr ""
562
-
563
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
564
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
565
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
566
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:60
567
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:68
568
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:78
569
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:87
570
- msgid "Yes"
571
- msgstr "Si"
572
-
573
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
574
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
575
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
576
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:61
577
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:69
578
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:77
579
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:86
580
- msgid "No"
581
- msgstr "No"
582
-
583
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
584
- msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
585
- msgstr ""
586
-
587
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
588
- #, fuzzy
589
- msgid "Dynamic Height:"
590
- msgstr "Altezza:"
591
-
592
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
593
- msgid "Off"
594
- msgstr ""
595
-
596
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
597
- msgid "On"
598
- msgstr ""
599
-
600
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
601
- msgid "Adjust slider height depending on current slide."
602
- msgstr ""
603
-
604
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
605
- #, fuzzy
606
- msgid "Delay:"
607
- msgstr "Ritardo Riquadri:"
608
-
609
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
610
- msgid "Milliseconds to add or substract from the time before the first transition occurs."
611
- msgstr ""
612
-
613
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
614
- msgid "Easing:"
615
- msgstr ""
616
-
617
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
618
- msgid "Easing for transition animations."
619
- msgstr ""
620
-
621
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
622
- msgid "Swipe:"
623
- msgstr ""
624
-
625
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
626
- msgid "Enable swipe gesture support for touch devices."
627
- msgstr ""
628
-
629
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
630
- #, fuzzy
631
- msgid "Resize Options:"
632
- msgstr "Descrizione"
633
-
634
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
635
- msgid "Force Resize"
636
- msgstr ""
637
-
638
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
639
- msgid "Auto - Cyclone Slider decides the resize option."
640
- msgstr ""
641
-
642
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
643
- msgid "Crop - Resize and remove excess parts."
644
- msgstr ""
645
-
646
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
647
- msgid "Exact - Resize to exact dimensions."
648
- msgstr ""
649
-
650
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
651
- msgid "Landscape - Resize to exact width."
652
- msgstr ""
653
-
654
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
655
- msgid "Portrait - Resize to exact height."
656
- msgstr ""
657
-
658
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
659
- #, fuzzy
660
- msgid "Your Shortcode:"
661
- msgstr "Shortcode"
662
-
663
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
664
- msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
665
- msgstr ""
666
-
667
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
668
- msgid "Your PHP Code:"
669
- msgstr ""
670
-
671
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
672
- msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
673
- msgstr ""
674
-
675
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
676
- msgid "Change the Slideshow ID here."
677
- msgstr ""
678
-
679
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
680
- msgid "Your preview will appear here."
681
- msgstr ""
682
-
683
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
684
- msgid "Transition Effects to Use:"
685
- msgstr "Effetti transizione da usare:"
686
-
687
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
688
- msgid "Milliseconds. 0 to disable auto advance."
689
- msgstr "Millisecondi. 0 per disabilitare auto-avanzamento."
690
-
691
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
692
- msgid "Width:"
693
- msgstr "Larghezza:"
694
-
695
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
696
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
697
- msgid "pixels."
698
- msgstr "pixels."
699
-
700
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
701
- msgid "Height:"
702
- msgstr "Altezza:"
703
-
704
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
705
- msgid "Pause on Hover?"
706
- msgstr "Pausa al passaggio del mouse?"
707
-
708
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
709
- msgid "Show Prev/Next Buttons?"
710
- msgstr "Mostra Pulsanti Prec./Succ.?"
711
-
712
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
713
- msgid "Show Navigation?"
714
- msgstr "Mostra Navigazione?"
715
-
716
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:71
717
- msgid "The thumbnails or dots depending on template."
718
- msgstr "Le miniature o i dischi a seconda del modello usato."
719
-
720
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
721
- msgid "Resize Images?"
722
- msgstr "Scala Immagini?"
723
-
724
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
725
- msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
726
- msgstr "Si - scala le immagini alle dimensioni del proiettore. <br>No - usa l'immagine originale caricata"
727
-
728
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:84
729
- msgid "Random Slide Order?"
730
- msgstr "Ordina le Diapositive a caso?"
731
-
732
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
733
- msgid "Randomize order of slides on every page visit."
734
- msgstr "Ordina a caso le diapositive ad ogni visita della pagina."
735
-
736
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
737
- msgid "Add Slide"
738
- msgstr "Aggiungi Diapositiva"
739
-
740
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
741
- msgid "Name"
742
- msgstr ""
743
-
744
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
745
- msgid "Supported Slides"
746
- msgstr ""
747
-
748
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
749
- #, fuzzy
750
- msgid "Selected"
751
- msgstr "Cancella"
752
-
753
- #~ msgid "Slideshow updated. Shortcode is [cycloneslider id=\"%s\"]"
754
- #~ msgstr "Proiettore aggiornato. Lo shortcode è [cycloneslider id=\"%s\"]"
755
-
756
- #~ msgid "Slideshow published. Shortcode is [cycloneslider id=\"%s\"]"
757
- #~ msgstr "Proiettore pubblicato. Lo shortcode è [cycloneslider id=\"%s\"]"
758
-
759
- #~ msgid "Slideshow Templates"
760
- #~ msgstr "Modelli Proiettore"
761
-
762
- #~ msgid "Images"
763
- #~ msgstr "Immagini"
764
-
765
- #~ msgid "Drag"
766
- #~ msgstr "Trascina"
767
-
768
- #~ msgid "Toggle"
769
- #~ msgstr "Attiva/Disattiva"
770
-
771
- #~ msgid "Custom"
772
- #~ msgstr "Personalizzato"
773
-
774
- #~ msgid ""
775
- #~ "Select a template to use. Check the template icons to see what slide type "
776
- #~ "it supports."
777
- #~ msgstr ""
778
- #~ "Seleziona un modello da usare. Controlla l'icona del modello per vedere "
779
- #~ "quale tipo supporta."
780
-
781
- #~ msgid ""
782
- #~ "Note: If you are looking for the Black, Blue or Myrtle, checkout this <a "
783
- #~ "href=\"%s\">post</a>."
784
- #~ msgstr ""
785
- #~ "Nota: Se cerchi per i modelli Black, Blue o Myrtle, controlla questo <a "
786
- #~ "href=\"%s\">articolo</a>."
787
-
788
- #~ msgid "Get more templates.."
789
- #~ msgstr "Ricevi più modelli..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Cyclone Slider\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-10 15:44+0800\n"
6
+ "PO-Revision-Date: 2013-10-10 15:47+0800\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: Max Guglielmino <info@maxguglielmino.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-Language: Italian\n"
16
+ "X-Poedit-Country: ITALY\n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
+ "X-Poedit-SearchPath-0: .\n"
19
+
20
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:121
21
+ #, fuzzy
22
+ msgid "Cyclone Slider Settings"
23
+ msgstr "Cyclone Slider Widget"
24
+
25
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
26
+ #, fuzzy
27
+ msgid "Settings"
28
+ msgstr "Impostazioni Proiettore"
29
+
30
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
31
+ msgid "Cyclone Slider"
32
+ msgstr "Cyclone Slider"
33
+
34
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
35
+ msgid "Slideshow"
36
+ msgstr "Proiettore"
37
+
38
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
39
+ msgid "Add Slideshow"
40
+ msgstr "Aggiungi Proiettore"
41
+
42
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
43
+ msgid "Add New Slideshow"
44
+ msgstr "Aggiungi Nuovo Proiettore"
45
+
46
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
47
+ msgid "Edit Slideshow"
48
+ msgstr "Modifica Proiettore"
49
+
50
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
51
+ msgid "New Slideshow"
52
+ msgstr "Nuovo Proiettore"
53
+
54
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
55
+ msgid "View Slideshow"
56
+ msgstr "Visualizza Proiettore"
57
+
58
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
59
+ msgid "Search Slideshows"
60
+ msgstr "Cerca Proiettori"
61
+
62
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:104
63
+ msgid "No slideshows found"
64
+ msgstr "Nessun proiettore trovato"
65
+
66
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:105
67
+ msgid "No slideshows found in Trash"
68
+ msgstr "Nessun proiettore trovato nel cestino"
69
+
70
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
71
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
72
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
73
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
74
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
75
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
76
+ msgid "Slideshow updated."
77
+ msgstr "Proiettore aggiornato."
78
+
79
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
80
+ msgid "Custom field updated."
81
+ msgstr "Campo personalizzato aggiornato."
82
+
83
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
84
+ msgid "Custom field deleted."
85
+ msgstr "Campo personalizzato cancellato."
86
+
87
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
88
+ #, fuzzy
89
+ msgid "Slideshow published."
90
+ msgstr "Proiettore salvato."
91
+
92
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
93
+ msgid "Slideshow saved."
94
+ msgstr "Proiettore salvato."
95
+
96
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:151
97
+ #, php-format
98
+ msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
99
+ msgstr "Non è stato possibile salvare il modello CSS. Assicurarsi che %stemplates.css sia scrivibile."
100
+
101
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:152
102
+ #, php-format
103
+ msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
104
+ msgstr "Non è stato possibile salvare il modello JS. Assicurarsi che %stemplates.js sia scrivibile."
105
+
106
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:186
107
+ msgid "Slides"
108
+ msgstr "Diapositive"
109
+
110
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:195
111
+ #, fuzzy
112
+ msgid "Slider Preview"
113
+ msgstr "Proprietà Diapositiva:"
114
+
115
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:204
116
+ #, fuzzy
117
+ msgid "Get Slider Codes"
118
+ msgstr "Prendi Video"
119
+
120
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:213
121
+ #, fuzzy
122
+ msgid "Basic Settings"
123
+ msgstr "Impostazioni Proiettore"
124
+
125
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:222
126
+ #, fuzzy
127
+ msgid "Advanced Settings"
128
+ msgstr "Impostazioni Proiettore"
129
+
130
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:231
131
+ #, fuzzy
132
+ msgid "Templates"
133
+ msgstr "Modello"
134
+
135
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:240
136
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:508
137
+ msgid "Slideshow ID"
138
+ msgstr "ID Proiettore"
139
+
140
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:268
141
+ msgid "Slide"
142
+ msgstr "Diapositiva"
143
+
144
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:441
145
+ msgid "Slide *"
146
+ msgstr "Diapositiva *"
147
+
148
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:505
149
+ msgid "Slideshow Name"
150
+ msgstr "Nome Proiettore"
151
+
152
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:506
153
+ msgid "Template"
154
+ msgstr "Modello"
155
+
156
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:507
157
+ #, fuzzy
158
+ msgid "No. of Slides"
159
+ msgstr "Aggiungi alla Diapositiva"
160
+
161
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:509
162
+ msgid "Shortcode"
163
+ msgstr "Shortcode"
164
+
165
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:52
166
+ msgid "Select an image"
167
+ msgstr "Seleziona una immagine"
168
+
169
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:53
170
+ msgid "Add to Slide"
171
+ msgstr "Aggiungi alla Diapositiva"
172
+
173
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-scripts.php:54
174
+ msgid "Error. Make sure its a valid YouTube URL."
175
+ msgstr ""
176
+
177
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:62
178
+ msgid "Default options restored."
179
+ msgstr ""
180
+
181
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:15
182
+ msgid "Cyclone Slider Widget"
183
+ msgstr "Cyclone Slider Widget"
184
+
185
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
186
+ #, fuzzy
187
+ msgid "Widget for displaying sliders."
188
+ msgstr "Widget per mostrare i Proiettori realizzati con Cyclone Slider."
189
+
190
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:67
191
+ #, fuzzy
192
+ msgid "Title:"
193
+ msgstr "Titolo"
194
+
195
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:81
196
+ #, fuzzy
197
+ msgid "Select a Slider:"
198
+ msgstr "Seleziona un Proiettore:"
199
+
200
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:96
201
+ #, fuzzy
202
+ msgid "No sliders found."
203
+ msgstr "Nessun proiettore trovato."
204
+
205
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
206
+ #, php-format
207
+ msgid "[Slideshow \"%s\" not found]"
208
+ msgstr "[Proiettore \"%s\" non trovato]"
209
+
210
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:89
211
+ #, php-format
212
+ msgid "[Template \"%s\" not found]"
213
+ msgstr "[Modello \"%s\" non trovato]"
214
+
215
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:37
216
+ msgid "NextGEN Integration"
217
+ msgstr "Integrazione NextGEN"
218
+
219
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:53
220
+ msgid "Choose a NextGEN Gallery"
221
+ msgstr "Scegli una Galleria NextGEN"
222
+
223
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:63
224
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:7
225
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:7
226
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:7
227
+ msgid "Import"
228
+ msgstr "Importa"
229
+
230
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-nextgen-integration.php:65
231
+ msgid "Select a gallery to import images from. Images will be added as new slides."
232
+ msgstr "Seleziona una galleria da cui importare le immagini. Le immagini verranno aggiunte come nuove diapositive."
233
+
234
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:43
235
+ msgid "View Larger Image"
236
+ msgstr ""
237
+
238
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:46
239
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/dark/slider.php:48
240
+ msgid "Learn More"
241
+ msgstr ""
242
+
243
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:62
244
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:66
245
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:70
246
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
247
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:62
248
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:66
249
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:70
250
+ #, fuzzy
251
+ msgid "Slide type not supported."
252
+ msgstr "Proiettore aggiornato."
253
+
254
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:6
255
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:6
256
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:6
257
+ #, fuzzy
258
+ msgid "Export"
259
+ msgstr "Importa"
260
+
261
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:9
262
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:9
263
+ #, fuzzy
264
+ msgid "Cyclone Slider Export"
265
+ msgstr "Cyclone Slider"
266
+
267
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:18
268
+ #, fuzzy
269
+ msgid "Select sliders:"
270
+ msgstr "Seleziona un Proiettore:"
271
+
272
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:24
273
+ msgid "Select All"
274
+ msgstr ""
275
+
276
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:37
277
+ #, fuzzy
278
+ msgid "No slider to export."
279
+ msgstr "Nessun proiettore trovato."
280
+
281
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-1.php:40
282
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:25
283
+ msgid "Next"
284
+ msgstr ""
285
+
286
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:16
287
+ msgid "Your export file is ready. Click Download."
288
+ msgstr ""
289
+
290
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:18
291
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:27
292
+ msgid "Back"
293
+ msgstr ""
294
+
295
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/export-step-2.php:19
296
+ msgid "Download"
297
+ msgstr ""
298
+
299
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:9
300
+ #, fuzzy
301
+ msgid "Cyclone Slider Import"
302
+ msgstr "Cyclone Slider"
303
+
304
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-1.php:18
305
+ msgid "Import Zip File:"
306
+ msgstr ""
307
+
308
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/import-step-2.php:16
309
+ msgid "Import operation success!"
310
+ msgstr ""
311
+
312
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:7
313
+ msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
314
+ msgstr ""
315
+
316
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:17
317
+ msgid "Load scripts in:"
318
+ msgstr ""
319
+
320
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:20
321
+ msgid "Header"
322
+ msgstr ""
323
+
324
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:21
325
+ msgid "Footer"
326
+ msgstr ""
327
+
328
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:26
329
+ msgid "Load these scripts:"
330
+ msgstr ""
331
+
332
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:31
333
+ msgid "Cycle 2. This is the core script needed by the plugin."
334
+ msgstr ""
335
+
336
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:36
337
+ msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
338
+ msgstr ""
339
+
340
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:41
341
+ msgid "Cycle 2 - Swipe. For touch swipe events."
342
+ msgstr ""
343
+
344
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:46
345
+ msgid "Cycle 2 - Tile. Used for tile transition effects."
346
+ msgstr ""
347
+
348
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:51
349
+ msgid "Cycle 2 - Video. Used by YouTube template."
350
+ msgstr ""
351
+
352
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
353
+ msgid "Magnific Popup - Enable lightbox option."
354
+ msgstr ""
355
+
356
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
357
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
358
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:2
359
+ msgid "Available in pro version."
360
+ msgstr ""
361
+
362
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
363
+ msgid "Easing - Enable easing options."
364
+ msgstr ""
365
+
366
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:66
367
+ msgid "Scripts loading priority:"
368
+ msgstr ""
369
+
370
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:69
371
+ msgid "Make this value bigger to load scripts last."
372
+ msgstr ""
373
+
374
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:73
375
+ #, fuzzy
376
+ msgid "Load these templates:"
377
+ msgstr "Modelli Proiettore"
378
+
379
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:86
380
+ msgid "Save Options"
381
+ msgstr ""
382
+
383
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:87
384
+ msgid "Restore Defaults"
385
+ msgstr ""
386
+
387
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
388
+ msgid "Delete"
389
+ msgstr "Cancella"
390
+
391
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:25
392
+ msgid "Image"
393
+ msgstr "Immagine"
394
+
395
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:26
396
+ msgid "YouTube"
397
+ msgstr ""
398
+
399
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:27
400
+ #, fuzzy
401
+ msgid "Vimeo"
402
+ msgstr "Video"
403
+
404
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:28
405
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:168
406
+ msgid "Custom HTML"
407
+ msgstr "HTML Personalizzato"
408
+
409
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:29
410
+ msgid "Video (Old Version)"
411
+ msgstr ""
412
+
413
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:41
414
+ msgid "Get Image"
415
+ msgstr "Prendi Immagine"
416
+
417
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:44
418
+ msgid "Slide Properties:"
419
+ msgstr "Proprietà Diapositiva:"
420
+
421
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:46
422
+ msgid "Caption"
423
+ msgstr ""
424
+
425
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
426
+ #, fuzzy
427
+ msgid "Description:"
428
+ msgstr "Descrizione"
429
+
430
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:59
431
+ msgid "Link"
432
+ msgstr "Link"
433
+
434
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:62
435
+ msgid "Link URL:"
436
+ msgstr "URL Link:"
437
+
438
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:66
439
+ msgid "Open Link in:"
440
+ msgstr "Apri il link:"
441
+
442
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:68
443
+ msgid "Same Window"
444
+ msgstr "Stessa Finestra"
445
+
446
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:69
447
+ msgid "New Tab or Window"
448
+ msgstr "Nuova Scheda o Finestra"
449
+
450
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:75
451
+ msgid "Image Attributes"
452
+ msgstr "Attributi Immagine"
453
+
454
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:78
455
+ msgid "Alternate Text:"
456
+ msgstr "Testo Alternativo:"
457
+
458
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:82
459
+ msgid "Title Text:"
460
+ msgstr "Testo Titolo:"
461
+
462
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:88
463
+ msgid "Slide Transition Effects"
464
+ msgstr "Effetti Transizione Diapositiva"
465
+
466
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:92
467
+ msgid "Disable"
468
+ msgstr "Disabilita"
469
+
470
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:93
471
+ msgid "Enable Slide Effects"
472
+ msgstr "Abilita Effetti"
473
+
474
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:99
475
+ msgid "Transition Effects:"
476
+ msgstr "Effetti Transizione:"
477
+
478
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:110
479
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:32
480
+ msgid "Transition Effects Speed:"
481
+ msgstr "Velocità Effetti Transizione:"
482
+
483
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:112
484
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:119
485
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:34
486
+ msgid "Milliseconds"
487
+ msgstr "Millisecondi"
488
+
489
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:117
490
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:26
491
+ msgid "Next Slide Delay:"
492
+ msgstr "Ritardo Diapositiva Successiva:"
493
+
494
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:127
495
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:13
496
+ msgid "Tile Count:"
497
+ msgstr "Conteggio Riquadri"
498
+
499
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:129
500
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:15
501
+ msgid "The number of tiles to use in the transition."
502
+ msgstr "Numero di riquadri da usare nella transizione."
503
+
504
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:133
505
+ msgid "Tile Delay:"
506
+ msgstr "Ritardo Riquadri:"
507
+
508
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:135
509
+ msgid "Milliseconds to delay each individual tile transition."
510
+ msgstr "I millisecondi per ogni transizione individuale dei riquadri."
511
+
512
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:139
513
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:18
514
+ msgid "Tile Position:"
515
+ msgstr "Posizione Riquadro:"
516
+
517
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:141
518
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:20
519
+ msgid "Vertical"
520
+ msgstr "Verticale"
521
+
522
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:142
523
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:21
524
+ msgid "Horizontal"
525
+ msgstr "Orizzontale"
526
+
527
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:154
528
+ msgid "YouTube URL:"
529
+ msgstr ""
530
+
531
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:156
532
+ msgid "Copy and paste a valid YouTube URL here."
533
+ msgstr ""
534
+
535
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:161
536
+ #, fuzzy
537
+ msgid "Vimeo URL:"
538
+ msgstr "URL Video:"
539
+
540
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:163
541
+ #, fuzzy
542
+ msgid "Copy and paste a valid Vimeo URL here."
543
+ msgstr "Copia e incolla un URL di YouTube o Vimeo e clicca il pulsante Prendi Video."
544
+
545
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:175
546
+ msgid "This video slide is problematic. Please consider using YouTube, Vimeo or Custom slide type for videos. This slide will be removed in the future and will be replaced with a better one."
547
+ msgstr ""
548
+
549
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:186
550
+ msgid "Video URL:"
551
+ msgstr "URL Video:"
552
+
553
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:188
554
+ msgid "Copy and paste a Youtube or Vimeo URL and hit the Get Video button."
555
+ msgstr "Copia e incolla un URL di YouTube o Vimeo e clicca il pulsante Prendi Video."
556
+
557
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:192
558
+ msgid "Get Video"
559
+ msgstr "Prendi Video"
560
+
561
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:197
562
+ msgid "Embed Code"
563
+ msgstr "Codice Embed"
564
+
565
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:199
566
+ msgid "You can place your embed code directly here. Or you can use the Get Video button to generate the embed code."
567
+ msgstr "Puoi piazzare il tuo codice embed direttamente qui. Oppure puoi usare il pulsante Prendi Video per generare il codice embed."
568
+
569
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:201
570
+ msgid "<strong>Note:</strong> The Slide Properties and Tile effects are not supported for videos."
571
+ msgstr "<strong>Nota:</strong> Le Proprietà e gli Effetti delle diapositive non sono supportate per i video."
572
+
573
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:203
574
+ msgid "<strong>Note:</strong> Append &wmode=transparent to the embed code src attribute to make HTML elements appear on top of Flash."
575
+ msgstr "<strong>Nota:</strong> Aggiungi &wmode=transparent all'attributo src del codice embedper fare apparire gli elementi HTML sopra il formato Flash."
576
+
577
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:4
578
+ msgid "Allow Wrap?"
579
+ msgstr ""
580
+
581
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:6
582
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:44
583
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:66
584
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:74
585
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:82
586
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:92
587
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:101
588
+ msgid "Yes"
589
+ msgstr "Si"
590
+
591
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:7
592
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:45
593
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:67
594
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:75
595
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:83
596
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:91
597
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:100
598
+ msgid "No"
599
+ msgstr "No"
600
+
601
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:10
602
+ msgid "Determines if slider wraps to beginning slide if it reaches the end slide."
603
+ msgstr ""
604
+
605
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:15
606
+ #, fuzzy
607
+ msgid "Dynamic Height:"
608
+ msgstr "Altezza:"
609
+
610
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:17
611
+ msgid "Off"
612
+ msgstr ""
613
+
614
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:18
615
+ msgid "On"
616
+ msgstr ""
617
+
618
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:21
619
+ msgid "Adjust slider height depending on current slide."
620
+ msgstr ""
621
+
622
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:26
623
+ #, fuzzy
624
+ msgid "Delay:"
625
+ msgstr "Ritardo Riquadri:"
626
+
627
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:28
628
+ msgid "Milliseconds to add or substract from the time before the first transition occurs."
629
+ msgstr ""
630
+
631
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:32
632
+ msgid "Easing:"
633
+ msgstr ""
634
+
635
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:38
636
+ msgid "Easing for transition animations."
637
+ msgstr ""
638
+
639
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:42
640
+ msgid "Swipe:"
641
+ msgstr ""
642
+
643
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:48
644
+ msgid "Enable swipe gesture support for touch devices."
645
+ msgstr ""
646
+
647
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:53
648
+ #, fuzzy
649
+ msgid "Resize Options:"
650
+ msgstr "Descrizione"
651
+
652
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:61
653
+ msgid "Force Resize"
654
+ msgstr ""
655
+
656
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:63
657
+ msgid "Auto - Cyclone Slider decides the resize option."
658
+ msgstr ""
659
+
660
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:64
661
+ msgid "Crop - Resize and remove excess parts."
662
+ msgstr ""
663
+
664
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:65
665
+ msgid "Exact - Resize to exact dimensions."
666
+ msgstr ""
667
+
668
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:66
669
+ msgid "Landscape - Resize to exact width."
670
+ msgstr ""
671
+
672
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:67
673
+ msgid "Portrait - Resize to exact height."
674
+ msgstr ""
675
+
676
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:4
677
+ #, fuzzy
678
+ msgid "Your Shortcode:"
679
+ msgstr "Shortcode"
680
+
681
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:6
682
+ msgid "Copy and paste this shortcode into your Post, Page or Custom Post editor."
683
+ msgstr ""
684
+
685
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:10
686
+ msgid "Your PHP Code:"
687
+ msgstr ""
688
+
689
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-codes.php:12
690
+ msgid "Copy and paste this code when you need to display the slider in template files (header.php, front-page.php, etc.)."
691
+ msgstr ""
692
+
693
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-id.php:5
694
+ msgid "Change the Slideshow ID here."
695
+ msgstr ""
696
+
697
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-preview.php:9
698
+ msgid "Your preview will appear here."
699
+ msgstr ""
700
+
701
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:4
702
+ msgid "Transition Effects to Use:"
703
+ msgstr "Effetti transizione da usare:"
704
+
705
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:28
706
+ msgid "Milliseconds. 0 to disable auto advance."
707
+ msgstr "Millisecondi. 0 per disabilitare auto-avanzamento."
708
+
709
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:38
710
+ msgid "Width:"
711
+ msgstr "Larghezza:"
712
+
713
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:40
714
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:46
715
+ msgid "pixels."
716
+ msgstr "pixels."
717
+
718
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:44
719
+ msgid "Height:"
720
+ msgstr "Altezza:"
721
+
722
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:50
723
+ msgid "Width Management:"
724
+ msgstr ""
725
+
726
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:52
727
+ msgid "Responsive"
728
+ msgstr ""
729
+
730
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:53
731
+ msgid "Full"
732
+ msgstr ""
733
+
734
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:54
735
+ msgid "Fixed"
736
+ msgstr ""
737
+
738
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:57
739
+ msgid "Responsive - resizes to smaller size but maximum width will be equal to the provided width."
740
+ msgstr ""
741
+
742
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:58
743
+ msgid "Full - the same as responsive but maximum width will be equal to its container ignoring the provided width."
744
+ msgstr ""
745
+
746
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:59
747
+ msgid "Fixed - width and height are not resized."
748
+ msgstr ""
749
+
750
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:64
751
+ msgid "Pause on Hover?"
752
+ msgstr "Pausa al passaggio del mouse?"
753
+
754
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:72
755
+ msgid "Show Prev/Next Buttons?"
756
+ msgstr "Mostra Pulsanti Prec./Succ.?"
757
+
758
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:80
759
+ msgid "Show Navigation?"
760
+ msgstr "Mostra Navigazione?"
761
+
762
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:85
763
+ msgid "The thumbnails or dots depending on template."
764
+ msgstr "Le miniature o i dischi a seconda del modello usato."
765
+
766
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:89
767
+ msgid "Resize Images?"
768
+ msgstr "Scala Immagini?"
769
+
770
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:94
771
+ msgid "Yes - resize images to slideshow dimension. <br>No - use the original uploaded image."
772
+ msgstr "Si - scala le immagini alle dimensioni del proiettore. <br>No - usa l'immagine originale caricata"
773
+
774
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:98
775
+ msgid "Random Slide Order?"
776
+ msgstr "Ordina le Diapositive a caso?"
777
+
778
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-properties.php:103
779
+ msgid "Randomize order of slides on every page visit."
780
+ msgstr "Ordina a caso le diapositive ad ogni visita della pagina."
781
+
782
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slides.php:8
783
+ msgid "Add Slide"
784
+ msgstr "Aggiungi Diapositiva"
785
+
786
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:4
787
+ msgid "Name"
788
+ msgstr ""
789
+
790
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:5
791
+ msgid "Supported Slides"
792
+ msgstr ""
793
+
794
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/template-selection.php:6
795
+ #, fuzzy
796
+ msgid "Selected"
797
+ msgstr "Cancella"
798
+
799
+ #~ msgid "Slideshow updated. Shortcode is [cycloneslider id=\"%s\"]"
800
+ #~ msgstr "Proiettore aggiornato. Lo shortcode è [cycloneslider id=\"%s\"]"
801
+
802
+ #~ msgid "Slideshow published. Shortcode is [cycloneslider id=\"%s\"]"
803
+ #~ msgstr "Proiettore pubblicato. Lo shortcode è [cycloneslider id=\"%s\"]"
804
+
805
+ #~ msgid "Images"
806
+ #~ msgstr "Immagini"
807
+
808
+ #~ msgid "Drag"
809
+ #~ msgstr "Trascina"
810
+
811
+ #~ msgid "Toggle"
812
+ #~ msgstr "Attiva/Disattiva"
813
+
814
+ #~ msgid "Custom"
815
+ #~ msgstr "Personalizzato"
816
+
817
+ #~ msgid ""
818
+ #~ "Select a template to use. Check the template icons to see what slide type "
819
+ #~ "it supports."
820
+ #~ msgstr ""
821
+ #~ "Seleziona un modello da usare. Controlla l'icona del modello per vedere "
822
+ #~ "quale tipo supporta."
823
+
824
+ #~ msgid ""
825
+ #~ "Note: If you are looking for the Black, Blue or Myrtle, checkout this <a "
826
+ #~ "href=\"%s\">post</a>."
827
+ #~ msgstr ""
828
+ #~ "Nota: Se cerchi per i modelli Black, Blue o Myrtle, controlla questo <a "
829
+ #~ "href=\"%s\">articolo</a>."
830
+
831
+ #~ msgid "Get more templates.."
832
+ #~ msgstr "Ricevi più modelli..."
lang/cycloneslider.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Cyclone Slider\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-09-23 21:08+0800\n"
6
- "PO-Revision-Date: 2013-09-23 21:08+0800\n"
7
  "Last-Translator: \n"
8
  "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,139 +16,139 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp_dev\\cyclone-slider-2\\wp-content\\plugins\\cyclone-slider-2\n"
18
 
19
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
20
  msgid "Cyclone Slider Settings"
21
  msgstr ""
22
 
23
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:123
24
  msgid "Settings"
25
  msgstr ""
26
 
27
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:94
28
  msgid "Cyclone Slider"
29
  msgstr ""
30
 
31
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:95
32
  msgid "Slideshow"
33
  msgstr ""
34
 
35
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
36
  msgid "Add Slideshow"
37
  msgstr ""
38
 
39
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
40
  msgid "Add New Slideshow"
41
  msgstr ""
42
 
43
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
44
  msgid "Edit Slideshow"
45
  msgstr ""
46
 
47
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
48
  msgid "New Slideshow"
49
  msgstr ""
50
 
51
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
52
  msgid "View Slideshow"
53
  msgstr ""
54
 
55
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
56
  msgid "Search Slideshows"
57
  msgstr ""
58
 
59
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
60
  msgid "No slideshows found"
61
  msgstr ""
62
 
63
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
64
  msgid "No slideshows found in Trash"
65
  msgstr ""
66
 
67
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:139
68
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
69
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
70
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
71
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
72
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
 
 
73
  msgid "Slideshow updated."
74
  msgstr ""
75
 
76
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:140
77
  msgid "Custom field updated."
78
  msgstr ""
79
 
80
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
81
  msgid "Custom field deleted."
82
  msgstr ""
83
 
84
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
85
  msgid "Slideshow published."
86
  msgstr ""
87
 
88
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
89
  msgid "Slideshow saved."
90
  msgstr ""
91
 
92
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
93
  #, php-format
94
  msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
95
  msgstr ""
96
 
97
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
98
  #, php-format
99
  msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
100
  msgstr ""
101
 
102
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:184
103
  msgid "Slides"
104
  msgstr ""
105
 
106
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:193
107
  msgid "Slider Preview"
108
  msgstr ""
109
 
110
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:202
111
  msgid "Get Slider Codes"
112
  msgstr ""
113
 
114
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:211
115
  msgid "Basic Settings"
116
  msgstr ""
117
 
118
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:220
119
  msgid "Advanced Settings"
120
  msgstr ""
121
 
122
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:229
123
  msgid "Templates"
124
  msgstr ""
125
 
126
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:238
127
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:502
128
  msgid "Slideshow ID"
129
  msgstr ""
130
 
131
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:266
132
  msgid "Slide"
133
  msgstr ""
134
 
135
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:435
136
  msgid "Slide *"
137
  msgstr ""
138
 
139
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:499
140
  msgid "Slideshow Name"
141
  msgstr ""
142
 
143
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:500
144
  msgid "Template"
145
  msgstr ""
146
 
147
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:501
148
  msgid "No. of Slides"
149
  msgstr ""
150
 
151
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:503
152
  msgid "Shortcode"
153
  msgstr ""
154
 
@@ -164,76 +164,7 @@ msgstr ""
164
  msgid "Error. Make sure its a valid YouTube URL."
165
  msgstr ""
166
 
167
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:17
168
- msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
169
- msgstr ""
170
-
171
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:30
172
- msgid "Load scripts in:"
173
- msgstr ""
174
-
175
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:33
176
- msgid "Header"
177
- msgstr ""
178
-
179
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:34
180
- msgid "Footer"
181
- msgstr ""
182
-
183
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:39
184
- msgid "Load these scripts:"
185
- msgstr ""
186
-
187
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:44
188
- msgid "Cycle 2. This is the core script needed by the plugin."
189
- msgstr ""
190
-
191
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:49
192
- msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
193
- msgstr ""
194
-
195
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:54
196
- msgid "Cycle 2 - Swipe. For touch swipe events."
197
- msgstr ""
198
-
199
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:59
200
- msgid "Cycle 2 - Tile. Used for tile transition effects."
201
- msgstr ""
202
-
203
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:64
204
- msgid "Cycle 2 - Video. Used by YouTube template."
205
- msgstr ""
206
-
207
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
208
- msgid "Magnific Popup - Enable lightbox option."
209
- msgstr ""
210
-
211
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:69
212
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
213
- msgid "Available in pro version."
214
- msgstr ""
215
-
216
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:74
217
- msgid "Easing - Enable easing options."
218
- msgstr ""
219
-
220
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:79
221
- msgid "Scripts loading priority:"
222
- msgstr ""
223
-
224
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:82
225
- msgid "Make this value bigger to load scripts last."
226
- msgstr ""
227
-
228
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:87
229
- msgid "Save Options"
230
- msgstr ""
231
-
232
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:88
233
- msgid "Restore Defaults"
234
- msgstr ""
235
-
236
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:105
237
  msgid "Default options restored."
238
  msgstr ""
239
 
@@ -242,15 +173,19 @@ msgid "Cyclone Slider Widget"
242
  msgstr ""
243
 
244
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
245
- msgid "Widget for displaying slideshows."
246
  msgstr ""
247
 
248
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:62
249
- msgid "Select a Slideshow:"
250
  msgstr ""
251
 
252
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:77
253
- msgid "No slideshows found."
 
 
 
 
254
  msgstr ""
255
 
256
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
@@ -291,10 +226,13 @@ msgstr ""
291
  msgid "Learn More"
292
  msgstr ""
293
 
294
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:59
295
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:63
296
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:67
297
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
 
 
 
298
  msgid "Slide type not supported."
299
  msgstr ""
300
 
@@ -351,6 +289,80 @@ msgstr ""
351
  msgid "Import operation success!"
352
  msgstr ""
353
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
354
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
355
  msgid "Delete"
356
  msgstr ""
@@ -388,10 +400,6 @@ msgstr ""
388
  msgid "Caption"
389
  msgstr ""
390
 
391
- #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:49
392
- msgid "Title:"
393
- msgstr ""
394
-
395
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
396
  msgid "Description:"
397
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Cyclone Slider\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-10-10 15:44+0800\n"
6
+ "PO-Revision-Date: 2013-10-10 15:44+0800\n"
7
  "Last-Translator: \n"
8
  "Language-Team: kosinix <kosinix@codefleet.net>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: D:\\webserver\\htdocs\\wp_dev\\cyclone-slider-2\\wp-content\\plugins\\cyclone-slider-2\n"
18
 
19
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:121
20
  msgid "Cyclone Slider Settings"
21
  msgstr ""
22
 
23
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/cyclone-slider.php:122
24
  msgid "Settings"
25
  msgstr ""
26
 
27
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:96
28
  msgid "Cyclone Slider"
29
  msgstr ""
30
 
31
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:97
32
  msgid "Slideshow"
33
  msgstr ""
34
 
35
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:98
36
  msgid "Add Slideshow"
37
  msgstr ""
38
 
39
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:99
40
  msgid "Add New Slideshow"
41
  msgstr ""
42
 
43
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:100
44
  msgid "Edit Slideshow"
45
  msgstr ""
46
 
47
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:101
48
  msgid "New Slideshow"
49
  msgstr ""
50
 
51
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:102
52
  msgid "View Slideshow"
53
  msgstr ""
54
 
55
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:103
56
  msgid "Search Slideshows"
57
  msgstr ""
58
 
59
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:104
60
  msgid "No slideshows found"
61
  msgstr ""
62
 
63
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:105
64
  msgid "No slideshows found in Trash"
65
  msgstr ""
66
 
67
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:141
68
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:144
69
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:145
 
 
70
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:148
71
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:149
72
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:150
73
  msgid "Slideshow updated."
74
  msgstr ""
75
 
76
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:142
77
  msgid "Custom field updated."
78
  msgstr ""
79
 
80
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:143
81
  msgid "Custom field deleted."
82
  msgstr ""
83
 
84
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:146
85
  msgid "Slideshow published."
86
  msgstr ""
87
 
88
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:147
89
  msgid "Slideshow saved."
90
  msgstr ""
91
 
92
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:151
93
  #, php-format
94
  msgid "Templates CSS could not be saved. Make sure %stemplates.css is writable."
95
  msgstr ""
96
 
97
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:152
98
  #, php-format
99
  msgid "Templates JS could not be saved. Make sure %stemplates.js is writable."
100
  msgstr ""
101
 
102
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:186
103
  msgid "Slides"
104
  msgstr ""
105
 
106
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:195
107
  msgid "Slider Preview"
108
  msgstr ""
109
 
110
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:204
111
  msgid "Get Slider Codes"
112
  msgstr ""
113
 
114
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:213
115
  msgid "Basic Settings"
116
  msgstr ""
117
 
118
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:222
119
  msgid "Advanced Settings"
120
  msgstr ""
121
 
122
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:231
123
  msgid "Templates"
124
  msgstr ""
125
 
126
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:240
127
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:508
128
  msgid "Slideshow ID"
129
  msgstr ""
130
 
131
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:268
132
  msgid "Slide"
133
  msgstr ""
134
 
135
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:441
136
  msgid "Slide *"
137
  msgstr ""
138
 
139
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:505
140
  msgid "Slideshow Name"
141
  msgstr ""
142
 
143
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:506
144
  msgid "Template"
145
  msgstr ""
146
 
147
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:507
148
  msgid "No. of Slides"
149
  msgstr ""
150
 
151
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-admin.php:509
152
  msgid "Shortcode"
153
  msgstr ""
154
 
164
  msgid "Error. Make sure its a valid YouTube URL."
165
  msgstr ""
166
 
167
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-settings-page.php:62
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  msgid "Default options restored."
169
  msgstr ""
170
 
173
  msgstr ""
174
 
175
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:16
176
+ msgid "Widget for displaying sliders."
177
  msgstr ""
178
 
179
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:67
180
+ msgid "Title:"
181
  msgstr ""
182
 
183
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:81
184
+ msgid "Select a Slider:"
185
+ msgstr ""
186
+
187
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider-widget.php:96
188
+ msgid "No sliders found."
189
  msgstr ""
190
 
191
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/classes/class-cyclone-slider.php:77
226
  msgid "Learn More"
227
  msgstr ""
228
 
229
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:62
230
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:66
231
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/default/slider.php:70
232
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/standard/slider.php:70
233
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:62
234
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:66
235
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/templates/thumbnails/slider.php:70
236
  msgid "Slide type not supported."
237
  msgstr ""
238
 
289
  msgid "Import operation success!"
290
  msgstr ""
291
 
292
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:7
293
+ msgid "Play with these settings if Cyclone Slider 2 is not working or if you want to optimize it."
294
+ msgstr ""
295
+
296
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:17
297
+ msgid "Load scripts in:"
298
+ msgstr ""
299
+
300
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:20
301
+ msgid "Header"
302
+ msgstr ""
303
+
304
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:21
305
+ msgid "Footer"
306
+ msgstr ""
307
+
308
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:26
309
+ msgid "Load these scripts:"
310
+ msgstr ""
311
+
312
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:31
313
+ msgid "Cycle 2. This is the core script needed by the plugin."
314
+ msgstr ""
315
+
316
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:36
317
+ msgid "Cycle 2 - Carousel. Used by these templates: Galleria, Lea, Dos."
318
+ msgstr ""
319
+
320
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:41
321
+ msgid "Cycle 2 - Swipe. For touch swipe events."
322
+ msgstr ""
323
+
324
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:46
325
+ msgid "Cycle 2 - Tile. Used for tile transition effects."
326
+ msgstr ""
327
+
328
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:51
329
+ msgid "Cycle 2 - Video. Used by YouTube template."
330
+ msgstr ""
331
+
332
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
333
+ msgid "Magnific Popup - Enable lightbox option."
334
+ msgstr ""
335
+
336
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:56
337
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
338
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slider-advanced-settings.php:2
339
+ msgid "Available in pro version."
340
+ msgstr ""
341
+
342
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:61
343
+ msgid "Easing - Enable easing options."
344
+ msgstr ""
345
+
346
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:66
347
+ msgid "Scripts loading priority:"
348
+ msgstr ""
349
+
350
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:69
351
+ msgid "Make this value bigger to load scripts last."
352
+ msgstr ""
353
+
354
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:73
355
+ msgid "Load these templates:"
356
+ msgstr ""
357
+
358
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:86
359
+ msgid "Save Options"
360
+ msgstr ""
361
+
362
+ #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/settings-page.php:87
363
+ msgid "Restore Defaults"
364
+ msgstr ""
365
+
366
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:16
367
  msgid "Delete"
368
  msgstr ""
400
  msgid "Caption"
401
  msgstr ""
402
 
 
 
 
 
403
  #: D:\webserver\htdocs\wp_dev\cyclone-slider-2\wp-content\plugins\cyclone-slider-2/views/slide-edit.php:53
404
  msgid "Description:"
405
  msgstr ""
libs/jquery-easing/jquery.easing.1.3.1.js ADDED
@@ -0,0 +1,208 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * jQuery Easing v1.3.1 - http://gsgd.co.uk/sandbox/jquery/easing/
3
+ *
4
+ * Uses the built in easing capabilities added In jQuery 1.1
5
+ * to offer multiple easing options
6
+ *
7
+ * TERMS OF USE - jQuery Easing
8
+ *
9
+ * Open source under the BSD License.
10
+ *
11
+ * Copyright © 2008 George McGinley Smith
12
+ * All rights reserved.
13
+ *
14
+ * Redistribution and use in source and binary forms, with or without modification,
15
+ * are permitted provided that the following conditions are met:
16
+ *
17
+ * Redistributions of source code must retain the above copyright notice, this list of
18
+ * conditions and the following disclaimer.
19
+ * Redistributions in binary form must reproduce the above copyright notice, this list
20
+ * of conditions and the following disclaimer in the documentation and/or other materials
21
+ * provided with the distribution.
22
+ *
23
+ * Neither the name of the author nor the names of contributors may be used to endorse
24
+ * or promote products derived from this software without specific prior written permission.
25
+ *
26
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
27
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
31
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
32
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
35
+ *
36
+ * Changelog
37
+ * 1.3.1 - 2013-10-10
38
+ *
39
+ * Wrapped code in jQuery ready
40
+ * removed jQuery.easing.def = 'easeOutQuad' and hardcoded 'easeOutQuad' instead
41
+ */
42
+ jQuery(function() {
43
+ // t: current time, b: begInnIng value, c: change In value, d: duration
44
+ jQuery.easing['jswing'] = jQuery.easing['swing'];
45
+
46
+ jQuery.extend( jQuery.easing,
47
+ {
48
+ swing: function (x, t, b, c, d) {
49
+ return jQuery.easing['easeOutQuad'](x, t, b, c, d);
50
+ },
51
+ easeInQuad: function (x, t, b, c, d) {
52
+ return c*(t/=d)*t + b;
53
+ },
54
+ easeOutQuad: function (x, t, b, c, d) {
55
+ return -c *(t/=d)*(t-2) + b;
56
+ },
57
+ easeInOutQuad: function (x, t, b, c, d) {
58
+ if ((t/=d/2) < 1) return c/2*t*t + b;
59
+ return -c/2 * ((--t)*(t-2) - 1) + b;
60
+ },
61
+ easeInCubic: function (x, t, b, c, d) {
62
+ return c*(t/=d)*t*t + b;
63
+ },
64
+ easeOutCubic: function (x, t, b, c, d) {
65
+ return c*((t=t/d-1)*t*t + 1) + b;
66
+ },
67
+ easeInOutCubic: function (x, t, b, c, d) {
68
+ if ((t/=d/2) < 1) return c/2*t*t*t + b;
69
+ return c/2*((t-=2)*t*t + 2) + b;
70
+ },
71
+ easeInQuart: function (x, t, b, c, d) {
72
+ return c*(t/=d)*t*t*t + b;
73
+ },
74
+ easeOutQuart: function (x, t, b, c, d) {
75
+ return -c * ((t=t/d-1)*t*t*t - 1) + b;
76
+ },
77
+ easeInOutQuart: function (x, t, b, c, d) {
78
+ if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
79
+ return -c/2 * ((t-=2)*t*t*t - 2) + b;
80
+ },
81
+ easeInQuint: function (x, t, b, c, d) {
82
+ return c*(t/=d)*t*t*t*t + b;
83
+ },
84
+ easeOutQuint: function (x, t, b, c, d) {
85
+ return c*((t=t/d-1)*t*t*t*t + 1) + b;
86
+ },
87
+ easeInOutQuint: function (x, t, b, c, d) {
88
+ if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
89
+ return c/2*((t-=2)*t*t*t*t + 2) + b;
90
+ },
91
+ easeInSine: function (x, t, b, c, d) {
92
+ return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
93
+ },
94
+ easeOutSine: function (x, t, b, c, d) {
95
+ return c * Math.sin(t/d * (Math.PI/2)) + b;
96
+ },
97
+ easeInOutSine: function (x, t, b, c, d) {
98
+ return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
99
+ },
100
+ easeInExpo: function (x, t, b, c, d) {
101
+ return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
102
+ },
103
+ easeOutExpo: function (x, t, b, c, d) {
104
+ return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
105
+ },
106
+ easeInOutExpo: function (x, t, b, c, d) {
107
+ if (t==0) return b;
108
+ if (t==d) return b+c;
109
+ if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
110
+ return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
111
+ },
112
+ easeInCirc: function (x, t, b, c, d) {
113
+ return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
114
+ },
115
+ easeOutCirc: function (x, t, b, c, d) {
116
+ return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
117
+ },
118
+ easeInOutCirc: function (x, t, b, c, d) {
119
+ if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
120
+ return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
121
+ },
122
+ easeInElastic: function (x, t, b, c, d) {
123
+ var s=1.70158;var p=0;var a=c;
124
+ if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
125
+ if (a < Math.abs(c)) { a=c; var s=p/4; }
126
+ else var s = p/(2*Math.PI) * Math.asin (c/a);
127
+ return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
128
+ },
129
+ easeOutElastic: function (x, t, b, c, d) {
130
+ var s=1.70158;var p=0;var a=c;
131
+ if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
132
+ if (a < Math.abs(c)) { a=c; var s=p/4; }
133
+ else var s = p/(2*Math.PI) * Math.asin (c/a);
134
+ return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
135
+ },
136
+ easeInOutElastic: function (x, t, b, c, d) {
137
+ var s=1.70158;var p=0;var a=c;
138
+ if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
139
+ if (a < Math.abs(c)) { a=c; var s=p/4; }
140
+ else var s = p/(2*Math.PI) * Math.asin (c/a);
141
+ if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
142
+ return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
143
+ },
144
+ easeInBack: function (x, t, b, c, d, s) {
145
+ if (s == undefined) s = 1.70158;
146
+ return c*(t/=d)*t*((s+1)*t - s) + b;
147
+ },
148
+ easeOutBack: function (x, t, b, c, d, s) {
149
+ if (s == undefined) s = 1.70158;
150
+ return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
151
+ },
152
+ easeInOutBack: function (x, t, b, c, d, s) {
153
+ if (s == undefined) s = 1.70158;
154
+ if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
155
+ return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
156
+ },
157
+ easeInBounce: function (x, t, b, c, d) {
158
+ return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
159
+ },
160
+ easeOutBounce: function (x, t, b, c, d) {
161
+ if ((t/=d) < (1/2.75)) {
162
+ return c*(7.5625*t*t) + b;
163
+ } else if (t < (2/2.75)) {
164
+ return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
165
+ } else if (t < (2.5/2.75)) {
166
+ return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
167
+ } else {
168
+ return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
169
+ }
170
+ },
171
+ easeInOutBounce: function (x, t, b, c, d) {
172
+ if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
173
+ return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
174
+ }
175
+ });
176
+ });
177
+ /*
178
+ *
179
+ * TERMS OF USE - EASING EQUATIONS
180
+ *
181
+ * Open source under the BSD License.
182
+ *
183
+ * Copyright © 2001 Robert Penner
184
+ * All rights reserved.
185
+ *
186
+ * Redistribution and use in source and binary forms, with or without modification,
187
+ * are permitted provided that the following conditions are met:
188
+ *
189
+ * Redistributions of source code must retain the above copyright notice, this list of
190
+ * conditions and the following disclaimer.
191
+ * Redistributions in binary form must reproduce the above copyright notice, this list
192
+ * of conditions and the following disclaimer in the documentation and/or other materials
193
+ * provided with the distribution.
194
+ *
195
+ * Neither the name of the author nor the names of contributors may be used to endorse
196
+ * or promote products derived from this software without specific prior written permission.
197
+ *
198
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
199
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
200
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
201
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
202
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
203
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
204
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
205
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
206
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
207
+ *
208
+ */
libs/jquery-easing/jquery.easing.1.3.1.min.js ADDED
@@ -0,0 +1 @@
 
1
+ jQuery(function(){jQuery.easing.jswing=jQuery.easing.swing,jQuery.extend(jQuery.easing,{swing:function(n,t,e,u,a){return jQuery.easing.easeOutQuad(n,t,e,u,a)},easeInQuad:function(n,t,e,u,a){return u*(t/=a)*t+e},easeOutQuad:function(n,t,e,u,a){return-u*(t/=a)*(t-2)+e},easeInOutQuad:function(n,t,e,u,a){return(t/=a/2)<1?u/2*t*t+e:-u/2*(--t*(t-2)-1)+e},easeInCubic:function(n,t,e,u,a){return u*(t/=a)*t*t+e},easeOutCubic:function(n,t,e,u,a){return u*((t=t/a-1)*t*t+1)+e},easeInOutCubic:function(n,t,e,u,a){return(t/=a/2)<1?u/2*t*t*t+e:u/2*((t-=2)*t*t+2)+e},easeInQuart:function(n,t,e,u,a){return u*(t/=a)*t*t*t+e},easeOutQuart:function(n,t,e,u,a){return-u*((t=t/a-1)*t*t*t-1)+e},easeInOutQuart:function(n,t,e,u,a){return(t/=a/2)<1?u/2*t*t*t*t+e:-u/2*((t-=2)*t*t*t-2)+e},easeInQuint:function(n,t,e,u,a){return u*(t/=a)*t*t*t*t+e},easeOutQuint:function(n,t,e,u,a){return u*((t=t/a-1)*t*t*t*t+1)+e},easeInOutQuint:function(n,t,e,u,a){return(t/=a/2)<1?u/2*t*t*t*t*t+e:u/2*((t-=2)*t*t*t*t+2)+e},easeInSine:function(n,t,e,u,a){return-u*Math.cos(t/a*(Math.PI/2))+u+e},easeOutSine:function(n,t,e,u,a){return u*Math.sin(t/a*(Math.PI/2))+e},easeInOutSine:function(n,t,e,u,a){return-u/2*(Math.cos(Math.PI*t/a)-1)+e},easeInExpo:function(n,t,e,u,a){return 0==t?e:u*Math.pow(2,10*(t/a-1))+e},easeOutExpo:function(n,t,e,u,a){return t==a?e+u:u*(-Math.pow(2,-10*t/a)+1)+e},easeInOutExpo:function(n,t,e,u,a){return 0==t?e:t==a?e+u:(t/=a/2)<1?u/2*Math.pow(2,10*(t-1))+e:u/2*(-Math.pow(2,-10*--t)+2)+e},easeInCirc:function(n,t,e,u,a){return-u*(Math.sqrt(1-(t/=a)*t)-1)+e},easeOutCirc:function(n,t,e,u,a){return u*Math.sqrt(1-(t=t/a-1)*t)+e},easeInOutCirc:function(n,t,e,u,a){return(t/=a/2)<1?-u/2*(Math.sqrt(1-t*t)-1)+e:u/2*(Math.sqrt(1-(t-=2)*t)+1)+e},easeInElastic:function(n,t,e,u,a){var r=1.70158,i=0,s=u;if(0==t)return e;if(1==(t/=a))return e+u;if(i||(i=.3*a),s<Math.abs(u)){s=u;var r=i/4}else var r=i/(2*Math.PI)*Math.asin(u/s);return-(s*Math.pow(2,10*(t-=1))*Math.sin((t*a-r)*2*Math.PI/i))+e},easeOutElastic:function(n,t,e,u,a){var r=1.70158,i=0,s=u;if(0==t)return e;if(1==(t/=a))return e+u;if(i||(i=.3*a),s<Math.abs(u)){s=u;var r=i/4}else var r=i/(2*Math.PI)*Math.asin(u/s);return s*Math.pow(2,-10*t)*Math.sin((t*a-r)*2*Math.PI/i)+u+e},easeInOutElastic:function(n,t,e,u,a){var r=1.70158,i=0,s=u;if(0==t)return e;if(2==(t/=a/2))return e+u;if(i||(i=a*.3*1.5),s<Math.abs(u)){s=u;var r=i/4}else var r=i/(2*Math.PI)*Math.asin(u/s);return 1>t?-.5*s*Math.pow(2,10*(t-=1))*Math.sin((t*a-r)*2*Math.PI/i)+e:.5*s*Math.pow(2,-10*(t-=1))*Math.sin((t*a-r)*2*Math.PI/i)+u+e},easeInBack:function(n,t,e,u,a,r){return void 0==r&&(r=1.70158),u*(t/=a)*t*((r+1)*t-r)+e},easeOutBack:function(n,t,e,u,a,r){return void 0==r&&(r=1.70158),u*((t=t/a-1)*t*((r+1)*t+r)+1)+e},easeInOutBack:function(n,t,e,u,a,r){return void 0==r&&(r=1.70158),(t/=a/2)<1?u/2*t*t*(((r*=1.525)+1)*t-r)+e:u/2*((t-=2)*t*(((r*=1.525)+1)*t+r)+2)+e},easeInBounce:function(n,t,e,u,a){return u-jQuery.easing.easeOutBounce(n,a-t,0,u,a)+e},easeOutBounce:function(n,t,e,u,a){return(t/=a)<1/2.75?u*7.5625*t*t+e:2/2.75>t?u*(7.5625*(t-=1.5/2.75)*t+.75)+e:2.5/2.75>t?u*(7.5625*(t-=2.25/2.75)*t+.9375)+e:u*(7.5625*(t-=2.625/2.75)*t+.984375)+e},easeInOutBounce:function(n,t,e,u,a){return a/2>t?.5*jQuery.easing.easeInBounce(n,2*t,0,u,a)+e:.5*jQuery.easing.easeOutBounce(n,2*t-a,0,u,a)+.5*u+e}})});
libs/jquery.easing.1.3.js DELETED
@@ -1,205 +0,0 @@
1
- /*
2
- * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3
- *
4
- * Uses the built in easing capabilities added In jQuery 1.1
5
- * to offer multiple easing options
6
- *
7
- * TERMS OF USE - jQuery Easing
8
- *
9
- * Open source under the BSD License.
10
- *
11
- * Copyright © 2008 George McGinley Smith
12
- * All rights reserved.
13
- *
14
- * Redistribution and use in source and binary forms, with or without modification,
15
- * are permitted provided that the following conditions are met:
16
- *
17
- * Redistributions of source code must retain the above copyright notice, this list of
18
- * conditions and the following disclaimer.
19
- * Redistributions in binary form must reproduce the above copyright notice, this list
20
- * of conditions and the following disclaimer in the documentation and/or other materials
21
- * provided with the distribution.
22
- *
23
- * Neither the name of the author nor the names of contributors may be used to endorse
24
- * or promote products derived from this software without specific prior written permission.
25
- *
26
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
27
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
31
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
32
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34
- * OF THE POSSIBILITY OF SUCH DAMAGE.
35
- *
36
- */
37
-
38
- // t: current time, b: begInnIng value, c: change In value, d: duration
39
- jQuery.easing['jswing'] = jQuery.easing['swing'];
40
-
41
- jQuery.extend( jQuery.easing,
42
- {
43
- def: 'easeOutQuad',
44
- swing: function (x, t, b, c, d) {
45
- //alert(jQuery.easing.default);
46
- return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
47
- },
48
- easeInQuad: function (x, t, b, c, d) {
49
- return c*(t/=d)*t + b;
50
- },
51
- easeOutQuad: function (x, t, b, c, d) {
52
- return -c *(t/=d)*(t-2) + b;
53
- },
54
- easeInOutQuad: function (x, t, b, c, d) {
55
- if ((t/=d/2) < 1) return c/2*t*t + b;
56
- return -c/2 * ((--t)*(t-2) - 1) + b;
57
- },
58
- easeInCubic: function (x, t, b, c, d) {
59
- return c*(t/=d)*t*t + b;
60
- },
61
- easeOutCubic: function (x, t, b, c, d) {
62
- return c*((t=t/d-1)*t*t + 1) + b;
63
- },
64
- easeInOutCubic: function (x, t, b, c, d) {
65
- if ((t/=d/2) < 1) return c/2*t*t*t + b;
66
- return c/2*((t-=2)*t*t + 2) + b;
67
- },
68
- easeInQuart: function (x, t, b, c, d) {
69
- return c*(t/=d)*t*t*t + b;
70
- },
71
- easeOutQuart: function (x, t, b, c, d) {
72
- return -c * ((t=t/d-1)*t*t*t - 1) + b;
73
- },
74
- easeInOutQuart: function (x, t, b, c, d) {
75
- if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
76
- return -c/2 * ((t-=2)*t*t*t - 2) + b;
77
- },
78
- easeInQuint: function (x, t, b, c, d) {
79
- return c*(t/=d)*t*t*t*t + b;
80
- },
81
- easeOutQuint: function (x, t, b, c, d) {
82
- return c*((t=t/d-1)*t*t*t*t + 1) + b;
83
- },
84
- easeInOutQuint: function (x, t, b, c, d) {
85
- if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
86
- return c/2*((t-=2)*t*t*t*t + 2) + b;
87
- },
88
- easeInSine: function (x, t, b, c, d) {
89
- return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
90
- },
91
- easeOutSine: function (x, t, b, c, d) {
92
- return c * Math.sin(t/d * (Math.PI/2)) + b;
93
- },
94
- easeInOutSine: function (x, t, b, c, d) {
95
- return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
96
- },
97
- easeInExpo: function (x, t, b, c, d) {
98
- return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
99
- },
100
- easeOutExpo: function (x, t, b, c, d) {
101
- return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
102
- },
103
- easeInOutExpo: function (x, t, b, c, d) {
104
- if (t==0) return b;
105
- if (t==d) return b+c;
106
- if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
107
- return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
108
- },
109
- easeInCirc: function (x, t, b, c, d) {
110
- return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
111
- },
112
- easeOutCirc: function (x, t, b, c, d) {
113
- return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
114
- },
115
- easeInOutCirc: function (x, t, b, c, d) {
116
- if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
117
- return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
118
- },
119
- easeInElastic: function (x, t, b, c, d) {
120
- var s=1.70158;var p=0;var a=c;
121
- if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
122
- if (a < Math.abs(c)) { a=c; var s=p/4; }
123
- else var s = p/(2*Math.PI) * Math.asin (c/a);
124
- return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
125
- },
126
- easeOutElastic: function (x, t, b, c, d) {
127
- var s=1.70158;var p=0;var a=c;
128
- if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
129
- if (a < Math.abs(c)) { a=c; var s=p/4; }
130
- else var s = p/(2*Math.PI) * Math.asin (c/a);
131
- return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
132
- },
133
- easeInOutElastic: function (x, t, b, c, d) {
134
- var s=1.70158;var p=0;var a=c;
135
- if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
136
- if (a < Math.abs(c)) { a=c; var s=p/4; }
137
- else var s = p/(2*Math.PI) * Math.asin (c/a);
138
- if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
139
- return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
140
- },
141
- easeInBack: function (x, t, b, c, d, s) {
142
- if (s == undefined) s = 1.70158;
143
- return c*(t/=d)*t*((s+1)*t - s) + b;
144
- },
145
- easeOutBack: function (x, t, b, c, d, s) {
146
- if (s == undefined) s = 1.70158;
147
- return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
148
- },
149
- easeInOutBack: function (x, t, b, c, d, s) {
150
- if (s == undefined) s = 1.70158;
151
- if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
152
- return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
153
- },
154
- easeInBounce: function (x, t, b, c, d) {
155
- return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
156
- },
157
- easeOutBounce: function (x, t, b, c, d) {
158
- if ((t/=d) < (1/2.75)) {
159
- return c*(7.5625*t*t) + b;
160
- } else if (t < (2/2.75)) {
161
- return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
162
- } else if (t < (2.5/2.75)) {
163
- return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
164
- } else {
165
- return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
166
- }
167
- },
168
- easeInOutBounce: function (x, t, b, c, d) {
169
- if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
170
- return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
171
- }
172
- });
173
-
174
- /*
175
- *
176
- * TERMS OF USE - EASING EQUATIONS
177
- *
178
- * Open source under the BSD License.
179
- *
180
- * Copyright © 2001 Robert Penner
181
- * All rights reserved.
182
- *
183
- * Redistribution and use in source and binary forms, with or without modification,
184
- * are permitted provided that the following conditions are met:
185
- *
186
- * Redistributions of source code must retain the above copyright notice, this list of
187
- * conditions and the following disclaimer.
188
- * Redistributions in binary form must reproduce the above copyright notice, this list
189
- * of conditions and the following disclaimer in the documentation and/or other materials
190
- * provided with the distribution.
191
- *
192
- * Neither the name of the author nor the names of contributors may be used to endorse
193
- * or promote products derived from this software without specific prior written permission.
194
- *
195
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
196
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
197
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
198
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
199
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
200
- * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
201
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
202
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
203
- * OF THE POSSIBILITY OF SUCH DAMAGE.
204
- *
205
- */