1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | PiwiShack - a Piwigo Plugin | |
---|
4 | // | Copyright (C) 2009 MOREAU Julien - gotcha@piwigo.org | |
---|
5 | // +-----------------------------------------------------------------------+ |
---|
6 | // | This program is free software; you can redistribute it and/or modify | |
---|
7 | // | it under the terms of the GNU General Public License as published by | |
---|
8 | // | the Free Software Foundation | |
---|
9 | // | | |
---|
10 | // | This program is distributed in the hope that it will be useful, but | |
---|
11 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
12 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
13 | // | General Public License for more details. | |
---|
14 | // | | |
---|
15 | // | You should have received a copy of the GNU General Public License | |
---|
16 | // | along with this program; if not, write to the Free Software | |
---|
17 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
18 | // | USA. | |
---|
19 | // +-----------------------------------------------------------------------+ |
---|
20 | |
---|
21 | $lang['open_window_piwishack'] = '打开PiwiShack窗口'; |
---|
22 | $lang['close_window_piwishack'] = '关闭PiwiShack窗口'; |
---|
23 | $lang['Partage_me'] = '分享你的照片'; |
---|
24 | |
---|
25 | // New since 2.5.b |
---|
26 | $lang['close'] = 'Close'; |
---|
27 | $lang['sheet_html'] = 'Core HTML'; |
---|
28 | $lang['sheet_bbcode'] = 'Core BBCode'; |
---|
29 | $lang['sheet_custom'] = 'Other codes'; |
---|
30 | $lang['custom_code'] = 'Custom code #'; |
---|
31 | |
---|
32 | $lang['post_code_Thumbnail'] = 'Display the thumbnail (without link)'; |
---|
33 | $lang['post_code_ThumbnailToGallery'] = 'Display the thumbnail (clickable, link to gallery)'; |
---|
34 | $lang['post_code_ThumbnailToImage'] = 'Display the thumbnail (clickable, link to image)'; |
---|
35 | $lang['post_code_Image'] = 'Viewing the normal view (without link)'; |
---|
36 | $lang['post_code_ImageToGallery'] = 'Viewing the normal view (clickable, link to gallery)'; |
---|
37 | $lang['post_code_NameToImage'] = 'Name of image, with link to image'; |
---|
38 | $lang['post_code_NameToGallery'] = 'Name of image, with link to gallery'; |
---|
39 | |
---|
40 | // Admin: main parameters |
---|
41 | $lang['admin_title'] = 'PiwiShack configuration'; |
---|
42 | $lang['admin_fieldset_main'] = 'Main parameters'; |
---|
43 | $lang['admin_save'] = 'Save'; |
---|
44 | |
---|
45 | $lang['admin_used_by'] = 'Piwishack will be usable by'; |
---|
46 | $lang['admin_used_by_all'] = 'all visitors (guests included)'; |
---|
47 | $lang['admin_used_by_members'] = 'registered members'; |
---|
48 | $lang['admin_used_by_admin'] = 'administrators only'; |
---|
49 | |
---|
50 | $lang['admin_default_sheet'] = 'The format sheet displayed by default is the'; |
---|
51 | $lang['admin_default_sheet_bbcode'] = 'BBCode (e.g. for forum)'; |
---|
52 | $lang['admin_default_sheet_html'] = 'HTLM (for web page)'; |
---|
53 | $lang['admin_default_sheet_custom'] = 'custom'; |
---|
54 | |
---|
55 | $lang['admin_window_open'] = 'The HTML link will open in'; |
---|
56 | $lang['admin_window_open_local'] = 'the current window (standard)'; |
---|
57 | $lang['admin_window_open_other'] = 'another window (not recommended)'; |
---|
58 | |
---|
59 | $lang['admin_img_name'] = 'Are image names displayed before code?'; |
---|
60 | $lang['admin_img_name_never'] = 'never'; |
---|
61 | $lang['admin_img_name_list'] = 'for lists only'; |
---|
62 | $lang['admin_img_name_all'] = 'always'; |
---|
63 | |
---|
64 | // Admin: core codes configuration |
---|
65 | $lang['admin_fieldset_codes'] = 'Piwishack codes selection'; |
---|
66 | $lang['admin_codes_thumb'] = 'Thumbnail without link'; |
---|
67 | $lang['admin_codes_thumb_to_page'] = 'Thumbnail with link to gallery page'; |
---|
68 | $lang['admin_codes_thumb_to_image'] = 'Thumbnail with link to image'; |
---|
69 | $lang['admin_codes_img'] = 'Image without link'; |
---|
70 | $lang['admin_codes_img_to_page'] = 'Image with link to gallery'; |
---|
71 | $lang['admin_codes_name_to_image'] = 'Image name with link to image'; |
---|
72 | $lang['admin_codes_name_to_page'] = 'Image name with link to gallery'; |
---|
73 | $lang['admin_codes_help'] = 'Tip: Each number defines the sort order used for display. "0" could be used if you don\'t want to display a string pattern.'; |
---|
74 | |
---|
75 | // Admin: custom codes configuration |
---|
76 | $lang['admin_fieldset_custom'] = 'Additional sheet: customizable string codes'; |
---|
77 | $lang['admin_custom_code'] = 'Custom code #'; |
---|
78 | $lang['admin_custom_name'] = 'Name: '; |
---|
79 | $lang['admin_custom_help'] = 'Tip: You can use the following variables in your patterns:<br /> |
---|
80 | <label><span class="pattern">##i</span></label>: URL of the image - |
---|
81 | <label><span class="pattern">##t</span></label>: URL of the thumbnail - |
---|
82 | <label><span class="pattern">##g</span></label>: URL of the gallery page - |
---|
83 | <label><span class="pattern">##n</span></label>: name of the image<br /> |
---|
84 | Refer to patterns used in the previous fieldset for examples.'; |
---|
85 | |
---|
86 | ?> |
---|