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/por.php | |
parent | e9ed6cf562bebc6e013af48d43674320124995d2 (diff) | |
download | FOSSEE_Stats-ba9786f7d047bbd97eb9d92bebf508c34f80668a.tar.gz FOSSEE_Stats-ba9786f7d047bbd97eb9d92bebf508c34f80668a.tar.bz2 FOSSEE_Stats-ba9786f7d047bbd97eb9d92bebf508c34f80668a.zip |
Diffstat (limited to 'lang/por.php')
-rwxr-xr-x | lang/por.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lang/por.php b/lang/por.php new file mode 100755 index 0000000..ab45c71 --- /dev/null +++ b/lang/por.php @@ -0,0 +1,44 @@ +<?php +//============================================================+ +// File name : por.php +// Begin : 2004-03-03 +// Last Update : 2010-10-26 +// +// Description : Language module for TCPDF +// (contains translated texts) +// Portuguese +// +// 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: Portuguese + * @author Nicola Asuni + * @since 2004-03-03 + */ + +// Portuguese + +global $l; +$l = Array(); + +// PAGE META DESCRIPTORS -------------------------------------- + +$l['a_meta_charset'] = 'UTF-8'; +$l['a_meta_dir'] = 'ltr'; +$l['a_meta_language'] = 'pt'; + +// TRANSLATIONS -------------------------------------- +$l['w_page'] = 'página'; + +//============================================================+ +// END OF FILE +//============================================================+ |