mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-05 22:35:41 +00:00
Add Portuguese voice files
This commit is contained in:
parent
bbc233fcc4
commit
2ed7d4f40c
11 changed files with 135 additions and 19 deletions
|
|
@ -83,6 +83,10 @@ void CAudioUnit::setLanguage(TEXT_LANG language)
|
|||
ambeFileName = wxT("no_NO.ambe");
|
||||
indxFileName = wxT("no_NO.indx");
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
ambeFileName = wxT("pt_PT.ambe");
|
||||
indxFileName = wxT("pt_PT.indx");
|
||||
break;
|
||||
default:
|
||||
ambeFileName = wxT("en_GB.ambe");
|
||||
indxFileName = wxT("en_GB.indx");
|
||||
|
|
|
|||
|
|
@ -2462,7 +2462,7 @@ void CRepeaterHandler::writeLinkingTo(const wxString &callsign)
|
|||
text.Printf(wxT("Kobler til %s"), callsign.c_str());
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text.Printf(wxT("Conectando, %s"), callsign.c_str());
|
||||
text.Printf(wxT("A ligar a %s"), callsign.c_str());
|
||||
break;
|
||||
default:
|
||||
text.Printf(wxT("Linking to %s"), callsign.c_str());
|
||||
|
|
@ -2512,7 +2512,7 @@ void CRepeaterHandler::writeLinkedTo(const wxString &callsign)
|
|||
text.Printf(wxT("Tilkoblet %s"), callsign.c_str());
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text.Printf(wxT("Conectado a %s"), callsign.c_str());
|
||||
text.Printf(wxT("Ligado a %s"), callsign.c_str());
|
||||
break;
|
||||
default:
|
||||
text.Printf(wxT("Linked to %s"), callsign.c_str());
|
||||
|
|
@ -2562,7 +2562,7 @@ void CRepeaterHandler::writeNotLinked()
|
|||
text = wxT("Ikke linket");
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text = wxT("Desconectado");
|
||||
text = wxT("Desligado");
|
||||
break;
|
||||
default:
|
||||
text = wxT("Not linked");
|
||||
|
|
@ -2622,8 +2622,8 @@ void CRepeaterHandler::writeIsBusy(const wxString& callsign)
|
|||
tempText.Printf(wxT("%s er opptatt"), callsign.c_str());
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text = wxT("Desconectado");
|
||||
tempText.Printf(wxT("%s, ocupado"), callsign.c_str());
|
||||
text = wxT("Desligado");
|
||||
tempText.Printf(wxT("%s ocupado"), callsign.c_str());
|
||||
break;
|
||||
default:
|
||||
text = wxT("Not linked");
|
||||
|
|
@ -2678,7 +2678,7 @@ void CRepeaterHandler::ccsLinkMade(const wxString& callsign, DIRECTION direction
|
|||
text.Printf(wxT("Tilkoblet %s"), callsign.c_str());
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text.Printf(wxT("Conectado a %s"), callsign.c_str());
|
||||
text.Printf(wxT("Ligado a %s"), callsign.c_str());
|
||||
break;
|
||||
default:
|
||||
text.Printf(wxT("Linked to %s"), callsign.c_str());
|
||||
|
|
@ -2750,7 +2750,7 @@ void CRepeaterHandler::ccsLinkEnded(const wxString&, DIRECTION direction)
|
|||
tempText = wxT("CCS er avsluttet");
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text = wxT("Desconectado");
|
||||
text = wxT("Desligado");
|
||||
tempText = wxT("CCS terminou");
|
||||
break;
|
||||
default:
|
||||
|
|
@ -2829,7 +2829,7 @@ void CRepeaterHandler::ccsLinkFailed(const wxString& dtmf, DIRECTION direction)
|
|||
tempText.Printf(wxT("%s ukjent"), dtmf.c_str());
|
||||
break;
|
||||
case TL_PORTUGUES:
|
||||
text = wxT("Desconectado");
|
||||
text = wxT("Desligado");
|
||||
tempText.Printf(wxT("%s desconhecido"), dtmf.c_str());
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue