source: extensions/piwishack/language/vi_VN/plugin.lang.php @ 23722

Last change on this file since 23722 was 23722, checked in by gil, 11 years ago
File size: 5.1 KB
Line 
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// [Previous version] vi-Vn language for Piwishask translated by  Le Duc Tho . homepage : ductho.info . 24th August 2010
22// thanks to piwigo team and plugin writer MOREAU Julien - gotcha@piwigo.org 
23
24$lang['open_window_piwishack']          = 'Mở cửa sổ PiwiShack';
25$lang['close_window_piwishack']         = 'Đóng cửa sổ PiwiShack';
26$lang['Partage_me']                     = 'Chia sẻ ảnh.';
27
28  // New since 2.5.b
29$lang['close']                  = 'Close';
30$lang['sheet_html']             = 'Core HTML';
31$lang['sheet_bbcode']           = 'Core BBCode';
32$lang['sheet_custom']           = 'Other codes';
33$lang['custom_code']            = 'Custom code #';
34
35$lang['post_code_Thumbnail']          = 'Display the thumbnail (without link)';
36$lang['post_code_ThumbnailToGallery'] = 'Display the thumbnail (clickable, link to gallery)';
37$lang['post_code_ThumbnailToImage']   = 'Display the thumbnail (clickable, link to image)';       
38$lang['post_code_Image']              = 'Viewing the normal view (without link)';
39$lang['post_code_ImageToGallery']     = 'Viewing the normal view (clickable, link to gallery)';
40$lang['post_code_NameToImage']        = 'Name of image, with link to image';
41$lang['post_code_NameToGallery']      = 'Name of image, with link to gallery';
42
43// Admin: main parameters
44$lang['admin_title']         = 'PiwiShack configuration';
45$lang['admin_fieldset_main'] = 'Main parameters';
46$lang['admin_save']          = 'Save';
47
48$lang['admin_used_by']         = 'Piwishack will be usable by';
49$lang['admin_used_by_all']     = 'all visitors (guests included)';
50$lang['admin_used_by_members'] = 'registered members';
51$lang['admin_used_by_admin']   = 'administrators only';
52
53$lang['admin_default_sheet']        = 'The format sheet displayed by default is the';
54$lang['admin_default_sheet_bbcode'] = 'BBCode (e.g. for forum)';
55$lang['admin_default_sheet_html']   = 'HTLM (for web page)';
56$lang['admin_default_sheet_custom'] = 'custom';
57
58$lang['admin_window_open']       = 'The HTML link will open in';
59$lang['admin_window_open_local'] = 'the current window (standard)';
60$lang['admin_window_open_other'] = 'another window (not recommended)';
61
62$lang['admin_img_name']       = 'Are image names displayed before code?';
63$lang['admin_img_name_never'] = 'never';
64$lang['admin_img_name_list']  = 'for lists only';
65$lang['admin_img_name_all']   = 'always';
66
67// Admin: core codes configuration
68$lang['admin_fieldset_codes']       = 'Piwishack codes selection';
69$lang['admin_codes_thumb']          = 'Thumbnail without link';
70$lang['admin_codes_thumb_to_page']  = 'Thumbnail with link to gallery page';
71$lang['admin_codes_thumb_to_image'] = 'Thumbnail with link to image';       
72$lang['admin_codes_img']            = 'Image without link';
73$lang['admin_codes_img_to_page']    = 'Image with link to gallery';
74$lang['admin_codes_name_to_image']  = 'Image name with link to image';
75$lang['admin_codes_name_to_page']   = 'Image name with link to gallery';
76$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.';
77
78// Admin: custom codes configuration
79$lang['admin_fieldset_custom']  = 'Additional sheet: customizable string codes';
80$lang['admin_custom_code']      = 'Custom code #';
81$lang['admin_custom_name']      = 'Name: ';
82$lang['admin_custom_help']      = 'Tip: You can use the following variables in your patterns:<br />
83 <label><span class="pattern">##i</span></label>: URL of the image -
84 <label><span class="pattern">##t</span></label>: URL of the thumbnail -
85 <label><span class="pattern">##g</span></label>: URL of the gallery page -
86 <label><span class="pattern">##n</span></label>: name of the image<br />
87 Refer to patterns used in the previous fieldset for examples.';
88 
89
90?>
Note: See TracBrowser for help on using the repository browser.