bs.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. CKEDITOR.plugins.setLang( 'forms', 'bs', {
  6. button: {
  7. title: 'Button Properties',
  8. text: 'Text (Value)',
  9. type: 'Type',
  10. typeBtn: 'Button',
  11. typeSbm: 'Submit',
  12. typeRst: 'Reset'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Checkbox Properties',
  16. radioTitle: 'Radio Button Properties',
  17. value: 'Value',
  18. selected: 'Selected',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Form Properties',
  23. menu: 'Form Properties',
  24. action: 'Action',
  25. method: 'Method',
  26. encoding: 'Encoding'
  27. },
  28. hidden: {
  29. title: 'Hidden Field Properties',
  30. name: 'Name',
  31. value: 'Value'
  32. },
  33. select: {
  34. title: 'Selection Field Properties',
  35. selectInfo: 'Select Info',
  36. opAvail: 'Available Options',
  37. value: 'Value',
  38. size: 'Size',
  39. lines: 'lines',
  40. chkMulti: 'Allow multiple selections',
  41. required: 'Required', // MISSING
  42. opText: 'Text',
  43. opValue: 'Value',
  44. btnAdd: 'Add',
  45. btnModify: 'Modify',
  46. btnUp: 'Up',
  47. btnDown: 'Down',
  48. btnSetValue: 'Set as selected value',
  49. btnDelete: 'Delete'
  50. },
  51. textarea: {
  52. title: 'Textarea Properties',
  53. cols: 'Columns',
  54. rows: 'Rows'
  55. },
  56. textfield: {
  57. title: 'Text Field Properties',
  58. name: 'Name',
  59. value: 'Value',
  60. charWidth: 'Character Width',
  61. maxChars: 'Maximum Characters',
  62. required: 'Required', // MISSING
  63. type: 'Type',
  64. typeText: 'Text',
  65. typePass: 'Password',
  66. typeEmail: 'Email', // MISSING
  67. typeSearch: 'Search', // MISSING
  68. typeTel: 'Telephone Number', // MISSING
  69. typeUrl: 'URL'
  70. }
  71. } );