lv.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812
  1. /*
  2. Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.html or http://ckeditor.com/license
  4. */
  5. /**
  6. * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
  7. * Latvian language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Constains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang['lv'] =
  18. {
  19. /**
  20. * The language reading direction. Possible values are "rtl" for
  21. * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
  22. * languages (like English).
  23. * @default 'ltr'
  24. */
  25. dir : 'ltr',
  26. /*
  27. * Screenreader titles. Please note that screenreaders are not always capable
  28. * of reading non-English words. So be careful while translating it.
  29. */
  30. editorTitle : 'Rich text editor, %1, press ALT 0 for help.', // MISSING
  31. // ARIA descriptions.
  32. toolbars : 'Editor toolbars', // MISSING
  33. editor : 'Rich Text Editor', // MISSING
  34. // Toolbar buttons without dialogs.
  35. source : 'HTML kods',
  36. newPage : 'Jauna lapa',
  37. save : 'Saglabāt',
  38. preview : 'Pārskatīt',
  39. cut : 'Izgriezt',
  40. copy : 'Kopēt',
  41. paste : 'Ievietot',
  42. print : 'Drukāt',
  43. underline : 'Apakšsvītra',
  44. bold : 'Treknu šriftu',
  45. italic : 'Slīprakstā',
  46. selectAll : 'Iezīmēt visu',
  47. removeFormat : 'Noņemt stilus',
  48. strike : 'Pārsvītrots',
  49. subscript : 'Zemrakstā',
  50. superscript : 'Augšrakstā',
  51. horizontalrule : 'Ievietot horizontālu Atdalītājsvītru',
  52. pagebreak : 'Ievietot lapas pārtraukumu',
  53. pagebreakAlt : 'Page Break', // MISSING
  54. unlink : 'Noņemt hipersaiti',
  55. undo : 'Atcelt',
  56. redo : 'Atkārtot',
  57. // Common messages and labels.
  58. common :
  59. {
  60. browseServer : 'Skatīt servera saturu',
  61. url : 'URL',
  62. protocol : 'Protokols',
  63. upload : 'Augšupielādēt',
  64. uploadSubmit : 'Nosūtīt serverim',
  65. image : 'Attēls',
  66. flash : 'Flash',
  67. form : 'Forma',
  68. checkbox : 'Atzīmēšanas kastīte',
  69. radio : 'Izvēles poga',
  70. textField : 'Teksta rinda',
  71. textarea : 'Teksta laukums',
  72. hiddenField : 'Paslēpta teksta rinda',
  73. button : 'Poga',
  74. select : 'Iezīmēšanas lauks',
  75. imageButton : 'Attēlpoga',
  76. notSet : '<nav iestatīts>',
  77. id : 'Id',
  78. name : 'Nosaukums',
  79. langDir : 'Valodas lasīšanas virziens',
  80. langDirLtr : 'No kreisās uz labo (LTR)',
  81. langDirRtl : 'No labās uz kreiso (RTL)',
  82. langCode : 'Valodas kods',
  83. longDescr : 'Gara apraksta Hipersaite',
  84. cssClass : 'Stilu saraksta klases',
  85. advisoryTitle : 'Konsultatīvs virsraksts',
  86. cssStyle : 'Stils',
  87. ok : 'Darīts!',
  88. cancel : 'Atcelt',
  89. close : 'Close', // MISSING
  90. preview : 'Preview', // MISSING
  91. generalTab : 'General', // MISSING
  92. advancedTab : 'Izvērstais',
  93. validateNumberFailed : 'This value is not a number.', // MISSING
  94. confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
  95. confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
  96. options : 'Options', // MISSING
  97. target : 'Target', // MISSING
  98. targetNew : 'New Window (_blank)', // MISSING
  99. targetTop : 'Topmost Window (_top)', // MISSING
  100. targetSelf : 'Same Window (_self)', // MISSING
  101. targetParent : 'Parent Window (_parent)', // MISSING
  102. langDirLTR : 'Left to Right (LTR)', // MISSING
  103. langDirRTL : 'Right to Left (RTL)', // MISSING
  104. styles : 'Style', // MISSING
  105. cssClasses : 'Stylesheet Classes', // MISSING
  106. width : 'Platums',
  107. height : 'Augstums',
  108. align : 'Nolīdzināt',
  109. alignLeft : 'Pa kreisi',
  110. alignRight : 'Pa labi',
  111. alignCenter : 'Centrēti',
  112. alignTop : 'Augšā',
  113. alignMiddle : 'Vertikāli centrēts',
  114. alignBottom : 'Apakšā',
  115. invalidHeight : 'Height must be a number.', // MISSING
  116. invalidWidth : 'Width must be a number.', // MISSING
  117. invalidCssLength : '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).', // MISSING
  118. invalidHtmlLength : 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
  119. // Put the voice-only part of the label in the span.
  120. unavailable : '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
  121. },
  122. contextmenu :
  123. {
  124. options : 'Context Menu Options' // MISSING
  125. },
  126. // Special char dialog.
  127. specialChar :
  128. {
  129. toolbar : 'Ievietot speciālo simbolu',
  130. title : 'Ievietot īpašu simbolu',
  131. options : 'Special Character Options' // MISSING
  132. },
  133. // Link dialog.
  134. link :
  135. {
  136. toolbar : 'Ievietot/Labot hipersaiti',
  137. other : '<cits>',
  138. menu : 'Labot hipersaiti',
  139. title : 'Hipersaite',
  140. info : 'Hipersaites informācija',
  141. target : 'Mērķis',
  142. upload : 'Augšupielādēt',
  143. advanced : 'Izvērstais',
  144. type : 'Hipersaites tips',
  145. toUrl : 'URL', // MISSING
  146. toAnchor : 'Iezīme šajā lapā',
  147. toEmail : 'E-pasts',
  148. targetFrame : '<ietvars>',
  149. targetPopup : '<uznirstošā logā>',
  150. targetFrameName : 'Mērķa ietvara nosaukums',
  151. targetPopupName : 'Uznirstošā loga nosaukums',
  152. popupFeatures : 'Uznirstošā loga nosaukums īpašības',
  153. popupResizable : 'Resizable', // MISSING
  154. popupStatusBar : 'Statusa josla',
  155. popupLocationBar: 'Atrašanās vietas josla',
  156. popupToolbar : 'Rīku josla',
  157. popupMenuBar : 'Izvēlnes josla',
  158. popupFullScreen : 'Pilnā ekrānā (IE)',
  159. popupScrollBars : 'Ritjoslas',
  160. popupDependent : 'Atkarīgs (Netscape)',
  161. popupLeft : 'Kreisā koordināte',
  162. popupTop : 'Augšējā koordināte',
  163. id : 'Id', // MISSING
  164. langDir : 'Valodas lasīšanas virziens',
  165. langDirLTR : 'No kreisās uz labo (LTR)',
  166. langDirRTL : 'No labās uz kreiso (RTL)',
  167. acccessKey : 'Pieejas kods',
  168. name : 'Nosaukums',
  169. langCode : 'Valodas lasīšanas virziens',
  170. tabIndex : 'Ciļņu indekss',
  171. advisoryTitle : 'Konsultatīvs virsraksts',
  172. advisoryContentType : 'Konsultatīvs satura tips',
  173. cssClasses : 'Stilu saraksta klases',
  174. charset : 'Pievienotā resursa kodu tabula',
  175. styles : 'Stils',
  176. rel : 'Relationship', // MISSING
  177. selectAnchor : 'Izvēlēties iezīmi',
  178. anchorName : 'Pēc iezīmes nosaukuma',
  179. anchorId : 'Pēc elementa ID',
  180. emailAddress : 'E-pasta adrese',
  181. emailSubject : 'Ziņas tēma',
  182. emailBody : 'Ziņas saturs',
  183. noAnchors : '(Šajā dokumentā nav iezīmju)',
  184. noUrl : 'Lūdzu norādi hipersaiti',
  185. noEmail : 'Lūdzu norādi e-pasta adresi'
  186. },
  187. // Anchor dialog
  188. anchor :
  189. {
  190. toolbar : 'Ievietot/Labot iezīmi',
  191. menu : 'Iezīmes īpašības',
  192. title : 'Iezīmes īpašības',
  193. name : 'Iezīmes nosaukums',
  194. errorName : 'Lūdzu norādiet iezīmes nosaukumu',
  195. remove : 'Remove Anchor' // MISSING
  196. },
  197. // List style dialog
  198. list:
  199. {
  200. numberedTitle : 'Numbered List Properties', // MISSING
  201. bulletedTitle : 'Bulleted List Properties', // MISSING
  202. type : 'Type', // MISSING
  203. start : 'Start', // MISSING
  204. validateStartNumber :'List start number must be a whole number.', // MISSING
  205. circle : 'Circle', // MISSING
  206. disc : 'Disc', // MISSING
  207. square : 'Square', // MISSING
  208. none : 'None', // MISSING
  209. notset : '<not set>', // MISSING
  210. armenian : 'Armenian numbering', // MISSING
  211. georgian : 'Georgian numbering (an, ban, gan, etc.)', // MISSING
  212. lowerRoman : 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING
  213. upperRoman : 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
  214. lowerAlpha : 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING
  215. upperAlpha : 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING
  216. lowerGreek : 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
  217. decimal : 'Decimal (1, 2, 3, etc.)', // MISSING
  218. decimalLeadingZero : 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
  219. },
  220. // Find And Replace Dialog
  221. findAndReplace :
  222. {
  223. title : 'Find and Replace', // MISSING
  224. find : 'Meklēt',
  225. replace : 'Nomainīt',
  226. findWhat : 'Meklēt:',
  227. replaceWith : 'Nomainīt uz:',
  228. notFoundMsg : 'Norādītā frāze netika atrasta.',
  229. matchCase : 'Reģistrjūtīgs',
  230. matchWord : 'Jāsakrīt pilnībā',
  231. matchCyclic : 'Match cyclic', // MISSING
  232. replaceAll : 'Aizvietot visu',
  233. replaceSuccessMsg : '%1 occurrence(s) replaced.' // MISSING
  234. },
  235. // Table Dialog
  236. table :
  237. {
  238. toolbar : 'Tabula',
  239. title : 'Tabulas īpašības',
  240. menu : 'Tabulas īpašības',
  241. deleteTable : 'Dzēst tabulu',
  242. rows : 'Rindas',
  243. columns : 'Kolonnas',
  244. border : 'Rāmja izmērs',
  245. widthPx : 'pikseļos',
  246. widthPc : 'procentuāli',
  247. widthUnit : 'width unit', // MISSING
  248. cellSpace : 'Rūtiņu atstatums',
  249. cellPad : 'Rūtiņu nobīde',
  250. caption : 'Leģenda',
  251. summary : 'Anotācija',
  252. headers : 'Headers', // MISSING
  253. headersNone : 'None', // MISSING
  254. headersColumn : 'First column', // MISSING
  255. headersRow : 'First Row', // MISSING
  256. headersBoth : 'Both', // MISSING
  257. invalidRows : 'Number of rows must be a number greater than 0.', // MISSING
  258. invalidCols : 'Number of columns must be a number greater than 0.', // MISSING
  259. invalidBorder : 'Border size must be a number.', // MISSING
  260. invalidWidth : 'Table width must be a number.', // MISSING
  261. invalidHeight : 'Table height must be a number.', // MISSING
  262. invalidCellSpacing : 'Cell spacing must be a positive number.', // MISSING
  263. invalidCellPadding : 'Cell padding must be a positive number.', // MISSING
  264. cell :
  265. {
  266. menu : 'Šūna',
  267. insertBefore : 'Insert Cell Before', // MISSING
  268. insertAfter : 'Insert Cell After', // MISSING
  269. deleteCell : 'Dzēst rūtiņas',
  270. merge : 'Apvienot rūtiņas',
  271. mergeRight : 'Merge Right', // MISSING
  272. mergeDown : 'Merge Down', // MISSING
  273. splitHorizontal : 'Split Cell Horizontally', // MISSING
  274. splitVertical : 'Split Cell Vertically', // MISSING
  275. title : 'Cell Properties', // MISSING
  276. cellType : 'Cell Type', // MISSING
  277. rowSpan : 'Rows Span', // MISSING
  278. colSpan : 'Columns Span', // MISSING
  279. wordWrap : 'Word Wrap', // MISSING
  280. hAlign : 'Horizontal Alignment', // MISSING
  281. vAlign : 'Vertical Alignment', // MISSING
  282. alignBaseline : 'Baseline', // MISSING
  283. bgColor : 'Background Color', // MISSING
  284. borderColor : 'Border Color', // MISSING
  285. data : 'Data', // MISSING
  286. header : 'Header', // MISSING
  287. yes : 'Yes', // MISSING
  288. no : 'No', // MISSING
  289. invalidWidth : 'Cell width must be a number.', // MISSING
  290. invalidHeight : 'Cell height must be a number.', // MISSING
  291. invalidRowSpan : 'Rows span must be a whole number.', // MISSING
  292. invalidColSpan : 'Columns span must be a whole number.', // MISSING
  293. chooseColor : 'Choose' // MISSING
  294. },
  295. row :
  296. {
  297. menu : 'Rinda',
  298. insertBefore : 'Insert Row Before', // MISSING
  299. insertAfter : 'Insert Row After', // MISSING
  300. deleteRow : 'Dzēst rindas'
  301. },
  302. column :
  303. {
  304. menu : 'Kolonna',
  305. insertBefore : 'Insert Column Before', // MISSING
  306. insertAfter : 'Insert Column After', // MISSING
  307. deleteColumn : 'Dzēst kolonnas'
  308. }
  309. },
  310. // Button Dialog.
  311. button :
  312. {
  313. title : 'Pogas īpašības',
  314. text : 'Teksts (vērtība)',
  315. type : 'Tips',
  316. typeBtn : 'Button', // MISSING
  317. typeSbm : 'Submit', // MISSING
  318. typeRst : 'Reset' // MISSING
  319. },
  320. // Checkbox and Radio Button Dialogs.
  321. checkboxAndRadio :
  322. {
  323. checkboxTitle : 'Atzīmēšanas kastītes īpašības',
  324. radioTitle : 'Izvēles poga īpašības',
  325. value : 'Vērtība',
  326. selected : 'Iezīmēts'
  327. },
  328. // Form Dialog.
  329. form :
  330. {
  331. title : 'Formas īpašības',
  332. menu : 'Formas īpašības',
  333. action : 'Darbība',
  334. method : 'Metode',
  335. encoding : 'Encoding' // MISSING
  336. },
  337. // Select Field Dialog.
  338. select :
  339. {
  340. title : 'Iezīmēšanas lauka īpašības',
  341. selectInfo : 'Informācija',
  342. opAvail : 'Pieejamās iespējas',
  343. value : 'Vērtība',
  344. size : 'Izmērs',
  345. lines : 'rindas',
  346. chkMulti : 'Atļaut vairākus iezīmējumus',
  347. opText : 'Teksts',
  348. opValue : 'Vērtība',
  349. btnAdd : 'Pievienot',
  350. btnModify : 'Veikt izmaiņas',
  351. btnUp : 'Augšup',
  352. btnDown : 'Lejup',
  353. btnSetValue : 'Noteikt kā iezīmēto vērtību',
  354. btnDelete : 'Dzēst'
  355. },
  356. // Textarea Dialog.
  357. textarea :
  358. {
  359. title : 'Teksta laukuma īpašības',
  360. cols : 'Kolonnas',
  361. rows : 'Rindas'
  362. },
  363. // Text Field Dialog.
  364. textfield :
  365. {
  366. title : 'Teksta rindas īpašības',
  367. name : 'Nosaukums',
  368. value : 'Vērtība',
  369. charWidth : 'Simbolu platums',
  370. maxChars : 'Simbolu maksimālais daudzums',
  371. type : 'Tips',
  372. typeText : 'Teksts',
  373. typePass : 'Parole'
  374. },
  375. // Hidden Field Dialog.
  376. hidden :
  377. {
  378. title : 'Paslēptās teksta rindas īpašības',
  379. name : 'Nosaukums',
  380. value : 'Vērtība'
  381. },
  382. // Image Dialog.
  383. image :
  384. {
  385. title : 'Attēla īpašības',
  386. titleButton : 'Attēlpogas īpašības',
  387. menu : 'Attēla īpašības',
  388. infoTab : 'Informācija par attēlu',
  389. btnUpload : 'Nosūtīt serverim',
  390. upload : 'Augšupielādēt',
  391. alt : 'Alternatīvais teksts',
  392. lockRatio : 'Nemainīga Augstuma/Platuma attiecība',
  393. resetSize : 'Atjaunot sākotnējo izmēru',
  394. border : 'Rāmis',
  395. hSpace : 'Horizontālā telpa',
  396. vSpace : 'Vertikālā telpa',
  397. alertUrl : 'Lūdzu norādīt attēla hipersaiti',
  398. linkTab : 'Hipersaite',
  399. button2Img : 'Do you want to transform the selected image button on a simple image?', // MISSING
  400. img2Button : 'Do you want to transform the selected image on a image button?', // MISSING
  401. urlMissing : 'Image source URL is missing.', // MISSING
  402. validateBorder : 'Border must be a whole number.', // MISSING
  403. validateHSpace : 'HSpace must be a whole number.', // MISSING
  404. validateVSpace : 'VSpace must be a whole number.' // MISSING
  405. },
  406. // Flash Dialog
  407. flash :
  408. {
  409. properties : 'Flash īpašības',
  410. propertiesTab : 'Properties', // MISSING
  411. title : 'Flash īpašības',
  412. chkPlay : 'Automātiska atskaņošana',
  413. chkLoop : 'Nepārtraukti',
  414. chkMenu : 'Atļaut Flash izvēlni',
  415. chkFull : 'Allow Fullscreen', // MISSING
  416. scale : 'Mainīt izmēru',
  417. scaleAll : 'Rādīt visu',
  418. scaleNoBorder : 'Bez rāmja',
  419. scaleFit : 'Precīzs izmērs',
  420. access : 'Script Access', // MISSING
  421. accessAlways : 'Always', // MISSING
  422. accessSameDomain: 'Same domain', // MISSING
  423. accessNever : 'Never', // MISSING
  424. alignAbsBottom : 'Absolūti apakšā',
  425. alignAbsMiddle : 'Absolūti vertikāli centrēts',
  426. alignBaseline : 'Pamatrindā',
  427. alignTextTop : 'Teksta augšā',
  428. quality : 'Quality', // MISSING
  429. qualityBest : 'Best', // MISSING
  430. qualityHigh : 'High', // MISSING
  431. qualityAutoHigh : 'Auto High', // MISSING
  432. qualityMedium : 'Medium', // MISSING
  433. qualityAutoLow : 'Auto Low', // MISSING
  434. qualityLow : 'Low', // MISSING
  435. windowModeWindow: 'Window', // MISSING
  436. windowModeOpaque: 'Opaque', // MISSING
  437. windowModeTransparent : 'Transparent', // MISSING
  438. windowMode : 'Window mode', // MISSING
  439. flashvars : 'Variables for Flash', // MISSING
  440. bgcolor : 'Fona krāsa',
  441. hSpace : 'Horizontālā telpa',
  442. vSpace : 'Vertikālā telpa',
  443. validateSrc : 'Lūdzu norādi hipersaiti',
  444. validateHSpace : 'HSpace must be a number.', // MISSING
  445. validateVSpace : 'VSpace must be a number.' // MISSING
  446. },
  447. // Speller Pages Dialog
  448. spellCheck :
  449. {
  450. toolbar : 'Pareizrakstības pārbaude',
  451. title : 'Spell Check', // MISSING
  452. notAvailable : 'Sorry, but service is unavailable now.', // MISSING
  453. errorLoading : 'Error loading application service host: %s.', // MISSING
  454. notInDic : 'Netika atrasts vārdnīcā',
  455. changeTo : 'Nomainīt uz',
  456. btnIgnore : 'Ignorēt',
  457. btnIgnoreAll : 'Ignorēt visu',
  458. btnReplace : 'Aizvietot',
  459. btnReplaceAll : 'Aizvietot visu',
  460. btnUndo : 'Atcelt',
  461. noSuggestions : '- Nav ieteikumu -',
  462. progress : 'Notiek pareizrakstības pārbaude...',
  463. noMispell : 'Pareizrakstības pārbaude pabeigta: kļūdas netika atrastas',
  464. noChanges : 'Pareizrakstības pārbaude pabeigta: nekas netika labots',
  465. oneChange : 'Pareizrakstības pārbaude pabeigta: 1 vārds izmainīts',
  466. manyChanges : 'Pareizrakstības pārbaude pabeigta: %1 vārdi tika mainīti',
  467. ieSpellDownload : 'Pareizrakstības pārbaudītājs nav pievienots. Vai vēlaties to lejupielādēt tagad?'
  468. },
  469. smiley :
  470. {
  471. toolbar : 'Smaidiņi',
  472. title : 'Ievietot smaidiņu',
  473. options : 'Smiley Options' // MISSING
  474. },
  475. elementsPath :
  476. {
  477. eleLabel : 'Elements path', // MISSING
  478. eleTitle : '%1 element' // MISSING
  479. },
  480. numberedlist : 'Numurēts saraksts',
  481. bulletedlist : 'Izcelts saraksts',
  482. indent : 'Palielināt atkāpi',
  483. outdent : 'Samazināt atkāpi',
  484. justify :
  485. {
  486. left : 'Izlīdzināt pa kreisi',
  487. center : 'Izlīdzināt pret centru',
  488. right : 'Izlīdzināt pa labi',
  489. block : 'Izlīdzināt malas'
  490. },
  491. blockquote : 'Block Quote', // MISSING
  492. clipboard :
  493. {
  494. title : 'Ievietot',
  495. cutError : 'Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt izgriešanas darbību. Lūdzu, izmantojiet (Ctrl/Cmd+X, lai veiktu šo darbību.',
  496. copyError : 'Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt kopēšanas darbību. Lūdzu, izmantojiet (Ctrl/Cmd+C), lai veiktu šo darbību.',
  497. pasteMsg : 'Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatūru (<STRONG>Ctrl/Cmd+V</STRONG>) un apstipriniet ar <STRONG>Darīts!</STRONG>.',
  498. securityMsg : 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.', // MISSING
  499. pasteArea : 'Paste Area' // MISSING
  500. },
  501. pastefromword :
  502. {
  503. confirmCleanup : 'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?', // MISSING
  504. toolbar : 'Ievietot no Worda',
  505. title : 'Ievietot no Worda',
  506. error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
  507. },
  508. pasteText :
  509. {
  510. button : 'Ievietot kā vienkāršu tekstu',
  511. title : 'Ievietot kā vienkāršu tekstu'
  512. },
  513. templates :
  514. {
  515. button : 'Sagataves',
  516. title : 'Satura sagataves',
  517. options : 'Template Options', // MISSING
  518. insertOption : 'Replace actual contents', // MISSING
  519. selectPromptMsg : 'Lūdzu, norādiet sagatavi, ko atvērt editorā<br>(patreizējie dati tiks zaudēti):',
  520. emptyListMsg : '(Nav norādītas sagataves)'
  521. },
  522. showBlocks : 'Show Blocks', // MISSING
  523. stylesCombo :
  524. {
  525. label : 'Stils',
  526. panelTitle : 'Formatting Styles', // MISSING
  527. panelTitle1 : 'Block Styles', // MISSING
  528. panelTitle2 : 'Inline Styles', // MISSING
  529. panelTitle3 : 'Object Styles' // MISSING
  530. },
  531. format :
  532. {
  533. label : 'Formāts',
  534. panelTitle : 'Formāts',
  535. tag_p : 'Normāls teksts',
  536. tag_pre : 'Formatēts teksts',
  537. tag_address : 'Adrese',
  538. tag_h1 : 'Virsraksts 1',
  539. tag_h2 : 'Virsraksts 2',
  540. tag_h3 : 'Virsraksts 3',
  541. tag_h4 : 'Virsraksts 4',
  542. tag_h5 : 'Virsraksts 5',
  543. tag_h6 : 'Virsraksts 6',
  544. tag_div : 'Rindkopa (DIV)'
  545. },
  546. div :
  547. {
  548. title : 'Create Div Container', // MISSING
  549. toolbar : 'Create Div Container', // MISSING
  550. cssClassInputLabel : 'Stylesheet Classes', // MISSING
  551. styleSelectLabel : 'Style', // MISSING
  552. IdInputLabel : 'Id', // MISSING
  553. languageCodeInputLabel : ' Language Code', // MISSING
  554. inlineStyleInputLabel : 'Inline Style', // MISSING
  555. advisoryTitleInputLabel : 'Advisory Title', // MISSING
  556. langDirLabel : 'Language Direction', // MISSING
  557. langDirLTRLabel : 'Left to Right (LTR)', // MISSING
  558. langDirRTLLabel : 'Right to Left (RTL)', // MISSING
  559. edit : 'Edit Div', // MISSING
  560. remove : 'Remove Div' // MISSING
  561. },
  562. iframe :
  563. {
  564. title : 'IFrame Properties', // MISSING
  565. toolbar : 'IFrame', // MISSING
  566. noUrl : 'Please type the iframe URL', // MISSING
  567. scrolling : 'Enable scrollbars', // MISSING
  568. border : 'Show frame border' // MISSING
  569. },
  570. font :
  571. {
  572. label : 'Šrifts',
  573. voiceLabel : 'Font', // MISSING
  574. panelTitle : 'Šrifts'
  575. },
  576. fontSize :
  577. {
  578. label : 'Izmērs',
  579. voiceLabel : 'Font Size', // MISSING
  580. panelTitle : 'Izmērs'
  581. },
  582. colorButton :
  583. {
  584. textColorTitle : 'Teksta krāsa',
  585. bgColorTitle : 'Fona krāsa',
  586. panelTitle : 'Colors', // MISSING
  587. auto : 'Automātiska',
  588. more : 'Plašāka palete...'
  589. },
  590. colors :
  591. {
  592. '000' : 'Black', // MISSING
  593. '800000' : 'Maroon', // MISSING
  594. '8B4513' : 'Saddle Brown', // MISSING
  595. '2F4F4F' : 'Dark Slate Gray', // MISSING
  596. '008080' : 'Teal', // MISSING
  597. '000080' : 'Navy', // MISSING
  598. '4B0082' : 'Indigo', // MISSING
  599. '696969' : 'Dark Gray', // MISSING
  600. 'B22222' : 'Fire Brick', // MISSING
  601. 'A52A2A' : 'Brown', // MISSING
  602. 'DAA520' : 'Golden Rod', // MISSING
  603. '006400' : 'Dark Green', // MISSING
  604. '40E0D0' : 'Turquoise', // MISSING
  605. '0000CD' : 'Medium Blue', // MISSING
  606. '800080' : 'Purple', // MISSING
  607. '808080' : 'Gray', // MISSING
  608. 'F00' : 'Red', // MISSING
  609. 'FF8C00' : 'Dark Orange', // MISSING
  610. 'FFD700' : 'Gold', // MISSING
  611. '008000' : 'Green', // MISSING
  612. '0FF' : 'Cyan', // MISSING
  613. '00F' : 'Blue', // MISSING
  614. 'EE82EE' : 'Violet', // MISSING
  615. 'A9A9A9' : 'Dim Gray', // MISSING
  616. 'FFA07A' : 'Light Salmon', // MISSING
  617. 'FFA500' : 'Orange', // MISSING
  618. 'FFFF00' : 'Yellow', // MISSING
  619. '00FF00' : 'Lime', // MISSING
  620. 'AFEEEE' : 'Pale Turquoise', // MISSING
  621. 'ADD8E6' : 'Light Blue', // MISSING
  622. 'DDA0DD' : 'Plum', // MISSING
  623. 'D3D3D3' : 'Light Grey', // MISSING
  624. 'FFF0F5' : 'Lavender Blush', // MISSING
  625. 'FAEBD7' : 'Antique White', // MISSING
  626. 'FFFFE0' : 'Light Yellow', // MISSING
  627. 'F0FFF0' : 'Honeydew', // MISSING
  628. 'F0FFFF' : 'Azure', // MISSING
  629. 'F0F8FF' : 'Alice Blue', // MISSING
  630. 'E6E6FA' : 'Lavender', // MISSING
  631. 'FFF' : 'White' // MISSING
  632. },
  633. scayt :
  634. {
  635. title : 'Spell Check As You Type', // MISSING
  636. opera_title : 'Not supported by Opera', // MISSING
  637. enable : 'Enable SCAYT', // MISSING
  638. disable : 'Disable SCAYT', // MISSING
  639. about : 'About SCAYT', // MISSING
  640. toggle : 'Toggle SCAYT', // MISSING
  641. options : 'Options', // MISSING
  642. langs : 'Languages', // MISSING
  643. moreSuggestions : 'More suggestions', // MISSING
  644. ignore : 'Ignore', // MISSING
  645. ignoreAll : 'Ignore All', // MISSING
  646. addWord : 'Add Word', // MISSING
  647. emptyDic : 'Dictionary name should not be empty.', // MISSING
  648. optionsTab : 'Options', // MISSING
  649. allCaps : 'Ignore All-Caps Words', // MISSING
  650. ignoreDomainNames : 'Ignore Domain Names', // MISSING
  651. mixedCase : 'Ignore Words with Mixed Case', // MISSING
  652. mixedWithDigits : 'Ignore Words with Numbers', // MISSING
  653. languagesTab : 'Languages', // MISSING
  654. dictionariesTab : 'Dictionaries', // MISSING
  655. dic_field_name : 'Dictionary name', // MISSING
  656. dic_create : 'Create', // MISSING
  657. dic_restore : 'Restore', // MISSING
  658. dic_delete : 'Delete', // MISSING
  659. dic_rename : 'Rename', // MISSING
  660. dic_info : 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.', // MISSING
  661. aboutTab : 'About' // MISSING
  662. },
  663. about :
  664. {
  665. title : 'About CKEditor', // MISSING
  666. dlgTitle : 'About CKEditor', // MISSING
  667. help : 'Check $1 for help.', // MISSING
  668. userGuide : 'CKEditor User\'s Guide', // MISSING
  669. moreInfo : 'For licensing information please visit our web site:', // MISSING
  670. copy : 'Copyright &copy; $1. All rights reserved.' // MISSING
  671. },
  672. maximize : 'Maximize', // MISSING
  673. minimize : 'Minimize', // MISSING
  674. fakeobjects :
  675. {
  676. anchor : 'Anchor', // MISSING
  677. flash : 'Flash Animation', // MISSING
  678. iframe : 'IFrame', // MISSING
  679. hiddenfield : 'Hidden Field', // MISSING
  680. unknown : 'Unknown Object' // MISSING
  681. },
  682. resize : 'Drag to resize', // MISSING
  683. colordialog :
  684. {
  685. title : 'Select color', // MISSING
  686. options : 'Color Options', // MISSING
  687. highlight : 'Highlight', // MISSING
  688. selected : 'Selected Color', // MISSING
  689. clear : 'Clear' // MISSING
  690. },
  691. toolbarCollapse : 'Collapse Toolbar', // MISSING
  692. toolbarExpand : 'Expand Toolbar', // MISSING
  693. toolbarGroups :
  694. {
  695. document : 'Document', // MISSING
  696. clipboard : 'Clipboard/Undo', // MISSING
  697. editing : 'Editing', // MISSING
  698. forms : 'Forms', // MISSING
  699. basicstyles : 'Basic Styles', // MISSING
  700. paragraph : 'Paragraph', // MISSING
  701. links : 'Links', // MISSING
  702. insert : 'Insert', // MISSING
  703. styles : 'Styles', // MISSING
  704. colors : 'Colors', // MISSING
  705. tools : 'Tools' // MISSING
  706. },
  707. bidi :
  708. {
  709. ltr : 'Text direction from left to right', // MISSING
  710. rtl : 'Text direction from right to left' // MISSING
  711. },
  712. docprops :
  713. {
  714. label : 'Dokumenta īpašības',
  715. title : 'Dokumenta īpašības',
  716. design : 'Design', // MISSING
  717. meta : 'META dati',
  718. chooseColor : 'Choose', // MISSING
  719. other : '<cits>',
  720. docTitle : 'Dokumenta virsraksts <Title>',
  721. charset : 'Simbolu kodējums',
  722. charsetOther : 'Cits simbolu kodējums',
  723. charsetASCII : 'ASCII', // MISSING
  724. charsetCE : 'Central European', // MISSING
  725. charsetCT : 'Chinese Traditional (Big5)', // MISSING
  726. charsetCR : 'Cyrillic', // MISSING
  727. charsetGR : 'Greek', // MISSING
  728. charsetJP : 'Japanese', // MISSING
  729. charsetKR : 'Korean', // MISSING
  730. charsetTR : 'Turkish', // MISSING
  731. charsetUN : 'Unicode (UTF-8)', // MISSING
  732. charsetWE : 'Western European', // MISSING
  733. docType : 'Dokumenta tips',
  734. docTypeOther : 'Cits dokumenta tips',
  735. xhtmlDec : 'Ietvert XHTML deklarācijas',
  736. bgColor : 'Fona krāsa',
  737. bgImage : 'Fona attēla hipersaite',
  738. bgFixed : 'Fona attēls ir fiksēts',
  739. txtColor : 'Teksta krāsa',
  740. margin : 'Lapas robežas',
  741. marginTop : 'Augšā',
  742. marginLeft : 'Pa kreisi',
  743. marginRight : 'Pa labi',
  744. marginBottom : 'Apakšā',
  745. metaKeywords : 'Dokumentu aprakstoši atslēgvārdi (atdalīti ar komatu)',
  746. metaDescription : 'Dokumenta apraksts',
  747. metaAuthor : 'Autors',
  748. metaCopyright : 'Autortiesības',
  749. previewHtml : '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>' // MISSING
  750. }
  751. };