mirror of
https://github.com/vdm-io/tcpdf.git
synced 2024-12-28 18:51:03 +00:00
df9b495d27
- The problem of wrong filename when downloading PDF from an Android device was fixed. - The method setHeaderData() was extended to set text and line color for header (see example n. 1). - The method setFooterData() was added to set text and line color for footer (see example n. 1). - The methods setTextShadow() and getTextShadow() were added to set text shadows (see example n. 1). - The GetCharWidth() method was fixed for negative character spacing. - A 'none' border mode is now correctly recognized. - Break on hyphen problem was fixed.
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
//============================================================+
|
|
// File name : ukr.php
|
|
// Begin : 2004-03-03
|
|
// Last Update : 2010-10-26
|
|
//
|
|
// Description : Language module for TCPDF
|
|
// (contains translated texts)
|
|
// Ukrainian
|
|
//
|
|
// Author: Nicola Asuni
|
|
//
|
|
// (c) Copyright:
|
|
// Nicola Asuni
|
|
// Tecnick.com LTD
|
|
// Manor Coach House, Church Hill
|
|
// Aldershot, Hants, GU12 4RQ
|
|
// UK
|
|
// www.tecnick.com
|
|
// info@tecnick.com
|
|
//============================================================+
|
|
|
|
/**
|
|
* TCPDF language file (contains translated texts).
|
|
* @package com.tecnick.tcpdf
|
|
* @brief TCPDF language file: Ukrainian
|
|
* @author Nicola Asuni
|
|
* @since 2004-03-03
|
|
*/
|
|
|
|
// Russian
|
|
|
|
global $l;
|
|
$l = Array();
|
|
|
|
// PAGE META DESCRIPTORS --------------------------------------
|
|
|
|
$l['a_meta_charset'] = 'UTF-8';
|
|
$l['a_meta_dir'] = 'ltr';
|
|
$l['a_meta_language'] = 'ua';
|
|
|
|
// TRANSLATIONS --------------------------------------
|
|
$l['w_page'] = 'страница';
|
|
|
|
//============================================================+
|
|
// END OF FILE
|
|
//============================================================+
|