langWindows property

Map<String, Lang> langWindows
getter/setter pair

Implementation

Map<String, Lang> langWindows = {
  'es': Lang(
    response: 'Respuesta desde',
    timeOut: 'Tiempo de espera agotado',
    errorGeneral: 'Error general',
    errorDestination: 'Error en el destino',
    errorNetwork: 'Error de red',
  ),
  'en': Lang(
    response: 'Reply from',
    timeOut: 'Request timed out',
    errorGeneral: 'General failure',
    errorDestination: 'Destination host unreachable',
    errorNetwork: 'Network error',
  ),
  'fr': Lang(
    response: 'Réponse 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: 'Antwort von',
    timeOut: 'Zeitüberschreitung der Anforderung',
    errorGeneral: 'Allgemeiner Fehler',
    errorDestination: 'Zielhost nicht erreichbar',
    errorNetwork: 'Netzwerkfehler',
  ),
  'it': Lang(
    response: 'Risposta da',
    timeOut: 'Richiesta scaduta',
    errorGeneral: 'Errore generale',
    errorDestination: 'Host di destinazione non raggiungibile',
    errorNetwork: 'Errore di rete',
  ),
  'pt': Lang(
    response: 'Resposta de',
    timeOut: 'Solicitação expirada',
    errorGeneral: 'Falha geral',
    errorDestination: 'Host de destino inacessível',
    errorNetwork: 'Erro de rede',
  ),
  'ru': Lang(
    response: 'Ответ от',
    timeOut: 'Время ожидания запроса истекло',
    errorGeneral: 'Общая ошибка',
    errorDestination: 'Узел назначения недоступен',
    errorNetwork: 'Ошибка сети',
  ),
  'zh': Lang(
    response: '来自的回复',
    timeOut: '请求超时',
    errorGeneral: '常规故障',
    errorDestination: '目标主机不可达',
    errorNetwork: '网络错误',
  ),
  'ja': Lang(
    response: 'からの応答',
    timeOut: '要求がタイムアウトしました',
    errorGeneral: '一般的なエラー',
    errorDestination: '宛先ホストに到達できません',
    errorNetwork: 'ネットワークエラー',
  ),
};