ca.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', 'ca', {
  6. button: {
  7. title: 'Propietats del botó',
  8. text: 'Text (Valor)',
  9. type: 'Tipus',
  10. typeBtn: 'Botó',
  11. typeSbm: 'Transmet formulari',
  12. typeRst: 'Reinicia formulari'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Propietats de la casella de verificació',
  16. radioTitle: 'Propietats del botó d\'opció',
  17. value: 'Valor',
  18. selected: 'Seleccionat',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Propietats del formulari',
  23. menu: 'Propietats del formulari',
  24. action: 'Acció',
  25. method: 'Mètode',
  26. encoding: 'Codificació'
  27. },
  28. hidden: {
  29. title: 'Propietats del camp ocult',
  30. name: 'Nom',
  31. value: 'Valor'
  32. },
  33. select: {
  34. title: 'Propietats del camp de selecció',
  35. selectInfo: 'Info',
  36. opAvail: 'Opcions disponibles',
  37. value: 'Valor',
  38. size: 'Mida',
  39. lines: 'Línies',
  40. chkMulti: 'Permet múltiples seleccions',
  41. required: 'Required', // MISSING
  42. opText: 'Text',
  43. opValue: 'Valor',
  44. btnAdd: 'Afegeix',
  45. btnModify: 'Modifica',
  46. btnUp: 'Amunt',
  47. btnDown: 'Avall',
  48. btnSetValue: 'Selecciona per defecte',
  49. btnDelete: 'Elimina'
  50. },
  51. textarea: {
  52. title: 'Propietats de l\'àrea de text',
  53. cols: 'Columnes',
  54. rows: 'Files'
  55. },
  56. textfield: {
  57. title: 'Propietats del camp de text',
  58. name: 'Nom',
  59. value: 'Valor',
  60. charWidth: 'Amplada',
  61. maxChars: 'Nombre màxim de caràcters',
  62. required: 'Required', // MISSING
  63. type: 'Tipus',
  64. typeText: 'Text',
  65. typePass: 'Contrasenya',
  66. typeEmail: 'Correu electrònic',
  67. typeSearch: 'Cercar',
  68. typeTel: 'Número de telèfon',
  69. typeUrl: 'URL'
  70. }
  71. } );