Skip to content

Commit 572cf97

Browse files
committed
Textos en Español e Inglés; actualizados...
1 parent f5965f2 commit 572cf97

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

lib/MyTitle.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ class MyTitle extends StatelessWidget
77
@override
88
Widget build(BuildContext context)
99
{
10-
return Text(S.current.app_title, style: GoogleFonts.staatliches(fontSize: 26.0));
10+
return Text(S.current.title, style: GoogleFonts.staatliches(fontSize: 26.0));
1111
}
1212
}

lib/generated/intl/messages_en.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class MessageLookup extends MessageLookupByLibrary {
2424
"about_button" : MessageLookupByLibrary.simpleMessage("Got it!"),
2525
"about_description" : MessageLookupByLibrary.simpleMessage("Developed by Alejandro Ramos | @arhcoder.\n\n• Special thanks to Sriram Thiagarajan.\n• Icons taken from Flaticon.com.\n• Made with Flutter 💙"),
2626
"about_title" : MessageLookupByLibrary.simpleMessage("About..."),
27-
"app_title" : MessageLookupByLibrary.simpleMessage("EIGHT QUEENS GAME"),
2827
"button_about" : MessageLookupByLibrary.simpleMessage("About..."),
2928
"button_github" : MessageLookupByLibrary.simpleMessage("Source code"),
3029
"button_howToPlay" : MessageLookupByLibrary.simpleMessage("How to play"),
@@ -37,6 +36,7 @@ class MessageLookup extends MessageLookupByLibrary {
3736
"howToPlay_button" : MessageLookupByLibrary.simpleMessage("Got it!"),
3837
"howToPlay_description" : MessageLookupByLibrary.simpleMessage("Put EIGHT queens in the chessboard.\n\n• Queens must not attack each other.\n• Queens attack cross and diagonal.\n• Click on a square to place a queen."),
3938
"howToPlay_title" : MessageLookupByLibrary.simpleMessage("How to play"),
39+
"title" : MessageLookupByLibrary.simpleMessage("EIGHT QUEENS GAME"),
4040
"winMessage" : MessageLookupByLibrary.simpleMessage("Congratulations! You won the game...")
4141
};
4242
}

lib/generated/intl/messages_es.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ class MessageLookup extends MessageLookupByLibrary {
2424
"about_button" : MessageLookupByLibrary.simpleMessage("Entendido"),
2525
"about_description" : MessageLookupByLibrary.simpleMessage("Desarrollado por Alejandro Ramos | @arhcoder.\n\n• Agradecimiento especial a Sriram Thiagarajan.\n• Iconos sacados de Flaticon.com.\n• Desarrollado con Flutter 💙"),
2626
"about_title" : MessageLookupByLibrary.simpleMessage("Acerca de..."),
27-
"app_title" : MessageLookupByLibrary.simpleMessage("JUEGO DE LAS OCHO REINAS"),
2827
"button_about" : MessageLookupByLibrary.simpleMessage("Acerca de..."),
2928
"button_github" : MessageLookupByLibrary.simpleMessage("Código fuente"),
3029
"button_howToPlay" : MessageLookupByLibrary.simpleMessage("¿Cómo jugar?"),
@@ -37,6 +36,7 @@ class MessageLookup extends MessageLookupByLibrary {
3736
"howToPlay_button" : MessageLookupByLibrary.simpleMessage("Entendido"),
3837
"howToPlay_description" : MessageLookupByLibrary.simpleMessage("Coloca OCHO reinas en el siguiente tablero de ajedrez.\n\n• Las reinas no pueden atacarse mutuamente.\n• Las reinas atacan en cruz y en diagonal.\n• Haz clic sobre una casilla para colocar una reina."),
3938
"howToPlay_title" : MessageLookupByLibrary.simpleMessage("¿Cómo jugar?"),
39+
"title" : MessageLookupByLibrary.simpleMessage("JUEGO DE LAS OCHO REINAS"),
4040
"winMessage" : MessageLookupByLibrary.simpleMessage("¡Felicidades! Ganaste el juego...")
4141
};
4242
}

lib/generated/l10n.dart

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/l10n/intl_en.arb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"app_title": "EIGHT QUEENS GAME",
2+
"title": "EIGHT QUEENS GAME",
33

44
"button_reset": "Reset",
55

lib/l10n/intl_es.arb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"app_title": "JUEGO DE LAS OCHO REINAS",
2+
"title": "JUEGO DE LAS OCHO REINAS",
33

44
"button_reset": "Reiniciar",
55

0 commit comments

Comments
 (0)