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