1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | |
---|
25 | $lang['pamooramics_description'] = 'paMOOramics allow to display and scroll in your panorama in piwigo thanks to :'; |
---|
26 | $lang['pamooramics_and'] = 'and'; |
---|
27 | $lang['pamooramics_by'] = 'by'; |
---|
28 | |
---|
29 | $lang['pamooramics_admin_form_legend'] = 'paMOOramics Configuration'; |
---|
30 | $lang['pamooramics_use_name'] = 'Activate paMOOramics on filename'; |
---|
31 | $lang['pamooramics_name'] = 'Text to search to display images in panoramic mode'; |
---|
32 | $lang['pamooramics_use_ratio'] = 'Activate paMOOramics on w/h ratio'; |
---|
33 | $lang['pamooramics_ratio'] = 'Minimum ratio (width/height) to display images in panoramic mode'; |
---|
34 | $lang['pamooramics_width'] = 'Panoramic display width'; |
---|
35 | $lang['pamooramics_border_size'] = 'Panoramic border size'; |
---|
36 | $lang['pamooramics_border_color'] = 'Panoramic border color'; |
---|
37 | $lang['pamooramics_activateslider'] = 'Activate scrolling on mouse over'; |
---|
38 | $lang['pamooramics_footer_color'] = 'Caption background color'; |
---|
39 | $lang['pamooramics_caption_color'] = 'Description text color'; |
---|
40 | $lang['pamooramics_enable_autoscroll'] = 'Allow autoscroll'; |
---|
41 | $lang['pamooramics_autoscroll_speed'] = 'Autoscroll speed'; |
---|
42 | $lang['pamooramics_autoscroll_onload'] = 'Start autoscroll on load'; |
---|
43 | |
---|
44 | |
---|
45 | $lang['pamooramics_picture_high'] = 'Click here to view high definition panorama'; |
---|
46 | $lang['pamooramics_displayfooter'] = 'Do not display caption'; |
---|
47 | $lang['pamooramics_Slideshow_displayfooter'] = 'Do not display caption for the slideshow'; |
---|
48 | |
---|
49 | $lang['pamooramics_save_config'] = 'Save'; |
---|
50 | |
---|
51 | |
---|
52 | |
---|
53 | |
---|
54 | $lang['pamooramics_startAutoscroll'] = 'Start autoscroll'; |
---|
55 | $lang['pamooramics_stopAutoscroll'] = 'Stop autoscroll'; |
---|
56 | $lang['pamooramics_loading'] = 'Loading ...'; |
---|
57 | $lang['pamooramics_clickMessage'] = 'Click to move the frame !'; |
---|
58 | $lang['pamooramics_dragMessage'] = 'Drag me to move the panorama !'; |
---|
59 | |
---|
60 | |
---|
61 | ?> |
---|