X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbriskin5%2FObj%2Fbriskin5.phh;h=1b7c210bf85ec0df4494b3570c5237baf6166e35;hb=5fda3c80a4632c11291b414f7f0cc0caf32cdbaa;hp=99085a8a6d4f97cd85c473cf9e3ad65ebed7c36c;hpb=f9a43770d979532e374b6f724e6303eb16b9afa0;p=brisk.git diff --git a/web/briskin5/Obj/briskin5.phh b/web/briskin5/Obj/briskin5.phh index 99085a8..1b7c210 100644 --- a/web/briskin5/Obj/briskin5.phh +++ b/web/briskin5/Obj/briskin5.phh @@ -37,8 +37,13 @@ define('BIN5_RULES_ALLPASS', 2); $mlang_bin5_bin5 = array( // br, hr, b, /b, win, fri - 'info_part' => array( 'it' => 'Nell\'ultima mano ha chiamato %3$s%5$s%4$s, il socio era %3$s%6$s%4$s,%1$s', - 'en' => 'In the last hand the declarer was %3$s%5$s%4$s, the partner was %3$s%6$s%4$s,%1$s'), + 'info_last' => array( 'it' => '%3$sultima mano%4$s', + 'en' => '%3$slast hand%4$s'), + 'info_curr' => array( 'it' => '%3$smano corrente%4$s', + 'en' => '%3$scurrent hand%4$s'), + // br, hr, b, /b, win, fri + 'info_part' => array( 'it' => 'Ha chiamato %3$s%5$s%4$s, il socio era %3$s%6$s%4$s,%1$s', + 'en' => 'The declarer was %3$s%5$s%4$s, the partner was %3$s%6$s%4$s,%1$s'), // br, hr, b, /b 'info_capp' => array( 'it' => 'hanno fatto %3$scappotto%4$s EBBRAVI!.%1$s', 'en' => 'and they made %3Dscapot%4$s WELL DONE!.%1$s'), @@ -57,8 +62,8 @@ $mlang_bin5_bin5 = array( 'en' => 'lost'), // br, hr, b, /b, win_name - 'info_alon' => array( 'it' => 'Nell\'ultima partita %3$s%5$s%4$s si è chiamato in mano,%1$s', - 'en' => 'In the last hand %3$s%5$s%4$s play alone against each other,%1$s'), + 'info_alon' => array( 'it' => '%3$s%5$s%4$s si è chiamato in mano,%1$s', + 'en' => '%3$s%5$s%4$s play alone against each other,%1$s'), // br, hr, b, /b, old_asta_pnt, old_pnt, winornot 'info_aleaa' => array( 'it' => 'doveva fare %3$salmeno %5$d%4$s punti e ne ha fatti %3$s%6$d%4$s: ha %3$s%7$s%4$s.%1$s', 'en' => 'he/she had to do %3$sat least %5$d%4$s points and they had made %3$s%6$d%4$s: he/she had %3$s%7$s%4$s.%1$s'), @@ -628,8 +633,12 @@ class Bin5_table extends Table { $this->old_friend = $this->friend; $this->old_reason = game_description($action, 'html', $this->old_mult, - $this->old_asta_win, $bri->user[$this->player[$this->old_asta_win]]->name, - $this->old_friend, $bri->user[$this->player[$this->old_friend]]->name, + $this->old_asta_win, + ($this->old_asta_win != -1 ? + $bri->user[$this->player[$this->old_asta_win]]->name : ""), + $this->old_friend, + ($this->old_friend != -1 ? + $bri->user[$this->player[$this->old_friend]]->name : ""), $this->old_pnt, $this->old_asta_pnt); @@ -1630,6 +1639,9 @@ function show_table(&$bri, &$user, $sendstep, $is_transition, $is_again) $ret .= show_table_info(&$bri, &$table, $table_pos); $ret .= "setTimeout(preload_images, 500, g_preload_img_arr, g_imgct);"; } + else { + $ret .= "\$('imgct').innerHTML = \$('imgct').innerHTML = mlang_commons['imgload_a'][g_lang]+\"100%.\";"; + } if (!$is_again) $ret .= table_welcome($user); @@ -1821,6 +1833,11 @@ function show_table_info(&$bri, &$table, $table_pos) { GLOBAL $G_lang, $mlang_bin5_bin5; + $tg_br = "
"; + $tg_hr = "
"; + $tg_bo = ""; + $tg_bc = ""; + $ret = ""; $user = $bri->user[$table->player[$table_pos]]; @@ -1849,9 +1866,15 @@ function show_table_info(&$bri, &$table, $table_pos) $noty .= ""; $noty .= "
"; if ($table->old_reason != "") { + $noty .= sprintf($mlang_bin5_bin5['info_last'][$G_lang], + $tg_br, $tg_hr, $tg_bo, $tg_bc); + $noty .= '
'; $noty .= $table->old_reason; } + $noty .= sprintf($mlang_bin5_bin5['info_curr'][$G_lang], + $tg_br, $tg_hr, $tg_bo, $tg_bc); + $noty .= '
'; /* MLANG: "Fai tu il mazzo,", "Il mazzo a $unam," */ if ($table->mazzo == $table_pos) $noty .= $mlang_bin5_bin5['info_yshuf'][$G_lang]; @@ -1883,10 +1906,10 @@ function show_table_info(&$bri, &$table, $table_pos) if ($multer > 1) { $noty .= sprintf($mlang_bin5_bin5['info_mult'][$G_lang], multoval($multer) ); } - $noty .= "

"; + $noty .= "
"; if ($table->match_id != -1) { $noty .= sprintf($mlang_bin5_bin5['info_match'][$G_lang], $table->match_id); - $noty .= "

"; + $noty .= "
"; } $ret .= show_notify($noty, 3000, $mlang_bin5_bin5['btn_bkgame'][$G_lang], 500, 400); /* NOTE: show_notify($noty, 3000, "torna alla partita", 500, @@ -2076,7 +2099,7 @@ function game_description($act, $form, $old_mult, $win = -1, $win_name = "?1?", $tg_br, $tg_hr, $tg_bo, $tg_bc, multoval($old_multer)); } - $noty .= sprintf('%2$s%1$s', $tg_br, $tg_hr); + $noty .= sprintf('%2$s', $tg_br, $tg_hr); return ($noty); }