Ignore:
Timestamp:
Oct 7, 2016 4:57:19 PM (8 years ago)
Author:
smk78
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
60df6c1
Parents:
18b7ecb9
Message:

Tweaked instructions and button labels on File Converter panel.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/file_converter/converter_panel.py

    rbe88076 red9f872  
    499499        vbox = wx.BoxSizer(wx.VERTICAL) 
    500500 
    501         instructions = ("Select either single column ASCII files or 1D OTOKO " 
    502         "files containing the Q-Axis and Intensity-Axis data, or a 2D BSL file" 
    503         ", then chose where to save the converted file, and click Convert.\n" 
    504         "ASCII and OTOKO files can be converted to CanSAS XML, or NXcanSAS " 
    505         "HDF5 format. OTOKO files can only be converted to NXcanSAS.\nCanSAS " 
    506         "metadata can also be optionally input below.") 
     501        instructions = ( 
     502        "Select linked single column 1D ASCII files containing the Q-axis and " 
     503        "Intensity-axis data, or 1D BSL/OTOKO files, or a 2D BSL/OTOKO file, " 
     504        "then choose where to save the converted file, and click Convert.\n" 
     505        "1D ASCII and BSL/OTOKO files can be converted to CanSAS (XML) or " 
     506        "NXcanSAS (HDF5) formats. 2D BSL/OTOKO files can only be converted to " 
     507        "the NXcanSAS format.\n" 
     508        "Metadata can be optionally added for the CanSAS XML format." 
     509        ) 
    507510 
    508511        instruction_label = wx.StaticText(self, -1, instructions, 
     
    527530        ascii_btn.Bind(wx.EVT_RADIOBUTTON, self.datatype_changed) 
    528531        radio_sizer.Add(ascii_btn) 
    529         otoko_btn = wx.RadioButton(self, -1, "OTOKO 1D", name="otoko") 
     532        otoko_btn = wx.RadioButton(self, -1, "BSL 1D", name="otoko") 
    530533        otoko_btn.Bind(wx.EVT_RADIOBUTTON, self.datatype_changed) 
    531534        radio_sizer.Add(otoko_btn) 
Note: See TracChangeset for help on using the changeset viewer.