mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-31 11:52:16 +00:00
Added about
This commit is contained in:
parent
390a509380
commit
f6a35ebf04
3 changed files with 18 additions and 2 deletions
|
@ -74,5 +74,8 @@
|
|||
"userNotEmpty": "Username cannot be empty",
|
||||
"passwordNotEmpty": "Password cannot be empty",
|
||||
"examplePath": "Example: /adguard",
|
||||
"helperPath": "If you are using a reverse proxy"
|
||||
"helperPath": "If you are using a reverse proxy",
|
||||
"aboutApp": "About the application",
|
||||
"appVersion": "App version",
|
||||
"createdBy": "Created by"
|
||||
}
|
|
@ -74,5 +74,8 @@
|
|||
"userNotEmpty": "Usuario no puede estar vacío",
|
||||
"passwordNotEmpty": "Contraseña no puede estar vacío",
|
||||
"examplePath": "Ejemplo: /adguard",
|
||||
"helperPath": "Si estás usando un reverse proxy"
|
||||
"helperPath": "Si estás usando un reverse proxy",
|
||||
"aboutApp": "Sobre la aplicación",
|
||||
"appVersion": "Versión de la app",
|
||||
"createdBy": "Creado por"
|
||||
}
|
|
@ -75,6 +75,16 @@ class Settings extends StatelessWidget {
|
|||
: AppLocalizations.of(context)!.noServerSelected,
|
||||
onTap: navigateServers,
|
||||
),
|
||||
const Divider(),
|
||||
SectionLabel(label: AppLocalizations.of(context)!.aboutApp),
|
||||
CustomListTile(
|
||||
label: AppLocalizations.of(context)!.appVersion,
|
||||
description: appConfigProvider.getAppInfo!.version,
|
||||
),
|
||||
CustomListTile(
|
||||
label: AppLocalizations.of(context)!.createdBy,
|
||||
description: "JGeek00",
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue