Fix rounding option: correct choice is 'round down' or 'no rounding'
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
<tool key="translate" class="org.jeudego.pairgoth.view.TranslationTool"/>
|
||||
<tool key="strings" class="org.apache.commons.lang3.StringUtils"/>
|
||||
<tool key="utils" class="org.jeudego.pairgoth.view.PairgothTool"/>
|
||||
<tool key="number" locale="en_US"/>
|
||||
<!--
|
||||
<tool key="number" format="#0.00"/>
|
||||
<tool key="date" locale="fr_FR" format="yyyy-MM-dd"/>
|
||||
|
@@ -204,3 +204,4 @@ Pairgoth mailing list liste de diffusion Pairgoth
|
||||
to be notified about updates and to discuss the software. pour être mis au courant des mises à jour et pour discuter du logiciel.
|
||||
(give us a star if you have a github account!) (donnez-nous une étoile si vous avez un compte github !)
|
||||
Clear results Effacer les résultats
|
||||
round down NBW/MMS score arrondir le score NBW/MMS à l'entier inférieur
|
||||
|
@@ -256,3 +256,4 @@ rather than pairing players of the same country. 점 차이를 선호
|
||||
rather than pairing players of the same club. 동일 클럽 선수끼리 매칭하는 것보다 3점 차이를 선호
|
||||
use MMS rather than rank for handicap 핸디캡에는 랭킹 대신 MMS 사용
|
||||
Handicap ceiling: 핸디캡 상한:
|
||||
round down NBW/MMS score 라운드 내림 라운드 NBW/MMS
|
||||
|
@@ -14,14 +14,7 @@
|
||||
#if($tour.pairing.type == 'MAC_MAHON')
|
||||
<div class="inline fields">
|
||||
<div class="field">
|
||||
<label>
|
||||
Round
|
||||
<select name="roundDownScore">
|
||||
<option value="true" #if($tour.pairing.main.roundDownScore) selected #end>down</option>
|
||||
<option value="false" #if(!$tour.pairing.main.roundDownScore) selected #end>up</option>
|
||||
</select>
|
||||
NBW/MMS score
|
||||
</label>
|
||||
<label><input type="checkbox" name="roundDownScore" value="true" #if($tour.pairing.main.roundDownScore) checked #end> round down NBW/MMS score</label>
|
||||
</div>
|
||||
</div>
|
||||
#end
|
||||
|
@@ -97,7 +97,8 @@
|
||||
<td class="nobreak game-result" #if($opponent)title="$esc.html($opponent.name)#if($opponent.firstname) $esc.html($opponent.firstname)#end #rank($opponent.rank)#if($opponent.country) $opponent.country#end"#end>$rst</td>
|
||||
#end
|
||||
#foreach($crit in $criteres)
|
||||
<td>$number.format('0.#', $part[$crit])</td>
|
||||
#set($value = "$number.format('0.#', $part[$crit])")
|
||||
<td data-sort="$value">$value.replace('.5', '½')</td>
|
||||
#end
|
||||
</tr>
|
||||
#end
|
||||
|
Reference in New Issue
Block a user