diff options
author | diptighosalkar | 2016-10-04 22:07:23 +0530 |
---|---|---|
committer | diptighosalkar | 2016-10-04 22:07:23 +0530 |
commit | ba9786f7d047bbd97eb9d92bebf508c34f80668a (patch) | |
tree | 3a1026d5867722aa6343abc4ec3a3f8d585fb7f4 /lang/cat.php | |
parent | e9ed6cf562bebc6e013af48d43674320124995d2 (diff) | |
download | FOSSEE_Stats_Deprecated-master.tar.gz FOSSEE_Stats_Deprecated-master.tar.bz2 FOSSEE_Stats_Deprecated-master.zip |
Diffstat (limited to 'lang/cat.php')
-rwxr-xr-x | lang/cat.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lang/cat.php b/lang/cat.php new file mode 100755 index 0000000..29ea3d8 --- /dev/null +++ b/lang/cat.php @@ -0,0 +1,44 @@ +<?php +//============================================================+ +// File name : cat.php +// Begin : 2010-10-26 +// Last Update : 2010-10-26 +// +// Description : Language module for TCPDF +// (contains translated texts) +// Catalan +// +// Author: Nicola Asuni +// +// (c) Copyright: +// Nicola Asuni +// Tecnick.com LTD +// www.tecnick.com +// info@tecnick.com +//============================================================+ + +/** + * TCPDF language file (contains translated texts). + * @package com.tecnick.tcpdf + * @brief TCPDF language file: Catalan + * @author Nicola Asuni + * @since 2010-10-26 + */ + +// Catalan + +global $l; +$l = Array(); + +// PAGE META DESCRIPTORS -------------------------------------- + +$l['a_meta_charset'] = 'UTF-8'; +$l['a_meta_dir'] = 'ltr'; +$l['a_meta_language'] = 'ca'; + +// TRANSLATIONS -------------------------------------- +$l['w_page'] = 'pĂ gina'; + +//============================================================+ +// END OF FILE +//============================================================+ |