1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*
- Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- For licensing, see LICENSE.md or http://ckeditor.com/license
- */
- CKEDITOR.plugins.setLang( 'forms', 'is', {
- button: {
- title: 'Eigindi hnapps',
- text: 'Texti',
- type: 'Gerð',
- typeBtn: 'Hnappur',
- typeSbm: 'Staðfesta',
- typeRst: 'Hreinsa'
- },
- checkboxAndRadio: {
- checkboxTitle: 'Eigindi markreits',
- radioTitle: 'Eigindi valhnapps',
- value: 'Gildi',
- selected: 'Valið',
- required: 'Required' // MISSING
- },
- form: {
- title: 'Eigindi innsláttarforms',
- menu: 'Eigindi innsláttarforms',
- action: 'Aðgerð',
- method: 'Aðferð',
- encoding: 'Encoding'
- },
- hidden: {
- title: 'Eigindi falins svæðis',
- name: 'Nafn',
- value: 'Gildi'
- },
- select: {
- title: 'Eigindi lista',
- selectInfo: 'Upplýsingar',
- opAvail: 'Kostir',
- value: 'Gildi',
- size: 'Stærð',
- lines: 'línur',
- chkMulti: 'Leyfa fleiri kosti',
- required: 'Required', // MISSING
- opText: 'Texti',
- opValue: 'Gildi',
- btnAdd: 'Bæta við',
- btnModify: 'Breyta',
- btnUp: 'Upp',
- btnDown: 'Niður',
- btnSetValue: 'Merkja sem valið',
- btnDelete: 'Eyða'
- },
- textarea: {
- title: 'Eigindi textasvæðis',
- cols: 'Dálkar',
- rows: 'Línur'
- },
- textfield: {
- title: 'Eigindi textareits',
- name: 'Nafn',
- value: 'Gildi',
- charWidth: 'Breidd (leturtákn)',
- maxChars: 'Hámarksfjöldi leturtákna',
- required: 'Required', // MISSING
- type: 'Gerð',
- typeText: 'Texti',
- typePass: 'Lykilorð',
- typeEmail: 'Email', // MISSING
- typeSearch: 'Search', // MISSING
- typeTel: 'Telephone Number', // MISSING
- typeUrl: 'Vefslóð'
- }
- } );
|