From ba9786f7d047bbd97eb9d92bebf508c34f80668a Mon Sep 17 00:00:00 2001 From: diptighosalkar Date: Tue, 4 Oct 2016 22:07:23 +0530 Subject: Added lang folder --- config/tcpdf_config_alt.php | 222 +++++++++++++++++++++++++++++++++++++++++++ config/tcpdf_config_alt.php~ | 222 +++++++++++++++++++++++++++++++++++++++++++ images/_blank.png | Bin 0 -> 137 bytes images/fosseelogo.png | Bin 0 -> 75550 bytes lang/afr.php | 44 +++++++++ lang/ara.php | 44 +++++++++ lang/aze.php | 44 +++++++++ lang/bel.php | 44 +++++++++ lang/bra.php | 44 +++++++++ lang/bul.php | 44 +++++++++ lang/cat.php | 44 +++++++++ lang/ces.php | 44 +++++++++ lang/chi.php | 44 +++++++++ lang/cym.php | 44 +++++++++ lang/dan.php | 44 +++++++++ lang/eng.php | 44 +++++++++ lang/est.php | 44 +++++++++ lang/eus.php | 44 +++++++++ lang/far.php | 44 +++++++++ lang/fra.php | 44 +++++++++ lang/ger.php | 44 +++++++++ lang/gle.php | 44 +++++++++ lang/glg.php | 44 +++++++++ lang/hat.php | 44 +++++++++ lang/heb.php | 44 +++++++++ lang/hrv.php | 44 +++++++++ lang/hun.php | 44 +++++++++ lang/hye.php | 44 +++++++++ lang/ind.php | 44 +++++++++ lang/ita.php | 44 +++++++++ lang/jpn.php | 44 +++++++++ lang/kat.php | 44 +++++++++ lang/kor.php | 44 +++++++++ lang/mkd.php | 44 +++++++++ lang/mlt.php | 44 +++++++++ lang/msa.php | 44 +++++++++ lang/nld.php | 44 +++++++++ lang/nob.php | 44 +++++++++ lang/pol.php | 44 +++++++++ lang/por.php | 44 +++++++++ lang/ron.php | 44 +++++++++ lang/rus.php | 44 +++++++++ lang/slv.php | 44 +++++++++ lang/spa.php | 44 +++++++++ lang/sqi.php | 44 +++++++++ lang/srp.php | 44 +++++++++ lang/swa.php | 44 +++++++++ lang/swe.php | 44 +++++++++ lang/ukr.php | 44 +++++++++ lang/urd.php | 44 +++++++++ lang/yid.php | 44 +++++++++ lang/zho.php | 44 +++++++++ tcpdf_include.php | 48 ++++++++++ 53 files changed, 2604 insertions(+) create mode 100755 config/tcpdf_config_alt.php create mode 100755 config/tcpdf_config_alt.php~ create mode 100755 images/_blank.png create mode 100755 images/fosseelogo.png create mode 100755 lang/afr.php create mode 100755 lang/ara.php create mode 100755 lang/aze.php create mode 100755 lang/bel.php create mode 100755 lang/bra.php create mode 100755 lang/bul.php create mode 100755 lang/cat.php create mode 100755 lang/ces.php create mode 100755 lang/chi.php create mode 100755 lang/cym.php create mode 100755 lang/dan.php create mode 100755 lang/eng.php create mode 100755 lang/est.php create mode 100755 lang/eus.php create mode 100755 lang/far.php create mode 100755 lang/fra.php create mode 100755 lang/ger.php create mode 100755 lang/gle.php create mode 100755 lang/glg.php create mode 100755 lang/hat.php create mode 100755 lang/heb.php create mode 100755 lang/hrv.php create mode 100755 lang/hun.php create mode 100755 lang/hye.php create mode 100755 lang/ind.php create mode 100755 lang/ita.php create mode 100755 lang/jpn.php create mode 100755 lang/kat.php create mode 100755 lang/kor.php create mode 100755 lang/mkd.php create mode 100755 lang/mlt.php create mode 100755 lang/msa.php create mode 100755 lang/nld.php create mode 100755 lang/nob.php create mode 100755 lang/pol.php create mode 100755 lang/por.php create mode 100755 lang/ron.php create mode 100755 lang/rus.php create mode 100755 lang/slv.php create mode 100755 lang/spa.php create mode 100755 lang/sqi.php create mode 100755 lang/srp.php create mode 100755 lang/swa.php create mode 100755 lang/swe.php create mode 100755 lang/ukr.php create mode 100755 lang/urd.php create mode 100755 lang/yid.php create mode 100755 lang/zho.php create mode 100755 tcpdf_include.php diff --git a/config/tcpdf_config_alt.php b/config/tcpdf_config_alt.php new file mode 100755 index 0000000..45b6f81 --- /dev/null +++ b/config/tcpdf_config_alt.php @@ -0,0 +1,222 @@ +. +// +// See LICENSE.TXT file for more information. +//============================================================+ + +/** + * Example of alternative configuration file for TCPDF. + * @author Nicola Asuni + * @package com.tecnick.tcpdf + * @version 4.9.005 + * @since 2004-10-27 + */ + +/** + * Define the following constant to ignore the default configuration file. + */ +define ('K_TCPDF_EXTERNAL_CONFIG', true); + +/** + * Installation path (/var/www/tcpdf/). + * By default it is automatically calculated but you can also set it as a fixed string to improve performances. + */ +//define ('K_PATH_MAIN', ''); + +/** + * URL path to tcpdf installation folder (http://localhost/tcpdf/). + * By default it is automatically set but you can also set it as a fixed string to improve performances. + */ +//define ('K_PATH_URL', ''); + +/** + * Path for PDF fonts. + * By default it is automatically set but you can also set it as a fixed string to improve performances. + */ +//define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); + +/** + * Default images directory. + * By default it is automatically set but you can also set it as a fixed string to improve performances. + */ +define ('K_PATH_IMAGES', dirname(__FILE__).'/../images/'); + +/** + * Deafult image logo used be the default Header() method. + * Please set here your own logo or an empty string to disable it. + */ +define ('PDF_HEADER_LOGO', 'fosseelogo.png'); + +/** + * Header logo image width in user units. + */ +define ('PDF_HEADER_LOGO_WIDTH', 180); + +/** + * Cache directory for temporary files (full path). + */ +define ('K_PATH_CACHE', sys_get_temp_dir().'/'); + +/** + * Generic name for a blank image. + */ +define ('K_BLANK_IMAGE', '_blank.png'); + +/** + * Page format. + */ +define ('PDF_PAGE_FORMAT', 'A4'); + +/** + * Page orientation (P=portrait, L=landscape). + */ +define ('PDF_PAGE_ORIENTATION', 'P'); + +/** + * Document creator. + */ +define ('PDF_CREATOR', 'TCPDF'); + +/** + * Document author. + */ +define ('PDF_AUTHOR', 'TCPDF'); + +/** + * Header title. + */ +define ('PDF_HEADER_TITLE', 'TCPDF Example'); + +/** + * Header description string. + */ +define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); + +/** + * Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]. + */ +define ('PDF_UNIT', 'mm'); + +/** + * Header margin. + */ +define ('PDF_MARGIN_HEADER', 2); + +/** + * Footer margin. + */ +define ('PDF_MARGIN_FOOTER', 10); + +/** + * Top margin. + */ +define ('PDF_MARGIN_TOP', 29); + +/** + * Bottom margin. + */ +define ('PDF_MARGIN_BOTTOM', 25); + +/** + * Left margin. + */ +define ('PDF_MARGIN_LEFT', 15); + +/** + * Right margin. + */ +define ('PDF_MARGIN_RIGHT', 15); + +/** + * Default main font name. + */ +define ('PDF_FONT_NAME_MAIN', 'helvetica'); + +/** + * Default main font size. + */ +define ('PDF_FONT_SIZE_MAIN', 10); + +/** + * Default data font name. + */ +define ('PDF_FONT_NAME_DATA', 'helvetica'); + +/** + * Default data font size. + */ +define ('PDF_FONT_SIZE_DATA', 8); + +/** + * Default monospaced font name. + */ +define ('PDF_FONT_MONOSPACED', 'courier'); + +/** + * Ratio used to adjust the conversion of pixels to user units. + */ +define ('PDF_IMAGE_SCALE_RATIO', 1.25); + +/** + * Magnification factor for titles. + */ +define('HEAD_MAGNIFICATION', 1.1); + +/** + * Height of cell respect font height. + */ +define('K_CELL_HEIGHT_RATIO', 1.25); + +/** + * Title magnification respect main font size. + */ +define('K_TITLE_MAGNIFICATION', 1.3); + +/** + * Reduction factor for small font. + */ +define('K_SMALL_RATIO', 2/3); + +/** + * Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language. + */ +define('K_THAI_TOPCHARS', true); + +/** + * If true allows to call TCPDF methods using HTML syntax + * IMPORTANT: For security reason, disable this feature if you are printing user HTML content. + */ +define('K_TCPDF_CALLS_IN_HTML', true); + +/** + * If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution. + */ +define('K_TCPDF_THROW_EXCEPTION_ERROR', false); + +//============================================================+ +// END OF FILE +//============================================================+ diff --git a/config/tcpdf_config_alt.php~ b/config/tcpdf_config_alt.php~ new file mode 100755 index 0000000..6723391 --- /dev/null +++ b/config/tcpdf_config_alt.php~ @@ -0,0 +1,222 @@ +. +// +// See LICENSE.TXT file for more information. +//============================================================+ + +/** + * Example of alternative configuration file for TCPDF. + * @author Nicola Asuni + * @package com.tecnick.tcpdf + * @version 4.9.005 + * @since 2004-10-27 + */ + +/** + * Define the following constant to ignore the default configuration file. + */ +define ('K_TCPDF_EXTERNAL_CONFIG', true); + +/** + * Installation path (/var/www/tcpdf/). + * By default it is automatically calculated but you can also set it as a fixed string to improve performances. + */ +//define ('K_PATH_MAIN', ''); + +/** + * URL path to tcpdf installation folder (http://localhost/tcpdf/). + * By default it is automatically set but you can also set it as a fixed string to improve performances. + */ +//define ('K_PATH_URL', ''); + +/** + * Path for PDF fonts. + * By default it is automatically set but you can also set it as a fixed string to improve performances. + */ +//define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); + +/** + * Default images directory. + * By default it is automatically set but you can also set it as a fixed string to improve performances. + */ +define ('K_PATH_IMAGES', dirname(__FILE__).'/../images/'); + +/** + * Deafult image logo used be the default Header() method. + * Please set here your own logo or an empty string to disable it. + */ +define ('PDF_HEADER_LOGO', 'fosseelogo.png'); + +/** + * Header logo image width in user units. + */ +define ('PDF_HEADER_LOGO_WIDTH', 180); + +/** + * Cache directory for temporary files (full path). + */ +define ('K_PATH_CACHE', sys_get_temp_dir().'/'); + +/** + * Generic name for a blank image. + */ +define ('K_BLANK_IMAGE', '_blank.png'); + +/** + * Page format. + */ +define ('PDF_PAGE_FORMAT', 'A4'); + +/** + * Page orientation (P=portrait, L=landscape). + */ +define ('PDF_PAGE_ORIENTATION', 'P'); + +/** + * Document creator. + */ +define ('PDF_CREATOR', 'TCPDF'); + +/** + * Document author. + */ +define ('PDF_AUTHOR', 'TCPDF'); + +/** + * Header title. + */ +define ('PDF_HEADER_TITLE', 'TCPDF Example'); + +/** + * Header description string. + */ +define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org"); + +/** + * Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]. + */ +define ('PDF_UNIT', 'mm'); + +/** + * Header margin. + */ +define ('PDF_MARGIN_HEADER', 2); + +/** + * Footer margin. + */ +define ('PDF_MARGIN_FOOTER', 10); + +/** + * Top margin. + */ +define ('PDF_MARGIN_TOP', 27); + +/** + * Bottom margin. + */ +define ('PDF_MARGIN_BOTTOM', 25); + +/** + * Left margin. + */ +define ('PDF_MARGIN_LEFT', 15); + +/** + * Right margin. + */ +define ('PDF_MARGIN_RIGHT', 15); + +/** + * Default main font name. + */ +define ('PDF_FONT_NAME_MAIN', 'helvetica'); + +/** + * Default main font size. + */ +define ('PDF_FONT_SIZE_MAIN', 10); + +/** + * Default data font name. + */ +define ('PDF_FONT_NAME_DATA', 'helvetica'); + +/** + * Default data font size. + */ +define ('PDF_FONT_SIZE_DATA', 8); + +/** + * Default monospaced font name. + */ +define ('PDF_FONT_MONOSPACED', 'courier'); + +/** + * Ratio used to adjust the conversion of pixels to user units. + */ +define ('PDF_IMAGE_SCALE_RATIO', 1.25); + +/** + * Magnification factor for titles. + */ +define('HEAD_MAGNIFICATION', 1.1); + +/** + * Height of cell respect font height. + */ +define('K_CELL_HEIGHT_RATIO', 1.25); + +/** + * Title magnification respect main font size. + */ +define('K_TITLE_MAGNIFICATION', 1.3); + +/** + * Reduction factor for small font. + */ +define('K_SMALL_RATIO', 2/3); + +/** + * Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language. + */ +define('K_THAI_TOPCHARS', true); + +/** + * If true allows to call TCPDF methods using HTML syntax + * IMPORTANT: For security reason, disable this feature if you are printing user HTML content. + */ +define('K_TCPDF_CALLS_IN_HTML', true); + +/** + * If true and PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution. + */ +define('K_TCPDF_THROW_EXCEPTION_ERROR', false); + +//============================================================+ +// END OF FILE +//============================================================+ diff --git a/images/_blank.png b/images/_blank.png new file mode 100755 index 0000000..38f7b2f Binary files /dev/null and b/images/_blank.png differ diff --git a/images/fosseelogo.png b/images/fosseelogo.png new file mode 100755 index 0000000..1421c65 Binary files /dev/null and b/images/fosseelogo.png differ diff --git a/lang/afr.php b/lang/afr.php new file mode 100755 index 0000000..367b7e8 --- /dev/null +++ b/lang/afr.php @@ -0,0 +1,44 @@ +