1<?php
2/**
3 * english language file for slider plugin
4 *
5 * @author Andreas Gohr <gohr@cosmocode.de>
6 * @author Michael Bohn <mjbohn@gmail.com>
7 */
8
9
10$lang['width'] = 'Width of loaded images. Images will be downloaded in this size and up or downscaled by the browser.';
11
12// general settings
13$lang['mode']                = 'Type of transition between slides';
14$lang['infiniteLoop']        = 'If true, clicking "Next" while on the last slide will transition to the first slide and vice-versa';
15$lang['hideControlOnEnd']    = 'If true, "Prev" and "Next" controls will receive a class disabled when slide is the first or the last
16Note: Only used when infiniteLoop: false';
17$lang['speed']               = 'Slide transition duration (in ms)';
18$lang['easing']              = "The type of 'easing' to use during transitions. If using CSS transitions, include a value for the transition-timing-function property. If not using CSS transitions, you may include plugins/jquery.easing.1.3.js for many options.
19See <a href='http://gsgd.co.uk/sandbox/jquery/easing/' target='_blank'>gsgd.co.uk/sandbox/jquery/easing/</a> for more info. options: if using CSS: 'linear', 'ease', 'ease-in', 'ease-out', 'ease-in-out', 'cubic-bezier(n,n,n,n)'. If not using CSS: 'swing', 'linear' ";
20$lang['slideMargin']         = 'Margin between each slide';
21$lang['startSlide']          = 'Starting slide index (zero-based)';
22$lang['randomStart']         = 'Start slider on a random slide';
23$lang['captions']            = 'Include image captions. Captions are derived from the image\'s title attribute';
24$lang['ticker']              = 'Use slider in ticker mode (similar to a news ticker). Ticker-speed depends on transition duration. Set slider.speed to "slider.speed * number of pictures"  ';
25$lang['tickerHover']         = 'Ticker will pause when mouse hovers over slider. Note: this functionality does NOT work if using CSS transitions!';
26$lang['adaptiveHeight']      = 'Dynamically adjust slider height based on each slide\'s height';
27$lang['adaptiveHeightSpeed'] = 'Slide height transition duration (in ms). Note: only used if adaptiveHeight: true';
28$lang['video']               = 'If any slides contain video, set this to true. Also, include plugins/jquery.fitvids.js
29See http://fitvidsjs.com/ for more info';
30$lang['useCSS']              = 'If true, CSS transitions will be used for horizontal and vertical slide animations (this uses native hardware acceleration). If false, jQuery animate() will be used.';
31$lang['preloadImages']       = "If 'all', preloads all images before starting the slider. If 'visible', preloads only images in the initially visible slides before starting the slider (tip: use 'visible' if all slides are identical dimensions)";
32$lang['responsive']          = 'Enable or disable auto resize of the slider. Useful if you need to use fixed width sliders.';
33
34// pager
35$lang['pager']                 = 'If true, a pager will be added';
36$lang['pagerType']             = 'If \'full\', a pager link will be generated for each slide. If \'short\', a x / y pager will be used (ex. 1 / 5)';
37$lang['pagerShortSeparator']   = 'If pagerType: \'short\', pager will use this value as the separating character';
38
39// controls
40$lang['controls']            = 'If true, "Next" / "Prev" controls will be added';
41$lang['nextText']            = 'Text to be used for the "Next" control';
42$lang['prevText']            = 'Text to be used for the "Prev" control';
43$lang['autoControls']        = 'If true, "Start" / "Stop" controls will be added';
44$lang['startText']           = 'Text to be used for the "Start" control';
45$lang['stopText']            = 'Text to be used for the "Stop" control';
46$lang['autoControlsCombine'] = 'When slideshow is playing only "Stop" control is displayed and vice-versa';
47
48// auto
49$lang['auto']          = 'Slides will automatically transition';
50$lang['pause']         = 'The amount of time (in ms) between each auto transition';
51$lang['autoStart']     = 'Auto show starts playing on load. If false, slideshow will start when the "Start" control is clicked';
52$lang['autoDirection'] = 'The direction of auto show slide transitions';
53$lang['autoHover']     = 'Auto show will pause when mouse hovers over slider';
54$lang['autoDelay']     = 'Time (in ms) auto show should wait before starting';
55
56// carousel
57$lang['minSlides']  = 'The minimum number of slides to be shown. Slides will be sized down if carousel becomes smaller than the original size.';
58$lang['maxSlides']  = 'The maximum number of slides to be shown. Slides will be sized up if carousel becomes larger than the original size.';
59$lang['moveSlides'] = 'The number of slides to move on transition. This value must be >= minSlides, and <= maxSlides. If zero (default), the number of fully-visible slides will be used.';
60$lang['slideWidth'] = 'The width of each slide. This setting is required for all horizontal carousels!';
61
62// touch
63$lang['touchEnabled']         = 'If true, slider will allow touch swipe transitions';
64$lang['swipeThreshold']       = 'Amount of pixels a touch swipe needs to exceed in order to execute a slide transition. Note: only used if touchEnabled: true';
65$lang['oneToOneTouch']        = 'If true, non-fade slides follow the finger as it swipes';
66$lang['preventDefaultSwipeX'] = 'If true, touch screen will not move along the x-axis as the finger swipes';
67$lang['preventDefaultSwipeY'] = 'If true, touch screen will not move along the y-axis as the finger swipes';
68
69
70//Setup VIM: ex: et ts=4 :
71