| 
<?php// +------------------------------------------------------------------------+
 // | class.upload.vn_VN.php                                                 |
 // +------------------------------------------------------------------------+
 // | Copyright (c) junzennt 2009. All rights reserved.                      |
 // | Version       0.25                                                     |
 // | Last modified 22/01/2009                                               |
 // | Email         [email protected]                                       |
 // | Web           http://www.junzecom.com                                  |
 // +------------------------------------------------------------------------+
 // | This program is free software; you can redistribute it and/or modify   |
 // | it under the terms of the GNU General Public License version 2 as      |
 // | published by the Free Software Foundation.                             |
 // |                                                                        |
 // | This program is distributed in the hope that it will be useful,        |
 // | but WITHOUT ANY WARRANTY; without even the implied warranty of         |
 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          |
 // | GNU General Public License for more details.                           |
 // |                                                                        |
 // | You should have received a copy of the GNU General Public License      |
 // | along with this program; if not, write to the                          |
 // |   Free Software Foundation, Inc., 59 Temple Place, Suite 330,          |
 // |   Boston, MA 02111-1307 USA                                            |
 // |                                                                        |
 // | Please give credit on sites that use class.upload and submit changes   |
 // | of the script so other people can use them as well.                    |
 // | This script is free to use, don't abuse.                               |
 // +------------------------------------------------------------------------+
 
 /**
 * Class upload vietnamese translation
 *
 * @version   0.25
 * @author    junzennt ([email protected])
 * @license   http://opensource.org/licenses/gpl-license.php GNU Public License
 * @copyright Nguyen Nhu Tuan
 * @package   cmf
 * @subpackage external
 */
 
 $translation = array();
 $translation['file_error']                  = 'Có l?i file. Hăy th? l?i l?n n?a.';
 $translation['local_file_missing']          = 'Th? m?c file không t?n t?i.';
 $translation['local_file_not_readable']     = 'Th? m?c file không ghi ???c.';
 $translation['uploaded_too_big_ini']        = 'L?i upload file (dung l??ng file upload v??t quá ch? ??nh trong php.ini).';
 $translation['uploaded_too_big_html']       = 'L?i upload file (dung l??ng file upload v??t quá ch? ??nh trong html form).';
 $translation['uploaded_partial']            = 'L?i upload file (file upload ch? upload lên ???c m?t ph?n).';
 $translation['uploaded_missing']            = 'L?i upload file (không upload ???c file).';
 $translation['uploaded_unknown']            = 'L?i upload file (không hi?u l?i code).';
 $translation['try_again']                   = 'L?i upload file. Hăy th? l?i l?n n?a.';
 $translation['file_too_big']                = 'File quá l?n.';
 $translation['no_mime']                     = 'Không th? t́m th?y ki?u MIME.';
 $translation['incorrect_file']              = 'Sai ki?u file.';
 $translation['image_too_wide']              = '?nh quá r?ng.';
 $translation['image_too_narrow']            = '?nh quá h?p.';
 $translation['image_too_high']              = '?nh quá cao.';
 $translation['image_too_short']             = '?nh quá ng?n.';
 $translation['ratio_too_high']              = 'T? l? ?nh quá cao (?nh quá r?ng).';
 $translation['ratio_too_low']               = 'T? l? ?nh quá th?p (?nh quá cao).';
 $translation['too_many_pixels']             = '?nh có quá nhi?u pixels.';
 $translation['not_enough_pixels']           = '?nh không ?? pixels.';
 $translation['file_not_uploaded']           = 'File không upload ???c. Không th? th?c hi?n ti?p.';
 $translation['already_exists']              = '%s ?ă t?n t?i. Hăy ??i l?i tên file.';
 $translation['temp_file_missing']           = 'Sai ???ng d?n th? m?c temp. Không th? th?c hi?n ti?p.';
 $translation['source_missing']              = 'Sai t?p tin ngu?n t?i lên. Không th? th?c hi?n ti?p.';
 $translation['destination_dir']             = 'Không th? t?o th? m?c ?ích. Không th? th?c hi?n ti?p.';
 $translation['destination_dir_missing']     = 'Th? m?c ?ích không t?n t?i. Không th? th?c hi?n ti?p.';
 $translation['destination_path_not_dir']    = '???ng d?n ?ích không ph?i là th? m?c. Không th? th?c hi?n ti?p.';
 $translation['destination_dir_write']       = 'Th? m?c ?ích không th? ghi ???c. Không th? th?c hi?n ti?p.';
 $translation['destination_path_write']      = '???ng d?n ?ích không ghi ???c. Không th? th?c hi?n ti?p.';
 $translation['temp_file']                   = 'Không th? t?o ???c file t?m. Không th? th?c hi?n ti?p.';
 $translation['source_not_readable']         = 'File ngu?n không ??c ???c. Không th? th?c hi?n ti?p.';
 $translation['no_create_support']           = 'Không h? tr? t?o t? %s .';
 $translation['create_error']                = 'L?i trong khi t?o ?nh %s t? ngu?n.';
 $translation['source_invalid']              = 'Không th? ??c ?nh ngu?n. Không ph?i là ?nh ?.';
 $translation['gd_missing']                  = 'GD d??ng nh? không có.';
 $translation['watermark_no_create_support'] = 'Không h? tr? t?o t? %s , không th? ??c watermark.';
 $translation['watermark_create_error']      = 'Không h? tr? ??c %s , không th? t?o watermark.';
 $translation['watermark_invalid']           = 'Không bi?t ??nh d?ng ?nh, không th? ??c watermark.';
 $translation['file_create']                 = 'Không h? tr? t?o %s .';
 $translation['no_conversion_type']          = 'Không chuy?n ??i ki?u ?ă ??nh ngh?a.';
 $translation['copy_failed']                 = 'L?i khi copy file trên server. copy() l?i.';
 $translation['reading_failed']              = 'L?i khi ??c file.';
 
 ?>
 |