mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
26 lines
915 B
Dart
26 lines
915 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 devices = 'Devices';
|
|
static const routine = 'Routines';
|
|
static const tapToRunRoutine = 'Tap to run routine';
|
|
static const wizard = 'Wizard';
|
|
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';
|
|
static const winter = 'Winter';
|
|
static const winterMode = 'Winter Mode';
|
|
static const summer = 'Summer';
|
|
static const summerMode = 'Summer Mode';
|
|
}
|