mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-08 09:27:11 +01:00
Make autosave filename English to work with Arabic translation on LInux
And just fix up a few comments.
This commit is contained in:
@@ -383,7 +383,7 @@ XMLTagHandler* RecordingRecoveryHandler::HandleXMLChild(const wxChar *tag)
|
|||||||
//
|
//
|
||||||
// It is not intended that the user view or modify the file.
|
// It is not intended that the user view or modify the file.
|
||||||
//
|
//
|
||||||
// It IS intended that as little work be done during auto save, so numbers
|
// It IS intended that very little work be done during auto save, so numbers
|
||||||
// and strings are written in their native format. They will be converted
|
// and strings are written in their native format. They will be converted
|
||||||
// during recovery.
|
// during recovery.
|
||||||
//
|
//
|
||||||
@@ -393,8 +393,8 @@ XMLTagHandler* RecordingRecoveryHandler::HandleXMLChild(const wxChar *tag)
|
|||||||
// name dictionary dictionary of all names used in the document
|
// name dictionary dictionary of all names used in the document
|
||||||
// data fields the "encoded" XML document
|
// data fields the "encoded" XML document
|
||||||
//
|
//
|
||||||
// If a subtree is added, it will be preceeded with FT_Push tell the decoder
|
// If a subtree is added, it will be preceeded with FT_Push to tell the decoder
|
||||||
// to preserve the active dictionary. The decoder when then restore the
|
// to preserve the active dictionary. The decoder will then restore the
|
||||||
// dictionary when an FT_Pop is encountered. Nesting is unlimited.
|
// dictionary when an FT_Pop is encountered. Nesting is unlimited.
|
||||||
//
|
//
|
||||||
// To save space, each name (attribute or element) encountered is stored in
|
// To save space, each name (attribute or element) encountered is stored in
|
||||||
@@ -402,7 +402,7 @@ XMLTagHandler* RecordingRecoveryHandler::HandleXMLChild(const wxChar *tag)
|
|||||||
//
|
//
|
||||||
// All strings are in native unicode format, 2-byte or 4-byte.
|
// All strings are in native unicode format, 2-byte or 4-byte.
|
||||||
//
|
//
|
||||||
// All "lengths" are 2-byte signed, so are limited to 32767 bytes long/
|
// All "lengths" are 2-byte signed, so are limited to 32767 bytes long.
|
||||||
|
|
||||||
enum FieldTypes
|
enum FieldTypes
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4730,7 +4730,7 @@ void AudacityProject::AutoSave()
|
|||||||
wxString projName;
|
wxString projName;
|
||||||
|
|
||||||
if (mFileName.IsEmpty())
|
if (mFileName.IsEmpty())
|
||||||
projName = _("New Project");
|
projName = wxT("New Project");
|
||||||
else
|
else
|
||||||
projName = wxFileName(mFileName).GetName();
|
projName = wxFileName(mFileName).GetName();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user