Paul Vriens : transl: Group languages with the same translation percentage visually together.

Alexandre Julliard julliard at winehq.org
Tue Aug 4 09:28:08 CDT 2009


Module: tools
Branch: master
Commit: 350a8117569dfa90e1203cef647bede6f03dca83
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=350a8117569dfa90e1203cef647bede6f03dca83

Author: Paul Vriens <Paul.Vriens.Wine at gmail.com>
Date:   Fri Jul 31 20:15:38 2009 +0200

transl: Group languages with the same translation percentage visually together.

---

 transl/php/index.php |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/transl/php/index.php b/transl/php/index.php
index 5a1772e..77c3e4b 100644
--- a/transl/php/index.php
+++ b/transl/php/index.php
@@ -94,7 +94,10 @@ for ($i = 0; $i < count($transl); $i++)
             if ($translated != $transl[$j]['translated'])
                 break;
         $serial = $j - $i;
-        echo "<td rowspan=\"$serial\" style=\"text-align: center\">$nr";
+        if ($serial > 1)
+            echo "<td rowspan=\"$serial\" style=\"text-align: center; border-right: thin solid #601919;\">$nr";
+        else
+            echo "<td rowspan=\"$serial\" style=\"text-align: center\">$nr";
         echo "</td>";
     }
     echo "<td>".gen_lang_a($langid).$name."</a></td>";




More information about the wine-cvs mailing list