mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-03 16:25:59 +00:00
69 lines
1.5 KiB
JavaScript
Executable File
69 lines
1.5 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, 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ð'
|
|
},
|
|
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',
|
|
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',
|
|
type: 'Gerð',
|
|
typeText: 'Texti',
|
|
typePass: 'Lykilorð',
|
|
typeEmail: 'Email', // MISSING
|
|
typeSearch: 'Search', // MISSING
|
|
typeTel: 'Telephone Number', // MISSING
|
|
typeUrl: 'Vefslóð'
|
|
}
|
|
});
|