mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-14 17:25:47 +00:00
18 lines
599 B
Dart
18 lines
599 B
Dart
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
class StringsManager {
|
|
static const noRouteFound = 'No route found';
|
|
static const noInternetConnection = 'No internet connection';
|
|
|
|
static const dashboard = 'Dashboard';
|
|
static const active = 'Active';
|
|
static const current = 'Current';
|
|
static const frequency = 'Frequency';
|
|
static const energyUsage = 'Energy Usage';
|
|
static const totalConsumption = 'Total Consumption';
|
|
static const ACConsumption = 'AC Consumption';
|
|
static const units = 'Units';
|
|
static const emissions = 'Emissions';
|
|
static const reductions = 'Reductions';
|
|
}
|