index.php
changeset 0 c270c8b5ddea
equal deleted inserted replaced
-1:000000000000 0:c270c8b5ddea
       
     1 <?php
       
     2 /***** Informació de LOCALE *****/
       
     3 echo setlocale(LC_ALL, 'ca_XX');
       
     4 $textdomain = "butxaques";
       
     5 bindtextdomain($textdomain, "./locale");
       
     6 textdomain($textdomain);
       
     7 bind_textdomain_codeset($textdomain, "utf-8");
       
     8 ?>
       
     9 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
       
    10 <html>
       
    11 <head>
       
    12 <title><?php echo _("Control de butxaques") . " - " . _("Nou ingrés/despesa");?></title>
       
    13 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
       
    14 </head>
       
    15 
       
    16 <body>
       
    17 <?php
       
    18 echo "<h1 align=center>" . _("Control de butxaques") . "</h1>\n";
       
    19 echo "<h2" . _("Nou ingrés/despesa") . "</h1>\n";
       
    20 ?>
       
    21 <center>
       
    22 <table border=1>
       
    23 <tr>
       
    24 	<th><?php echo _("Ingressos/Despeses") ?>
       
    25 	<th><?php echo _("Moviments entre butxaques") ?>
       
    26 	<th><?php echo _("Butxaques") ?>
       
    27 <tr>
       
    28 	<td align=center><a href="update-ingres"><?php
       
    29 		echo _("Nou Ingrés/Despesa") ?></a>
       
    30 	<td align=center><a href="update-moviment"><?php
       
    31 		echo _("Nou Moviment") ?></a>
       
    32 	<td align=center><a href="update-butxaca"><?php
       
    33 		echo _("Nova Butxaca") ?></a>
       
    34 <tr>
       
    35 	<td align=center><a href="llista-ingressos"><?php
       
    36 		echo _("Llista d'Ingressos/Despeses") ?></a>
       
    37 	<td align=center><a href="llista-moviments"><?php
       
    38 		echo _("Llista de Moviments") ?></a>
       
    39 	<td align=center><a href="llista-butxaques"><?php
       
    40 		echo _("Llista de Butxaques") ?></a>
       
    41 <tr>
       
    42 	<td align=center COLSPAN=3><a href="status-butxaques"><?php
       
    43 		echo _("Estat de les butxaques") ?></a>
       
    44 </table>
       
    45 </center>
       
    46 
       
    47 
       
    48 </body>
       
    49 </html>