Module: tools Branch: master Commit: e4e36ba14b3ba87b6392e14293a827d0d4c917d6 URL: http://source.winehq.org/git/tools.git/?a=commit;h=e4e36ba14b3ba87b6392e1429...
Author: Mikolaj Zalewski mikolajz@tygrys.dom Date: Wed Mar 5 21:11:51 2008 +0100
small fixes
---
php/index.php | 2 +- php/lang.php | 2 +- scripts/Master.sh | 4 ++-- scripts/checkmakefile.pl | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/php/index.php b/php/index.php index bad3274..b8f0f7d 100644 --- a/php/index.php +++ b/php/index.php @@ -29,7 +29,7 @@ while ($line = fgets($summary, 1024)) <p>This page shows the state of the translations of <a href="http://www.winehq.org/">Wine</a>. Note that some resources marked as translated may be in fact in English - sometimes developers add new English resources into every language file. This automatic tool doesn't detect this - -this needs to be found manually by the translators. If you would like to read about how to +it needs to be found manually by the translators. If you would like to read about how to improve Wine translations check <?php echo $WINE_WIKI_TRANSLATIONS ?>. </p>
diff --git a/php/lang.php b/php/lang.php index 008ba45..ef92883 100644 --- a/php/lang.php +++ b/php/lang.php @@ -39,7 +39,7 @@ ksort($notransl); <html> <head> <link rel="stylesheet" href="style.css" type="text/css"/> - <title>Language <?php echo get_lang_name($lang) ?> - Wine translations</title> + <title><?php echo get_lang_name($lang) ?> language - Wine translations</title> </head>
<?php diff --git a/scripts/Master.sh b/scripts/Master.sh index a618b9d..c936830 100755 --- a/scripts/Master.sh +++ b/scripts/Master.sh @@ -23,14 +23,14 @@ mv -f $WORKDIR/run.log $WORKDIR/run.log.old
if [ "$PREPARE_TREES" -eq 1 ]; then # Prepare the trees (they may be the same or different) - if [ "x$NO_VERBOSE" = "x" ]; then + if [ "x$NOVERBOSE" = "x" ]; then echo -n "Preparing tree(s)..." fi make -C "$WRCROOT" depend >/dev/null 2>>"$WORKDIR/run.log" || die "make depend in wrc tree failed" make -C "$WRCROOT" tools >/dev/null 2>>"$WORKDIR/run.log" || die "make tools in wrc tree failed" make -C "$SOURCEROOT" depend >/dev/null 2>>"$WORKDIR/run.log" || die "make depend in source tree failed" make -C "$SOURCEROOT" include/stdole2.tlb >/dev/null 2>>"$WORKDIR/run.log" || die "make depend in source tree failed" - if [ "x$NO_VERBOSE" = "x" ]; then + if [ "x$NOVERBOSE" = "x" ]; then echo " done" fi fi diff --git a/scripts/checkmakefile.pl b/scripts/checkmakefile.pl index a2b3ecd..6119eca 100755 --- a/scripts/checkmakefile.pl +++ b/scripts/checkmakefile.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl
# Helper script - analyze one Makefile, run wrc --verify-translation -# on resource files and call ver.sh to parse the results +# on resource files and call ver.pl to parse the results
use Cwd;