Changeset 1505
- Timestamp:
- 03/15/06 21:31:58 (7 years ago)
- Location:
- trunk/bureau
- Files:
-
- 11 edited
-
admin/menu_stats.php (modified) (1 diff)
-
admin/sta_add.php (modified) (2 diffs)
-
admin/sta_del.php (modified) (1 diff)
-
admin/sta_doadd.php (modified) (1 diff)
-
admin/sta_doedit.php (modified) (1 diff)
-
admin/sta_edit.php (modified) (1 diff)
-
admin/sta_list.php (modified) (4 diffs)
-
locales/en_US/LC_MESSAGES/stats.po (modified) (3 diffs)
-
locales/es_ES/LC_MESSAGES/stats.po (modified) (3 diffs)
-
locales/fr_FR/LC_MESSAGES/stats_manual.po (modified) (3 diffs)
-
locales/stats_manual.po (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bureau/admin/menu_stats.php
r1439 r1505 35 35 ?> 36 36 <tr><td nowrap="nowrap"> 37 <a href=" sta_list.php"><?php __("Web Statistics"); ?></a><br />37 <a href="webalizer_list.php"><?php __("Web Statistics"); ?></a><br /> 38 38 </td></tr> 39 39 <?php } ?> -
trunk/bureau/admin/sta_add.php
r1439 r1505 45 45 } 46 46 ?> 47 <form method="post" action=" sta_doadd.php" id="main" name="main">47 <form method="post" action="webalizer_doadd.php" id="main" name="main"> 48 48 <table border="1" cellspacing="0" cellpadding="4"> 49 49 <tr><th><input type="hidden" name="id" value="<?php echo $id ?>" /> … … 62 62 </table> 63 63 </form> 64 <?php $mem->show_help(" sta_add"); ?>64 <?php $mem->show_help("webalizer_add"); ?> 65 65 66 66 </body> -
trunk/bureau/admin/sta_del.php
r1439 r1505 45 45 } 46 46 47 include(" sta_list.php");47 include("webalizer_list.php"); 48 48 exit(); 49 49 ?> -
trunk/bureau/admin/sta_doadd.php
r1439 r1505 33 33 if (!$r) { 34 34 $error=$err->errstr(); 35 include(" sta_add.php");35 include("webalizer_add.php"); 36 36 exit(); 37 37 } else { 38 38 $error=_("The statistics has been successfully created"); 39 include(" sta_list.php");39 include("webalizer_list.php"); 40 40 exit(); 41 41 } -
trunk/bureau/admin/sta_doedit.php
r1439 r1505 36 36 if (!$r) { 37 37 $error=$err->errstr(); 38 include(" sta_edit.php");38 include("webalizer_edit.php"); 39 39 exit(); 40 40 } else { 41 41 $error=_("The Statistics has been successfully changed"); 42 include(" sta_list.php");42 include("webalizer_list.php"); 43 43 exit(); 44 44 } -
trunk/bureau/admin/sta_edit.php
r1439 r1505 50 50 } 51 51 ?> 52 <form method="post" action=" sta_doedit.php" id="main" name="main">52 <form method="post" action="webalizer_doedit.php" id="main" name="main"> 53 53 <table border="1" cellspacing="0" cellpadding="4"> 54 54 <tr><th><input type="hidden" name="id" value="<?php echo $id ?>" /> -
trunk/bureau/admin/sta_list.php
r1444 r1505 44 44 if ($quota->cancreate("stats")) { ?> 45 45 <p> 46 - <a href=" sta_add.php"><?php __("Create new Statistics"); ?></a><br />46 - <a href="webalizer_add.php"><?php __("Create new Statistics"); ?></a><br /> 47 47 </p> 48 48 <?php } … … 56 56 57 57 <p> 58 <?php __("help_sta_list"); ?>58 <?php __("Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'"); ?> 59 59 </p> 60 <form method="post" action=" sta_del.php">60 <form method="post" action="webalizer_del.php"> 61 61 <table cellspacing="0" cellpadding="4"> 62 62 <tr><th colspan="2"> </th><th><?php __("Domain name"); ?></th><th><?php __("Language"); ?></th><th><?php __("Folder"); ?></th><th><?php __("View"); ?></th></tr> … … 70 70 <tr class="lst<?php echo $col; ?>"> 71 71 <td><input type="checkbox" class="inc" id="del_<?php echo $val["id"]; ?>" name="del_<?php echo $val["id"]; ?>" value="<?php echo $val["id"]; ?>" /></td> 72 <td><a href=" sta_edit.php?id=<?php echo $val["id"] ?>"><?php __("Edit"); ?></a></td>72 <td><a href="webalizer_edit.php?id=<?php echo $val["id"] ?>"><?php __("Edit"); ?></a></td> 73 73 <td><label for="del_<?php echo $val["id"]; ?>"><?php echo $val["hostname"] ?></label></td> 74 74 <td><?php echo _($stats->langname[$val["lang"]]); ?></td> … … 87 87 </form> 88 88 89 <?php $mem->show_help(" sta_list");89 <?php $mem->show_help("webalizer_list"); 90 90 91 91 } -
trunk/bureau/locales/en_US/LC_MESSAGES/stats.po
r1471 r1505 1 # SOME DESCRIPTIVE TITLE. 2 # Copyright (C) YEAR Free Software Foundation, Inc. 3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. 4 # 5 #, fuzzy 6 msgid "" 7 msgstr "" 8 "Project-Id-Version: PACKAGE VERSION\n" 9 "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" 10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 11 "Language-Team: LANGUAGE <LL@li.org>\n" 12 "MIME-Version: 1.0\n" 13 "Content-Type: text/plain; charset=CHARSET\n" 14 "Content-Transfer-Encoding: 8bit\n" 15 1 16 # English AlternC Translation 2 17 # Copyright (c) 2002 the AlternC Development Team … … 36 51 msgstr "This language is not supported." 37 52 38 msgid " help_sta_list"39 msgstr " "53 msgid "Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'" 54 msgstr "Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'" 40 55 41 56 msgid "Web Statistics" … … 90 105 msgstr "Byte" 91 106 92 msgid " hlp_sta_add"93 msgstr " "107 msgid "Enter the domain name you wish to obtain statistics from. <br />Then choose the language in which those stats should be generated. <br />Finally, choose the directeory in your file space in which those directories should be stored (in the form of HTML + images). <br />It is recommended that this domain be accessible from one of your domains/subdomains. Also, you can protect this directory with the 'protected directories' menu." 108 msgstr "Enter the domain name you wish to obtain statistics from. <br />Then choose the language in which those stats should be generated. <br />Finally, choose the directeory in your file space in which those directories should be stored (in the form of HTML + images). <br />It is recommended that this domain be accessible from one of your domains/subdomains. Also, you can protect this directory with the 'protected directories' menu." 94 109 -
trunk/bureau/locales/es_ES/LC_MESSAGES/stats.po
r1471 r1505 1 # SOME DESCRIPTIVE TITLE. 2 # Copyright (C) YEAR Free Software Foundation, Inc. 3 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. 4 # 5 #, fuzzy 6 msgid "" 7 msgstr "" 8 "Project-Id-Version: PACKAGE VERSION\n" 9 "PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n" 10 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 11 "Language-Team: LANGUAGE <LL@li.org>\n" 12 "MIME-Version: 1.0\n" 13 "Content-Type: text/plain; charset=CHARSET\n" 14 "Content-Transfer-Encoding: 8bit\n" 15 1 16 # English AlternC Translation 2 17 # Copyright (c) 2002 the AlternC Development Team … … 40 55 msgstr "Este idioma no está disponible." 41 56 42 msgid " help_sta_list"57 msgid "Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'" 43 58 msgstr "" 44 59 "Aquí tiene la lista de los juegos de estatísticas installadas en su cuenta:" … … 105 120 msgstr "Byte" 106 121 107 #, fuzzy 108 msgid "hlp_sta_add" 122 msgid "Enter the domain name you wish to obtain statistics from. <br />Then choose the language in which those stats should be generated. <br />Finally, choose the directeory in your file space in which those directories should be stored (in the form of HTML + images). <br />It is recommended that this domain be accessible from one of your domains/subdomains. Also, you can protect this directory with the 'protected directories' menu." 109 123 msgstr "" 110 124 "Entrez le nom du domaine dont vous souhaitez obtenir des statistiques de " -
trunk/bureau/locales/fr_FR/LC_MESSAGES/stats_manual.po
r1458 r1505 72 72 msgstr "Créer un jeu de statistiques" 73 73 74 msgid " help_sta_list"74 msgid "Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'" 75 75 msgstr "" 76 76 "Voici la liste des jeux de statistiques installés sur votre compte :<br /" … … 85 85 msgstr "Octet" 86 86 87 msgid " hlp_sta_list"87 msgid "Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'" 88 88 msgstr "" 89 89 "Un 'jeu de statistiques' vous permet de demander la création quotidienne " … … 95 95 "statistiques web dans l'aide en ligne HELPID_200<br />" 96 96 97 msgid " hlp_sta_add"97 msgid "Enter the domain name you wish to obtain statistics from. <br />Then choose the language in which those stats should be generated. <br />Finally, choose the directeory in your file space in which those directories should be stored (in the form of HTML + images). <br />It is recommended that this domain be accessible from one of your domains/subdomains. Also, you can protect this directory with the 'protected directories' menu." 98 98 msgstr "" 99 99 "Entrez le nom du domaine dont vous souhaitez obtenir des statistiques de " -
trunk/bureau/locales/stats_manual.po
r1471 r1505 70 70 msgstr "" 71 71 72 msgid " help_sta_list"72 msgid "Here is the list of the statistics sets installed in your account :<br />Click on 'Modify' to change the statistics configuration<br />To delete a stats set, check the corresponding checkbox and click on 'Delete the checked Statistics'" 73 73 msgstr "" 74 74 … … 79 79 msgstr "" 80 80 81 msgid "hlp_sta_list" 82 msgstr "" 83 84 msgid "hlp_sta_add" 81 msgid "Enter the domain name you wish to obtain statistics from. <br />Then choose the language in which those stats should be generated. <br />Finally, choose the directeory in your file space in which those directories should be stored (in the form of HTML + images). <br />It is recommended that this domain be accessible from one of your domains/subdomains. Also, you can protect this directory with the 'protected directories' menu." 85 82 msgstr "" 86 83
Note: See TracChangeset
for help on using the changeset viewer.
