feat: Add new translations, add list of existing accounts to login page

This commit is contained in:
Anton Stubenbord
2023-05-30 01:19:27 +02:00
parent cd56f5fdb8
commit 1dc7d22d3a
19 changed files with 694 additions and 381 deletions

View File

@@ -30,7 +30,7 @@ class SettingsPage extends StatelessWidget {
builder: (context, snapshot) {
if (snapshot.hasError) {
return Text(
"Something went wrong while retrieving server data.", //TODO: INTL
S.of(context)!.errorRetrievingServerVersion,
style: Theme.of(context)
.textTheme
.labelSmall
@@ -40,7 +40,7 @@ class SettingsPage extends StatelessWidget {
}
if (!snapshot.hasData) {
return Text(
"Loading server information...", //TODO: INTL
S.of(context)!.resolvingServerVersion,
style: Theme.of(context).textTheme.labelSmall,
textAlign: TextAlign.center,
);