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 49 of file LangChoice.cpp.

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

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

Here is the call graph for this function: