Audacity 3.2.0
Functions
LangChoice.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

wxString ChooseLanguage (wxWindow *parent)
 

Function Documentation

◆ ChooseLanguage()

wxString ChooseLanguage ( wxWindow *  parent)

Definition at line 52 of file LangChoice.cpp.

53{
54 wxString returnVal;
55
56 /* i18n-hint: Title on a dialog indicating that this is the first
57 * time Audacity has been run. */
58 LangChoiceDialog dlog(parent, -1, XO("Audacity First Run"));
59 dlog.CentreOnParent();
60 dlog.ShowModal();
61 returnVal = dlog.GetLang();
62
63 return returnVal;
64}
XO("Cut/Copy/Paste")
A dialog used (at start up) to present the user with a choice of languages for Audacity.
Definition: LangChoice.cpp:31

References LangChoiceDialog::GetLang(), and XO().

Here is the call graph for this function: