hr.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', 'hr', {
  6. button: {
  7. title: 'Button svojstva',
  8. text: 'Tekst (vrijednost)',
  9. type: 'Vrsta',
  10. typeBtn: 'Gumb',
  11. typeSbm: 'Pošalji',
  12. typeRst: 'Poništi'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Checkbox svojstva',
  16. radioTitle: 'Radio Button svojstva',
  17. value: 'Vrijednost',
  18. selected: 'Odabrano',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Form svojstva',
  23. menu: 'Form svojstva',
  24. action: 'Akcija',
  25. method: 'Metoda',
  26. encoding: 'Encoding'
  27. },
  28. hidden: {
  29. title: 'Hidden Field svojstva',
  30. name: 'Ime',
  31. value: 'Vrijednost'
  32. },
  33. select: {
  34. title: 'Selection svojstva',
  35. selectInfo: 'Info',
  36. opAvail: 'Dostupne opcije',
  37. value: 'Vrijednost',
  38. size: 'Veličina',
  39. lines: 'linija',
  40. chkMulti: 'Dozvoli višestruki odabir',
  41. required: 'Required', // MISSING
  42. opText: 'Tekst',
  43. opValue: 'Vrijednost',
  44. btnAdd: 'Dodaj',
  45. btnModify: 'Promijeni',
  46. btnUp: 'Gore',
  47. btnDown: 'Dolje',
  48. btnSetValue: 'Postavi kao odabranu vrijednost',
  49. btnDelete: 'Obriši'
  50. },
  51. textarea: {
  52. title: 'Textarea svojstva',
  53. cols: 'Kolona',
  54. rows: 'Redova'
  55. },
  56. textfield: {
  57. title: 'Text Field svojstva',
  58. name: 'Ime',
  59. value: 'Vrijednost',
  60. charWidth: 'Širina',
  61. maxChars: 'Najviše karaktera',
  62. required: 'Required', // MISSING
  63. type: 'Vrsta',
  64. typeText: 'Tekst',
  65. typePass: 'Šifra',
  66. typeEmail: 'Email',
  67. typeSearch: 'Traži',
  68. typeTel: 'Broj telefona',
  69. typeUrl: 'URL'
  70. }
  71. } );