langLinux property

Map<String, Lang> langLinux
getter/setter pair

Implementation

Map<String, Lang> langLinux = {
  'es': Lang(
    response: '64 bytes desde',
    timeOut: 'Tiempo de espera agotado',
    errorGeneral: 'Error general',
    errorDestination: 'Destino inalcanzable',
    errorNetwork: 'Error de red',
  ),
  'en': Lang(
    response: '64 bytes from',
    timeOut: 'Request timed out',
    errorGeneral: 'General failure',
    errorDestination: 'Destination host unreachable',
    errorNetwork: 'Network error',
  ),
  'fr': Lang(
    response: '64 octets de',
    timeOut: 'Délai d’attente dépassé',
    errorGeneral: 'Échec général',
    errorDestination: 'Hôte de destination injoignable',
    errorNetwork: 'Erreur réseau',
  ),
  'de': Lang(
    response: '64 Bytes von',
    timeOut: 'Zeitüberschreitung der Anforderung',
    errorGeneral: 'Allgemeiner Fehler',
    errorDestination: 'Zielhost nicht erreichbar',
    errorNetwork: 'Netzwerkfehler',
  ),
  'it': Lang(
    response: '64 byte da',
    timeOut: 'Richiesta scaduta',
    errorGeneral: 'Errore generale',
    errorDestination: 'Host di destinazione non raggiungibile',
    errorNetwork: 'Errore di rete',
  ),
  'pt': Lang(
    response: '64 bytes de',
    timeOut: 'Solicitação expirada',
    errorGeneral: 'Falha geral',
    errorDestination: 'Host de destino inacessível',
    errorNetwork: 'Erro de rede',
  ),
  'ru': Lang(
    response: '64 байта от',
    timeOut: 'Время ожидания запроса истекло',
    errorGeneral: 'Общая ошибка',
    errorDestination: 'Узел назначения недоступен',
    errorNetwork: 'Ошибка сети',
  ),
  'zh': Lang(
    response: '64字节来自',
    timeOut: '请求超时',
    errorGeneral: '常规故障',
    errorDestination: '目标主机不可达',
    errorNetwork: '网络错误',
  ),
  'ja': Lang(
    response: '64バイトの応答',
    timeOut: '要求がタイムアウトしました',
    errorGeneral: '一般的なエラー',
    errorDestination: '宛先ホストに到達できません',
    errorNetwork: 'ネットワークエラー',
  ),
};