is.js 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  1. /*
  2. Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/license
  4. */
  5. CKEDITOR.lang["is"] = {
  6. editor: "Rich Text Editor",
  7. editorPanel: "Rich Text Editor panel",
  8. common: {
  9. editorHelp: "Press ALT 0 for help",
  10. browseServer: "Fletta í skjalasafni",
  11. url: "Vefslóð",
  12. protocol: "Samskiptastaðall",
  13. upload: "Senda upp",
  14. uploadSubmit: "Hlaða upp",
  15. image: "Setja inn mynd",
  16. flash: "Flash",
  17. form: "Setja inn innsláttarform",
  18. checkbox: "Setja inn hökunarreit",
  19. radio: "Setja inn valhnapp",
  20. textField: "Setja inn textareit",
  21. textarea: "Setja inn textasvæði",
  22. hiddenField: "Setja inn falið svæði",
  23. button: "Setja inn hnapp",
  24. select: "Setja inn lista",
  25. imageButton: "Setja inn myndahnapp",
  26. notSet: "<ekkert valið>",
  27. id: "Auðkenni",
  28. name: "Nafn",
  29. langDir: "Lesstefna",
  30. langDirLtr: "Frá vinstri til hægri (LTR)",
  31. langDirRtl: "Frá hægri til vinstri (RTL)",
  32. langCode: "Tungumálakóði",
  33. longDescr: "Nánari lýsing",
  34. cssClass: "Stílsniðsflokkur",
  35. advisoryTitle: "Titill",
  36. cssStyle: "Stíll",
  37. ok: "Í lagi",
  38. cancel: "Hætta við",
  39. close: "Close",
  40. preview: "Forskoða",
  41. resize: "Resize",
  42. generalTab: "Almennt",
  43. advancedTab: "Tæknilegt",
  44. validateNumberFailed: "This value is not a number.",
  45. confirmNewPage:
  46. "Any unsaved changes to this content will be lost. Are you sure you want to load new page?",
  47. confirmCancel:
  48. "You have changed some options. Are you sure you want to close the dialog window?",
  49. options: "Options",
  50. target: "Mark",
  51. targetNew: "New Window (_blank)",
  52. targetTop: "Topmost Window (_top)",
  53. targetSelf: "Same Window (_self)",
  54. targetParent: "Parent Window (_parent)",
  55. langDirLTR: "Frá vinstri til hægri (LTR)",
  56. langDirRTL: "Frá hægri til vinstri (RTL)",
  57. styles: "Stíll",
  58. cssClasses: "Stílsniðsflokkur",
  59. width: "Breidd",
  60. height: "Hæð",
  61. align: "Jöfnun",
  62. left: "Vinstri",
  63. right: "Hægri",
  64. center: "Miðjað",
  65. justify: "Jafna báðum megin",
  66. alignLeft: "Vinstrijöfnun",
  67. alignRight: "Hægrijöfnun",
  68. alignCenter: "Align Center",
  69. alignTop: "Efst",
  70. alignMiddle: "Miðjuð",
  71. alignBottom: "Neðst",
  72. alignNone: "None",
  73. invalidValue: "Invalid value.",
  74. invalidHeight: "Height must be a number.",
  75. invalidWidth: "Width must be a number.",
  76. invalidLength:
  77. 'Value specified for the "%1" field must be a positive number with or without a valid measurement unit (%2).',
  78. invalidCssLength:
  79. 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',
  80. invalidHtmlLength:
  81. 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',
  82. invalidInlineStyle:
  83. 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',
  84. cssLengthTooltip:
  85. "Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).",
  86. unavailable: '%1<span class="cke_accessibility">, unavailable</span>',
  87. keyboard: {
  88. "8": "Backspace",
  89. "13": "Enter",
  90. "16": "Shift",
  91. "17": "Ctrl",
  92. "18": "Alt",
  93. "32": "Space",
  94. "35": "End",
  95. "36": "Home",
  96. "46": "Delete",
  97. "112": "F1",
  98. "113": "F2",
  99. "114": "F3",
  100. "115": "F4",
  101. "116": "F5",
  102. "117": "F6",
  103. "118": "F7",
  104. "119": "F8",
  105. "120": "F9",
  106. "121": "F10",
  107. "122": "F11",
  108. "123": "F12",
  109. "124": "F13",
  110. "125": "F14",
  111. "126": "F15",
  112. "127": "F16",
  113. "128": "F17",
  114. "129": "F18",
  115. "130": "F19",
  116. "131": "F20",
  117. "132": "F21",
  118. "133": "F22",
  119. "134": "F23",
  120. "135": "F24",
  121. "224": "Command"
  122. },
  123. keyboardShortcut: "Keyboard shortcut",
  124. optionDefault: "Default"
  125. },
  126. about: {
  127. copy: "Copyright &copy; $1. All rights reserved.",
  128. dlgTitle: "About CKEditor 4",
  129. moreInfo: "For licensing information please visit our web site:"
  130. },
  131. basicstyles: {
  132. bold: "Feitletrað",
  133. italic: "Skáletrað",
  134. strike: "Yfirstrikað",
  135. subscript: "Niðurskrifað",
  136. superscript: "Uppskrifað",
  137. underline: "Undirstrikað"
  138. },
  139. bidi: {
  140. ltr: "Text direction from left to right",
  141. rtl: "Text direction from right to left"
  142. },
  143. blockquote: { toolbar: "Inndráttur" },
  144. notification: { closed: "Notification closed." },
  145. toolbar: {
  146. toolbarCollapse: "Collapse Toolbar",
  147. toolbarExpand: "Expand Toolbar",
  148. toolbarGroups: {
  149. document: "Document",
  150. clipboard: "Clipboard/Undo",
  151. editing: "Editing",
  152. forms: "Forms",
  153. basicstyles: "Basic Styles",
  154. paragraph: "Paragraph",
  155. links: "Links",
  156. insert: "Insert",
  157. styles: "Styles",
  158. colors: "Colors",
  159. tools: "Tools"
  160. },
  161. toolbars: "Editor toolbars"
  162. },
  163. clipboard: {
  164. copy: "Afrita",
  165. copyError:
  166. "Öryggisstillingar vafrans þíns leyfa ekki afritun texta með músaraðgerð. Notaðu lyklaborðið í afrita (Ctrl/Cmd+C).",
  167. cut: "Klippa",
  168. cutError:
  169. "Öryggisstillingar vafrans þíns leyfa ekki klippingu texta með músaraðgerð. Notaðu lyklaborðið í klippa (Ctrl/Cmd+X).",
  170. paste: "Líma",
  171. pasteNotification:
  172. "Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
  173. pasteArea: "Paste Area",
  174. pasteMsg: "Paste your content inside the area below and press OK."
  175. },
  176. colorbutton: {
  177. auto: "Sjálfval",
  178. bgColorTitle: "Bakgrunnslitur",
  179. colors: {
  180. "000": "Black",
  181. "800000": "Maroon",
  182. "8B4513": "Saddle Brown",
  183. "2F4F4F": "Dark Slate Gray",
  184. "008080": "Teal",
  185. "000080": "Navy",
  186. "4B0082": "Indigo",
  187. "696969": "Dark Gray",
  188. B22222: "Fire Brick",
  189. A52A2A: "Brown",
  190. DAA520: "Golden Rod",
  191. "006400": "Dark Green",
  192. "40E0D0": "Turquoise",
  193. "0000CD": "Medium Blue",
  194. "800080": "Purple",
  195. "808080": "Gray",
  196. F00: "Red",
  197. FF8C00: "Dark Orange",
  198. FFD700: "Gold",
  199. "008000": "Green",
  200. "0FF": "Cyan",
  201. "00F": "Blue",
  202. EE82EE: "Violet",
  203. A9A9A9: "Dim Gray",
  204. FFA07A: "Light Salmon",
  205. FFA500: "Orange",
  206. FFFF00: "Yellow",
  207. "00FF00": "Lime",
  208. AFEEEE: "Pale Turquoise",
  209. ADD8E6: "Light Blue",
  210. DDA0DD: "Plum",
  211. D3D3D3: "Light Grey",
  212. FFF0F5: "Lavender Blush",
  213. FAEBD7: "Antique White",
  214. FFFFE0: "Light Yellow",
  215. F0FFF0: "Honeydew",
  216. F0FFFF: "Azure",
  217. F0F8FF: "Alice Blue",
  218. E6E6FA: "Lavender",
  219. FFF: "White",
  220. "1ABC9C": "Strong Cyan",
  221. "2ECC71": "Emerald",
  222. "3498DB": "Bright Blue",
  223. "9B59B6": "Amethyst",
  224. "4E5F70": "Grayish Blue",
  225. F1C40F: "Vivid Yellow",
  226. "16A085": "Dark Cyan",
  227. "27AE60": "Dark Emerald",
  228. "2980B9": "Strong Blue",
  229. "8E44AD": "Dark Violet",
  230. "2C3E50": "Desaturated Blue",
  231. F39C12: "Orange",
  232. E67E22: "Carrot",
  233. E74C3C: "Pale Red",
  234. ECF0F1: "Bright Silver",
  235. "95A5A6": "Light Grayish Cyan",
  236. DDD: "Light Gray",
  237. D35400: "Pumpkin",
  238. C0392B: "Strong Red",
  239. BDC3C7: "Silver",
  240. "7F8C8D": "Grayish Cyan",
  241. "999": "Dark Gray"
  242. },
  243. more: "Fleiri liti...",
  244. panelTitle: "Colors",
  245. textColorTitle: "Litur texta"
  246. },
  247. colordialog: {
  248. clear: "Clear",
  249. highlight: "Highlight",
  250. options: "Color Options",
  251. selected: "Selected Color",
  252. title: "Select color"
  253. },
  254. templates: {
  255. button: "Sniðmát",
  256. emptyListMsg: "(Ekkert sniðmát er skilgreint!)",
  257. insertOption: "Skipta út raunverulegu innihaldi",
  258. options: "Template Options",
  259. selectPromptMsg:
  260. "Veldu sniðmát til að opna í ritlinum.<br>(Núverandi innihald víkur fyrir því!):",
  261. title: "Innihaldssniðmát"
  262. },
  263. contextmenu: { options: "Context Menu Options" },
  264. copyformatting: {
  265. label: "Copy Formatting",
  266. notification: {
  267. copied: "Formatting copied",
  268. applied: "Formatting applied",
  269. canceled: "Formatting canceled",
  270. failed:
  271. "Formatting failed. You cannot apply styles without copying them first."
  272. }
  273. },
  274. div: {
  275. IdInputLabel: "Id",
  276. advisoryTitleInputLabel: "Advisory Title",
  277. cssClassInputLabel: "Stylesheet Classes",
  278. edit: "Edit Div",
  279. inlineStyleInputLabel: "Inline Style",
  280. langDirLTRLabel: "Left to Right (LTR)",
  281. langDirLabel: "Language Direction",
  282. langDirRTLLabel: "Right to Left (RTL)",
  283. languageCodeInputLabel: " Language Code",
  284. remove: "Remove Div",
  285. styleSelectLabel: "Style",
  286. title: "Create Div Container",
  287. toolbar: "Create Div Container"
  288. },
  289. elementspath: { eleLabel: "Elements path", eleTitle: "%1 element" },
  290. filetools: {
  291. loadError: "Error occurred during file read.",
  292. networkError: "Network error occurred during file upload.",
  293. httpError404:
  294. "HTTP error occurred during file upload (404: File not found).",
  295. httpError403: "HTTP error occurred during file upload (403: Forbidden).",
  296. httpError: "HTTP error occurred during file upload (error status: %1).",
  297. noUrlError: "Upload URL is not defined.",
  298. responseError: "Incorrect server response."
  299. },
  300. find: {
  301. find: "Leita",
  302. findOptions: "Find Options",
  303. findWhat: "Leita að:",
  304. matchCase: "Gera greinarmun á¡ há¡- og lágstöfum",
  305. matchCyclic: "Match cyclic",
  306. matchWord: "Aðeins heil orð",
  307. notFoundMsg: "Leitartexti fannst ekki!",
  308. replace: "Skipta út",
  309. replaceAll: "Skipta út allsstaðar",
  310. replaceSuccessMsg: "%1 occurrence(s) replaced.",
  311. replaceWith: "Skipta út fyrir:",
  312. title: "Finna og skipta"
  313. },
  314. fakeobjects: {
  315. anchor: "Anchor",
  316. flash: "Flash Animation",
  317. hiddenfield: "Hidden Field",
  318. iframe: "IFrame",
  319. unknown: "Unknown Object"
  320. },
  321. flash: {
  322. access: "Script Access",
  323. accessAlways: "Always",
  324. accessNever: "Never",
  325. accessSameDomain: "Same domain",
  326. alignAbsBottom: "Abs neðst",
  327. alignAbsMiddle: "Abs miðjuð",
  328. alignBaseline: "Grunnlína",
  329. alignTextTop: "Efri brún texta",
  330. bgcolor: "Bakgrunnslitur",
  331. chkFull: "Allow Fullscreen",
  332. chkLoop: "Endurtekning",
  333. chkMenu: "Sýna Flash-valmynd",
  334. chkPlay: "Sjálfvirk spilun",
  335. flashvars: "Variables for Flash",
  336. hSpace: "Vinstri bil",
  337. properties: "Eigindi Flash",
  338. propertiesTab: "Properties",
  339. quality: "Quality",
  340. qualityAutoHigh: "Auto High",
  341. qualityAutoLow: "Auto Low",
  342. qualityBest: "Best",
  343. qualityHigh: "High",
  344. qualityLow: "Low",
  345. qualityMedium: "Medium",
  346. scale: "Skali",
  347. scaleAll: "Sýna allt",
  348. scaleFit: "Fella skala að stærð",
  349. scaleNoBorder: "Án ramma",
  350. title: "Eigindi Flash",
  351. vSpace: "Hægri bil",
  352. validateHSpace: "HSpace must be a number.",
  353. validateSrc: "Sláðu inn veffang stiklunnar!",
  354. validateVSpace: "VSpace must be a number.",
  355. windowMode: "Window mode",
  356. windowModeOpaque: "Opaque",
  357. windowModeTransparent: "Transparent",
  358. windowModeWindow: "Window"
  359. },
  360. font: {
  361. fontSize: {
  362. label: "Leturstærð ",
  363. voiceLabel: "Font Size",
  364. panelTitle: "Leturstærð "
  365. },
  366. label: "Leturgerð ",
  367. panelTitle: "Leturgerð ",
  368. voiceLabel: "Leturgerð "
  369. },
  370. forms: {
  371. button: {
  372. title: "Eigindi hnapps",
  373. text: "Texti",
  374. type: "Gerð",
  375. typeBtn: "Hnappur",
  376. typeSbm: "Staðfesta",
  377. typeRst: "Hreinsa"
  378. },
  379. checkboxAndRadio: {
  380. checkboxTitle: "Eigindi markreits",
  381. radioTitle: "Eigindi valhnapps",
  382. value: "Gildi",
  383. selected: "Valið",
  384. required: "Required"
  385. },
  386. form: {
  387. title: "Eigindi innsláttarforms",
  388. menu: "Eigindi innsláttarforms",
  389. action: "Aðgerð",
  390. method: "Aðferð",
  391. encoding: "Encoding"
  392. },
  393. hidden: { title: "Eigindi falins svæðis", name: "Nafn", value: "Gildi" },
  394. select: {
  395. title: "Eigindi lista",
  396. selectInfo: "Upplýsingar",
  397. opAvail: "Kostir",
  398. value: "Gildi",
  399. size: "Stærð",
  400. lines: "línur",
  401. chkMulti: "Leyfa fleiri kosti",
  402. required: "Required",
  403. opText: "Texti",
  404. opValue: "Gildi",
  405. btnAdd: "Bæta við",
  406. btnModify: "Breyta",
  407. btnUp: "Upp",
  408. btnDown: "Niður",
  409. btnSetValue: "Merkja sem valið",
  410. btnDelete: "Eyða"
  411. },
  412. textarea: { title: "Eigindi textasvæðis", cols: "Dálkar", rows: "Línur" },
  413. textfield: {
  414. title: "Eigindi textareits",
  415. name: "Nafn",
  416. value: "Gildi",
  417. charWidth: "Breidd (leturtákn)",
  418. maxChars: "Hámarksfjöldi leturtákna",
  419. required: "Required",
  420. type: "Gerð",
  421. typeText: "Texti",
  422. typePass: "Lykilorð",
  423. typeEmail: "Email",
  424. typeSearch: "Search",
  425. typeTel: "Telephone Number",
  426. typeUrl: "Vefslóð"
  427. }
  428. },
  429. format: {
  430. label: "Stílsnið",
  431. panelTitle: "Stílsnið",
  432. tag_address: "Vistfang",
  433. tag_div: "Venjulegt (DIV)",
  434. tag_h1: "Fyrirsögn 1",
  435. tag_h2: "Fyrirsögn 2",
  436. tag_h3: "Fyrirsögn 3",
  437. tag_h4: "Fyrirsögn 4",
  438. tag_h5: "Fyrirsögn 5",
  439. tag_h6: "Fyrirsögn 6",
  440. tag_p: "Venjulegt letur",
  441. tag_pre: "Forsniðið"
  442. },
  443. horizontalrule: { toolbar: "Lóðrétt lína" },
  444. iframe: {
  445. border: "Show frame border",
  446. noUrl: "Please type the iframe URL",
  447. scrolling: "Enable scrollbars",
  448. title: "IFrame Properties",
  449. toolbar: "IFrame"
  450. },
  451. image: {
  452. alt: "Baklægur texti",
  453. border: "Rammi",
  454. btnUpload: "Hlaða upp",
  455. button2Img:
  456. "Do you want to transform the selected image button on a simple image?",
  457. hSpace: "Vinstri bil",
  458. img2Button:
  459. "Do you want to transform the selected image on a image button?",
  460. infoTab: "Almennt",
  461. linkTab: "Stikla",
  462. lockRatio: "Festa stærðarhlutfall",
  463. menu: "Eigindi myndar",
  464. resetSize: "Reikna stærð",
  465. title: "Eigindi myndar",
  466. titleButton: "Eigindi myndahnapps",
  467. upload: "Hlaða upp",
  468. urlMissing: "Image source URL is missing.",
  469. vSpace: "Hægri bil",
  470. validateBorder: "Border must be a whole number.",
  471. validateHSpace: "HSpace must be a whole number.",
  472. validateVSpace: "VSpace must be a whole number."
  473. },
  474. indent: { indent: "Minnka inndrátt", outdent: "Auka inndrátt" },
  475. smiley: { options: "Smiley Options", title: "Velja svip", toolbar: "Svipur" },
  476. language: { button: "Set language", remove: "Remove language" },
  477. link: {
  478. acccessKey: "Skammvalshnappur",
  479. advanced: "Tæknilegt",
  480. advisoryContentType: "Tegund innihalds",
  481. advisoryTitle: "Titill",
  482. anchor: {
  483. toolbar: "Stofna/breyta kaflamerki",
  484. menu: "Eigindi kaflamerkis",
  485. title: "Eigindi kaflamerkis",
  486. name: "Nafn bókamerkis",
  487. errorName: "Sláðu inn nafn bókamerkis!",
  488. remove: "Remove Anchor"
  489. },
  490. anchorId: "Eftir auðkenni einingar",
  491. anchorName: "Eftir akkerisnafni",
  492. charset: "Táknróf",
  493. cssClasses: "Stílsniðsflokkur",
  494. download: "Force Download",
  495. displayText: "Display Text",
  496. emailAddress: "Netfang",
  497. emailBody: "Meginmál",
  498. emailSubject: "Efni",
  499. id: "Auðkenni",
  500. info: "Almennt",
  501. langCode: "Lesstefna",
  502. langDir: "Lesstefna",
  503. langDirLTR: "Frá vinstri til hægri (LTR)",
  504. langDirRTL: "Frá hægri til vinstri (RTL)",
  505. menu: "Breyta stiklu",
  506. name: "Nafn",
  507. noAnchors: "<Engin bókamerki á skrá>",
  508. noEmail: "Sláðu inn netfang!",
  509. noUrl: "Sláðu inn veffang stiklunnar!",
  510. noTel: "Please type the phone number",
  511. other: "<annar>",
  512. phoneNumber: "Phone number",
  513. popupDependent: "Háð venslum (Netscape)",
  514. popupFeatures: "Eigindi sprettiglugga",
  515. popupFullScreen: "Heilskjár (IE)",
  516. popupLeft: "Fjarlægð frá vinstri",
  517. popupLocationBar: "Fanglína",
  518. popupMenuBar: "Vallína",
  519. popupResizable: "Resizable",
  520. popupScrollBars: "Skrunstikur",
  521. popupStatusBar: "Stöðustika",
  522. popupToolbar: "Verkfærastika",
  523. popupTop: "Fjarlægð frá efri brún",
  524. rel: "Relationship",
  525. selectAnchor: "Veldu akkeri",
  526. styles: "Stíll",
  527. tabIndex: "Raðnúmer innsláttarreits",
  528. target: "Mark",
  529. targetFrame: "<rammi>",
  530. targetFrameName: "Nafn markglugga",
  531. targetPopup: "<sprettigluggi>",
  532. targetPopupName: "Nafn sprettiglugga",
  533. title: "Stikla",
  534. toAnchor: "Bókamerki á þessari síðu",
  535. toEmail: "Netfang",
  536. toUrl: "Vefslóð",
  537. toPhone: "Phone",
  538. toolbar: "Stofna/breyta stiklu",
  539. type: "Stikluflokkur",
  540. unlink: "Fjarlægja stiklu",
  541. upload: "Senda upp"
  542. },
  543. list: { bulletedlist: "Punktalisti", numberedlist: "Númeraður listi" },
  544. liststyle: {
  545. bulletedTitle: "Bulleted List Properties",
  546. circle: "Circle",
  547. decimal: "Decimal (1, 2, 3, etc.)",
  548. disc: "Disc",
  549. lowerAlpha: "Lower Alpha (a, b, c, d, e, etc.)",
  550. lowerRoman: "Lower Roman (i, ii, iii, iv, v, etc.)",
  551. none: "None",
  552. notset: "<not set>",
  553. numberedTitle: "Numbered List Properties",
  554. square: "Square",
  555. start: "Start",
  556. type: "Type",
  557. upperAlpha: "Upper Alpha (A, B, C, D, E, etc.)",
  558. upperRoman: "Upper Roman (I, II, III, IV, V, etc.)",
  559. validateStartNumber: "List start number must be a whole number."
  560. },
  561. magicline: { title: "Insert paragraph here" },
  562. maximize: { maximize: "Maximize", minimize: "Minimize" },
  563. newpage: { toolbar: "Ný síða" },
  564. pagebreak: { alt: "Page Break", toolbar: "Setja inn síðuskil" },
  565. pastetext: {
  566. button: "Líma sem ósniðinn texta",
  567. pasteNotification:
  568. "Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
  569. title: "Líma sem ósniðinn texta"
  570. },
  571. pastefromword: {
  572. confirmCleanup:
  573. "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",
  574. error:
  575. "It was not possible to clean up the pasted data due to an internal error",
  576. title: "Líma úr Word",
  577. toolbar: "Líma úr Word"
  578. },
  579. preview: { preview: "Forskoða" },
  580. print: { toolbar: "Prenta" },
  581. removeformat: { toolbar: "Fjarlægja snið" },
  582. save: { toolbar: "Vista" },
  583. selectall: { toolbar: "Velja allt" },
  584. showblocks: { toolbar: "Sýna blokkir" },
  585. sourcearea: { toolbar: "Kóði" },
  586. specialchar: {
  587. options: "Special Character Options",
  588. title: "Velja tákn",
  589. toolbar: "Setja inn merki"
  590. },
  591. scayt: {
  592. btn_about: "About SCAYT",
  593. btn_dictionaries: "Dictionaries",
  594. btn_disable: "Disable SCAYT",
  595. btn_enable: "Enable SCAYT",
  596. btn_langs: "Languages",
  597. btn_options: "Options",
  598. text_title: "Spell Check As You Type"
  599. },
  600. stylescombo: {
  601. label: "Stílflokkur",
  602. panelTitle: "Formatting Styles",
  603. panelTitle1: "Block Styles",
  604. panelTitle2: "Inline Styles",
  605. panelTitle3: "Object Styles"
  606. },
  607. table: {
  608. border: "Breidd ramma",
  609. caption: "Titill",
  610. cell: {
  611. menu: "Reitur",
  612. insertBefore: "Skjóta inn reiti fyrir aftan",
  613. insertAfter: "Skjóta inn reiti fyrir framan",
  614. deleteCell: "Fella reit",
  615. merge: "Sameina reiti",
  616. mergeRight: "Sameina til hægri",
  617. mergeDown: "Sameina niður á við",
  618. splitHorizontal: "Kljúfa reit lárétt",
  619. splitVertical: "Kljúfa reit lóðrétt",
  620. title: "Cell Properties",
  621. cellType: "Cell Type",
  622. rowSpan: "Rows Span",
  623. colSpan: "Columns Span",
  624. wordWrap: "Word Wrap",
  625. hAlign: "Horizontal Alignment",
  626. vAlign: "Vertical Alignment",
  627. alignBaseline: "Baseline",
  628. bgColor: "Background Color",
  629. borderColor: "Border Color",
  630. data: "Data",
  631. header: "Header",
  632. yes: "Yes",
  633. no: "No",
  634. invalidWidth: "Cell width must be a number.",
  635. invalidHeight: "Cell height must be a number.",
  636. invalidRowSpan: "Rows span must be a whole number.",
  637. invalidColSpan: "Columns span must be a whole number.",
  638. chooseColor: "Choose"
  639. },
  640. cellPad: "Reitaspássía",
  641. cellSpace: "Bil milli reita",
  642. column: {
  643. menu: "Dálkur",
  644. insertBefore: "Skjóta inn dálki vinstra megin",
  645. insertAfter: "Skjóta inn dálki hægra megin",
  646. deleteColumn: "Fella dálk"
  647. },
  648. columns: "Dálkar",
  649. deleteTable: "Fella töflu",
  650. headers: "Fyrirsagnir",
  651. headersBoth: "Hvort tveggja",
  652. headersColumn: "Fyrsti dálkur",
  653. headersNone: "Engar",
  654. headersRow: "Fyrsta röð",
  655. heightUnit: "height unit",
  656. invalidBorder: "Border size must be a number.",
  657. invalidCellPadding: "Cell padding must be a positive number.",
  658. invalidCellSpacing: "Cell spacing must be a positive number.",
  659. invalidCols: "Number of columns must be a number greater than 0.",
  660. invalidHeight: "Table height must be a number.",
  661. invalidRows: "Number of rows must be a number greater than 0.",
  662. invalidWidth: "Table width must be a number.",
  663. menu: "Eigindi töflu",
  664. row: {
  665. menu: "Röð",
  666. insertBefore: "Skjóta inn röð fyrir ofan",
  667. insertAfter: "Skjóta inn röð fyrir neðan",
  668. deleteRow: "Eyða röð"
  669. },
  670. rows: "Raðir",
  671. summary: "Áfram",
  672. title: "Eigindi töflu",
  673. toolbar: "Tafla",
  674. widthPc: "prósent",
  675. widthPx: "myndeindir",
  676. widthUnit: "width unit"
  677. },
  678. undo: { redo: "Hætta við afturköllun", undo: "Afturkalla" },
  679. widget: { move: "Click and drag to move", label: "%1 widget" },
  680. uploadwidget: {
  681. abort: "Upload aborted by the user.",
  682. doneOne: "File successfully uploaded.",
  683. doneMany: "Successfully uploaded %1 files.",
  684. uploadOne: "Uploading file ({percentage}%)...",
  685. uploadMany: "Uploading files, {current} of {max} done ({percentage}%)..."
  686. },
  687. wsc: {
  688. btnIgnore: "Hunsa",
  689. btnIgnoreAll: "Hunsa allt",
  690. btnReplace: "Skipta",
  691. btnReplaceAll: "Skipta öllu",
  692. btnUndo: "Til baka",
  693. changeTo: "Tillaga",
  694. errorLoading: "Error loading application service host: %s.",
  695. ieSpellDownload: "Villuleit ekki sett upp.<br>Viltu setja hana upp?",
  696. manyChanges: "Villuleit lokið: %1 orðum breytt",
  697. noChanges: "Villuleit lokið: Engu orði breytt",
  698. noMispell: "Villuleit lokið: Engin villa fannst",
  699. noSuggestions: "- engar tillögur -",
  700. notAvailable: "Sorry, but service is unavailable now.",
  701. notInDic: "Ekki í orðabókinni",
  702. oneChange: "Villuleit lokið: Einu orði breytt",
  703. progress: "Villuleit í gangi...",
  704. title: "Spell Checker",
  705. toolbar: "Villuleit"
  706. }
  707. };