]> git.wh0rd.org - tt-rss.git/blobdiff - update.php
French translation update : new or modified strigs.
[tt-rss.git] / update.php
index 6850f1fb2cd528449470587c128b5de452408116..9c62ccb2a58ca7a5e112ceb6c06aa463613b9a0b 100755 (executable)
@@ -37,7 +37,7 @@
                        "help");
 
        foreach ($pluginhost->get_commands() as $command => $data) {
-               array_push($longopts, $command);
+               array_push($longopts, $command . $data["suffix"]);
        }
 
        $options = getopt("", $longopts);
@@ -51,7 +51,7 @@
                </head>
 
                <body>
-               <div class="floatingLogo"><img src="images/logo_wide.png"></div>
+               <div class="floatingLogo"><img src="images/logo_small.png"></div>
                <h1><?php echo __("Tiny Tiny RSS data update script.") ?></h1>
 
                <?php print_error("Please run this script from the command line. Use option \"-help\" to display command help if this error is displayed erroneously."); ?>
@@ -79,7 +79,8 @@
                print "Plugin options:\n";
 
                foreach ($pluginhost->get_commands() as $command => $data) {
-                       printf("  --%-19s - %s\n", "$command", $data["description"]);
+                       $args = $data['arghelp'];
+                       printf(" --%-19s - %s\n", "$command $args", $data["description"]);
                }
 
                return;