NTFS: renamed [NTFS File System] to [NT File System] to be consistent with Be File System
This commit is contained in:
parent
a8199d692a
commit
1aa6f64953
@ -82,7 +82,7 @@ InitializeNTFSEditor::PartitionNameChanged(const char* name)
|
||||
void
|
||||
InitializeNTFSEditor::_CreateViewControls()
|
||||
{
|
||||
fNameTC = new BTextControl("Name:", "Haiku", NULL);
|
||||
fNameTC = new BTextControl("Name:", "New NTFS Volume", NULL);
|
||||
fNameTC->SetModificationMessage(new BMessage(MSG_NAME_CHANGED));
|
||||
// TODO find out what is the max length for this specific FS partition name
|
||||
fNameTC->TextView()->SetMaxBytes(31);
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
using std::nothrow;
|
||||
|
||||
#define kPartitionTypeNTFS "NTFS File System"
|
||||
#define kPartitionTypeNTFS "NT File System"
|
||||
|
||||
static const uint32 kDiskSystemFlags =
|
||||
0
|
||||
|
@ -169,7 +169,7 @@ static file_system_module_info sNTFSFileSystem = {
|
||||
},
|
||||
|
||||
"ntfs", // short_name
|
||||
"NTFS File System", // pretty_name
|
||||
"NT File System", // pretty_name
|
||||
B_DISK_SYSTEM_SUPPORTS_INITIALIZING
|
||||
| B_DISK_SYSTEM_SUPPORTS_CONTENT_NAME
|
||||
| B_DISK_SYSTEM_SUPPORTS_WRITING, // DDM flags
|
||||
|
@ -873,7 +873,7 @@ MainWindow::_Initialize(BDiskDevice* disk, partition_id selectedPartition,
|
||||
|
||||
// TODO: diskSystem.IsFileSystem() seems like a better fit here?
|
||||
if (diskSystemName == "Be File System"
|
||||
|| diskSystemName == "NTFS File System") {
|
||||
|| diskSystemName == "NT File System") {
|
||||
InitParamsPanel* panel = new InitParamsPanel(this, diskSystemName,
|
||||
partition);
|
||||
if (panel->Go(name, parameters) == GO_CANCELED)
|
||||
|
Loading…
Reference in New Issue
Block a user