is.js 1.7 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', 'is', {
  6. button: {
  7. title: 'Eigindi hnapps',
  8. text: 'Texti',
  9. type: 'Gerð',
  10. typeBtn: 'Hnappur',
  11. typeSbm: 'Staðfesta',
  12. typeRst: 'Hreinsa'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Eigindi markreits',
  16. radioTitle: 'Eigindi valhnapps',
  17. value: 'Gildi',
  18. selected: 'Valið',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Eigindi innsláttarforms',
  23. menu: 'Eigindi innsláttarforms',
  24. action: 'Aðgerð',
  25. method: 'Aðferð',
  26. encoding: 'Encoding'
  27. },
  28. hidden: {
  29. title: 'Eigindi falins svæðis',
  30. name: 'Nafn',
  31. value: 'Gildi'
  32. },
  33. select: {
  34. title: 'Eigindi lista',
  35. selectInfo: 'Upplýsingar',
  36. opAvail: 'Kostir',
  37. value: 'Gildi',
  38. size: 'Stærð',
  39. lines: 'línur',
  40. chkMulti: 'Leyfa fleiri kosti',
  41. required: 'Required', // MISSING
  42. opText: 'Texti',
  43. opValue: 'Gildi',
  44. btnAdd: 'Bæta við',
  45. btnModify: 'Breyta',
  46. btnUp: 'Upp',
  47. btnDown: 'Niður',
  48. btnSetValue: 'Merkja sem valið',
  49. btnDelete: 'Eyða'
  50. },
  51. textarea: {
  52. title: 'Eigindi textasvæðis',
  53. cols: 'Dálkar',
  54. rows: 'Línur'
  55. },
  56. textfield: {
  57. title: 'Eigindi textareits',
  58. name: 'Nafn',
  59. value: 'Gildi',
  60. charWidth: 'Breidd (leturtákn)',
  61. maxChars: 'Hámarksfjöldi leturtákna',
  62. required: 'Required', // MISSING
  63. type: 'Gerð',
  64. typeText: 'Texti',
  65. typePass: 'Lykilorð',
  66. typeEmail: 'Email', // MISSING
  67. typeSearch: 'Search', // MISSING
  68. typeTel: 'Telephone Number', // MISSING
  69. typeUrl: 'Vefslóð'
  70. }
  71. } );