You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -65,7 +66,7 @@ class _AboutScreenState extends State<AboutScreen> {
65
66
crossAxisAlignment:CrossAxisAlignment.start,
66
67
children: [
67
68
Text(
68
-
'Flood is a monitoring service for various torrent clients. It\'s a Node.js service that communicates with your favorite torrent client and serves a decent mobile UI for administration. This project is based on the original Flood project.',
69
+
context.l10n.app_info,
69
70
key:Key('App info text key'),
70
71
style:TextStyle(
71
72
color:ThemeBloc.theme(widget.themeIndex)
@@ -78,7 +79,7 @@ class _AboutScreenState extends State<AboutScreen> {
78
79
height:20,
79
80
),
80
81
Text(
81
-
'Feedback',
82
+
context.l10n.feedback_heading,
82
83
style:TextStyle(
83
84
color:ThemeBloc.theme(widget.themeIndex)
84
85
.textTheme
@@ -91,7 +92,7 @@ class _AboutScreenState extends State<AboutScreen> {
91
92
height:10,
92
93
),
93
94
Text(
94
-
'If you have a specific issue or bug, please file a GitHub issue. Please join the Flood Discord server to discuss feature requests and implementation details.',
95
+
context.l10n.feedback_text,
95
96
key:Key('Feedback text key'),
96
97
style:TextStyle(
97
98
color:ThemeBloc.theme(widget.themeIndex)
@@ -104,7 +105,7 @@ class _AboutScreenState extends State<AboutScreen> {
104
105
height:20,
105
106
),
106
107
Text(
107
-
'More Information',
108
+
context.l10n.more_info_text,
108
109
style:TextStyle(
109
110
color:ThemeBloc.theme(widget.themeIndex)
110
111
.textTheme
@@ -117,7 +118,7 @@ class _AboutScreenState extends State<AboutScreen> {
0 commit comments