1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-12 14:47:43 +02:00

Make DarkAudacity source more like Audacity source.

This commit is contained in:
James Crook 2016-09-11 12:14:33 +01:00
parent b690404768
commit 8ae903babd
5 changed files with 8 additions and 4 deletions

View File

@ -234,7 +234,11 @@ wxString FileNames::ThemeImageDefsAsCee()
wxString FileNames::ThemeCacheAsCee( )
{
#ifndef EXPERIMENTAL_DA
return wxFileName( ThemeDir(), wxT("ThemeAsCeeCode.h") ).GetFullPath();
#else
return wxFileName( ThemeDir(), wxT("DarkThemeAsCeeCode.h") ).GetFullPath();
#endif
}
wxString FileNames::ThemeComponent(const wxString &Str)

View File

@ -169,7 +169,7 @@ wxString TitleText( const wxString & Key )
if(Key ==wxT("save") )
{
/* i18n-hint: Title for a topic.*/
return _("Saving a Audacity Project");
return _("Saving an Audacity Project");
}
if(Key ==wxT("wma-proprietary") )
{

View File

@ -189,7 +189,7 @@ WX_DEFINE_USER_EXPORTED_OBJARRAY( ArrayOfColours )
// Include the ImageCache...
static unsigned char ImageCacheAsData[] = {
#ifdef EXPERIMENTAL_DARK_AUDACITY
#ifdef EXPERIMENTAL_DA
#include "DarkThemeAsCeeCode.h"
#else
#include "ThemeAsCeeCode.h"

View File

@ -484,7 +484,7 @@ bool Exporter::ExamineTracks()
return true;
}
bool Exporter::GetFilename( )
bool Exporter::GetFilename()
{
mFormat = -1;

View File

@ -264,7 +264,7 @@ void
GetGStreamerImportPlugin(ImportPluginList &importPluginList,
UnusableImportPluginList & WXUNUSED(unusableImportPluginList))
{
wxLogMessage( wxString(AUDACITY_NAME) + wxT(" is built against GStreamer version %d.%d.%d-%d"),
wxLogMessage( _TS("Audacity is built against GStreamer version %d.%d.%d-%d"),
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
GST_VERSION_MICRO,