@@ -109,15 +109,15 @@ export const UpdateChecker = () => {
109109 const getStateMessage = ( ) => {
110110 switch ( updateState ) {
111111 case "checking" :
112- return "Verificando atualizações ..." ;
112+ return "Checking for updates ..." ;
113113 case "downloading" :
114- return "Baixando atualização ..." ;
114+ return "Downloading update ..." ;
115115 case "ready" :
116- return "Atualização baixada e pronta para instalar " ;
116+ return "Update downloaded and ready to install " ;
117117 case "installing" :
118- return "Instalando atualização ..." ;
118+ return "Installing update ..." ;
119119 case "error" :
120- return `Erro : ${ error } ` ;
120+ return `Error : ${ error } ` ;
121121 default :
122122 return "" ;
123123 }
@@ -130,7 +130,7 @@ export const UpdateChecker = () => {
130130 < button
131131 onClick = { ( ) => setShowSettings ( true ) }
132132 className = "flex cursor-pointer items-center justify-center text-gray-500 hover:text-gray-700"
133- title = "Configurações de atualização "
133+ title = "Update settings "
134134 >
135135 < Settings className = "w-4 h-4" />
136136 </ button >
@@ -155,7 +155,7 @@ export const UpdateChecker = () => {
155155 { showTooltip && updateState === "available" && updateInfo && (
156156 < div
157157 className = { clsx (
158- "absolute bottom-full -left-4 mb-2 p-3 mb-10 rounded-lg shadow-xl z-50 w-64" ,
158+ "absolute bottom-full -left-4 mb-2 p-3 rounded-lg shadow-xl z-50 w-64" ,
159159 "border transition-all duration-200" ,
160160 theme === "dark"
161161 ? "bg-gray-800 border-gray-700 text-white"
@@ -166,11 +166,11 @@ export const UpdateChecker = () => {
166166 < Download className = "w-4 h-4 text-blue-500 mt-0.5 flex-shrink-0" />
167167 < div className = "flex-1" >
168168 < h4 className = "font-medium text-sm mb-1" >
169- Nova versão disponível
169+ New version available
170170 </ h4 >
171171 < p className = "text-xs mb-3 opacity-80" >
172- Versão { updateInfo . version } está disponível. Deseja baixar
173- agora ?
172+ Version { updateInfo . version } is available. Do you want to
173+ download now ?
174174 </ p >
175175 < div className = "flex gap-2" >
176176 < button
@@ -182,7 +182,7 @@ export const UpdateChecker = () => {
182182 : "bg-blue-600 hover:bg-blue-700 text-white"
183183 ) }
184184 >
185- Baixar
185+ Download
186186 </ button >
187187 < button
188188 onClick = { handleTooltipDismiss }
@@ -193,7 +193,7 @@ export const UpdateChecker = () => {
193193 : "bg-gray-200 hover:bg-gray-300 text-gray-700"
194194 ) }
195195 >
196- Depois
196+ Later
197197 </ button >
198198 </ div >
199199 </ div >
@@ -230,9 +230,9 @@ export const UpdateChecker = () => {
230230 < div className = "flex items-start gap-3" >
231231 < div className = "w-3 h-3 rounded-full bg-green-500 flex-shrink-0 mt-1" />
232232 < div className = "flex-1" >
233- < h3 className = "font-medium text-sm mb-1" > Pronto para instalar </ h3 >
233+ < h3 className = "font-medium text-sm mb-1" > Ready to install </ h3 >
234234 < p className = "text-xs mb-3 opacity-80" >
235- A atualização foi baixada com sucesso .
235+ The update was downloaded successfully .
236236 </ p >
237237 < div className = "flex gap-2" >
238238 < button
@@ -244,7 +244,7 @@ export const UpdateChecker = () => {
244244 : "bg-green-600 hover:bg-green-700 text-white"
245245 ) }
246246 >
247- Instalar e Reiniciar
247+ Install and Restart
248248 </ button >
249249 < button
250250 onClick = { ( ) => setShowNotification ( false ) }
@@ -255,7 +255,7 @@ export const UpdateChecker = () => {
255255 : "bg-gray-200 hover:bg-gray-300 text-gray-700"
256256 ) }
257257 >
258- Mais tarde
258+ Later
259259 </ button >
260260 </ div >
261261 </ div >
0 commit comments