From c68ea62111d8051be517087947a574b17a2b18c3 Mon Sep 17 00:00:00 2001 From: Srikanth Kandi <20761A0589@lbrce.onmicrosoft.com> Date: Sat, 30 Mar 2024 17:10:10 +0530 Subject: [PATCH] final touchup --- src/content/learn/tutorial-tic-tac-toe.md | 68 +++++++++++------------ 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/src/content/learn/tutorial-tic-tac-toe.md b/src/content/learn/tutorial-tic-tac-toe.md index fc1fe261..fd61ce02 100644 --- a/src/content/learn/tutorial-tic-tac-toe.md +++ b/src/content/learn/tutorial-tic-tac-toe.md @@ -57,9 +57,9 @@ function Board({ xIsNext, squares, onPlay }) { const winner = calculateWinner(squares); let status; if (winner) { - status = 'Winner: ' + winner; + status = 'విజేత: ' + winner; } else { - status = 'Next player: ' + (xIsNext ? 'X' : 'O'); + status = 'నెక్స్ట్ ప్లేయర్: ' + (xIsNext ? 'X' : 'O'); } return ( @@ -103,9 +103,9 @@ export default function Game() { const moves = history.map((squares, move) => { let description; if (move > 0) { - description = 'Go to move #' + move; + description = '#' + move + ' కదలికకు వెళ్లండి'; } else { - description = 'Go to game start'; + description = 'ఆట ప్రారంభానికి వెళ్లండి'; } return (
  • @@ -1342,7 +1342,7 @@ DOM `