2010-10-27 17:14:44 +00:00
|
|
|
<?php
|
|
|
|
//============================================================+
|
|
|
|
// File name : hrv.php
|
|
|
|
// Begin : 2010-10-26
|
|
|
|
// Last Update : 2010-10-26
|
|
|
|
//
|
|
|
|
// Description : Language module for TCPDF
|
|
|
|
// (contains translated texts)
|
|
|
|
// Croatian
|
|
|
|
//
|
|
|
|
// Author: Nicola Asuni
|
|
|
|
//
|
|
|
|
// (c) Copyright:
|
|
|
|
// Nicola Asuni
|
|
|
|
// Tecnick.com s.r.l.
|
|
|
|
// Via Della Pace, 11
|
|
|
|
// 09044 Quartucciu (CA)
|
|
|
|
// ITALY
|
|
|
|
// www.tecnick.com
|
|
|
|
// info@tecnick.com
|
|
|
|
//============================================================+
|
|
|
|
|
|
|
|
/**
|
|
|
|
* TCPDF language file (contains translated texts).
|
|
|
|
* @package com.tecnick.tcpdf
|
2010-12-16 15:28:54 +00:00
|
|
|
* @brief TCPDF language file: Croatian
|
2010-10-27 17:14:44 +00:00
|
|
|
* @author Nicola Asuni
|
|
|
|
* @since 2010-10-26
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Croatian
|
|
|
|
|
|
|
|
global $l;
|
|
|
|
$l = Array();
|
|
|
|
|
|
|
|
// PAGE META DESCRIPTORS --------------------------------------
|
|
|
|
|
|
|
|
$l['a_meta_charset'] = 'UTF-8';
|
|
|
|
$l['a_meta_dir'] = 'ltr';
|
|
|
|
$l['a_meta_language'] = 'hr';
|
|
|
|
|
|
|
|
// TRANSLATIONS --------------------------------------
|
|
|
|
$l['w_page'] = 'stranica';
|
|
|
|
|
|
|
|
//============================================================+
|
|
|
|
// END OF FILE
|
|
|
|
//============================================================+
|