Bestehende Codebasis als Ausgangsstand aufgenommen. - .gitignore: Kundendaten (uploads_*), Smarty-Compile-Cache (templates_c), Laufzeit-Temp und Datenbank-Dumps ausgeschlossen; Verzeichnisstruktur ueber .gitkeep erhalten - .gitattributes: Zeilenenden normalisiert (LF im Repo), Binaerformate markiert - db-backup.php: MySQL-Zugangsdaten kommen jetzt wie im Rest der Anwendung aus der externen Konfiguration statt hartkodiert aus der Datei; Passwort wird ueber eine temporaere Optionsdatei statt per Kommandozeile uebergeben, Fehler von mysqldump/gzip werden gemeldet, Aufraeumen aelterer Backups berechnet Jahr und Monat konsistent Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?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
|
|
// 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: 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
|
|
//============================================================+
|