RuntimeInsightOverlayStrings.english constructor

RuntimeInsightOverlayStrings.english()

Implementation

factory RuntimeInsightOverlayStrings.english() {
  return const RuntimeInsightOverlayStrings(
    title: 'Runtime Insight',
    tabCpu: 'CPU',
    tabRam: 'RAM',
    tabDisk: 'Disk',
    tabNetwork: 'Network',
    cpuTitle: 'CPU (%)',
    ramTitle: 'RAM (MB)',
    diskTitle: 'Disk (bytes/s)',
    networkTitle: 'Network (bytes/s)',
    labelCurrent: 'Current',
    labelAverage: 'Avg',
    labelMin: 'Min',
    labelMax: 'Max',
    labelSecondary: 'Alt',
    legendRead: 'Read',
    legendWrite: 'Write',
    legendRx: 'RX',
    legendTx: 'TX',
    pause: 'Pause',
    resume: 'Resume',
    close: 'Close',
    minimize: 'Minimize',
    expand: 'Expand',
    tabHttp: 'HTTP',
    httpTitle: 'HTTP Requests',
    httpActive: 'Active',
    httpTotal: 'Total',
    httpAvgTime: 'Avg Time',
    httpErrors: 'Errors',
    httpPending: 'Pending',
    httpCompleted: 'Done',
    httpFailed: 'Failed',
  );
}