# File lib/cgikit/project/converter.rb, line 327
    def element_name( old )
      case old
      when 'CKString' then 'String'
      when 'CKHyperlink' then 'Link'
      when 'CKImage' then 'Image'
      when 'CKForm' then 'Form'
      when 'CKTextField' then 'TextField'
      when 'CKText' then 'Text'
      when 'CKBrowser' then 'Browser'
      when 'CKPopUpButton' then 'Popup'
      when 'CKCheckbox' then 'Checkbox'
      when 'CKRadioButton' then 'Radio'
      when 'CKSubmitButton' then 'Submit'
      when 'CKResetButton' then 'Reset'
      when 'CKFileUpload' then 'Upload'
      when 'CKConditional' then 'Conditional'
      when 'CKRepetition' then 'Repetition'
      when 'CKFrame' then 'Frame'
      when 'CKContent' then 'Content'
      when 'CKGenericElement' then 'GenericElement'
      else
        old
      end
    end