No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

520 líneas
15 KiB

  1. /**
  2. * TinyMCE 3.x language strings
  3. *
  4. * Loaded only when external plugins are added to TinyMCE.
  5. */
  6. ( function() {
  7. var main = {}, lang = 'en';
  8. if ( typeof tinyMCEPreInit !== 'undefined' && tinyMCEPreInit.ref.language !== 'en' ) {
  9. lang = tinyMCEPreInit.ref.language;
  10. }
  11. main[lang] = {
  12. common: {
  13. edit_confirm: "Do you want to use the WYSIWYG mode for this textarea?",
  14. apply: "Apply",
  15. insert: "Insert",
  16. update: "Update",
  17. cancel: "Cancel",
  18. close: "Close",
  19. browse: "Browse",
  20. class_name: "Class",
  21. not_set: "-- Not set --",
  22. clipboard_msg: "Copy/Cut/Paste is not available in Mozilla and Firefox.",
  23. clipboard_no_support: "Currently not supported by your browser, use keyboard shortcuts instead.",
  24. popup_blocked: "Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.",
  25. invalid_data: "ERROR: Invalid values entered, these are marked in red.",
  26. invalid_data_number: "{#field} must be a number",
  27. invalid_data_min: "{#field} must be a number greater than {#min}",
  28. invalid_data_size: "{#field} must be a number or percentage",
  29. more_colors: "More colors"
  30. },
  31. colors: {
  32. "000000": "Black",
  33. "993300": "Burnt orange",
  34. "333300": "Dark olive",
  35. "003300": "Dark green",
  36. "003366": "Dark azure",
  37. "000080": "Navy Blue",
  38. "333399": "Indigo",
  39. "333333": "Very dark gray",
  40. "800000": "Maroon",
  41. "FF6600": "Orange",
  42. "808000": "Olive",
  43. "008000": "Green",
  44. "008080": "Teal",
  45. "0000FF": "Blue",
  46. "666699": "Grayish blue",
  47. "808080": "Gray",
  48. "FF0000": "Red",
  49. "FF9900": "Amber",
  50. "99CC00": "Yellow green",
  51. "339966": "Sea green",
  52. "33CCCC": "Turquoise",
  53. "3366FF": "Royal blue",
  54. "800080": "Purple",
  55. "999999": "Medium gray",
  56. "FF00FF": "Magenta",
  57. "FFCC00": "Gold",
  58. "FFFF00": "Yellow",
  59. "00FF00": "Lime",
  60. "00FFFF": "Aqua",
  61. "00CCFF": "Sky blue",
  62. "993366": "Brown",
  63. "C0C0C0": "Silver",
  64. "FF99CC": "Pink",
  65. "FFCC99": "Peach",
  66. "FFFF99": "Light yellow",
  67. "CCFFCC": "Pale green",
  68. "CCFFFF": "Pale cyan",
  69. "99CCFF": "Light sky blue",
  70. "CC99FF": "Plum",
  71. "FFFFFF": "White"
  72. },
  73. contextmenu: {
  74. align: "Alignment",
  75. left: "Left",
  76. center: "Center",
  77. right: "Right",
  78. full: "Full"
  79. },
  80. insertdatetime: {
  81. date_fmt: "%Y-%m-%d",
  82. time_fmt: "%H:%M:%S",
  83. insertdate_desc: "Insert date",
  84. inserttime_desc: "Insert time",
  85. months_long: "January,February,March,April,May,June,July,August,September,October,November,December",
  86. months_short: "Jan_January_abbreviation,Feb_February_abbreviation,Mar_March_abbreviation,Apr_April_abbreviation,May_May_abbreviation,Jun_June_abbreviation,Jul_July_abbreviation,Aug_August_abbreviation,Sep_September_abbreviation,Oct_October_abbreviation,Nov_November_abbreviation,Dec_December_abbreviation",
  87. day_long: "Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday",
  88. day_short: "Sun,Mon,Tue,Wed,Thu,Fri,Sat"
  89. },
  90. print: {
  91. print_desc: "Print"
  92. },
  93. preview: {
  94. preview_desc: "Preview"
  95. },
  96. directionality: {
  97. ltr_desc: "Direction left to right",
  98. rtl_desc: "Direction right to left"
  99. },
  100. layer: {
  101. insertlayer_desc: "Insert new layer",
  102. forward_desc: "Move forward",
  103. backward_desc: "Move backward",
  104. absolute_desc: "Toggle absolute positioning",
  105. content: "New layer..."
  106. },
  107. save: {
  108. save_desc: "Save",
  109. cancel_desc: "Cancel all changes"
  110. },
  111. nonbreaking: {
  112. nonbreaking_desc: "Insert non-breaking space character"
  113. },
  114. iespell: {
  115. iespell_desc: "Run spell checking",
  116. download: "ieSpell not detected. Do you want to install it now?"
  117. },
  118. advhr: {
  119. advhr_desc: "Horizontal rule"
  120. },
  121. emotions: {
  122. emotions_desc: "Emotions"
  123. },
  124. searchreplace: {
  125. search_desc: "Find",
  126. replace_desc: "Find/Replace"
  127. },
  128. advimage: {
  129. image_desc: "Insert/edit image"
  130. },
  131. advlink: {
  132. link_desc: "Insert/edit link"
  133. },
  134. xhtmlxtras: {
  135. cite_desc: "Citation",
  136. abbr_desc: "Abbreviation",
  137. acronym_desc: "Acronym",
  138. del_desc: "Deletion",
  139. ins_desc: "Insertion",
  140. attribs_desc: "Insert/Edit Attributes"
  141. },
  142. style: {
  143. desc: "Edit CSS Style"
  144. },
  145. paste: {
  146. paste_text_desc: "Paste as Plain Text",
  147. paste_word_desc: "Paste from Word",
  148. selectall_desc: "Select All",
  149. plaintext_mode_sticky: "Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.",
  150. plaintext_mode: "Paste is now in plain text mode. Click again to toggle back to regular paste mode."
  151. },
  152. paste_dlg: {
  153. text_title: "Use CTRL + V on your keyboard to paste the text into the window.",
  154. text_linebreaks: "Keep linebreaks",
  155. word_title: "Use CTRL + V on your keyboard to paste the text into the window."
  156. },
  157. table: {
  158. desc: "Inserts a new table",
  159. row_before_desc: "Insert row before",
  160. row_after_desc: "Insert row after",
  161. delete_row_desc: "Delete row",
  162. col_before_desc: "Insert column before",
  163. col_after_desc: "Insert column after",
  164. delete_col_desc: "Remove column",
  165. split_cells_desc: "Split merged table cells",
  166. merge_cells_desc: "Merge table cells",
  167. row_desc: "Table row properties",
  168. cell_desc: "Table cell properties",
  169. props_desc: "Table properties",
  170. paste_row_before_desc: "Paste table row before",
  171. paste_row_after_desc: "Paste table row after",
  172. cut_row_desc: "Cut table row",
  173. copy_row_desc: "Copy table row",
  174. del: "Delete table",
  175. row: "Row",
  176. col: "Column",
  177. cell: "Cell"
  178. },
  179. autosave: {
  180. unload_msg: "The changes you made will be lost if you navigate away from this page."
  181. },
  182. fullscreen: {
  183. desc: "Toggle fullscreen mode (Alt + Shift + G)"
  184. },
  185. media: {
  186. desc: "Insert / edit embedded media",
  187. edit: "Edit embedded media"
  188. },
  189. fullpage: {
  190. desc: "Document properties"
  191. },
  192. template: {
  193. desc: "Insert predefined template content"
  194. },
  195. visualchars: {
  196. desc: "Visual control characters on/off."
  197. },
  198. spellchecker: {
  199. desc: "Toggle spellchecker (Alt + Shift + N)",
  200. menu: "Spellchecker settings",
  201. ignore_word: "Ignore word",
  202. ignore_words: "Ignore all",
  203. langs: "Languages",
  204. wait: "Please wait...",
  205. sug: "Suggestions",
  206. no_sug: "No suggestions",
  207. no_mpell: "No misspellings found.",
  208. learn_word: "Learn word"
  209. },
  210. pagebreak: {
  211. desc: "Insert Page Break"
  212. },
  213. advlist:{
  214. types: "Types",
  215. def: "Default",
  216. lower_alpha: "Lower alpha",
  217. lower_greek: "Lower greek",
  218. lower_roman: "Lower roman",
  219. upper_alpha: "Upper alpha",
  220. upper_roman: "Upper roman",
  221. circle: "Circle",
  222. disc: "Disc",
  223. square: "Square"
  224. },
  225. aria: {
  226. rich_text_area: "Rich Text Area"
  227. },
  228. wordcount:{
  229. words: "Words: "
  230. }
  231. };
  232. tinyMCE.addI18n( main );
  233. tinyMCE.addI18n( lang + ".advanced", {
  234. style_select: "Styles",
  235. font_size: "Font size",
  236. fontdefault: "Font family",
  237. block: "Format",
  238. paragraph: "Paragraph",
  239. div: "Div",
  240. address: "Address",
  241. pre: "Preformatted",
  242. h1: "Heading 1",
  243. h2: "Heading 2",
  244. h3: "Heading 3",
  245. h4: "Heading 4",
  246. h5: "Heading 5",
  247. h6: "Heading 6",
  248. blockquote: "Blockquote",
  249. code: "Code",
  250. samp: "Code sample",
  251. dt: "Definition term ",
  252. dd: "Definition description",
  253. bold_desc: "Bold (Ctrl + B)",
  254. italic_desc: "Italic (Ctrl + I)",
  255. underline_desc: "Underline",
  256. striketrough_desc: "Strikethrough (Alt + Shift + D)",
  257. justifyleft_desc: "Align Left (Alt + Shift + L)",
  258. justifycenter_desc: "Align Center (Alt + Shift + C)",
  259. justifyright_desc: "Align Right (Alt + Shift + R)",
  260. justifyfull_desc: "Align Full (Alt + Shift + J)",
  261. bullist_desc: "Unordered list (Alt + Shift + U)",
  262. numlist_desc: "Ordered list (Alt + Shift + O)",
  263. outdent_desc: "Outdent",
  264. indent_desc: "Indent",
  265. undo_desc: "Undo (Ctrl + Z)",
  266. redo_desc: "Redo (Ctrl + Y)",
  267. link_desc: "Insert/edit link (Alt + Shift + A)",
  268. unlink_desc: "Unlink (Alt + Shift + S)",
  269. image_desc: "Insert/edit image (Alt + Shift + M)",
  270. cleanup_desc: "Cleanup messy code",
  271. code_desc: "Edit HTML Source",
  272. sub_desc: "Subscript",
  273. sup_desc: "Superscript",
  274. hr_desc: "Insert horizontal ruler",
  275. removeformat_desc: "Remove formatting",
  276. forecolor_desc: "Select text color",
  277. backcolor_desc: "Select background color",
  278. charmap_desc: "Insert custom character",
  279. visualaid_desc: "Toggle guidelines/invisible elements",
  280. anchor_desc: "Insert/edit anchor",
  281. cut_desc: "Cut",
  282. copy_desc: "Copy",
  283. paste_desc: "Paste",
  284. image_props_desc: "Image properties",
  285. newdocument_desc: "New document",
  286. help_desc: "Help",
  287. blockquote_desc: "Blockquote (Alt + Shift + Q)",
  288. clipboard_msg: "Copy/Cut/Paste is not available in Mozilla and Firefox.",
  289. path: "Path",
  290. newdocument: "Are you sure you want to clear all contents?",
  291. toolbar_focus: "Jump to tool buttons - Alt+Q, Jump to editor - Alt-Z, Jump to element path - Alt-X",
  292. more_colors: "More colors",
  293. shortcuts_desc: "Accessibility Help",
  294. help_shortcut: " Press ALT F10 for toolbar. Press ALT 0 for help.",
  295. rich_text_area: "Rich Text Area",
  296. toolbar: "Toolbar"
  297. });
  298. tinyMCE.addI18n( lang + ".advanced_dlg", {
  299. about_title: "About TinyMCE",
  300. about_general: "About",
  301. about_help: "Help",
  302. about_license: "License",
  303. about_plugins: "Plugins",
  304. about_plugin: "Plugin",
  305. about_author: "Author",
  306. about_version: "Version",
  307. about_loaded: "Loaded plugins",
  308. anchor_title: "Insert/edit anchor",
  309. anchor_name: "Anchor name",
  310. code_title: "HTML Source Editor",
  311. code_wordwrap: "Word wrap",
  312. colorpicker_title: "Select a color",
  313. colorpicker_picker_tab: "Picker",
  314. colorpicker_picker_title: "Color picker",
  315. colorpicker_palette_tab: "Palette",
  316. colorpicker_palette_title: "Palette colors",
  317. colorpicker_named_tab: "Named",
  318. colorpicker_named_title: "Named colors",
  319. colorpicker_color: "Color: ",
  320. colorpicker_name: "Name: ",
  321. charmap_title: "Select custom character",
  322. charmap_usage: "Use left and right arrows to navigate.",
  323. image_title: "Insert/edit image",
  324. image_src: "Image URL",
  325. image_alt: "Image description",
  326. image_list: "Image list",
  327. image_border: "Border",
  328. image_dimensions: "Dimensions",
  329. image_vspace: "Vertical space",
  330. image_hspace: "Horizontal space",
  331. image_align: "Alignment",
  332. image_align_baseline: "Baseline",
  333. image_align_top: "Top",
  334. image_align_middle: "Middle",
  335. image_align_bottom: "Bottom",
  336. image_align_texttop: "Text top",
  337. image_align_textbottom: "Text bottom",
  338. image_align_left: "Left",
  339. image_align_right: "Right",
  340. link_title: "Insert/edit link",
  341. link_url: "Link URL",
  342. link_target: "Target",
  343. link_target_same: "Open link in the same window",
  344. link_target_blank: "Open link in a new window",
  345. link_titlefield: "Title",
  346. link_is_email: "The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
  347. link_is_external: "The URL you entered seems to be an external link, do you want to add the required http:// prefix?",
  348. link_list: "Link list",
  349. accessibility_help: "Accessibility Help",
  350. accessibility_usage_title: "General Usage"
  351. });
  352. tinyMCE.addI18n( lang + ".media_dlg", {
  353. title: "Insert / edit embedded media",
  354. general: "General",
  355. advanced: "Advanced",
  356. file: "File/URL",
  357. list: "List",
  358. size: "Dimensions",
  359. preview: "Preview",
  360. constrain_proportions: "Constrain proportions",
  361. type: "Type",
  362. id: "Id",
  363. name: "Name",
  364. class_name: "Class",
  365. vspace: "V-Space",
  366. hspace: "H-Space",
  367. play: "Auto play",
  368. loop: "Loop",
  369. menu: "Show menu",
  370. quality: "Quality",
  371. scale: "Scale",
  372. align: "Align",
  373. salign: "SAlign",
  374. wmode: "WMode",
  375. bgcolor: "Background",
  376. base: "Base",
  377. flashvars: "Flashvars",
  378. liveconnect: "SWLiveConnect",
  379. autohref: "AutoHREF",
  380. cache: "Cache",
  381. hidden: "Hidden",
  382. controller: "Controller",
  383. kioskmode: "Kiosk mode",
  384. playeveryframe: "Play every frame",
  385. targetcache: "Target cache",
  386. correction: "No correction",
  387. enablejavascript: "Enable JavaScript",
  388. starttime: "Start time",
  389. endtime: "End time",
  390. href: "href",
  391. qtsrcchokespeed: "Choke speed",
  392. target: "Target",
  393. volume: "Volume",
  394. autostart: "Auto start",
  395. enabled: "Enabled",
  396. fullscreen: "Fullscreen",
  397. invokeurls: "Invoke URLs",
  398. mute: "Mute",
  399. stretchtofit: "Stretch to fit",
  400. windowlessvideo: "Windowless video",
  401. balance: "Balance",
  402. baseurl: "Base URL",
  403. captioningid: "Captioning id",
  404. currentmarker: "Current marker",
  405. currentposition: "Current position",
  406. defaultframe: "Default frame",
  407. playcount: "Play count",
  408. rate: "Rate",
  409. uimode: "UI Mode",
  410. flash_options: "Flash options",
  411. qt_options: "QuickTime options",
  412. wmp_options: "Windows media player options",
  413. rmp_options: "Real media player options",
  414. shockwave_options: "Shockwave options",
  415. autogotourl: "Auto goto URL",
  416. center: "Center",
  417. imagestatus: "Image status",
  418. maintainaspect: "Maintain aspect",
  419. nojava: "No java",
  420. prefetch: "Prefetch",
  421. shuffle: "Shuffle",
  422. console: "Console",
  423. numloop: "Num loops",
  424. controls: "Controls",
  425. scriptcallbacks: "Script callbacks",
  426. swstretchstyle: "Stretch style",
  427. swstretchhalign: "Stretch H-Align",
  428. swstretchvalign: "Stretch V-Align",
  429. sound: "Sound",
  430. progress: "Progress",
  431. qtsrc: "QT Src",
  432. qt_stream_warn: "Streamed rtsp resources should be added to the QT Src field under the advanced tab.",
  433. align_top: "Top",
  434. align_right: "Right",
  435. align_bottom: "Bottom",
  436. align_left: "Left",
  437. align_center: "Center",
  438. align_top_left: "Top left",
  439. align_top_right: "Top right",
  440. align_bottom_left: "Bottom left",
  441. align_bottom_right: "Bottom right",
  442. flv_options: "Flash video options",
  443. flv_scalemode: "Scale mode",
  444. flv_buffer: "Buffer",
  445. flv_startimage: "Start image",
  446. flv_starttime: "Start time",
  447. flv_defaultvolume: "Default volume",
  448. flv_hiddengui: "Hidden GUI",
  449. flv_autostart: "Auto start",
  450. flv_loop: "Loop",
  451. flv_showscalemodes: "Show scale modes",
  452. flv_smoothvideo: "Smooth video",
  453. flv_jscallback: "JS Callback",
  454. html5_video_options: "HTML5 Video Options",
  455. altsource1: "Alternative source 1",
  456. altsource2: "Alternative source 2",
  457. preload: "Preload",
  458. poster: "Poster",
  459. source: "Source"
  460. });
  461. tinyMCE.addI18n( lang + ".wordpress", {
  462. wp_adv_desc: "Show/Hide Kitchen Sink (Alt + Shift + Z)",
  463. wp_more_desc: "Insert More Tag (Alt + Shift + T)",
  464. wp_page_desc: "Insert Page break (Alt + Shift + P)",
  465. wp_help_desc: "Help (Alt + Shift + H)",
  466. wp_more_alt: "More...",
  467. wp_page_alt: "Next page...",
  468. add_media: "Add Media",
  469. add_image: "Add an Image",
  470. add_video: "Add Video",
  471. add_audio: "Add Audio",
  472. editgallery: "Edit Gallery",
  473. delgallery: "Delete Gallery",
  474. wp_fullscreen_desc: "Distraction-free writing mode (Alt + Shift + W)"
  475. });
  476. tinyMCE.addI18n( lang + ".wpeditimage", {
  477. edit_img: "Edit Image",
  478. del_img: "Delete Image",
  479. adv_settings: "Advanced Settings",
  480. none: "None",
  481. size: "Size",
  482. thumbnail: "Thumbnail",
  483. medium: "Medium",
  484. full_size: "Full Size",
  485. current_link: "Current Link",
  486. link_to_img: "Link to Image",
  487. link_help: "Enter a link URL or click above for presets.",
  488. adv_img_settings: "Advanced Image Settings",
  489. source: "Source",
  490. width: "Width",
  491. height: "Height",
  492. orig_size: "Original Size",
  493. css: "CSS Class",
  494. adv_link_settings: "Advanced Link Settings",
  495. link_rel: "Link Rel",
  496. height: "Height",
  497. orig_size: "Original Size",
  498. css: "CSS Class",
  499. s60: "60%",
  500. s70: "70%",
  501. s80: "80%",
  502. s90: "90%",
  503. s100: "100%",
  504. s110: "110%",
  505. s120: "120%",
  506. s130: "130%",
  507. img_title: "Title",
  508. caption: "Caption",
  509. alt: "Alternative Text"
  510. });
  511. }());