first init
This commit is contained in:
43
htdocs/resource2/tinymce/config/content.css
Normal file
43
htdocs/resource2/tinymce/config/content.css
Normal file
@ -0,0 +1,43 @@
|
||||
body {
|
||||
background-color: #FFFFFF;
|
||||
|
||||
font-family:verdana,arial,helvetica,helv,sans-serif;
|
||||
font-size:x-small;
|
||||
letter-spacing:0px;
|
||||
/*line-height:3ex;*/
|
||||
vertical-align:top;
|
||||
|
||||
scrollbar-3dlight-color: #F0F0EE;
|
||||
scrollbar-arrow-color: #676662;
|
||||
scrollbar-base-color: #F0F0EE;
|
||||
scrollbar-darkshadow-color: #DDDDDD;
|
||||
scrollbar-face-color: #E0E0DD;
|
||||
scrollbar-highlight-color: #F0F0EE;
|
||||
scrollbar-shadow-color: #F0F0EE;
|
||||
scrollbar-track-color: #F5F5F5;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
font-family:sans-serif;
|
||||
font-size:x-small;
|
||||
text-align:justify;
|
||||
}
|
||||
|
||||
h2
|
||||
{
|
||||
font-family:sans-serif;
|
||||
font-size:x-small;
|
||||
text-align:justify;
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
a:hover
|
||||
{
|
||||
color:blue;
|
||||
}
|
64
htdocs/resource2/tinymce/config/desc.js.php
Normal file
64
htdocs/resource2/tinymce/config/desc.js.php
Normal file
@ -0,0 +1,64 @@
|
||||
<?php
|
||||
if (isset($_REQUEST['cacheid'])) {
|
||||
$cacheID = $_REQUEST['cacheid'];
|
||||
}
|
||||
else {
|
||||
$cacheID = 0;
|
||||
}
|
||||
if (isset($_REQUEST['lang'])) {
|
||||
$lang = $_REQUEST['lang'];
|
||||
}
|
||||
else {
|
||||
$lang = 'de';
|
||||
}
|
||||
?>
|
||||
tinyMCE_GZ.init({
|
||||
plugins : 'advhr,contextmenu,emotions,insertdatetime,paste,table',
|
||||
themes : 'advanced',
|
||||
languages : '<?php echo $lang; ?>',
|
||||
disk_cache : true,
|
||||
debug : false
|
||||
});
|
||||
tinyMCE.init({
|
||||
mode : "textareas",
|
||||
theme : "advanced",
|
||||
|
||||
plugins : "advhr,contextmenu,emotions,insertdatetime,paste,table",
|
||||
|
||||
theme_advanced_buttons1 : "cut,copy,paste,pasteword,pastetext,removeformat,separator,undo,redo,separator,link,unlink,image,separator,fontselect,fontsizeselect",
|
||||
theme_advanced_buttons2 : "bold,italic,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,bullist,numlist,separator,insertdate,inserttime,separator,forecolor,backcolor,charmap,emotions",
|
||||
theme_advanced_buttons3 : "visualaid,tablecontrols,separator,advhr",
|
||||
|
||||
theme_advanced_toolbar_location : "top",
|
||||
theme_advanced_toolbar_align : "left",
|
||||
theme_advanced_path_location : "bottom",
|
||||
plugin_insertdate_dateFormat : "%Y-%m-%d",
|
||||
plugin_insertdate_timeFormat : "%H:%M:%S",
|
||||
file_browser_callback : "imageBrowser",
|
||||
|
||||
theme_advanced_resize_horizontal : false,
|
||||
theme_advanced_resizing : true,
|
||||
editor_deselector : "mceNoEditor",
|
||||
language : "<?php echo $lang; ?>",
|
||||
preformatted : true,
|
||||
remove_linebreaks : false,
|
||||
oninit : "postInit",
|
||||
|
||||
content_css : "resource2/tinymce/config/content.css"
|
||||
});
|
||||
|
||||
var fileBrowserReturnURL = "";
|
||||
var fileBrowserWin;
|
||||
var fileBrowserFieldName;
|
||||
|
||||
function imageBrowser(field_name, url, type, win)
|
||||
{
|
||||
window.open('../../../../imagebrowser.php?cacheid=<?php echo $cacheID+0; ?>', '', 'width=450,height=550,menubar=no,scrollbars=yes,status=no,location=no,resizable=yes,status=no,dependent');
|
||||
fileBrowserWin = win;
|
||||
fileBrowserFieldName = field_name;
|
||||
}
|
||||
|
||||
function fileBrowserReturn(url)
|
||||
{
|
||||
fileBrowserWin.document.forms[0].elements[fileBrowserFieldName].value = url;
|
||||
}
|
0
htdocs/resource2/tinymce/config/index.html
Normal file
0
htdocs/resource2/tinymce/config/index.html
Normal file
58
htdocs/resource2/tinymce/config/log.js.php
Normal file
58
htdocs/resource2/tinymce/config/log.js.php
Normal file
@ -0,0 +1,58 @@
|
||||
<?php
|
||||
if (isset($_REQUEST['lang'])) {
|
||||
$lang = $_REQUEST['lang'];
|
||||
}
|
||||
else {
|
||||
$lang = 'de';
|
||||
}
|
||||
?>
|
||||
tinyMCE_GZ.init({
|
||||
plugins : 'advhr,contextmenu,emotions,insertdatetime,paste,table',
|
||||
themes : 'advanced',
|
||||
languages : '<?php echo $lang; ?>',
|
||||
disk_cache : true,
|
||||
debug : false
|
||||
});
|
||||
tinyMCE.init({
|
||||
mode : "textareas",
|
||||
theme : "advanced",
|
||||
|
||||
plugins : "advhr,contextmenu,emotions,insertdatetime,table",
|
||||
|
||||
theme_advanced_buttons1 : "cut,copy,paste,pasteword,pastetext,removeformat,separator,undo,redo,separator,link,unlink,separator,fontselect,fontsizeselect",
|
||||
theme_advanced_buttons2 : "bold,italic,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,bullist,numlist,separator,insertdate,inserttime,separator,forecolor,backcolor,charmap,emotions",
|
||||
theme_advanced_buttons3 : "",
|
||||
|
||||
theme_advanced_toolbar_location : "top",
|
||||
theme_advanced_toolbar_align : "left",
|
||||
theme_advanced_path_location : "bottom",
|
||||
plugin_insertdate_dateFormat : "%Y-%m-%d",
|
||||
plugin_insertdate_timeFormat : "%H:%M:%S",
|
||||
file_browser_callback : "imageBrowser",
|
||||
|
||||
theme_advanced_resize_horizontal : false,
|
||||
theme_advanced_resizing : true,
|
||||
editor_deselector : "mceNoEditor",
|
||||
language : "<?php echo $lang; ?>",
|
||||
preformatted : true,
|
||||
remove_linebreaks : false,
|
||||
oninit : "postInit",
|
||||
|
||||
content_css : "resource2/tinymce/config/content.css"
|
||||
});
|
||||
|
||||
var fileBrowserReturnURL = "";
|
||||
var fileBrowserWin;
|
||||
var fileBrowserFieldName;
|
||||
|
||||
function imageBrowser(field_name, url, type, win)
|
||||
{
|
||||
window.open('../../../../imagebrowser.php?logid=<?php echo isset($_REQUEST['logid']) ? ($_REQUEST['logid']+0) : 0; ?>', '', 'width=450,height=550,menubar=no,scrollbars=yes,status=no,location=no,resizable=yes,status=no,dependent');
|
||||
fileBrowserWin = win;
|
||||
fileBrowserFieldName = field_name;
|
||||
}
|
||||
|
||||
function fileBrowserReturn(url)
|
||||
{
|
||||
fileBrowserWin.document.forms[0].elements[fileBrowserFieldName].value = url;
|
||||
}
|
170
htdocs/resource2/tinymce/langs/ar.js
Normal file
170
htdocs/resource2/tinymce/langs/ar.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ar:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"\u062A\u0637\u0628\u064A\u0642",
|
||||
insert:"\u0625\u062F\u0631\u0627\u062C",
|
||||
update:" \u062A\u062D\u062F\u064A\u062B",
|
||||
cancel:" \u0625\u0644\u063A\u0627\u0621",
|
||||
close:"\u0625\u063A\u0644\u0627\u0642",
|
||||
browse:"\u062A\u0635\u0641\u062D",
|
||||
class_name:" \u0627\u0644\u062F\u0631\u062C\u0629 ",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:" \u0646\u0633\u062E / \u0642\u0635 / \u0644\u0635\u0642 \u063A\u064A\u0631 \u0645\u062A\u0648\u0641\u0631 \u0641\u064A \u0645\u0648\u0632\u064A\u0644\u0627 \u0648\u0641\u0627\u064A\u0631\u0641\u0648\u0643\u0633.\n\u062A\u0631\u064A\u062F \u0627\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u062D\u0648\u0644 \u0647\u0630\u0647 \u0627\u0644\u0645\u0634\u0643\u0644\u0629\u061F ",
|
||||
clipboard_no_support:"\u062D\u0627\u0644\u064A\u0627 \u063A\u064A\u0631 \u0645\u0639\u062A\u0645\u062F\u0629 \u0645\u0646 \u0642\u0628\u0644 \u0627\u0644\u0645\u062A\u0635\u0641\u062D \u0627\u0644\u062E\u0627\u0635 \u0628\u0643 \u060C \u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u062E\u062A\u0635\u0627\u0631\u0627\u062A \u0644\u0648\u062D\u0629 \u0627\u0644\u0645\u0641\u0627\u062A\u064A\u062D \u0628\u062F\u0644\u0627 \u0645\u0646 \u0630\u0644\u0643. ",
|
||||
popup_blocked:"\u0639\u0630\u0631\u0627 \u060C \u0644\u0643\u0646 \u0644\u0627\u062D\u0638\u0646\u0627 \u0628\u0623\u0646 \u0645\u0627 \u062A\u062A\u0645\u062A\u0639\u0648\u0646 \u0628\u0647 \u0627\u0644\u0645\u0646\u0628\u062B\u0642\u0629 \u0645\u062D\u0635\u0631 \u0648\u062A\u0639\u0637\u064A\u0644 \u0627\u0644\u0625\u0637\u0627\u0631 \u0627\u0644\u0630\u064A \u064A\u0648\u0641\u0631 \u0648\u0638\u0627\u0626\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642. \u0633\u0648\u0641 \u062A\u062D\u062A\u0627\u062C \u0625\u0644\u0649 \u062A\u0639\u0637\u064A\u0644 \u0627\u0644\u0645\u0646\u0628\u062B\u0642\u0629 \u062D\u0638\u0631 \u0639\u0644\u0649 \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0642\u0639 \u0645\u0646 \u0623\u062C\u0644 \u0627\u0644\u0627\u0633\u062A\u0641\u0627\u062F\u0629 \u0627\u0644\u0643\u0627\u0645\u0644\u0629 \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u0623\u062F\u0627\u0629",
|
||||
invalid_data:" \u062E\u0637\u0623.: \u062F\u062E\u0644 \u0635\u0627\u0644\u062D \u0627\u0644\u0642\u064A\u0645 \u060C \u0648\u0647\u0630\u0647 \u0647\u064A \u0645\u0639\u0644\u0645\u0629 \u0628\u0627\u0644\u0644\u0648\u0646 \u0627\u0644\u0627\u062D\u0645\u0631",
|
||||
more_colors:"\u0627\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0623\u0644\u0648\u0627\u0646"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/az.js
Normal file
171
htdocs/resource2/tinymce/langs/az.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({az:{
|
||||
common:{
|
||||
edit_confirm:"Siz haz\u0131rki m\u0259tn sah\u0259si \u00FC\u00E7\u00FCn WYSIWYG rejimi istifad\u0259 etm\u0259k ist\u0259yirsiniz?",
|
||||
apply:"T\u0259tbiq et",
|
||||
insert:"\u018Flav\u0259 et",
|
||||
update:"Yenil\u0259",
|
||||
cancel:"L\u0259\u011Fv et",
|
||||
close:"Ba\u011Fla",
|
||||
browse:"G\u00F6zd\u0259n ke\u00E7ir",
|
||||
class_name:"Sinif",
|
||||
not_set:"-- M\u00FC\u0259yy\u0259n edilm\u0259yib --",
|
||||
clipboard_msg:"Kopyalama/\u018Flav\u0259 et Mozilla v\u0259 Firefox-da i\u015Fl\u0259mir.\nN\u0259 ba\u015F verdiyi haqda daha \u0259trafl\u0131 \u00F6yr\u0259nm\u0259k ist\u0259yirsiniz?",
|
||||
clipboard_no_support:"Hal-haz\u0131rda b\u0259l\u0259d\u00E7iniz t\u0259r\u0259find\u0259n d\u0259st\u0259kl\u0259nmir. Klaviatura q\u0131saldmas\u0131ndan istifad\u0259 edin.",
|
||||
popup_blocked:"Ba\u011F\u0131\u015Flay\u0131n, lakin sizin \u00FCz\u0259 \u00E7\u0131xan p\u0259nc\u0259r\u0259l\u0259riniz funksiya p\u0259nc\u0259r\u0259sinin qar\u015F\u0131s\u0131n\u0131 ald\u0131. G\u0259r\u0259k \u00FCz\u0259 \u00E7\u0131xan p\u0259nc\u0259r\u0259l\u0259rin bloklama nizamlamas\u0131n\u0131 l\u0259\u011Fv ed\u0259siniz ki, al\u0259td\u0259n tam istifad\u0259 ed\u0259 bil\u0259siniz.",
|
||||
invalid_data:"X\u0259ta: Q\u0131rm\u0131z\u0131 il\u0259 qeyd edilmi\u015Fl\u0259r s\u0259hv daxil edilib.",
|
||||
more_colors:"Daha \u00E7ox r\u0259ng"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Tarazla\u015Fd\u0131r",
|
||||
left:"Sola",
|
||||
center:"M\u0259rk\u0259z il\u0259",
|
||||
right:"Sa\u011Fa",
|
||||
full:"Tam"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Tarix \u0259lav\u0259 et",
|
||||
inserttime_desc:"Vaxt \u0259lav\u0259 et",
|
||||
months_long:"Yanvar,Fevral,Mart,Aprel,May,\u0130yun,\u0130yul,Avqust,Sentyabr,Oktyabr,Noyabr,Dekabr",
|
||||
months_short:"Yan,Fev,Mar,Apr,May,\u0130yu,\u0130yl,Avq,Sen,Okt,Noy,Dek",
|
||||
day_long:"Bazar,Bazar ert\u0259si,\u00C7\u0259r\u015F\u0259nb\u0259 ax\u015Fam\u0131,\u00C7\u0259r\u015F\u0259nb\u0259,C\u00FCm\u0259 ax\u015Fam\u0131,C\u00FCm\u0259,\u015E\u0259nb\u0259,Bazar",
|
||||
day_short:"B,Be,\u00C7a,\u00C7,Ca,C,\u015E,B"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u00C7ap et"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u0130lkin bax\u0131\u015F"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u0130stiqam\u0259t soldan-sa\u011Fa",
|
||||
rtl_desc:"\u0130stiqam\u0259t sa\u011Fdan-sola"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Yeni qat \u0259lav\u0259 et",
|
||||
forward_desc:"\u0130r\u0259li k\u00F6\u00E7\u00FCr",
|
||||
backward_desc:"Geri k\u00F6\u00E7\u00FCr",
|
||||
absolute_desc:"M\u00FCtl\u0259q m\u00F6vqeni yand\u0131r/s\u00F6nd\u00FCr",
|
||||
content:"Yeni qat..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Yadda saxla",
|
||||
cancel_desc:"B\u00FCt\u00FCn d\u0259yi\u015Fiklikl\u0259ri l\u0259\u011Fv et"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Q\u0131r\u0131lmaz bo\u015Fluq \u0259lav\u0259 et"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Orfoqrafiyan\u0131 yoxla",
|
||||
download:"ieSpell a\u015Fkar edilm\u0259yib. Y\u00FCkl\u0259nilsin?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u00DCf\u00FCqi x\u0259tt"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Smayllar"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Axtar",
|
||||
replace_desc:"Axtar/D\u0259yi\u015F"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u015E\u0259kli \u0259lav\u0259/redakt\u0259 et"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Ke\u00E7idi \u0259lav\u0259/redakt\u0259 et"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Sitat",
|
||||
abbr_desc:"Abbreviatura",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Silinmi\u015F m\u0259tn",
|
||||
ins_desc:"\u018Flav\u0259 edilmi\u015F m\u0259tn",
|
||||
attribs_desc:"Atribut \u0259lav\u0259/redakt\u0259 et"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS stili redakt\u0259 et",
|
||||
delta_width:"35"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Sad\u0259 m\u0259tn kimi \u0259lav\u0259 et",
|
||||
paste_word_desc:"Word-d\u0259n \u0259lav\u0259 et",
|
||||
selectall_desc:"Ham\u0131s\u0131n\u0131 se\u00E7",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"P\u0259nc\u0259r\u0259y\u0259 m\u0259tn \u0259lav\u0259 etm\u0259k \u00FC\u00E7\u00FCn CTRL+V klavi\u015F birl\u0259\u015Fm\u0259sini istifad\u0259 edin.",
|
||||
text_linebreaks:"S\u0259tr s\u0131nmalar\u0131n\u0131 saxla",
|
||||
word_title:"P\u0259nc\u0259r\u0259y\u0259 s\u00F6z \u0259lav\u0259 etm\u0259k \u00FC\u00E7\u00FCn CTRL+V klavi\u015F birl\u0259\u015Fm\u0259sini istifad\u0259 edin."
|
||||
},
|
||||
table:{
|
||||
desc:"Yeni c\u0259dv\u0259l \u0259lav\u0259 et",
|
||||
row_before_desc:"S\u0259tri \u0259vv\u0259l \u0259lav\u0259 et:",
|
||||
row_after_desc:"S\u0259tri sonra \u0259vv\u0259l et:",
|
||||
delete_row_desc:"S\u0259tri sil",
|
||||
col_before_desc:"S\u00FCtunu \u0259vv\u0259l \u0259lav\u0259 et:",
|
||||
col_after_desc:"S\u00FCtunu sonra \u0259lav\u0259 et:",
|
||||
delete_col_desc:"S\u00FCtunu sil",
|
||||
split_cells_desc:"S\u00FCz\u00FClm\u00FC\u015F \u00F6z\u0259kl\u0259ri ay\u0131r",
|
||||
merge_cells_desc:"\u00D6z\u0259kl\u0259ri s\u00FCz",
|
||||
row_desc:"S\u0259tr x\u00FCsusiyy\u0259tl\u0259ri",
|
||||
cell_desc:"\u00D6z\u0259k x\u00FCsusiyy\u0259tl\u0259ri",
|
||||
props_desc:"C\u0259dv\u0259l x\u00FCsusiyy\u0259tl\u0259ri",
|
||||
paste_row_before_desc:"S\u0259tr c\u0259dv\u0259lini \u0259vv\u0259l \u0259lav\u0259 et:",
|
||||
paste_row_after_desc:"S\u0259tr c\u0259dv\u0259lini sonra \u0259lav\u0259 et:",
|
||||
cut_row_desc:"S\u0259tri k\u0259s",
|
||||
copy_row_desc:"S\u0259tri kopyala",
|
||||
del:"C\u0259dv\u0259li sil",
|
||||
row:"S\u0259tr",
|
||||
col:"S\u00FCtun",
|
||||
cell:"\u00D6z\u0259k"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u018Fg\u0259r s\u0259hif\u0259d\u0259n gets\u0259niz b\u00FCt\u00FCn d\u0259yi\u015Fiklikl\u0259r itiril\u0259c\u0259k.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Tamekran rejimini yand\u0131r/s\u00F6nd\u00FCr"
|
||||
},
|
||||
media:{
|
||||
desc:"mediya-obyekti \u0259lav\u0259/redakt\u0259 et",
|
||||
edit:"Mediya-obyekti redakt\u0259 et"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"S\u0259n\u0259d nizamlamalar\u0131"
|
||||
},
|
||||
template:{
|
||||
desc:"\u018Fvv\u0259ld\u0259n m\u00FC\u0259yy\u0259n edil\u0259n \u015Fablon daxil et"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizual idar\u0259 xarakterl\u0259rini yand\u0131r/s\u00F6nd\u00FCr."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Orfoqraf\u0131 yoxla",
|
||||
menu:"Orfoqrafiya nizamlamas\u0131n\u0131",
|
||||
ignore_word:"S\u00F6zl\u00FC iqnor et",
|
||||
ignore_words:"H\u0259r \u015Feyi iqnor et",
|
||||
langs:"Dill\u0259r",
|
||||
wait:"Z\u0259hm\u0259t olmasa, g\u00F6zl\u0259yin...",
|
||||
sug:"Variantlar",
|
||||
no_sug:"Variantlar yoxdur",
|
||||
no_mpell:"X\u0259ta a\u015Fkar edilm\u0259di."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"S\u0259hif\u0259 b\u00F6l\u0259nini \u0259lav\u0259 et."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/be.js
Normal file
171
htdocs/resource2/tinymce/langs/be.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({be:{
|
||||
common:{
|
||||
edit_confirm:"\u0412\u044B \u0436\u0430\u0434\u0430\u0435\u0446\u0435 \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u0446\u044C \u0434\u043B\u044F \u0433\u044D\u0442\u0430\u0439 \u0442\u044D\u043A\u0441\u0442\u0430\u0432\u0430\u0439 \u0432\u043E\u0431\u043B\u0430\u0441\u0446\u0456 \u0440\u044D\u0436\u044B\u043C WYSIWYG?",
|
||||
apply:"\u0423\u0436\u044B\u0446\u044C",
|
||||
insert:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C",
|
||||
update:"\u0410\u0431\u043D\u0430\u0432\u0456\u0446\u044C",
|
||||
cancel:"\u0410\u0434\u043C\u044F\u043D\u0456\u0446\u044C",
|
||||
close:"\u0417\u0430\u0447\u044B\u043D\u0456\u0446\u044C",
|
||||
browse:"\u041F\u0440\u0430\u0433\u043B\u0435\u0434\u0437\u0435\u0446\u044C",
|
||||
class_name:"\u041A\u043B\u0430\u0441",
|
||||
not_set:"-- \u041D\u0435 \u045E\u0441\u0442\u0430\u043B\u044F\u0432\u0430\u043D\u0430 --",
|
||||
clipboard_msg:"\u041A\u0430\u043F\u0456\u044F\u0432\u0430\u043D\u043D\u0435/\u0423\u0441\u0442\u0430\u045E\u043A\u0430 \u043D\u0435 \u043F\u0440\u0430\u0446\u0443\u0435 \u045E Mozilla \u0456 Firefox.\n\u0416\u0430\u0434\u0430\u0435\u0446\u0435 \u043F\u0430\u0434\u0440\u0430\u0431\u044F\u0437\u043D\u0435\u0439 \u043F\u0430\u0437\u043D\u0430\u0446\u044C, \u0443 \u0447\u044B\u043C \u0441\u043F\u0440\u0430\u0432\u0430?",
|
||||
clipboard_no_support:"\u041D\u0435 \u043F\u0430\u0434\u0442\u0440\u044B\u043C\u043B\u0456\u0432\u0430\u0435\u0446\u0446\u0430 \u0432\u0430\u0448\u044B\u043C \u0431\u0440\u0430\u045E\u0437\u044D\u0440\u0430\u043C \u0443 \u0441\u0430\u043F\u0440\u0430\u045E\u0434\u043D\u044B \u043C\u043E\u043C\u0430\u043D\u0442, \u0432\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u0439\u0446\u0435 \u043A\u043B\u0430\u0432\u0456\u044F\u0442\u0443\u0440\u043D\u044B\u044F \u0441\u043A\u0430\u0440\u0430\u0447\u044D\u043D\u043D\u0456.",
|
||||
popup_blocked:"\u0412\u044B\u0431\u0430\u0447\u044B\u0446\u0435, \u0430\u043B\u0435 \u0432\u0430\u0448 \u0431\u043B\u0430\u043A\u0430\u0432\u0430\u043B\u044C\u043D\u0456\u043A \u0443\u0441\u043F\u043B\u044B\u0432\u0430\u043B\u044C\u043D\u044B\u0445 \u0432\u043E\u043A\u043D\u0430\u045E \u0437\u0430\u0431\u043B\u0430\u043A\u0430\u0432\u0430\u045E \u0430\u043A\u043D\u043E, \u044F\u043A\u043E\u0435 \u043F\u0440\u0430\u0434\u0441\u0442\u0430\u045E\u043B\u044F\u0435 \u0444\u0443\u043D\u043A\u0446\u044B\u0456 \u043F\u0440\u044B\u043A\u043B\u0430\u0434\u0430\u043D\u043D\u044F. \u0412\u0430\u043C \u0442\u0440\u044D\u0431\u0430 \u0430\u0434\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u0431\u043B\u0430\u043A\u0430\u0432\u0430\u043D\u043D\u0435 \u045E\u0441\u043F\u043B\u044B\u0432\u0430\u043B\u044C\u043D\u044B\u0445 \u0432\u043E\u043A\u043D\u0430\u045E \u043D\u0430 \u0433\u044D\u0442\u044B\u043C \u0441\u0430\u0439\u0446\u0435, \u043A\u0430\u0431 \u043F\u0430\u045E\u043D\u0430\u0432\u0430\u0440\u0442\u0430\u0441\u043D\u0430 \u0441\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u0446\u0446\u0430 \u0433\u044D\u0442\u0430\u0439 \u043F\u0440\u044B\u043B\u0430\u0434\u0430\u0439.",
|
||||
invalid_data:"\u041F\u0430\u043C\u044B\u043B\u043A\u0430: \u0410\u0434\u0437\u043D\u0430\u0447\u0430\u043D\u044B\u044F \u0447\u044B\u0440\u0432\u043E\u043D\u044B\u043C \u0437\u043D\u0430\u0447\u044D\u043D\u043D\u0456 \u045E\u0432\u0435\u0434\u0437\u0435\u043D\u044B\u044F \u043D\u044F\u043F\u0440\u0430\u0432\u0456\u043B\u044C\u043D\u0430.",
|
||||
more_colors:"\u0411\u043E\u043B\u044C\u0448 \u043A\u043E\u043B\u0435\u0440\u0430\u045E"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0412\u044B\u0440\u0430\u045E\u043D\u043E\u045E\u0432\u0430\u043D\u043D\u0435",
|
||||
left:"\u041D\u0430\u043B\u0435\u0432\u0430",
|
||||
center:"\u041F\u0430 \u0446\u044D\u043D\u0442\u0440\u044B",
|
||||
right:"\u041D\u0430\u043F\u0440\u0430\u0432\u0430",
|
||||
full:"\u0426\u0430\u043B\u043A\u0430\u043C"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0434\u0430\u0442\u0443",
|
||||
inserttime_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0447\u0430\u0441",
|
||||
months_long:"\u0421\u0442\u0443\u0434\u0437\u0435\u043D\u044C,\u041B\u044E\u0442\u044B,\u0421\u0430\u043A\u0430\u0432\u0456\u043A,\u041A\u0440\u0430\u0441\u0430\u0432\u0456\u043A,\u0422\u0440\u0430\u0432\u0435\u043D\u044C,\u0427\u044D\u0440\u0432\u0435\u043D\u044C,\u041B\u0456\u043F\u0435\u043D\u044C,\u0410\u045E\u0433\u0443\u0441\u0442,\u0412\u0435\u0440\u0430\u0441\u0435\u043D\u044C,\u041A\u0430\u0441\u0442\u0440\u044B\u0447\u043D\u0456\u043A,\u041B\u0456\u0441\u0442\u0430\u043F\u0430\u0434,\u0421\u043D\u0435\u0436\u0430\u043D\u044C",
|
||||
months_short:"\u0421\u0442\u0443,\u041B\u044E\u0442,\u0421\u0430\u043A,\u041A\u0440\u0430,\u0422\u0440\u0430,\u0427\u044D\u0440,\u041B\u0456\u043F,\u0410\u045E\u0433,\u0412\u0435\u0440,\u041A\u0430\u0441,\u041B\u0456\u0441,\u0421\u043D\u0435",
|
||||
day_long:"\u041D\u044F\u0434\u0437\u0435\u043B\u044F,\u041F\u0430\u043D\u044F\u0434\u0437\u0435\u043B\u0430\u043A,\u0410\u045E\u0442\u043E\u0440\u0430\u043A,\u0410\u0441\u044F\u0440\u043E\u0434\u0434\u0437\u0435,\u0427\u0430\u0446\u0432\u0435\u0440,\u041F\u044F\u0442\u043D\u0456\u0446\u0430,\u0421\u0443\u0431\u043E\u0442\u0430,\u041D\u044F\u0434\u0437\u0435\u043B\u044F",
|
||||
day_short:"\u041D\u0434,\u041F\u043D,\u0410\u0442,\u0410\u0441,\u0427\u0446,\u041F\u0442,\u0421\u0431,\u041D\u0434"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0414\u0440\u0443\u043A"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u041F\u0430\u043F\u044F\u0440\u044D\u0434\u043D\u0456 \u043F\u0440\u0430\u0433\u043B\u044F\u0434"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u041A\u0456\u0440\u0443\u043D\u0430\u043A \u0437\u043B\u0435\u0432\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u0430",
|
||||
rtl_desc:"\u041A\u0456\u0440\u0443\u043D\u0430\u043A \u0441\u043F\u0440\u0430\u0432\u0430 \u043D\u0430\u043B\u0435\u0432\u0430"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u043D\u043E\u0432\u044B \u043F\u043B\u0430\u0441\u0442",
|
||||
forward_desc:"\u041F\u0435\u0440\u0430\u043D\u0435\u0441\u0446\u0456 \u043D\u0430\u043F\u0435\u0440\u0430\u0434",
|
||||
backward_desc:"\u041F\u0435\u0440\u0430\u043D\u0435\u0441\u0446\u0456 \u043D\u0430\u0437\u0430\u0434",
|
||||
absolute_desc:"\u0423\u043B\u0443\u0447\u044B\u0446\u044C/\u0432\u044B\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u0430\u0431\u0441\u0430\u043B\u044E\u0442\u043D\u0430\u0435 \u043F\u0430\u0437\u0456\u0446\u044B\u044F\u043D\u0430\u0432\u0430\u043D\u043D\u0435",
|
||||
content:"\u041D\u043E\u0432\u044B \u043F\u043B\u0430\u0441\u0442\u2026"
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0417\u0430\u0445\u0430\u0432\u0430\u0446\u044C",
|
||||
cancel_desc:"\u0410\u0434\u043C\u044F\u043D\u0456\u0446\u044C \u0443\u0441\u0435 \u0437\u043C\u0435\u043D\u044B"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u043D\u0435\u043F\u0430\u0440\u044B\u045E\u043D\u044B \u043F\u0440\u0430\u0431\u0435\u043B"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u041F\u0440\u0430\u0432\u0435\u0440\u044B\u0446\u044C \u0430\u0440\u0444\u0430\u0433\u0440\u0430\u0444\u0456\u044E",
|
||||
download:"ieSpell \u043D\u0435 \u0432\u044B\u044F\u045E\u043B\u0435\u043D\u044B. \u0423\u0441\u0442\u0430\u043B\u044F\u0432\u0430\u0446\u044C?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0413\u0430\u0440\u044B\u0437\u0430\u043D\u0442\u0430\u043B\u044C\u043D\u0430\u044F \u043B\u0456\u043D\u0456\u044F"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0421\u043C\u0430\u0439\u043B\u0456\u043A\u0456"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0417\u043D\u0430\u0439\u0441\u0446\u0456",
|
||||
replace_desc:"\u0417\u043D\u0430\u0439\u0441\u0446\u0456/\u0417\u0430\u043C\u044F\u043D\u0456\u0446\u044C"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C/\u0440\u044D\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044C \u043C\u0430\u043B\u044E\u043D\u0430\u043A"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C/\u0440\u044D\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044C \u0441\u043F\u0430\u0441\u044B\u043B\u043A\u0443"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0412\u044B\u043D\u044F\u0442\u043A\u0430",
|
||||
abbr_desc:"\u0410\u0431\u0440\u044D\u0432\u0456\u044F\u0442\u0443\u0440\u0430",
|
||||
acronym_desc:"\u0410\u043A\u0440\u043E\u043D\u0456\u043C",
|
||||
del_desc:"\u0412\u044B\u0434\u0430\u043B\u0435\u043D\u044B \u0442\u044D\u043A\u0441\u0442",
|
||||
ins_desc:"\u0414\u0430\u0434\u0430\u0434\u0437\u0435\u043D\u044B \u0442\u044D\u043A\u0441\u0442",
|
||||
attribs_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C/\u0440\u044D\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044C \u0430\u0442\u0440\u044B\u0431\u0443\u0442\u044B"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0420\u044D\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044C \u0441\u0442\u044B\u043B\u044C CSS",
|
||||
delta_width:"35"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u044F\u043A \u043F\u0440\u043E\u0441\u0442\u044B \u0442\u044D\u043A\u0441\u0442",
|
||||
paste_word_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0437 Word",
|
||||
selectall_desc:"\u0412\u044B\u043B\u0443\u0447\u044B\u0446\u044C \u0443\u0441\u0451",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u0412\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u0439\u0446\u0435 \u0441\u043F\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 \u043A\u043B\u0430\u0432\u0456\u0448 CTRL+V \u043A\u0430\u0431 \u0443\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0442\u044D\u043A\u0441\u0442 \u0443 \u0430\u043A\u043D\u043E.",
|
||||
text_linebreaks:"\u0417\u0430\u0445\u043E\u045E\u0432\u0430\u0446\u044C \u043F\u0430\u0440\u044B\u0432\u044B \u0440\u0430\u0434\u043A\u043E\u045E",
|
||||
word_title:"\u0412\u044B\u043A\u0430\u0440\u044B\u0441\u0442\u0430\u0439\u0446\u0435 \u0441\u043F\u0430\u043B\u0443\u0447\u044D\u043D\u043D\u0435 \u043A\u043B\u0430\u0432\u0456\u0448 CTRL+V \u043A\u0430\u0431 \u0443\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0442\u044D\u043A\u0441\u0442 \u0443 \u0430\u043A\u043D\u043E."
|
||||
},
|
||||
table:{
|
||||
desc:"\u0423\u0441\u0442\u0430\u045E\u043B\u044F\u0435 \u043D\u043E\u0432\u0443\u044E \u0442\u0430\u0431\u043B\u0456\u0446\u0443",
|
||||
row_before_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u043F\u0435\u0440\u0430\u0434",
|
||||
row_after_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u043F\u0430\u0441\u043B\u044F",
|
||||
delete_row_desc:"\u0412\u044B\u0434\u0430\u043B\u0456\u0446\u044C \u0440\u0430\u0434\u043E\u043A",
|
||||
col_before_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0441\u043B\u0443\u043F\u043E\u043A \u043F\u0435\u0440\u0430\u0434",
|
||||
col_after_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0441\u043B\u0443\u043F\u043E\u043A \u043F\u0430\u0441\u043B\u044F",
|
||||
delete_col_desc:"\u0412\u044B\u0434\u0430\u043B\u0456\u0446\u044C \u0441\u043B\u0443\u043F\u043E\u043A",
|
||||
split_cells_desc:"\u041F\u0430\u0434\u0437\u044F\u043B\u0456\u0446\u044C \u0437\u043B\u0435\u043F\u043B\u0435\u043D\u044B\u044F \u0432\u043E\u0447\u043A\u0456",
|
||||
merge_cells_desc:"\u0421\u043A\u043B\u0435\u0456\u0446\u044C \u0432\u043E\u0447\u043A\u0456",
|
||||
row_desc:"\u0423\u043B\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0440\u0430\u0434\u043A\u0430",
|
||||
cell_desc:"\u0423\u043B\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0432\u043E\u0447\u043A\u0430",
|
||||
props_desc:"\u0423\u043B\u0430\u0441\u0446\u0456\u0432\u0430\u0441\u0446\u0456 \u0442\u0430\u0431\u043B\u0456\u0446\u044B",
|
||||
paste_row_before_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u0442\u0430\u0431\u043B\u0456\u0446\u044B \u043F\u0435\u0440\u0430\u0434",
|
||||
paste_row_after_desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u0440\u0430\u0434\u043E\u043A \u0442\u0430\u0431\u043B\u0456\u0446\u044B \u043F\u0430\u0441\u043B\u044F",
|
||||
cut_row_desc:"\u0412\u044B\u0440\u0430\u0437\u0430\u0446\u044C \u0440\u0430\u0434\u043E\u043A",
|
||||
copy_row_desc:"\u041A\u0430\u043F\u0456\u044F\u0432\u0430\u0446\u044C \u0440\u0430\u0434\u043E\u043A",
|
||||
del:"\u0412\u044B\u0434\u0430\u043B\u0456\u0446\u044C \u0442\u0430\u0431\u043B\u0456\u0446\u0443",
|
||||
row:"\u0420\u0430\u0434\u043E\u043A",
|
||||
col:"\u0421\u043B\u0443\u043F\u043E\u043A",
|
||||
cell:"\u0412\u043E\u0447\u043A\u0430"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u0417\u0430\u043D\u0435\u0441\u0435\u043D\u044B\u044F \u0437\u043C\u0435\u043D\u044B \u0431\u0443\u0434\u0443\u0446\u044C \u0441\u0442\u0440\u0430\u0447\u0430\u043D\u044B\u044F, \u043A\u0430\u043B\u0456 \u0432\u044B \u0441\u044B\u0434\u0437\u0435\u0446\u0435 \u0437 \u0433\u044D\u0442\u0430\u0439 \u0441\u0442\u0430\u0440\u043E\u043D\u043A\u0456.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u0423\u043B\u0443\u0447\u044B\u0446\u044C/\u0432\u044B\u043A\u043B\u044E\u0447\u044B\u0446\u044C \u043F\u043E\u045E\u043D\u0430\u044D\u043A\u0440\u0430\u043D\u043D\u044B \u0440\u044D\u0436\u044B\u043C"
|
||||
},
|
||||
media:{
|
||||
desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C/\u0440\u044D\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044C \u043C\u0435\u0434\u044B\u044F-\u0430\u0431'\u0435\u043A\u0442",
|
||||
edit:"\u0420\u044D\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044C \u043C\u0435\u0434\u044B\u044F-\u0430\u0431'\u0435\u043A\u0442"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u041F\u0440\u0430\u0432\u0435\u0440\u044B\u0446\u044C \u0430\u0440\u0444\u0430\u0433\u0440\u0430\u0444\u0456\u044E",
|
||||
menu:"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u043F\u0440\u0430\u0432\u0435\u0440\u043A\u0456 \u0430\u0440\u0444\u0430\u0433\u0440\u0430\u0444\u0456\u0456",
|
||||
ignore_word:"\u0406\u0433\u043D\u0430\u0440\u0430\u0432\u0430\u0446\u044C \u0441\u043B\u043E\u0432\u0430",
|
||||
ignore_words:"\u0406\u0433\u043D\u0430\u0440\u0430\u0432\u0430\u0446\u044C \u0443\u0441\u0451",
|
||||
langs:"\u041C\u043E\u0432\u044B",
|
||||
wait:"\u041A\u0430\u043B\u0456 \u043B\u0430\u0441\u043A\u0430, \u043F\u0430\u0447\u0430\u043A\u0430\u0439\u0446\u0435...",
|
||||
sug:"\u0412\u0430\u0440\u044B\u044F\u043D\u0442\u044B",
|
||||
no_sug:"\u041D\u044F\u043C\u0430 \u0432\u0430\u0440\u044B\u044F\u043D\u0442\u0430\u045E",
|
||||
no_mpell:"\u041F\u0430\u043C\u044B\u043B\u0430\u043A \u043D\u0435 \u0432\u044B\u044F\u045E\u043B\u0435\u043D\u0430."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0423\u0441\u0442\u0430\u0432\u0456\u0446\u044C \u043F\u0430\u0434\u0437\u0435\u043B\u044C\u043D\u0456\u043A \u0441\u0442\u0430\u0440\u043E\u043D\u043A\u0456."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/bg.js
Normal file
170
htdocs/resource2/tinymce/langs/bg.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({bg:{
|
||||
common:{
|
||||
edit_confirm:"\u0418\u0441\u043A\u0430\u0442\u0435 \u043B\u0438 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 WYSIWYG \u0440\u0435\u0436\u0438\u043C \u0437\u0430 \u0442\u043E\u0432\u0430 \u0442\u0435\u043A\u0441\u0442\u043E\u0432\u043E \u043F\u043E\u043B\u0435?",
|
||||
apply:"\u041F\u043E\u0442\u0432\u044A\u0440\u0434\u0438",
|
||||
insert:"\u0412\u043C\u044A\u043A\u043D\u0438",
|
||||
update:"\u041E\u0431\u043D\u043E\u0432\u0438",
|
||||
cancel:"\u041E\u0442\u043A\u0430\u0436\u0438",
|
||||
close:"\u0417\u0430\u0442\u0432\u043E\u0440\u0438",
|
||||
browse:"Browse",
|
||||
class_name:"\u041A\u043B\u0430\u0441",
|
||||
not_set:"-- \u041D\u0435\u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0435\u043D\u043E --",
|
||||
clipboard_msg:"\u041A\u043E\u043F\u0438\u0440\u0430\u043D\u0435/\u041E\u0442\u0440\u044F\u0437\u0432\u0430\u043D\u0435/\u041F\u043E\u0441\u0442\u0430\u0432\u044F\u043D\u0435 \u043D\u0435 \u0435 \u0434\u043E\u0441\u0442\u044A\u043F\u043D\u043E \u043F\u043E\u0434 Mozilla \u0438 Firefox.\n\u0416\u0435\u043B\u0430\u0435\u0442\u0435 \u043B\u0438 \u043F\u043E\u0432\u0435\u0447\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0437\u0430 \u043F\u0440\u043E\u0431\u043B\u0435\u043C\u0430?",
|
||||
clipboard_no_support:"\u041D\u0435 \u0441\u0435 \u043F\u043E\u0434\u0434\u044A\u0440\u0436\u0430 \u043E\u0442 \u0432\u0430\u0448\u0438\u044F\u0442 \u0431\u0440\u0430\u0443\u0437\u044A\u0440, \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439\u0442\u0435 \u043A\u043B\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u043D\u0438 \u043A\u043E\u043C\u0430\u043D\u0434\u0438.",
|
||||
popup_blocked:"\u0421\u044A\u0436\u0430\u043B\u044F\u0432\u0430\u043C\u0435, \u043D\u043E \u0437\u0430\u0431\u0435\u043B\u044F\u0437\u0430\u0445\u043C\u0435, \u0447\u0435 \u0432\u0430\u0448\u0438\u044F\u0442 popup-blocker \u0435 \u0441\u043F\u0440\u044F\u043B \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446 \u043A\u043E\u0439\u0442\u043E \u0441\u0435 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430 \u043E\u0442 \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0430\u0442\u0430. \u0429\u0435 \u0442\u0440\u044F\u0431\u0432\u0430 \u0434\u0430 \u0438\u0437\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0431\u043B\u043E\u043A\u0438\u0440\u0430\u043D\u0435\u0442\u043E \u043D\u0430 \u043F\u043E\u043F\u044A\u043F\u0438 \u0437\u0430 \u0442\u043E\u0437\u0438 \u0441\u0430\u0439\u0442 \u0437\u0430 \u0434\u0430 \u0438\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0442\u0435 \u043F\u044A\u043B\u043D\u0430\u0442\u0430 \u0444\u0443\u043D\u043A\u0446\u0438\u043E\u043D\u0430\u043B\u043D\u043E\u0441\u0442.",
|
||||
invalid_data:"\u0413\u0440\u0435\u0448\u043A\u0430: \u0412\u044A\u0432\u0435\u0434\u0435\u043D\u0438 \u0441\u0430 \u043D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u0438 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442\u0438, \u0442\u0435 \u0441\u0430 \u043C\u0430\u0440\u043A\u0438\u0440\u0430\u043D\u0438 \u0432 \u0447\u0435\u0440\u0432\u0435\u043D\u043E.",
|
||||
more_colors:"\u041E\u0449\u0435 \u0446\u0432\u0435\u0442\u043E\u0432\u0435"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u041F\u043E\u0434\u0440\u0430\u0432\u043D\u044F\u0432\u0430\u043D\u0435",
|
||||
left:"\u041B\u044F\u0432\u043E",
|
||||
center:"\u0426\u0435\u043D\u0442\u044A\u0440",
|
||||
right:"\u0414\u044F\u0441\u043D\u043E",
|
||||
full:"\u0414\u0432\u0443\u0441\u0442\u0440\u0430\u043D\u043D\u043E"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0434\u0430\u0442\u0430",
|
||||
inserttime_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0432\u0440\u0435\u043C\u0435",
|
||||
months_long:"\u042F\u043D\u0443\u0430\u0440\u0438,\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438,\u041C\u0430\u0440\u0442,\u0410\u043F\u0440\u0438\u043B,\u041C\u0430\u0439,\u042E\u043D\u0438,\u042E\u043B\u0438,\u0410\u0432\u0433\u0443\u0441\u0442,\u0421\u0435\u043F\u0442\u0435\u043C\u0432\u0440\u0438,\u041E\u043A\u0442\u043E\u043C\u0432\u0440\u0438,\u041D\u043E\u0435\u043C\u0432\u0440\u0438,\u0414\u0435\u043A\u0435\u043C\u0432\u0440\u0438",
|
||||
months_short:"\u042F\u043D\u0443,\u0424\u0435\u0432,\u041C\u0430\u0440,\u0410\u043F\u0440,\u041C\u0430\u0439,\u042E\u043D\u0438,\u042E\u043B\u0438,\u0410\u0432\u0433,\u0421\u0435\u043F,\u041E\u043A\u0442,\u041D\u043E\u0435,\u0414\u0435\u043A",
|
||||
day_long:"\u041D\u0435\u0434\u0435\u043B\u044F,\u041F\u043E\u043D\u0435\u0434\u0435\u043B\u043D\u0438\u043A,\u0412\u0442\u043E\u0440\u043D\u0438\u043A,\u0421\u0440\u044F\u0434\u0430,\u0427\u0435\u0442\u0432\u044A\u0440\u0442\u044A\u043A,\u041F\u0435\u0442\u044A\u043A,\u0421\u044A\u0431\u043E\u0442\u0430,\u041D\u0435\u0434\u0435\u043B\u044F",
|
||||
day_short:"\u041D\u0434,\u041F\u043D,\u0412\u0442,\u0421\u0440,\u0427\u0442,\u041F\u0442,\u0421\u0431,\u041D\u0434"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u041E\u0442\u043F\u0435\u0447\u0430\u0442\u0430\u0439"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u041F\u0440\u0435\u0433\u043B\u0435\u0434"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u041F\u043E\u0441\u043E\u043A\u0430 \u043E\u0442\u043B\u044F\u0432\u043E \u043D\u0430 \u0434\u044F\u0441\u043D\u043E",
|
||||
rtl_desc:"\u041F\u043E\u0441\u043E\u043A\u0430 \u043E\u0442\u0434\u044F\u0441\u043D\u043E \u043D\u0430 \u043B\u044F\u0432\u043E"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u043D\u043E\u0432 \u0441\u043B\u043E\u0439",
|
||||
forward_desc:"\u041F\u043E\u043A\u0430\u0436\u0438 \u043E\u0442\u043F\u0440\u0435\u0434",
|
||||
backward_desc:"\u041F\u043E\u043A\u0430\u0436\u0438 \u043E\u0442\u0437\u0430\u0434",
|
||||
absolute_desc:"\u0412\u043A\u043B\u044E\u0447\u0438 \u0430\u0431\u0441\u043E\u043B\u044E\u0442\u043D\u043E \u043F\u043E\u0437\u0438\u0446\u0438\u043E\u043D\u0438\u0440\u0430\u043D\u0435",
|
||||
content:"\u041D\u043E\u0432 \u0441\u043B\u043E\u0439..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0417\u0430\u043F\u0438\u0448\u0438",
|
||||
cancel_desc:"\u041E\u0442\u043A\u0430\u0436\u0438 \u0432\u0441\u0438\u0447\u043A\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u043D\u0435\u043F\u0440\u0435\u043A\u044A\u0441\u0432\u0430\u0435\u043C \u0438\u043D\u0442\u0435\u0440\u0432\u0430\u043B"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u041F\u0440\u043E\u0432\u0435\u0440\u0438 \u043F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430",
|
||||
download:"ieSpell \u043D\u0435 \u0435 \u043E\u0442\u043A\u0440\u0438\u0442. \u0416\u0435\u043B\u0430\u0435\u0442\u0435 \u043B\u0438 \u0434\u0430 \u0433\u043E \u0438\u043D\u0441\u0442\u0430\u043B\u0438\u0440\u0430\u0442\u0435 \u0441\u0435\u0433\u0430?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0425\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u043D\u0430 \u043B\u0438\u043D\u0438\u044F"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0415\u043C\u043E\u0442\u0438\u043A\u043E\u043D\u0438"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0422\u044A\u0440\u0441\u0438",
|
||||
replace_desc:"\u0422\u044A\u0440\u0441\u0438/\u0417\u0430\u043C\u0435\u0441\u0442\u0438"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0412\u043C\u044A\u043A\u043D\u0438/\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0439 \u043A\u0430\u0440\u0442\u0438\u043D\u043A\u0430"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0412\u043C\u044A\u043A\u043D\u0438/\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0439 \u0445\u0438\u043F\u0435\u0440\u0432\u0440\u044A\u0437\u043A\u0430"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0426\u0438\u0442\u0430\u0442",
|
||||
abbr_desc:"\u0421\u044A\u043A\u0440\u0430\u0449\u0435\u043D\u0438\u0435",
|
||||
acronym_desc:"\u0410\u043A\u0440\u043E\u043D\u0438\u043C",
|
||||
del_desc:"\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043D\u0435",
|
||||
ins_desc:"\u0412\u043C\u044A\u043A\u0432\u0430\u043D\u0435",
|
||||
attribs_desc:"\u0412\u043C\u044A\u043A\u043D\u0438/\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0439 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0438"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0439 CSS \u0441\u0442\u0438\u043B"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u043A\u0430\u0442\u043E \u0442\u0435\u043A\u0441\u0442",
|
||||
paste_word_desc:"\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u043E\u0442 Word",
|
||||
selectall_desc:"\u0418\u0437\u0431\u0435\u0440\u0438 \u0432\u0441\u0438\u0447\u043A\u0438",
|
||||
plaintext_mode_sticky:"\u041F\u043E\u0441\u0442\u0430\u0432\u0435\u043D\u043E\u0442\u043E \u0435 \u0432 \u0438\u0437\u0447\u0438\u0441\u0442\u0435\u043D \u0442\u0435\u043A\u0441\u0442\u043E\u0432 \u0440\u0435\u0436\u0438\u043C. \u0429\u0440\u0430\u043A\u043D\u0435\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E \u0434\u0430 \u043F\u0440\u0435\u043C\u0438\u043D\u0435\u0442\u0435 \u0432 \u043E\u0431\u0438\u043A\u043D\u043E\u0432\u0435\u043D \u0440\u0435\u0436\u0438\u043C \u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u044F\u043D\u0435. \u0421\u043B\u0435\u0434 \u043A\u0430\u0442\u043E \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0435\u043B\u0435\u043C\u0435\u043D\u0442\u0430 \u0449\u0435 \u0441\u0435 \u0432\u044A\u0440\u043D\u0435\u0442\u0435 \u0432 \u043D\u043E\u0440\u043C\u0430\u043B\u0435\u043D \u0440\u0435\u0436\u0438\u043C.",
|
||||
plaintext_mode:"\u041F\u043E\u0441\u0442\u0430\u0432\u0435\u043D\u043E\u0442\u043E \u0435 \u0432 \u0438\u0437\u0447\u0438\u0441\u0442\u0435\u043D \u0442\u0435\u043A\u0441\u0442\u043E\u0432 \u0440\u0435\u0436\u0438\u043C. \u0429\u0440\u0430\u043A\u043D\u0435\u0442\u0435 \u043E\u0442\u043D\u043E\u0432\u043E \u0434\u0430 \u043F\u0440\u0435\u043C\u0438\u043D\u0435\u0442\u0435 \u0432 \u043E\u0431\u0438\u043A\u043D\u043E\u0432\u0435\u043D \u0440\u0435\u0436\u0438\u043C \u043D\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u044F\u043D\u0435."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439\u0442\u0435 CTRL+V \u043D\u0430 \u043A\u043B\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0430\u0442\u0430 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446\u0430.",
|
||||
text_linebreaks:"\u0417\u0430\u043F\u0430\u0437\u0438 \u043D\u043E\u0432\u0438\u0442\u0435 \u0440\u0435\u0434\u043E\u0432\u0435",
|
||||
word_title:"\u0418\u0437\u043F\u043E\u043B\u0437\u0432\u0430\u0439\u0442\u0435 CTRL+V \u043D\u0430 \u043A\u043B\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0430\u0442\u0430 \u0437\u0430 \u0434\u0430 \u043F\u043E\u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446\u0430."
|
||||
},
|
||||
table:{
|
||||
desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u043D\u043E\u0432\u0430 \u0442\u0430\u0431\u043B\u0438\u0446\u0430",
|
||||
row_before_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0440\u0435\u0434 \u043F\u0440\u0435\u0434\u0438",
|
||||
row_after_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0440\u0435\u0434 \u0441\u043B\u0435\u0434",
|
||||
delete_row_desc:"\u0418\u0437\u0442\u0440\u0438\u0439 \u0440\u0435\u0434",
|
||||
col_before_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u043A\u043E\u043B\u043E\u043D\u0430 \u043F\u0440\u0435\u0434\u0438",
|
||||
col_after_desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u043A\u043E\u043B\u043E\u043D\u0430 \u0441\u043B\u0435\u0434",
|
||||
delete_col_desc:"\u0418\u0437\u0442\u0440\u0438\u0439 \u043A\u043E\u043B\u043E\u043D\u0430",
|
||||
split_cells_desc:"\u0420\u0430\u0437\u0434\u0435\u043B\u0438 \u0441\u043B\u0435\u0442\u0438 \u043A\u043B\u0435\u0442\u043A\u0438",
|
||||
merge_cells_desc:"\u0421\u043B\u0435\u0439 \u043A\u043B\u0435\u0442\u043A\u0438",
|
||||
row_desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043D\u0430 \u0440\u0435\u0434\u0430",
|
||||
cell_desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043D\u0430 \u043A\u043B\u0435\u0442\u043A\u0430\u0442\u0430",
|
||||
props_desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043D\u0430 \u0442\u0430\u0431\u043B\u0438\u0446\u0430\u0442\u0430",
|
||||
paste_row_before_desc:"\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0440\u0435\u0434 \u043F\u0440\u0435\u0434\u0438",
|
||||
paste_row_after_desc:"\u041F\u043E\u0441\u0442\u0430\u0432\u0438 \u0440\u0435\u0434 \u0441\u043B\u0435\u0434",
|
||||
cut_row_desc:"\u041E\u0442\u0440\u0435\u0436\u0438 \u0440\u0435\u0434",
|
||||
copy_row_desc:"\u041A\u043E\u043F\u0438\u0440\u0430\u0439 \u0440\u0435\u0434",
|
||||
del:"\u0418\u0437\u0442\u0440\u0438\u0439 \u0442\u0430\u0431\u043B\u0438\u0446\u0430",
|
||||
row:"\u0420\u0435\u0434",
|
||||
col:"\u041A\u043E\u043B\u043E\u043D\u0430",
|
||||
cell:"\u041A\u043B\u0435\u0442\u043A\u0430"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u041F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435 \u043A\u043E\u0438\u0442\u043E \u043D\u0430\u043F\u0440\u0430\u0432\u0438\u0445\u0442\u0435 \u0449\u0435 \u0441\u0435 \u0437\u0430\u0433\u0443\u0431\u044F\u0442 \u0430\u043A\u043E \u043E\u0442\u0438\u0434\u0435\u0442\u0435 \u043D\u0430 \u0434\u0440\u0443\u0433\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430.",
|
||||
restore_content:"\u0412\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0437\u0430\u043F\u0430\u0437\u0435\u043D\u043E\u0442\u043E.",
|
||||
warning_message:"\u0412\u0441\u0438\u0447\u043A\u0438 \u043D\u0430\u043F\u0440\u0430\u0432\u0435\u043D\u0438 \u043F\u0440\u043E\u043C\u0435\u043D\u0438 \u0449\u0435 \u0431\u044A\u0434\u0430\u0442 \u0437\u0430\u0433\u0443\u0431\u0435\u043D\u0438.\n\n\u0421\u0438\u0433\u0443\u0440\u043D\u0438 \u043B\u0438 \u0441\u0442\u0435, \u0447\u0435 \u0438\u0441\u043A\u0430\u0442\u0435 \u0434\u0430 \u0432\u044A\u0437\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0435 \u0437\u0430\u043F\u0430\u0437\u0435\u043D\u043E\u0442\u043E \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u0412\u043A\u043B./\u0418\u0437\u043A\u043B. \u0446\u044F\u043B \u0435\u043A\u0440\u0430\u043D"
|
||||
},
|
||||
media:{
|
||||
desc:"\u0412\u043C\u044A\u043A\u043D\u0438/\u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u0439 \u043C\u0435\u0434\u0438\u0430\u0442\u0430",
|
||||
edit:"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u0430\u043A \u043C\u0435\u0434\u0438\u0430"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043D\u0430 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435\u0442\u043E \u043D\u0430 \u0442\u0435\u043C\u043F\u043B\u0435\u0439\u0442"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0412\u043A\u043B./\u0418\u0437\u043A\u043B. \u043D\u0430 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u043D\u0438\u0442\u0435 \u0441\u0438\u043C\u0432\u043E\u043B\u0438."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u0412\u043A\u043B./\u0418\u0437\u043A\u043B. \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043D\u0430 \u043F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430",
|
||||
menu:"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043D\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0430\u0442\u0430 \u043D\u0430 \u043F\u0440\u0430\u0432\u043E\u043F\u0438\u0441",
|
||||
ignore_word:"\u0418\u0433\u043D\u043E\u0440\u0438\u0440\u0430\u0439 \u0434\u0443\u043C\u0430",
|
||||
ignore_words:"\u0418\u0433\u043D\u043E\u0440\u0438\u0440\u0430\u0439 \u0432\u0441\u0438\u0447\u043A\u0438",
|
||||
langs:"\u0415\u0437\u0438\u0446\u0438",
|
||||
wait:"\u041C\u043E\u043B\u044F \u0438\u0437\u0447\u0430\u043A\u0430\u0439\u0442\u0435...",
|
||||
sug:"\u041F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F",
|
||||
no_sug:"\u041D\u044F\u043C\u0430 \u043F\u0440\u0435\u0434\u043B\u043E\u0436\u0435\u043D\u0438\u044F",
|
||||
no_mpell:"\u041D\u044F\u043C\u0430 \u0433\u0440\u0435\u0448\u043D\u043E \u043D\u0430\u043F\u0438\u0441\u0430\u043D\u0438 \u0434\u0443\u043C\u0438."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0412\u043C\u044A\u043A\u043D\u0438 \u043D\u043E\u0432\u0430 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430."
|
||||
},
|
||||
advlist:{
|
||||
types:"\u0421\u0438\u043C\u0432\u043E\u043B\u0438",
|
||||
def:"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u0438",
|
||||
lower_alpha:"\u041C\u0430\u043B\u043A\u0438 \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438 \u0431\u0443\u043A\u0432\u0438",
|
||||
lower_greek:"\u041C\u0430\u043B\u043A\u0438 \u0433\u0440\u044A\u0446\u043A\u0438 \u0431\u0443\u043A\u0432\u0438",
|
||||
lower_roman:"\u041C\u0430\u043B\u043A\u0438 \u0440\u0438\u043C\u0441\u043A\u0438 \u0446\u0438\u0444\u0440\u0438",
|
||||
upper_alpha:"\u0417\u0430\u0433\u043B\u0430\u0432\u043D\u0438 \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438 \u0431\u0443\u043A\u0432\u0438",
|
||||
upper_roman:"\u0417\u0430\u0433\u043B\u0430\u0432\u043D\u0438 \u0440\u0438\u043C\u0441\u043A\u0438 \u0446\u0438\u0444\u0440\u0438",
|
||||
circle:"\u041A\u0440\u044A\u0433",
|
||||
disc:"\u041E\u043A\u0440\u044A\u0436\u043D\u043E\u0441\u0442",
|
||||
square:"\u041A\u0432\u0430\u0434\u0440\u0430\u0442"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/bn.js
Normal file
170
htdocs/resource2/tinymce/langs/bn.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({bn:{
|
||||
common:{
|
||||
edit_confirm:"\u0986\u09AA\u09A8\u09BF \u0995\u09BF \u098F\u0987 textarea\u099F\u09BF\u09B0 \u099C\u09A8\u09CD\u09AF WYSIWYG \u09AE\u09CB\u09A1 \u09AC\u09CD\u09AF\u09AC\u09B9\u09BE\u09B0 \u0995\u09B0\u09A4\u09C7 \u099A\u09BE\u09A8?",
|
||||
apply:"\u098F\u09AA\u09CD\u09B2\u09CD\u09AF\u09BE\u0987",
|
||||
insert:"\u0987\u09A8\u09B8\u09BE\u09B0\u09CD\u099F",
|
||||
update:"\u0986\u09AA\u09A1\u09C7\u099F",
|
||||
cancel:"\u0995\u09CD\u09AF\u09BE\u09A8\u09B8\u09C7\u09B2",
|
||||
close:"\u09AC\u09A8\u09CD\u09A7",
|
||||
browse:"\u09AC\u09CD\u09B0\u09BE\u0989\u099C",
|
||||
class_name:"\u0995\u09CD\u09B2\u09BE\u09B8",
|
||||
not_set:"-- \u09B8\u09C7\u099F \u09A8\u09DF --",
|
||||
clipboard_msg:"\u0995\u09AA\u09BF/\u0995\u09BE\u099F/\u09AA\u09C7\u09B7\u09CD\u099F \u09AE\u099C\u09BF\u09B2\u09BE \u098F\u09AC\u0982 \u09AB\u09BE\u09DF\u09BE\u09B0\u09AB\u0995\u09CD\u09B8 \u098F \u09B8\u09AE\u09CD\u09AD\u09AC \u09A8\u09DF\n\u0986\u09AA\u09A8\u09BF \u0995\u09BF \u098F\u0987 \u09AC\u09BF\u09B7\u09DF\u099F\u09BF\u09B0 \u09B8\u09AE\u09CD\u09AC\u09A8\u09CD\u09A7\u09C7 \u0986\u09B0\u0993 \u09AC\u09C7\u09B6\u09BF \u09A4\u09A5\u09CD\u09AF \u099A\u09BE\u09A8",
|
||||
clipboard_no_support:"\u0986\u09AA\u09A8\u09BE\u09B0 \u09AC\u09CD\u09B0\u09BE\u0989\u099C\u09BE\u09B0\u09C7\u09B0 \u09A6\u09CD\u09AC\u09BE\u09B0\u09BE \u09AC\u09B0\u09CD\u09A4\u09AE\u09BE\u09A8\u09C7 \u09B8\u09AE\u09B0\u09CD\u09A5\u09BF\u09A4 \u09A8\u09BE, \u09AA\u09B0\u09BF\u09AC\u09B0\u09CD\u09A4\u09C7 \u0995\u09C0\u09AC\u09CB\u09B0\u09CD\u09A1 \u09B6\u09B0\u09CD\u099F\u0995\u09BE\u099F \u09AC\u09CD\u09AF\u09AC\u09B9\u09BE\u09B0 \u0995\u09B0\u09C1\u09A8\u0964",
|
||||
popup_blocked:"\u09A6\u09C1\u0983\u0996\u09BF\u09A4, \u0995\u09BF\u09A8\u09CD\u09A4\u09C1 \u0986\u09AE\u09B0\u09BE \u09B2\u0995\u09CD\u09B7\u09CD\u09AF \u0995\u09B0\u09C7\u099B\u09BF \u09AF\u09C7 \u0986\u09AA\u09A8\u09BE\u09B0 \u09AA\u09AA-\u0986\u09AA \u09AC\u09CD\u09B2\u0995\u09BE\u09B0 \u098F\u0995\u099F\u09BF \u0989\u0987\u09A8\u09CD\u09A1\u09CB \u09A8\u09BF\u09B7\u09CD\u0995\u09CD\u09B0\u09BF\u09DF \u0995\u09B0\u09C7\u099B\u09C7 \u09AF\u09BE \u0985\u09CD\u09AF\u09BE\u09AA\u09B2\u09BF\u0995\u09C7\u09B6\u09A8 \u098F\u09B0 \u09AB\u09BE\u0982\u09B6\u09A8\u09BE\u09B2\u09BF\u099F\u09BF\u09B0 \u099C\u09A8\u09CD\u09AF \u09AA\u09CD\u09B0\u09DF\u09CB\u099C\u09A8\u09C0\u09DF\u0964\u0986\u09AA\u09A8\u09BF \u098F\u0987 \u099F\u09C1\u09B2\u099F\u09BF \u09B8\u09AE\u09CD\u09AA\u09C2\u09B0\u09CD\u09A3\u09AD\u09BE\u09AC\u09C7 \u09AC\u09CD\u09AF\u09BE\u09AC\u09B9\u09BE\u09B0 \u0995\u09B0\u09A4\u09C7 \u099A\u09BE\u0987\u09B2\u09C7 \u098F\u0987 \u09B8\u09BE\u0987\u099F\u099F\u09BF \u09A5\u09C7\u0995\u09C7 \u09AA\u09AA-\u0986\u09AA \u09AC\u09CD\u09B2\u0995\u09BF\u0982 \u09A8\u09BF\u09B7\u09CD\u0995\u09CD\u09B0\u09BF\u09DF \u0995\u09B0\u09A4\u09C7 \u09B9\u09AC\u09C7\u0964",
|
||||
invalid_data:"\u09A4\u09CD\u09B0\u09C1\u099F\u09BF: \u09AC\u09C7\u09A0\u09BF\u0995 \u09AE\u09BE\u09A8 \u09A2\u09C1\u0995\u09BE\u09A8\u09CB \u09B9\u09DF\u09C7\u099B\u09C7, \u098F\u0987\u0997\u09C1\u09B2\u09BF \u09B2\u09BE\u09B2 \u099A\u09BF\u09B9\u09CD\u09A8\u09BF\u09A4 \u0995\u09B0\u09BE \u09B9\u09B2\u0964",
|
||||
more_colors:"\u0986\u09B0\u0993 \u09AC\u09C7\u09B6\u09BF \u09B0\u0982"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/br.js
Normal file
170
htdocs/resource2/tinymce/langs/br.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({br:{
|
||||
common:{
|
||||
edit_confirm:"Deseja usar o modo de edi\u00E7\u00E3o avan\u00E7ado neste campo de texto?",
|
||||
apply:"Aplicar",
|
||||
insert:"Inserir",
|
||||
update:"Atualizar",
|
||||
cancel:"Cancelar",
|
||||
close:"Fechar",
|
||||
browse:"Procurar",
|
||||
class_name:"Classe",
|
||||
not_set:"-- N\u00E3o especificado --",
|
||||
clipboard_msg:"Copiar/cortar/colar n\u00E3o est\u00E1 dispon\u00EDvel no Mozilla/Firefox.\nDeseja mais informa\u00E7\u00F5es sobre este problema?",
|
||||
clipboard_no_support:"O seu navegador n\u00E3o tem suporte para esta fun\u00E7\u00E3o, use os atalhos do teclado.",
|
||||
popup_blocked:"Detectamos que o seu bloqueador de popups bloqueou uma janela que \u00E9 essencial para o aplicativo. Voc\u00EA precisa desativar o bloqueador de popups para utilizar esta ferramenta.",
|
||||
invalid_data:"Erro: Valores inv\u00E1lidos est\u00E3o marcados em vermelho.",
|
||||
more_colors:"Mais Cores"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alinhamento",
|
||||
left:"Esquerda",
|
||||
center:"Centro",
|
||||
right:"Direita",
|
||||
full:"Justificar"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Inserir data",
|
||||
inserttime_desc:"Inserir hora",
|
||||
months_long:"Janeiro,Fevereiro,Mar\u00E7o,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro",
|
||||
months_short:"Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez",
|
||||
day_long:"Domingo,Segunda-Feira,Ter\u00E7a-Feira,Quarta-Feira,Quinta-Feira,Sexta-Feira,S\u00E1bado,Domingo",
|
||||
day_short:"Dom,Seg,Ter,Qua,Qui,Sex,Sab,Dom"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimir"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Pr\u00E9-Visualizar"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Da esquerda para direita",
|
||||
rtl_desc:"Da direita para esquerda"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Inserir nova camada",
|
||||
forward_desc:"Mover para frente",
|
||||
backward_desc:"Mover para tr\u00E1s",
|
||||
absolute_desc:"Alternar posicionamento absoluto",
|
||||
content:"Nova camada..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Salvar",
|
||||
cancel_desc:"Cancelar todas as altera\u00E7\u00F5es"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Inserir um espa\u00E7o"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Verificar ortografia",
|
||||
download:"Aplicativo de ortografia n\u00E3o-detectado. Deseja instal\u00E1-lo agora?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Separador horizontal"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emoticons"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Localizar",
|
||||
replace_desc:"Localizar/substituir"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Inserir/editar imagem"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Inserir/editar hyperlink"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cita\u00E7\u00E3o",
|
||||
abbr_desc:"Abrevia\u00E7\u00E3o",
|
||||
acronym_desc:"Acr\u00F4nimo",
|
||||
del_desc:"Apagar",
|
||||
ins_desc:"Inserir",
|
||||
attribs_desc:"Inserir/Editar atributos"
|
||||
},
|
||||
style:{
|
||||
desc:"Editar CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Colar como texto simples",
|
||||
paste_word_desc:"Colar (copiado do WORD)",
|
||||
selectall_desc:"Selecionar tudo",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V para colar o texto na janela.",
|
||||
text_linebreaks:"Manter quebras de linha",
|
||||
word_title:"Use CTRL+V para colar o texto na janela."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserir nova tabela",
|
||||
row_before_desc:"Inserir linha antes",
|
||||
row_after_desc:"Inserir linha depois",
|
||||
delete_row_desc:"Apagar linha",
|
||||
col_before_desc:"Inserir coluna antes",
|
||||
col_after_desc:"Inserir coluna depois",
|
||||
delete_col_desc:"Remover coluna",
|
||||
split_cells_desc:"Dividir c\u00E9lulas",
|
||||
merge_cells_desc:"Unir c\u00E9lulas",
|
||||
row_desc:"Propriedades das linhas",
|
||||
cell_desc:"Propriedades das c\u00E9lulas",
|
||||
props_desc:"Propriedades da tabela",
|
||||
paste_row_before_desc:"Colar linha antes",
|
||||
paste_row_after_desc:"Colar linha depois",
|
||||
cut_row_desc:"Cortar linha",
|
||||
copy_row_desc:"Copiar linha",
|
||||
del:"Apagar tabela",
|
||||
row:"Linha",
|
||||
col:"Coluna",
|
||||
cell:"C\u00E9lula"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"As mudan\u00E7as efetuadas ser\u00E3o perdidas se sair desta p\u00E1gina.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Tela Inteira"
|
||||
},
|
||||
media:{
|
||||
desc:"Inserir/Editar m\u00EDdia incorporada",
|
||||
edit:"Editar m\u00EDdia incorporada"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propriedades do Documento"
|
||||
},
|
||||
template:{
|
||||
desc:"Inserir template"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Caracteres de controle visual ligado/desligado"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Alternar verifica\u00E7\u00E3o ortogr\u00E1fica",
|
||||
menu:"Configura\u00E7\u00F5es de ortografia",
|
||||
ignore_word:"Ignorar palavra",
|
||||
ignore_words:"Ignorar tudo",
|
||||
langs:"Linguagens",
|
||||
wait:"Aguarde...",
|
||||
sug:"Sugest\u00F5es",
|
||||
no_sug:"Sem sugest\u00F5es",
|
||||
no_mpell:"N\u00E3o foram detectados erros de ortografia."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Inserir quebra de p\u00E1gina."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/bs.js
Normal file
170
htdocs/resource2/tinymce/langs/bs.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({bs:{
|
||||
common:{
|
||||
edit_confirm:"\u017Delite li koristiti WYSIWYG na\u010Din rada za ovo tekstualno polje?",
|
||||
apply:"Primjeni",
|
||||
insert:"Umetni",
|
||||
update:"Obnovi",
|
||||
cancel:"Odustani",
|
||||
close:"Zatvori",
|
||||
browse:"Pregled",
|
||||
class_name:"Klasa",
|
||||
not_set:"-- Nije postavljeno --",
|
||||
clipboard_msg:"Kopiraj/Izre\u017Ei/Zalijepi nije dostupno Mozilla i Firefox preglednicima.\nVi\u0161e informacija?",
|
||||
clipboard_no_support:"Trenuta\u010Dno va\u0161 preglednik ne podr\u017Eava ovu opciju, poku\u0161ajte koristiti tipkovni\u010Dku kraticu.",
|
||||
popup_blocked:"Oprostite, izgleda da je va\u0161 popup-blocker onemogu\u0107io prozor u sklopu ovog programa. Morate onemogu\u0107iti blokiranje popup prozora da bi u potpunosti iskoristili ovaj alat.",
|
||||
invalid_data:"Gre\u0161ka: Une\u0161ene su nevaljane vrijednosti, ozna\u010Dene su crvenom bojom.",
|
||||
more_colors:"Vi\u0161e boja"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Poravnavanje",
|
||||
left:"Lijevo",
|
||||
center:"Sredina",
|
||||
right:"Desno",
|
||||
full:"Puno"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y.",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Umetni datum",
|
||||
inserttime_desc:"Umetni vrijeme",
|
||||
months_long:"sije\u010Danj,velja\u010Da,o\u017Eujak,travanj,svibanj,lipanj,srpanj,kolovoz,rujan,listopad,studeni,prosinac",
|
||||
months_short:"sij,velj,o\u017Eu,tra,svi,lip,srp,kol,ruj,lis,stu,pro",
|
||||
day_long:"nedjelja,ponedjeljak,utorak,srijeda,\u010Detvrtak,petak,subota,nedjelja",
|
||||
day_short:"ned,pon,uto,sri,\u010Det,pet,sub,ned"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Ispis"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Prikaz"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"S lijeva na desno",
|
||||
rtl_desc:"S desna na lijevo"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Umetni novi sloj",
|
||||
forward_desc:"Pomakni naprijed",
|
||||
backward_desc:"Pomakni natrag",
|
||||
absolute_desc:"Uklju\u010Di/isklju\u010Di apsolutno pozicioniranje",
|
||||
content:"Novi sloj..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Spremi",
|
||||
cancel_desc:"Odustani od svih promjena"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Umetni razmak"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Pokreni provjeru pravopisa",
|
||||
download:"Provjera pravopisa nije postaljena. Postaviti sada?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodoravna crta"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emocije"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Prona\u0111i",
|
||||
replace_desc:"Prona\u0111i/Zamijeni"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Umetni/uredi sliku"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Kratica",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Brisanje",
|
||||
ins_desc:"Unos",
|
||||
attribs_desc:"Umetni/uredi atribute"
|
||||
},
|
||||
style:{
|
||||
desc:"Uredi CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Zalijepi kao obi\u010Dni tekst",
|
||||
paste_word_desc:"Zalijepi iz Worda",
|
||||
selectall_desc:"Odaberi sve",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prijelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."
|
||||
},
|
||||
table:{
|
||||
desc:"Nova tablica",
|
||||
row_before_desc:"Umetni redak iznad",
|
||||
row_after_desc:"Umetni redak ispod",
|
||||
delete_row_desc:"Izbri\u0161i redak",
|
||||
col_before_desc:"Umetni stupac lijevo",
|
||||
col_after_desc:"Umetni stupac desno",
|
||||
delete_col_desc:"Ukloni stupac",
|
||||
split_cells_desc:"Razdvoji spojene \u0107elije",
|
||||
merge_cells_desc:"Spoji \u0107elije",
|
||||
row_desc:"Svojstva retka",
|
||||
cell_desc:"Svojstva \u0107elije",
|
||||
props_desc:"Svojstva tablice",
|
||||
paste_row_before_desc:"Zalijepi redak iznad",
|
||||
paste_row_after_desc:"Zalijepi redak ispod",
|
||||
cut_row_desc:"Izre\u017Ei redak",
|
||||
copy_row_desc:"Kopiraj redak",
|
||||
del:"Izbri\u0161i tablicu",
|
||||
row:"Redak",
|
||||
col:"Stupac",
|
||||
cell:"\u0106elija"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Promjene u dokumentu \u0107e biti izgubljene ako iza\u0111ete s ove stranice.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di prikaz preko cijelog ekrana"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Svojstva dokumenta"
|
||||
},
|
||||
template:{
|
||||
desc:"Umetni sadr\u017Eaj iz predlo\u017Eak"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizualni kontrolni znakovi uklju\u010Deni/isklju\u010Deni."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di provjeru pravopisa",
|
||||
menu:"Postavke provjere pravopisa",
|
||||
ignore_word:"Zanemari rije\u010D",
|
||||
ignore_words:"Zanemari sver",
|
||||
langs:"Jezici",
|
||||
wait:"Pri\u010Dekajte...",
|
||||
sug:"Prijedlozi",
|
||||
no_sug:"Nema prijedloga",
|
||||
no_mpell:"Nije prona\u0111ena nijedna pravopisna gre\u0161ke."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Umetni prijelom."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ca.js
Normal file
170
htdocs/resource2/tinymce/langs/ca.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ca:{
|
||||
common:{
|
||||
edit_confirm:"Voleu utilitzar el mode WYSIWYG?",
|
||||
apply:"Aplica",
|
||||
insert:"Insereix",
|
||||
update:"Actualitza",
|
||||
cancel:"Cancel\u00B7la",
|
||||
close:"Tanca",
|
||||
browse:"Explora",
|
||||
class_name:"Classe",
|
||||
not_set:"-- No definit --",
|
||||
clipboard_msg:"Copia/Retalla/Enganxa no es troba disponible al Mozilla ni al Firefox.\nVoleu m\u00E9s informaci\u00F3 sobre aquesta q\u00FCesti\u00F3?",
|
||||
clipboard_no_support:"El vostre navegador actualment no ho admet, utilitzeu les dreceres de teclat.",
|
||||
popup_blocked:"El bloqueig de finestres emergents ha inhabilitat una finestra que proporciona funcionalitat a l\'aplicaci\u00F3. Cal que desactiveu el bloqueig de finestres emergents en aquest lloc per tal de poder utilitzar de forma completa aquesta eina.",
|
||||
invalid_data:"Error: heu introdu\u00EFt valors no v\u00E0lids, els marcats en vermell.",
|
||||
more_colors:"M\u00E9s colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alineaci\u00F3",
|
||||
left:"Esquerra",
|
||||
center:"Centre",
|
||||
right:"Dreta",
|
||||
full:"Justificat"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insereix la data",
|
||||
inserttime_desc:"Insereix l\'hora",
|
||||
months_long:"Jgener,febrer,mar\u00E7,abril,maig,juny,juliol,agost,setembre,octubre,novembre,desembre",
|
||||
months_short:"gen.,febr.,mar\u00E7,abr.,maig,juny,jul.,ag.,set.,oct.,nov.,des.",
|
||||
day_long:"diumenge,dilluns,dimarts,dimecres,dijous,divendres,dissabte,diumenge",
|
||||
day_short:"dg.,dl.,dt.,dc.,dj.,dv.,ds.,dg."
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimeix"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Previsualitzaci\u00F3"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direcci\u00F3 esquerra a dreta",
|
||||
rtl_desc:"Direcci\u00F3 dreta a esquerra"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insereix una nova capa",
|
||||
forward_desc:"Mou endavant",
|
||||
backward_desc:"Mou endarrera",
|
||||
absolute_desc:"Conmuta el posicionament absolut",
|
||||
content:"Nova Capa..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Desa",
|
||||
cancel_desc:"Cancel\u00B7la tots els canvis"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insereix un car\u00E0cter espai en blanc"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Executa la correcci\u00F3 ortogr\u00E0fica",
|
||||
download:"no he detectat l\'ieSpell. Voleu instal\u00B7lar-ho?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Filet horitzontal"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emoticones"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Cerca",
|
||||
replace_desc:"Cerca/Reempla\u00E7a"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insereix/edita imatge"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citaci\u00F3",
|
||||
abbr_desc:"Abreviaci\u00F3",
|
||||
acronym_desc:"Acr\u00F2nim",
|
||||
del_desc:"Eliminaci\u00F3",
|
||||
ins_desc:"Inserci\u00F3",
|
||||
attribs_desc:"Insereix/edita atributs"
|
||||
},
|
||||
style:{
|
||||
desc:"Edita l\'estil CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Enganxa com a text pla",
|
||||
paste_word_desc:"Enganxa des del Word",
|
||||
selectall_desc:"Selecciona-ho tot",
|
||||
plaintext_mode_sticky:"Enganxa est\u00E0 ara configurat en mode text pla. Clica de nou per tornar al mode normal d'enganxar. Despr\u00E9s d'enganxar quelcom ser\u00E0s retornat al mode normal d'enganxar.",
|
||||
plaintext_mode:"Enganxa est\u00E0 ara configurat en mode text pla. Clica de nou per tornar al mode normal d'enganxar."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra.",
|
||||
text_linebreaks:"Conserva els salts de l\u00EDnia",
|
||||
word_title:"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra."
|
||||
},
|
||||
table:{
|
||||
desc:"Insereix una nova taula",
|
||||
row_before_desc:"Insereix una fila abans",
|
||||
row_after_desc:"Insereix una fila despr\u00E9s",
|
||||
delete_row_desc:"Elimina la fila",
|
||||
col_before_desc:"Insereix una columna abans",
|
||||
col_after_desc:"Insereix una columna despr\u00E9s",
|
||||
delete_col_desc:"Elimina la columna",
|
||||
split_cells_desc:"Divideix les cel\u00B7les fusionades",
|
||||
merge_cells_desc:"Fusiona les cel\u00B7les",
|
||||
row_desc:"Propietats de la fila",
|
||||
cell_desc:"Propietats de la cel\u00B7la",
|
||||
props_desc:"Propietats de la taula",
|
||||
paste_row_before_desc:"Enganxa la fila abans",
|
||||
paste_row_after_desc:"Enganxa la fila despr\u00E9s",
|
||||
cut_row_desc:"Retalla la fila",
|
||||
copy_row_desc:"Copia la fila",
|
||||
del:"Elimina la taula",
|
||||
row:"Fila",
|
||||
col:"Columna",
|
||||
cell:"Cel\u00B7la"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Els canvis que heu fet es perdran si navegueu a fora d\'aquesta p\u00E0gina.",
|
||||
restore_content:"Restaura el contingut guardat autom\u00E0ticament.",
|
||||
warning_message:"Si restaures el contingut guardat, perdr\u00E0s tot el contingut actual de l'editor. Est\u00E0s segur de voler continuar?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Commuta a mode de pantalla completa"
|
||||
},
|
||||
media:{
|
||||
desc:"Insereix / edita multim\u00E8dia incrustat",
|
||||
edit:"Edita multim\u00E8dia incrustat"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propietats del document"
|
||||
},
|
||||
template:{
|
||||
desc:"Insereix un contingut predefinit"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Activa/desactiva els car\u00E0cters de control visual."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Corrector ortogr\u00E0fic",
|
||||
menu:"Configuraci\u00F3 del corrector",
|
||||
ignore_word:"Ignora el mot",
|
||||
ignore_words:"Ignora\'ls tots",
|
||||
langs:"Idiomes",
|
||||
wait:"Espereu...",
|
||||
sug:"Suggeriments",
|
||||
no_sug:"Cap suggeriment",
|
||||
no_mpell:"No s\'ha trobat cap falta d\'ortografia."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insereix un salt de p\u00E0gina."
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipus",
|
||||
def:"Per defecte",
|
||||
lower_alpha:"Lletres",
|
||||
lower_greek:"Lletres gregues (min\u00FAscules)",
|
||||
lower_roman:"Nombres romans (min\u00FAscules)",
|
||||
upper_alpha:"Lletres (maj\u00FAscules)",
|
||||
upper_roman:"Nombres romans (maj\u00FAscules)",
|
||||
circle:"Cercle",
|
||||
disc:"Disc",
|
||||
square:"Quadrat"
|
||||
}}});
|
178
htdocs/resource2/tinymce/langs/ch.js
Normal file
178
htdocs/resource2/tinymce/langs/ch.js
Normal file
@ -0,0 +1,178 @@
|
||||
tinyMCE.addI18n({ch:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u5728\u6B64textarea\u6807\u7B7E\u5185\u4F7F\u7528\"\u6240\u89C1\u5373\u6240\u5F97\"\u6A21\u5F0F\uFF1F",
|
||||
apply:"\u5E94\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u5173\u95ED",
|
||||
browse:"\u6D41\u89C8",
|
||||
class_name:"\u6837\u5F0F",
|
||||
not_set:"--\u672A\u8BBE\u7F6E--",
|
||||
clipboard_msg:"\u590D\u5236\u3001\u526A\u4E0B\u3001\u8D34\u4E0A\u529F\u80FD\u5728Mozilla\u548CFirefox\u4E2D\u4E0D\u80FD\u4F7F\u7528\u3002 \n\u662F\u5426\u9700\u8981\u4E86\u89E3\u66F4\u591A\u6709\u5173\u6B64\u95EE\u9898\u7684\u8D44\u8BAF\uFF1F",
|
||||
clipboard_no_support:"\u8FD8\u4E0D\u652F\u63F4\u60A8\u7684\u6D41\u89C8\u5668\uFF0C\u8BF7\u4F7F\u7528\u952E\u76D8\u5FEB\u901F\u952E",
|
||||
popup_blocked:"\u62B1\u6B49\uFF01\u5F39\u51FA\u7684\u7A97\u53E3\u5DF2\u88AB\u963B\u6B62\uFF0C\u8BF7\u8C03\u6574\u6D4F\u89C8\u5668\u8BBE\u7F6E\uFF0C\u5141\u8BB8\u6B64\u7F51\u7AD9\u53EF\u5F39\u51FA\u65B0\u7A97\u53E3\uFF0C\u4EE5\u4FBF\u4F7F\u7528\u6B64\u5DE5\u5177",
|
||||
invalid_data:"\u9519\u8BEF:\u5DF2\u6807\u8BB0\u4E3A\u7EA2\u8272\u7684\u4E3A\u65E0\u6548\u8F93\u5165\u503C\u3002",
|
||||
more_colors:"\u66F4\u591A\u989C\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5BF9\u9F50\u65B9\u5F0F",
|
||||
left:"\u9760\u5DE6\u5BF9\u9F50",
|
||||
center:"\u5C45\u4E2D\u5BF9\u9F50",
|
||||
right:"\u9760\u53F3\u5BF9\u9F50",
|
||||
full:"\u4E24\u7AEF\u5BF9\u9F50"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u4ECA\u5929\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u73B0\u5728\u65F6\u95F4",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u5468\u65E5,\u5468\u4E00,\u5468\u4E8C,\u5468\u4E09,\u5468\u56DB,\u5468\u4E94,\u5468\u516D,\u5468\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u6253\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9884\u89C8"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u6587\u5B57\u4ECE\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u6587\u5B57\u4ECE\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5C42",
|
||||
forward_desc:"\u7F6E\u524D",
|
||||
backward_desc:"\u7F6E\u540E",
|
||||
absolute_desc:"\u6253\u5F00/\u5173\u95ED\u7EDD\u5BF9\u4F4D\u7F6E",
|
||||
content:"\u65B0\u589E\u5C42..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u4FDD\u5B58",
|
||||
cancel_desc:"\u53D6\u6D88\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u767D\u683C"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u62FC\u5199\u68C0\u67E5",
|
||||
download:"\u672A\u68C0\u6D4B\u5230ieSpell\u7684\u5B58\u5728\u3002\u662F\u5426\u73B0\u5728\u7ACB\u5373\u5B89\u88C5\uFF1F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7EBF"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u8868\u60C5"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u67E5\u627E",
|
||||
replace_desc:"\u67E5\u627E/\u66FF\u6362"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7F16\u8F91\u56FE\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7F16\u8F91\u94FE\u63A5"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u6587",
|
||||
abbr_desc:"\u7F29\u5199",
|
||||
acronym_desc:"\u9996\u5B57\u7F29\u5199",
|
||||
del_desc:"\u5220\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7F16\u8F91\u5C5E\u6027",
|
||||
attribs_delta_width:"40",
|
||||
attribs_delta_height:"60"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7F16\u8F91CSS\u6837\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u7C98\u8D34\u4E3A\u7EAF\u6587\u5B57",
|
||||
paste_word_desc:"\u4ECEWord\u4E0A\u7C98\u8D34(\u4FDD\u7559\u539F\u6765\u6837\u5F0F)",
|
||||
selectall_desc:"\u5168\u9009",
|
||||
plaintext_mode_sticky:"plaintext mode sticky",
|
||||
plaintext_mode:"plaintext mode"
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u7C98\u8D34\u5230\u6B64\u7A97\u53E3\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7",
|
||||
word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u7C98\u8D34\u5230\u6B64\u7A97\u53E3\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u63D2\u5165\u4E0A\u65B9\u884C",
|
||||
row_after_desc:"\u63D2\u5165\u4E0B\u65B9\u884C",
|
||||
delete_row_desc:"\u5220\u9664\u6240\u5728\u884C",
|
||||
col_before_desc:"\u63D2\u5165\u5DE6\u65B9\u5217",
|
||||
col_after_desc:"\u63D2\u5165\u53F3\u65B9\u5217",
|
||||
delete_col_desc:"\u5220\u9664\u6240\u5728\u5217",
|
||||
split_cells_desc:"\u5206\u5272\u5355\u5143\u683C",
|
||||
merge_cells_desc:"\u5408\u5E76\u5355\u5143\u683C",
|
||||
row_desc:"\u884C\u5C5E\u6027",
|
||||
cell_desc:"\u5355\u5143\u683C\u5C5E\u6027",
|
||||
props_desc:"\u8868\u683C\u5C5E\u6027",
|
||||
paste_row_before_desc:"\u5728\u4E0A\u4E00\u884C\u7C98\u8D34",
|
||||
paste_row_after_desc:"\u5728\u4E0B\u4E00\u884C\u7C98\u8D34",
|
||||
cut_row_desc:"\u526A\u5207\u9009\u62E9\u884C",
|
||||
copy_row_desc:"\u590D\u5236\u9009\u62E9\u884C",
|
||||
del:"\u5220\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u5355\u5143\u683C",
|
||||
cellprops_delta_width:"10",
|
||||
cellprops_delta_height:"10",
|
||||
table_delta_width:"40",
|
||||
table_delta_height:"60",
|
||||
merge_cells_delta_width:"40",
|
||||
merge_cells_delta_height:"40"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u5982\u679C\u79BB\u5F00\u6B64\u9875\u9762\u5C06\u5BFC\u81F4\u6240\u505A\u7684\u66F4\u6539\u5168\u90E8\u4E22\u5931\u3002",
|
||||
restore_content:"\u6062\u590D\u5185\u5BB9",
|
||||
warning_message:"\u63D0\u793A\u4FE1\u606F"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5F00\u5173\u5168\u5C4F\u6A21\u5F0F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53",
|
||||
edit:"\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6863\u6848\u5C5E\u6027"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9884\u5B9A\u7684\u6A21\u677F\u5185\u5BB9"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u663E\u793A/\u9690\u85CF\u63A7\u5236\u7B26\u53F7\u3002"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u5F00\u5173\u62FC\u5199\u68C0\u67E5",
|
||||
menu:"\u62FC\u5199\u68C0\u67E5\u8BBE\u7F6E",
|
||||
ignore_word:"\u7565\u8FC7",
|
||||
ignore_words:"\u5168\u90E8\u7565\u8FC7",
|
||||
langs:"\u8BED\u8A00",
|
||||
wait:"\u8BF7\u7A0D\u5019...",
|
||||
sug:"\u63A8\u8350\u5B57\u8BCD",
|
||||
no_sug:"\u65E0\u62FC\u5199\u63A8\u8350",
|
||||
no_mpell:"\u672A\u53D1\u73B0\u62FC\u5199\u9519\u8BEF"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9875\u7B26\u53F7"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
176
htdocs/resource2/tinymce/langs/cs.js
Normal file
176
htdocs/resource2/tinymce/langs/cs.js
Normal file
@ -0,0 +1,176 @@
|
||||
tinyMCE.addI18n({cs:{
|
||||
common:{
|
||||
edit_confirm:"Chcete pou\u017E\u00EDt WYSIWYG m\u00F3d pro tento text?",
|
||||
apply:"Pou\u017E\u00EDt",
|
||||
insert:"Vlo\u017Eit",
|
||||
update:"Aktualizovat",
|
||||
cancel:"Storno",
|
||||
close:"Zav\u0159\u00EDt",
|
||||
browse:"Proch\u00E1zet",
|
||||
class_name:"T\u0159\u00EDda",
|
||||
not_set:"- Nenastaveno -",
|
||||
clipboard_msg:"Funkce kop\u00EDrovat/vyjmout/vlo\u017Eit nejsou podporovan\u00E9 v prohl\u00ED\u017Ee\u010D\u00EDch Mozilla a Firefox.\nChcete v\u00EDce informac\u00ED o tomto probl\u00E9mu?",
|
||||
clipboard_no_support:"Tato funkce nen\u00ED va\u0161\u00EDm prohl\u00ED\u017Ee\u010Dem podporov\u00E1na. Pou\u017Eijte m\u00EDsto toho kl\u00E1vesov\u00E9 zkratky.",
|
||||
popup_blocked:"Omlouv\u00E1me se, ale blokov\u00E1n\u00ED vyskakovac\u00EDch oken neumo\u017Enilo otev\u0159\u00EDt okno, kter\u00E9 poskytuje funk\u010Dnost aplikace. Pro pln\u00E9 vyu\u017Eit\u00ED mo\u017Enost\u00ED aplikace mus\u00EDte vypnout blokov\u00E1n\u00ED vyskakovac\u00EDch oken pro tento web.",
|
||||
invalid_data:"Chyba: Byly zad\u00E1ny neplatn\u00E9 hodnoty a tyto byly ozna\u010Deny \u010Derven\u011B.",
|
||||
more_colors:"Dal\u0161\u00ED barvy"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Zarovn\u00E1n\u00ED",
|
||||
left:"Doleva",
|
||||
center:"Na st\u0159ed",
|
||||
right:"Doprava",
|
||||
full:"Do bloku"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Vlo\u017Eit datum",
|
||||
inserttime_desc:"Vlo\u017Eit \u010Das",
|
||||
months_long:"Leden,\u00DAnor,B\u0159ezen,Duben,Kv\u011Bten,\u010Cerven,\u010Cervenec,Srpen,Z\u00E1\u0159\u00ED,\u0158\u00EDjen,Listopad,Prosinec",
|
||||
months_short:"Led,\u00DAno,B\u0159e,Dub,Kv\u011B,\u010Cer,\u010Cvc,Srp,Z\u00E1\u0159,\u0158\u00EDj,Lis,Pro",
|
||||
day_long:"Ned\u011Ble,Pond\u011Bl\u00ED,\u00DAter\u00FD,St\u0159eda,\u010Ctvrtek,P\u00E1tek,Sobota,Ned\u011Ble",
|
||||
day_short:"Ne,Po,\u00DAt,St,\u010Ct,P\u00E1,So,Ne"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Tisk"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"N\u00E1hled"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Sm\u011Br zleva doprava",
|
||||
rtl_desc:"Sm\u011Br zprava doleva"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Vlo\u017Eit novou vrstvu",
|
||||
forward_desc:"P\u0159esunout dop\u0159edu",
|
||||
backward_desc:"P\u0159esunout dozadu",
|
||||
absolute_desc:"P\u0159epnout na absolutn\u00ED pozicov\u00E1n\u00ED",
|
||||
content:"Nov\u00E1 vrstva..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Ulo\u017Eit",
|
||||
cancel_desc:"Zru\u0161it v\u0161echny zm\u011Bny"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Vlo\u017Eit ned\u011Blitelnou mezeru"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Spustit kontrolu pravopisu",
|
||||
download:"Slovn\u00EDk ieSpell nebyl detekov\u00E1n. Chcete ho nainstalovat?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodorovn\u00FD odd\u011Blova\u010D"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotikony"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Naj\u00EDt",
|
||||
replace_desc:"Naj\u00EDt/nahradit"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Vlo\u017Eit/upravit obr\u00E1zek",
|
||||
delta_width:"20"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Vlo\u017Eit/upravit odkaz"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citace",
|
||||
abbr_desc:"Zkratka",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Odstran\u011Bn\u00FD text",
|
||||
ins_desc:"P\u0159idan\u00FD text",
|
||||
attribs_desc:"Vlo\u017Eit/upravit atributy"
|
||||
},
|
||||
style:{
|
||||
desc:"Upravit CSS styl",
|
||||
delta_width:"25"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Vlo\u017Eit jako prost\u00FD text",
|
||||
paste_word_desc:"Vlo\u017Eit z Wordu",
|
||||
selectall_desc:"Vybrat v\u0161e",
|
||||
plaintext_mode_sticky:"Funkce vlo\u017Eit je nyn\u00ED v re\u017Eimu prost\u00FD text. Op\u011Btovn\u00E9 kliknut\u00ED p\u0159epne tuto funkci zp\u011Bt do norm\u00E1ln\u00EDho re\u017Eimu. Po vlo\u017Een\u00ED \u010Dehokoli bude tato funkce vr\u00E1cena zp\u011Bt do norm\u00E1ln\u00EDho re\u017Eimu.",
|
||||
plaintext_mode:"Funkce vlo\u017Eit je nyn\u00ED v re\u017Eimu prost\u00FD text. Op\u011Btovn\u00E9 kliknut\u00ED p\u0159epne tuto funkci zp\u011Bt do norm\u00E1ln\u00EDho re\u017Eimu."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna.",
|
||||
text_linebreaks:"Zachovat zalamov\u00E1n\u00ED \u0159\u00E1dk\u016F",
|
||||
word_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna."
|
||||
},
|
||||
table:{
|
||||
desc:"Vlo\u017Eit novou tabulku",
|
||||
row_before_desc:"Vlo\u017Eit \u0159\u00E1dek p\u0159ed",
|
||||
row_after_desc:"Vlo\u017Eit \u0159\u00E1dek za",
|
||||
delete_row_desc:"Odstranit \u0159\u00E1dek tabulky",
|
||||
col_before_desc:"Vlo\u017Eit sloupec p\u0159ed",
|
||||
col_after_desc:"Vlo\u017Eit sloupec za",
|
||||
delete_col_desc:"Odstranit sloupec tabulky",
|
||||
split_cells_desc:"Rozd\u011Blit bu\u0148ky",
|
||||
merge_cells_desc:"Slou\u010Dit bu\u0148ky",
|
||||
row_desc:"Vlastnosti \u0159\u00E1dku tabulky",
|
||||
cell_desc:"Vlastnosti bu\u0148ky",
|
||||
props_desc:"Vlastnosti tabulky",
|
||||
paste_row_before_desc:"Vlo\u017Eit \u0159\u00E1dek p\u0159ed",
|
||||
paste_row_after_desc:"Vlo\u017Eit \u0159\u00E1dek za",
|
||||
cut_row_desc:"Vyjmout \u0159\u00E1dek tabulky",
|
||||
copy_row_desc:"Kop\u00EDrovat \u0159\u00E1dek tabulky",
|
||||
del:"Odstranit tabulku",
|
||||
row:"\u0158\u00E1dek",
|
||||
col:"Sloupec",
|
||||
cell:"Bu\u0148ka",
|
||||
cellprops_delta_width:"100",
|
||||
table_delta_width:"50"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Proveden\u00E9 zm\u011Bny mohou b\u00FDt ztraceny, jestli\u017Ee opust\u00EDte tuto str\u00E1nku.",
|
||||
restore_content:"Obnovit automaticky ulo\u017Een\u00FD obsah.",
|
||||
warning_message:"Pokud obnov\u00EDte ulo\u017Een\u00FD obsah, ztrat\u00EDte t\u00EDm ve\u0161ker\u00FD obsah, kter\u00FD je pr\u00E1v\u011B v okn\u011B editoru.\n\nOpravdu chcete obnovit ulo\u017Een\u00FD obsah?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"P\u0159epnout na celostr\u00E1nkov\u00E9 zobrazen\u00ED"
|
||||
},
|
||||
media:{
|
||||
desc:"Vlo\u017Eit/upravit m\u00E9dia",
|
||||
edit:"Upravit m\u00E9dia",
|
||||
delta_width:"130"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Vlastnosti dokumentu",
|
||||
delta_width:"110"
|
||||
},
|
||||
template:{
|
||||
desc:"Vlo\u017Eit p\u0159eddefinovan\u00FD obsah ze \u0161ablony"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Zobrazen\u00ED skryt\u00FDch znak\u016F zap/vyp"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"P\u0159epnout kontrolu pravopisu",
|
||||
menu:"Nastaven\u00ED kontroly pravopisu",
|
||||
ignore_word:"Ignorovat slovo",
|
||||
ignore_words:"Ignorovat v\u0161e",
|
||||
langs:"Jazyky",
|
||||
wait:"\u010Cekejte pros\u00EDm...",
|
||||
sug:"N\u00E1pov\u011Bda",
|
||||
no_sug:"\u017D\u00E1dn\u00E1 n\u00E1pov\u011Bda",
|
||||
no_mpell:"Nebyly nalezeny \u017E\u00E1dn\u00E9 chyby."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Vlo\u017Eit konec str\u00E1nky"
|
||||
},
|
||||
advlist:{
|
||||
types:"Typ",
|
||||
def:"V\u00FDchoz\u00ED",
|
||||
lower_alpha:"Mal\u00E1 p\u00EDsmena",
|
||||
lower_greek:"Mal\u00E1 \u0159eck\u00E1 p\u00EDsmena",
|
||||
lower_roman:"Mal\u00E9 \u0159\u00EDmsk\u00E9 \u010D\u00EDslice",
|
||||
upper_alpha:"Velk\u00E1 p\u00EDsmena",
|
||||
upper_roman:"Velk\u00E9 \u0159\u00EDmsk\u00E9 \u010D\u00EDslice",
|
||||
circle:"Kole\u010Dko",
|
||||
disc:"Punt\u00EDk",
|
||||
square:"\u010Ctvere\u010Dek"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/cy.js
Normal file
170
htdocs/resource2/tinymce/langs/cy.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({cy:{
|
||||
common:{
|
||||
edit_confirm:"Ydych chi eisiau defnyddio'r modd WYSIWYG ar gyfer y textarea yma?",
|
||||
apply:"Gosod",
|
||||
insert:"Mewnosod",
|
||||
update:"Diweddaru",
|
||||
cancel:"Diddymu",
|
||||
close:"Cau",
|
||||
browse:"Pori",
|
||||
class_name:"Dosbarth",
|
||||
not_set:"-- Nid wedi osod --",
|
||||
clipboard_msg:"Nid yw Cop\u00EFo/Torri/Gludo ar gael mewn Mozilla a Firefox.\nYdych chi eisiau mwy o wybodaeth am y mater yma?",
|
||||
clipboard_no_support:"Dim wedi'i gynnal gan eich porwr, defnyddiwch Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
popup_blocked:"Rydym wedi sylwi fod eich popup-blocker wedi analluogi ffenest sy'n darparu swyddogaeth cymhwysiad. Bydd rhaid i chi analluogi blocio popups ar gyfer y safle yma i ddefnyddio'r offeryn yma.",
|
||||
invalid_data:"Gwall: Gwerthau allilys wedi mewnbynnu, mae'r gwerthau yma wedi eu marcio mewn coch.",
|
||||
more_colors:"Mwy o liwiau"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Aliniad",
|
||||
left:"Chwith",
|
||||
center:"Canol",
|
||||
right:"De",
|
||||
full:"Llawn"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Mewnosod dyddiad",
|
||||
inserttime_desc:"Mewnosod amser",
|
||||
months_long:"Ionawr,Chwefror,Mawrth,Ebrill,Mai,Mehefin,Goffennaf,Awst,Medi,Hydref,Tachwedd,Rhagfyr",
|
||||
months_short:"Ion,Chw,Maw,Ebr,Mai,Meh,Gor,Aws,Med,Hyd,Tac,Rha",
|
||||
day_long:"Sul,Llun,Mawrth,Mercher,Iau,Gwener,Sadwrn,Sul",
|
||||
day_short:"Sul,Llu,Maw,Mer,Iau,Gwe,Sad,Sul"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Argraffu"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Rhagolygu"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Cyfeiriad chwith i'r dde",
|
||||
rtl_desc:"Cyfeiriad de i'r chwith"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Mewnosod haen newydd",
|
||||
forward_desc:"Symud ymlaen",
|
||||
backward_desc:"Symud n\u00F4l",
|
||||
absolute_desc:"Toglu lleoli absoliwt",
|
||||
content:"Haen newydd..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Cadw",
|
||||
cancel_desc:"Cadw pob newidiad"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Mewnosod n\u00F4d bwlch do-doriad"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Rhedeg gwirio sillafu",
|
||||
download:"ieSpell dim wedi'i canfod. A ydych eisiau ei gosod rwan?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Mesurydd llorweddol"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emosiwn"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Canfod",
|
||||
replace_desc:"Canfod/Amnewid"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Mewnosod/golygu delwedd"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Mewnosod/Golygu cyswllt"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Dyfyniad",
|
||||
abbr_desc:"Talfyriad",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Dilead",
|
||||
ins_desc:"Mewnosodiad",
|
||||
attribs_desc:"Mewnosod/Golygu Priodoleddau"
|
||||
},
|
||||
style:{
|
||||
desc:"Golygu Arddull CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Gludo fel Testun Plaen",
|
||||
paste_word_desc:"Gludo o Word",
|
||||
selectall_desc:"Dewis Pobpeth",
|
||||
plaintext_mode_sticky:"Gludo rwan mewn modd testun plaen. Cliciwch eto i doglu n\u00F4l i fodd gludo normal. Byddwch yn cael eich dychwelyd i fodd gludo normal ar \u00F4l gludo rhywbeth.",
|
||||
plaintext_mode:"Gludo rwan mewn modd testun plaen. Cliciwch eto i doglu n\u00F4l i fodd gludo normal."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo'r testun i fewn i'r ffenest.",
|
||||
text_linebreaks:"Cadw toriadau llinell",
|
||||
word_title:"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo'r testun i fewn i'r ffenest."
|
||||
},
|
||||
table:{
|
||||
desc:"Mewnosod tabl newydd",
|
||||
row_before_desc:"Mewnosod rhes cyn",
|
||||
row_after_desc:"Mewnosod rhes ar \u00F4l",
|
||||
delete_row_desc:"Dileu rhes",
|
||||
col_before_desc:"Mewnosod colofn cyn",
|
||||
col_after_desc:"Mewnosod colofn ar \u00F4l",
|
||||
delete_col_desc:"Tynnu colofn",
|
||||
split_cells_desc:"Hollti celloedd tabl cyfuniedig",
|
||||
merge_cells_desc:"Cyfuno celloedd tabl",
|
||||
row_desc:"Priodweddau rhes tabl",
|
||||
cell_desc:"Priodweddau cell tabl",
|
||||
props_desc:"Priodweddau tabl",
|
||||
paste_row_before_desc:"Gludo rhes tabl cyn",
|
||||
paste_row_after_desc:"Gludo rhes tabl ar \u00F4l",
|
||||
cut_row_desc:"Torri rhes tabl",
|
||||
copy_row_desc:"Cop\u00EFo rhes tabl",
|
||||
del:"Dileu tabl",
|
||||
row:"Rhes",
|
||||
col:"Colofn",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Bydd eich newidiadau yn cael eu colli os byddwch yn llywio i ffwrdd o'r tudalen yma.",
|
||||
restore_content:"Adfer cynnwys awto-cadwedig.",
|
||||
warning_message:"Os adferwch chi'r cynnwys cadwedig, byddwch yn colli'r holl cynnwys sydd yn bresennol yn y golygydd.\n\nA ydych chi'n si\u0175r eich bod eisiau adfer y cynnwys cadwedig?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toglu modd sgrin llawn"
|
||||
},
|
||||
media:{
|
||||
desc:"Mewnosod / golygu cyfrwng planedig",
|
||||
edit:"Golygu cyfrwng planedig"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Priodweddau dogfen"
|
||||
},
|
||||
template:{
|
||||
desc:"Mewnosod cynnwys templed rhagosodol"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Nodau rheolaeth ymlaen/i ffwrdd."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toglu cywiriadau",
|
||||
menu:"Gosodiadau cywiriadau",
|
||||
ignore_word:"Anwybyddu gair",
|
||||
ignore_words:"Anwybyddu pob un",
|
||||
langs:"Ieithoedd",
|
||||
wait:"Aroswch, os gwelwch yn dda...",
|
||||
sug:"Awgrymiadau",
|
||||
no_sug:"Dim awgrymiadau",
|
||||
no_mpell:"Dim camsillafiadau wedi'i canfod."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Mewnosod toriad tudalen."
|
||||
},
|
||||
advlist:{
|
||||
types:"Mathau",
|
||||
def:"Rhagosodedig",
|
||||
lower_alpha:"Alffa is",
|
||||
lower_greek:"Groegaiddd is",
|
||||
lower_roman:"Rhufeinig is",
|
||||
upper_alpha:"Alffa uwch",
|
||||
upper_roman:"Rhufeinig uwch",
|
||||
circle:"Cylch",
|
||||
disc:"Disg",
|
||||
square:"Sgw\u00E2r"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/da.js
Normal file
171
htdocs/resource2/tinymce/langs/da.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({da:{
|
||||
common:{
|
||||
edit_confirm:"Vil du bruge den avancerede tekstredigering?",
|
||||
apply:"Anvend",
|
||||
insert:"Inds\u00E6t",
|
||||
update:"Opdater",
|
||||
cancel:"Annuller",
|
||||
close:"Luk",
|
||||
browse:"Gennemse",
|
||||
class_name:"Klasse",
|
||||
not_set:"-- Ikke sat --",
|
||||
clipboard_msg:"Kopier/Klip/inds\u00E6t er ikke muligt i Mozilla eller Firefox.\nVil du have mere information om dette emne?",
|
||||
clipboard_no_support:"P\u00E5 nuv\u00E6rende tidspunkt ikke supporteret af din browser. Anvend i stedet genvejene p\u00E5 tastaturet.",
|
||||
popup_blocked:"Undskyld, men vi har noteret os, at din popup-blocker har forhindret et vindue, der giver programmet funktionalitet, at \u00E5bne op. Hvis du vil have den fulde funktionalitet, m\u00E5 du sl\u00E5 popup-blockeren fra for dette websted.",
|
||||
invalid_data:"Fejl: Forkerte v\u00E6rdier indtastet i felter markeret med r\u00F8d.",
|
||||
more_colors:"Flere farver"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Justering",
|
||||
left:"Venstre",
|
||||
center:"Centreret",
|
||||
right:"H\u00F8jre",
|
||||
full:"Lige marginer"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Inds\u00E6t dato",
|
||||
inserttime_desc:"Inds\u00E6t klokkeslet",
|
||||
months_long:"Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec",
|
||||
day_long:"S\u00F8ndag,Mandag,Tirsdag,Onsdag,Torsdag,Fredag,L\u00F8rdag,S\u00F8ndag",
|
||||
day_short:"S\u00F8n,Man,Tir,Ons,Tors,Fre,L\u00F8r,S\u00F8n"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Udskriv"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Vis udskrift"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Retning venstre mod h\u00F8jre",
|
||||
rtl_desc:"Retning h\u00F8jre mod venstre"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Inds\u00E6t nyt lag",
|
||||
forward_desc:"Flyt fremad",
|
||||
backward_desc:"Flyt bagud",
|
||||
absolute_desc:"Sl\u00E5 absolut positionering til/fra",
|
||||
content:"Nyt lag..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Gem",
|
||||
cancel_desc:"Annuller alle \u00E6ndringer"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Inds\u00E6t et blanktegn"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Udf\u00F8r stavekontrol",
|
||||
download:"ieSpell blev ikke fundet. Vil du installere det nu?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontal linie"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Hum\u00F8rikoner"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"S\u00F8g",
|
||||
replace_desc:"S\u00F8g/erstat"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Inds\u00E6t/rediger billede"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Inds\u00E6t/rediger link",
|
||||
delta_width:"40"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Forkortelse",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Sletning",
|
||||
ins_desc:"Inds\u00E6ttelse",
|
||||
attribs_desc:"Inds\u00E6t/rediger attributter"
|
||||
},
|
||||
style:{
|
||||
desc:"Rediger CSS stil"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Inds\u00E6t ikke-formatteret tekst",
|
||||
paste_word_desc:"Inds\u00E6t fra Word",
|
||||
selectall_desc:"V\u00E6lg alle",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten.",
|
||||
text_linebreaks:"Bevar linieskift",
|
||||
word_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten."
|
||||
},
|
||||
table:{
|
||||
desc:"Inds\u00E6t tabel",
|
||||
row_before_desc:"Inds\u00E6t r\u00E6kke f\u00F8r",
|
||||
row_after_desc:"Inds\u00E6t r\u00E6kke efter",
|
||||
delete_row_desc:"Slet r\u00E6kke",
|
||||
col_before_desc:"Inds\u00E6t kolonne f\u00F8r",
|
||||
col_after_desc:"Inds\u00E6t kolonne efter",
|
||||
delete_col_desc:"Slet kolonne",
|
||||
split_cells_desc:"Opdel flettede celler",
|
||||
merge_cells_desc:"Flet celler",
|
||||
row_desc:"R\u00E6kkeegenskaber",
|
||||
cell_desc:"Celleegenskaber",
|
||||
props_desc:"Tabelegenskaber",
|
||||
paste_row_before_desc:"Inds\u00E6t r\u00E6kke f\u00F8r",
|
||||
paste_row_after_desc:"Inds\u00E6t r\u00E6kke efter",
|
||||
cut_row_desc:"Klip r\u00E6kke",
|
||||
copy_row_desc:"Kopier r\u00E6kke",
|
||||
del:"Slet tabel",
|
||||
row:"R\u00E6kke",
|
||||
col:"Kolonne",
|
||||
cell:"Celle"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Har du foretaget nogle \u00E6ndringer, vil de g\u00E5 tabt, hvis du navigerer v\u00E6k fra denne side.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Vis/skjul fuldsk\u00E6rmstilstand"
|
||||
},
|
||||
media:{
|
||||
desc:"Inds\u00E6t/rediger indlejret mediefil",
|
||||
edit:"Rediger indlejret mediefil"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumentegenskaber"
|
||||
},
|
||||
template:{
|
||||
desc:"Inds\u00E6t pr\u00E6defineret skabelonindhold"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vis/Skjul visuelle kontroltegn."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Vis/skjul stavekontrol",
|
||||
menu:"Indstillinger for stavekontrol",
|
||||
ignore_word:"Ignorer ord",
|
||||
ignore_words:"Ignorer alle",
|
||||
langs:"Sprog",
|
||||
wait:"Vent venligst...",
|
||||
sug:"Forslag",
|
||||
no_sug:"Ingen forslag",
|
||||
no_mpell:"Ingen stavefejl fundet."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Inds\u00E6t sideskift."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/de.js
Normal file
171
htdocs/resource2/tinymce/langs/de.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({de:{
|
||||
common:{
|
||||
edit_confirm:"M\u00F6chten Sie diesen Text jetzt bearbeiten?",
|
||||
apply:"\u00DCbernehmen",
|
||||
insert:"Einf\u00FCgen",
|
||||
update:"Aktualisieren",
|
||||
cancel:"Abbrechen",
|
||||
close:"Schlie\u00DFen",
|
||||
browse:"Durchsuchen",
|
||||
class_name:"CSS-Klasse",
|
||||
not_set:"- unbestimmt -",
|
||||
clipboard_msg:"Kopieren, Ausschneiden und Einf\u00FCgen sind im Mozilla Firefox nicht m\u00F6glich.\nM\u00F6chten Sie mehr \u00FCber dieses Problem erfahren?",
|
||||
clipboard_no_support:"Wird derzeit in Ihrem Browser nicht unterst\u00FCtzt. Bitte benutzen Sie stattdessen die Tastenk\u00FCrzel.",
|
||||
popup_blocked:"Leider hat Ihr Popup-Blocker ein Fenster unterbunden, das f\u00FCr den Betrieb dieses Programms n\u00F6tig ist. Bitte deaktivieren Sie den Popup-Blocker f\u00FCr diese Seite.",
|
||||
invalid_data:"Fehler: Sie haben ung\u00FCltige Werte eingegeben (rot markiert).",
|
||||
more_colors:"Weitere Farben"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Ausrichtung",
|
||||
left:"Linksb\u00FCndig",
|
||||
center:"Zentriert",
|
||||
right:"Rechtsb\u00FCndig",
|
||||
full:"Blocksatz"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Datum einf\u00FCgen",
|
||||
inserttime_desc:"Zeit einf\u00FCgen",
|
||||
months_long:"Januar,Februar,M\u00E4rz,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember",
|
||||
months_short:"Jan,Feb,M\u00E4r,Apr,Mai,Juni,Juli,Aug,Sept,Okt,Nov,Dez",
|
||||
day_long:"Sonntag,Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag",
|
||||
day_short:"So,Mo,Di,Mi,Do,Fr,Sa,So"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Drucken"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Vorschau"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Schrift von links nach rechts",
|
||||
rtl_desc:"Schrift von rechts nach links"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Neue Ebene einf\u00FCgen",
|
||||
forward_desc:"Nach vorne holen",
|
||||
backward_desc:"Nach hinten legen",
|
||||
absolute_desc:"Absolute Positionierung",
|
||||
content:"Neue Ebene..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Speichern",
|
||||
cancel_desc:"Alle \u00C4nderungen verwerfen"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Gesch\u00FCtztes Leerzeichen einf\u00FCgen"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Rechtschreibpr\u00FCfung",
|
||||
download:"ieSpell konnte nicht gefunden werden. Wollen Sie es installieren?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Trennlinie"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Smilies"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Suchen",
|
||||
replace_desc:"Suchen/Ersetzen"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Bild einf\u00FCgen/ersetzen"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Link einf\u00FCgen/bearbeiten"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Quellenangabe",
|
||||
abbr_desc:"Abk\u00FCrzung",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Entfernter Text",
|
||||
ins_desc:"Eingef\u00FCgter Text",
|
||||
attribs_desc:"Attribute einf\u00FCgen/bearbeiten"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS-Styles bearbeiten"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Als einfachen Text einf\u00FCgen",
|
||||
paste_word_desc:"Mit Formatierungen (aus Word) einf\u00FCgen",
|
||||
selectall_desc:"Alles ausw\u00E4hlen",
|
||||
plaintext_mode_sticky:"Einf\u00FCgemodus ist nun \"Nur Text\". Erneut klicken (oder das Einf\u00FCgen aus der Zwischenablage) stellt den Normalmodus wieder her.",
|
||||
plaintext_mode:"Einf\u00FCgemodus ist nun \"Nur Text\". Erneut klicken stellt den Normalmodus wieder her."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen.",
|
||||
text_linebreaks:"Zeilenumbr\u00FCche beibehalten",
|
||||
word_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen."
|
||||
},
|
||||
table:{
|
||||
desc:"Tabelle erstellen/bearbeiten",
|
||||
row_before_desc:"Zeile oberhalb einf\u00FCgen",
|
||||
row_after_desc:"Zeile unterhalb einf\u00FCgen",
|
||||
delete_row_desc:"Zeile l\u00F6schen",
|
||||
col_before_desc:"Spalte links einf\u00FCgen",
|
||||
col_after_desc:"Spalte rechts einf\u00FCgen",
|
||||
delete_col_desc:"Spalte l\u00F6schen",
|
||||
split_cells_desc:"Verbundene Zellen trennen",
|
||||
merge_cells_desc:"Zellen verbinden",
|
||||
row_desc:"Eigenschaften der Zeile",
|
||||
cell_desc:"Eigenschaften der Zelle",
|
||||
props_desc:"Eigenschaften der Tabelle",
|
||||
paste_row_before_desc:"Zeile oberhalb aus der Zwischenablage einf\u00FCgen",
|
||||
paste_row_after_desc:"Zeile unterhalb aus der Zwischenablage einf\u00FCgen",
|
||||
cut_row_desc:"Zeile ausschneiden",
|
||||
copy_row_desc:"Zeile kopieren",
|
||||
del:"Tabelle l\u00F6schen",
|
||||
row:"Zeile",
|
||||
col:"Spalte",
|
||||
cell:"Zelle",
|
||||
cellprops_delta_width:"150"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Ihre \u00C4nderungen werden verloren gehen, wenn Sie die Seite verlassen.",
|
||||
restore_content:"Automatisch gespeicherten Inhalt wiederherstellen.",
|
||||
warning_message:"Wenn Sie den Inhalt wiederherstellen, gehen die aktuellen Daten im Editor verloren.\n\nSind sie sicher, dass Sie den Inhalt wiederherstellen m\u00F6chten?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Vollbildschirm"
|
||||
},
|
||||
media:{
|
||||
desc:"Multimedia einbetten/bearbeiten",
|
||||
edit:"Multimediaeinbettung bearbeiten"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokument-Eigenschaften"
|
||||
},
|
||||
template:{
|
||||
desc:"Inhalt aus Vorlage einf\u00FCgen"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Sichtbarkeit der Steuerzeichen an/aus"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Rechtschreibpr\u00FCfung an/aus",
|
||||
menu:"Einstellungen der Rechtschreibpr\u00FCfung",
|
||||
ignore_word:"Wort ignorieren",
|
||||
ignore_words:"Alle ignorieren",
|
||||
langs:"Sprachen",
|
||||
wait:"Bitte warten...",
|
||||
sug:"Vorschl\u00E4ge",
|
||||
no_sug:"Keine Vorschl\u00E4ge",
|
||||
no_mpell:"Keine Rechtschreibfehler gefunden."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Seitenumbruch einf\u00FCgen"
|
||||
},
|
||||
advlist:{
|
||||
types:"Typen",
|
||||
def:"Standard",
|
||||
lower_alpha:"a. b. c.",
|
||||
lower_greek:"1. 2. 3.",
|
||||
lower_roman:"i. ii. iii.",
|
||||
upper_alpha:"A. B. C.",
|
||||
upper_roman:"I. II. III.",
|
||||
circle:"Kreis",
|
||||
disc:"Punkt",
|
||||
square:"Quadrat"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/dv.js
Normal file
170
htdocs/resource2/tinymce/langs/dv.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({dv:{
|
||||
common:{
|
||||
edit_confirm:"\u0789\u07A8\u0793\u07AC\u0786\u07B0\u0793\u07B0\u0790\u07B0\u0784\u07AE\u0786\u07B0\u0790\u07B0\u078E\u07A6\u0787\u07A8 \u0787\u07AC\u0791\u07A8\u0793\u07A7\u0783 \u0784\u07AD\u0782\u07AA\u0782\u07B0\u0786\u07AA\u0783\u07A6\u0782\u07B0 \u0784\u07AD\u0782\u07AA\u0782\u07B0\u078A\u07AA\u0785\u07AA\u078C\u07AF\u061F",
|
||||
apply:"\u0790\u07AD\u0788\u07B0",
|
||||
insert:"\u0787\u07A8\u078C\u07AA\u0783\u07AA\u0786\u07AA\u0783\u07A6\u0787\u07B0\u0788\u07A7",
|
||||
update:"\u0784\u07A6\u078B\u07A6\u078D\u07AA\u0786\u07AA\u0783\u07A6\u0787\u07B0\u0788\u07A7",
|
||||
cancel:"\u0786\u07AC\u0782\u07B0\u0790\u07A6\u078D\u07B0",
|
||||
close:"\u0782\u07A8\u0789\u07AA\u0782\u07A9",
|
||||
browse:"\u0784\u07A6\u0787\u07B0\u078D\u07A6\u0788\u07A7",
|
||||
class_name:"\u0786\u07B0\u078D\u07A7\u0790\u07B0",
|
||||
not_set:"-- \u0780\u07A6\u0789\u07A6\u0787\u07AC\u0787\u07B0 \u0782\u07AA\u0796\u07AC\u0780\u07AC --",
|
||||
clipboard_msg:"\u0789\u07AE\u0792\u07A8\u0787\u07B0\u078D\u07A7 \u0787\u07A6\u078B\u07A8 \u078A\u07A6\u0794\u07A7\u0783\u078A\u07AE\u0786\u07B0\u0790\u07B0\u078E\u07A6\u0787\u07A8 \u0786\u07AE\u0795\u07A9/\u0786\u07A6\u0793\u07B0/\u0795\u07AD\u0790\u07B0\u0793\u07B0 \u0782\u07AA\u0786\u07AA\u0783\u07AC\u0788\u07AC.\n \u0789\u07A8\u0789\u07A6\u0787\u07B0\u0790\u07A6\u078D\u07A6 \u0787\u07A8\u078C\u07AA\u0783\u07A6\u0781\u07B0 \u0787\u07AE\u0785\u07AA\u0782\u07B0\u078A\u07A8\u078D\u07AA\u0788\u07AA\u0789\u07A6\u0781\u07B0 \u0784\u07AD\u0782\u07AA\u0782\u07B0\u078A\u07AA\u0785\u07AA\u0788\u07AD\u078C\u07A6\u061F",
|
||||
clipboard_no_support:"\u0789\u07A8\u0788\u07A6\u078E\u07AA\u078C\u07AA \u078C\u07A8\u0794\u07A6\u0784\u07AD\u078A\u07AA\u0785\u07A7\u078E\u07AC \u0784\u07B0\u0783\u07A6\u0787\u07AA\u0792\u07A6\u0783\u07AA \u0790\u07A6\u0795\u07AF\u0793\u07B0 \u0782\u07AA\u0786\u07AA\u0783\u07A7\u078C\u07A9\u0788\u07AC \u0786\u07A9\u0784\u07AF\u0791\u07B0\u078E\u07AC \u0786\u07A9\u078C\u07A6\u0787\u07B0 \u0784\u07AD\u0782\u07AA\u0782\u07B0\u0786\u07AA\u0783\u07A6\u0787\u07B0\u0788\u07A7.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
174
htdocs/resource2/tinymce/langs/el.js
Normal file
174
htdocs/resource2/tinymce/langs/el.js
Normal file
@ -0,0 +1,174 @@
|
||||
tinyMCE.addI18n({el:{
|
||||
common:{
|
||||
edit_confirm:"\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C4\u03B7\u03BD \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 WYSIWYG ;",
|
||||
apply:"\u0395\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE",
|
||||
insert:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE",
|
||||
update:"\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7",
|
||||
cancel:"\u0386\u03BA\u03C5\u03C1\u03BF",
|
||||
close:"\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF",
|
||||
browse:"\u0395\u03CD\u03C1\u03B5\u03C3\u03B7",
|
||||
class_name:"\u039A\u03BB\u03AC\u03C3\u03B7",
|
||||
not_set:"-- \u039C\u03B7 \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF --",
|
||||
clipboard_msg:"\u039F\u03B9 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2 \u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE/\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE/\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03B5\u03C2 \u03C3\u03B5 Mozilla \u03BA\u03B1\u03B9 Firefox.\n\u0398\u03AD\u03BB\u03B5\u03C4\u03B5 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 ;",
|
||||
clipboard_no_support:"\u0394\u03B5\u03BD \u03C5\u03C0\u03BF\u03C3\u03C4\u03B7\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03C3\u03B1\u03C2, \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5.",
|
||||
popup_blocked:"\u0388\u03BD\u03B1 popup-blocker \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03AD\u03C7\u03B5\u03B9 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03B1\u03C0\u03B1\u03C1\u03B1\u03AF\u03C4\u03B7\u03C4\u03BF \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE. \u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B9\u03C3\u03C4\u03BF\u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03B1\u03C5\u03C4\u03AE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03C0\u03BB\u03AE\u03C1\u03C9\u03C2 \u03C4\u03B7\u03BD \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"\u03A0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u03A3\u03C4\u03BF\u03AF\u03C7\u03B9\u03C3\u03B7",
|
||||
left:"\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC",
|
||||
center:"\u039A\u03AD\u03BD\u03C4\u03C1\u03BF",
|
||||
right:"\u0394\u03B5\u03BE\u03B9\u03AC",
|
||||
full:"\u03A0\u03BB\u03AE\u03C1\u03B7\u03C2"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B7\u03BC\u03AD\u03C1\u03B1\u03C2",
|
||||
inserttime_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03CE\u03C1\u03B1\u03C2",
|
||||
months_long:"\u0399\u03B1\u03BD\u03BF\u03C5\u03AC\u03C1\u03B9\u03BF\u03C2,\u03A6\u03B5\u03B2\u03C1\u03BF\u03C5\u03AC\u03C1\u03B9\u03BF\u03C2,\u039C\u03AC\u03C1\u03C4\u03B9\u03BF\u03C2,\u0391\u03C0\u03C1\u03AF\u03BB\u03B9\u03BF\u03C2,\u039C\u03AC\u03B9\u03BF\u03C2,\u0399\u03BF\u03CD\u03BD\u03B9\u03BF\u03C2,\u0399\u03BF\u03CD\u03BB\u03B9\u03BF\u03C2,\u0391\u03CD\u03B3\u03BF\u03C5\u03C3\u03C4\u03BF\u03C2,\u03A3\u03B5\u03C0\u03C4\u03AD\u03BC\u03B2\u03C1\u03B9\u03BF\u03C2,\u039F\u03BA\u03C4\u03CE\u03B2\u03C1\u03B9\u03BF\u03C2,\u039D\u03BF\u03AD\u03BC\u03B2\u03C1\u03B9\u03BF\u03C2,\u0394\u03B5\u03BA\u03AD\u03BC\u03B2\u03C1\u03B9\u03BF\u03C2",
|
||||
months_short:"\u0399\u03B1\u03BD,\u03A6\u03B5\u03B2,\u039C\u03AC\u03C1,\u0391\u03C0\u03C1,\u039C\u03AC\u03B9,\u0399\u03BF\u03CD\u03BD,\u0399\u03BF\u03CD\u03BB,\u0391\u03CD\u03B3,\u03A3\u03B5\u03C0,\u039F\u03BA\u03C4,\u039D\u03BF\u03AD,\u0394\u03B5\u03BA",
|
||||
day_long:"\u039A\u03C5\u03C1\u03B9\u03B1\u03BA\u03AE,\u0394\u03B5\u03C5\u03C4\u03AD\u03C1\u03B1,\u03A4\u03C1\u03AF\u03C4\u03B7,\u03A4\u03B5\u03C4\u03AC\u03C1\u03C4\u03B7,\u03A0\u03AD\u03BC\u03C0\u03C4\u03B7,\u03A0\u03B1\u03C1\u03B1\u03C3\u03BA\u03B5\u03C5\u03AE,\u03A3\u03AC\u03B2\u03B2\u03B1\u03C4\u03BF",
|
||||
day_short:"\u039A\u03C5,\u0394\u03B5,\u03A4\u03C1,\u03A4\u03B5\u03C4,\u03A0\u03AD\u03BC,\u03A0\u03B1\u03C1,\u03A3\u03B1\u03B2"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0395\u03BA\u03C4\u03CD\u03C0\u03C9\u03C3\u03B7"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u039A\u03B1\u03C4\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C0\u03C1\u03BF\u03C2 \u03B4\u03B5\u03BE\u03B9\u03AC",
|
||||
rtl_desc:"\u039A\u03B1\u03C4\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03B4\u03B5\u03BE\u03B9\u03AC \u03C0\u03C1\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BD\u03AD\u03BF\u03C5 layer",
|
||||
forward_desc:"\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03C0\u03C1\u03BF\u03C3\u03BA\u03AE\u03BD\u03B9\u03BF",
|
||||
backward_desc:"\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03B1\u03C3\u03BA\u03AE\u03BD\u03B9\u03BF",
|
||||
absolute_desc:"\u0391\u03C0\u03CC\u03BB\u03C5\u03C4\u03B7/\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AE \u03C4\u03BF\u03C0\u03BF\u03B8\u03AD\u03C4\u03B7\u03C3\u03B7",
|
||||
content:"\u039D\u03AD\u03BF layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7",
|
||||
cancel_desc:"\u0391\u03BA\u03CD\u03C1\u03C9\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03B1\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE non-breaking \u03BA\u03B5\u03BD\u03BF\u03CD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B1"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0395\u03BA\u03C4\u03AD\u03BB\u03B5\u03C3\u03B7 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BF\u03C1\u03B8\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1\u03C2",
|
||||
download:"\u03A4\u03BF ieSpell \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5. \u039D\u03B1 \u03BA\u03B1\u03C4\u03AD\u03B2\u03B5\u03B9 \u03C4\u03CE\u03C1\u03B1 ;"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u039F\u03C1\u03B9\u03B6\u03CC\u03BD\u03C4\u03B9\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u03A3\u03C5\u03BD\u03B1\u03B9\u03C3\u03B8\u03AE\u03BC\u03B1\u03C4\u03B1"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0395\u03CD\u03C1\u03B5\u03C3\u03B7",
|
||||
replace_desc:"\u0395\u03CD\u03C1\u03B5\u03C3\u03B7/\u0391\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE/\u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE/\u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5",
|
||||
delta_width:"50"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"\u03A3\u03C5\u03BD\u03C4\u03BF\u03BC\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1",
|
||||
acronym_desc:"\u0391\u03BA\u03C1\u03BF\u03BD\u03CD\u03BC\u03B9\u03BF",
|
||||
del_desc:"\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE",
|
||||
ins_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE",
|
||||
attribs_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE/\u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B9\u03B4\u03B9\u03BF\u03C4\u03AE\u03C4\u03C9\u03BD"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03A3\u03C4\u03C5\u03BB CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03C9\u03C2 \u03B1\u03C0\u03BB\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF",
|
||||
paste_word_desc:"\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF Word",
|
||||
selectall_desc:"\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03BB\u03C9\u03BD",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 CTRL+V \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03C4\u03B5 \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF.",
|
||||
text_linebreaks:"\u039D\u03B1 \u03BA\u03C1\u03B1\u03C4\u03B7\u03B8\u03BF\u03CD\u03BD \u03C4\u03B1 linebreaks",
|
||||
word_title:"\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 CTRL+V \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03C4\u03B5 \u03B5\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF."
|
||||
},
|
||||
table:{
|
||||
desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03BD\u03AD\u03BF\u03C5 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
row_before_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C0\u03C1\u03B9\u03BD",
|
||||
row_after_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03BC\u03B5\u03C4\u03AC",
|
||||
delete_row_desc:"\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2",
|
||||
col_before_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 \u03C0\u03C1\u03B9\u03BD",
|
||||
col_after_desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2 \u03BC\u03B5\u03C4\u03AC",
|
||||
delete_col_desc:"\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C3\u03C4\u03AE\u03BB\u03B7\u03C2",
|
||||
split_cells_desc:"\u0394\u03B9\u03B1\u03C7\u03C9\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03C3\u03C5\u03B3\u03C7\u03C9\u03BD\u03B5\u03C5\u03BC\u03AD\u03BD\u03C9\u03BD \u03BA\u03B5\u03BB\u03B9\u03CE\u03BD \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
merge_cells_desc:"\u03A3\u03C5\u03B3\u03C7\u03CE\u03BD\u03B5\u03C5\u03C3\u03B7 \u03BA\u03B5\u03BB\u03B9\u03CE\u03BD \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
row_desc:"\u0399\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
cell_desc:"\u0399\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03BA\u03B5\u03BB\u03B9\u03BF\u03CD \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
props_desc:"\u0399\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
paste_row_before_desc:"\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03C0\u03C1\u03B9\u03BD",
|
||||
paste_row_after_desc:"\u0395\u03C0\u03B9\u03BA\u03CC\u03BB\u03BB\u03B7\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03BC\u03B5\u03C4\u03AC",
|
||||
cut_row_desc:"\u0391\u03C0\u03BF\u03BA\u03BF\u03C0\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
copy_row_desc:"\u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
del:"\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1",
|
||||
row:"\u0393\u03C1\u03B1\u03BC\u03BC\u03AE",
|
||||
col:"\u03A3\u03C4\u03AE\u03BB\u03B7",
|
||||
cell:"\u039A\u03B5\u03BB\u03AF",
|
||||
cellprops_delta_width:"60"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u039F\u03B9 \u03B1\u03BB\u03BB\u03B1\u03B3\u03AD\u03C2 \u03C0\u03BF\u03C5 \u03BA\u03AC\u03BD\u03B1\u03C4\u03B5 \u03B8\u03B1 \u03C7\u03B1\u03B8\u03BF\u03CD\u03BD \u03B1\u03BD \u03C6\u03CD\u03B3\u03B5\u03C4\u03B5 \u03C3\u03B5 \u03AC\u03BB\u03BB\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C0\u03BB\u03AE\u03C1\u03BF\u03C5\u03C2 \u03BF\u03B8\u03CC\u03BD\u03B7\u03C2"
|
||||
},
|
||||
media:{
|
||||
desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE/\u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B5\u03BD\u03C3\u03C9\u03BC\u03B1\u03C4\u03C9\u03BC\u03AD\u03BD\u03C9\u03BD media",
|
||||
edit:"\u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03B5\u03BD\u03C3\u03C9\u03BC\u03B1\u03C4\u03C9\u03BC\u03AD\u03BD\u03C9\u03BD media",
|
||||
delta_width:"50"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0399\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03B5\u03B3\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5",
|
||||
delta_width:"140"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03BF\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C0\u03C1\u03CC\u03C4\u03C5\u03C0\u03BF"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u039F\u03C0\u03C4\u03B9\u03BA\u03BF\u03AF \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03B5\u03C2 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5 \u03BD\u03B1\u03B9/\u03CC\u03C7\u03B9."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03BF\u03C1\u03B8\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03BF\u03CD \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5",
|
||||
menu:"\u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03BF\u03C1\u03B8\u03BF\u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03BF\u03CD \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5",
|
||||
ignore_word:"\u03A0\u03B1\u03C1\u03AC\u03B2\u03BB\u03B5\u03C8\u03B7 \u03BB\u03AD\u03BE\u03B7\u03C2",
|
||||
ignore_words:"\u03A0\u03B1\u03C1\u03AC\u03B2\u03BB\u03B5\u03C8\u03B7 \u03CC\u03BB\u03C9\u03BD",
|
||||
langs:"\u0393\u03BB\u03CE\u03C3\u03C3\u03B5\u03C2",
|
||||
wait:"\u03A0\u03B1\u03C1\u03B1\u03BA\u03B1\u03BB\u03CE \u03C0\u03B5\u03C1\u03B9\u03BC\u03AD\u03BD\u03B5\u03C4\u03B5...",
|
||||
sug:"\u03A0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2",
|
||||
no_sug:"\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2",
|
||||
no_mpell:"\u03A3\u03C9\u03C3\u03C4\u03AE \u03BF\u03C1\u03B8\u03BF\u03B3\u03C1\u03C6\u03AF\u03B1."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/en.js
Normal file
170
htdocs/resource2/tinymce/langs/en.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({en:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
172
htdocs/resource2/tinymce/langs/es.js
Normal file
172
htdocs/resource2/tinymce/langs/es.js
Normal file
@ -0,0 +1,172 @@
|
||||
tinyMCE.addI18n({es:{
|
||||
common:{
|
||||
edit_confirm:" \u00BFDesea utilizar el modo WYSIWYG para esta caja de texto?",
|
||||
apply:"Aplicar",
|
||||
insert:"Insertar",
|
||||
update:"Actualizar",
|
||||
cancel:"Cancelar",
|
||||
close:"Cerrar",
|
||||
browse:"Examinar",
|
||||
class_name:"Clase",
|
||||
not_set:"-- Ninguno --",
|
||||
clipboard_msg:"Copiar/Cortar/Pegar no se encuentra disponible en Mozilla y Firefox.\n \u00BFDesea obtener m\u00E1s informaci\u00F3n acerca de este tema?",
|
||||
clipboard_no_support:"Su navegador no soporta las funciones de cortapapeles, use los accesos por teclado.",
|
||||
popup_blocked:"Lo sentimos, su bloqueo de ventanas emergentes ha deshabilitado una ventana que provee funcionalidades a la aplicaci\u00F3n. Necesita deshabilitar este bloqueo en este sitio para poder utilizar todas las funciones.",
|
||||
invalid_data:"Error: Introdujo un valor no v\u00E1lido, est\u00E1n marcados en rojo.",
|
||||
more_colors:"M\u00E1s colores"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alineaci\u00F3n",
|
||||
left:"Izquierda",
|
||||
center:"Centrado",
|
||||
right:"Derecha",
|
||||
full:"Justificado"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insertar fecha",
|
||||
inserttime_desc:"Insertar hora",
|
||||
months_long:"Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre",
|
||||
months_short:"Ene,Feb,Mar,Abr,May,Jun,Jul,Ago,Sep,Oct,Nov,Dic",
|
||||
day_long:"Domingo,Lunes,Martes,Mi\u00E9rcoles,Jueves,Viernes,S\u00E1bado,Domingo",
|
||||
day_short:"Dom,Lun,Mar,Mie,Jue,Vie,Sab,Dom"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimir"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Vista previa"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direcci\u00F3n izquierda a derecha",
|
||||
rtl_desc:"Direcci\u00F3n derecha a izquierda"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insertar nueva capa",
|
||||
forward_desc:"Avanzar",
|
||||
backward_desc:"Retroceder",
|
||||
absolute_desc:"Cambiar a posici\u00F3n absoluta",
|
||||
content:"Nueva capa..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Guardar",
|
||||
cancel_desc:"Cancelar todos los cambios"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insertar caracter de espacio 'non-breaking'"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Corrector ortogr\u00E1fico",
|
||||
download:"No se detect\u00F3 'ieSpell'. \u00BFDesea instalarlo ahora?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Regla horizontal"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emoticones"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Buscar",
|
||||
replace_desc:"Buscar/Reemplazar"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insertar/editar imagen"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insertar/editar hiperv\u00EDnculo"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cita",
|
||||
abbr_desc:"Abreviatura",
|
||||
acronym_desc:"Acr\u00F3nimo",
|
||||
del_desc:"Borrado",
|
||||
ins_desc:"Inserci\u00F3n",
|
||||
attribs_desc:"Insertar/Editar atributos"
|
||||
},
|
||||
style:{
|
||||
desc:"Editar Estilo CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Pegar como texto plano",
|
||||
paste_word_desc:"Pegar desde Word",
|
||||
selectall_desc:"Elegir todo",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V en su teclado para pegar el texto en la ventana.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V en su teclado para pegar el texto en la ventana."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserta una nueva tabla",
|
||||
row_before_desc:"Insertar fila (antes)",
|
||||
row_after_desc:"Insertar fila (despu\u00E9s)",
|
||||
delete_row_desc:"Suprimir fila",
|
||||
col_before_desc:"Insertar columna (antes)",
|
||||
col_after_desc:"Insertar columna (despu\u00E9s)",
|
||||
delete_col_desc:"Suprimir columna",
|
||||
split_cells_desc:"Dividir celdas",
|
||||
merge_cells_desc:"Vincular celdas",
|
||||
row_desc:"Propiedades de la fila",
|
||||
cell_desc:"Propiedades de la celda",
|
||||
props_desc:"Propiedades de la tabla",
|
||||
paste_row_before_desc:"Pegar filas (antes)",
|
||||
paste_row_after_desc:"Pegar filas (despu\u00E9s)",
|
||||
cut_row_desc:"Cortar fila",
|
||||
copy_row_desc:"Copiar fila",
|
||||
del:"Eliminar tabla",
|
||||
row:"Fila",
|
||||
col:"Columna",
|
||||
cell:"Celda"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Los cambios realizados se perder\u00E1n si sale de esta p\u00E1gina.",
|
||||
restore_content:"Reestablecer contenido guardado autom\u00E1ticamente",
|
||||
warning_message:"Se reestablece en contenido guardado, perder\u00E1 todo el contenido que est\u00E1 actualmente en el editor.\n\nEst\u00E1 seguro de que quiere reestablecer el contenido guardado."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Cambiar a modo Pantalla Completa"
|
||||
},
|
||||
media:{
|
||||
desc:"Insertar/editar medio embebido",
|
||||
edit:"Editar medio embebido"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propiedades del documento",
|
||||
delta_width:"Ancho",
|
||||
delta_height:"Alto"
|
||||
},
|
||||
template:{
|
||||
desc:"Insertar contenido de plantilla predefinida"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Caracteres de control ON/OFF."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Cambiar a corrector ortogr\u00E1fico",
|
||||
menu:"Configuraci\u00F3n de corrector ortogr\u00E1fico",
|
||||
ignore_word:"Ignorar",
|
||||
ignore_words:"Ignorar todo",
|
||||
langs:"Idiomas",
|
||||
wait:"Espere...",
|
||||
sug:"Sugerencias",
|
||||
no_sug:"Sin sugerencias",
|
||||
no_mpell:"No se encontraron errores."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insertar fin de p\u00E1gina"
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipo",
|
||||
def:"Preestablecido",
|
||||
lower_alpha:"Menos opaco",
|
||||
lower_greek:"Menos greek",
|
||||
lower_roman:"Menos roman",
|
||||
upper_alpha:"M\u00E1s opaco",
|
||||
upper_roman:"M\u00E1s roman",
|
||||
circle:"Circulo",
|
||||
disc:"Disc",
|
||||
square:"Cuadro"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/et.js
Normal file
170
htdocs/resource2/tinymce/langs/et.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({et:{
|
||||
common:{
|
||||
edit_confirm:"Kas soovite kasutada WYSIWYG re\u017Eiimi sellel tekstialal?",
|
||||
apply:"Rakenda",
|
||||
insert:"Sisesta",
|
||||
update:"Uuenda",
|
||||
cancel:"T\u00FChista",
|
||||
close:"Sule",
|
||||
browse:"Sirvi",
|
||||
class_name:"Klass",
|
||||
not_set:"-- Seadmata --",
|
||||
clipboard_msg:"Kopeeri/L\u00F5ika/Kleebi ei ole saadaval Mozillas ja Firefoxis.\nKas soovite rohkem infot selle probleemi kohta?",
|
||||
clipboard_no_support:"Hetkel ei ole toetatud Teie lehitseja poolt, kasutage klaviatuuri otseteid selle asemel.",
|
||||
popup_blocked:"Vabandust, aga Teie h\u00FCpikakna t\u00F5kestaja on blokeerinud akna, mis varustab rakenduse funktsionaalsust. Palun lubage h\u00FCpikaknad sellel kodulehel, et t\u00E4ielikult kasutada seda vahendit.",
|
||||
invalid_data:"Viga: Kehtetud v\u00E4\u00E4rtused sisestatud, need on m\u00E4rgitud punasega.",
|
||||
more_colors:"Rohkem v\u00E4rve"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Joondus",
|
||||
left:"Vasak",
|
||||
center:"Kesk",
|
||||
right:"Parem",
|
||||
full:"T\u00E4is"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%A-%k-%p",
|
||||
time_fmt:"%T:%M:%S",
|
||||
insertdate_desc:"Sisesta kuup\u00E4ev",
|
||||
inserttime_desc:"Sisesta aeg",
|
||||
months_long:"Jaanuar,Veebruar,M\u00E4rts,Aprill,Mai,Juuni,Juuli,August,September,Oktoober,November,Detsember",
|
||||
months_short:"Jaan,Veeb,M\u00E4rts,Apr,Mai,Juuni,Juuli,Aug,Sept,Okt,Nov,Dets",
|
||||
day_long:"P\u00FChap\u00E4ev,Esmasp\u00E4ev,Teisip\u00E4ev,Kolmap\u00E4ev,Neljap\u00E4ev,Reede,Laup\u00E4ev,P\u00FChap\u00E4ev",
|
||||
day_short:"P,E,T,K,N,R,L,P"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Eelvaade"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Suund vasakult paremale",
|
||||
rtl_desc:"Suund paremalt vasakule"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Sisesta uus kiht",
|
||||
forward_desc:"Liiguta edasi",
|
||||
backward_desc:"Liiguta tagasi",
|
||||
absolute_desc:"L\u00FClita \u00FCmber absoluutne positsioneerimine",
|
||||
content:"Uus kiht..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Salvesta",
|
||||
cancel_desc:"T\u00FChista k\u00F5ik muudatused"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Sisesta mittekatkestav t\u00FChik"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u00D5igekirja kontroll",
|
||||
download:"ie\u00D5igekiri tuvastamata. Kas soovite paigaldada n\u00FC\u00FCd?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontaalne joonlaud"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotsioonid"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Otsi",
|
||||
replace_desc:"Otsi/Asenda"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Sisesta/redigeeri pilt"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Sisesta/redigeeri link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Tsitaat",
|
||||
abbr_desc:"L\u00FChend",
|
||||
acronym_desc:"Akron\u00FC\u00FCm",
|
||||
del_desc:"Kustutus",
|
||||
ins_desc:"Lisandus",
|
||||
attribs_desc:"Sisesta muuda atribuute"
|
||||
},
|
||||
style:{
|
||||
desc:"Redigeeri CSS stiili"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Kleebi tavalise tekstina",
|
||||
paste_word_desc:"Kleebi Wordist",
|
||||
selectall_desc:"Vali k\u00F5ik",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.",
|
||||
text_linebreaks:"J\u00E4ta reavahetused",
|
||||
word_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks."
|
||||
},
|
||||
table:{
|
||||
desc:"Sisestab uue tabeli",
|
||||
row_before_desc:"Sisesta rida ette",
|
||||
row_after_desc:"Sisesta rida j\u00E4rgi",
|
||||
delete_row_desc:"Kustuta rida",
|
||||
col_before_desc:"Sisesta veerg ette",
|
||||
col_after_desc:"Sisesta veerg j\u00E4rgi",
|
||||
delete_col_desc:"Kustuta veerg",
|
||||
split_cells_desc:"Eralda \u00FChendatud tabeli lahtrid",
|
||||
merge_cells_desc:"\u00DChenda tabeli lahtrid",
|
||||
row_desc:"Tabeli rea omadused",
|
||||
cell_desc:"Tabeli lahtri omadused",
|
||||
props_desc:"Tabeli omadused",
|
||||
paste_row_before_desc:"Kleebi tabeli rida ette",
|
||||
paste_row_after_desc:"Kleebi tabeli rida j\u00E4rgi",
|
||||
cut_row_desc:"L\u00F5ika tabeli rida",
|
||||
copy_row_desc:"Kopeeri tabeli rida",
|
||||
del:"Kustuta tabel",
|
||||
row:"Rida",
|
||||
col:"Veerg",
|
||||
cell:"Lahter"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Tehtud muudatused kaovad, kui lahkute siit lehelt.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"L\u00FClita \u00FCmber t\u00E4isekraani re\u017Eiim"
|
||||
},
|
||||
media:{
|
||||
desc:"Sisesta / redigeeri manustatud meedia",
|
||||
edit:"Redigeeri manustatud meedia"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumendi omadused"
|
||||
},
|
||||
template:{
|
||||
desc:"Sisesta eeldefineeritud \u0161ablooni sisu"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visuaalsed kontrollt\u00E4hem\u00E4rgid sisse/v\u00E4lja"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"L\u00FClita \u00FCmber \u00F5igekirja kontroll",
|
||||
menu:"\u00D5igekirja kontrolli seaded",
|
||||
ignore_word:"J\u00E4ta s\u00F5na vahele",
|
||||
ignore_words:"J\u00E4ra k\u00F5ik vahele",
|
||||
langs:"Keeled",
|
||||
wait:"Palun oota...",
|
||||
sug:"Soovitused",
|
||||
no_sug:"Soovitusi pole",
|
||||
no_mpell:"Valesti kirjutamisi ei leitud."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Sisesta lehevahetus."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
206
htdocs/resource2/tinymce/langs/eu.js
Normal file
206
htdocs/resource2/tinymce/langs/eu.js
Normal file
@ -0,0 +1,206 @@
|
||||
tinyMCE.addI18n({eu:{
|
||||
common:{
|
||||
edit_confirm:"Testu-kutxa hau WYSIWYG editorea izatea nahi duzu?",
|
||||
apply:"Aplikatu",
|
||||
insert:"Txertatu",
|
||||
update:"Eguneratu",
|
||||
cancel:"Utzi",
|
||||
close:"Itxi",
|
||||
browse:"Arakatu",
|
||||
class_name:"Klasea",
|
||||
not_set:"-- Bat ere ez --",
|
||||
clipboard_msg:"Kopiatu/Ebaki/Itsatsi ez dago Mozilla eta Firefoxen.\nHonen inguruko informazioa nahi duzu??",
|
||||
clipboard_no_support:"Zure nabigatzailean ez dabil, erabili teklatuko laster-teklak honetarako..",
|
||||
popup_blocked:"Ups, zure popup blokeatzaileak funtzionalitate bat eskaintzen duen leihoa blokeatu du. Blokeatzailea desgaitu beharko duzu tresna hau erabiltzeko.",
|
||||
invalid_data:"Errorea: baliogabeak diren aukerak sartu dituzu, gorriz agertzen dira.",
|
||||
more_colors:"Kolore gehiago"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alineazioa",
|
||||
left:"Ezkerrean",
|
||||
center:"Zentratuta",
|
||||
right:"Eskuinean",
|
||||
full:"Justifikatuta"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Data txertatu",
|
||||
inserttime_desc:"Ordua txertatu",
|
||||
months_long:"Urtarrila,Otsaila,Martxoa,Apirila,Maiatza,Ekaina,Uztaila,Abuztua,Iraila,Urria,Azaroa,Abendua",
|
||||
months_short:"Urt,Ots,Mar,Api,Mai,Eka,Uzt,Abu,Ira,Urr,Aza,Abe",
|
||||
day_long:"Igandea,Astelehena,Asteartea,Asteazkena,Osteguna,Ostirala,Larunbata,Igandea",
|
||||
day_short:"Ig,Al,As,Az,Og,Or,Lr,Ig"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Inprimatu"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Aurreikusi"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Ezkerretik eskumara",
|
||||
rtl_desc:"Eskuinatik ezkerrera"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Kapa berria txertatu",
|
||||
forward_desc:"Aurrera joan",
|
||||
backward_desc:"Atzera joan",
|
||||
absolute_desc:"Posizionatze-absolutua aktibatu/desaktibatu",
|
||||
content:"Kapa berria..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Gorde",
|
||||
cancel_desc:"Aldaketak bertan behera utzi"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Espazioa txertatu"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Hizkuntza zuzendu",
|
||||
download:"ieSpell ez da aurkitu. Instalatu egin nahi duzu?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Marra horizontala",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Ikonotxoak",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Bilatu",
|
||||
replace_desc:"Bilatu/Ordeztu",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Irudia txertatu/editatu",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Lotura txertatu/editatu",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Zita",
|
||||
abbr_desc:"Laburdura",
|
||||
acronym_desc:"Akronimoa",
|
||||
del_desc:"Ezabaketa",
|
||||
ins_desc:"Txertaketa",
|
||||
attribs_desc:"Atributuak txertatu/editatu",
|
||||
cite_delta_width:"Ziten zabalera",
|
||||
cite_delta_height:"Ziten altuera",
|
||||
abbr_delta_width:"Laburduren zabalera",
|
||||
abbr_delta_height:"Laburduren altuera",
|
||||
acronym_delta_width:"Akronimoen zabalera",
|
||||
acronym_delta_height:"Akronimoen altuera",
|
||||
del_delta_width:"Ezabaketaren zabalera",
|
||||
del_delta_height:"Ezabaketaren altuera",
|
||||
ins_delta_width:"Txertaketaren zabalera",
|
||||
ins_delta_height:"Txertaketaren altuera",
|
||||
attribs_delta_width:"Atributuen zabalera",
|
||||
attribs_delta_height:"Atributuen altuera"
|
||||
},
|
||||
style:{
|
||||
desc:"Aldatu CSS estiloa",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Testu gisa itsatsi",
|
||||
paste_word_desc:"Word-etik itsatsi",
|
||||
selectall_desc:"Aukeratu guztia",
|
||||
plaintext_mode_sticky:"Itsasketa testu moduan dago orain. Egin klik itsasketa arruntera itzultzeko. Zerbait itsatsi ostean, modu arruntera pasatuko zara automatikoki.",
|
||||
plaintext_mode:"Itsasketa testu moduan dago orain. Egin klik itsasketa arruntera itzultzeko."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Erabili CTRL+V testua lehioan itsasteko.",
|
||||
text_linebreaks:"Mantendu lerro-jauziak",
|
||||
word_title:"Erabili CTRL+V testua lehioan itsasteko."
|
||||
},
|
||||
table:{
|
||||
desc:"Taula berri bat txertatu",
|
||||
row_before_desc:"Txertatu lerroa aurretik",
|
||||
row_after_desc:"Txertatu lerroa ondoren",
|
||||
delete_row_desc:"Ezabatu lerroa",
|
||||
col_before_desc:"Txertatu zutabea aurretik",
|
||||
col_after_desc:"Txertatu zutabea ondoren",
|
||||
delete_col_desc:"Ezabatu zutabea",
|
||||
split_cells_desc:"Banatu bateratutako gelaxkak",
|
||||
merge_cells_desc:"Bateratu gelaxkak",
|
||||
row_desc:"Lerro ezaugarriak",
|
||||
cell_desc:"Gelaxka ezaugarriak",
|
||||
props_desc:"Taula ezaugarriak",
|
||||
paste_row_before_desc:"Itsatsi lerroa aurretik",
|
||||
paste_row_after_desc:"Itsatsi lerroa ondoren",
|
||||
cut_row_desc:"Moztu lerroa",
|
||||
copy_row_desc:"Kopiatu lerroa",
|
||||
del:"Ezabatu taula",
|
||||
row:"Lerroa",
|
||||
col:"Zutabea",
|
||||
cell:"Gelaxka",
|
||||
rowprops_delta_width:"Lerroen propietateen zabalera",
|
||||
rowprops_delta_height:"Lerroen propietateen altuera",
|
||||
cellprops_delta_width:"Gelaxken propietateen zabalera",
|
||||
cellprops_delta_height:"Gelaxken propietateen altuera",
|
||||
table_delta_width:"Taularen zabalera",
|
||||
table_delta_height:"Taularen altuera",
|
||||
merge_cells_delta_width:"Gelaxkak batzearen zabalera",
|
||||
merge_cells_delta_height:"Gelaxkak batzearen altuera"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Egindako aldaketak galdu egingo dira orri honetatik kanpona nabigatzen baldin baduzu.",
|
||||
restore_content:"Automatikoki gordetako edukia errekuperatu.",
|
||||
warning_message:"Gordetako edukia errekuperatzen baduzu, orain editorean dagoena galdu egingo duzu.\n\nZiur zaude gordetakoa errekuperatzea nahi duzula?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Aldatu pantaila osoko modura"
|
||||
},
|
||||
media:{
|
||||
desc:"Sartu / editatu ahokatutako euskarria",
|
||||
edit:"Editatu ahokatutako euskarria",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumentuaren ezaugarriak",
|
||||
delta_width:"Zabalera",
|
||||
delta_height:"Altuera"
|
||||
},
|
||||
template:{
|
||||
desc:"Txertatu aurredefinitutako txantiloiaren edukia"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Begi kontrol karaktereak gaitu/ezgaitu."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Ortografia zuzentzaile modura aldatu",
|
||||
menu:"Ortografia zuzentzailearen doikuntza",
|
||||
ignore_word:"Ezikusi hitza",
|
||||
ignore_words:"Ezikusi guztiak",
|
||||
langs:"Hizkuntzak",
|
||||
wait:"Itxaron mesedez...",
|
||||
sug:"Gomendioa",
|
||||
no_sug:"Gomendiorik ez",
|
||||
no_mpell:"Ez da akatsik aurkitu"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Txertatu orri jauzia."
|
||||
},
|
||||
advlist:{
|
||||
types:"Motak",
|
||||
def:"Lehenetsiak",
|
||||
lower_alpha:"Hizki xeheak",
|
||||
lower_greek:"Hizki greko xeheak",
|
||||
lower_roman:"Zenbaki erromatar xeheak",
|
||||
upper_alpha:"Hizki larriak",
|
||||
upper_roman:"Zenbaki erromatar larriak",
|
||||
circle:"Borobila",
|
||||
disc:"Diskoa",
|
||||
square:"Karratua"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/fa.js
Normal file
170
htdocs/resource2/tinymce/langs/fa.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({fa:{
|
||||
common:{
|
||||
edit_confirm:"\u0622\u06CC\u0627 \u0634\u0645\u0627 \u0645\u0627\u06CC\u0644\u06CC\u062F \u062A\u0627 \u0627\u0632 \u062D\u0627\u0644\u062A \u0648\u06CC\u0631\u0627\u06CC\u0634\u06AF\u0631 \u0648\u06CC\u0632\u06CC\u200C\u0648\u06CC\u06AF(\u0646\u0645\u0627\u06CC\u0634 \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u062F\u0631 \u062D\u0627\u0644\u062A \u0686\u0627\u067E \u0634\u062F\u0646\u06CC) \u0628\u0631\u0627\u06CC \u0627\u06CC\u0646 \u0646\u0627\u062D\u06CC\u0647 \u0645\u062A\u0646\u06CC \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F\u061F",
|
||||
apply:"\u0628\u06A9\u0627\u0631\u06AF\u06CC\u0631\u06CC",
|
||||
insert:"\u062F\u0631\u062C",
|
||||
update:"\u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06CC",
|
||||
cancel:"\u0627\u0646\u0635\u0631\u0627\u0641",
|
||||
close:"\u0628\u0633\u062A\u0646",
|
||||
browse:"\u0627\u0646\u062A\u062E\u0627\u0628 \u0627\u0632 \u0633\u0631\u0648\u0631",
|
||||
class_name:"\u06A9\u0644\u0627\u0633",
|
||||
not_set:"-- \u062A\u0646\u0638\u06CC\u0645 \u0646\u0634\u062F\u0647 --",
|
||||
clipboard_msg:"\u0628\u0631\u0634/\u06A9\u067E\u06CC/\u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0628\u0631\u0627\u06CC \u0645\u0631\u0648\u0631\u06AF\u0631 \u0641\u0627\u06CC\u0631\u0641\u0627\u06A9\u0633 \u0641\u0639\u0627\u0644 \u0646\u0645\u06CC \u0628\u0627\u0634\u062F. \n\u0622\u06CC\u0627 \u0627\u0637\u0644\u0627\u0639\u0627\u062A \u0628\u06CC\u0634\u062A\u0631\u06CC \u0631\u0627\u062C\u0639 \u0628\u0647 \u0627\u06CC\u0646 \u0645\u0648\u0636\u0648\u0639 \u0645\u06CC \u062E\u0648\u0627\u0647\u06CC\u062F\u061F",
|
||||
clipboard_no_support:"\u062F\u0631 \u062D\u0627\u0644 \u062D\u0627\u0636\u0631 \u062A\u0648\u0633\u0637 \u0645\u0631\u0648\u0631\u06AF\u0631 \u0634\u0645\u0627 \u067E\u0634\u062A\u06CC\u0628\u0627\u0646\u06CC \u0646\u0645\u06CC \u0634\u0648\u062F \u060C \u0628\u0647 \u062C\u0627\u06CC \u0622\u0646 \u0627\u0632 \u0645\u06CC\u0627\u0646\u0628\u0631\u0647\u0627\u06CC (Shortcut) \u0635\u0641\u062D\u0647 \u06A9\u0644\u06CC\u062F \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F.",
|
||||
popup_blocked:"\u0628\u0627 \u0639\u0631\u0636 \u067E\u0648\u0632\u0634 \u060C \u0645\u0627 \u0627\u0637\u0644\u0627\u0639 \u062F\u0627\u062F\u0647 \u0628\u0648\u062F\u06CC\u0645 \u06A9\u0647 \u0645\u062F\u0627\u0641\u0639 \u067E\u0646\u062C\u0631\u0647 \u0628\u0627\u0632 \u0634\u0648\u06CC (Popup) \u0634\u0645\u0627 \u060C \u067E\u0646\u062C\u0631\u0647 \u0627\u06CC \u0631\u0627 \u06A9\u0647 \u0642\u0627\u0628\u0644\u06CC\u062A \u0628\u0631\u0646\u0627\u0645\u0647 \u06A9\u0627\u0631\u0628\u0631\u062F\u06CC \u0631\u0627 \u0627\u0631\u0627\u0626\u0647 \u0645\u06CC \u06A9\u0631\u062F \u060C \u063A\u06CC\u0631 \u0641\u0639\u0627\u0644 \u06A9\u0631\u062F\u0647 \u0627\u0633\u062A. \u0634\u0645\u0627 \u0646\u06CC\u0627\u0632 \u0628\u0647 \u063A\u06CC\u0631 \u0641\u0639\u0627\u0644 \u06A9\u0631\u062F\u0646 \u0645\u062F\u0627\u0641\u0639 \u067E\u0646\u062C\u0631\u0647 \u0628\u0627\u0632 \u0634\u0648 (Popup) \u062F\u0631 \u0627\u06CC\u0646 \u0633\u0627\u06CC\u062A \u0631\u0627 \u062F\u0627\u0631\u06CC\u062F \u062A\u0627 \u0627\u0632 \u0627\u06CC\u0646 \u0627\u0628\u0632\u0627\u0631 \u0628\u0647 \u0635\u0648\u0631\u062A \u06A9\u0627\u0645\u0644 \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F.",
|
||||
invalid_data:"\u062E\u0637\u0627: \u0645\u0642\u0627\u062F\u06CC\u0631 \u0646\u0627\u0645\u0639\u062A\u0628\u0631 \u0648\u0627\u0631\u062F \u0634\u062F \u060C \u0622\u0646\u0647\u0627 \u0628\u0647 \u0631\u0646\u06AF \u0642\u0631\u0645\u0632 \u0639\u0644\u0627\u0645\u062A \u062E\u0648\u0631\u062F\u0647 \u0627\u0646\u062F.",
|
||||
more_colors:"\u0631\u0646\u06AF \u0647\u0627\u06CC \u0628\u06CC\u0634\u062A\u0631"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u062A\u0631\u0627\u0632",
|
||||
left:"\u0686\u067E",
|
||||
center:"\u0648\u0633\u0637",
|
||||
right:"\u0631\u0627\u0633\u062A",
|
||||
full:"\u06A9\u0627\u0645\u0644"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u062F\u0631\u062C \u062A\u0627\u0631\u06CC\u062E",
|
||||
inserttime_desc:"\u062F\u0631\u062C \u0632\u0645\u0627\u0646",
|
||||
months_long:"\u0698\u0627\u0646\u0648\u06CC\u0647,\u0641\u0648\u0631\u06CC\u0647,\u0645\u0627\u0631\u0633,\u0622\u0648\u0631\u06CC\u0644,\u0645\u0647,\u0698\u0648\u0626\u0646,\u0698\u0648\u0626\u06CC\u0647,\u0627\u0648\u062A,\u0633\u067E\u062A\u0627\u0645\u0628\u0631,\u0627\u06A9\u062A\u0628\u0631,\u0646\u0648\u0627\u0645\u0628\u0631,\u062F\u0633\u0627\u0645\u0628\u0631",
|
||||
months_short:"\u0698\u0627\u0646\u0648\u06CC\u0647,\u0641\u0648\u0631\u06CC\u0647,\u0645\u0627\u0631\u0633,\u0622\u0648\u0631\u06CC\u0644,\u0645\u0647,\u0698\u0648\u0626\u0646,\u0698\u0648\u0626\u06CC\u0647,\u0627\u0648\u062A,\u0633\u067E\u062A\u0627\u0645\u0628\u0631,\u0627\u06A9\u062A\u0628\u0631,\u0646\u0648\u0627\u0645\u0628\u0631,\u062F\u0633\u0627\u0645\u0628\u0631",
|
||||
day_long:"\u06CC\u06A9\u0634\u0646\u0628\u0647,\u062F\u0648\u0634\u0646\u0628\u0647,\u0633\u0647 \u0634\u0646\u0628\u0647,\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647,\u067E\u0646\u062C \u0634\u0646\u0628\u0647,\u062C\u0645\u0639\u0647,\u0634\u0646\u0628\u0647,\u06CC\u06A9\u0634\u0646\u0628\u0647",
|
||||
day_short:"\u06CC\u06A9\u0634\u0646\u0628\u0647,\u062F\u0648\u0634\u0646\u0628\u0647,\u0633\u0647 \u0634\u0646\u0628\u0647,\u0686\u0647\u0627\u0631\u0634\u0646\u0628\u0647,\u067E\u0646\u062C \u0634\u0646\u0628\u0647,\u062C\u0645\u0639\u0647,\u0634\u0646\u0628\u0647,\u06CC\u06A9\u0634\u0646\u0628\u0647"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0686\u0627\u067E"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u067E\u06CC\u0634 \u0646\u0645\u0627\u06CC\u0634"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u062C\u0647\u062A \u0686\u067E \u0628\u0647 \u0631\u0627\u0633\u062A",
|
||||
rtl_desc:"\u062C\u0647\u062A \u0631\u0627\u0633\u062A \u0628\u0647 \u0686\u067E"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u062F\u0631\u062C \u0644\u0627\u06CC\u0647 \u062C\u062F\u06CC\u062F",
|
||||
forward_desc:"\u0627\u0646\u062A\u0642\u0627\u0644 \u0628\u0647 \u062C\u0644\u0648",
|
||||
backward_desc:"\u0627\u0646\u062A\u0642\u0627\u0644 \u0628\u0647 \u067E\u0634\u062A",
|
||||
absolute_desc:"\u062A\u0639\u0648\u06CC\u0636 \u0645\u0648\u0642\u0639\u06CC\u062A \u0645\u0637\u0644\u0642",
|
||||
content:"\u0644\u0627\u06CC\u0647 \u062C\u062F\u06CC\u062F..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0630\u062E\u06CC\u0631\u0647",
|
||||
cancel_desc:"\u0644\u063A\u0648 \u062A\u0645\u0627\u0645\u06CC \u062A\u063A\u06CC\u06CC\u0631\u0627\u062A"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u062F\u0631\u062C \u06A9\u0627\u0631\u0627\u06A9\u062A\u0631 \u0641\u0627\u0635\u0644\u0647 \u0628\u062F\u0648\u0646 \u0642\u0637\u0639 \u0634\u062F\u06AF\u06CC"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0627\u062C\u0631\u0627\u06CC \u0628\u0631\u0631\u0633\u06CC \u0627\u0645\u0644\u0627\u0621",
|
||||
download:"ieSpell \u062A\u0634\u062E\u06CC\u0635 \u062F\u0627\u062F\u0647 \u0646\u0634\u062F. \u0622\u06CC\u0627 \u0634\u0645\u0627 \u0645\u0627\u06CC\u0644 \u0628\u0647 \u0646\u0635\u0628 \u0622\u0646 \u0647\u0633\u062A\u06CC\u062F\u061F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u062E\u0637 \u0627\u0641\u0642\u06CC"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0634\u06A9\u0644\u06A9"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u062C\u0633\u062A\u062C\u0648",
|
||||
replace_desc:"\u062C\u0633\u062A\u062C\u0648/\u062A\u0639\u0648\u06CC\u0636"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u062F\u0631\u062C/\u0648\u06CC\u0631\u0627\u06CC\u0634 \u062A\u0635\u0648\u06CC\u0631"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u062F\u0631\u062C/\u0648\u06CC\u0631\u0627\u06CC\u0634 \u0644\u06CC\u0646\u06A9"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0646\u0642\u0644 \u0642\u0648\u0644",
|
||||
abbr_desc:"\u0627\u062E\u062A\u0635\u0627\u0631",
|
||||
acronym_desc:"\u0645\u062E\u0641\u0641",
|
||||
del_desc:"\u062D\u0630\u0641",
|
||||
ins_desc:"\u062F\u0631\u062C",
|
||||
attribs_desc:"\u062F\u0631\u062C/\u0648\u06CC\u0631\u0627\u06CC\u0634 \u0635\u0641\u0627\u062A"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0648\u06CC\u0631\u0627\u06CC\u0634 \u0627\u0633\u062A\u06CC\u0644 CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0645\u062A\u0646 \u0633\u0627\u062F\u0647",
|
||||
paste_word_desc:"\u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0627\u0632 \u0648\u064F\u0631\u062F",
|
||||
selectall_desc:"\u0627\u0646\u062A\u062E\u0627\u0628 \u0647\u0645\u0647",
|
||||
plaintext_mode_sticky:"\u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0645\u062A\u0646 \u062F\u0631 \u062D\u0627\u0644\u062A \u0633\u0627\u062F\u0647 \u0627\u0633\u062A. \u0628\u0631\u0627\u06CC \u0628\u0631\u06AF\u0634\u062A \u0628\u0647 \u062D\u0627\u0644\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0628\u0627\u0642\u0627\u0639\u062F\u0647 \u062F\u0648\u0628\u0627\u0631\u0647 \u06A9\u0644\u06CC\u06A9 \u06A9\u0646\u06CC\u062F. \u0628\u0639\u062F \u0627\u0632 \u0627\u06CC\u0646\u06A9\u0647 \u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0631\u0627 \u0627\u0646\u062C\u0627\u0645 \u062F\u0627\u062F\u06CC\u062F \u0628\u0647 \u062D\u0627\u0644\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0628\u0627\u0642\u0627\u0639\u062F\u0647 \u0628\u0627\u0632 \u0645\u06CC \u06AF\u0631\u062F\u06CC\u062F.",
|
||||
plaintext_mode:"\u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0645\u062A\u0646 \u062F\u0631 \u062D\u0627\u0644\u062A \u0633\u0627\u062F\u0647 \u0627\u0633\u062A. \u0628\u0631\u0627\u06CC \u0628\u0631\u06AF\u0634\u062A \u0628\u0647 \u062D\u0627\u0644\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0628\u0627\u0642\u0627\u0639\u062F\u0647 \u062F\u0648\u0628\u0627\u0631\u0647 \u06A9\u0644\u06CC\u06A9 \u06A9\u0646\u06CC\u062F."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u062C\u0647\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0645\u062A\u0646 \u062F\u0631 \u067E\u0646\u062C\u0631\u0647 \u0627\u0632 CTRL+V \u0628\u0631 \u0631\u0648\u06CC \u0635\u0641\u062D\u0647 \u06A9\u0644\u06CC\u062F \u062E\u0648\u062F \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F.",
|
||||
text_linebreaks:"\u062D\u0641\u0638 \u0642\u0637\u0639 \u062E\u0637\u0648\u0637",
|
||||
word_title:"\u062C\u0647\u062A \u0686\u0633\u0628\u0627\u0646\u062F\u0646 \u0645\u062A\u0646 \u062F\u0631 \u067E\u0646\u062C\u0631\u0647 \u0627\u0632 CTRL+V \u0628\u0631 \u0631\u0648\u06CC \u0635\u0641\u062D\u0647 \u06A9\u0644\u06CC\u062F \u062E\u0648\u062F \u0627\u0633\u062A\u0641\u0627\u062F\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F."
|
||||
},
|
||||
table:{
|
||||
desc:"\u06CC\u06A9 \u062C\u062F\u0648\u0644 \u062C\u062F\u06CC\u062F \u062F\u0631\u062C \u0645\u06CC \u06A9\u0646\u062F",
|
||||
row_before_desc:"\u062F\u0631\u062C \u0633\u0637\u0631 \u062F\u0631 \u0642\u0628\u0644",
|
||||
row_after_desc:"\u062F\u0631\u062C \u0633\u0637\u0631 \u062F\u0631 \u0628\u0639\u062F",
|
||||
delete_row_desc:"\u062D\u0630\u0641 \u0633\u0637\u0631",
|
||||
col_before_desc:"\u062F\u0631\u062C \u0633\u062A\u0648\u0646 \u062F\u0631 \u0642\u0628\u0644",
|
||||
col_after_desc:"\u062F\u0631\u062C \u0633\u062A\u0648\u0646 \u062F\u0631 \u0628\u0639\u062F",
|
||||
delete_col_desc:"\u062D\u0630\u0641 \u0633\u062A\u0648\u0646",
|
||||
split_cells_desc:"\u062A\u0642\u0633\u06CC\u0645 \u0633\u0644\u0648\u0644 \u0647\u0627\u06CC \u062C\u062F\u0648\u0644 \u0627\u062F\u063A\u0627\u0645 \u0634\u062F\u0647",
|
||||
merge_cells_desc:"\u0627\u062F\u063A\u0627\u0645 \u0633\u0644\u0648\u0644 \u0647\u0627\u06CC \u062C\u062F\u0648\u0644",
|
||||
row_desc:"\u0645\u0634\u062E\u0635\u0627\u062A \u0633\u0637\u0631 \u062C\u062F\u0648\u0644",
|
||||
cell_desc:"\u0645\u0634\u062E\u0635\u0627\u062A \u0633\u0644\u0648\u0644 \u062C\u062F\u0648\u0644",
|
||||
props_desc:"\u0645\u0634\u062E\u0635\u0627\u062A \u062C\u062F\u0648\u0644",
|
||||
paste_row_before_desc:"\u0686\u0633\u0628\u0627\u0646\u062F\u0646 (Paste) \u0633\u0637\u0631 \u062C\u062F\u0648\u0644 \u062F\u0631 \u0642\u0628\u0644",
|
||||
paste_row_after_desc:"\u0686\u0633\u0628\u0627\u0646\u062F\u0646 (Paste) \u0633\u0637\u0631 \u062C\u062F\u0648\u0644 \u062F\u0631 \u0628\u0639\u062F",
|
||||
cut_row_desc:"\u0628\u0631\u0634 (Cut) \u0633\u0637\u0631 \u062C\u062F\u0648\u0644",
|
||||
copy_row_desc:"\u06A9\u067E\u06CC \u0633\u0637\u0631 \u062C\u062F\u0648\u0644",
|
||||
del:"\u062D\u0630\u0641 \u062C\u062F\u0648\u0644",
|
||||
row:"\u0633\u0637\u0631",
|
||||
col:"\u0633\u062A\u0648\u0646",
|
||||
cell:"\u0633\u0644\u0648\u0644"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u0627\u06AF\u0631 \u0627\u0632 \u0627\u06CC\u0646 \u0635\u0641\u062D\u0647 \u0628\u0647 \u062C\u0627\u06CC \u062F\u06CC\u06AF\u0631\u06CC \u0628\u0631\u0648\u06CC\u062F \u060C \u062A\u063A\u06CC\u06CC\u0631\u0627\u062A \u062F\u0631 \u0645\u062D\u062A\u0648\u0627 \u0627\u0632 \u062F\u0633\u062A \u062E\u0648\u0627\u0647\u062F \u0631\u0641\u062A.",
|
||||
restore_content:"\u0628\u0627\u0632\u06AF\u0631\u062F\u0627\u0646\u06CC \u0645\u062D\u062A\u0648\u0627 \u0627\u0632 \u0630\u062E\u06CC\u0631\u0647\u200C\u06CC \u062E\u0648\u062F\u06A9\u0627\u0631",
|
||||
warning_message:"\u0627\u06AF\u0631 \u0645\u062D\u062A\u0648\u0627\u06CC \u0630\u062E\u06CC\u0631\u0647 \u0634\u062F\u0647 \u0631\u0627 \u0628\u0627\u0632\u06CC\u0627\u0628\u06CC \u06A9\u0646\u06CC\u062F\u060C \u0645\u062D\u062A\u0648\u0627\u06CC \u0645\u0648\u062C\u0648\u062F \u062F\u0631 \u0648\u06CC\u0631\u0627\u06CC\u0634\u06AF\u0631 \u0627\u0632 \u0628\u06CC\u0646 \u0645\u06CC\u200C\u0631\u0648\u062F.\u0628\u0631\u0627\u06CC \u0628\u0627\u0632\u06CC\u0627\u0628\u06CC \u0645\u062D\u062A\u0648\u0627\u06CC \u0630\u062E\u06CC\u0631\u0647 \u0627\u0637\u0645\u06CC\u0646\u0627\u0646 \u062F\u0627\u0631\u06CC\u062F\u061F."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u062A\u0639\u0648\u06CC\u0636 \u0628\u0647 \u062D\u0627\u0644\u062A \u0635\u0641\u062D\u0647 \u06A9\u0627\u0645\u0644"
|
||||
},
|
||||
media:{
|
||||
desc:"\u062F\u0631\u062C / \u0648\u06CC\u0631\u0627\u06CC\u0634 \u0631\u0633\u0627\u0646\u0647 \u062C\u0627\u0633\u0627\u0632\u06CC \u0634\u062F\u0647 (Embeded Media)",
|
||||
edit:"\u0648\u06CC\u0631\u0627\u06CC\u0634 \u0631\u0633\u0627\u0646\u0647 \u062C\u0627\u0633\u0627\u0632\u06CC \u0634\u062F\u0647 (Embeded Media)"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0645\u0634\u062E\u0635\u0627\u062A \u0633\u0646\u062F"
|
||||
},
|
||||
template:{
|
||||
desc:"\u062F\u0631\u062C \u0645\u062D\u062A\u0648\u0627\u06CC \u0642\u0627\u0644\u0628 \u0627\u0632 \u067E\u06CC\u0634 \u062A\u0639\u0631\u06CC\u0641 \u0634\u062F\u0647"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0631\u0648\u0634\u0646/\u062E\u0627\u0645\u0648\u0634 \u06A9\u0631\u062F\u0646 \u06A9\u0627\u0631\u0627\u06A9\u062A\u0631 \u0647\u0627\u06CC \u06A9\u0646\u062A\u0631\u0644 \u0628\u0635\u0631\u06CC (Visual)."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u062A\u0639\u0648\u06CC\u0636 \u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u0646\u062F\u0647 \u0627\u0645\u0644\u0627\u0621",
|
||||
menu:"\u062A\u0646\u0638\u06CC\u0645\u0627\u062A \u0628\u0631\u0631\u0633\u06CC \u06A9\u0646\u0646\u062F\u0647 \u0627\u0645\u0644\u0627\u0621",
|
||||
ignore_word:"\u0686\u0634\u0645 \u067E\u0648\u0634\u06CC \u0627\u0632 \u06A9\u0644\u0645\u0647",
|
||||
ignore_words:"\u0686\u0634\u0645 \u067E\u0648\u0634\u06CC \u0627\u0632 \u0647\u0645\u0647",
|
||||
langs:"\u0632\u0628\u0627\u0646 \u0647\u0627",
|
||||
wait:"\u0644\u0637\u0641\u0627 \u0645\u0646\u062A\u0638\u0631 \u0628\u0645\u0627\u0646\u06CC\u062F...",
|
||||
sug:"\u067E\u06CC\u0634\u0646\u0647\u0627\u062F\u0627\u062A",
|
||||
no_sug:"\u0628\u062F\u0648\u0646 \u067E\u06CC\u0634\u0646\u0647\u0627\u062F",
|
||||
no_mpell:"\u0647\u06CC\u0686 \u062E\u0637\u0627\u06CC \u0627\u0645\u0644\u0627\u0626\u06CC \u06CC\u0627\u0641\u062A\u0647 \u0646\u0634\u062F."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u062F\u0631\u062C \u0642\u0637\u0639 \u0635\u0641\u062D\u0647."
|
||||
},
|
||||
advlist:{
|
||||
types:"\u0627\u0646\u0648\u0627\u0639",
|
||||
def:"\u067E\u06CC\u0634\u200C\u0641\u0631\u0636",
|
||||
lower_alpha:"\u067E\u0627\u06CC\u06CC\u0646\u200C\u062A\u0631 (alpha)",
|
||||
lower_greek:"\u067E\u0627\u06CC\u06CC\u0646\u200C\u062A\u0631 (greek)",
|
||||
lower_roman:"\u067E\u0627\u06CC\u06CC\u0646\u200C\u062A\u0631 (roman)",
|
||||
upper_alpha:"\u0628\u0627\u0644\u0627\u062A\u0631 (alpha)",
|
||||
upper_roman:"\u0628\u0627\u0644\u0627\u062A\u0631 (roman)",
|
||||
circle:"\u062F\u0627\u06CC\u0631\u0647",
|
||||
disc:"\u0642\u0631\u0635 \u0645\u0627\u0646\u0646\u062F",
|
||||
square:"\u0645\u0631\u0628\u0639"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/fi.js
Normal file
171
htdocs/resource2/tinymce/langs/fi.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({fi:{
|
||||
common:{
|
||||
edit_confirm:"Haluatko k\u00E4ytt\u00E4\u00E4 WYSIWYG-tilaa t\u00E4ss\u00E4 tekstikent\u00E4ss\u00E4?",
|
||||
apply:"K\u00E4yt\u00E4",
|
||||
insert:"Lis\u00E4\u00E4",
|
||||
update:"P\u00E4ivit\u00E4",
|
||||
cancel:"Peruuta",
|
||||
close:"Sulje",
|
||||
browse:"Selaa",
|
||||
class_name:"Luokka",
|
||||
not_set:"-- Ei m\u00E4\u00E4ritetty --",
|
||||
clipboard_msg:"Kopioi/Leikkaa/Liit\u00E4 ei ole k\u00E4ytett\u00E4viss\u00E4 Mozilla ja Firefox -selaimilla.\nHaluatko lis\u00E4tietoa t\u00E4st\u00E4 ongelmasta?",
|
||||
clipboard_no_support:"Selaimesi ei ole tuettu, k\u00E4yt\u00E4 sen sijaan n\u00E4pp\u00E4inoikoteit\u00E4.",
|
||||
popup_blocked:"Sinulla on k\u00E4yt\u00F6ss\u00E4si ohjelma, joka est\u00E4\u00E4 ponnahdusikkunoiden n\u00E4yt\u00F6n. Sinun t\u00E4ytyy kytke\u00E4 ponnahdusikkunoiden esto pois p\u00E4\u00E4lt\u00E4 voidaksesi hy\u00F6dynt\u00E4\u00E4 t\u00E4ysin t\u00E4t\u00E4 ty\u00F6kalua.",
|
||||
invalid_data:"Virhe: Sy\u00F6tit virheellisi\u00E4 arvoja, ne n\u00E4kyv\u00E4t punaisina.",
|
||||
more_colors:"Enemm\u00E4n v\u00E4rej\u00E4"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Tasaus",
|
||||
left:"Vasemmalle",
|
||||
center:"Keskelle",
|
||||
right:"Oikealle",
|
||||
full:"Molemmille puolille"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Lis\u00E4\u00E4 p\u00E4iv\u00E4m\u00E4\u00E4r\u00E4",
|
||||
inserttime_desc:"Lis\u00E4\u00E4 kellonaika",
|
||||
months_long:"tammikuu,helmikuu,maaliskuu,huhtikuu,toukokuu,kes\u00E4kuu,hein\u00E4kuu,elokuu,syyskuu,lokakuu,marraskuu,joulukuu",
|
||||
months_short:"tammi,helmi,maalis,huhti,touko,kes\u00E4,hein\u00E4,elo,syys,loka,marras,joulu",
|
||||
day_long:"sunnuntai,maanantai,tiistai,keskiviikko,torstai,perjantai,lauantai,sunnuntai",
|
||||
day_short:"su,ma,ti,ke,to,pe,la,su"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Tulosta"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Esikatselu"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Suunta vasemmalta oikealle",
|
||||
rtl_desc:"Suunta oikealta vasemmalle"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Lis\u00E4\u00E4 uusi taso",
|
||||
forward_desc:"Siirr\u00E4 eteenp\u00E4in",
|
||||
backward_desc:"Siirr\u00E4 taaksep\u00E4in",
|
||||
absolute_desc:"Absoluuttinen sijainti",
|
||||
content:"Uusi taso..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Tallenna",
|
||||
cancel_desc:"Peruuta kaikki muutokset"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Lis\u00E4\u00E4 tyhj\u00E4 merkki (nbsp)"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Oikeinkirjoituksen tarkistus",
|
||||
download:"ieSpell-ohjelmaa ei havaittu. Haluatko asentaa sen nyt?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vaakatasoviivain"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Hymi\u00F6t"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Etsi",
|
||||
replace_desc:"Etsi ja korvaa"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Lis\u00E4\u00E4/muokkaa kuvaa"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Lis\u00E4\u00E4/muokkaa linkki\u00E4"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Sitaatti",
|
||||
abbr_desc:"Lyhenne",
|
||||
acronym_desc:"Kirjainlyhenne",
|
||||
del_desc:"Poisto",
|
||||
ins_desc:"Lis\u00E4ys",
|
||||
attribs_desc:"Lis\u00E4\u00E4/muokkaa attribuutteja"
|
||||
},
|
||||
style:{
|
||||
desc:"Muokkaa CSS-tyylej\u00E4"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Liit\u00E4 pelkk\u00E4n\u00E4 tekstin\u00E4",
|
||||
paste_word_desc:"Liit\u00E4 Wordist\u00E4",
|
||||
selectall_desc:"Valitse kaikki",
|
||||
plaintext_mode_sticky:"Liitt\u00E4minen on nyt pelkk\u00E4n\u00E4 tekstin\u00E4. Klikkaa uudelleen vaihtaaksesi takaisin tavalliseen tilaan. Palaat takaisin tavalliseen tilaan liitetty\u00E4si jotakin.",
|
||||
plaintext_mode:"Liitt\u00E4minen on nyt pelkk\u00E4n\u00E4 tekstin\u00E4. Klikkaa uudelleen vaihtaaksesi takaisin tavalliseen tilaan."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi sis\u00E4ll\u00F6n ikkunaan.",
|
||||
text_linebreaks:"S\u00E4ilyt\u00E4 rivinvaihdot",
|
||||
word_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi sis\u00E4ll\u00F6n ikkunaan."
|
||||
},
|
||||
table:{
|
||||
desc:"Lis\u00E4\u00E4 uusi taulukko",
|
||||
row_before_desc:"Lis\u00E4\u00E4 rivi ennen",
|
||||
row_after_desc:"Lis\u00E4\u00E4 rivi j\u00E4lkeen",
|
||||
delete_row_desc:"Poista rivi",
|
||||
col_before_desc:"Lis\u00E4\u00E4 sarake ennen",
|
||||
col_after_desc:"Lis\u00E4\u00E4 sarake j\u00E4lkeen",
|
||||
delete_col_desc:"Poista sarake",
|
||||
split_cells_desc:"Jaa yhdistetyt taulukon solut",
|
||||
merge_cells_desc:"Yhdist\u00E4 taulukon solut",
|
||||
row_desc:"Taulukon rivin asetukset",
|
||||
cell_desc:"Taulukon solun asetukset",
|
||||
props_desc:"Taulukon asetukset",
|
||||
paste_row_before_desc:"Liit\u00E4 taulukon rivi ennen",
|
||||
paste_row_after_desc:"Liit\u00E4 taulukon rivi j\u00E4lkeen",
|
||||
cut_row_desc:"Leikkaa taulukon rivi",
|
||||
copy_row_desc:"Kopioi taulukon rivi",
|
||||
del:"Poista taulukko",
|
||||
row:"Rivi",
|
||||
col:"Sarake",
|
||||
cell:"Solu",
|
||||
cellprops_delta_width:"80"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Tekem\u00E4si muutokset menetet\u00E4\u00E4n jos poistut t\u00E4lt\u00E4 sivulta.",
|
||||
restore_content:"Palauta automaattisesti tallennettu sis\u00E4lt\u00F6.",
|
||||
warning_message:"Jos palautat automaattisesti tallennetun sis\u00E4ll\u00F6n, menet\u00E4t t\u00E4ll\u00E4 hetkell\u00E4 editorissa olevan sis\u00E4ll\u00F6n.\n\nHaluatko varmasti palauttaa tallennetun sis\u00E4ll\u00F6n?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Kokoruututila"
|
||||
},
|
||||
media:{
|
||||
desc:"Lis\u00E4\u00E4/muokkaa upotettua mediaa",
|
||||
edit:"Muokkaa upotettua mediaa"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Tiedoston asetukset"
|
||||
},
|
||||
template:{
|
||||
desc:"Lis\u00E4\u00E4 esim\u00E4\u00E4ritetty\u00E4 sivupohjasis\u00E4lt\u00F6\u00E4"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"N\u00E4yt\u00E4/piilota muotoilumerkit."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Oikeinkirjoituksen tarkistus",
|
||||
menu:"Oikeinkirjoituksen asetukset",
|
||||
ignore_word:"Ohita sana",
|
||||
ignore_words:"Ohita kaikki",
|
||||
langs:"Kielet",
|
||||
wait:"Odota ole hyv\u00E4...",
|
||||
sug:"Ehdotukset",
|
||||
no_sug:"Ei ehdotuksia",
|
||||
no_mpell:"Virheit\u00E4 ei l\u00F6ytynyt."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Lis\u00E4\u00E4 sivunvaihto."
|
||||
},
|
||||
advlist:{
|
||||
types:"Tyypit",
|
||||
def:"Oletus",
|
||||
lower_alpha:"pienet kirjaimet: a, b, c",
|
||||
lower_greek:"pienet kirjaimet: \u03B1, \u03B2, \u03B3",
|
||||
lower_roman:"pienet kirjaimet: i, ii, iii",
|
||||
upper_alpha:"isot kirjaimet: A, B, C",
|
||||
upper_roman:"isot kirjaimet: I, II, III",
|
||||
circle:"Pallo",
|
||||
disc:"Ympyr\u00E4",
|
||||
square:"Neli\u00F6"
|
||||
}}});
|
172
htdocs/resource2/tinymce/langs/fr.js
Normal file
172
htdocs/resource2/tinymce/langs/fr.js
Normal file
@ -0,0 +1,172 @@
|
||||
tinyMCE.addI18n({fr:{
|
||||
common:{
|
||||
edit_confirm:"Souhaitez-vous utiliser le mode WYSIWYG pour cette zone de texte ?",
|
||||
apply:"Appliquer",
|
||||
insert:"Ins\u00E9rer",
|
||||
update:"Mettre \u00E0 jour",
|
||||
cancel:"Annuler",
|
||||
close:"Fermer",
|
||||
browse:"parcourir",
|
||||
class_name:"Classe",
|
||||
not_set:"-- non d\u00E9fini --",
|
||||
clipboard_msg:"Les fonctions Copier/Couper/Coller ne sont pas valables sur Mozilla et Firefox.\nSouhaitez-vous avoir plus d'informations sur ce sujet ?",
|
||||
clipboard_no_support:"Actuellement non support\u00E9 par votre navigateur.\n Veuillez utiliser les raccourcis clavier \u00E0 la place.",
|
||||
popup_blocked:"D\u00E9sol\u00E9, nous avons d\u00E9tect\u00E9 que votre bloqueur de popup a bloqu\u00E9 une fen\u00EAtre dont l'application a besoin. Vous devez d\u00E9sactiver votre bloqueur de popup pour pouvoir utiliser cet outil.",
|
||||
invalid_data:"Erreur : saisie de valeurs incorrectes. Elles sont mises en \u00E9vidence en rouge.",
|
||||
more_colors:"Plus de couleurs"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignement",
|
||||
left:"Gauche",
|
||||
center:"Centr\u00E9",
|
||||
right:"Droite",
|
||||
full:"Justifi\u00E9"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Ins\u00E9rer la date",
|
||||
inserttime_desc:"Ins\u00E9rer l'heure",
|
||||
months_long:"Janvier,F\u00E9vrier,Mars,Avril,Mai,Juin,Juillet,Ao\u00FBt,Septembre,Octobre,Novembre,D\u00E9cembre",
|
||||
months_short:"Jan,F\u00E9v,Mar,Avr,Mai,Juin,Juil,Ao\u00FBt,Sep,Oct,Nov,D\u00E9c",
|
||||
day_long:"Dimanche,Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche",
|
||||
day_short:"Dim,Lun,Mar,Mer,Jeu,Ven,Sam,Dim"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimer"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Pr\u00E9visualiser"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u00C9criture de gauche \u00E0 droite",
|
||||
rtl_desc:"\u00C9criture de droite \u00E0 gauche"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Ins\u00E9rer une nouvelle couche",
|
||||
forward_desc:"D\u00E9placer vers l'avant",
|
||||
backward_desc:"D\u00E9placer vers l'arri\u00E8re",
|
||||
absolute_desc:"Activer le positionnement absolu",
|
||||
content:"Nouvelle couche\u2026"
|
||||
},
|
||||
save:{
|
||||
save_desc:"Enregistrer",
|
||||
cancel_desc:"Annuler toutes les modifications"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Ins\u00E9rer une espace ins\u00E9cable"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Lancer le v\u00E9rificateur d'orthographe",
|
||||
download:"ieSpell n'est pas install\u00E9. Souhaitez-vous l'installer maintenant ?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Ins\u00E9rer un trait horizontal",
|
||||
delta_width:"Ecart de largeur",
|
||||
delta_height:"Ecart de hauteur"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u00C9motic\u00F4nes"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Rechercher",
|
||||
replace_desc:"Rechercher / remplacer"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Ins\u00E9rer / \u00E9diter une image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Ins\u00E9rer / \u00E9diter un lien"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abr\u00E9viation",
|
||||
acronym_desc:"Acronyme",
|
||||
del_desc:"Barr\u00E9",
|
||||
ins_desc:"Ins\u00E9r\u00E9",
|
||||
attribs_desc:"Ins\u00E9rer / \u00E9diter les attributs"
|
||||
},
|
||||
style:{
|
||||
desc:"\u00C9diter la feuille de style (CSS)"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Coller comme texte brut",
|
||||
paste_word_desc:"Coller un texte cr\u00E9\u00E9 sous Word",
|
||||
selectall_desc:"Tout s\u00E9lectionner",
|
||||
plaintext_mode_sticky:"Le collage est actuellement en mode texte non format\u00E9. Cliquez \u00E0 nouveau pour revenir en mode de collage ordinaire. Apr\u00E8s avoir coll\u00E9 quelque chose, vous retournerez en mode de collage ordinaire.",
|
||||
plaintext_mode:"Le collage est actuellement en mode texte non format\u00E9. Cliquez \u00E0 nouveau pour revenir en mode de collage ordinaire."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre.",
|
||||
text_linebreaks:"Conserver les retours \u00E0 la ligne",
|
||||
word_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre."
|
||||
},
|
||||
table:{
|
||||
desc:"Ins\u00E9rer un nouveau tableau",
|
||||
row_before_desc:"Ins\u00E9rer une ligne avant",
|
||||
row_after_desc:"Ins\u00E9rer une ligne apr\u00E8s",
|
||||
delete_row_desc:"Effacer la ligne",
|
||||
col_before_desc:"Ins\u00E9rer une colonne avant",
|
||||
col_after_desc:"Ins\u00E9rer une colonne apr\u00E8s",
|
||||
delete_col_desc:"Effacer la colonne",
|
||||
split_cells_desc:"Scinder les cellules fusionn\u00E9es",
|
||||
merge_cells_desc:"Fusionner les cellules",
|
||||
row_desc:"Propri\u00E9t\u00E9s de la ligne",
|
||||
cell_desc:"Propri\u00E9t\u00E9s de la cellule",
|
||||
props_desc:"Propri\u00E9t\u00E9s du tableau",
|
||||
paste_row_before_desc:"Coller la ligne avant",
|
||||
paste_row_after_desc:"Coller la ligne apr\u00E8s",
|
||||
cut_row_desc:"Couper la ligne",
|
||||
copy_row_desc:"Copier la ligne",
|
||||
del:"Effacer le tableau",
|
||||
row:"Ligne",
|
||||
col:"Colonne",
|
||||
cell:"Cellule"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Les modifications apport\u00E9es seront perdus si vous quittez cette page.",
|
||||
restore_content:"Restaurer le contenu auto-sauvegard\u00E9.",
|
||||
warning_message:"Si vous restaurez le contenu sauv\u00E9, vous perdrez le contenu qui est actuellement dans l'\u00E9diteur.\n\n\u00CAtes-vous s\u00FBr de vouloir restaurer le contenu sauv\u00E9 ?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Passer en mode plein \u00E9cran"
|
||||
},
|
||||
media:{
|
||||
desc:"Ins\u00E9rer / \u00E9diter un m\u00E9dia incorpor\u00E9",
|
||||
edit:"\u00C9diter un m\u00E9dia incorpor\u00E9"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propri\u00E9t\u00E9s du document"
|
||||
},
|
||||
template:{
|
||||
desc:"Ins\u00E9rer un mod\u00E8le pr\u00E9d\u00E9fini."
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Activer les caract\u00E8res de mise en page."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Activer le v\u00E9rificateur d'orthographe",
|
||||
menu:"Param\u00E8tres du v\u00E9rificateur d'orthographe",
|
||||
ignore_word:"Ignorer le mot",
|
||||
ignore_words:"Tout ignorer",
|
||||
langs:"Langues",
|
||||
wait:"Veuillez patienter\u2026",
|
||||
sug:"Suggestions",
|
||||
no_sug:"Aucune suggestion",
|
||||
no_mpell:"Aucune erreur trouv\u00E9e."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Ins\u00E9rer un saut de page."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Defaut",
|
||||
lower_alpha:"Alpha minuscule",
|
||||
lower_greek:"Grec minuscule",
|
||||
lower_roman:"Romain minuscule",
|
||||
upper_alpha:"Alpha majuscule",
|
||||
upper_roman:"Romain majuscule",
|
||||
circle:"Cercle",
|
||||
disc:"Disque",
|
||||
square:"Carr\u00E9"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/gl.js
Normal file
170
htdocs/resource2/tinymce/langs/gl.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({gl:{
|
||||
common:{
|
||||
edit_confirm:"\u00BFDesexa utiliza-lo modo WYSIWYG pra esta caixa de texto?",
|
||||
apply:"Apricar",
|
||||
insert:"Insertar",
|
||||
update:"Actualizar",
|
||||
cancel:"Cancelar",
|
||||
close:"Cerrar",
|
||||
browse:"Examinar",
|
||||
class_name:"Clase",
|
||||
not_set:"-- Ning\u00FAn --",
|
||||
clipboard_msg:"Copiar/Cortar/Pegar non est\u00E1 disponible en Mozilla e Firefox.\n\u00BFDesexa obter mais informaci\u00F3n sobre de este asunto?",
|
||||
clipboard_no_support:"O seu navegador non soporta estas funci\u00F3ns, use os atallos de teclado.",
|
||||
popup_blocked:"O seu bloqueador de vent\u00E1s emerxentes deshabilitou unha vent\u00E1 que precisa pra o funcionamento da aplicaci\u00F3n. Precisa deshabilita-lo bloqueo de `popups` neste sitio pra utilizar \u00F3 m\u00E1ximo esta ferramenta.",
|
||||
invalid_data:"Error: Introducidos valores non v\u00E1lidos, est\u00E1n marcados en vermello.",
|
||||
more_colors:"Mais cores"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Ali\u00F1amento",
|
||||
left:"Esquerda",
|
||||
center:"Centrado",
|
||||
right:"Dereita",
|
||||
full:"Xustificado"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insertar data",
|
||||
inserttime_desc:"Insertar hora",
|
||||
months_long:"Xaneito,Febreiro,Marzo,Abril,Maio,Xu\u00F1o,Xullo,Agosto,Setembro,Outubro,Novembro,Decembro",
|
||||
months_short:"Xan,Feb,Mar,Abr,Mai,Xu\u00F1,Xul,Ago,Set,Out,Nov,Dec",
|
||||
day_long:"Domingo,Luns,Martes,M\u00E9rcores,Xoves,Venres,S\u00E1bado,Domingo",
|
||||
day_short:"Dom,Lun,Mar,M\u00E9r,Xov,Ver,S\u00E1b,Dom"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimir"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Vista previa"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direcci\u00F3n esquerda a dereita",
|
||||
rtl_desc:"Direcci\u00F3n dereita a esquerda"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insertar nova capa",
|
||||
forward_desc:"Avanzar",
|
||||
backward_desc:"Recuar",
|
||||
absolute_desc:"Posici\u00F3n absoluta",
|
||||
content:"Nova capa..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Gardar",
|
||||
cancel_desc:"Cancelar todo-los cambios"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insertar espacio non colapsable"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Corrector ortogr\u00E1fico",
|
||||
download:"Non se detectou 'ieSpell'. \u00BFDesexa instala-lo agora?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Regra horizontal"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emoticones"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Buscar",
|
||||
replace_desc:"Buscar/Reemplazar"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insertar/editar imaxe"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insertar/editar hiperv\u00EDnculo"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cita",
|
||||
abbr_desc:"Abreviatura",
|
||||
acronym_desc:"Acr\u00F3nimo",
|
||||
del_desc:"Borrado",
|
||||
ins_desc:"Inserci\u00F3n",
|
||||
attribs_desc:"Insertar/Editar atributos"
|
||||
},
|
||||
style:{
|
||||
desc:"Editar Estilo CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Pegar como texto simple",
|
||||
paste_word_desc:"Pegar desde Word",
|
||||
selectall_desc:"Seleccionar todo",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1.",
|
||||
text_linebreaks:"Manter salto de li\u00F1as",
|
||||
word_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserta unha nova t\u00E1boa",
|
||||
row_before_desc:"Insertar fila (antes)",
|
||||
row_after_desc:"Insertar fila (desp\u00F3is)",
|
||||
delete_row_desc:"Suprimir fila",
|
||||
col_before_desc:"Insertar columna (antes)",
|
||||
col_after_desc:"Insertar columna (desp\u00F3is)",
|
||||
delete_col_desc:"Suprimir columna",
|
||||
split_cells_desc:"Dividir celdas",
|
||||
merge_cells_desc:"Vincular celdas",
|
||||
row_desc:"Propiedades da fila",
|
||||
cell_desc:"Propiedades da celda",
|
||||
props_desc:"Propiedades da t\u00E1boa",
|
||||
paste_row_before_desc:"Pegar filas (antes)",
|
||||
paste_row_after_desc:"Pegar filas (desp\u00F3is)",
|
||||
cut_row_desc:"Cortar fila",
|
||||
copy_row_desc:"Copiar fila",
|
||||
del:"Eliminar t\u00E1boa",
|
||||
row:"Fila",
|
||||
col:"Columna",
|
||||
cell:"Celda"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Os cambios realizados perderanse se sae desta p\u00E1xina.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Cambiar a modo Pantalla Completa"
|
||||
},
|
||||
media:{
|
||||
desc:"Insertar/editar medio embebido",
|
||||
edit:"Editar medio embebido"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propiedades do documento"
|
||||
},
|
||||
template:{
|
||||
desc:"Insertar contido de plantilla predefinida"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Caracteres de control ON/OFF."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Conmutar corrector ortogr\u00E1fico",
|
||||
menu:"Configuraci\u00F3n de corrector ortogr\u00E1fico",
|
||||
ignore_word:"Ignorar verba",
|
||||
ignore_words:"Ignorar todo",
|
||||
langs:"Idiomas",
|
||||
wait:"Agarde...",
|
||||
sug:"Suxerencias",
|
||||
no_sug:"Sen suxerencias",
|
||||
no_mpell:"Non se atoparon erros."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insertar fin de p\u00E1xina"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/gu.js
Normal file
170
htdocs/resource2/tinymce/langs/gu.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({gu:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/he.js
Normal file
170
htdocs/resource2/tinymce/langs/he.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({he:{
|
||||
common:{
|
||||
edit_confirm:"\u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E2\u05D5\u05E8\u05DA \u05D4\u05DE\u05EA\u05E7\u05D3\u05DD?",
|
||||
apply:"\u05D0\u05D9\u05E9\u05D5\u05E8",
|
||||
insert:"\u05D4\u05D5\u05E1\u05E4\u05D4",
|
||||
update:"\u05E2\u05D3\u05DB\u05D5\u05DF",
|
||||
cancel:"\u05D1\u05D9\u05D8\u05D5\u05DC",
|
||||
close:"\u05E1\u05D2\u05D9\u05E8\u05D4",
|
||||
browse:"\u05E2\u05D9\u05D5\u05DF",
|
||||
class_name:"\u05DE\u05D7\u05DC\u05E7\u05D4",
|
||||
not_set:"-- \u05DC\u05D0 \u05D4\u05D5\u05D2\u05D3\u05E8 --",
|
||||
clipboard_msg:"\r\n \u05D4\u05E2\u05EA\u05E7\u05D4/\u05D2\u05D6\u05D9\u05E8\u05D4 \u05D5\u05D4\u05D3\u05D1\u05E7\u05D4 \u05D0\u05D9\u05E0\u05DD \u05D6\u05DE\u05D9\u05E0\u05D9\u05DD \u05D1 Mozilla \u05D5\u05D1-Firefox.\r\n \u05D4\u05D0\u05DD \u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05E7\u05D1\u05DC \u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3 \u05E2\u05DC \u05D4\u05E0\u05D5\u05E9\u05D0?\r\n ",
|
||||
clipboard_no_support:"\u05DB\u05E8\u05D2\u05E2 \u05DC\u05D0 \u05E0\u05EA\u05DE\u05DA \u05E2\u05DC \u05D9\u05D3\u05D9 \u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05DA. \u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E7\u05D9\u05E6\u05D5\u05E8\u05D9 \u05D4\u05DE\u05E7\u05DC\u05D3\u05EA.",
|
||||
popup_blocked:"\u05D7\u05D5\u05E1\u05DD \u05E4\u05E8\u05D9\u05D8\u05D9\u05DD \u05DE\u05D5\u05E7\u05E4\u05E6\u05D9\u05DD \u05DE\u05E0\u05E2 \u05DE\u05D7\u05DC\u05D5\u05DF \u05D7\u05E9\u05D5\u05D1 \u05DE\u05DC\u05D4\u05E4\u05EA\u05D7,\u05D0\u05DD \u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DB\u05DC\u05D9 \u05D6\u05D4 \u05E2\u05DC\u05D9\u05DA \u05DC\u05D1\u05D8\u05DC \u05D0\u05EA \u05D7\u05D5\u05E1\u05DD \u05D4\u05E4\u05E8\u05D9\u05D8\u05D9\u05DD",
|
||||
invalid_data:"\u05E9\u05D2\u05D9\u05D0\u05D4: \u05D4\u05D5\u05E7\u05DC\u05D3 \u05DE\u05D9\u05D3\u05E2 \u05DC\u05D0 \u05EA\u05E7\u05E0\u05D9. \u05D4\u05DE\u05D9\u05D3\u05E2 \u05E1\u05D5\u05DE\u05DF \u05D1\u05D0\u05D3\u05D5\u05DD.",
|
||||
more_colors:"\u05E2\u05D5\u05D3 \u05E6\u05D1\u05E2\u05D9\u05DD"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u05D9\u05D9\u05E9\u05D5\u05E8",
|
||||
left:"\u05E9\u05DE\u05D0\u05DC",
|
||||
center:"\u05D0\u05DE\u05E6\u05E2",
|
||||
right:"\u05D9\u05DE\u05D9\u05DF",
|
||||
full:"\u05E9\u05E0\u05D9 \u05D4\u05E6\u05D3\u05D3\u05D9\u05DD"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u05D4\u05D5\u05E1\u05E4\u05EA \u05EA\u05D0\u05E8\u05D9\u05DA",
|
||||
inserttime_desc:"\u05D4\u05D5\u05E1\u05E4\u05EA \u05D6\u05DE\u05DF",
|
||||
months_long:"\u05D9\u05E0\u05D5\u05D0\u05E8,\u05E4\u05D1\u05E8\u05D5\u05D0\u05E8,\u05DE\u05E8\u05E5,\u05D0\u05E4\u05E8\u05D9\u05DC,\u05DE\u05D0\u05D9,\u05D9\u05D5\u05E0\u05E2,\u05D9\u05D5\u05DC\u05D9,\u05D0\u05D5\u05D2\u05D5\u05E1\u05D8,\u05E1\u05E4\u05D8\u05DE\u05D1\u05E8,\u05D0\u05D5\u05E7\u05D8\u05D5\u05D1\u05E8,\u05E0\u05D5\u05D1\u05DE\u05D1\u05E8,\u05D3\u05E6\u05DE\u05D1\u05E8",
|
||||
months_short:"\u05D9\u05E0\u05D5\u05D0\u05E8,\u05E4\u05D1\u05E8\u05D5\u05D0\u05E8,\u05DE\u05E8\u05E5,\u05D0\u05E4\u05E8\u05D9\u05DC,\u05DE\u05D0\u05D9,\u05D9\u05D5\u05E0\u05E2,\u05D9\u05D5\u05DC\u05D9,\u05D0\u05D5\u05D2\u05D5\u05E1\u05D8,\u05E1\u05E4\u05D8\u05DE\u05D1\u05E8,\u05D0\u05D5\u05E7\u05D8\u05D5\u05D1\u05E8,\u05E0\u05D5\u05D1\u05DE\u05D1\u05E8,\u05D3\u05E6\u05DE\u05D1\u05E8",
|
||||
day_long:"\u05D9\u05D5\u05DD \u05E8\u05D0\u05E9\u05D5\u05DF,\u05D9\u05D5\u05DD \u05E9\u05E0\u05D9,\u05D9\u05D5\u05DD \u05E9\u05DC\u05D9\u05E9\u05D9,\u05D9\u05D5\u05DD \u05E8\u05D1\u05D9\u05E2\u05D9,\u05D9\u05D5\u05DD \u05D7\u05DE\u05D9\u05E9\u05D9,\u05D9\u05D5\u05DD \u05E9\u05D9\u05E9,\u05D9\u05D5\u05DD \u05E9\u05D1\u05EA,\u05D9\u05D5\u05DD \u05E8\u05D0\u05E9\u05D5\u05DF",
|
||||
day_short:"\u05D9\u05D5\u05DD \u05D0',\u05D9\u05D5\u05DD \u05D1',\u05D9\u05D5\u05DD \u05D2',\u05D9\u05D5\u05DD \u05D3',\u05D9\u05D5\u05DD \u05D4',\u05D9\u05D5\u05DD \u05D5',\u05E9\u05D1\u05EA,\u05D9\u05D5\u05DD \u05D0'"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u05D4\u05D3\u05E4\u05E1\u05D4"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u05DB\u05D9\u05D5\u05D5\u05DF \u05D8\u05E7\u05E1\u05D8 \u05DE\u05E9\u05DE\u05D0\u05DC \u05DC\u05D9\u05DE\u05D9\u05DF",
|
||||
rtl_desc:"\u05DB\u05D9\u05D5\u05D5\u05DF \u05D8\u05E7\u05E1\u05D8 \u05DE\u05D9\u05DE\u05D9\u05DF \u05DC\u05E9\u05DE\u05D0\u05DC"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u05D4\u05D5\u05E1\u05E4\u05EA \u05E9\u05DB\u05D1\u05D4 \u05D7\u05D3\u05E9\u05D4",
|
||||
forward_desc:"\u05D4\u05E2\u05D1\u05E8\u05D4 \u05E7\u05D3\u05D9\u05DE\u05D4",
|
||||
backward_desc:"\u05D4\u05E2\u05D1\u05E8\u05D4 \u05D0\u05D7\u05D5\u05E8\u05D4",
|
||||
absolute_desc:"\u05D1\u05D7\u05D9\u05E8\u05EA \u05DE\u05D9\u05E7\u05D5\u05DD \u05DE\u05D5\u05D7\u05DC\u05D8",
|
||||
content:"\u05E9\u05DB\u05D1\u05D4 \u05D7\u05D3\u05E9\u05D4..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u05E9\u05DE\u05D9\u05E8\u05D4",
|
||||
cancel_desc:"\u05D1\u05D9\u05D8\u05D5\u05DC \u05DB\u05DC \u05D4\u05E9\u05D9\u05E0\u05D5\u05D9\u05DD"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u05D4\u05D5\u05E1\u05E4\u05EA \u05E8\u05D5\u05D5\u05D7"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u05D1\u05D3\u05D9\u05E7\u05EA \u05D0\u05D9\u05D5\u05EA \u05D1\u05D0\u05E0\u05D2\u05DC\u05D9\u05EA",
|
||||
download:" \u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0 ieSpell. \u05D4\u05D0\u05DD \u05D1\u05E8\u05E6\u05D5\u05E0\u05DA \u05DC\u05D4\u05EA\u05E7\u05D9\u05DF?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u05E7\u05D5 \u05D0\u05D5\u05E4\u05E7\u05D9"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u05E1\u05DE\u05D9\u05D9\u05DC\u05D9\u05DD"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u05D7\u05D9\u05E4\u05D5\u05E9",
|
||||
replace_desc:"\u05D4\u05D7\u05DC\u05E4\u05D4"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u05D4\u05D5\u05E1\u05E4\u05D4/\u05E2\u05E8\u05D9\u05DB\u05EA \u05EA\u05DE\u05D5\u05E0\u05D4"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u05D4\u05D5\u05E1\u05E4\u05EA/\u05E2\u05E8\u05D9\u05DB\u05EA \u05E7\u05D9\u05E9\u05D5\u05E8"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u05E6\u05D9\u05D8\u05D5\u05D8",
|
||||
abbr_desc:"\u05E7\u05D9\u05E6\u05D5\u05E8",
|
||||
acronym_desc:"\u05E8\u05D0\u05E9\u05D9 \u05EA\u05D9\u05D1\u05D5\u05EA",
|
||||
del_desc:"\u05DE\u05D7\u05D9\u05E7\u05D4",
|
||||
ins_desc:"\u05D4\u05DB\u05E0\u05E1\u05D4",
|
||||
attribs_desc:"\u05D4\u05DB\u05E0\u05E1/\u05E2\u05E8\u05D5\u05DA \u05EA\u05DB\u05D5\u05E0\u05D5\u05EA"
|
||||
},
|
||||
style:{
|
||||
desc:"\u05E2\u05D3\u05DB\u05D5\u05DF \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u05D4\u05D3\u05D1\u05E7\u05D4 \u05DB\u05D8\u05E7\u05E1\u05D8 \u05D1\u05DC\u05D1\u05D3",
|
||||
paste_word_desc:"\u05D4\u05D3\u05D1\u05E7\u05D4 \u05DE-WORD",
|
||||
selectall_desc:"\u05D1\u05D7\u05E8 \u05D4\u05DB\u05DC",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u05D4\u05D3\u05D1\u05D9\u05E7\u05D5 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D6\u05D4 \u05D0\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D4\u05DE\u05E7\u05E9\u05D9\u05DD CTRL+V.",
|
||||
text_linebreaks:"\u05D4\u05E9\u05D0\u05E8 \u05D0\u05EA \u05E9\u05D5\u05E8\u05D5\u05EA \u05D4\u05E8\u05D5\u05D5\u05D7",
|
||||
word_title:"\u05D4\u05D3\u05D1\u05D9\u05E7\u05D5 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D6\u05D4 \u05D0\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D4\u05DE\u05E7\u05E9\u05D9\u05DD CTRL+V."
|
||||
},
|
||||
table:{
|
||||
desc:"\u05D4\u05DB\u05E0\u05E1\u05EA \u05D8\u05D1\u05DC\u05D4 \u05D7\u05D3\u05E9\u05D4",
|
||||
row_before_desc:"\u05D4\u05DB\u05E0\u05E1\u05EA \u05E9\u05D5\u05E8\u05D4 \u05DE\u05E2\u05DC",
|
||||
row_after_desc:"\u05D4\u05DB\u05E0\u05E1\u05EA \u05E9\u05D5\u05E8\u05D4 \u05DE\u05EA\u05D7\u05EA",
|
||||
delete_row_desc:"\u05DE\u05D7\u05D9\u05E7\u05EA \u05E9\u05D5\u05E8\u05D4",
|
||||
col_before_desc:"\u05D4\u05DB\u05E0\u05E1\u05EA \u05E2\u05DE\u05D5\u05D3\u05D4 \u05DE\u05D9\u05DE\u05D9\u05DF",
|
||||
col_after_desc:"\u05D4\u05DB\u05E0\u05E1\u05EA \u05E2\u05DE\u05D5\u05D3\u05D4 \u05DE\u05E9\u05DE\u05D0\u05DC",
|
||||
delete_col_desc:"\u05D4\u05E1\u05E8\u05EA \u05E2\u05DE\u05D5\u05D3\u05D4",
|
||||
split_cells_desc:"\u05E4\u05D9\u05E6\u05D5\u05DC \u05EA\u05D0\u05D9\u05DD \u05D1\u05D8\u05D1\u05DC\u05D4",
|
||||
merge_cells_desc:"\u05D0\u05D9\u05D7\u05D5\u05D3 \u05EA\u05D0\u05D9\u05DD \u05D1\u05D8\u05D1\u05DC\u05D4",
|
||||
row_desc:"\u05EA\u05DB\u05D5\u05E0\u05D5\u05EA \u05E9\u05D5\u05E8\u05D4 \u05D1\u05D8\u05D1\u05DC\u05D4",
|
||||
cell_desc:"\u05EA\u05DB\u05D5\u05E0\u05D5\u05EA \u05EA\u05D0 \u05D1\u05D8\u05D1\u05DC\u05D4",
|
||||
props_desc:"\u05EA\u05DB\u05D5\u05E0\u05D5\u05EA \u05D4\u05D8\u05D1\u05DC\u05D4",
|
||||
paste_row_before_desc:"\u05D4\u05D3\u05D1\u05E7\u05EA \u05E9\u05D5\u05E8\u05D4 \u05D1\u05D8\u05D1\u05DC\u05D4 \u05DC\u05E4\u05E0\u05D9",
|
||||
paste_row_after_desc:"\u05D4\u05D3\u05D1\u05E7\u05EA \u05E9\u05D5\u05E8\u05D4 \u05D1\u05D8\u05D1\u05DC\u05D4 \u05D0\u05D7\u05E8\u05D9",
|
||||
cut_row_desc:"\u05D2\u05D6\u05D9\u05E8\u05EA \u05E9\u05D5\u05E8\u05D4 \u05D1\u05D8\u05D1\u05DC\u05D4",
|
||||
copy_row_desc:"\u05D4\u05E2\u05EA\u05E7\u05EA \u05E9\u05D5\u05E8\u05D4 \u05D1\u05D8\u05D1\u05DC\u05D4",
|
||||
del:"\u05DE\u05D7\u05D9\u05E7\u05EA \u05D8\u05D1\u05DC\u05D4",
|
||||
row:"\u05E9\u05D5\u05E8\u05D4",
|
||||
col:"\u05E2\u05DE\u05D5\u05D3\u05D4",
|
||||
cell:"\u05EA\u05D0"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u05D4\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD \u05E9\u05D1\u05D9\u05E6\u05E2\u05EA \u05DC\u05D0 \u05D9\u05E9\u05DE\u05E8\u05D5 \u05D0\u05DD \u05EA\u05E2\u05D1\u05D5\u05E8 \u05DE\u05D3\u05E3 \u05D6\u05D4",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u05DE\u05E2\u05D1\u05E8 \u05DC\u05DE\u05E1\u05DA \u05DE\u05DC\u05D0/\u05D7\u05DC\u05E7\u05D9"
|
||||
},
|
||||
media:{
|
||||
desc:"\u05D4\u05D5\u05E1\u05E4\u05EA/\u05E2\u05E8\u05D9\u05DB\u05EA \u05E1\u05E8\u05D8\u05D5\u05DF",
|
||||
edit:"\u05E2\u05E8\u05D9\u05DB\u05EA \u05E1\u05E8\u05D8\u05D5\u05DF"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u05DE\u05D0\u05E4\u05D9\u05D9\u05E0\u05D9 \u05E2\u05DE\u05D5\u05D3"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u05D4\u05E4\u05E2\u05DC\u05EA \u05D1\u05D5\u05D3\u05E7 \u05D0\u05D9\u05D5\u05EA",
|
||||
menu:"\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D1\u05D5\u05D3\u05E7 \u05D0\u05D9\u05D5\u05EA",
|
||||
ignore_word:"\u05DC\u05D4\u05EA\u05E2\u05DC\u05DD \u05DE\u05D4\u05DE\u05D9\u05DC\u05D4",
|
||||
ignore_words:"\u05DC\u05D4\u05EA\u05E2\u05DC\u05DD \u05DE\u05D4\u05DB\u05DC",
|
||||
langs:"\u05E9\u05E4\u05D5\u05EA",
|
||||
wait:"\u05E0\u05D0 \u05DC\u05D4\u05DE\u05EA\u05D9\u05DF..",
|
||||
sug:"\u05D4\u05E6\u05E2\u05D5\u05EA",
|
||||
no_sug:"\u05D0\u05D9\u05DF \u05D4\u05E6\u05E2\u05D5\u05EA",
|
||||
no_mpell:"\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0\u05D5 \u05E9\u05D2\u05D9\u05D0\u05D5\u05EA \u05D0\u05D9\u05D5\u05EA"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u05D4\u05D5\u05E1\u05E4\u05EA \u05DE\u05E2\u05D1\u05E8 \u05D3\u05E3"
|
||||
},
|
||||
advlist:{
|
||||
types:"\u05E1\u05D5\u05D2\u05D9\u05DD",
|
||||
def:"\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"\u05E2\u05D2\u05D5\u05DC",
|
||||
disc:"\u05D3\u05D9\u05E1\u05E7",
|
||||
square:"\u05DE\u05E8\u05D5\u05D1\u05E2"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/hi.js
Normal file
170
htdocs/resource2/tinymce/langs/hi.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({hi:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/hr.js
Normal file
171
htdocs/resource2/tinymce/langs/hr.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({hr:{
|
||||
common:{
|
||||
edit_confirm:"\u017Delite li koristiti WYSIWYG na\u010Din rada za ovo tekstualno polje?",
|
||||
apply:"Primjeni",
|
||||
insert:"Umetni",
|
||||
update:"Obnovi",
|
||||
cancel:"Odustani",
|
||||
close:"Zatvori",
|
||||
browse:"Pregled",
|
||||
class_name:"Klasa",
|
||||
not_set:"-- Nije postavljeno --",
|
||||
clipboard_msg:"Kopiraj/Izre\u017Ei/Zalijepi nije dostupno Mozilla i Firefox preglednicima.\nVi\u0161e informacija?",
|
||||
clipboard_no_support:"Trenuta\u010Dno va\u0161 preglednik ne podr\u017Eava ovu opciju, poku\u0161ajte koristiti tipkovni\u010Dku kraticu.",
|
||||
popup_blocked:"Oprostite, izgleda da je va\u0161 popup-blocker onemogu\u0107io prozor u sklopu ovog programa. Morate onemogu\u0107iti blokiranje popup prozora da bi u potpunosti iskoristili ovaj alat.",
|
||||
invalid_data:"Gre\u0161ka: Une\u0161ene su nevaljane vrijednosti, ozna\u010Dene su crvenom bojom.",
|
||||
more_colors:"Vi\u0161e boja"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Poravnavanje",
|
||||
left:"Lijevo",
|
||||
center:"Sredina",
|
||||
right:"Desno",
|
||||
full:"Puno"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y.",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Umetni datum",
|
||||
inserttime_desc:"Umetni vrijeme",
|
||||
months_long:"sije\u010Danj,velja\u010Da,o\u017Eujak,travanj,svibanj,lipanj,srpanj,kolovoz,rujan,listopad,studeni,prosinac",
|
||||
months_short:"sij,velj,o\u017Eu,tra,svi,lip,srp,kol,ruj,lis,stu,pro",
|
||||
day_long:"nedjelja,ponedjeljak,utorak,srijeda,\u010Detvrtak,petak,subota,nedjelja",
|
||||
day_short:"ned,pon,uto,sri,\u010Det,pet,sub,ned"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Ispis"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Prikaz"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"S lijeva na desno",
|
||||
rtl_desc:"S desna na lijevo"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Umetni novi sloj",
|
||||
forward_desc:"Pomakni naprijed",
|
||||
backward_desc:"Pomakni natrag",
|
||||
absolute_desc:"Uklju\u010Di/isklju\u010Di apsolutno pozicioniranje",
|
||||
content:"Novi sloj..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Spremi",
|
||||
cancel_desc:"Odustani od svih promjena"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Umetni razmak"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Pokreni provjeru pravopisa",
|
||||
download:"Provjera pravopisa nije postaljena. Postaviti sada?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodoravna crta"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emocije"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Prona\u0111i",
|
||||
replace_desc:"Prona\u0111i/Zamijeni"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Umetni/uredi sliku"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link",
|
||||
delta_width:"100"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Kratica",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Brisanje",
|
||||
ins_desc:"Unos",
|
||||
attribs_desc:"Umetni/uredi atribute"
|
||||
},
|
||||
style:{
|
||||
desc:"Uredi CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Zalijepi kao obi\u010Dni tekst",
|
||||
paste_word_desc:"Zalijepi iz Worda",
|
||||
selectall_desc:"Odaberi sve",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prijelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."
|
||||
},
|
||||
table:{
|
||||
desc:"Nova tablica",
|
||||
row_before_desc:"Umetni redak iznad",
|
||||
row_after_desc:"Umetni redak ispod",
|
||||
delete_row_desc:"Izbri\u0161i redak",
|
||||
col_before_desc:"Umetni stupac lijevo",
|
||||
col_after_desc:"Umetni stupac desno",
|
||||
delete_col_desc:"Ukloni stupac",
|
||||
split_cells_desc:"Razdvoji spojene \u0107elije",
|
||||
merge_cells_desc:"Spoji \u0107elije",
|
||||
row_desc:"Svojstva retka",
|
||||
cell_desc:"Svojstva \u0107elije",
|
||||
props_desc:"Svojstva tablice",
|
||||
paste_row_before_desc:"Zalijepi redak iznad",
|
||||
paste_row_after_desc:"Zalijepi redak ispod",
|
||||
cut_row_desc:"Izre\u017Ei redak",
|
||||
copy_row_desc:"Kopiraj redak",
|
||||
del:"Izbri\u0161i tablicu",
|
||||
row:"Redak",
|
||||
col:"Stupac",
|
||||
cell:"\u0106elija"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Promjene u dokumentu \u0107e biti izgubljene ako iza\u0111ete s ove stranice.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di prikaz preko cijelog ekrana"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Svojstva dokumenta"
|
||||
},
|
||||
template:{
|
||||
desc:"Umetni sadr\u017Eaj iz predlo\u017Eak"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizualni kontrolni znakovi uklju\u010Deni/isklju\u010Deni."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di provjeru pravopisa",
|
||||
menu:"Postavke provjere pravopisa",
|
||||
ignore_word:"Zanemari rije\u010D",
|
||||
ignore_words:"Zanemari sver",
|
||||
langs:"Jezici",
|
||||
wait:"Pri\u010Dekajte...",
|
||||
sug:"Prijedlozi",
|
||||
no_sug:"Nema prijedloga",
|
||||
no_mpell:"Nije prona\u0111ena nijedna pravopisna gre\u0161ke."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Umetni prijelom."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/hu.js
Normal file
170
htdocs/resource2/tinymce/langs/hu.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({hu:{
|
||||
common:{
|
||||
edit_confirm:"Haszn\u00E1lni k\u00EDv\u00E1nja a sz\u00F6vegszerkeszt\u0151 m\u00F3dot ebben a sz\u00F6vegdobozban?",
|
||||
apply:"Alkalmaz\u00E1s",
|
||||
insert:"Besz\u00FAr\u00E1s",
|
||||
update:"Friss\u00EDt\u00E9s",
|
||||
cancel:"M\u00E9gsem",
|
||||
close:"Bez\u00E1r\u00E1s",
|
||||
browse:"Tall\u00F3z\u00E1s",
|
||||
class_name:"Oszt\u00E1ly",
|
||||
not_set:"-- Nincs megadva --",
|
||||
clipboard_msg:"A M\u00E1sol\u00E1s/Kiv\u00E1g\u00E1s/Besz\u00FAr\u00E1s funkci\u00F3k nem \u00E9rhet\u0151ek el Mozilla \u00E9s Firefox alatt.\nK\u00EDv\u00E1n t\u00F6bbet tudni err\u0151l a t\u00E9m\u00E1r\u00F3l?",
|
||||
clipboard_no_support:"Jelenleg nem t\u00E1mogatja a b\u00F6ng\u00E9sz\u0151je, haszn\u00E1lja a billenty\u0171kombin\u00E1ci\u00F3kat helyette.",
|
||||
popup_blocked:"A felugr\u00F3 ablakok tilt\u00E1sa miatt nem siker\u00FClt megjelen\u00EDteni egy, az alkalmaz\u00E1shoz sz\u00FCks\u00E9ges ablakot. Enged\u00E9lyezze a b\u00F6ng\u00E9sz\u0151j\u00E9ben a felugr\u00F3 ablakokat, hogy minden funkci\u00F3t haszn\u00E1lhasson.",
|
||||
invalid_data:"Hiba: \u00C9rv\u00E9nytelen adatok, pirossal jel\u00F6lve.",
|
||||
more_colors:"T\u00F6bb sz\u00EDn"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Igaz\u00EDt\u00E1s",
|
||||
left:"Balra",
|
||||
center:"K\u00F6z\u00E9pre",
|
||||
right:"Jobbra",
|
||||
full:"Sorkiz\u00E1r\u00E1s"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y.%m.%d.",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"D\u00E1tum besz\u00FAr\u00E1sa",
|
||||
inserttime_desc:"Id\u0151 besz\u00FAr\u00E1sa",
|
||||
months_long:"janu\u00E1r,febru\u00E1r,m\u00E1rcius,\u00E1prilis,m\u00E1jus,j\u00FAnius,j\u00FAlius,augusztus,szeptember,okt\u00F3ber,november,december",
|
||||
months_short:"jan,feb,m\u00E1r,\u00E1pr,m\u00E1j,j\u00FAn,j\u00FAl,aug,szept,okt,nov,dec",
|
||||
day_long:"vas\u00E1rnap,h\u00E9tf\u0151,kedd,szerda,cs\u00FCt\u00F6rt\u00F6k,p\u00E9ntek,szombat,vas\u00E1rnap",
|
||||
day_short:"V,H,K,Sze,Cs,P,Szo,V"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Nyomtat\u00E1s"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"El\u0151n\u00E9zet"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Balr\u00F3l jobbra",
|
||||
rtl_desc:"Jobbr\u00F3l balra"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u00DAj r\u00E9teg besz\u00FAr\u00E1sa",
|
||||
forward_desc:"Mozgat\u00E1s el\u0151re",
|
||||
backward_desc:"Mozgat\u00E1s h\u00E1tra",
|
||||
absolute_desc:"Abszol\u00FAt poz\u00EDci\u00F3 ki-/bekapcsol\u00E1sa",
|
||||
content:"\u00DAj r\u00E9teg..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Ment\u00E9s",
|
||||
cancel_desc:"\u00D6sszes v\u00E1ltoz\u00E1s visszavon\u00E1sa"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Nemsort\u00F6r\u0151 sz\u00F3k\u00F6z besz\u00FAr\u00E1sa"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Helyes\u00EDr\u00E1s-ellen\u0151rz\u00E9s futtat\u00E1sa",
|
||||
download:"ieSpell nem tal\u00E1lhat\u00F3. Telep\u00EDti most?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"V\u00EDzszintes vonal"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Hangulatjelek"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Keres\u00E9s",
|
||||
replace_desc:"Keres\u00E9s/Csere"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"K\u00E9p besz\u00FAr\u00E1sa/szerkeszt\u00E9se"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Link besz\u00FAr\u00E1sa/szerkeszt\u00E9s"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Id\u00E9zet",
|
||||
abbr_desc:"R\u00F6vid\u00EDt\u00E9s",
|
||||
acronym_desc:"Bet\u0171sz\u00F3",
|
||||
del_desc:"T\u00F6r\u00F6lt",
|
||||
ins_desc:"Besz\u00FArt",
|
||||
attribs_desc:"Tulajdons\u00E1gok besz\u00FAr\u00E1sa/szerkeszt\u00E9se"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS st\u00EDlus szerkeszt\u00E9se"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Besz\u00FAr\u00E1s sz\u00F6vegk\u00E9nt",
|
||||
paste_word_desc:"Besz\u00FAr\u00E1s Wordb\u0151l",
|
||||
selectall_desc:"Mindent kijel\u00F6l",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez.",
|
||||
text_linebreaks:"Sort\u00F6r\u00E9sek megtart\u00E1sa",
|
||||
word_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez."
|
||||
},
|
||||
table:{
|
||||
desc:"T\u00E1bl\u00E1zat besz\u00FAr\u00E1sa/szerkeszt\u00E9se",
|
||||
row_before_desc:"Sor besz\u00FAr\u00E1sa el\u00E9",
|
||||
row_after_desc:"Sor besz\u00FAr\u00E1sa ut\u00E1na",
|
||||
delete_row_desc:"Sor t\u00F6rl\u00E9se",
|
||||
col_before_desc:"Oszlop besz\u00FAr\u00E1sa el\u00E9",
|
||||
col_after_desc:"Oszlop besz\u00FAr\u00E1sa ut\u00E1na",
|
||||
delete_col_desc:"Oszlop t\u00F6rl\u00E9se",
|
||||
split_cells_desc:"Cell\u00E1k feloszt\u00E1sa",
|
||||
merge_cells_desc:"Cell\u00E1k \u00F6sszevon\u00E1sa",
|
||||
row_desc:"Sor tulajdons\u00E1gai",
|
||||
cell_desc:"Cella tulajdons\u00E1gai",
|
||||
props_desc:"T\u00E1bl\u00E1zat tulajdons\u00E1gai",
|
||||
paste_row_before_desc:"Sor bem\u00E1sol\u00E1sa el\u00E9",
|
||||
paste_row_after_desc:"Sor bem\u00E1sol\u00E1sa ut\u00E1na",
|
||||
cut_row_desc:"Sor kiv\u00E1g\u00E1sa",
|
||||
copy_row_desc:"Sor m\u00E1sol\u00E1sa",
|
||||
del:"T\u00E1bl\u00E1zat t\u00F6rl\u00E9se",
|
||||
row:"Sor",
|
||||
col:"Oszlop",
|
||||
cell:"Cella"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"A m\u00F3dos\u00EDt\u00E1sok nem lesznek mentve, ha elhagyja az oldalt.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Teljesk\u00E9perny\u0151s m\u00F3d ki-/bekapcsol\u00E1sa"
|
||||
},
|
||||
media:{
|
||||
desc:"Be\u00E1gyazott m\u00E9dia besz\u00FAr\u00E1sa/szerkeszt\u00E9se",
|
||||
edit:"Be\u00E1gyazott m\u00E9dia szerkeszt\u00E9se"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumentum tulajdons\u00E1gai"
|
||||
},
|
||||
template:{
|
||||
desc:"Sablon beilleszt\u00E9se"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizu\u00E1lis vez\u00E9rl\u0151karakterek be/ki."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Helyes\u00EDr\u00E1s-ellen\u0151rz\u0151 ki-/bekapcsol\u00E1sa",
|
||||
menu:"Helyes\u00EDr\u00E1s-ellen\u0151rz\u0151 tulajdons\u00E1gai",
|
||||
ignore_word:"Sz\u00F3 kihagy\u00E1sa",
|
||||
ignore_words:"Mindet kihagy",
|
||||
langs:"Nyelvek",
|
||||
wait:"K\u00E9rem, v\u00E1rjon...",
|
||||
sug:"Aj\u00E1nl\u00E1sok",
|
||||
no_sug:"Nincs aj\u00E1nl\u00E1s",
|
||||
no_mpell:"Nem tal\u00E1ltam helyes\u00EDr\u00E1si hib\u00E1t."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Oldalt\u00F6r\u00E9s besz\u00FAr\u00E1sa."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"K\u00F6r",
|
||||
disc:"Lemez",
|
||||
square:"Square"
|
||||
}}});
|
173
htdocs/resource2/tinymce/langs/hy.js
Normal file
173
htdocs/resource2/tinymce/langs/hy.js
Normal file
@ -0,0 +1,173 @@
|
||||
tinyMCE.addI18n({hy:{
|
||||
common:{
|
||||
edit_confirm:"\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044F \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C WYSIWYG \u0440\u0435\u0436\u0438\u043C \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u043E\u043B\u044F?",
|
||||
apply:"\u0540\u0561\u057D\u057F\u0561\u057F\u0565\u056C",
|
||||
insert:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C",
|
||||
update:"\u0539\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056C",
|
||||
cancel:"\u0549\u0565\u0572\u0575\u0561\u056C",
|
||||
close:"\u0553\u0561\u056F\u0565\u056C",
|
||||
browse:"\u0534\u056B\u057F\u0565\u056C",
|
||||
class_name:"\u0534\u0561\u057D",
|
||||
not_set:"- \u0568\u0576\u057F\u0580\u0565\u056C -",
|
||||
clipboard_msg:"\u054A\u0561\u057F\u0573\u0565\u0576\u0565\u056C / \u053F\u057F\u0580\u0565\u056C / \u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C (\u0574\u0561\u057F\u0579\u0565\u056C\u056B \u0579\u0567 Mozilla \u0587 Firefox \u0562\u0580\u0561\u0578\u0582\u0566\u0565\u0580\u0576\u0565\u0580\u0578\u0582\u0574) \ n \u0541\u0565\u0566 \u0570\u0565\u057F\u0561\u0584\u0580\u0584\u056B\u055E\u0580 \u0567 \u0561\u0575\u0564 \u056B\u0576\u0586\u0578\u0580\u0574\u0561\u0581\u056B\u0561\u0576",
|
||||
clipboard_no_support:"\u054F\u057E\u0575\u0561\u056C \u057A\u0561\u0570\u056B\u0576 \u0579\u056B \u0568\u0576\u0564\u0578\u0582\u0576\u057E\u0578\u0582\u0574 \u0541\u0565\u0580 \u0562\u0580\u0561\u0578\u0582\u0566\u0565\u0580\u056B \u056F\u0578\u0572\u0574\u056B\u0581, \u0585\u0563\u057F\u0561\u0563\u0578\u0580\u056E\u0565\u0584 \u0570\u0561\u057A\u0561\u057E\u0578\u0582\u0574\u0576\u0565\u0580",
|
||||
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",
|
||||
invalid_data:"\u054D\u056D\u0561\u056C: \u0546\u0565\u0580\u0561\u056E\u057E\u0561\u056E \u0567 \u057D\u056D\u0561\u056C \u0561\u0580\u056A\u0565\u0584, \u0563\u0578\u0582\u0576\u0561\u0576\u0577\u057E\u0561\u056E \u0567 \u056F\u0561\u0580\u0574\u056B\u0580\u0578\u057E",
|
||||
more_colors:"\u0547\u0561\u057F \u0563\u0578\u0582\u0575\u0576\u0565\u0580"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0540\u0561\u057E\u0561\u057D\u0561\u0580\u0565\u0581\u0578\u0582\u0574",
|
||||
left:"\u0538\u057D\u057F \u0571\u0561\u056D \u0565\u0566\u0580\u056B",
|
||||
center:"\u053F\u0565\u0576\u057F\u0580\u0578\u0576\u0561\u0581\u0576\u0565\u056C",
|
||||
right:"\u0538\u057D\u057F \u0561\u057B \u0565\u0566\u0580\u056B",
|
||||
full:"\u0538\u057D\u057F \u056C\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0561\u0576"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"% d.% m.% Y",
|
||||
time_fmt:"% H:% M:% S",
|
||||
insertdate_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u0561\u0574\u057D\u0561\u0569\u056B\u057E",
|
||||
inserttime_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u056A\u0561\u0574\u0561\u0576\u0561\u056F",
|
||||
months_long:"\u0570\u0578\u0582\u0576\u057E\u0561\u0580, \u0583\u0565\u057F\u0580\u057E\u0561\u0580, \u0574\u0561\u0580\u057F, \u0561\u057A\u0580\u056B\u056C, \u0574\u0561\u0575\u056B\u057D, \u0570\u0578\u0582\u0576\u056B\u057D, \u0570\u0578\u0582\u056C\u056B\u057D, \u0585\u0563\u0578\u057D\u057F\u0578\u057D, \u057D\u0565\u057A\u057F\u0565\u0574\u0562\u0565\u0580, \u0570\u0578\u056F\u057F\u0565\u0574\u0562\u0565\u0580, \u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580, \u0564\u0565\u056F\u057F\u0565\u0574\u0562\u0565\u0580",
|
||||
months_short:"\u0570\u0578\u0582\u0576, \u0583\u0565\u057F, \u0574\u0561\u0580\u057F, \u0561\u057A\u0580, \u0574\u0561\u0575\u056B\u057D, \u0570\u0578\u0582\u0576, \u0570\u0578\u0582\u056C, \u0585\u0563\u057D\u057F, \u057D\u0565\u057A\u057F, \u0570\u0578\u056F\u057F, \u0576\u0578\u0575, \u0564\u0565\u056F",
|
||||
day_long:"\u056F\u056B\u0580\u0561\u056F\u056B, \u0565\u0580\u056F\u0578\u0582\u0577\u0561\u0562\u0569\u056B, \u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056B, \u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056B, \u0570\u056B\u0576\u0563\u0577\u0561\u0562\u0569\u056B, \u0578\u0582\u0580\u0562\u0561\u0569, \u0577\u0561\u0562\u0561\u0569, \u056F\u056B\u0580\u0561\u056F\u056B",
|
||||
day_short:"\u053F\u056B\u0580, \u0535\u0580\u056F, \u0535\u0580\u0584, \u0549\u0580\u0584, \u0540\u0576\u0563, \u0548\u0582\u0580\u0562, \u0547\u0562\u0569, \u053F\u056B\u0580"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u054F\u057A\u0565\u056C"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u0534\u056B\u057F\u0565\u056C"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u0548\u0582\u0572\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568\u055D \u0571\u0561\u056D\u056B\u0581 \u0561\u057B",
|
||||
rtl_desc:"\u0548\u0582\u0572\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568\u055D \u0561\u057B\u056B\u0581 \u0571\u0561\u056D"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u0576\u0578\u0580 \u0577\u0565\u0580\u057F",
|
||||
forward_desc:"\u054E\u0565\u0580\u0587",
|
||||
backward_desc:"\u054F\u0565\u0572\u0561\u0583\u0578\u056D\u0565\u056C \u0565\u057F",
|
||||
absolute_desc:"\u053F\u056B\u0580\u0561\u057C\u0565\u056C \u0562\u0561\u0581\u0561\u0580\u0571\u0561\u056F \u057F\u0565\u0572\u0561\u056F\u0561\u0575\u0578\u0582\u0574",
|
||||
content:"\u0546\u0578\u0580 \u0577\u0565\u0580\u057F ..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u054A\u0561\u0570\u057A\u0561\u0576\u0565\u056C",
|
||||
cancel_desc:"\u0549\u0565\u0572\u0561\u0580\u056F\u0565\u056C \u0562\u0561\u056C\u0561\u0580 \u0583\u0578\u0583\u0578\u056D\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u0562\u0561\u0581\u0561\u0580\u056F"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u054F\u0561\u057C\u0561\u057D\u056D\u0561\u056C\u0576\u0565\u0580\u056B \u057D\u057F\u0578\u0582\u0563\u0578\u0582\u0574",
|
||||
download:"ieSpell \u057A\u056C\u0561\u0563\u056B\u0576\u0568 \u0579\u056B \u0563\u057F\u0576\u057E\u0565\u056C\u0589 \u0551\u0561\u0576\u056F\u0561\u0576\u0578\u0582\u055E\u0574 \u0565\u0584 \u057F\u0565\u0572\u0561\u0564\u0580\u0565\u056C"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0540\u0561\u0580\u056B\u0566\u0578\u0576\u0561\u056F\u0561\u0576 \u0562\u0561\u056A\u0561\u0576\u056B\u0579"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u054D\u0574\u0561\u0575\u056C\u056B\u056F\u0576\u0565\u0580"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0548\u0580\u0578\u0576\u0565\u056C",
|
||||
replace_desc:"\u0548\u0580\u0578\u0576\u0565\u056C / \u0553\u0578\u0583\u0578\u056D\u0565\u056C"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C / \u0583\u0578\u0583\u0578\u056D\u0565\u056C \u0576\u056F\u0561\u0580",
|
||||
delta_width:"200"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C / \u0583\u0578\u0583\u0578\u056D\u0565\u056C \u0570\u0572\u0578\u0582\u0574",
|
||||
delta_width:"200"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C / \u0583\u0578\u0583\u0578\u056D\u0565\u056C \u0561\u057F\u0580\u056B\u0562\u0578\u0582\u057F\u0576\u0565\u0580\u0568"
|
||||
},
|
||||
style:{
|
||||
desc:"\u053D\u0574\u0562\u0561\u0563\u0580\u0565\u056C CSS \u0578\u0573\u0565\u0580\u0568"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u0578\u0580\u057A\u0565\u057D \u057F\u0565\u0584\u057D\u057F",
|
||||
paste_word_desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C Word \u056E\u0580\u0561\u0563\u0580\u056B\u0581",
|
||||
selectall_desc:"\u0538\u0576\u057F\u0580\u0565\u056C \u0562\u0578\u056C\u0578\u0580\u0568",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u0555\u0563\u057F\u0561\u0563\u0578\u0580\u056E\u0565\u0584 CTRL + V \u057A\u0561\u057F\u0573\u0565\u0576\u057E\u0561\u056E \u057F\u0565\u0584\u057D\u057F\u056B \u057F\u0565\u0572\u0561\u0564\u0580\u0574\u0561\u0576 \u0570\u0561\u0574\u0561\u0580",
|
||||
text_linebreaks:"\u054A\u0561\u0570\u057A\u0561\u0576\u0565\u056C \u057F\u0578\u0572\u0561\u0564\u0561\u0580\u0571\u0565\u0580\u0568",
|
||||
word_title:"\u0555\u0563\u057F\u0561\u0563\u0578\u0580\u056E\u0565\u0584 CTRL + V \u057A\u0561\u057F\u0573\u0565\u0576\u057E\u0561\u056E \u057F\u0565\u0584\u057D\u057F\u056B \u057F\u0565\u0572\u0561\u0564\u0580\u0574\u0561\u0576 \u0570\u0561\u0574\u0561\u0580"
|
||||
},
|
||||
table:{
|
||||
desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u0576\u0578\u0580 \u0561\u0572\u0575\u0578\u0582\u057D\u0561\u056F",
|
||||
row_before_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0434\u043E",
|
||||
row_after_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043F\u043E\u0441\u043B\u0435",
|
||||
delete_row_desc:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443",
|
||||
col_before_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446 \u0434\u043E",
|
||||
col_after_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446 \u043F\u043E\u0441\u043B\u0435",
|
||||
delete_col_desc:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446",
|
||||
split_cells_desc:"\u0420\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u044C \u044F\u0447\u0435\u0439\u043A\u0438",
|
||||
merge_cells_desc:"\u041E\u0431\u044A\u0435\u0434\u0438\u043D\u0438\u0442\u044C \u044F\u0447\u0435\u0439\u043A\u0438",
|
||||
row_desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0441\u0442\u0440\u043E\u043A\u0435 \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
cell_desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u044F\u0447\u0435\u0439\u043A\u0438 \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
props_desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
paste_row_before_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0434\u043E",
|
||||
paste_row_after_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043F\u043E\u0441\u043B\u0435",
|
||||
cut_row_desc:"\u0412\u044B\u0440\u0435\u0437\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
copy_row_desc:"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
del:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0442\u0430\u0431\u043B\u0438\u0446\u0443",
|
||||
row:"\u0421\u0442\u0440\u043E\u043A\u0430",
|
||||
col:"\u041F\u043E\u043B\u0435",
|
||||
cell:"\u042F\u0447\u0435\u0439\u043A\u0430",
|
||||
cellprops_delta_width:"30"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F, \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u0432\u044B \u0441\u0434\u0435\u043B\u0430\u043B\u0438, \u0431\u0443\u0434\u0443\u0442 \u043F\u043E\u0442\u0435\u0440\u044F\u043D\u044B, \u0435\u0441\u043B\u0438 \u0432\u044B \u043F\u0435\u0440\u0435\u0439\u0434\u0435\u0442\u0435 \u0441 \u044D\u0442\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u041F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C\u0441\u044F \u043D\u0430 \u0432\u0435\u0441\u044C \u044D\u043A\u0440\u0430\u043D"
|
||||
},
|
||||
media:{
|
||||
desc:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C / \u0583\u0578\u0583\u0578\u056D\u0565\u056C \u0574\u0565\u0564\u056B\u0561",
|
||||
edit:"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0448\u0430\u0431\u043B\u043E\u043D\u043D\u044B\u0439 \u043A\u043E\u043D\u0442\u0435\u043D\u0442"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on / off"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u041F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u044C \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0443",
|
||||
menu:"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0438",
|
||||
ignore_word:"\u0418\u0433\u043D\u043E\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u043B\u043E\u0432\u043E",
|
||||
ignore_words:"\u0418\u0433\u043D\u043E\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432\u0441\u0435",
|
||||
langs:"\u042F\u0437\u044B\u043A\u0438",
|
||||
wait:"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435 ...",
|
||||
sug:"\u0412\u0430\u0440\u0438\u0430\u043D\u0442\u044B",
|
||||
no_sug:"\u041D\u0435\u0442 \u0432\u0430\u0440\u0438\u0430\u043D\u0442\u043E\u0432",
|
||||
no_mpell:"\u041E\u0448\u0438\u0431\u043E\u043A \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0440\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u0435\u043B\u044C \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ia.js
Normal file
170
htdocs/resource2/tinymce/langs/ia.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ia:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u5728\u8BE5text area\u5185\u542F\u7528\u6240\u89C1\u5373\u6240\u5F97\u6A21\u5F0F\uFF1F",
|
||||
apply:"\u5E94\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u5173\u95ED",
|
||||
browse:"\u6D4F\u89C8",
|
||||
class_name:"\u6837\u5F0F\u7C7B\u540D",
|
||||
not_set:"-- \u672A\u8BBE\u7F6E --",
|
||||
clipboard_msg:"\u590D\u5236\u3001\u526A\u5207\u548C\u7C98\u8D34\u529F\u80FD\u5728Mozilla \u548C Firefox\u4E2D\u65E0\u6CD5\u4F7F\u7528",
|
||||
clipboard_no_support:"\u5C1A\u4E0D\u652F\u6301\u60A8\u6240\u4F7F\u7528\u7684\u6D4F\u89C8\u5668\uFF0C\u8BF7\u4F7F\u7528\u952E\u76D8\u65B9\u5F0F\u64CD\u4F5C",
|
||||
popup_blocked:"\u5BF9\u4E0D\u8D77\uFF0C\u60A8\u7684\u5FEB\u663E\u7A97\u53E3\u963B\u6B62\u7A0B\u5E8F\u5DF2\u7ECF\u963B\u6B62\u4E86\u672C\u5FEB\u663E\u7A97\u53E3\uFF0C\u8BF7\u8C03\u6574\u4F60\u7684\u6D4F\u89C8\u5668\u8BBE\u7F6E\uFF0C\u5141\u8BB8\u672C\u7F51\u7AD9\u5F39\u51FA\u65B0\u7A97\u53E3\uFF0C\u4EE5\u4FBF\u4F7F\u7528\u6B64\u529F\u80FD",
|
||||
invalid_data:"\u9519\u8BEF\uFF1A\u8F93\u5165\u4E86\u65E0\u6548\u7684\u503C\uFF0C\u5DF2\u6807\u8BB0\u4E3A\u7EA2\u8272\u3002",
|
||||
more_colors:"\u66F4\u591A\u989C\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5BF9\u9F50\u65B9\u5F0F",
|
||||
left:"\u5DE6\u5BF9\u9F50",
|
||||
center:"\u5C45\u4E2D",
|
||||
right:"\u53F3\u5BF9\u9F50",
|
||||
full:"\u4E24\u7AEF\u5BF9\u9F50"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u4ECA\u5929\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u73B0\u5728\u65F6\u95F4",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u5468\u65E5,\u5468\u4E00,\u5468\u4E8C,\u5468\u4E09,\u5468\u56DB,\u5468\u4E94,\u5468\u516D,\u5468\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u6253\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9884\u89C8"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u6587\u5B57\u4ECE\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u6587\u5B57\u4ECE\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5C42",
|
||||
forward_desc:"\u524D\u7F6E",
|
||||
backward_desc:"\u540E\u7F6E",
|
||||
absolute_desc:"\u7EDD\u5BF9\u4F4D\u7F6E",
|
||||
content:"\u65B0\u589E\u5C42..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u4FDD\u5B58",
|
||||
cancel_desc:"\u653E\u5F03\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u683C\u7B26"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u6267\u884C\u62FC\u5199\u68C0\u67E5",
|
||||
download:"\u672A\u68C0\u6D4B\u5230ieSpell\u7EC4\u4EF6\uFF0C\u662F\u5426\u73B0\u5728\u5B89\u88C5 ?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u5206\u9694\u7EBF"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u8868\u60C5"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u67E5\u627E",
|
||||
replace_desc:"\u67E5\u627E/\u66FF\u6362"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7F16\u8F91 \u56FE\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7F16\u8F91 \u8FDE\u7ED3"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u7528",
|
||||
abbr_desc:"\u7F29\u5199",
|
||||
acronym_desc:"\u9996\u5B57\u6BCD\u7F29\u5199",
|
||||
del_desc:"\u5220\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7F16\u8F91 \u5C5E\u6027"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7F16\u8F91 CSS \u6837\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u7C98\u8D34\u4E3A\u7EAF\u6587\u5B57",
|
||||
paste_word_desc:"\u7C98\u8D34\u4E3AWord\u683C\u5F0F",
|
||||
selectall_desc:"\u5168\u9009",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
|
||||
word_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u5728\u4E0A\u65B9\u63D2\u5165\u884C",
|
||||
row_after_desc:"\u5728\u4E0B\u65B9\u63D2\u5165\u884C",
|
||||
delete_row_desc:"\u5220\u9664\u5F53\u524D\u884C",
|
||||
col_before_desc:"\u5728\u5DE6\u4FA7\u63D2\u5165\u5217",
|
||||
col_after_desc:"\u5728\u53F3\u4FA7\u63D2\u5165\u5217",
|
||||
delete_col_desc:"\u5220\u9664\u5F53\u524D\u5217",
|
||||
split_cells_desc:"\u62C6\u5206\u50A8\u5B58\u683C",
|
||||
merge_cells_desc:"\u5408\u5E76\u50A8\u5B58\u683C",
|
||||
row_desc:"\u5217 \u5C5E\u6027",
|
||||
cell_desc:"\u50A8\u5B58\u683C \u5C5E\u6027",
|
||||
props_desc:"\u8868\u683C \u5C5E\u6027",
|
||||
paste_row_before_desc:"\u7C98\u8D34\u884C\u5230\u4E0A\u65B9",
|
||||
paste_row_after_desc:"\u7C98\u8D34\u884C\u5230\u4E0B\u65B9",
|
||||
cut_row_desc:"\u526A\u5207\u5F53\u524D\u5217",
|
||||
copy_row_desc:"\u590D\u5236\u5F53\u524D\u5217",
|
||||
del:"\u5220\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u50A8\u5B58\u683C"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u5982\u679C\u79BB\u5F00\u8BE5\u9875\u5C06\u5BFC\u81F4\u6240\u6709\u4FEE\u6539\u5168\u90E8\u4E22\u5931\u3002",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5168\u5C4F\u6A21\u5F0F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7F16\u8F91 \u5A92\u4F53",
|
||||
edit:"\u7F16\u8F91 \u5A92\u4F53"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6587\u4EF6"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9009\u5B9A\u7684\u8303\u672C"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u663E\u793A\u63A7\u5236\u7B26\u53F7\u3002"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u62FC\u5199\u68C0\u67E5",
|
||||
menu:"\u62FC\u5199\u68C0\u67E5 \u8BBE\u7F6E",
|
||||
ignore_word:"\u5FFD\u7565",
|
||||
ignore_words:"\u5168\u90E8\u5FFD\u7565",
|
||||
langs:"\u8BED\u8A00\u6E05\u5355",
|
||||
wait:"\u8BF7\u7A0D\u5019...",
|
||||
sug:"\u5EFA\u8BAE\u8BCD",
|
||||
no_sug:"\u65E0\u62FC\u5199\u5EFA\u8BAE",
|
||||
no_mpell:"\u65E0\u62FC\u5199\u9519\u8BEF"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9875\u7B26\u53F7"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/id.js
Normal file
170
htdocs/resource2/tinymce/langs/id.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({id:{
|
||||
common:{
|
||||
edit_confirm:"Gunakan mode WYSIWYG untuk textarea ini?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste tidak tersedia pada Mozilla dan Firefox.\nButuh info selengkapnya?",
|
||||
clipboard_no_support:"Tidak didukung Browser, gunakan shortcut dari keyboard.",
|
||||
popup_blocked:"Maaf, popup-blocker anda telah menonaktifkan jendela aplikasi yang menyediakan fungsionalitas. Nonaktifkan popup-blocker untuk sepenuhnya memanfaatkan alat ini.",
|
||||
invalid_data:"Error: nilai invalid, ditandai dengan dengan warna merah",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Kiri",
|
||||
center:"Tengah",
|
||||
right:"Kanan",
|
||||
full:"Penuh"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"sisipkan tanggal",
|
||||
inserttime_desc:"sisipkan waktu",
|
||||
months_long:"Januari,Februari,Maren,April,Mei,Juni,Juli,Agustus,September,Oktober,November,Desember",
|
||||
months_short:"Jan,Feb,Mar,Apr,Mei,Jun,Jul,Ags,Sep,Okt,Nov,Des",
|
||||
day_long:"Minggu,Senin,Selasa,Rabu,Kamis,Jumat,Sabtu,Minggu",
|
||||
day_short:"Min,Sen,Sel,Rab,Kam,Jum,Sab,Min"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Cetak"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Arah kiri ke kanan",
|
||||
rtl_desc:"Arah kanan ke kiri"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"sisipkan layer Baru",
|
||||
forward_desc:"Pindah ke depan",
|
||||
backward_desc:"Pindah ke belakang",
|
||||
absolute_desc:"Beralih posisi absolut",
|
||||
content:"Layer baru..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Simpan",
|
||||
cancel_desc:"Batalkan semua perubahan"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"sisipkan karakter non-breaking space"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Jalankan spell checking",
|
||||
download:"ieSpell tidak terdeteksi. Instal sekarang?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Cari",
|
||||
replace_desc:"Cari/Ganti"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"sisipkan/Ubah Gambar"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Sisipkan/Ubah link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Kutipan",
|
||||
abbr_desc:"Singkatan/Kependekan Kata",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Penghapusan",
|
||||
ins_desc:"Penyisipan",
|
||||
attribs_desc:"Sisip/Ubah Atribut"
|
||||
},
|
||||
style:{
|
||||
desc:"Ubah CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Gunakan CTRL+V pada keyboard untuk paste.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Gunakan CTRL+V pada keyboard untuk paste."
|
||||
},
|
||||
table:{
|
||||
desc:"Sisipkan tabel baru",
|
||||
row_before_desc:"Sisipkan row sebelum",
|
||||
row_after_desc:"Sisipkan row sesudah",
|
||||
delete_row_desc:"Hapus row",
|
||||
col_before_desc:"Sisipkan column sebelum",
|
||||
col_after_desc:"Sisipkan column setelah",
|
||||
delete_col_desc:"Hapus column",
|
||||
split_cells_desc:"Pisahkan cell tabel yang di-merge",
|
||||
merge_cells_desc:"Merge cell tabel",
|
||||
row_desc:"Properti row tabel",
|
||||
cell_desc:"Properti cell tabel",
|
||||
props_desc:"Properti tabel",
|
||||
paste_row_before_desc:"Paste row tabel sebelum",
|
||||
paste_row_after_desc:"Paste row tabel sesudah",
|
||||
cut_row_desc:"Cut row tabel",
|
||||
copy_row_desc:"Copy row tabel",
|
||||
del:"Hapus Tabel",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Perubahan yang dilakukan akan hilang jika Anda pindah dari halaman ini.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Properti Dokumen"
|
||||
},
|
||||
template:{
|
||||
desc:"Menyisipkan template standar isi"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Pengendalian visual karakter on/off"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Pengaturan Spellchecker ",
|
||||
ignore_word:"Abaikan kata",
|
||||
ignore_words:"Abaikan semua",
|
||||
langs:"Bahasa",
|
||||
wait:"Harap tunggu...",
|
||||
sug:"Saran",
|
||||
no_sug:"Tidak ada saran",
|
||||
no_mpell:"Tidak ada misspellings ditemukan."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Sisipkan page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
178
htdocs/resource2/tinymce/langs/ii.js
Normal file
178
htdocs/resource2/tinymce/langs/ii.js
Normal file
@ -0,0 +1,178 @@
|
||||
tinyMCE.addI18n({ii:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u5728\u6B64textarea\u6807\u7B7E\u5185\u4F7F\u7528\"\u6240\u89C1\u5373\u6240\u5F97\"\u6A21\u5F0F\uFF1F",
|
||||
apply:"\u5E94\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u5173\u95ED",
|
||||
browse:"\u6D41\u89C8",
|
||||
class_name:"\u6837\u5F0F",
|
||||
not_set:"--\u672A\u8BBE\u7F6E--",
|
||||
clipboard_msg:"\u590D\u5236\u3001\u526A\u5207\u3001\u7C98\u8D34\u529F\u80FD\u5728Mozilla\u548CFirefox\u4E2D\u4E0D\u80FD\u4F7F\u7528\u3002 \n\u662F\u5426\u9700\u8981\u4E86\u89E3\u66F4\u591A\u6709\u5173\u6B64\u95EE\u9898\u7684\u8D44\u8BAF\uFF1F",
|
||||
clipboard_no_support:"\u8FD8\u4E0D\u652F\u63F4\u60A8\u7684\u6D41\u89C8\u5668\uFF0C\u8BF7\u4F7F\u7528\u952E\u76D8\u5FEB\u901F\u952E",
|
||||
popup_blocked:"\u62B1\u6B49\uFF01\u5F39\u51FA\u7A97\u53E3\u5DF2\u88AB\u963B\u6B62\uFF0C\u8BF7\u8C03\u6574\u6D41\u89C8\u5668\u8BBE\u7F6E\uFF0C\u5141\u8BB8\u6B64\u7F51\u7AD9\u53EF\u5F39\u51FA\u65B0\u7A97\u53E3\uFF0C\u4EE5\u4FBF\u4F7F\u7528\u6B64\u5DE5\u5177",
|
||||
invalid_data:"\u9519\u8BEF:\u65E0\u6548\u8F93\u5165\u503C\uFF0C\u5DF2\u6807\u8BB0\u4E3A\u7EA2\u8272\u3002",
|
||||
more_colors:"\u66F4\u591A\u989C\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5BF9\u9F50\u65B9\u5F0F",
|
||||
left:"\u9760\u5DE6\u5BF9\u9F50",
|
||||
center:"\u5C45\u4E2D\u5BF9\u9F50",
|
||||
right:"\u9760\u53F3\u5BF9\u9F50",
|
||||
full:"\u4E24\u7AEF\u5BF9\u9F50"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u4ECA\u5929\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u73B0\u5728\u65F6\u95F4",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u5468\u65E5,\u5468\u4E00,\u5468\u4E8C,\u5468\u4E09,\u5468\u56DB,\u5468\u4E94,\u5468\u516D,\u5468\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5217\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9884\u89C8"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u6587\u5B57\u4ECE\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u6587\u5B57\u4ECE\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5C42",
|
||||
forward_desc:"\u7F6E\u524D",
|
||||
backward_desc:"\u7F6E\u540E",
|
||||
absolute_desc:"\u5F00\u5173\u7EDD\u5BF9\u4F4D\u7F6E",
|
||||
content:"\u65B0\u589E\u5C42..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u4FDD\u5B58",
|
||||
cancel_desc:"\u53D6\u6D88\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u767D\u683C"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u62FC\u5199\u68C0\u67E5",
|
||||
download:"\u672A\u68C0\u6D4B\u5230ieSpell\u7684\u5B58\u5728\u3002\u662F\u5426\u73B0\u5728\u7ACB\u5373\u5B89\u88C5\uFF1F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7EBF"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u56FE\u91CA"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u67E5\u627E",
|
||||
replace_desc:"\u67E5\u627E/\u66FF\u6362"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7F16\u8F91\u56FE\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7F16\u8F91\u8FDE\u7ED3"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u6587",
|
||||
abbr_desc:"\u7F29\u5199",
|
||||
acronym_desc:"\u9996\u5B57\u7F29\u5199",
|
||||
del_desc:"\u5220\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7F16\u8F91\u5C5E\u6027",
|
||||
attribs_delta_width:"40",
|
||||
attribs_delta_height:"60"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7F16\u8F91CSS\u6837\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u4EE5\u7EAF\u6587\u5B57\u7C98\u8D34",
|
||||
paste_word_desc:"\u4ECEWord\u7C98\u8D34",
|
||||
selectall_desc:"\u5168\u9009",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u7C98\u8D34\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
|
||||
word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u7C98\u8D34\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u63D2\u5165\u4E0A\u65B9\u884C",
|
||||
row_after_desc:"\u63D2\u5165\u4E0B\u65B9\u884C",
|
||||
delete_row_desc:"\u5220\u9664\u6240\u5728\u884C",
|
||||
col_before_desc:"\u63D2\u5165\u5DE6\u65B9\u5217",
|
||||
col_after_desc:"\u63D2\u5165\u53F3\u65B9\u5217",
|
||||
delete_col_desc:"\u5220\u9664\u6240\u5728\u5217",
|
||||
split_cells_desc:"\u5206\u5272\u50A8\u5B58\u683C",
|
||||
merge_cells_desc:"\u5408\u5E76\u50A8\u5B58\u683C",
|
||||
row_desc:"\u884C\u5C5E\u6027",
|
||||
cell_desc:"\u50A8\u5B58\u683C\u5C5E\u6027",
|
||||
props_desc:"\u8868\u683C\u5C5E\u6027",
|
||||
paste_row_before_desc:"\u8D34\u5728\u4E0A\u884C",
|
||||
paste_row_after_desc:"\u8D34\u5728\u4E0B\u884C",
|
||||
cut_row_desc:"\u526A\u5207\u9009\u62E9\u884C",
|
||||
copy_row_desc:"\u590D\u5236\u9009\u62E9\u884C",
|
||||
del:"\u5220\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u50A8\u5B58\u683C",
|
||||
cellprops_delta_width:"10",
|
||||
cellprops_delta_height:"10",
|
||||
table_delta_width:"40",
|
||||
table_delta_height:"60",
|
||||
merge_cells_delta_width:"40",
|
||||
merge_cells_delta_height:"40"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u5982\u679C\u79BB\u5F00\u6B64\u9875\u9762\u5C06\u5BFC\u81F4\u6240\u505A\u7684\u66F4\u6539\u5168\u90E8\u4E22\u5931\u3002",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5F00\u5173\u5168\u5C4F\u6A21\u5F0F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53",
|
||||
edit:"\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6863\u6848\u5C5E\u6027"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9884\u5B9A\u7684\u8303\u672C\u5185\u5BB9"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u663E\u793A\u63A7\u5236\u7B26\u53F7\u5F00/\u5173\u3002"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u5F00\u5173\u62FC\u5199\u68C0\u67E5",
|
||||
menu:"\u62FC\u5199\u68C0\u67E5\u8BBE\u7F6E",
|
||||
ignore_word:"\u7565\u8FC7",
|
||||
ignore_words:"\u5168\u90E8\u7565\u8FC7",
|
||||
langs:"\u8BED\u8A00",
|
||||
wait:"\u8BF7\u7A0D\u5019...",
|
||||
sug:"\u63A8\u8350\u5B57\u8BCD",
|
||||
no_sug:"\u65E0\u62FC\u5199\u63A8\u8350",
|
||||
no_mpell:"\u672A\u53D1\u73B0\u62FC\u5199\u9519\u8BEF"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9875\u7B26\u53F7"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
182
htdocs/resource2/tinymce/langs/is.js
Normal file
182
htdocs/resource2/tinymce/langs/is.js
Normal file
@ -0,0 +1,182 @@
|
||||
tinyMCE.addI18n({is:{
|
||||
common:{
|
||||
edit_confirm:"Viltu nota WYSIWYG ritil fyrir \u00FEetta textasv\u00E6\u00F0i?",
|
||||
apply:"Sta\u00F0festa",
|
||||
insert:"Setja inn",
|
||||
update:"Uppf\u00E6ra",
|
||||
cancel:"H\u00E6tta vi\u00F0",
|
||||
close:"Loka",
|
||||
browse:"Gramsa",
|
||||
class_name:"Klasi",
|
||||
not_set:"-- Ekki skilgreint --",
|
||||
clipboard_msg:"Afrita/Klippa/L\u00EDma er ekki a\u00F0gengilegt \u00ED Mozilla og Firefox eins og er.\nViltu f\u00E1 n\u00E1nari uppl\u00FDsingar?",
|
||||
clipboard_no_support:"Ekki stutt \u00ED \u00FE\u00EDnum vefsko\u00F0ara, nota\u00F0ur fl\u00FDtilykla \u00ED sta\u00F0inn.",
|
||||
popup_blocked:"Afsaki\u00F0, uppsprettuv\u00F6rnin \u00FE\u00EDn (popup blocker) hefur loka\u00F0 \u00E1 glugga sem er hluti af ritlinum. \u00DE\u00FA ver\u00F0ur a\u00F0 sl\u00F6kkva \u00E1 uppsprettuv\u00F6rn til a\u00F0 geta nota\u00F0 \u00FEennan ritil.",
|
||||
invalid_data:"Villa: Vitlaus gildi slegin inn, \u00FEau eru merkt me\u00F0 rau\u00F0u.",
|
||||
more_colors:"Fleiri litir"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"J\u00F6fnun",
|
||||
left:"Vinstri",
|
||||
center:"Mi\u00F0ja",
|
||||
right:"H\u00E6gri",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Setja inn dagsetningu",
|
||||
inserttime_desc:"Setja inn t\u00EDmasetningu",
|
||||
months_long:"Jan\u00FAar,Febr\u00FAar,Mars,Apr\u00EDl,Ma\u00ED,J\u00FAn\u00ED,J\u00FAl\u00ED,\u00C1g\u00FAst,September,Okt\u00F3ber,N\u00F3vember,Desember",
|
||||
months_short:"Jan,Feb,Mar,Apr,Ma\u00ED,J\u00FAn,J\u00FAl,\u00C1gs,Sep,Okt,N\u00F3v,Des",
|
||||
day_long:"Sunnudagur,M\u00E1nudagur,\u00DEri\u00F0judagur,Mi\u00F0vikudagur,Fimmtudagur,F\u00F6studagur,Laugardagur,Sunnudagur",
|
||||
day_short:"Sun,M\u00E1n,\u00DEri,Mi\u00F0,Fim,F\u00F6s,Lau,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Prenta"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Forsko\u00F0a"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Fr\u00E1 vinstri til h\u00E6gri",
|
||||
rtl_desc:"Fr\u00E1 h\u00E6gri til vinstri"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Setja inn n\u00FDtt lag",
|
||||
forward_desc:"F\u00E6ra framfyrir",
|
||||
backward_desc:"F\u00E6ra afturfyrir",
|
||||
absolute_desc:"Taka af/setja \u00E1 algj\u00F6ra j\u00F6fnun",
|
||||
content:"N\u00FDtt lag..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Vista",
|
||||
cancel_desc:"H\u00E6tta vi\u00F0 allar breytingar"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Setja inn bil staf"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Lesa yfir",
|
||||
download:"ieSpell fannst ekki. Viltu setja \u00FEa\u00F0 inn n\u00FAna?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"L\u00E1r\u00E9tt l\u00EDna",
|
||||
delta_width:"Breidd",
|
||||
delta_height:"H\u00E6\u00F0"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Broskarlar",
|
||||
delta_width:"Breidd",
|
||||
delta_height:"H\u00E6\u00F0"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Finna",
|
||||
replace_desc:"Finna/Skipta \u00FAt",
|
||||
delta_width:"Breidd",
|
||||
delta_height:"H\u00E6\u00F0"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Setja inn/breyta mynd",
|
||||
delta_width:"Breidd",
|
||||
delta_height:"H\u00E6\u00F0"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Setja inn/breyta hlekk",
|
||||
delta_width:"Breidd",
|
||||
delta_height:"H\u00E6\u00F0"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Skammst\u00F6fun",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Ey\u00F0a",
|
||||
ins_desc:"Vi\u00F0b\u00F3t",
|
||||
attribs_desc:"Skr\u00E1/breyta gildum"
|
||||
},
|
||||
style:{
|
||||
desc:"Breyta st\u00EDlsni\u00F0i",
|
||||
delta_width:"Breidd",
|
||||
delta_height:"H\u00E6\u00F0"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"L\u00EDma sem hreinn texti",
|
||||
paste_word_desc:"L\u00EDma \u00FAr Word",
|
||||
selectall_desc:"Velja allt",
|
||||
plaintext_mode_sticky:"L\u00EDma er n\u00FA \u00ED venjulegum textaham. Smelltu aftur til a\u00F0 skipta yfir \u00ED venjulegan l\u00EDma ham. Eftir a\u00F0 \u00FE\u00FA l\u00EDmir eitthva\u00F0 f\u00E6rist \u00FE\u00FA sj\u00E1lfvirkt aftur \u00ED venjulegan ham.",
|
||||
plaintext_mode:"L\u00EDma er n\u00FA \u00ED venjulegum textaham. Smelltu aftur til a\u00F0 skipta aftur \u00ED venjulegan ham"
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Nota\u00F0u CTRL+V \u00E1 lyklabor\u00F0inu til a\u00F0 l\u00EDma textanum \u00ED ritilinn.",
|
||||
text_linebreaks:"Halda endingu l\u00EDna",
|
||||
word_title:"Nota\u00F0u CTRL+V \u00E1 lyklabo\u00F0rinu til a\u00F0 l\u00EDma textanum \u00ED ritilinn."
|
||||
},
|
||||
table:{
|
||||
desc:"Setja inn n\u00FDja t\u00F6flu",
|
||||
row_before_desc:"Setja inn n\u00FDja r\u00F6\u00F0 fyrir ofan",
|
||||
row_after_desc:"Setja inn n\u00FDja r\u00F6\u00F0 fyrir ne\u00F0an",
|
||||
delete_row_desc:"Ey\u00F0a r\u00F6\u00F0",
|
||||
col_before_desc:"Setja inn n\u00FDjan d\u00E1lk fyrir framan",
|
||||
col_after_desc:"Setja inn n\u00FDjan d\u00E1lk fyrir aftan",
|
||||
delete_col_desc:"Ey\u00F0a d\u00E1lk",
|
||||
split_cells_desc:"Sundra sameinu\u00F0um t\u00F6flureitum",
|
||||
merge_cells_desc:"Sameina t\u00F6flureiti",
|
||||
row_desc:"Eiginleikar ra\u00F0ar",
|
||||
cell_desc:"Eiginleikar d\u00E1lka",
|
||||
props_desc:"Eiginleikar t\u00F6flu",
|
||||
paste_row_before_desc:"L\u00EDma t\u00F6flur\u00F6\u00F0 fyrir ofan",
|
||||
paste_row_after_desc:"L\u00EDma t\u00F6flur\u00F6\u00F0 fyrir ne\u00F0an",
|
||||
cut_row_desc:"Klippa r\u00F6\u00F0ina",
|
||||
copy_row_desc:"Afrita r\u00F6\u00F0ina",
|
||||
del:"Ey\u00F0a t\u00F6flu",
|
||||
row:"R\u00F6\u00F0",
|
||||
col:"D\u00E1lkur",
|
||||
cell:"Reitur"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Breytingar sem \u00FE\u00FA ger\u00F0ir hafa ekki veri\u00F0 vista\u00F0ar",
|
||||
restore_content:"N\u00E1 \u00ED vistu\u00F0 g\u00F6gn",
|
||||
warning_message:"Ef \u00FE\u00FA n\u00E6r\u00F0 \u00ED vistu\u00F0u g\u00F6gnin \u00FE\u00E1 missir \u00FE\u00FA allt innihald sem er n\u00FA \u00FEegar \u00ED ritlinum.\n\nErtu viss um a\u00F0 \u00FE\u00FA viljir keyra vistu\u00F0u g\u00F6gnin yfir?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Skipta \u00E1 milli heilskj\u00E1s"
|
||||
},
|
||||
media:{
|
||||
desc:"Setja inn / Breyta birtingu margmi\u00F0lunar",
|
||||
edit:"Breyta birtanlegri margmi\u00F0lun"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Setja inn tilb\u00FAi\u00F0 sni\u00F0"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Virka/\u00F3virkja villup\u00FAka",
|
||||
menu:"Stillingar villup\u00FAka",
|
||||
ignore_word:"Sleppa or\u00F0i",
|
||||
ignore_words:"Sleppa \u00F6llu",
|
||||
langs:"Tungum\u00E1l",
|
||||
wait:"Augnablik...",
|
||||
sug:"Till\u00F6gur",
|
||||
no_sug:"Engar till\u00F6gur",
|
||||
no_mpell:"Fann engar stafsetningavillur."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/it.js
Normal file
170
htdocs/resource2/tinymce/langs/it.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({it:{
|
||||
common:{
|
||||
edit_confirm:"Usare la modalit\u00E0 WYSIWYG per questa textarea?",
|
||||
apply:"Applica",
|
||||
insert:"Inserisci",
|
||||
update:"Aggiorna",
|
||||
cancel:"Annulla",
|
||||
close:"Chiudi",
|
||||
browse:"Sfoglia",
|
||||
class_name:"Classe",
|
||||
not_set:"-- Non impostato --",
|
||||
clipboard_msg:"Copia/Taglia/Incolla non \u00E8 disponibile in Mozilla e Firefox.\nSi desidera avere maggiori informazioni su questo problema?",
|
||||
clipboard_no_support:"Attualmente non supportato dal browser in uso, usare le scorciatoie da tastiera.",
|
||||
popup_blocked:"Spiacente, ma il blocco popup ha disabilitato una finestra che fornisce funzionalit\u00E0 dell'applicazione. Si deve disabilitare il blocco popup per questo sito per poter utlizzare appieno questo strumento.",
|
||||
invalid_data:"Errore: valori inseriti non validi, sono marcati in rosso.",
|
||||
more_colors:"Colori aggiuntivi"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Allineamento",
|
||||
left:"Allinea a sinistra",
|
||||
center:"Centra",
|
||||
right:"Allinea a destra",
|
||||
full:"Giustifica"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Inserisci data",
|
||||
inserttime_desc:"Inserisci ora",
|
||||
months_long:"Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre",
|
||||
months_short:"Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic",
|
||||
day_long:"Domenica,Luned\u00EC,Marted\u00EC,Mercoled\u00EC,Gioved\u00EC,Venerd\u00EC,Sabato,Domenica",
|
||||
day_short:"Dom,Lun,Mar,Mer,Gio,Ven,Sab,Dom"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Stampa"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Anteprima"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direzione da sinistra a destra",
|
||||
rtl_desc:"Direzione da destra a sinistra"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Inserisci nuovo layer",
|
||||
forward_desc:"Porta in rilievo",
|
||||
backward_desc:"Porta in sfondo",
|
||||
absolute_desc:"Attiva/Disattiva posizionamento assoluto",
|
||||
content:"Nuovo layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Salva",
|
||||
cancel_desc:"Cancella tutte le modifiche"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Inserisci uno spazio"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Esegui controllo ortografico",
|
||||
download:"ieSpell non rilevato. Installarlo ora?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Riga orizzontale"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Faccine"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Trova",
|
||||
replace_desc:"Trova/Sostituisci"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Inserisci/modifica immagine"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Inserisci/modifica collegamento"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citazione",
|
||||
abbr_desc:"Abbreviazione",
|
||||
acronym_desc:"Acronimo",
|
||||
del_desc:"Cancellamento",
|
||||
ins_desc:"Inserimento",
|
||||
attribs_desc:"Inserisci/modifica attributi"
|
||||
},
|
||||
style:{
|
||||
desc:"Modifica stile CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Incolla come testo semplice",
|
||||
paste_word_desc:"Incolla da Word",
|
||||
selectall_desc:"Seleziona tutto",
|
||||
plaintext_mode_sticky:"Incolla adesso e in modalit\u00E0 testo. Clicca nuovamente per tornare alla modalit\u00E0 normale. Dopo che avrai incollato qualcosa tornerai alla modalit\u00E0 normale",
|
||||
plaintext_mode:"Incolla adesso e in modalit\u00E0 testo. Clicca nuovamente per tornare alla modalit\u00E0 normale."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.",
|
||||
text_linebreaks:"Mantieni interruzioni di riga",
|
||||
word_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserisci una nuova tabella",
|
||||
row_before_desc:"Inserisci riga prima",
|
||||
row_after_desc:"Inserisci riga dopo",
|
||||
delete_row_desc:"Elimina riga",
|
||||
col_before_desc:"Inserisci colonna prima",
|
||||
col_after_desc:"Inserisci colonna dopo",
|
||||
delete_col_desc:"Elimina colonna",
|
||||
split_cells_desc:"Separa celle",
|
||||
merge_cells_desc:"Unisci celle",
|
||||
row_desc:"Propriet\u00E0 riga",
|
||||
cell_desc:"Propriet\u00E0 cella",
|
||||
props_desc:"Propriet\u00E0 tabella",
|
||||
paste_row_before_desc:"Incolla riga prima",
|
||||
paste_row_after_desc:"Incolla riga dopo",
|
||||
cut_row_desc:"Taglia riga",
|
||||
copy_row_desc:"Copia riga",
|
||||
del:"Elimina tabella",
|
||||
row:"Riga",
|
||||
col:"Colonna",
|
||||
cell:"Cella"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"I cambiamenti effettuati saranno persi se si abbandona la pagina corrente.",
|
||||
restore_content:"Ripristina i dati salvati automaticamente",
|
||||
warning_message:"Se ripristini i dati salvati automaticamente perderai i dati attuali dell'editor\n\nSei sicuro di voler ripristinare i dati?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Attiva/disattiva modalit\u00E0 a tutto schermo"
|
||||
},
|
||||
media:{
|
||||
desc:"Inserisci/modifica file multimediale",
|
||||
edit:"Modifica file multimediale"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propriet\u00E0 Documento"
|
||||
},
|
||||
template:{
|
||||
desc:"Inserisci contenuto da modello predefinito"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Attiva/disattiva caratteri di controllo visuale."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Attiva/disattiva controllo ortografico",
|
||||
menu:"Impostazioni controllo ortografico",
|
||||
ignore_word:"Ignora parola",
|
||||
ignore_words:"Ignora tutto",
|
||||
langs:"Lingue",
|
||||
wait:"Attendere prego...",
|
||||
sug:"Suggerimenti",
|
||||
no_sug:"Nessun suggerimento",
|
||||
no_mpell:"Nessun errore rilevato."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Inserisci intterruzione di pagina."
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipi",
|
||||
def:"Default",
|
||||
lower_alpha:"Minuscolo alfanumerico",
|
||||
lower_greek:"Minuscolo lettera greca",
|
||||
lower_roman:"Minuscolo lettere romane",
|
||||
upper_alpha:"Maiuscolo alfanumerico",
|
||||
upper_roman:"Maiuscolo lettere romane",
|
||||
circle:"Cerchio",
|
||||
disc:"Punto",
|
||||
square:"Quadrato"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ja.js
Normal file
170
htdocs/resource2/tinymce/langs/ja.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ja:{
|
||||
common:{
|
||||
edit_confirm:"WYSIWYG\u30E2\u30FC\u30C9\u306B\u5207\u308A\u66FF\u3048\u307E\u3059\u304B\uFF1F",
|
||||
apply:"\u9069\u7528",
|
||||
insert:"\u633F\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u30AD\u30E3\u30F3\u30BB\u30EB",
|
||||
close:"\u9589\u3058\u308B",
|
||||
browse:"\u53C2\u7167",
|
||||
class_name:"class\u5C5E\u6027",
|
||||
not_set:"-- \u672A\u8A2D\u5B9A --",
|
||||
clipboard_msg:"\u3053\u306E\u30B3\u30DE\u30F3\u30C9\u306FFirefox\u3067\u306F\u4F7F\u7528\u3067\u304D\u307E\u305B\u3093\u3002",
|
||||
clipboard_no_support:"\u30AF\u30EA\u30C3\u30D7\u30DC\u30FC\u30C9\u64CD\u4F5C\u306F\u304A\u4F7F\u3044\u306E\u30D6\u30E9\u30A6\u30B6\u306B\u306F\u5BFE\u5FDC\u3057\u3066\u304A\u308A\u307E\u305B\u3093\u3002\u4EE3\u308F\u308A\u306B\u30AD\u30FC\u30DC\u30FC\u30C9\u306E\u30B7\u30E7\u30FC\u30C8\u30AB\u30C3\u30C8\u30AD\u30FC\u3092\u304A\u4F7F\u3044\u4E0B\u3055\u3044\u3002",
|
||||
popup_blocked:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u304C\u30D6\u30ED\u30C3\u30AF\u3055\u308C\u307E\u3057\u305F\u3002\u3059\u3079\u3066\u306E\u6A5F\u80FD\u3092\u3054\u5229\u7528\u306B\u306A\u308B\u306B\u306F\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7\u3092\u8A31\u53EF\u3057\u3066\u4E0B\u3055\u3044\u3002",
|
||||
invalid_data:"\u30A8\u30E9\u30FC: \u5165\u529B\u306B\u8AA4\u308A\u304C\u3042\u308A\u307E\u3059\u3002\uFF08\u8D64\u5B57\u306E\u9805\u76EE\uFF09",
|
||||
more_colors:"\u305D\u306E\u4ED6\u306E\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u914D\u7F6E",
|
||||
left:"\u5DE6\u63C3\u3048",
|
||||
center:"\u4E2D\u592E\u63C3\u3048",
|
||||
right:"\u53F3\u63C3\u3048",
|
||||
full:"\u5747\u7B49\u5272\u4ED8"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u65E5\u4ED8\u306E\u633F\u5165",
|
||||
inserttime_desc:"\u6642\u523B\u306E\u633F\u5165",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"\u65E5\u66DC\u65E5,\u6708\u66DC\u65E5,\u706B\u66DC\u65E5,\u6C34\u66DC\u65E5,\u6728\u66DC\u65E5,\u91D1\u66DC\u65E5,\u571F\u66DC\u65E5,\u65E5\u66DC\u65E5",
|
||||
day_short:"(\u65E5),(\u6708),(\u706B),(\u6C34),(\u6728),(\u91D1),(\u571F),(\u65E5)"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5370\u5237"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u30D7\u30EC\u30D3\u30E5\u30FC"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u5DE6\u304B\u3089\u53F3",
|
||||
rtl_desc:"\u53F3\u304B\u3089\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u65B0\u898F\u30EC\u30A4\u30E4\u30FC\u306E\u633F\u5165",
|
||||
forward_desc:"\u524D\u9762\u3078\u79FB\u52D5",
|
||||
backward_desc:"\u80CC\u9762\u3078\u79FB\u52D5",
|
||||
absolute_desc:"\u7D76\u5BFE\u4F4D\u7F6E\u6307\u5B9A\u306E\u5207\u66FF",
|
||||
content:"\u65B0\u898F\u30EC\u30A4\u30E4\u30FC"
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u4FDD\u5B58",
|
||||
cancel_desc:"\u5168\u3066\u306E\u5909\u66F4\u3092\u7834\u68C4"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u6539\u884C\u306A\u3057\u30B9\u30DA\u30FC\u30B9\u306E\u633F\u5165"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u30B9\u30DA\u30EB\u30C1\u30A7\u30C3\u30AF",
|
||||
download:"ieSpell\u304C\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3002\u4ECA\u3059\u3050\u30A4\u30F3\u30B9\u30C8\u30FC\u30EB\u3057\u307E\u3059\u304B\uFF1F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7DDA"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u691C\u7D22",
|
||||
replace_desc:"\u691C\u7D22/\u7F6E\u63DB"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u753B\u50CF\u306E\u633F\u5165/\u7DE8\u96C6"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u30EA\u30F3\u30AF\u306E\u633F\u5165/\u7DE8\u96C6"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u7528",
|
||||
abbr_desc:"\u7565\u8A9E",
|
||||
acronym_desc:"\u982D\u5B57\u8A9E",
|
||||
del_desc:"\u524A\u9664",
|
||||
ins_desc:"\u633F\u5165",
|
||||
attribs_desc:"\u5C5E\u6027\u306E\u633F\u5165/\u7DE8\u96C6"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS\u7DE8\u96C6"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u30C6\u30AD\u30B9\u30C8\u3068\u3057\u3066\u8CBC\u308A\u4ED8\u3051",
|
||||
paste_word_desc:"Word\u304B\u3089\u8CBC\u308A\u4ED8\u3051",
|
||||
selectall_desc:"\u5168\u3066\u9078\u629E",
|
||||
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.",
|
||||
plaintext_mode:"\u30D7\u30EC\u30FC\u30F3\u30C6\u30AD\u30B9\u30C8\u30E2\u30FC\u30C9\u306B\u5909\u66F4\u3057\u307E\u3057\u305F\u3002\u8CBC\u308A\u4ED8\u3051\u5F8C\u306F\u66F8\u5F0F\u4ED8\u304D\u30E2\u30FC\u30C9\u306B\u623B\u308A\u307E\u3059\u3002"
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3092\u62BC\u3057\u3066\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002",
|
||||
text_linebreaks:"\u6539\u884C\u3092\u4FDD\u6301\u3059\u308B",
|
||||
word_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3092\u62BC\u3057\u3066\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u8868\u3092\u633F\u5165",
|
||||
row_before_desc:"\u884C\u3092\u4E0A\u306B\u633F\u5165",
|
||||
row_after_desc:"\u884C\u3092\u4E0B\u306B\u633F\u5165",
|
||||
delete_row_desc:"\u884C\u3092\u524A\u9664",
|
||||
col_before_desc:"\u5217\u3092\u5DE6\u306B\u633F\u5165",
|
||||
col_after_desc:"\u5217\u3092\u53F3\u306B\u633F\u5165",
|
||||
delete_col_desc:"\u5217\u3092\u524A\u9664",
|
||||
split_cells_desc:"\u30BB\u30EB\u306E\u7D50\u5408\u3092\u89E3\u9664",
|
||||
merge_cells_desc:"\u30BB\u30EB\u3092\u7D50\u5408",
|
||||
row_desc:"\u884C\u306E\u30D7\u30ED\u30D1\u30C6\u30A3",
|
||||
cell_desc:"\u30BB\u30EB\u306E\u30D7\u30ED\u30D1\u30C6\u30A3",
|
||||
props_desc:"\u8868\u306E\u30D7\u30ED\u30D1\u30C6\u30A3",
|
||||
paste_row_before_desc:"\u884C\u3092\u4E0A\u306B\u8CBC\u308A\u4ED8\u3051",
|
||||
paste_row_after_desc:"\u884C\u3092\u4E0B\u306B\u8CBC\u308A\u4ED8\u3051",
|
||||
cut_row_desc:"\u884C\u306E\u5207\u308A\u53D6\u308A",
|
||||
copy_row_desc:"\u884C\u306E\u30B3\u30D4\u30FC",
|
||||
del:"\u8868\u3092\u524A\u9664",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u30BB\u30EB"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u4ED6\u306E\u30DA\u30FC\u30B8\u3078\u79FB\u52D5\u3059\u308B\u3068\u7DE8\u96C6\u30C7\u30FC\u30BF\u306F\u3059\u3079\u3066\u7834\u68C4\u3055\u308C\u307E\u3059\u3002",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u30D5\u30EB\u30B9\u30AF\u30EA\u30FC\u30F3"
|
||||
},
|
||||
media:{
|
||||
desc:"\u57CB\u3081\u8FBC\u307F\u30E1\u30C7\u30A3\u30A2\u306E\u633F\u5165/\u7DE8\u96C6",
|
||||
edit:"\u57CB\u3081\u8FBC\u307F\u30E1\u30C7\u30A3\u30A2\u306E\u7DE8\u96C6"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u30DA\u30FC\u30B8\u8A2D\u5B9A"
|
||||
},
|
||||
template:{
|
||||
desc:"\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u633F\u5165"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u5236\u5FA1\u6587\u5B57\u306E\u8868\u793A"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u30B9\u30DA\u30EB\u30C1\u30A7\u30C3\u30AFOn/Off",
|
||||
menu:"\u30B9\u30DA\u30EB\u30C1\u30A7\u30C3\u30AF\u8A2D\u5B9A",
|
||||
ignore_word:"\u3053\u306E\u5358\u8A9E\u3092\u7121\u8996",
|
||||
ignore_words:"\u5168\u3066\u7121\u8996",
|
||||
langs:"\u8A00\u8A9E",
|
||||
wait:"\u3057\u3070\u3089\u304F\u304A\u5F85\u3061\u304F\u3060\u3055\u3044...",
|
||||
sug:"\u5019\u88DC",
|
||||
no_sug:"\u5019\u88DC\u306F\u6709\u308A\u307E\u305B\u3093\u3002",
|
||||
no_mpell:"\u30B9\u30DA\u30EB\u30DF\u30B9\u306F\u898B\u3064\u304B\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u6539\u30DA\u30FC\u30B8\u633F\u5165"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
173
htdocs/resource2/tinymce/langs/ka.js
Normal file
173
htdocs/resource2/tinymce/langs/ka.js
Normal file
@ -0,0 +1,173 @@
|
||||
tinyMCE.addI18n({ka:{
|
||||
common:{
|
||||
edit_confirm:"\u10D2\u10D0\u10DB\u10DD\u10D5\u10D8\u10E7\u10D4\u10DC\u10DD\u10D7 \u10D0\u10DB \u10D5\u10D4\u10DA\u10D8\u10E1\u10D7\u10D5\u10D8\u10E1 WYSIWYG \u10E0\u10D4\u10DF\u10D8\u10DB\u10D8?",
|
||||
apply:"\u10D2\u10D0\u10DB\u10DD\u10E7\u10D4\u10DC\u10D4\u10D1\u10D0",
|
||||
insert:"\u10E9\u10D0\u10E1\u10DB\u10D0",
|
||||
update:"\u10D2\u10D0\u10DC\u10D0\u10EE\u10DA\u10D4\u10D1\u10D0",
|
||||
cancel:"\u10D2\u10D0\u10E3\u10E5\u10DB\u10D4\u10D1\u10D0",
|
||||
close:"\u10D3\u10D0\u10EE\u10E3\u10E0\u10D5\u10D0",
|
||||
browse:"\u10D3\u10D0\u10D7\u10D5\u10D0\u10DA\u10D8\u10D4\u10E0\u10D4\u10D1\u10D0",
|
||||
class_name:"\u10D9\u10DA\u10D0\u10E1\u10D8",
|
||||
not_set:"- \u10D0\u10E0 \u10D0\u10E0\u10D8\u10E1 \u10D3\u10D0\u10E7\u10D4\u10DC\u10D4\u10D1\u10E3\u10DA\u10D8 -",
|
||||
clipboard_msg:"\u10D9\u10DD\u10DE\u10D8\u10E0\u10D4\u10D1\u10D0, \u10D0\u10DB\u10DD\u10ED\u10E0\u10D0 \u10D3\u10D0 \u10E9\u10D0\u10E1\u10DB\u10D0 Firefox-\u10E8\u10D8 \u10D0\u10E0 \u10DB\u10E3\u10E8\u10D0\u10DD\u10D1\u10E1.\r\n\u10D2\u10E1\u10E3\u10E0\u10D7 \u10DB\u10D8\u10D8\u10E6\u10DD\u10D7 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D8\u10D7\u10D8 \u10D8\u10DC\u10E4\u10DD\u10E0\u10DB\u10D0\u10EA\u10D8\u10D0?",
|
||||
clipboard_no_support:"\u10D0\u10E0 \u10D0\u10E5\u10D5\u10E1 \u10D7\u10E5\u10D5\u10D4\u10DC\u10D8 \u10D1\u10E0\u10D0\u10E3\u10D6\u10D4\u10E0\u10D8\u10E1 \u10DB\u10EE\u10D0\u10E0\u10D3\u10D0\u10ED\u10D4\u10E0\u10D0. \u10D2\u10D0\u10DB\u10DD\u10D8\u10E7\u10D4\u10DC\u10D4\u10D7 \u10D9\u10DA\u10D0\u10D5\u10D8\u10D0\u10E2\u10E3\u10E0\u10E3\u10DA\u10D8 \u10E8\u10D4\u10DB\u10DD\u10D9\u10DA\u10D4\u10D1\u10D4\u10D1\u10D8.",
|
||||
popup_blocked:"\u0411\u043B\u043E\u043A\u0438\u0440\u0430\u0442\u043E\u0440 \u0432\u0441\u043F\u043B\u044B\u0432\u0430\u044E\u0449\u0438\u0445 \u043E\u043A\u043E\u043D \u0437\u0430\u043A\u0440\u044B\u043B \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0435 \u043E\u043A\u043D\u043E. \u0414\u043B\u044F \u043F\u043E\u043B\u043D\u043E\u0446\u0435\u043D\u043D\u043E\u0439 \u0440\u0430\u0431\u043E\u0442\u044B, \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u043A\u0443 \u043D\u0430 \u044D\u0442\u043E\u043C \u0441\u0430\u0439\u0442\u0435.",
|
||||
invalid_data:"\u10E8\u10D4\u10EA\u10D3\u10DD\u10DB\u10D0: \u10E8\u10D4\u10E7\u10D5\u10D0\u10DC\u10D8\u10DA\u10D8\u10D0 \u10D0\u10E0\u10D0 \u10E1\u10EC\u10DD\u10E0\u10D8 \u10DB\u10DC\u10D8\u10E8\u10D5\u10DC\u10DA\u10D4\u10DD\u10D1\u10D0, \u10D8\u10E1 \u10DB\u10DD\u10DC\u10D8\u10E1\u10DC\u10E3\u10DA\u10D8\u10D0 \u10EC\u10D8\u10D7\u10DA\u10D0\u10D3.",
|
||||
more_colors:"\u10E1\u10EE\u10D5\u10D0 \u10E4\u10D4\u10E0\u10D4\u10D1\u10D8..."
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u10D2\u10D0\u10E1\u10EC\u10DD\u10E0\u10D4\u10D1\u10D0",
|
||||
left:"\u10DB\u10D0\u10E0\u10EA\u10EE\u10D4\u10DC\u10D0 \u10D9\u10D8\u10D3\u10D4\u10D6\u10D4",
|
||||
center:"\u10EA\u10D4\u10DC\u10E2\u10E0\u10D6\u10D4",
|
||||
right:"\u10DB\u10D0\u10E0\u10EF\u10D5\u10D4\u10DC\u10D0 \u10D9\u10D8\u10D3\u10D4\u10D6\u10D4",
|
||||
full:"\u10E1\u10D8\u10D2\u10D0\u10DC\u10D4\u10D6\u10D4"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u10D7\u10D0\u10E0\u10D8\u10E6\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0",
|
||||
inserttime_desc:"\u10D3\u10E0\u10DD\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0",
|
||||
months_long:"\u10D8\u10D0\u10DC\u10D5\u10D0\u10E0\u10D8,\u10D7\u10D4\u10D1\u10D4\u10E0\u10D5\u10D0\u10DA\u10D8,\u10DB\u10D0\u10E0\u10E2\u10D8,\u10D0\u10DE\u10E0\u10D8\u10DA\u10D8,\u10DB\u10D0\u10D8\u10E1\u10D8,\u10D8\u10D5\u10DC\u10D8\u10E1\u10D8,\u10D8\u10D5\u10DA\u10D8\u10E1\u10D8,\u10D0\u10D2\u10D5\u10D8\u10E1\u10E2\u10DD,\u10E1\u10D4\u10E5\u10E2\u10D4\u10DB\u10D1\u10D4\u10E0\u10D8,\u10DD\u10E5\u10E2\u10DD\u10DB\u10D1\u10D4\u10E0\u10D8,\u10DC\u10DD\u10D4\u10DB\u10D1\u10D4\u10E0\u10D8,\u10D3\u10D4\u10D9\u10D4\u10DB\u10D1\u10D4\u10E0\u10D8",
|
||||
months_short:"\u10D8\u10D0\u10DC,\u10D7\u10D4\u10D1,\u10DB\u10D0\u10E0\u10E2,\u10D0\u10DE\u10E0,\u10DB\u10D0\u10D8\u10E1\u10D8,\u10D8\u10D5\u10DC,\u10D8\u10D5\u10DA,\u10D0\u10D2\u10D5,\u10E1\u10D4\u10E5,\u10DD\u10E5\u10E2,\u10DC\u10DD\u10D4\u10DB,\u10D3\u10D4\u10D9",
|
||||
day_long:"\u10D9\u10D5\u10D8\u10E0\u10D0,\u10DD\u10E0\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8,\u10E1\u10D0\u10DB\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8,\u10DD\u10D7\u10EE\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8,\u10EE\u10E3\u10D7\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8,\u10DE\u10D0\u10E0\u10D0\u10E1\u10D9\u10D4\u10D5\u10D8,\u10E8\u10D0\u10D1\u10D0\u10D7\u10D8,\u10D9\u10D5\u10D8\u10E0\u10D0",
|
||||
day_short:"\u10D9\u10D5,\u10DD\u10E0\u10E8,\u10E1\u10D0\u10DB\u10E8,\u10DD\u10D7\u10EE\u10E8,\u10EE\u10E3\u10D7,\u10DE\u10D0\u10E0,\u10E8\u10D0\u10D1,\u10D9\u10D5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u10D1\u10D4\u10ED\u10D3\u10D5\u10D0"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u10EC\u10D8\u10DC\u10D0\u10E1\u10EC\u10D0\u10E0\u10D8 \u10D3\u10D0\u10D7\u10D5\u10D0\u10DA\u10D8\u10D4\u10E0\u10D4\u10D1\u10D0"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u10DB\u10D8\u10DB\u10D0\u10E0\u10D7\u10E3\u10DA\u10D4\u10D1\u10D0 \u10DB\u10D0\u10E0\u10EA\u10EE\u10DC\u10D8\u10D3\u10D0\u10DC \u10DB\u10D0\u10E0\u10EF\u10D5\u10DC\u10D8\u10D5",
|
||||
rtl_desc:"\u10DB\u10D8\u10DB\u10D0\u10E0\u10D7\u10E3\u10DA\u10D4\u10D1\u10D0 \u10DB\u10D0\u10E0\u10EF\u10D5\u10DC\u10D8\u10D3\u10D0\u10DC \u10DB\u10D0\u10E0\u10EA\u10EE\u10DC\u10D8\u10D5"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u10E8\u10E0\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0",
|
||||
forward_desc:"\u10EC\u10D8\u10DC\u10D0 \u10DE\u10DA\u10D0\u10DC\u10D6\u10D4",
|
||||
backward_desc:"\u10E3\u10D9\u10D0\u10DC\u10D0 \u10DE\u10DA\u10D0\u10DC\u10D6\u10D4",
|
||||
absolute_desc:"\u10D0\u10D1\u10E1\u10DD\u10DA\u10E3\u10E2\u10E3\u10E0\u10D8 \u10DE\u10DD\u10D6\u10D8\u10EA\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
content:"\u10D0\u10EE\u10D0\u10DA\u10D8 \u10E8\u10E0\u10D4"
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u10E8\u10D4\u10DC\u10D0\u10EE\u10D5\u10D0",
|
||||
cancel_desc:"\u10E7\u10D5\u10D4\u10DA\u10D0 \u10EA\u10D5\u10DA\u10D8\u10DA\u10D4\u10D1\u10D8\u10E1 \u10D2\u10D0\u10E3\u10E5\u10DB\u10D4\u10D1\u10D0"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u10E3\u10EC\u10E7\u10D5\u10D4\u10E2\u10D8 \u10D3\u10D0\u10E8\u10DD\u10E0\u10D4\u10D1\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u10DD\u10E0\u10D7\u10DD\u10D2\u10E0\u10D0\u10E4\u10D8\u10D8\u10E1 \u10E8\u10D4\u10DB\u10DD\u10EC\u10DB\u10D4\u10D1\u10D0",
|
||||
download:"ieSpell \u10D0\u10E0 \u10D0\u10E0\u10D8\u10E1 \u10DC\u10D0\u10DE\u10DD\u10D5\u10DC\u10D8. \u10D2\u10E1\u10E3\u10E0\u10D7 \u10D3\u10D0\u10E7\u10D4\u10DC\u10D4\u10D1\u10D0?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u10D2\u10D0\u10DB\u10E7\u10DD\u10E4\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u10E1\u10DB\u10D0\u10D8\u10DA\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u10DE\u10DD\u10D5\u10DC\u10D0",
|
||||
replace_desc:"\u10E8\u10D4\u10EA\u10D5\u10DA\u10D0"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u10D2\u10D0\u10DB\u10DD\u10E1\u10D0\u10EE\u10E3\u10DA\u10D4\u10D1\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0/\u10E0\u10D4\u10D3\u10D0\u10E5\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
delta_width:"200"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u10D1\u10DB\u10E3\u10DA\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0/\u10E0\u10D4\u10D3\u10D0\u10E5\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
delta_width:"200"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u10EA\u10D8\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
abbr_desc:"\u10E8\u10D4\u10DB\u10DD\u10D9\u10DA\u10D4\u10D1\u10D0",
|
||||
acronym_desc:"\u10D0\u10D1\u10E0\u10D4\u10D5\u10D8\u10D0\u10EA\u10D8\u10D0",
|
||||
del_desc:"\u10EC\u10D0\u10E8\u10DA\u10D0",
|
||||
ins_desc:"\u10E8\u10D4\u10EA\u10D5\u10DA\u10D0",
|
||||
attribs_desc:"\u10D4\u10DA\u10D4\u10DB\u10D4\u10DC\u10E2\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0/\u10E8\u10D4\u10EA\u10D5\u10DA\u10D0"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS \u10E1\u10E2\u10D8\u10DA\u10D8\u10E1 \u10E0\u10D4\u10D3\u10D0\u10E5\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u10E9\u10D0\u10E1\u10D5\u10D8 \u10E0\u10DD\u10D2\u10DD\u10E0\u10EA \u10E2\u10D4\u10E5\u10E1\u10E2\u10D8",
|
||||
paste_word_desc:"Word-\u10D8\u10D3\u10DC \u10E9\u10D0\u10E1\u10DB\u10D0",
|
||||
selectall_desc:"\u10E2\u10D5\u10D4\u10DA\u10D0\u10E4\u10E0\u10D8\u10E1 \u10DB\u10DD\u10DC\u10D8\u10E8\u10D5\u10DC\u10D0",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u10E2\u10D4\u10E5\u10E1\u10E2\u10D8\u10E1 \u10E9\u10D0\u10E1\u10D0\u10E1\u10DB\u10D4\u10DA\u10D0\u10D3 \u10D2\u10D0\u10DB\u10DD\u10D8\u10E7\u10D4\u10DC\u10D4\u10D7 \u10D9\u10DA\u10D0\u10D5\u10D8\u10D0\u10E2\u10E3\u10E0\u10E3\u10DA\u10D8 \u10D9\u10DD\u10DB\u10D1\u10D8\u10DC\u10D0\u10EA\u10D8\u10D0 CTRL+V.",
|
||||
text_linebreaks:"\u10D2\u10D0\u10D3\u10D0\u10E2\u10D0\u10DC\u10D8\u10DA\u10D8 \u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D4\u10D1\u10D8\u10E1 \u10E8\u10D4\u10DC\u10D0\u10EE\u10D5\u10D0",
|
||||
word_title:"\u0418\u10E2\u10D4\u10E5\u10E1\u10E2\u10D8\u10E1 \u10E9\u10D0\u10E1\u10D0\u10E1\u10DB\u10D4\u10DA\u10D0\u10D3 \u10D2\u10D0\u10DB\u10DD\u10D8\u10E7\u10D4\u10DC\u10D4\u10D7 \u10D9\u10DA\u10D0\u10D5\u10D8\u10D0\u10E2\u10E3\u10E0\u10E3\u10DA\u10D8 \u10D9\u10DD\u10DB\u10D1\u10D8\u10DC\u10D0\u10EA\u10D8\u10D0 CTRL+V."
|
||||
},
|
||||
table:{
|
||||
desc:"\u10EA\u10EE\u10E0\u10D8\u10DA\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0/\u10E0\u10D4\u10D3\u10D0\u10E5\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
row_before_desc:"\u10E1\u10E2\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0 \u10D6\u10D4\u10DB\u10DD\u10D7",
|
||||
row_after_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0 \u10E5\u10D5\u10D4\u10DB\u10DD\u10D7",
|
||||
delete_row_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10EC\u10D0\u10E8\u10DA\u10D0",
|
||||
col_before_desc:"\u10E1\u10D5\u10D4\u10E2\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0 \u10DB\u10D0\u10E0\u10EA\u10EE\u10DC\u10D8\u10D5",
|
||||
col_after_desc:"\u10E1\u10D5\u10D4\u10E2\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0 \u10DB\u10D0\u10E0\u10EF\u10D5\u10DC\u10D8\u10D5",
|
||||
delete_col_desc:"\u10E1\u10D5\u10D4\u10E2\u10D8\u10E1 \u10EC\u10D0\u10E8\u10DA\u10D0",
|
||||
split_cells_desc:"\u10E3\u10EF\u10E0\u10D8\u10E1 \u10D2\u10D0\u10E7\u10DD\u10E4\u10D0",
|
||||
merge_cells_desc:"\u10E3\u10EF\u10E0\u10D4\u10D1\u10D8\u10E1 \u10D2\u10D0\u10D4\u10E0\u10D7\u10D8\u10D0\u10DC\u10D4\u10D1\u10D0",
|
||||
row_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10DE\u10D0\u10E0\u10D0\u10DB\u10D4\u10E2\u10E0\u10D4\u10D1\u10D8",
|
||||
cell_desc:"\u10E3\u10EF\u10E0\u10D8\u10E1 \u10DE\u10D0\u10E0\u10D0\u10DB\u10D4\u10E2\u10E0\u10D4\u10D1\u10D8",
|
||||
props_desc:"\u10EA\u10EE\u10E0\u10D8\u10DA\u10D8\u10E1 \u10DE\u10D0\u10E0\u10D0\u10DB\u10D4\u10E2\u10E0\u10D8\u10D4\u10D1\u10D8",
|
||||
paste_row_before_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10D6\u10D4\u10DB\u10DD\u10D7 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0",
|
||||
paste_row_after_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10E5\u10D5\u10D4\u10DB\u10DD\u10D7 \u10D3\u10D0\u10DB\u10D4\u10E2\u10D4\u10D1\u10D0",
|
||||
cut_row_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10D0\u10DB\u10DD\u10ED\u10E0\u10D0",
|
||||
copy_row_desc:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10D9\u10DD\u10DE\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
del:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8\u10E1 \u10EC\u10D0\u10E8\u10DA\u10D0",
|
||||
row:"\u10E1\u10E2\u10E0\u10D8\u10E5\u10DD\u10DC\u10D8",
|
||||
col:"\u10E1\u10D5\u10D4\u10E2\u10D8",
|
||||
cell:"\u10E3\u10EF\u10E0\u10D0",
|
||||
cellprops_delta_width:"30"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u10D7\u10E3 \u10D7\u10E5\u10D5\u10D4\u10DC \u10D3\u10D0\u10E2\u10DD\u10D5\u10D4\u10D1\u10D7 \u10DB\u10DD\u10EA\u10D4\u10DB\u10E3\u10DA \u10D2\u10D5\u10D4\u10E0\u10D3\u10E1, \u10E7\u10D5\u10D4\u10DA\u10D0 \u10EA\u10D5\u10DA\u10D8\u10DA\u10D4\u10D1\u10D0 \u10D8\u10E5\u10DC\u10D4\u10D1\u10D0 \u10D3\u10D0\u10D9\u10D0\u10E0\u10D2\u10E3\u10DA\u10D8.",
|
||||
restore_content:"\u10D0\u10D5\u10E2\u10DD\u10DB\u10D0\u10E2\u10E3\u10E0\u10D0\u10D3 \u10D3\u10D0\u10DB\u10D0\u10EE\u10E1\u10DD\u10D5\u10E0\u10D4\u10D1\u10E3\u10DA\u10D8\u10E1 \u10D0\u10E6\u10D3\u10D2\u10D4\u10DC\u10D0",
|
||||
warning_message:"\u10E7\u10D5\u10D4\u10DA\u10D0 \u10EA\u10D5\u10DA\u10D8\u10DA\u10D4\u10D1\u10D0 \u10D8\u10E5\u10DC\u10D4\u10D1\u10D0 \u10D3\u10D0\u10D9\u10D0\u10E0\u10D2\u10E3\u10DA\u10D8.\n\n\u10D2\u10D0\u10DC\u10D5\u10D0\u10D2\u10E0\u10EB\u10DD\u10D7 \u10D0\u10D5\u10E0\u10DD\u10DB\u10D0\u10E2\u10E3\u10E0\u10D0\u10D3 \u10D3\u10D0\u10DB\u10D0\u10EE\u10E1\u10DD\u10D5\u10E0\u10D4\u10D1\u10E3\u10DA\u10D8\u10E1 \u10D0\u10E6\u10D3\u10D2\u10D4\u10DC\u10D0?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u10E1\u10E0\u10E3\u10DA\u10D4\u10D9\u10E0\u10D0\u10DC\u10D8\u10D0\u10DC\u10D8 \u10E0\u10D4\u10DF\u10D8\u10DB\u10D8"
|
||||
},
|
||||
media:{
|
||||
desc:"\u10D9\u10DA\u10D8\u10DE\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0/\u10E0\u10D4\u10D3\u10D0\u10E5\u10E2\u10D8\u10E0\u10D4\u10D1\u10D0",
|
||||
edit:"\u10D9\u10DA\u10D8\u10D9\u10D8\u10E1 \u10DB\u10D0\u10EE\u10D0\u10E1\u10D8\u10D0\u10D7\u10D4\u10D1\u10DA\u10D4\u10D1\u10D8"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u10D3\u10DD\u10D9\u10E3\u10DB\u10D4\u10DC\u10E2\u10D8\u10E1 \u10DB\u10D0\u10EE\u10D0\u10E1\u10D8\u10D0\u10D7\u10D4\u10D1\u10DA\u10D4\u10D1\u10D8"
|
||||
},
|
||||
template:{
|
||||
desc:"\u10E8\u10D0\u10D1\u10DA\u10DD\u10DC\u10D8\u10E1 \u10D2\u10D0\u10DB\u10DD\u10E7\u10D4\u10DC\u10D4\u10D1\u10D0"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u10E7\u10D5\u10D4\u10DA\u10D0 \u10DC\u10D8\u10E8\u10D0\u10DC\u10D8"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u10DB\u10D0\u10E0\u10D7\u10DA\u10EC\u10D4\u10E0\u10D0",
|
||||
menu:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0438 \u043F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u044F",
|
||||
ignore_word:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C",
|
||||
ignore_words:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0432\u0441\u0435",
|
||||
langs:"\u042F\u0437\u044B\u043A\u0438",
|
||||
wait:"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435...",
|
||||
sug:"\u0412\u0430\u0440\u0438\u0430\u043D\u0442\u044B",
|
||||
no_sug:"\u041D\u0435\u0442 \u0432\u0430\u0440\u0438\u0430\u043D\u0442\u043E\u0432",
|
||||
no_mpell:"\u041E\u0448\u0438\u0431\u043E\u043A \u043D\u0435 \u043E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u043E."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u10D2\u10D5\u10D4\u10E0\u10D3\u10D8\u10E1 \u10D2\u10D0\u10DB\u10E7\u10DD\u10E4\u10D8\u10E1 \u10D3\u10D0\u10DB\u10D0\u10E2\u10D4\u10D1\u10D0"
|
||||
},
|
||||
advlist:{
|
||||
types:"\u10E1\u10D8\u10DB\u10D1\u10DD\u10DA\u10DD\u10D4\u10D1\u10D8",
|
||||
def:"\u10E1\u10E2\u10D0\u10DC\u10D3\u10D0\u10E0\u10E2\u10E3\u10DA\u10D8",
|
||||
lower_alpha:"\u0421\u0442\u0440\u043E\u0447\u043D\u044B\u0435 \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438\u0435 \u0431\u0443\u043A\u0432\u044B",
|
||||
lower_greek:"\u0421\u0442\u0440\u043E\u0447\u043D\u044B\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043A\u0438\u0435 \u0431\u0443\u043A\u0432\u044B",
|
||||
lower_roman:"\u0421\u0442\u0440\u043E\u0447\u043D\u044B\u0435 \u0440\u0438\u043C\u0441\u043A\u0438\u0435 \u0446\u0438\u0444\u0440\u044B",
|
||||
upper_alpha:"\u0417\u0430\u0433\u043B\u0430\u0432\u043D\u044B\u0435 \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438\u0435 \u0431\u0443\u043A\u0432\u044B",
|
||||
upper_roman:"\u0417\u0430\u0433\u043B\u0430\u0432\u043D\u044B\u0435 \u0440\u0438\u043C\u0441\u043A\u0438\u0435 \u0446\u0438\u0444\u0440\u044B",
|
||||
circle:"\u10EC\u10E0\u10D4\u10D4\u10D1\u10D8",
|
||||
disc:"\u10EC\u10E0\u10D4\u10EC\u10D8\u10E0\u10D4\u10D1\u10D8",
|
||||
square:"\u10D9\u10D5\u10D0\u10D3\u10E0\u10D0\u10E2\u10D4\u10D1\u10D8"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/kl.js
Normal file
170
htdocs/resource2/tinymce/langs/kl.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({kl:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ko.js
Normal file
170
htdocs/resource2/tinymce/langs/ko.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ko:{
|
||||
common:{
|
||||
edit_confirm:"WYSIWYG\uBAA8\uB4DC\uB85C \uC804\uD658\uD569\uB2C8\uAE4C?",
|
||||
apply:"\uC801\uC6A9",
|
||||
insert:"\uC0BD\uC785",
|
||||
update:"\uAC31\uC2E0",
|
||||
cancel:"\uCDE8\uC18C",
|
||||
close:"\uB2EB\uAE30",
|
||||
browse:"\uBE0C\uB77C\uC6B0\uC988",
|
||||
class_name:"\uD074\uB798\uC2A4",
|
||||
not_set:"-- \uC5C6\uC74C --",
|
||||
clipboard_msg:"\uBCF5\uC0AC/\uC798\uB77C\uB0B4\uAE30/\uBD99\uC774\uAE30\uB294 Mozilla \uBC0FFirefox \uC5D0\uC11C \uC0AC\uC6A9\uB418\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.\n\uC0C1\uC138\uC815\uBCF4\uB97C \uD45C\uC2DC\uD569\uB2C8\uAE4C?",
|
||||
clipboard_no_support:"\uC774 \uAE30\uB2A5\uC740 \uBE0C\uB77C\uC6B0\uC800\uC5D0 \uC758\uD574 \uC81C\uD55C\uB418\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uB2E8\uCD95\uD0A4\uC744 \uC774\uC6A9\uD558\uC2ED\uC2DC\uC624.",
|
||||
popup_blocked:"\uD31D\uC5C5\uC774 \uCC28\uB2E8\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uBAA8\uB4E0 \uAE30\uB2A5\uC744 \uC774\uC6A9\uD558\uC2DC\uAE30 \uC704\uD574\uC11C\uB294 \uD31D\uC5C5\uCC28\uB2E8\uC744 \uD574\uC81C\uD574 \uC8FC\uC138\uC694.",
|
||||
invalid_data:"\uC5D0\uB7EC: \uC720\uD6A8\uD558\uC9C0 \uC54A\uB294 \uAE00\uC790\uAC00 \uC788\uC2B5\uB2C8\uB2E4. \uBE68\uAC04\uC0C9\uC73C\uB85C \uD45C\uC2DC\uB429\uB2C8\uB2E4.",
|
||||
more_colors:"\uADF8 \uC678\uC758 \uC0C9"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\uC815\uB82C",
|
||||
left:"\uC67C\uCABD \uC815\uB82C",
|
||||
center:"\uAC00\uC6B4\uB370 \uC815\uB82C",
|
||||
right:"\uC624\uB978\uCABD \uC815\uB82C",
|
||||
full:"\uBC30\uBD84 \uC815\uB82C"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\uB0A0\uC9DC \uC0BD\uC785",
|
||||
inserttime_desc:"\uC2DC\uAC04 \uC0BD\uC785",
|
||||
months_long:"1\uC6D4,2\uC6D4,3\uC6D4,4\uC6D4,5\uC6D4,6\uC6D4,7\uC6D4,8\uC6D4,9\uC6D4,10\uC6D4,11\uC6D4,12\uC6D4",
|
||||
months_short:"1,2,3,4,5,6,7,8,9,10,11,12",
|
||||
day_long:"\uC77C\uC694\uC77C,\uC6D4\uC694\uC77C,\uD654\uC694\uC77C,\uC218\uC694\uC77C,\uBAA9\uC694\uC77C,\uAE08\uC694\uC77C,\uD1A0\uC694\uC77C,\uC77C\uC694\uC77C",
|
||||
day_short:"\uC77C,\uC6D4,\uD654,\uC218,\uBAA9,\uAE08,\uD1A0,\uC77C"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\uC778\uC1C4"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\uBBF8\uB9AC\uBCF4\uAE30"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\uBB38\uC790\uBC29\uD5A5\uC744 \uC67C\uCABD\uC5D0\uC11C \uC624\uB978\uCABD\uC73C\uB85C",
|
||||
rtl_desc:"\uBB38\uC790\uBC29\uD5A5\uC744 \uC624\uB978\uCABD\uC5D0\uC11C \uC67C\uCABD\uC73C\uB85C"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\uC0C8 \uB808\uC774\uC5B4",
|
||||
forward_desc:"\uC55E\uC73C\uB85C \uC774\uB3D9",
|
||||
backward_desc:"\uB4A4\uB85C \uC774\uB3D9",
|
||||
absolute_desc:"\uC808\uB300\uC704\uCE58\uB85C \uC804\uD658",
|
||||
content:"\uC0C8 \uB808\uC774\uC5B4..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\uC800\uC7A5",
|
||||
cancel_desc:"\uBAA8\uB450 \uCDE8\uC18C"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\uBE48\uCE78 \uC0BD\uC785"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\uCCA0\uC790 \uAC80\uC0AC",
|
||||
download:"ieSpell\uC774 \uBC1C\uACAC\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4.\n\uC778\uC2A4\uD1A8 \uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\uAD6C\uBD84\uC120"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\uC774\uBAA8\uD2F0\uCF58"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\uAC80\uC0C9",
|
||||
replace_desc:"\uAC80\uC0C9/\uCE58\uD658"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\uC774\uBBF8\uC9C0\uC758 \uC0BD\uC785/\uD3B8\uC9D1"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\uB9C1\uD06C\uC758 \uC0BD\uC785/\uD3B8\uC9D1"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\uC778\uC6A9\uCC98",
|
||||
abbr_desc:"\uC57D\uAE30",
|
||||
acronym_desc:"\uBA38\uB9AC \uAE00\uC790\uC5B4",
|
||||
del_desc:"\uC0AD\uC81C",
|
||||
ins_desc:"\uC0BD\uC785",
|
||||
attribs_desc:"\uC18D\uC131 \uC0BD\uC785/\uD3B8\uC9D1"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS\uD3B8\uC9D1"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\uD14D\uC2A4\uD2B8\uCC98\uB7FC \uBD99\uC5EC\uB123\uAE30",
|
||||
paste_word_desc:"Word\uB85C\uBD80\uD130 \uBD99\uC5EC\uB123\uAE30",
|
||||
selectall_desc:"\uBAA8\uB450 \uC120\uD0DD",
|
||||
plaintext_mode_sticky:"\uC77C\uBC18 \uD14D\uC2A4\uD2B8 \uBAA8\uB4DC\uC5D0\uC11C \uBD99\uC5EC\uB123\uAE30. \uD074\uB9AD\uD558\uBA74 \uC77C\uBC18 \uBD99\uC5EC\uB123\uAE30 \uBAA8\uB4DC\uB85C \uB2E4\uC2DC \uBCC0\uACBD\uB429\uB2C8\uB2E4. After you paste something you will be returned to regular paste mode.",
|
||||
plaintext_mode:"\uC77C\uBC18 \uD14D\uC2A4\uD2B8 \uBAA8\uB4DC\uC5D0\uC11C \uBD99\uC5EC\uB123\uAE30. \uD074\uB9AD\uD558\uBA74 \uC77C\uBC18 \uBD99\uC5EC\uB123\uAE30 \uBAA8\uB4DC\uB85C \uB2E4\uC2DC \uBCC0\uACBD\uB429\uB2C8\uB2E4."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85C Ctrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694.",
|
||||
text_linebreaks:"\uAC1C\uD589\uC744 \uBCF4\uAD00 \uC720\uC9C0",
|
||||
word_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85CCtrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694."
|
||||
},
|
||||
table:{
|
||||
desc:"\uC0C8 \uD14C\uC774\uBE14 \uC0BD\uC785",
|
||||
row_before_desc:"\uC55E\uC5D0 \uD589 \uC0BD\uC785",
|
||||
row_after_desc:"\uB4A4\uC5D0 \uD589 \uC0BD\uC785",
|
||||
delete_row_desc:"\uD589 \uC0AD\uC81C",
|
||||
col_before_desc:"\uC55E\uC5D0 \uC5F4\uC0BD\uC785",
|
||||
col_after_desc:"\uB4A4\uC5D0 \uC5F4\uC0BD\uC785",
|
||||
delete_col_desc:"\uC5F4\uC0AD\uC81C",
|
||||
split_cells_desc:"\uACB0\uD569\uB41C \uC140\uC744 \uBD84\uD560",
|
||||
merge_cells_desc:"\uC140\uC744 \uACB0\uD569",
|
||||
row_desc:"\uD589\uC758 \uC18D\uC131",
|
||||
cell_desc:"\uC140\uC758 \uC18D\uC131",
|
||||
props_desc:"\uD14C\uC774\uBE14 \uC18D\uC131",
|
||||
paste_row_before_desc:"\uC55E\uC5D0 \uD589\uC744 \uBD99\uC5EC\uB123\uAE30",
|
||||
paste_row_after_desc:"\uB4A4\uB85C \uD589\uC744 \uBD99\uC5EC\uB123\uAE30",
|
||||
cut_row_desc:"\uD589\uC744 \uC798\uB77C\uB0B4\uAE30",
|
||||
copy_row_desc:"\uD589\uC744 \uBCF5\uC0AC",
|
||||
del:"\uD14C\uC774\uBE14 \uC0AD\uC81C",
|
||||
row:"\uD589",
|
||||
col:"\uC5F4",
|
||||
cell:"\uC140"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\uB2E4\uB978 \uD398\uC774\uC9C0\uB85C \uC774\uB3D9\uD558\uBA74 \uD3B8\uC9D1\uD55C \uB0B4\uC6A9\uC774 \uCDE8\uC18C\uB429\uB2C8\uB2E4.",
|
||||
restore_content:"\uC790\uB3D9 \uC800\uC7A5\uB41C \uB0B4\uC6A9 \uBCF5\uAD6C",
|
||||
warning_message:"\uC800\uC7A5\uB41C \uB0B4\uC6A9\uC744 \uBCF5\uAD6C\uD558\uBA74 \uD604\uC7AC\uC758 \uB0B4\uC6A9\uC740 \uC0AD\uC81C\uB429\uB2C8\uB2E4.\n\n\uC815\uB9D0 \uC800\uC7A5\uB41C \uB0B4\uC6A9\uC744 \uBCF5\uAD6C\uD558\uC2DC\uACA0\uC2B5\uB2C8\uAE4C?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\uC804\uCCB4\uD654\uBA74"
|
||||
},
|
||||
media:{
|
||||
desc:"\uBBF8\uB514\uC5B4\uC758 \uC0BD\uC785/\uD3B8\uC9D1",
|
||||
edit:"\uBBF8\uB514\uC5B4\uC758 \uD3B8\uC9D1"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\uD398\uC774\uC9C0\uC758 \uC18D\uC131"
|
||||
},
|
||||
template:{
|
||||
desc:"\uC815\uC758\uAC00 \uB05D\uB09C \uD15C\uD50C\uB9BF\uC758 \uC0BD\uC785"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\uC81C\uC5B4 \uBB38\uC790\uC758 \uD45C\uC2DC \uC804\uD658"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\uC2A4\uD3A0\uB9C1 \uC804\uD658",
|
||||
menu:"\uC2A4\uD3A0\uB9C1 \uC124\uC815",
|
||||
ignore_word:"\uC774 \uC5B4\uAD6C\uB97C \uBB34\uC2DC",
|
||||
ignore_words:"\uBAA8\uB450 \uBB34\uC2DC",
|
||||
langs:"\uC5B8\uC5B4",
|
||||
wait:"\uAE30\uB2E4\uB824 \uC8FC\uC138\uC694...",
|
||||
sug:"\uD6C4\uBCF4",
|
||||
no_sug:"\uD6C4\uBCF4 \uC5C6\uC74C",
|
||||
no_mpell:"\uC624\uD0C8\uC790\uAC00 \uBC1C\uACAC\uB418\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\uC0C8\uD398\uC774\uC9C0 \uC0BD\uC785"
|
||||
},
|
||||
advlist:{
|
||||
types:"\uD0C0\uC785",
|
||||
def:"\uAE30\uBCF8",
|
||||
lower_alpha:"\uC54C\uD30C\uBCB3 \uC18C\uBB38\uC790",
|
||||
lower_greek:"\uADF8\uB9AC\uC2A4\uC5B4 \uC18C\uBB38\uC790",
|
||||
lower_roman:"\uB85C\uB9C8 \uC18C\uBB38\uC790",
|
||||
upper_alpha:"\uB300\uBB38\uC790 \uC54C\uD30C\uBCB3",
|
||||
upper_roman:"\uB300\uBB38\uC790 \uB85C\uB9C8",
|
||||
circle:"\uC6D0",
|
||||
disc:"\uC6D0\uD615",
|
||||
square:"\uC0AC\uACA9\uD615"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/lb.js
Normal file
171
htdocs/resource2/tinymce/langs/lb.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({lb:{
|
||||
common:{
|
||||
edit_confirm:"D\u00EBsen Textber\u00E4ich mat WYSIWYG beaarbechten?",
|
||||
apply:"Iwwerhuelen",
|
||||
insert:"Af\u00FCgen",
|
||||
update:"Aktualis\u00E9ieren",
|
||||
cancel:"Ofbriechen",
|
||||
close:"Zoumaachen",
|
||||
browse:"Duerchsichen",
|
||||
class_name:"CSS-Klass",
|
||||
not_set:"- ondefin\u00E9iert -",
|
||||
clipboard_msg:"Kop\u00E9ieren, Ausschneiden an Af\u00FCgen sinn am Mozilla Firefox net m\u00E9iglech.\nW\u00EBllt Dir m\u00E9i iwwert d\u00EBse Problem gewuer ginn?",
|
||||
clipboard_no_support:"G\u00EBtt momentan net an \u00C4rem Browser \u00EBnnerst\u00EBtzt. Benotzt wann ech gelift d'Tastekombinatiounen.",
|
||||
popup_blocked:"Leider huet \u00C4re Popup-Blocker eng F\u00EBnster \u00EBnnerdr\u00E9ckt, d\u00E9i fir d'Funktion\u00E9iere vun d\u00EBsem Programm n\u00E9ideg ass. Deaktiv\u00E9iert wann ech gelift de Popup-Blocker fir d\u00EBs S\u00E4it.",
|
||||
invalid_data:"Feeler: Dir hutt ong\u00FClteg W\u00E4erter uginn (rout mark\u00E9iert).",
|
||||
more_colors:"Weider Fuerwen"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Ausriichtung",
|
||||
left:"L\u00E9nks align\u00E9iert",
|
||||
center:"Zentr\u00E9iert",
|
||||
right:"Riets align\u00E9iert",
|
||||
full:"B\u00E9ids\u00E4iteg align\u00E9iert"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Datum af\u00FCgen",
|
||||
inserttime_desc:"Z\u00E4it af\u00FCgen",
|
||||
months_long:"Januar,Februar,M\u00E4erz,Abr\u00EBll,Mee,Juni,Juli,August,September,Oktober,November,Dezember",
|
||||
months_short:"Jan,Feb,M\u00E4erz,Abr,Mee,Juni,Juli,Aug,Sept,Okt,Nov,Dez",
|
||||
day_long:"Sonndeg,M\u00E9indeg,D\u00EBnschdeg,M\u00EBttwoch,Donneschdeg,Freideg,Samschdeg,Sonndeg",
|
||||
day_short:"So,M\u00E9,D\u00EB,M\u00EB,Do,Fr,Sa,So"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Dr\u00E9cken"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Virschau"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Schr\u00EBft vu l\u00E9nks no riets",
|
||||
rtl_desc:"Schr\u00EBft vu riets no l\u00E9nks"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Neie Layer af\u00FCgen",
|
||||
forward_desc:"No vir r\u00E9ckelen",
|
||||
backward_desc:"No hanne r\u00E9ckelen",
|
||||
absolute_desc:"Absolut Position\u00E9ierung",
|
||||
content:"Neie Layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Sp\u00E4icheren",
|
||||
cancel_desc:"All d'\u00C4nnerungen ewechpuchen"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Gesch\u00FCtzt Leerzeechen af\u00FCgen"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Spellchecker",
|
||||
download:"ieSpell konnt net fonnt ginn. W\u00EBllt Dir en install\u00E9ieren?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Trennlinn"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Smileyen"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Sichen",
|
||||
replace_desc:"Sichen/Ersetzen"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Bild af\u00FCgen/ersetzen"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Link af\u00FCgen/beaarbechten"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Quellenzit\u00E9ierung",
|
||||
abbr_desc:"Ofkierzung",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Gel\u00E4schten Text",
|
||||
ins_desc:"Agef\u00FCgtenen Text",
|
||||
attribs_desc:"Attributer af\u00FCgen/beaarbechten"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS-Styles beaarbechten"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Als normalen Text af\u00FCgen",
|
||||
paste_word_desc:"Mat Format\u00E9ierungen (aus dem Word) af\u00FCgen",
|
||||
selectall_desc:"Alles auswielen",
|
||||
plaintext_mode_sticky:"Beim Af\u00FCge g\u00EBtt elo just den Text ouni Format\u00E9ierungen iwwerholl. Nach eng K\u00E9ier klicken, fir an den normale Modus zer\u00E9ckzewiesselen. Nodeem s Dir eppes agef\u00FCgt hutt, g\u00EBtt automatesch nees an den normale Modus gewiesselt.",
|
||||
plaintext_mode:"Beim Af\u00FCge g\u00EBtt elo just den Text ouni Format\u00E9ierungen iwwerholl. Nach eng K\u00E9ier klicken, fir an den normale Modus zer\u00E9ckzewiesselen."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Dr\u00E9ckt op \u00C4rer Tastatur Ctrl+V, fir den Text an ze f\u00FCgen.",
|
||||
text_linebreaks:"Zeilen\u00EBmbr\u00EBch b\u00E4ibehalen",
|
||||
word_title:"Dr\u00E9ckt op \u00C4rer Tastatur Ctrl+V, um den Text an ze f\u00FCgen."
|
||||
},
|
||||
table:{
|
||||
desc:"Tabell erstellen/beaarbechten",
|
||||
row_before_desc:"Zeil uewerhalb af\u00FCgen",
|
||||
row_after_desc:"Zeil \u00EBnnerhalb af\u00FCgen",
|
||||
delete_row_desc:"Zeil l\u00E4schen",
|
||||
col_before_desc:"Spalt l\u00E9nks af\u00FCgen",
|
||||
col_after_desc:"Spalt riets af\u00FCgen",
|
||||
delete_col_desc:"Spalt l\u00E4schen",
|
||||
split_cells_desc:"Verbonnen Zellen trennen",
|
||||
merge_cells_desc:"Zellen verbannen",
|
||||
row_desc:"Eegeschaften vun der Zeil",
|
||||
cell_desc:"Eegeschaften vun der Zell",
|
||||
props_desc:"Eegeschaften vun der Tabelle",
|
||||
paste_row_before_desc:"Zeil uewerhalb aus der Zw\u00EBschenoflag af\u00FCgen",
|
||||
paste_row_after_desc:"Zeil \u00EBnnerhalb aus der Zw\u00EBschenoflag af\u00FCgen",
|
||||
cut_row_desc:"Zeil ausschneiden",
|
||||
copy_row_desc:"Zeil kop\u00E9ieren",
|
||||
del:"Tabelle l\u00E4schen",
|
||||
row:"Zeil",
|
||||
col:"Spalt",
|
||||
cell:"Zell",
|
||||
cellprops_delta_width:"150"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u00C4r \u00C4nnerungen gi verluer, wann Dir d'S\u00E4it verloosst.",
|
||||
restore_content:"Automatesch gesp\u00E4icherten Inhalt recuper\u00E9ieren.",
|
||||
warning_message:"Wann Dir dee gesp\u00E4icherten Inhalt recuper\u00E9iert, verl\u00E9iert Dir de ganzen Inhalt dee grad am Editor ass.\n\nW\u00EBllt Dir de gesp\u00E4icherten Inhalt s\u00E9cher recuper\u00E9ieren?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Vollbildschierm"
|
||||
},
|
||||
media:{
|
||||
desc:"Multimedia-Inhalt abannen/beaarbechten",
|
||||
edit:"Multimedia-Abettung beaarbechten"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokument-Eegeschaften"
|
||||
},
|
||||
template:{
|
||||
desc:"Virgef\u00E4erdegte Virlageninhalt af\u00FCgen"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Siichtbarkeet vun de Steierzeechen un/aus"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Spellchecker un/aus",
|
||||
menu:"Konfiguratioun vum Spellchecker",
|
||||
ignore_word:"Wuert ignor\u00E9ieren",
|
||||
ignore_words:"All ignor\u00E9ieren",
|
||||
langs:"Sproochen",
|
||||
wait:"Wann ech gelift waarden...",
|
||||
sug:"Virschl\u00E9i",
|
||||
no_sug:"Keng Virschl\u00E9i",
|
||||
no_mpell:"Keng Orthographiefeeler fonnt."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"S\u00E4iten\u00EBmbroch af\u00FCgen"
|
||||
},
|
||||
advlist:{
|
||||
types:"Typen",
|
||||
def:"Standard",
|
||||
lower_alpha:"Kleng Buschtawen",
|
||||
lower_greek:"Kleng griichesch Buschtawen",
|
||||
lower_roman:"Kleng r\u00E9imech Zuelen",
|
||||
upper_alpha:"Grouss Buschtawen",
|
||||
upper_roman:"Grouss r\u00E9imech Zuelen",
|
||||
circle:"Krees",
|
||||
disc:"Scheif",
|
||||
square:"Quadrat"
|
||||
}}});
|
188
htdocs/resource2/tinymce/langs/lt.js
Normal file
188
htdocs/resource2/tinymce/langs/lt.js
Normal file
@ -0,0 +1,188 @@
|
||||
tinyMCE.addI18n({lt:{
|
||||
common:{
|
||||
edit_confirm:"Ar norite naudoti tekst\u0173 redaktoriaus re\u017Eim\u0105 \u0161iam teksto redagavimo langui?",
|
||||
apply:"Taikyti",
|
||||
insert:"\u012Eterpti",
|
||||
update:"Atnaujinti",
|
||||
cancel:"Atsisakyti",
|
||||
close:"U\u017Everti",
|
||||
browse:"Nar\u0161yti",
|
||||
class_name:"Klas\u0117",
|
||||
not_set:"-- Nenurodyta --",
|
||||
clipboard_msg:"Kopijavimas/i\u0161kirpimas/\u012Fd\u0117jimas paspaudus \u0161\u012F mygtuk\u0105 negalimas Mozilla ir Firefox nar\u0161ykl\u0117se.\nNukopijuoti galima paspaudus: Ctrl + C, i\u0161kirpti: Ctrl + X, \u012Fd\u0117ti: Ctrl + V.\nAr norite daugiau informacijos apie \u0161i\u0105 problem\u0105?",
|
||||
clipboard_no_support:"\u0160i nar\u0161ykl\u0117 nepalaiko \u0161io veikimo, tod\u0117l naudokite klaviat\u016Bros spar\u010Diuosius klavi\u0161us.",
|
||||
popup_blocked:"Atsipra\u0161ome, ta\u010Diau pasteb\u0117jome, kad j\u016Bs\u0173 i\u0161kylan\u010Di\u0173 lang\u0173 blokavimo programa i\u0161jung\u0117 lang\u0105, kuris teikia aplikacijai funkcionalum\u0105. Tur\u0117tum\u0117te atjungti i\u0161kylan\u010Di\u0173 lang\u0173 blokavim\u0105 \u0161iam tinklalapiui, kad i\u0161naudotum\u0117te visas galimybes.",
|
||||
invalid_data:"Klaida: Blogai \u012Fvestos reik\u0161m\u0117s, kurios pa\u017Eym\u0117tos raudonai.",
|
||||
more_colors:"Daugiau spalv\u0173"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Lygiavimas",
|
||||
left:"Kair\u0117je",
|
||||
center:"Centre",
|
||||
right:"De\u0161in\u0117je",
|
||||
full:"I\u0161 abiej\u0173 pusi\u0173"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u012Eterpti dat\u0105",
|
||||
inserttime_desc:"\u012Eterpti laik\u0105",
|
||||
months_long:"Sausis,Vasaris,Kovas,Balandis,Gegu\u017E\u0117,Bir\u017Eelis,Liepa,Rugpj\u016Btis,Rugs\u0117jis,Spalis,Lapkritis,Gruodis",
|
||||
months_short:"Sau,Vas,Kov,Bal,Geg,Bir,Lie,Rugpj,Rugs,Spa,Lapkr,Gruo",
|
||||
day_long:"Sekmadienis,Pirmadienis,Antradienis,Tre\u010Diadienis,Ketvirtadienis,Penktadienis,\u0160e\u0161tadienis,Sekmadienis",
|
||||
day_short:"Sekm,Pirm,Antr,Tre\u010D,Ketv,Penk,\u0160e\u0161t,Sekm"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Spausdinti"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Per\u017Ei\u016Bra"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Kryptis i\u0161 kair\u0117s \u012F de\u0161in\u0119",
|
||||
rtl_desc:"Kryptis i\u0161 de\u0161in\u0117s \u012F kair\u0119"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u012Eterpti nauj\u0105 sluoksn\u012F",
|
||||
forward_desc:"Perkelti \u012F priek\u012F",
|
||||
backward_desc:"Perkelti atgal",
|
||||
absolute_desc:"Perjungti absoliut\u0173 pozicionavim\u0105",
|
||||
content:"Naujas sluoksnis..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"I\u0161saugoti",
|
||||
cancel_desc:"Atsisakyti vis\u0173 pakeitim\u0173"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u012Eterpti jungiamojo tarpo simbol\u012F"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Paleisti ra\u0161ybos tikrintuv\u0119",
|
||||
download:"ieSpell neaptiktas. Ar norite dabar j\u012F \u012Fdiegti?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontali linija",
|
||||
delta_width:"10"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Jaustukai"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Ie\u0161koti",
|
||||
replace_desc:"Ie\u0161koti/Pakeisti",
|
||||
delta_width:"10",
|
||||
delta_height:"20"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u012Eterpti/Redaguoti paveiksl\u0117l\u012F",
|
||||
delta_width:"10"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u012Eterpti/Redaguoti nuorod\u0105",
|
||||
delta_width:"10"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citavimas",
|
||||
abbr_desc:"Santrumpa",
|
||||
acronym_desc:"Akronimas",
|
||||
del_desc:"Panaikinimas",
|
||||
ins_desc:"\u012Eterpimas",
|
||||
attribs_desc:"\u012Eterpti/Redaguoti atributus",
|
||||
cite_delta_width:"10",
|
||||
abbr_delta_width:"10",
|
||||
acronym_delta_width:"10",
|
||||
del_delta_width:"10",
|
||||
ins_delta_width:"10",
|
||||
attribs_delta_width:"10"
|
||||
},
|
||||
style:{
|
||||
desc:"Redaguoti CSS stili\u0173",
|
||||
delta_width:"40"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u012Ed\u0117ti kaip paprast\u0105 tekst\u0105",
|
||||
paste_word_desc:"\u012Ed\u0117ti i\u0161 Word",
|
||||
selectall_desc:"Visk\u0105 pa\u017Eym\u0117ti",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Naudokite CTRL+V tekstui \u012Fd\u0117ti \u012F \u0161\u012F lang\u0105.",
|
||||
text_linebreaks:"Palikti eilu\u010Di\u0173 l\u016B\u017Eius",
|
||||
word_title:"Naudokite CTRL+V tekstui \u012Fd\u0117ti \u012F \u0161\u012F lang\u0105."
|
||||
},
|
||||
table:{
|
||||
desc:"\u012Eterpti/Redaguoti lentel\u0119",
|
||||
row_before_desc:"\u012Eterpti eilut\u0119 prie\u0161",
|
||||
row_after_desc:"\u012Eterpti eilut\u0119 po",
|
||||
delete_row_desc:"\u0160alinti eilut\u0119",
|
||||
col_before_desc:"\u012Eterpti stulpel\u012F prie\u0161",
|
||||
col_after_desc:"\u012Eterpti stulpel\u012F po",
|
||||
delete_col_desc:"\u0160alinti stulpel\u012F",
|
||||
split_cells_desc:"Skaidyti sulietus lentel\u0117s langelius",
|
||||
merge_cells_desc:"Sujungti lentel\u0117s langelius",
|
||||
row_desc:"Lentel\u0117s eilut\u0117s nustatymai",
|
||||
cell_desc:"Lentel\u0117s langelio nustatymai",
|
||||
props_desc:"Lentel\u0117s nustatymai",
|
||||
paste_row_before_desc:"\u012Ed\u0117ti lentel\u0117s eilut\u0119 prie\u0161",
|
||||
paste_row_after_desc:"\u012Ed\u0117ti lentel\u0117s eilut\u0119 po",
|
||||
cut_row_desc:"I\u0161kirpti lentel\u0117s eilut\u0119",
|
||||
copy_row_desc:"Kopijuoti lentel\u0117s eilut\u0119",
|
||||
del:"\u0160alinti lentel\u0119",
|
||||
row:"Eilut\u0117",
|
||||
col:"Stulpelis",
|
||||
cell:"Langelis",
|
||||
rowprops_delta_width:"10",
|
||||
cellprops_delta_width:"10",
|
||||
table_delta_width:"10",
|
||||
merge_cells_delta_width:"10"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Visi pakeitimai bus prarasti, jei i\u0161eisite i\u0161 \u0161io puslapio.",
|
||||
restore_content:"Atstatyti automati\u0161kai i\u0161saugot\u0105 turin\u012F.",
|
||||
warning_message:"Jei atstatysite i\u0161saugot\u0105 turin\u012F, prarasite esam\u0105 turin\u012F redaktoriaus lange.\n\nAr tikrai norite atstatyti i\u0161saugot\u0105 turin\u012F?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Perjungti viso ekrano re\u017Eim\u0105"
|
||||
},
|
||||
media:{
|
||||
desc:"\u012Eterpti/redaguoti integruot\u0105 daugialyp\u0119 terp\u0119",
|
||||
edit:"Redaguoti integruot\u0105 daugialyp\u0119 terp\u0119",
|
||||
delta_width:"10"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumento nustatymai",
|
||||
delta_width:"10"
|
||||
},
|
||||
template:{
|
||||
desc:"\u012Eterpti numatyt\u0105 \u0161ablono turin\u012F"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizualiniai valdymo simboliai \u012Fjungti/i\u0161jungti."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Perjungti ra\u0161ybos tikrintuv\u0119",
|
||||
menu:"Ra\u0161ybos tikrintuv\u0117s nustatymai",
|
||||
ignore_word:"Ignoruoti \u017Eod\u012F",
|
||||
ignore_words:"Ignoruoti visk\u0105",
|
||||
langs:"Kalbos",
|
||||
wait:"Pra\u0161ome palaukti...",
|
||||
sug:"Pasi\u016Blymai",
|
||||
no_sug:"Pasi\u016Blym\u0173 nerasta",
|
||||
no_mpell:"Klaid\u0173 nerasta."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u012Eterpti puslapio pabaigos \u017Eym\u0119."
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipai",
|
||||
def:"Numatytasis",
|
||||
lower_alpha:"Ma\u017Eosiomis raid\u0117mis",
|
||||
lower_greek:"Ma\u017Eaisiais graik\u0173",
|
||||
lower_roman:"Ma\u017Eaisiais rom\u0117n\u0173",
|
||||
upper_alpha:"Did\u017Eiosiomis raid\u0117mis",
|
||||
upper_roman:"Did\u017Eiaisiais rom\u0117n\u0173",
|
||||
circle:"Apskritimas",
|
||||
disc:"Diskas",
|
||||
square:"Kvadratas"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/lv.js
Normal file
170
htdocs/resource2/tinymce/langs/lv.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({lv:{
|
||||
common:{
|
||||
edit_confirm:"Vai tu v\u0113lies izmantot WYSIWYG \u0161im teksta laukam?",
|
||||
apply:"Apstiprin\u0101t",
|
||||
insert:"Ievietot",
|
||||
update:"Atjaunin\u0101t",
|
||||
cancel:"Atcelt",
|
||||
close:"Aizv\u0113rt",
|
||||
browse:"P\u0101rl\u016Bkot",
|
||||
class_name:"Klase",
|
||||
not_set:"-- Nav nor\u0101d\u012Bts --",
|
||||
clipboard_msg:"Iesp\u0113ja Kop\u0113t/Izgriezt/Iekop\u0113t nav pieejama p\u0101rl\u016Bkiem Mozilla and Firefox.\nVai J\u016Bs v\u0113laties uzzin\u0101t vair\u0101k par \u0161o probl\u0113mu?",
|
||||
clipboard_no_support:"\u0160obr\u012Bd J\u016Bsu p\u0101rl\u016Bks neatbalsta \u0161o iesp\u0113ju, t\u0101 viet\u0101 l\u016Bdzu izmantotjiet tastat\u016Bras sa\u012Bsin\u0101jumtausti\u0146us.",
|
||||
popup_blocked:"Atvainojiet, bet m\u0113s esam konstat\u0113ju\u0161i, ka J\u016Bsu uzleco\u0161o logu blo\u0137\u0113t\u0101js ir atsp\u0113jojis logu, kas nodro\u0161ina programmas funkcionalit\u0101ti. Lai piln\u012Bb\u0101 izmantotu \u0161o r\u012Bku, Jums ir j\u0101atsl\u0113dz uzleco\u0161o logu blo\u0137\u0113tajs \u0161ai vietnei. ",
|
||||
invalid_data:"K\u013C\u016Bda: Ievad\u012Btas neder\u012Bgas v\u0113rt\u012Bbas. T\u0101s ir atz\u012Bm\u0113tas sarkan\u0101 kr\u0101s\u0101.",
|
||||
more_colors:"Vair\u0101k kr\u0101su"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Novietojums",
|
||||
left:"Pa kreisi",
|
||||
center:"Centr\u0113ts",
|
||||
right:"Pa labi",
|
||||
full:"Pilns"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Ievietot datumu",
|
||||
inserttime_desc:"Ievietot laiku",
|
||||
months_long:"Janv\u0101ris,Febru\u0101ris,Marts,Apr\u012Blis,Maijs,J\u016Bnijs,J\u016Blijs,Augusts,Seprembris,Oktobris,Novembris,Decembris",
|
||||
months_short:"Jan,Feb,Mar,Apr,Mai,J\u016Bn,J\u016Bl,Aug,Sep,Okt,Nov,Dec",
|
||||
day_long:"Sv\u0113tdiena,Pirmdiena,Otrdiena,Tre\u0161diena,Ceturtdiena,Piektdiena,Sestdiena,Sv\u0113tdiena",
|
||||
day_short:"Sv\u0113,Pir,Otr,Tre,Cet,Pie,Ses,Sv\u0113"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Druk\u0101t"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Priek\u0161skat\u012Bt"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Virziens no kreis\u0101s uz labo",
|
||||
rtl_desc:"Virziens no lab\u0101s uz kreiso"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Ievietot jaunu sl\u0101ni",
|
||||
forward_desc:"Uz priek\u0161u",
|
||||
backward_desc:"Atpaka\u013C",
|
||||
absolute_desc:"Iestat\u012Bt/Nov\u0101kt absol\u016Bto novietojumu ",
|
||||
content:"Jauns sl\u0101nis..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Saglab\u0101t",
|
||||
cancel_desc:"Atcelt visas izmai\u0146as"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Ievietot tuk\u0161uma simbolu"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Uzs\u0101kt pareizrakst\u012Bbas p\u0101rbaudi",
|
||||
download:"ieSpell netika atrasts. Vai J\u016Bs v\u0113laties to uzst\u0101d\u012Bt?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizont\u0101la sv\u012Btra"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Smaidi\u0146i"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Mekl\u0113t",
|
||||
replace_desc:"Mekl\u0113t/Aizvietot"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Ievietot/Redi\u0123\u0113t att\u0113lu"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Ievietot/Redi\u0123\u0113t saiti"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cit\u0101ts",
|
||||
abbr_desc:"Sa\u012Bsin\u0101jums",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Pielikt/redi\u0123\u0113t \u012Bpa\u0161\u012Bbas"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Iekop\u0113t ka parasto tekstu",
|
||||
paste_word_desc:"Iekop\u0113t no Word",
|
||||
selectall_desc:"Iez\u012Bm\u0113t visu",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Izmantojiet CTRL+V uz j\u016Bsu tastat\u016Bras lai iekop\u0113t tekstu log\u0101.",
|
||||
text_linebreaks:"Sagl\u0101b\u0101t l\u012Bniju sadal\u012Bt\u0101jus",
|
||||
word_title:"Izmantojiet CTRL+V uz j\u016Bsu tastat\u016Bras lai iekop\u0113t tekstu log\u0101."
|
||||
},
|
||||
table:{
|
||||
desc:"Ielikt jaunu tabulu",
|
||||
row_before_desc:"Ielikt jaunu rindu priek\u0161\u0101",
|
||||
row_after_desc:"Ielikt jaunu rindu aiz",
|
||||
delete_row_desc:"Izdz\u0113st rindu",
|
||||
col_before_desc:"Ielikt jaunu stabu priek\u0161\u0101",
|
||||
col_after_desc:"Ielikt jaunu stabu aiz",
|
||||
delete_col_desc:"Izdz\u0113st stabu",
|
||||
split_cells_desc:"Sadal\u012Bt apvienotas tabules ailes",
|
||||
merge_cells_desc:"Apvienot tabulas ailes",
|
||||
row_desc:"Tabulas rindas \u012Bpa\u0161\u012Bbas",
|
||||
cell_desc:"Tabulas ailes \u012Bpa\u0161\u012Bbas",
|
||||
props_desc:"Tabulas \u012Bpa\u0161\u012Bbas",
|
||||
paste_row_before_desc:"Ielikt tabulas rindu priek\u0161\u0101",
|
||||
paste_row_after_desc:"Ielikt tabulas rindu aiz",
|
||||
cut_row_desc:"Izgriezt tabulas rindu",
|
||||
copy_row_desc:"Kop\u0113t tabulas rindu",
|
||||
del:"Izdz\u0113st tabulu",
|
||||
row:"Rinda",
|
||||
col:"St\u0101bs",
|
||||
cell:"Aile"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/mk.js
Normal file
170
htdocs/resource2/tinymce/langs/mk.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({mk:{
|
||||
common:{
|
||||
edit_confirm:"\u017Delite li koristiti WYSIWYG na\u010Din rada za ovo tekstualno polje?",
|
||||
apply:"Primjeni",
|
||||
insert:"\u0412\u043C\u0435\u0442\u043D\u0438",
|
||||
update:"\u041E\u0431\u043D\u043E\u0432\u0438",
|
||||
cancel:"\u041E\u0442\u043A\u0430\u0436\u0438",
|
||||
close:"\u0417\u0430\u0442\u0432\u043E\u0440\u0438",
|
||||
browse:"\u041F\u0440\u0435\u0432\u0437\u0435\u043C\u0438",
|
||||
class_name:"\u041A\u043B\u0430\u0441\u0430",
|
||||
not_set:"-- \u041D\u0435 \u0435 \u043F\u043E\u0441\u0442\u0430\u0432\u0435\u043D\u043E --",
|
||||
clipboard_msg:"\u041A\u043E\u043F\u0438\u0440\u0430\u0458/\u0421\u043D\u0438\u043C\u0438/\u0417\u0430\u043B\u0435\u043F\u0438 \u043D\u0435 \u0435 \u0434\u043E\u0437\u0432\u043E\u043B\u0435\u043D\u043E \u043D\u0430 Mozilla \u0438 Firefox \u043F\u0440\u0435\u0431\u0430\u0440\u0443\u0432\u0430\u0447\u0438.\n\u041F\u043E\u0432\u0435\u045C\u0435 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u0438?",
|
||||
clipboard_no_support:"Trenuta\u010Dno va\u0161 preglednik ne podr\u017Eava ovu opciju, poku\u0161ajte koristiti tipkovni\u010Dku kraticu.",
|
||||
popup_blocked:"Oprostite, izgleda da je va\u0161 popup-blocker onemogu\u0107io prozor u sklopu ovog programa. Morate onemogu\u0107iti blokiranje popup prozora da bi u potpunosti iskoristili ovaj alat.",
|
||||
invalid_data:"Gre\u0161ka: Une\u0161ene su nevaljane vrednosti, ozna\u010Dene su crvenom bojom.",
|
||||
more_colors:"Vi\u0161e boja"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Poravnavanje",
|
||||
left:"Levo",
|
||||
center:"Sredina",
|
||||
right:"Desno",
|
||||
full:"Puno"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y.",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 datum",
|
||||
inserttime_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 vreme",
|
||||
months_long:"januar,februar,mart,april,maj,juni,juli,avgust,septembar,oktobar,novembar,decembar",
|
||||
months_short:"jan,feb,mar,apr,maj,jun,jul,avg,sep,okt,nov,dec",
|
||||
day_long:"nedelja,ponedjeljak,utorak,sreda,\u010Detvrtak,petak,subota,nedelja",
|
||||
day_short:"ned,pon,uto,sre,\u010Det,pet,sub,ned"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Ispis"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Prikaz"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"S leva na desno",
|
||||
rtl_desc:"S desna na levo"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 novi sloj",
|
||||
forward_desc:"Pomakni napred",
|
||||
backward_desc:"Pomakni natrag",
|
||||
absolute_desc:"Uklju\u010Di/isklju\u010Di apsolutno pozicioniranje",
|
||||
content:"Novi sloj..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Spremi",
|
||||
cancel_desc:"Odustani od svih promjena"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 razmak"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Pokreni provjeru pravopisa",
|
||||
download:"Provjera pravopisa nije postavljena. Postaviti sada?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodoravna crta"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emocije"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Prona\u0111i",
|
||||
replace_desc:"Prona\u0111i/Zameni"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0412\u043C\u0435\u0442\u043D\u0438/uredi sliku"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Kratica",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Brisanje",
|
||||
ins_desc:"Unos",
|
||||
attribs_desc:"\u0412\u043C\u0435\u0442\u043D\u0438/uredi atribute"
|
||||
},
|
||||
style:{
|
||||
desc:"Uredi CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Zalepi kao obi\u010Dni tekst",
|
||||
paste_word_desc:"Zalepi iz Worda",
|
||||
selectall_desc:"Odaberi sve",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor."
|
||||
},
|
||||
table:{
|
||||
desc:"Nova tablica",
|
||||
row_before_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 redak iznad",
|
||||
row_after_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 redak ispod",
|
||||
delete_row_desc:"Izbri\u0161i redak",
|
||||
col_before_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 stupac levo",
|
||||
col_after_desc:"\u0412\u043C\u0435\u0442\u043D\u0438 stupac desno",
|
||||
delete_col_desc:"Ukloni stupac",
|
||||
split_cells_desc:"Razdvoji spojene \u0107elije",
|
||||
merge_cells_desc:"Spoji \u0107elije",
|
||||
row_desc:"Svojstva retka",
|
||||
cell_desc:"Svojstva \u0107elije",
|
||||
props_desc:"Svojstva tablice",
|
||||
paste_row_before_desc:"Zalepi redak iznad",
|
||||
paste_row_after_desc:"Zalepi redak ispod",
|
||||
cut_row_desc:"Izre\u017Ei redak",
|
||||
copy_row_desc:"Kopiraj redak",
|
||||
del:"Izbri\u0161i tablicu",
|
||||
row:"Redak",
|
||||
col:"Stupac",
|
||||
cell:"\u0106elija"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Promjene u dokumentu \u0107e biti izgubljene ako iza\u0111ete s ove stranice.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di prikaz preko celog ekrana"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Svojstva dokumenta"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0412\u043C\u0435\u0442\u043D\u0438 sadr\u017Eaj iz predlo\u017Eak"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizuelni kontrolni znakovi uklju\u010Deni/isklju\u010Deni."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di provjeru pravopisa",
|
||||
menu:"Postavke provere pravopisa",
|
||||
ignore_word:"Zanemari re\u010D",
|
||||
ignore_words:"Zanemari sve",
|
||||
langs:"Jezici",
|
||||
wait:"Pri\u010Dekajte...",
|
||||
sug:"Predlozi",
|
||||
no_sug:"Nema predloga",
|
||||
no_mpell:"Nije prona\u0111ena nijedna pravopisna gre\u0161ka."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0412\u043C\u0435\u0442\u043D\u0438 prelom."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ml.js
Normal file
170
htdocs/resource2/tinymce/langs/ml.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ml:{
|
||||
common:{
|
||||
edit_confirm:"\u0D08 \u0D0E\u0D34\u0D41\u0D24\u0D4D\u0D24\u0D3F\u0D1F\u0D02 \u0D15\u0D3E\u0D23\u0D41\u0D02\u0D35\u0D3F\u0D27\u0D02 \u0D0E\u0D34\u0D41\u0D24\u0D41\u0D28\u0D4D\u0D28\u0D24\u0D3E\u0D15\u0D4D\u0D15\u0D23\u0D4B ?",
|
||||
apply:"\u0D2A\u0D4D\u0D30\u0D2F\u0D4B\u0D17\u0D3F\u0D15\u0D4D\u0D15\u0D41\u0D15",
|
||||
insert:"\u0D24\u0D3F\u0D30\u0D41\u0D15\u0D41\u0D15",
|
||||
update:"\u0D2E\u0D3E\u0D31\u0D4D\u0D31\u0D02 \u0D35\u0D30\u0D41\u0D24\u0D4D\u0D24\u0D41\u0D15",
|
||||
cancel:"\u0D35\u0D47\u0D23\u0D4D\u0D1F\u0D46\u0D28\u0D4D\u0D28\u0D41\u0D35\u0D46\u0D15\u0D4D\u0D15\u0D15",
|
||||
close:"\u0D05\u0D1F\u0D15\u0D4D\u0D15\u0D41\u0D15",
|
||||
browse:"\u0D2E\u0D47\u0D2F\u0D41\u0D15",
|
||||
class_name:"\u0D24\u0D30\u0D02",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"\u0D2E\u0D41\u0D31\u0D3F\u0D15\u0D4D\u0D15\u0D32\u0D4D\u200D/\u0D2A\u0D15\u0D30\u0D4D\u200D\u0D24\u0D4D\u0D24\u0D32\u0D4D\u200D/\u0D12\u0D1F\u0D4D\u0D1F\u0D3F\u0D15\u0D4D\u0D15\u0D32\u0D4D\u200D \u0D0E\u0D28\u0D4D\u0D28\u0D3F\u0D35 '\u0D2E\u0D4B\u0D38\u0D3F\u0D32\u0D4D\u0D32'\u0D2F\u0D3F\u0D32\u0D41\u0D02 '\u0D2B\u0D2F\u0D30\u0D4D\u200D\u0D2B\u0D4B\u0D15\u0D4D\u0D38\u0D4D'\u0D32\u0D41\u0D02 \u0D32\u0D2D\u0D4D\u0D2F\u0D2E\u0D32\u0D4D\u0D32. \u200C\n\u0D24\u0D3E\u0D19\u0D4D\u0D15\u0D33\u0D4D\u200D\u0D15\u0D4D\u0D15\u0D41 \u0D07\u0D24\u0D3F\u0D28\u0D46 \u0D15\u0D41\u0D31\u0D3F\u0D1A\u0D4D\u0D1A\u0D41\u0D4D \u0D15\u0D42\u0D1F\u0D41\u0D24\u0D32\u0D4D\u200D \u0D05\u0D31\u0D3F\u0D2F\u0D23\u0D4B ?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"\u0D2A\u0D3F\u0D34\u0D35\u0D41\u0D4D: Invalid values entered, these are marked in red.",
|
||||
more_colors:"\u0D15\u0D42\u0D1F\u0D41\u0D24\u0D32\u0D4D\u200D \u0D28\u0D3F\u0D31\u0D19\u0D4D\u0D19\u0D33\u0D4D\u200D"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"\u0D1C\u0D28\u0D41\u0D35\u0D30\u0D3F, \u0D2B\u0D46\u0D2C\u0D4D\u0D30\u0D41\u0D35\u0D30\u0D3F, \u0D2E\u0D3E\u0D30\u0D4D\u200D\u0D1A\u0D4D\u0D1A\u0D41\u0D4D, \u0D0F\u0D2A\u0D4D\u0D30\u0D3F\u0D32\u0D4D\u200D, \u0D2E\u0D46\u0D2F\u0D4D, \u0D1C\u0D41\u0D23\u0D4D\u200D, \u0D1C\u0D42\u0D32\u0D3E\u0D2F\u0D4D, \u0D06\u0D17\u0D38\u0D4D\u0D24\u0D4D, \u0D38\u0D46\u0D2A\u0D4D\u0D24\u0D02\u0D2C\u0D30\u0D4D\u200D, \u0D12\u0D15\u0D4D\u0D1F\u0D4B\u0D2C\u0D30\u0D4D\u200D, \u0D28\u0D35\u0D02\u0D2C\u0D30\u0D4D\u200D, \u0D21\u0D3F\u0D38\u0D02\u0D2C\u0D30\u0D4D\u200D",
|
||||
months_short:"\u0D1C\u0D28\u0D41, \u0D2B\u0D46\u0D2C\u0D4D\u0D30\u0D41, \u0D2E\u0D3E\u0D30\u0D4D\u200D, \u0D0F\u0D2A\u0D4D\u0D30\u0D3F, \u0D2E\u0D46, \u0D1C\u0D41\u0D23\u0D4D\u200D, \u0D1C\u0D42\u0D32\u0D3E, \u0D06\u0D17, \u0D38\u0D46\u0D2A\u0D4D\u0D24\u0D02, \u0D12\u0D15\u0D4D\u0D1F\u0D4B, \u0D28\u0D35\u0D02, \u0D21\u0D3F\u0D38\u0D02",
|
||||
day_long:"\u0D1E\u0D3E\u0D2F\u0D30\u0D4D\u200D, \u0D24\u0D3F\u0D19\u0D4D\u0D15\u0D33\u0D4D\u200D, \u0D1A\u0D4A\u0D35\u0D4D\u0D35, \u0D2C\u0D41\u0D27\u0D28\u0D4D\u200D, \u0D35\u0D4D\u0D2F\u0D3E\u0D34\u0D02, \u0D35\u0D46\u0D33\u0D4D\u0D33\u0D3F, \u0D36\u0D28\u0D3F, \u0D1E\u0D3E\u0D2F\u0D30\u0D4D\u200D",
|
||||
day_short:"\u0D1E\u0D3E, \u0D24\u0D3F, \u0D1A\u0D4A, \u0D2C\u0D41, \u0D35\u0D4D\u0D2F\u0D3E, \u0D35\u0D46, \u0D36, \u0D1E\u0D3E"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0D26\u0D43\u0D36\u0D4D\u0D2F \u0D28\u0D3F\u0D2F\u0D28\u0D4D\u0D24\u0D4D\u0D30\u0D23 \u0D05\u0D15\u0D4D\u0D37\u0D30\u0D19\u0D4D\u0D19\u0D33\u0D4D\u200D \u0D2E\u0D3E\u0D31\u0D4D\u0D31\u0D41\u0D15."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u0D05\u0D15\u0D4D\u0D37\u0D30\u0D2A\u0D30\u0D3F\u0D36\u0D4B\u0D27\u0D28 \u0D28\u0D3F\u0D2F\u0D28\u0D4D\u0D24\u0D4D\u0D30\u0D23\u0D02",
|
||||
menu:"\u0D05\u0D15\u0D4D\u0D37\u0D30\u0D2A\u0D30\u0D3F\u0D36\u0D4B\u0D27\u0D28\u0D3E \u0D15\u0D4D\u0D30\u0D2E\u0D40\u0D15\u0D30\u0D23\u0D19\u0D4D\u0D19\u0D33\u0D4D\u200D",
|
||||
ignore_word:"\u0D35\u0D3E\u0D15\u0D4D\u0D15\u0D41\u0D4D \u0D05\u0D35\u0D17\u0D23\u0D3F\u0D15\u0D4D\u0D15\u0D42",
|
||||
ignore_words:"\u0D0E\u0D32\u0D4D\u0D32\u0D3E\u0D02 \u0D05\u0D35\u0D17\u0D23\u0D3F\u0D15\u0D4D\u0D15\u0D42",
|
||||
langs:"\u0D2D\u0D3E\u0D37\u0D15\u0D33\u0D4D\u200D",
|
||||
wait:"\u0D26\u0D2F\u0D35\u0D3E\u0D2F\u0D3F \u0D15\u0D3E\u0D24\u0D4D\u0D24\u0D41\u0D28\u0D3F\u0D32\u0D4D\u0D15\u0D41...",
|
||||
sug:"\u0D05\u0D2D\u0D3F\u0D2A\u0D4D\u0D30\u0D3E\u0D2F\u0D19\u0D4D\u0D19\u0D33\u0D4D\u200D",
|
||||
no_sug:"\u0D05\u0D2D\u0D3F\u0D2A\u0D4D\u0D30\u0D3E\u0D2F\u0D2E\u0D3F\u0D32\u0D4D\u0D32",
|
||||
no_mpell:"\u0D05\u0D15\u0D4D\u0D37\u0D30\u0D24\u0D4D\u0D24\u0D46\u0D31\u0D4D\u0D31\u0D3F\u0D32\u0D4D\u0D32."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0D2A\u0D47\u0D1C\u0D41\u0D4D \u0D24\u0D3F\u0D30\u0D3F\u0D15\u0D4D\u0D15\u0D41\u0D15"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/mn.js
Normal file
170
htdocs/resource2/tinymce/langs/mn.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({mn:{
|
||||
common:{
|
||||
edit_confirm:"\u0422\u0430 \u044D\u043D\u044D \u0431\u0438\u0447\u0432\u044D\u0440\u0438\u0439\u043D \u043C\u0443\u0436\u0438\u0439\u0433 WYSIWYG \u0437\u0430\u0441\u0432\u0430\u0440\u043B\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u044D\u0436 \u0431\u0430\u0439\u043D\u0430 \u0443\u0443?",
|
||||
apply:"\u0425\u044D\u0440\u044D\u0433\u043B\u044D\u0445",
|
||||
insert:"\u041E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
update:"\u0428\u0438\u043D\u044D\u0447\u043B\u044D\u0445",
|
||||
cancel:"\u0426\u0443\u0446\u043B\u0430\u0445",
|
||||
close:"\u0425\u0430\u0430\u0445",
|
||||
browse:"\u0413\u04AF\u0439\u043B\u0433\u044D\u043D \u04AF\u0437\u044D\u0445",
|
||||
class_name:"\u0410\u043D\u0433\u0438",
|
||||
not_set:"-- \u041E\u043B\u0433\u043E\u0433\u0434\u043E\u043E\u0433\u04AF\u0439 --",
|
||||
clipboard_msg:"\u0425\u0443\u0443\u043B\u0430\u0445, \u0442\u0430\u0441\u043B\u0430\u043D \u0430\u0432\u0430\u0445 \u0431\u0443\u0443\u043B\u0433\u0430\u0445 \u043D\u044C \u041C\u043E\u0437\u0438\u043B\u043B\u0430 \u0424\u0430\u0439\u0440\u0444\u043E\u043A\u0441 \u0434\u044D\u044D\u0440 \u0431\u043E\u043B\u043E\u043C\u0436\u0433\u04AF\u0439.\n\u0422\u0430 \u044D\u043D\u044D \u0430\u0441\u0443\u0443\u0434\u043B\u044B\u043D \u0442\u0430\u043B\u0430\u0430\u0440 \u0434\u044D\u043B\u0433\u044D\u0440\u044D\u043D\u0433\u04AF\u0439 \u043C\u044D\u0434\u044D\u0445\u0438\u0439\u0433 \u0445\u04AF\u0441\u044D\u0436 \u0431\u0430\u0439\u043D\u0430 \u0443\u0443?",
|
||||
clipboard_no_support:"\u041E\u0434\u043E\u043E\u0433\u043E\u043E\u0440 \u0442\u0430\u043D\u044B \u0445\u04E9\u0442\u04E9\u0447 \u0434\u044D\u044D\u0440 \u0434\u044D\u043C\u0436\u0438\u0433\u0434\u044D\u044D\u0433\u04AF\u0439 \u0431\u0430\u0439\u043D\u0430. \u0422\u0430 \u04AF\u04AF\u043D\u0438\u0439 \u043E\u0440\u043E\u043D\u0434 \u0442\u043E\u0432\u0447\u0438\u043B\u0431\u043E\u0440 \u0445\u044D\u0440\u044D\u0433\u043B\u044D\u043D\u044D \u04AF\u04AF.",
|
||||
popup_blocked:"\u0425\u0430\u0440\u0430\u043C\u0441\u0430\u043B\u0442\u0430\u0439 \u043D\u044C \u0442\u0430\u043D\u044B \u043F\u043E\u043F\u0430\u043F \u0445\u0430\u0430\u043B\u0442 \u044D\u043D\u044D \u043F\u0440\u043E\u0433\u0440\u0430\u043C\u0434 \u0448\u0430\u0430\u0440\u0434\u043B\u0430\u0433\u0430\u0442\u0430\u0439 \u0446\u043E\u043D\u0445\u044B\u0433 \u0445\u0430\u0430\u043B\u0430\u0430. \u0411\u04AF\u0440\u044D\u043D \u0434\u04AF\u04AF\u0440\u044D\u043D \u0430\u0436\u0438\u043B\u043B\u0430\u0433\u0430\u0430\u0433 \u0445\u0430\u043D\u0433\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u0432\u044D\u043B \u043F\u043E\u043F\u0430\u043F \u0445\u0430\u0430\u043B\u0442\u0430\u0430 \u0438\u0434\u044D\u0432\u0445\u0433\u04AF\u0439\u0436\u04AF\u04AF\u043B\u043D\u044D \u04AF\u04AF.",
|
||||
invalid_data:"\u0410\u043B\u0434\u0430\u0430: \u0422\u0430 \u0445\u04AF\u0447\u0438\u043D\u0433\u04AF\u0439 \u0443\u0442\u0433\u0430 \u043E\u0440\u0443\u0443\u043B\u0441\u0430\u043D. (\u0443\u043B\u0430\u0430\u043D\u0430\u0430\u0440 \u0442\u044D\u043C\u0434\u044D\u0433\u043B\u044D\u0441\u044D\u043D).",
|
||||
more_colors:"\u0411\u0443\u0441\u0430\u0434 \u04E9\u043D\u0433\u04E9"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0416\u0438\u0433\u0434\u0440\u04AF\u04AF\u043B\u044D\u043B\u0442",
|
||||
left:"\u0417\u04AF\u04AF\u043D",
|
||||
center:"\u0414\u0443\u043D\u0434",
|
||||
right:"\u0411\u0430\u0440\u0443\u0443\u043D",
|
||||
full:"\u0422\u044D\u0433\u0448\u0438\u043B\u0441\u044D\u043D"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y.%m.%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u041E\u0433\u043D\u043E\u043E \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
inserttime_desc:"\u0425\u0443\u0433\u0430\u0446\u0430\u0430 \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
months_long:"\u0425\u0443\u043B\u0433\u0430\u043D\u0430,\u04AE\u0445\u044D\u0440,\u0411\u0430\u0440,\u0422\u0443\u0443\u043B\u0430\u0439,\u041B\u0443\u0443,\u041C\u043E\u0433\u043E\u0439,\u041C\u043E\u0440\u044C,\u0425\u043E\u043D\u044C,\u0411\u0438\u0447,\u0422\u0430\u0445\u0438\u0430,\u041D\u043E\u0445\u043E\u0439,\u0413\u0430\u0445\u0430\u0439",
|
||||
months_short:"\u0425\u0443\u043B,\u04AE\u0445\u044D,\u0411\u0430\u0440,\u0422\u0443\u0443,\u041B\u0443\u0443,\u041C\u043E\u0433,\u041C\u043E\u0440,\u0425\u043E\u043D,\u0411\u0438\u0447,\u0422\u0430\u0445,\u041D\u043E\u0445,\u0413\u0430\u0445",
|
||||
day_long:"\u041D\u044F\u043C,\u0414\u0430\u0432\u0430\u0430,\u041C\u044F\u0433\u043C\u0430\u0440,\u041B\u0445\u0430\u0433\u0432\u0430,\u041F\u04AF\u0440\u044D\u0432,\u0411\u0430\u0430\u0441\u0430\u043D,\u0411\u044F\u043C\u0431\u0430,\u041D\u044F\u043C",
|
||||
day_short:"\u041D\u044F,\u0414\u0430,\u041C\u044F,\u041B\u0445,\u041F\u04AF,\u0411\u0430,\u0411\u044F,\u041D\u044F"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0425\u044D\u0432\u043B\u044D\u0445"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u041D\u044F\u0433\u0442\u043B\u0430\u0445"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u0417\u04AF\u04AF\u043D\u044D\u044D\u0441 \u0431\u0430\u0440\u0443\u0443\u043D \u0431\u0438\u0447\u0438\u043B\u0442",
|
||||
rtl_desc:"\u0411\u0430\u0440\u0443\u0443\u043D \u0437\u04AF\u04AF\u043D \u0431\u0438\u0447\u0438\u043B\u0442"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0428\u0438\u043D\u044D \u0434\u0430\u0432\u0445\u0430\u0440\u0433\u0430 \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
forward_desc:"\u041D\u0430\u0430\u0448\u043B\u0443\u0443\u043B\u0430\u0445",
|
||||
backward_desc:"\u0426\u0430\u0430\u0448\u043B\u0443\u0443\u043B\u0430\u0445",
|
||||
absolute_desc:"\u0410\u0431\u0441\u043E\u043B\u044E\u0442 \u0431\u0430\u0439\u0440\u0448\u0443\u0443\u043B\u0430\u043B\u0442",
|
||||
content:"\u0428\u0438\u043D\u044D \u0434\u0430\u0432\u0445\u0430\u0440\u0433\u0430..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0425\u0430\u0434\u0433\u0430\u043B\u0430\u0445",
|
||||
cancel_desc:"\u0411\u04AF\u0445 \u04E9\u04E9\u0440\u0447\u043B\u04E9\u043B\u0442\u0438\u0439\u0433 \u0445\u0430\u044F\u0445"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0425\u0430\u043C\u0433\u0430\u0430\u043B\u0430\u043B\u0442\u0442\u0430\u0439 \u0445\u043E\u043E\u0441\u043E\u043D \u0437\u0430\u0439 \u043E\u0440\u0443\u0443\u043B\u0430\u0445"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0414\u04AF\u0440\u043C\u0438\u0439\u043D \u0430\u043B\u0434\u0430\u0430 \u0448\u0430\u043B\u0433\u0430\u043B\u0442",
|
||||
download:"ieSpell \u043E\u043B\u0434\u0441\u043E\u043D\u0433\u04AF\u0439. \u0422\u0430 \u0441\u0443\u0443\u043B\u0433\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u044D\u0436 \u0431\u0430\u0439\u043D\u0430 \u0443\u0443?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0422\u0443\u0441\u0433\u0430\u0430\u0440\u043B\u0430\u0433\u0447"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0421\u044D\u0442\u0433\u044D\u043B \u0445\u04E9\u0434\u043B\u04E9\u043B"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0425\u0430\u0439\u0445",
|
||||
replace_desc:"\u0425\u0430\u0439\u0445/\u043E\u0440\u043B\u0443\u0443\u043B\u0430\u0445"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0417\u0443\u0440\u0430\u0433 \u043E\u0440\u0443\u0443\u043B\u0430\u0445/\u043E\u0440\u043B\u0443\u0443\u043B\u0430\u0445"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0425\u043E\u043B\u0431\u043E\u043E\u0441 \u043E\u0440\u0443\u0443\u043B\u0430\u0445/\u0437\u0430\u0441\u0430\u0445"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0418\u0448\u043B\u044D\u043B",
|
||||
abbr_desc:"\u0422\u043E\u0432\u0447\u043B\u043E\u043B",
|
||||
acronym_desc:"\u0422\u043E\u0432\u0447\u0438\u043B\u0441\u043E\u043D \u04AF\u0433",
|
||||
del_desc:"\u0423\u0441\u0442\u0441\u0430\u043D \u0431\u0438\u0447\u0432\u044D\u0440 Text",
|
||||
ins_desc:"\u041E\u0440\u0441\u043E\u043D \u0431\u0438\u0447\u0432\u044D\u0440",
|
||||
attribs_desc:"\u0410\u0442\u0440\u0438\u0431\u0443\u0442 \u043E\u0440\u0443\u0443\u043B\u0430\u0445/\u0437\u0430\u0441\u0430\u0445"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS-Styles \u0437\u0430\u0441\u0430\u0445"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u042D\u043D\u0433\u0438\u0439\u043D \u0431\u0438\u0447\u0432\u044D\u0440\u044D\u044D\u0440 \u0431\u0443\u0443\u043B\u0433\u0430\u0445",
|
||||
paste_word_desc:"\u0425\u044D\u043B\u0431\u044D\u0440\u0436\u04AF\u04AF\u043B\u044D\u043B\u0442\u0442\u044D\u0439 \u0431\u0443\u0443\u043B\u0433\u0430\u0445 (Word-\u0441)",
|
||||
selectall_desc:"\u0411\u04AF\u0433\u0434\u0438\u0439\u0433 \u0441\u043E\u043D\u0433\u043E\u0445",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u0422\u0430 \u0431\u0438\u0447\u0432\u044D\u0440 \u043E\u0440\u0443\u0443\u043B\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u0432\u044D\u043B Ctrl+V \u0434\u044D\u044D\u0440 \u0434\u0430\u0440\u043D\u0430 \u0443\u0443.",
|
||||
text_linebreaks:"\u041C\u04E9\u0440 \u0442\u0430\u0441\u043B\u0430\u043B\u0442\u044B\u0433 \u04AF\u043B\u0434\u044D\u044D\u043D\u044D",
|
||||
word_title:"\u0422\u0430 \u0431\u0438\u0447\u0432\u044D\u0440 \u043E\u0440\u0443\u0443\u043B\u0430\u0445\u044B\u0433 \u0445\u04AF\u0441\u0432\u044D\u043B Ctrl+V \u0434\u044D\u044D\u0440 \u0434\u0430\u0440\u043D\u0430 \u0443\u0443."
|
||||
},
|
||||
table:{
|
||||
desc:"\u0425\u04AF\u0441\u043D\u044D\u0433\u0442 \u04AF\u04AF\u0441\u0433\u044D\u0445",
|
||||
row_before_desc:"\u0414\u044D\u044D\u0440 \u043D\u044C \u043C\u04E9\u0440 \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
row_after_desc:"\u0414\u043E\u043E\u0440 \u043D\u044C \u043C\u04E9\u0440 \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
delete_row_desc:"\u041C\u04E9\u0440 \u0443\u0441\u0442\u0433\u0430\u0445",
|
||||
col_before_desc:"\u0417\u04AF\u04AF\u043D \u0442\u0430\u043B\u0434 \u043D\u044C \u0431\u0430\u0433\u0430\u043D\u0430 \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
col_after_desc:"\u0411\u0430\u0440\u0443\u0443\u043D \u0442\u0430\u043B\u0434 \u043D\u044C \u0431\u0430\u0433\u0430\u043D\u0430 \u043E\u0440\u0443\u0443\u043B\u0430\u0445",
|
||||
delete_col_desc:"\u0411\u0430\u0433\u0430\u043D\u0430 \u0443\u0441\u0442\u0433\u0430\u0445",
|
||||
split_cells_desc:"\u041D\u044D\u0433\u0442\u0433\u044D\u0441\u044D\u043D \u043D\u04AF\u0434\u0438\u0439\u0433 \u0441\u0430\u043B\u0433\u0430\u0445",
|
||||
merge_cells_desc:"\u041D\u04AF\u0434 \u043D\u044D\u0433\u0442\u0433\u044D\u0445",
|
||||
row_desc:"\u041C\u04E9\u0440\u0438\u0439\u043D \u0448\u0438\u043D\u0436\u04AF\u04AF\u0434",
|
||||
cell_desc:"\u041D\u04AF\u0434\u043D\u0438\u0439 \u0448\u0438\u043D\u0436\u04AF\u04AF\u0434",
|
||||
props_desc:"\u0425\u04AF\u0441\u043D\u044D\u0433\u0442\u0438\u0439\u043D \u0448\u0438\u043D\u0436\u04AF\u04AF\u0434",
|
||||
paste_row_before_desc:"\u0417\u0430\u0432\u0441\u0440\u044B\u043D \u0445\u0430\u0434\u0433\u0430\u043B\u0430\u0433\u0447\u0430\u0430\u0441 \u043C\u04E9\u0440\u0438\u0439\u0433 \u0434\u044D\u044D\u0440 \u043D\u044C \u0431\u0443\u0443\u043B\u0433\u0430\u0445",
|
||||
paste_row_after_desc:"\u0417\u0430\u0432\u0441\u0440\u044B\u043D \u0445\u0430\u0434\u0433\u0430\u043B\u0430\u0433\u0447\u0430\u0430\u0441 \u043C\u04E9\u0440\u0438\u0439\u0433 \u0434\u043E\u043E\u0440 \u043D\u044C \u0431\u0443\u0443\u043B\u0433\u0430\u0445",
|
||||
cut_row_desc:"\u041C\u04E9\u0440 \u0442\u0430\u0441\u0434\u0430\u0436 \u0430\u0432\u0430\u0445 \u0443\u0443?",
|
||||
copy_row_desc:"\u041C\u04E9\u0440 \u0445\u0443\u0443\u043B\u0430\u0445",
|
||||
del:"\u0425\u04AF\u0441\u043D\u044D\u0433\u0442 \u0443\u0441\u0442\u0433\u0430\u0445",
|
||||
row:"\u041C\u04E9\u0440",
|
||||
col:"\u0411\u0430\u0433\u0430\u043D\u0430",
|
||||
cell:"\u041D\u04AF\u0434"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u0425\u044D\u0440\u044D\u0432 \u0442\u0430 \u0445\u0443\u0443\u0434\u0441\u044B\u0433 \u043E\u0440\u0445\u0438\u0432\u043E\u043B \u0442\u0430\u043D\u044B \u04E9\u04E9\u0440\u0447\u043B\u04E9\u043B\u0442\u04AF\u04AF\u0434 \u0445\u0430\u044F\u0433\u0434\u0430\u043D\u0430.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u0414\u044D\u043B\u0433\u044D\u0446 \u0434\u04AF\u04AF\u0440\u044D\u043D"
|
||||
},
|
||||
media:{
|
||||
desc:"\u041C\u0443\u043B\u044C\u0442\u0438\u043C\u0435\u0434\u0438\u0430 \u0448\u0438\u0433\u0442\u0433\u044D\u0445/\u0437\u0430\u0441\u0430\u0445",
|
||||
edit:"\u041C\u0443\u043B\u044C\u0442\u0438\u043C\u0435\u0434\u0438\u0430 \u0448\u0438\u0433\u0442\u0433\u044D\u044D \u0437\u0430\u0441\u0430\u0445"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0411\u0430\u0440\u0438\u043C\u0442\u044B\u043D \u0442\u043E\u0434\u0440\u0443\u0443\u043B\u0433\u0430"
|
||||
},
|
||||
template:{
|
||||
desc:"\u04E8\u043C\u043D\u04E9 \u0431\u044D\u043B\u0442\u0433\u044D\u0441\u044D\u043D \u0445\u044D\u0432\u0438\u0439\u043D \u0430\u0433\u0443\u0443\u043B\u0433\u044B\u0433 \u0431\u0443\u0443\u043B\u0433\u0430\u0445"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0423\u0434\u0438\u0440\u0434\u0430\u0445 \u0442\u044D\u043C\u0434\u044D\u0433\u0442 \u0445\u0430\u0440\u0443\u0443\u043B\u0430\u0445/\u044D\u0441 \u0445\u0430\u0440\u0443\u0443\u043B\u0430\u0445."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u0414\u04AF\u0440\u043C\u0438\u0439\u043D \u0430\u043B\u0434\u0430\u0430 \u0448\u0430\u043B\u0433\u0430\u0433\u0447 \u043D\u044D\u044D\u043B\u0442\u0442\u044D\u0439/\u0445\u0430\u0430\u043B\u0442\u0442\u0430\u0439",
|
||||
menu:"\u0414\u04AF\u0440\u043C\u0438\u0439\u043D \u0430\u043B\u0434\u0430\u0430 \u0448\u0430\u043B\u0433\u0430\u0433\u0447\u0438\u0439\u043D \u0442\u043E\u0445\u0438\u0440\u0433\u043E\u043E",
|
||||
ignore_word:"\u04AE\u0433 \u04AF\u043B \u0445\u044D\u0440\u044D\u0433\u0441\u044D\u0445",
|
||||
ignore_words:"\u0411\u04AF\u0433\u0434\u0438\u0439\u0433 \u04AF\u043B \u0445\u044D\u0440\u044D\u0433\u0441\u044D\u0445",
|
||||
langs:"\u0425\u044D\u043B",
|
||||
wait:"\u0422\u04AF\u0440 \u0445\u04AF\u043B\u044D\u044D\u043D\u044D \u04AF\u04AF...",
|
||||
sug:"\u0421\u0430\u043D\u0430\u043B",
|
||||
no_sug:"\u0421\u0430\u043D\u0430\u043B \u0430\u043B\u0433\u0430",
|
||||
no_mpell:"\u0414\u04AF\u0440\u043C\u0438\u0439\u043D \u0430\u043B\u0434\u0430\u0430 \u043E\u043B\u0434\u0441\u043E\u043D\u0433\u04AF\u0439."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0425\u0443\u0443\u0434\u0430\u0441 \u0442\u0430\u0441\u043B\u0430\u043B\u0442 \u043E\u0440\u0443\u0443\u043B\u0430\u0445."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ms.js
Normal file
170
htdocs/resource2/tinymce/langs/ms.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ms:{
|
||||
common:{
|
||||
edit_confirm:"Guna WYSIWYG mod untuk \"textarea\" ini?",
|
||||
apply:"Guna",
|
||||
insert:"Sisip",
|
||||
update:"Kemaskini",
|
||||
cancel:"Batal",
|
||||
close:"Tutup",
|
||||
browse:"Semak seimbas",
|
||||
class_name:"Kelas",
|
||||
not_set:"-- Tidak set --",
|
||||
clipboard_msg:"Salin/Potong/Tempel tidak disediakan untuk Mozilla dan Firefox.\nAdakah anda mahu informasi lanjut tentang isu ini?",
|
||||
clipboard_no_support:"Perisian browser anda tidak disokong pada masa ini, sila guna papan kekunci.",
|
||||
popup_blocked:"Maaf, kami dapati \"popup-blocker\" telah melumpuhkan tetingkap yang memberikan fungsi kepada perisian anda. Anda perlu mematikan \"popup-blocker\" untuk laman web ini bagi menggunakan semua alatan.",
|
||||
invalid_data:"Ralat: Nilai dimasukkan tidak sah, lihat tanda merah.",
|
||||
more_colors:"Warna lain-lain"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Penyelarian",
|
||||
left:"Kiri",
|
||||
center:"Tengah",
|
||||
right:"Kanan",
|
||||
full:"Penuh"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Sisip tarikh",
|
||||
inserttime_desc:"Sisip masa",
|
||||
months_long:"Januari,Febuari,Mac,April,Mei,Jun,Julai,Ogos,September,Oktober,November,Disember",
|
||||
months_short:"Jan,Feb,Mac,Apr,Mei,Jun,Jul,Ogo,Sep,Okt,Nov,Dis",
|
||||
day_long:"Ahad,Isnin,Selasa,Rabu,Khamis,Jumaat,Sabtu,Ahad",
|
||||
day_short:"Aha,Isn,Sel,Rab,Kha,Jum,Sab,Aha"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Cetak"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Pratonton"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Arah kiri ke kanan",
|
||||
rtl_desc:"Arah kanan ke kiri"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Sisip lapisan baru",
|
||||
forward_desc:"Gerak kehadapan",
|
||||
backward_desc:"Gerak kebelakang",
|
||||
absolute_desc:"Alih posisi mutlak",
|
||||
content:"Lapisan baru..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Simpan",
|
||||
cancel_desc:"Batal semua pertukaran"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Masukkan aksara ruang [nbsp]"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Larikan pembetulan ejaan",
|
||||
download:"ieSpell tiada. Pasang sekarang?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Garis mengufuk"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Simbol Emosi"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Cari",
|
||||
replace_desc:"Cari/Ganti"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Sisip/sunting imej"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Sisip/sunting pautan"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Kutipan",
|
||||
abbr_desc:"Singkatan",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Pemadaman",
|
||||
ins_desc:"Kemasukan",
|
||||
attribs_desc:"Masukkan/Sunting Ciri-ciri"
|
||||
},
|
||||
style:{
|
||||
desc:"Sunting Gaya CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Tempel sebagai teks",
|
||||
paste_word_desc:"Tempel dari Word",
|
||||
selectall_desc:"Pilih semua",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Guna CTRL+V pada papan kekunci anda untuk Tempel teks ke dalam tetingkap.",
|
||||
text_linebreaks:"Biarkan garisan pemisah",
|
||||
word_title:"Guna CTRL+V pada papan kekunci anda untuk teks ke dalam tetingkap."
|
||||
},
|
||||
table:{
|
||||
desc:"Masukkan jadual baru",
|
||||
row_before_desc:"Masukkan row sebelumnya",
|
||||
row_after_desc:"Masukkan row selepasnya",
|
||||
delete_row_desc:"Padam row",
|
||||
col_before_desc:"Masukkan kolum sebelumnya",
|
||||
col_after_desc:"Masukkan kolum selepasnya",
|
||||
delete_col_desc:"Alih kolum",
|
||||
split_cells_desc:"Bahagi sel jadual",
|
||||
merge_cells_desc:"Gabung sel jadual",
|
||||
row_desc:"Alatan jadual row",
|
||||
cell_desc:"Alatan jadual sel",
|
||||
props_desc:"Alatan jadual",
|
||||
paste_row_before_desc:"Tempel jadual row sebelumnya",
|
||||
paste_row_after_desc:"Tempel jadual row selepasnya",
|
||||
cut_row_desc:"Potong jadual row",
|
||||
copy_row_desc:"Salin jadual row",
|
||||
del:"Padam jadual",
|
||||
row:"Row",
|
||||
col:"Kolum",
|
||||
cell:"Sel"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Pertukaran akan terbatal sekiranya anda meninggalkan halaman ini.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Alih mod skrin penuh"
|
||||
},
|
||||
media:{
|
||||
desc:"Masukkan / sunting media",
|
||||
edit:"Sunting media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Alatan dokumen"
|
||||
},
|
||||
template:{
|
||||
desc:"Masukkan pra takrifan kandungan templet"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Pengendali grafik huruf Buka/Tutup."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Alih pembetul perkataan",
|
||||
menu:"Alatan pembetul perkataan",
|
||||
ignore_word:"Endahkan perkataan",
|
||||
ignore_words:"Endahkan kesemuanya",
|
||||
langs:"Bahasa-bahasa",
|
||||
wait:"Sila tunggu...",
|
||||
sug:"Cadangan",
|
||||
no_sug:"Tiada cadangan",
|
||||
no_mpell:"Tiada kesalahan ejaan."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Masukkan penghenti-halaman."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/nb.js
Normal file
170
htdocs/resource2/tinymce/langs/nb.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({nb:{
|
||||
common:{
|
||||
edit_confirm:"Vil du benytte WYSIWYG-editoren for dette tekstfeltet?",
|
||||
apply:"Legg til",
|
||||
insert:"Sett inn",
|
||||
update:"Oppdater",
|
||||
cancel:"Avbryt",
|
||||
close:"Stop",
|
||||
browse:"Bla gjennom",
|
||||
class_name:"Klasse",
|
||||
not_set:"--ikke satt--",
|
||||
clipboard_msg:"Klipp ut / Kopier /Lim inn fungerer ikke i Mozilla og Firefox. Vil du vite mer om dette?",
|
||||
clipboard_no_support:"For tiden ikke st\u00F8ttet av din nettleser, benytt tastatursnarveier i stedet.",
|
||||
popup_blocked:"Beklager, det er registrert at du har en popup-sperre aktivert i nettleseren. Du m\u00E5 oppheve popup-sperren for nettstedet for \u00E5 f\u00E5 tilgang til dette verkt\u00F8yet",
|
||||
invalid_data:"Feil: Ugyldige verdier er skrevet inn, disse er merket med r\u00F8dt.",
|
||||
more_colors:"Flere farger"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Justering",
|
||||
left:"Venstre",
|
||||
center:"Midtstill",
|
||||
right:"H\u00F8yre",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Sett inn dato",
|
||||
inserttime_desc:"Sett inn tidspunkt",
|
||||
months_long:"januar,februar,mars,april,mai,juni,juli,august,september,oktober,november,desember",
|
||||
months_short:"jan,feb,mar,apr,mai,jun,jul,aug,sep,oct,nov,des",
|
||||
day_long:"s\u00F8ndag,mandag,tirsdag,onsdag,torsdag,fredag,l\u00F8rdag,s\u00F8ndag",
|
||||
day_short:"s\u00F8n,man,tir,ons,tor,fre,l\u00F8r,s\u00F8n"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Skriv u"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Forh\u00E5ndsvisning"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Retning venstre mot h\u00F8yre",
|
||||
rtl_desc:"Retning h\u00F8yre mot venstre"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Sett inn nytt lag",
|
||||
forward_desc:"Flytt framover",
|
||||
backward_desc:"Flytt bakover",
|
||||
absolute_desc:"Sl\u00E5 p\u00E5/av absolutt plassering",
|
||||
content:"Nytt lag..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Lagre",
|
||||
cancel_desc:"Kanseller alle endringer"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Sett inn hardt mellomrom"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Kj\u00F8rer rettskrivningskontroll",
|
||||
download:"ieSpell ikke funnet. \u00D8nsker du \u00E5 installere ieSpell n\u00E5?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontal linje"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Hum\u00F8rfjes"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"S\u00F8k",
|
||||
replace_desc:"S\u00F8k/Erstatt"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Sett inn / endre bilde"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Sett inn / endre lenke"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Sitat",
|
||||
abbr_desc:"Forkortelse",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Sletting",
|
||||
ins_desc:"Innsetting",
|
||||
attribs_desc:"Sett inn / endre Egenskaper"
|
||||
},
|
||||
style:{
|
||||
desc:"Rediger CSS-stil"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Lim inn som vanlig tekst",
|
||||
paste_word_desc:"Lim inn fra Word",
|
||||
selectall_desc:"Marker al",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet.",
|
||||
text_linebreaks:"Behold tekstbryting",
|
||||
word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet."
|
||||
},
|
||||
table:{
|
||||
desc:"Sett inn ny tabell",
|
||||
row_before_desc:"Sett inn rad foran",
|
||||
row_after_desc:"Sett inn rad etter etter",
|
||||
delete_row_desc:"Fjern rad",
|
||||
col_before_desc:"Sett inn kolonne foran",
|
||||
col_after_desc:"Sett inn kolonne etter",
|
||||
delete_col_desc:"Fjern kolonne",
|
||||
split_cells_desc:"Del celler",
|
||||
merge_cells_desc:"Sl\u00E5 sammen celler",
|
||||
row_desc:"Radegenskaper",
|
||||
cell_desc:"Celleegenskaper",
|
||||
props_desc:"Tabellegenskaper",
|
||||
paste_row_before_desc:"Lim inn rad foran",
|
||||
paste_row_after_desc:"Lim inn rad etter",
|
||||
cut_row_desc:"Fjern rad",
|
||||
copy_row_desc:"Kopier rad",
|
||||
del:"Slett tabell",
|
||||
row:"Rad",
|
||||
col:"Kolonne",
|
||||
cell:"Celle"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Endringene du gjorde g\u00E5r tapt dersom du velger \u00E5 forlate denne siden!",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Skift til/fra fullskjermmodus"
|
||||
},
|
||||
media:{
|
||||
desc:"Sett inn / rediger inkludert objekt",
|
||||
edit:"Endre inkludert objekt"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumentegenskaper"
|
||||
},
|
||||
template:{
|
||||
desc:"Sett inn forh\u00E5ndsdefinert malinnhold"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visuelle kontrolltegn p\u00E5/av"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Stavekontroll p\u00E5/av",
|
||||
menu:"Vis meny",
|
||||
ignore_word:"Ignorer ord",
|
||||
ignore_words:"Ignorer alt",
|
||||
langs:"Spr\u00E5k",
|
||||
wait:"Vennligst vent...",
|
||||
sug:"Forslag",
|
||||
no_sug:"Ingen forslag",
|
||||
no_mpell:"Ingen stavefeil funnet"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Sett inn sideskift"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/nl.js
Normal file
170
htdocs/resource2/tinymce/langs/nl.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({nl:{
|
||||
common:{
|
||||
edit_confirm:"Weet u zeker dat u tekst in WYSIWYG mode wilt bewerken in dit tekstveld?",
|
||||
apply:"Toepassen",
|
||||
insert:"Invoegen",
|
||||
update:"Bijwerken",
|
||||
cancel:"Annuleren",
|
||||
close:"Sluiten",
|
||||
browse:"Bladeren",
|
||||
class_name:"Klasse",
|
||||
not_set:"- Standaard -",
|
||||
clipboard_msg:"Kopi\u00EBren/knippen/plakken is niet beschikbaar in Mozilla en Firefox.\nWilt u meer informatie over deze beperking?",
|
||||
clipboard_no_support:"Kopi\u00EBren/knippen/plakken wordt niet ondersteund door uw browser, gebruik hiervoor de sneltoetsen.",
|
||||
popup_blocked:"U zult uw popup-blocker tijdelijk moeten uitschakelen voor deze website om gebruik te kunnen maken van alle functies van deze teksteditor.",
|
||||
invalid_data:"Fout: Er zijn ongeldige waardes ingevoerd, deze zijn rood gemarkeerd.",
|
||||
more_colors:"Meer kleuren"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Uitlijning",
|
||||
left:"Links",
|
||||
center:"Centreren",
|
||||
right:"Rechts",
|
||||
full:"Uitvullen"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Datum invoegen",
|
||||
inserttime_desc:"Tijd invoegen",
|
||||
months_long:"Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec",
|
||||
day_long:"Zondag,Maandag,Dinsdag,Woensdag,Donderdag,Vrijdag,Zaterdag,Zondag",
|
||||
day_short:"zo,ma,di,wo,do,vr,za,zo"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Afdrukken"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Voorbeeld"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Van links naar rechts",
|
||||
rtl_desc:"Van rechts naar links"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Nieuwe laag invoegen",
|
||||
forward_desc:"Volgende laag",
|
||||
backward_desc:"Vorige laag",
|
||||
absolute_desc:"Absoluut positioneren inschakelen",
|
||||
content:"Nieuwe laag..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Opslaan",
|
||||
cancel_desc:"Alle wijzigingen annuleren"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Open ruimte invoegen"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Spellingcontrole",
|
||||
download:"ieSpell niet gevonden. Wilt u deze nu installeren?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Scheidingslijn"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emoties"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Zoeken",
|
||||
replace_desc:"Zoeken/Vervangen"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Afbeelding invoegen/bewerken"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Link invoegen/bewerken"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citaat",
|
||||
abbr_desc:"Afkorting",
|
||||
acronym_desc:"Synoniem",
|
||||
del_desc:"Verwijderd",
|
||||
ins_desc:"Ingevoegd",
|
||||
attribs_desc:"Attributen invoegen/bewerken"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS Stijl bewerken"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Als platte tekst plakken",
|
||||
paste_word_desc:"Vanuit Word plakken",
|
||||
selectall_desc:"Alles selecteren",
|
||||
plaintext_mode_sticky:"Plakken is nu in plattetekstmodus. Klik nog een keer om terug te gaan naar normaal plakken. Nadat u iets plakt, keert u terug naar normaal plakken.",
|
||||
plaintext_mode:"Plakken is nu in plattetekstmoduse. Klik nog een keer om terug te gaan naar normaal plakken."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Gebruik Ctrl+V om tekst in het venster te plakken.",
|
||||
text_linebreaks:"Regelafbreking bewaren",
|
||||
word_title:"Gebruik Ctrl+V om tekst in het venster te plakken."
|
||||
},
|
||||
table:{
|
||||
desc:"Nieuwe tabel invoegen",
|
||||
row_before_desc:"Rij boven invoegen",
|
||||
row_after_desc:"Rij onder invoegen",
|
||||
delete_row_desc:"Rij verwijderen",
|
||||
col_before_desc:"Kolom links invoegen",
|
||||
col_after_desc:"Kolom rechts invoegen",
|
||||
delete_col_desc:"Kolom verwijderen",
|
||||
split_cells_desc:"Cellen splitsen",
|
||||
merge_cells_desc:"Cellen samenvoegen",
|
||||
row_desc:"Rij-eigenschappen",
|
||||
cell_desc:"Cel-eigenschappen",
|
||||
props_desc:"Tabeleigenschappen",
|
||||
paste_row_before_desc:"Rij boven plakken",
|
||||
paste_row_after_desc:"Rij onder plakken",
|
||||
cut_row_desc:"Rij knippen",
|
||||
copy_row_desc:"Rij kopi\u00EBren",
|
||||
del:"Tabel verwijderen",
|
||||
row:"Rij",
|
||||
col:"Kolom",
|
||||
cell:"Cel"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"De wijzigingen zullen verloren gaan als u nu deze pagina verlaat.",
|
||||
restore_content:"Automatisch opgeslagen inhoud laden.",
|
||||
warning_message:"Als u de opgeslagen inhoud laadt, verliest u de inhoud die zich momenteel in de editor bevindt.\n\nWeet u zeker dat u de opgeslagen inhoud wilt laden?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Volledig scherm"
|
||||
},
|
||||
media:{
|
||||
desc:"Media invoegen/bewerken",
|
||||
edit:"Media bewerken"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Documenteigenschappen"
|
||||
},
|
||||
template:{
|
||||
desc:"Voorgedefinieerd sjabloon invoegen"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Zichtbare symbolen"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Spellingcontrole",
|
||||
menu:"Instellingen spellingcontrole",
|
||||
ignore_word:"Woord negeren",
|
||||
ignore_words:"Alles negeren",
|
||||
langs:"Talen",
|
||||
wait:"Een ogenblik geduld\u2026",
|
||||
sug:"Suggesties",
|
||||
no_sug:"Geen suggesties",
|
||||
no_mpell:"Geen spelfouten gevonden."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Pagina-einde invoegen"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Standaard",
|
||||
lower_alpha:"Alfa (klein)",
|
||||
lower_greek:"Griekse letters (klein)",
|
||||
lower_roman:"Romeinse letters (klein)",
|
||||
upper_alpha:"Alfa (groot)",
|
||||
upper_roman:"Romeinse letters (groot)",
|
||||
circle:"Cirkel",
|
||||
disc:"Schijf",
|
||||
square:"Vierkant"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/nn.js
Normal file
170
htdocs/resource2/tinymce/langs/nn.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({nn:{
|
||||
common:{
|
||||
edit_confirm:"Vil du bruke WYSIWYG-editoren for dette tekstfeltet?",
|
||||
apply:"Legg til",
|
||||
insert:"Set inn",
|
||||
update:"Oppdater",
|
||||
cancel:"Avbryt",
|
||||
close:"Stopp",
|
||||
browse:"Bla gjennom",
|
||||
class_name:"Klasse",
|
||||
not_set:"--ikkje sett--",
|
||||
clipboard_msg:"Klipp ut / Kopier /Lim inn fungerer ikkje i Mozilla og Firefox. Vil du vite meir om dette?",
|
||||
clipboard_no_support:"For tida ikkje st\u00F8tta av nettlesaren din, bruk tastatursnarveger i staden.",
|
||||
popup_blocked:"Orsak, det er registrert at du har popup-sperre aktivert i nettlesaren. Du m\u00E5 oppheve popup-sperra for nettstaden for \u00E5 f\u00E5 tilgang til dette verktyet",
|
||||
invalid_data:"Feil: Ugyldige verdiar er skrivne inn, desse er merka med raudt",
|
||||
more_colors:"Fleire fargar"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Justering",
|
||||
left:"Venstre",
|
||||
center:"Midtstill",
|
||||
right:"H\u00F8gre",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Lim inn dato",
|
||||
inserttime_desc:"Lim inn tid",
|
||||
months_long:"januar,februar,mars,april,mai,juni,juli,august,september,oktober,november,desember",
|
||||
months_short:"jan,feb,mar,apr,mai,jun,jul,aug,sep,oct,nov,des",
|
||||
day_long:"sundag,mandag,tirsdag,onsdag,torsdag,fredag,laurdag,sundag",
|
||||
day_short:"sun,man,tir,ons,tor,fre,lau,sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Skriv u"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"F\u00F8rehandsvisni"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Retning venstre mot h\u00F8gre",
|
||||
rtl_desc:"Retning h\u00F8gre mot venstre"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Set inn nytt lag",
|
||||
forward_desc:"Flytt framover",
|
||||
backward_desc:"Flytt bakover",
|
||||
absolute_desc:"Sl\u00E5 p\u00E5/av absolutt plassering",
|
||||
content:"Nytt lag..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Lagre",
|
||||
cancel_desc:"Kanseller alle endringar"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Set inn hardt mellomrom"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"K\u00F8yrer kontroll av rettskriving",
|
||||
download:"ieSpell ikkje funnen. \u00D8nskjer du \u00E5 installere ieSpell no?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontal linje"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Hum\u00F8rfjes"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"S\u00F8k",
|
||||
replace_desc:"S\u00F8k/Erstatt"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Set inn / endre bilete"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Set inn / endre lenkje"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Sitat",
|
||||
abbr_desc:"Forkorting",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Sletting",
|
||||
ins_desc:"Innsetjing",
|
||||
attribs_desc:"Set inn / Endre eigenskapar"
|
||||
},
|
||||
style:{
|
||||
desc:"Rediger CSS-stil"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Lim inn som vanleg tekst",
|
||||
paste_word_desc:"Lim inn fr\u00E5 Word",
|
||||
selectall_desc:"Marker al",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget.",
|
||||
text_linebreaks:"Behald tekstbryting",
|
||||
word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget."
|
||||
},
|
||||
table:{
|
||||
desc:"Set inn ein ny tabell",
|
||||
row_before_desc:"Set inn rad framfor",
|
||||
row_after_desc:"Set inn rad etter",
|
||||
delete_row_desc:"Fjern rad",
|
||||
col_before_desc:"Set inn kolonne framfor",
|
||||
col_after_desc:"Set inn kolonne etter",
|
||||
delete_col_desc:"Fjern kolonne",
|
||||
split_cells_desc:"Del celler",
|
||||
merge_cells_desc:"Sl\u00E5 saman celler",
|
||||
row_desc:"Radeigenskapar",
|
||||
cell_desc:"Celleegenskapar",
|
||||
props_desc:"Tabelleigenskapar",
|
||||
paste_row_before_desc:"Lim inn rad framfor",
|
||||
paste_row_after_desc:"Lim inn rad etter",
|
||||
cut_row_desc:"Fjern rad",
|
||||
copy_row_desc:"Kopier rad",
|
||||
del:"Slett tabell",
|
||||
row:"Rad",
|
||||
col:"Kolonne",
|
||||
cell:"Celle"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Endringane du gjorde g\u00E5r tapt om du forl\u00E8t denne sida!",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Skift til/fr\u00E5 fullskjermmodus"
|
||||
},
|
||||
media:{
|
||||
desc:"Set inn / rediger inkludert objekt",
|
||||
edit:"Endre innsett objekt"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumenteigenskapar"
|
||||
},
|
||||
template:{
|
||||
desc:"Set inn f\u00F8rehandsdefinert malinnhald"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visuelle konktrollteikn p\u00E5/av"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Stavekontroll p\u00E5/av",
|
||||
menu:"Vis meny",
|
||||
ignore_word:"Ignorer ord",
|
||||
ignore_words:"Ignorer alt",
|
||||
langs:"Spr\u00E5k",
|
||||
wait:"Ver venleg og vent...",
|
||||
sug:"Framlegg",
|
||||
no_sug:"Inga framlegg",
|
||||
no_mpell:"Inga stavefeil funne."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Set inn sideskift"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/no.js
Normal file
170
htdocs/resource2/tinymce/langs/no.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({no:{
|
||||
common:{
|
||||
edit_confirm:"Vil du bruke WYSIWYG-editoren for dette tekstfeltet?",
|
||||
apply:"Bruk",
|
||||
insert:"Sett inn",
|
||||
update:"Oppdater",
|
||||
cancel:"Avbryt",
|
||||
close:"Lukk",
|
||||
browse:"Bla gjennom",
|
||||
class_name:"Klasse",
|
||||
not_set:"--Ikke satt--",
|
||||
clipboard_msg:"Klipp ut / Kopier /Lim inn fungerer ikke i Mozilla og Firefox. Vil du vite mer om dette?",
|
||||
clipboard_no_support:"For tiden ikke st\u00F8ttet av din nettleser, bruk tastatursnarveier i stedet.",
|
||||
popup_blocked:"Beklager, men vi har registrert at din popup-sperrer har blokkert et vindu i nettleseren. Du m\u00E5 oppheve popup-sperren for at nettstedet skal f\u00E5 tilgang til dette verkt\u00F8yet",
|
||||
invalid_data:"Feil: Ugyldig verdi er skrevet inn, disse er merket med r\u00F8dt",
|
||||
more_colors:"Flere farger"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Justering",
|
||||
left:"Venstre",
|
||||
center:"Midtstilt",
|
||||
right:"H\u00F8yre",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Sett inn dato",
|
||||
inserttime_desc:"Sett inn tid",
|
||||
months_long:"januar,februar,mars,april,mai,juni,juli,august,september,oktober,november,desember",
|
||||
months_short:"jan,feb,mar,apr,mai,jun,jul,aug,sep,okt,nov,des",
|
||||
day_long:"s\u00F8ndag,mandag,tirsdag,onsdag,torsdag,fredag,l\u00F8rdag,s\u00F8ndag",
|
||||
day_short:"S\u00F8n,Man,Tir,Ons,Tor,Fre,L\u00F8r,S\u00F8n"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Skriv ut"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Forh\u00E5ndsvisning"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Retning venstre mot h\u00F8yre",
|
||||
rtl_desc:"Retning h\u00F8yre mot venstre"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Sett inn nytt lag",
|
||||
forward_desc:"Flytt fremover",
|
||||
backward_desc:"Flytt bakover",
|
||||
absolute_desc:"Sl\u00E5 p\u00E5/av absolutt plassering",
|
||||
content:"Nytt lag ..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Lagre",
|
||||
cancel_desc:"Kanseller alle endringer"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Sett inn karakter for hardt mellomrom"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Stavekontroll",
|
||||
download:"ieSpell ikke funnet. \u00D8nsker du \u00E5 installere ieSpell?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontal linje"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Hum\u00F8rfjes"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"S\u00F8k",
|
||||
replace_desc:"S\u00F8k/Erstatt"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Sett inn/editer bilde"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Sett inn/editer lenke"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Sitat",
|
||||
abbr_desc:"Forkortelse",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Sletting",
|
||||
ins_desc:"Innsetting",
|
||||
attribs_desc:"Sett inn/Editer egenskaper"
|
||||
},
|
||||
style:{
|
||||
desc:"Rediger CSS-stil"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Lim inn som vanlig tekst",
|
||||
paste_word_desc:"Lim inn fra Word",
|
||||
selectall_desc:"Marker alt",
|
||||
plaintext_mode_sticky:"Lim inn er n\u00E5 i vanlig tekst modus. Klikk igjen for \u00E5 bytte til vanlig innlimings modus. Etter at du limer inn noe vil du g\u00E5 tilbake til ordin\u00E6r innliming.",
|
||||
plaintext_mode:"Lim inn er n\u00E5 i vanlig tekst modus. Klikk igjen for \u00E5 bytte til vanlig innlimings modus."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn teksten i dette vinduet.",
|
||||
text_linebreaks:"Behold tekstbryting",
|
||||
word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn teksten i dette vinduet."
|
||||
},
|
||||
table:{
|
||||
desc:"Setter inn ny tabell",
|
||||
row_before_desc:"Sett inn rad foran",
|
||||
row_after_desc:"Sett inn rad etter",
|
||||
delete_row_desc:"Slett rad",
|
||||
col_before_desc:"Sett inn kolonne forand",
|
||||
col_after_desc:"Sett inn kolonne etter",
|
||||
delete_col_desc:"Slett kolonne",
|
||||
split_cells_desc:"Splitte sammensl\u00E5tte celler",
|
||||
merge_cells_desc:"Sl\u00E5 sammen celler",
|
||||
row_desc:"Rad egenskaper",
|
||||
cell_desc:"Celle egenskaper",
|
||||
props_desc:"Tabell egenskaper",
|
||||
paste_row_before_desc:"Lime inn rad foran",
|
||||
paste_row_after_desc:"Lime inn rad etter",
|
||||
cut_row_desc:"Slett rad",
|
||||
copy_row_desc:"Kopier rad",
|
||||
del:"Slett tabell",
|
||||
row:"Rad",
|
||||
col:"Kolonne",
|
||||
cell:"Celle"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Utf\u00F8rte endringer g\u00E5r tapt hvis du navigerer vekk fra denne siden!",
|
||||
restore_content:"Gjenopprette autolagret innhold.",
|
||||
warning_message:"Hvis du gjenoppretter tidligere lagret innhold s\u00E5 vil du miste alt n\u00E5v\u00E6rende innhold i editoren.\n\nEr du sikker du vil gjenopprette tidligere lagret innhold?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Sl\u00E5 fullskjermmodus av/p\u00E5"
|
||||
},
|
||||
media:{
|
||||
desc:"Sett inn/editer innebygget objekt",
|
||||
edit:"Editer innebygget objekt"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokument egenskaper"
|
||||
},
|
||||
template:{
|
||||
desc:"Sett inn forh\u00E5ndsdefinert malinnhold"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visuelle konktrolltegn p\u00E5/av"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Stavekontroll p\u00E5/av",
|
||||
menu:"Oppsett stavekontroll",
|
||||
ignore_word:"Ignorer ord",
|
||||
ignore_words:"Ignorer alt",
|
||||
langs:"Spr\u00E5k",
|
||||
wait:"Vennligst vent ...",
|
||||
sug:"Forslag",
|
||||
no_sug:"Ingen forslag",
|
||||
no_mpell:"Ingen stavefeil funnet."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Sett inn sideskift"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Standard",
|
||||
lower_alpha:"Sm\u00E5 alfanumerisk",
|
||||
lower_greek:"Sm\u00E5 gresk",
|
||||
lower_roman:"Sm\u00E5 roman",
|
||||
upper_alpha:"Store alfanumerisk",
|
||||
upper_roman:"Store roman",
|
||||
circle:"Sirkel",
|
||||
disc:"Plate",
|
||||
square:"Firkant"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/pl.js
Normal file
170
htdocs/resource2/tinymce/langs/pl.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({pl:{
|
||||
common:{
|
||||
edit_confirm:"Czy chcesz u\u017Cy\u0107 trybu WYSIWYG dla tego pola formularza?",
|
||||
apply:"Zastosuj",
|
||||
insert:"Wstaw",
|
||||
update:"Aktualizuj",
|
||||
cancel:"Anuluj",
|
||||
close:"Zamknij",
|
||||
browse:"Przegl\u0105daj",
|
||||
class_name:"Klasa",
|
||||
not_set:"-- Brak --",
|
||||
clipboard_msg:"Akcje Kopiuj/Wytnij/Wklej nie s\u0105 dost\u0119pne w Mozilli i Firefox.\nCzy chcesz wi\u0119cej informacji o tym problemie?",
|
||||
clipboard_no_support:"Aktualnie nie jest wspomagany przez Twoj\u0105 przegl\u0105dark\u0119, u\u017Cyj skr\u00F3t\u00F3w klawiaturowych w zamian.",
|
||||
popup_blocked:"Zauwa\u017Cyli\u015Bmy, \u017Ce Twoje blokowanie wyskakuj\u0105cych okienek wy\u0142\u0105czy\u0142o okno, kt\u00F3re dostarcza funkcjonalno\u015B\u0107 aplikacji. B\u0119dziesz potrzebowa\u0142 wy\u0142\u0105czy\u0107 blokowanie wyskakuj\u0105cych okienek na tej stronie aby w pe\u0142ni wykorzysta\u0107 to narz\u0119dzie.",
|
||||
invalid_data:"B\u0142\u0105d: Zosta\u0142y wprowadzone b\u0142\u0119dne dane, s\u0105 zaznaczone na czerwono.",
|
||||
more_colors:"Wi\u0119cej kolor\u00F3w"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Wyr\u00F3wnanie",
|
||||
left:"Lewy",
|
||||
center:"\u015Arodkowy",
|
||||
right:"Prawy",
|
||||
full:"Wyjustuj"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Wstaw dat\u0119",
|
||||
inserttime_desc:"Wstaw czas",
|
||||
months_long:"Stycze\u0144, Luty, Marzec, Kwiecie\u0144, Maj, Czerwiec, Lipiec, Sierpie\u0144, Wrzesie\u0144, Pa\u017Adziernik, Listopad, Grudzie\u0144",
|
||||
months_short:"Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Pa\u017A,Lis,Gru",
|
||||
day_long:"Niedziela, Poniedzia\u0142ek, Wtorek, \u015Aroda, Czwartek, Pi\u0105tek, Sobota, Niedziela",
|
||||
day_short:"N,Pn,Wt,\u015Ar,Cz,Pt,So,N"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Drukuj"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Podgl\u0105d"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Kierunek od lewej do prawej",
|
||||
rtl_desc:"Kierunek od prawej do lewej"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Wklej now\u0105 warstw\u0119",
|
||||
forward_desc:"Przesu\u0144 do przodu",
|
||||
backward_desc:"Przesu\u0144 w ty\u0142",
|
||||
absolute_desc:"Prze\u0142\u0105cz pozycjonowanie absolutne",
|
||||
content:"Nowa warstwa..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Zachowaj\u015B\u017A\u0142",
|
||||
cancel_desc:"Anuluj wszystkie zmiany"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Wklej tward\u0105 spacj\u0119"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Sprawd\u017A pisowni\u0119",
|
||||
download:"ieSpell nie wykryte. Czy przeprowadzi\u0107 instalacj\u0119 tego komponentu?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Pozioma linia"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotikony"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Znajd\u017A",
|
||||
replace_desc:"Znajd\u017A/Zamie\u0144"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Wstaw/edytuj obraz"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Wstaw/edytuj link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cytat",
|
||||
abbr_desc:"Skr\u00F3t",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Usuni\u0119cie",
|
||||
ins_desc:"Wstawienie",
|
||||
attribs_desc:"Wstaw / Edytuj atrybuty"
|
||||
},
|
||||
style:{
|
||||
desc:"Edytuj Style CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Wklej jako zwyk\u0142y tekst",
|
||||
paste_word_desc:"Wklej z Worda",
|
||||
selectall_desc:"Zaznacz wszystko",
|
||||
plaintext_mode_sticky:"Wklejanie jest teraz dost\u0119pne w trybie tekstowym. Kliknij ponownie, aby prze\u0142\u0105czy\u0107 si\u0119 z powrotem do trybu wklejania sformatowanego tekstu. Po wklejeniu tekstu nast\u0105pi powr\u00F3t do trybu wklejania zformatowanego tekstu.",
|
||||
plaintext_mode:"Wklejanie jest teraz dost\u0119pne w trybie tekstowym. Kliknij ponownie, aby prze\u0142\u0105czy\u0107 si\u0119 z powrotem do trybu wklejania sformatowanego tekstu."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna.",
|
||||
text_linebreaks:"Zachowaj ko\u0144ce linii.",
|
||||
word_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna."
|
||||
},
|
||||
table:{
|
||||
desc:"Wstaw now\u0105 tabel\u0119",
|
||||
row_before_desc:"Wstaw nowy wiersz przed...",
|
||||
row_after_desc:"Wstaw nowy wiersz po...",
|
||||
delete_row_desc:"Usu\u0144 wiersz",
|
||||
col_before_desc:"Wstaw kolumn\u0119 przed...",
|
||||
col_after_desc:"Wstaw kolumn\u0119 po...",
|
||||
delete_col_desc:"Usu\u0144 kolumn\u0119",
|
||||
split_cells_desc:"Podziel kom\u00F3rk\u0119",
|
||||
merge_cells_desc:"Po\u0142\u0105cz kom\u00F3rki",
|
||||
row_desc:"W\u0142a\u015Bciwo\u015Bci wiersza",
|
||||
cell_desc:"W\u0142a\u015Bciwo\u015Bci kom\u00F3rki",
|
||||
props_desc:"W\u0142a\u015Bciwo\u015Bci tabeli",
|
||||
paste_row_before_desc:"Wklej wiersz przed...",
|
||||
paste_row_after_desc:"Wklej wiersz po...",
|
||||
cut_row_desc:"Wytnij wiersz...",
|
||||
copy_row_desc:"Kopiuj wiersz...",
|
||||
del:"Usu\u0144 tabel\u0119",
|
||||
row:"Wiersz",
|
||||
col:"Kolumna",
|
||||
cell:"Kom\u00F3rka"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Zmiany, kt\u00F3re zrobi\u0142e\u015B zostan\u0105 utracone je\u015Bli opu\u015Bcisz t\u0119 stron\u0119.",
|
||||
restore_content:"Przywr\u00F3\u0107 automatycznie zapisan\u0105 tre\u015B\u0107.",
|
||||
warning_message:"Je\u015Bli przywr\u00F3cisz zapisan\u0105 tre\u015B\u0107, stracisz ca\u0142\u0105 tre\u015B\u0107, kt\u00F3ra teraz si\u0119 znajduje w edytorze.\n\nJeste\u015B pewien, \u017Ce chcesz przywr\u00F3ci\u0107 zapisan\u0105 tre\u015B\u0107?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Prze\u0142\u0105cz tryb pe\u0142noekranowy"
|
||||
},
|
||||
media:{
|
||||
desc:"Wstaw/Edytuj wbudowane media",
|
||||
edit:"Edytuj wbudowane media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"W\u0142a\u015Bciwo\u015Bci dokumentu"
|
||||
},
|
||||
template:{
|
||||
desc:"Wstaw szablon dokumentu"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Graficzna kontrola pisma w\u0142\u0105cz/wy\u0142\u0105cz."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Sprawdzanie pisowni",
|
||||
menu:"Ustawienia sprawdzania pisowni",
|
||||
ignore_word:"Ignoruj s\u0142owo",
|
||||
ignore_words:"Ignoruj wszystkie",
|
||||
langs:"J\u0119zyki",
|
||||
wait:"Prosz\u0119 poczeka\u0107...",
|
||||
sug:"Sugestie",
|
||||
no_sug:"Brak sugestii",
|
||||
no_mpell:"\u017Badnych brakuj\u0105cych nie znaleziono."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Wstaw lini\u0119."
|
||||
},
|
||||
advlist:{
|
||||
types:"Typy",
|
||||
def:"Domy\u015Blny",
|
||||
lower_alpha:"Ma\u0142e alfabetu",
|
||||
lower_greek:"Ma\u0142e greckie",
|
||||
lower_roman:"Ma\u0142e rzymskie",
|
||||
upper_alpha:"Du\u017Ce alfabetu",
|
||||
upper_roman:"Du\u017Ce rzymskie",
|
||||
circle:"Ko\u0142o",
|
||||
disc:"Elipsa",
|
||||
square:"Kwadrat"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ps.js
Normal file
170
htdocs/resource2/tinymce/langs/ps.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ps:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/pt.js
Normal file
170
htdocs/resource2/tinymce/langs/pt.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({pt:{
|
||||
common:{
|
||||
edit_confirm:"Deseja usar o modo de edi\u00E7\u00E3o avan\u00E7ado neste campo de texto?",
|
||||
apply:"Aplicar",
|
||||
insert:"Inserir",
|
||||
update:"Atualizar",
|
||||
cancel:"Cancelar",
|
||||
close:"Fechar",
|
||||
browse:"Procurar",
|
||||
class_name:"Classe",
|
||||
not_set:"-- N/A --",
|
||||
clipboard_msg:"Copiar/recortar/colar n\u00E3o est\u00E1 dispon\u00EDvel no Mozilla e Firefox.\nDeseja mais informa\u00E7\u00F5es sobre este problema?",
|
||||
clipboard_no_support:"O seu browser n\u00E3o suporta esta fun\u00E7\u00E3o, use os atalhos do teclado.",
|
||||
popup_blocked:"Detectamos que o seu bloqueador de popups bloqueou uma janela que \u00E9 essencial para a aplica\u00E7\u00E3o. Voc\u00EA precisa desativar o bloqueador de janelas de popups para utilizar esta ferramenta.",
|
||||
invalid_data:"Erro: Valores inv\u00E1lidos marcados em vermelho.",
|
||||
more_colors:"Mais Cores"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alinhamento",
|
||||
left:"Esquerda",
|
||||
center:"Centro",
|
||||
right:"Direita",
|
||||
full:"Justificado"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Inserir data",
|
||||
inserttime_desc:"Inserir hora",
|
||||
months_long:"Janeiro,Fevereiro,Mar\u00E7o,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro",
|
||||
months_short:"Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez",
|
||||
day_long:"Domingo,Segunda-feira,Ter\u00E7a-feira,Quarta-feira,Quinta-feira,Sexta-feira,S\u00E1bado,Domingo",
|
||||
day_short:"Dom,Seg,Ter,Qua,Qui,Sex,Sab,Dom"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimir"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Pr\u00E9-visualizar"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Da esquerda para direita",
|
||||
rtl_desc:"Da direita para esquerda"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Inserir nova camada",
|
||||
forward_desc:"Mover para frente",
|
||||
backward_desc:"Mover para tr\u00E1s",
|
||||
absolute_desc:"Alternar o posicionamento absoluto",
|
||||
content:"Nova camada..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Salvar",
|
||||
cancel_desc:"Cancelar todas as altera\u00E7\u00F5es"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Inserir um espa\u00E7o \"sem quebra\""
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Verificar ortografia",
|
||||
download:"Plugin de ortografia n\u00E3o-detectado. Deseja instalar agora?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Separador horizontal"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emoticons"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Localizar",
|
||||
replace_desc:"Localizar/substituir"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Inserir/editar imagem"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Inserir/editar hyperlink"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cita\u00E7\u00E3o",
|
||||
abbr_desc:"Abrevia\u00E7\u00E3o",
|
||||
acronym_desc:"Acr\u00F4nimo",
|
||||
del_desc:"Apagar",
|
||||
ins_desc:"Inserir",
|
||||
attribs_desc:"Inserir/Editar atributos"
|
||||
},
|
||||
style:{
|
||||
desc:"Editar CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Colar como texto simples",
|
||||
paste_word_desc:"Colar (copiado do WORD)",
|
||||
selectall_desc:"Selecionar tudo",
|
||||
plaintext_mode_sticky:"Comando colar est\u00E1 em modo texto simples. Clique novamente para voltar para o modo normal. Depois de colar alguma coisa retornar\u00E1 para o modo normal.",
|
||||
plaintext_mode:"Comando colar est\u00E1 em modo texto simples. Clique novamente para voltar para o modo normal."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V para colar o texto na janela.",
|
||||
text_linebreaks:"Manter quebras de linha",
|
||||
word_title:"Use CTRL+V para colar o texto na janela."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserir nova tabela",
|
||||
row_before_desc:"Inserir linha antes",
|
||||
row_after_desc:"Inserir linha depois",
|
||||
delete_row_desc:"Apagar linha",
|
||||
col_before_desc:"Inserir coluna antes",
|
||||
col_after_desc:"Inserir coluna depois",
|
||||
delete_col_desc:"Remover coluna",
|
||||
split_cells_desc:"Dividir c\u00E9lulas",
|
||||
merge_cells_desc:"Unir c\u00E9lulas",
|
||||
row_desc:"Propriedades das linhas",
|
||||
cell_desc:"Propriedades das c\u00E9lulas",
|
||||
props_desc:"Propriedades da tabela",
|
||||
paste_row_before_desc:"Colar linha antes",
|
||||
paste_row_after_desc:"Colar linha depois",
|
||||
cut_row_desc:"Recortar linha",
|
||||
copy_row_desc:"Copiar linha",
|
||||
del:"Apagar tabela",
|
||||
row:"Linha",
|
||||
col:"Coluna",
|
||||
cell:"C\u00E9lula"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"As mudan\u00E7as efetuadas ser\u00E3o perdidas se sair desta p\u00E1gina.",
|
||||
restore_content:"Restaura conte\u00FAdo salvo automaticamente.",
|
||||
warning_message:"Se restaurar o conte\u00FAdo, voc\u00EA ir\u00E1 perder tudo que est\u00E1 atualmente no editor.\n\nTem certeza que quer restaurar o conte\u00FAdo salvo?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Tela Inteira"
|
||||
},
|
||||
media:{
|
||||
desc:"Inserir/Editar m\u00EDdia incorporada",
|
||||
edit:"Editar m\u00EDdia incorporada"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propriedades do Documento"
|
||||
},
|
||||
template:{
|
||||
desc:"Inserir template"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Caracteres de controle visual ligado/desligado"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Alternar verifica\u00E7\u00E3o ortogr\u00E1fica",
|
||||
menu:"Configura\u00E7\u00F5es de ortografia",
|
||||
ignore_word:"Ignorar palavra",
|
||||
ignore_words:"Ignorar tudo",
|
||||
langs:"Linguagens",
|
||||
wait:"Aguarde...",
|
||||
sug:"Sugest\u00F5es",
|
||||
no_sug:"Sem sugest\u00F5es",
|
||||
no_mpell:"N\u00E3o foram detectados erros de ortografia."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Inserir quebra de p\u00E1gina."
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipos",
|
||||
def:"Padr\u00E3o",
|
||||
lower_alpha:"Alfabeto min\u00FAsculo",
|
||||
lower_greek:"Alfabeto grego",
|
||||
lower_roman:"Num. romanos min\u00FAsculos",
|
||||
upper_alpha:"Alfabeto mai\u00FAsculos",
|
||||
upper_roman:"Num. romanos mai\u00FAsculos",
|
||||
circle:"C\u00EDrculo",
|
||||
disc:"Disco",
|
||||
square:"Quadrado"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ro.js
Normal file
170
htdocs/resource2/tinymce/langs/ro.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ro:{
|
||||
common:{
|
||||
edit_confirm:"Dori\u0163i s\u0103 folosi\u0163i un editor avansat pentru aceast\u0103 zon\u0103d de text?",
|
||||
apply:"Aplic\u0103",
|
||||
insert:"Insereaz\u0103",
|
||||
update:"Actualizeaz\u0103",
|
||||
cancel:"Anulare",
|
||||
close:"\u00CEnchide",
|
||||
browse:"R\u0103sfoie\u015Fte",
|
||||
class_name:"Clas\u0103",
|
||||
not_set:"-- Nestat\u0103 --",
|
||||
clipboard_msg:"Copiere/T\u0103iere/Lipire nu sunt disponibile \u00EEn Mozilla \u015Fi Firefox.\nDori\u0163i mai multe informa\u0163ii despre aceast\u0103 problem\u0103?",
|
||||
clipboard_no_support:"Deocamdat\u0103 nu este suportat\u0103 de browser. V\u0103 rug\u0103m s\u0103 folosi\u0163i combina\u0163ii de taste.",
|
||||
popup_blocked:"Ne pare r\u0103u, dar un popup-blocker a dezativat o fereastr\u0103 care d\u0103 func\u0163ionalitate aplica\u0163iei.Trebuie s\u0103 dezactiva\u0163i acel popup-blocker pentru acest site pentru a folosi aplica\u0163ia la capacitate maxim\u0103.",
|
||||
invalid_data:"Ave\u0163i erori. Datele gre\u015Fite sunt \u00EEn ro\u015Fu.",
|
||||
more_colors:"Mai multe culori"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Aliniere",
|
||||
left:"St\u00E2nga",
|
||||
center:"Centru",
|
||||
right:"Dreapta",
|
||||
full:"Justify"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insereaz\u0103 dat\u0103",
|
||||
inserttime_desc:"Insereaz\u0103 or\u0103",
|
||||
months_long:"Ianuarie,Februarie,Martie,Aprilie,Mai,Iunie,Iulie,August,Septembrie,Octombrie,Noiembrie,Decembrie ",
|
||||
months_short:"Ian,Feb,Mar,Apr,Mai,Iun,Iul,Aug,Sep,Oct,Noi,Dec",
|
||||
day_long:"Duminic\u0103,Luni,Mar\u0163i,Miercuri,Joi,Vineri,S\u00E2mb\u0103t\u0103,Duminic\u0103",
|
||||
day_short:"Dum,Lun,Mar,Mie,Joi,Vin,S\u00E2m,Dum"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Imprimare"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Previzualizare"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direc\u0163ia de la st\u00E2nga la dreapta",
|
||||
rtl_desc:"Direc\u0163ia de la dreapta la st\u00E2nga"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insereaz\u0103 stat nou",
|
||||
forward_desc:"Mut\u0103 \u00EEnainte",
|
||||
backward_desc:"Mut\u0103 \u00EEnapoi",
|
||||
absolute_desc:"Pozi\u0163ionare absolut\u0103",
|
||||
content:"Strat nou ..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Salveaz\u0103",
|
||||
cancel_desc:"Anuleaz\u0103 toate schimb\u0103rile"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insereaz\u0103 caracterul spa\u0163iu"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Ruleaz\u0103 corectorul de limb\u0103",
|
||||
download:"ieSpell nu a fost detectat. Dori\u0163i s\u0103-l instala\u0163i?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Linie orizontal\u0103"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Figurine"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Caut\u0103",
|
||||
replace_desc:"Caut\u0103/\u00CEnlocuie\u015Fte"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Inserare/editare imagine"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Inserare/editare leg\u0103tur\u0103"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Abreviere",
|
||||
acronym_desc:"Acronim",
|
||||
del_desc:"\u015Etergere",
|
||||
ins_desc:"Inserare",
|
||||
attribs_desc:"Insereaz\u0103/editeaz\u0103 atribute"
|
||||
},
|
||||
style:{
|
||||
desc:"Editare CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Lipire ca text simplu",
|
||||
paste_word_desc:"Lipire din Word",
|
||||
selectall_desc:"Selecteaz\u0103 tot",
|
||||
plaintext_mode_sticky:"Lipirea este acum \u00EEn modul text simplu. Ap\u0103sa\u0163i aici pentru comutarea la modul normal de lipire. Dup\u0103 ce ve\u0163i lipi ceva ve\u0163i reveni la modul normal de lipire.",
|
||||
plaintext_mode:"Lipirea este acum \u00EEn modul text simplu. Ap\u0103sa\u0163i din nou pentru comutarea la modul normal de lipire."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103.",
|
||||
text_linebreaks:"P\u0103streaz\u0103 separatoarele de linii.",
|
||||
word_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103."
|
||||
},
|
||||
table:{
|
||||
desc:"Insereaz\u0103 tabel nou",
|
||||
row_before_desc:"Inserare r\u00E2nd \u00EEnainte",
|
||||
row_after_desc:"Inserare r\u00E2nd dup\u0103",
|
||||
delete_row_desc:"\u015Eterge r\u00E2nd",
|
||||
col_before_desc:"Inserare coloan\u0103 \u00EEnainte",
|
||||
col_after_desc:"Inserare coloan\u0103 dup\u0103",
|
||||
delete_col_desc:"\u015Eterge coloan\u0103",
|
||||
split_cells_desc:"Separa\u0163i celule unite",
|
||||
merge_cells_desc:"Uni\u0163i celule",
|
||||
row_desc:"Propriet\u0103\u0163i r\u00E2nd",
|
||||
cell_desc:"Propriet\u0103\u0163i celul\u0103",
|
||||
props_desc:"Propriet\u0103\u0163i tabel",
|
||||
paste_row_before_desc:"Lipe\u015Fte r\u00E2nd \u00EEnainte",
|
||||
paste_row_after_desc:"Lipe\u015Fte r\u00E2nd dup\u0103",
|
||||
cut_row_desc:"Taie r\u00E2nd",
|
||||
copy_row_desc:"Copiaz\u0103 r\u00E2nd",
|
||||
del:"\u015Eterge tabel",
|
||||
row:"R\u00E2nd",
|
||||
col:"Coloan\u0103",
|
||||
cell:"Celul\u0103"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Modific\u0103rile nu vor fi salvate.",
|
||||
restore_content:"Restaureaz\u0103 con\u0163inutul salvat automat.",
|
||||
warning_message:"Daca restaurati continutul salvat vei pierde tot continutul existent din editor.\n\nSigur doriti sa restaurati continutul salvat?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Mod ecran complet"
|
||||
},
|
||||
media:{
|
||||
desc:"Insereaz\u0103 / editeaz\u0103 media",
|
||||
edit:"Editeaz\u0103 media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Propriet\u0103\u0163i document"
|
||||
},
|
||||
template:{
|
||||
desc:"Insereaz\u0103 un \u015Fablon predefinit"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Comut\u0103 caracterele vizuale de control"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Activare/dezactivare dic\u0163ionar",
|
||||
menu:"Set\u0103ri dic\u0163ionar",
|
||||
ignore_word:"Ignor\u0103 cuv\u00E2nt",
|
||||
ignore_words:"Ignor\u0103 toate",
|
||||
langs:"Limbi",
|
||||
wait:"V\u0103 rog a\u015Ftepta\u0163i...",
|
||||
sug:"Sugestii",
|
||||
no_sug:"Nu sunt sugestii.",
|
||||
no_mpell:"Nu sunt gre\u015Feli."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insereaz\u0103 un separator de pagin\u0103"
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipuri",
|
||||
def:"Implicit",
|
||||
lower_alpha:"Minuscule alfabetice",
|
||||
lower_greek:"Minuscule grece\u015Fti",
|
||||
lower_roman:"Minuscule romane",
|
||||
upper_alpha:"Majuscule alfabetice",
|
||||
upper_roman:"Majuscule romane",
|
||||
circle:"Cerc",
|
||||
disc:"Disc",
|
||||
square:"P\u0103trat"
|
||||
}}});
|
173
htdocs/resource2/tinymce/langs/ru.js
Normal file
173
htdocs/resource2/tinymce/langs/ru.js
Normal file
@ -0,0 +1,173 @@
|
||||
tinyMCE.addI18n({ru:{
|
||||
common:{
|
||||
edit_confirm:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C WYSIWYG \u0440\u0435\u0436\u0438\u043C \u0434\u043B\u044F \u044D\u0442\u043E\u0433\u043E \u043F\u043E\u043B\u044F?",
|
||||
apply:"\u041F\u0440\u0438\u043C\u0435\u043D\u0438\u0442\u044C",
|
||||
insert:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C",
|
||||
update:"\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C",
|
||||
cancel:"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C",
|
||||
close:"\u0417\u0430\u043A\u0440\u044B\u0442\u044C",
|
||||
browse:"\u041F\u0440\u043E\u0441\u043C\u043E\u0442\u0440",
|
||||
class_name:"\u041A\u043B\u0430\u0441\u0441",
|
||||
not_set:"- \u041D\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u043E -",
|
||||
clipboard_msg:"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435, \u0432\u044B\u0440\u0435\u0437\u043A\u0430 \u0438 \u0432\u0441\u0442\u0430\u0432\u043A\u0430 \u043D\u0435 \u0440\u0430\u0431\u043E\u0442\u0430\u044E\u0442 \u0432 Firefox.\r\n\u0425\u043E\u0442\u0438\u0442\u0435 \u043F\u043E\u043B\u0443\u0447\u0438\u0442\u044C \u0431\u043E\u043B\u0435\u0435 \u043F\u043E\u0434\u0440\u043E\u0431\u043D\u0443\u044E \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044E?",
|
||||
clipboard_no_support:"\u041D\u0435 \u043F\u043E\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u0412\u0430\u0448\u0438\u043C \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043E\u043C, \u0438\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 \u0433\u043E\u0440\u044F\u0447\u0438\u0435 \u043A\u043B\u0430\u0432\u0438\u0448\u0438.",
|
||||
popup_blocked:"\u0411\u043B\u043E\u043A\u0438\u0440\u0430\u0442\u043E\u0440 \u0432\u0441\u043F\u043B\u044B\u0432\u0430\u044E\u0449\u0438\u0445 \u043E\u043A\u043E\u043D \u0437\u0430\u043A\u0440\u044B\u043B \u043D\u0435\u043E\u0431\u0445\u043E\u0434\u0438\u043C\u043E\u0435 \u043E\u043A\u043D\u043E. \u0414\u043B\u044F \u043F\u043E\u043B\u043D\u043E\u0446\u0435\u043D\u043D\u043E\u0439 \u0440\u0430\u0431\u043E\u0442\u044B, \u043E\u0442\u043A\u043B\u044E\u0447\u0438\u0442\u0435 \u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u043A\u0443 \u043D\u0430 \u044D\u0442\u043E\u043C \u0441\u0430\u0439\u0442\u0435.",
|
||||
invalid_data:"\u041E\u0448\u0438\u0431\u043A\u0430: \u0412\u0432\u0435\u0434\u0435\u043D\u043E \u043D\u0435\u0432\u0435\u0440\u043D\u043E\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435, \u043E\u043D\u043E \u043E\u0442\u043C\u0435\u0447\u0435\u043D\u043E \u043A\u0440\u0430\u0441\u043D\u044B\u043C.",
|
||||
more_colors:"\u0414\u0440\u0443\u0433\u0438\u0435 \u0446\u0432\u0435\u0442\u0430..."
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0412\u044B\u0440\u0430\u0432\u043D\u0438\u0432\u0430\u043D\u0438\u0435",
|
||||
left:"\u041F\u043E \u043B\u0435\u0432\u043E\u043C\u0443 \u043A\u0440\u0430\u044E",
|
||||
center:"\u041F\u043E \u0446\u0435\u043D\u0442\u0440\u0443",
|
||||
right:"\u041F\u043E \u043F\u0440\u0430\u0432\u043E\u043C\u0443 \u043A\u0440\u0430\u044E",
|
||||
full:"\u041F\u043E \u0448\u0438\u0440\u0438\u043D\u0435"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0434\u0430\u0442\u0443",
|
||||
inserttime_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0432\u0440\u0435\u043C\u044F",
|
||||
months_long:"\u044F\u043D\u0432\u0430\u0440\u044C,\u0444\u0435\u0432\u0440\u0430\u043B\u044C,\u043C\u0430\u0440\u0442,\u0430\u043F\u0440\u0435\u043B\u044C,\u043C\u0430\u0439,\u0438\u044E\u043D\u044C,\u0438\u044E\u043B\u044C,\u0430\u0432\u0433\u0443\u0441\u0442,\u0441\u0435\u043D\u0442\u044F\u0431\u0440\u044C,\u043E\u043A\u0442\u044F\u0431\u0440\u044C,\u043D\u043E\u044F\u0431\u0440\u044C,\u0434\u0435\u043A\u0430\u0431\u0440\u044C",
|
||||
months_short:"\u044F\u043D\u0432,\u0444\u0435\u0432,\u043C\u0430\u0440\u0442,\u0430\u043F\u0440,\u043C\u0430\u0439,\u0438\u044E\u043D\u044C,\u0438\u044E\u043B\u044C,\u0430\u0432\u0433,\u0441\u0435\u043D,\u043E\u043A\u0442,\u043D\u043E\u044F,\u0434\u0435\u043A",
|
||||
day_long:"\u0432\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435,\u043F\u043E\u043D\u0435\u0434\u0435\u043B\u044C\u043D\u0438\u043A,\u0432\u0442\u043E\u0440\u043D\u0438\u043A,\u0441\u0440\u0435\u0434\u0430,\u0447\u0435\u0442\u0432\u0435\u0440\u0433,\u043F\u044F\u0442\u043D\u0438\u0446\u0430,\u0441\u0443\u0431\u0431\u043E\u0442\u0430,\u0432\u043E\u0441\u043A\u0440\u0435\u0441\u0435\u043D\u044C\u0435",
|
||||
day_short:"\u0432\u0441,\u043F\u043D,\u0432\u0442,\u0441\u0440,\u0447\u0442,\u043F\u0442,\u0441\u0431,\u0432\u0441"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u041F\u0435\u0447\u0430\u0442\u044C"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u041F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u041D\u0430\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u043B\u0435\u0432\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u043E",
|
||||
rtl_desc:"\u041D\u0430\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u0441\u043F\u0440\u0430\u0432\u0430 \u043D\u0430\u043B\u0435\u0432\u043E"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u043B\u043E\u0439",
|
||||
forward_desc:"\u041D\u0430 \u043F\u0435\u0440\u0435\u0434\u043D\u0438\u0439 \u043F\u043B\u0430\u043D",
|
||||
backward_desc:"\u041D\u0430 \u0437\u0430\u0434\u043D\u0438\u0439 \u043F\u043B\u0430\u043D",
|
||||
absolute_desc:"\u0410\u0431\u0441\u043E\u043B\u044E\u0442\u043D\u043E\u0435 \u043F\u043E\u0437\u0438\u0446\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435",
|
||||
content:"\u041D\u043E\u0432\u044B\u0439 \u0441\u043B\u043E\u0439"
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C",
|
||||
cancel_desc:"\u041E\u0442\u043C\u0435\u043D\u0438\u0442\u044C \u0432\u0441\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043D\u0435\u0440\u0430\u0437\u0440\u044B\u0432\u043D\u044B\u0439 \u043F\u0440\u043E\u0431\u0435\u043B"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u041F\u0440\u043E\u0432\u0435\u0440\u0438\u0442\u044C \u043E\u0440\u0444\u043E\u0433\u0440\u0430\u0444\u0438\u044E",
|
||||
download:"ieSpell \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D. \u0416\u0435\u043B\u0430\u0435\u0442\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0440\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u0435\u043B\u044C"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u043C\u0430\u0439\u043B"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u041D\u0430\u0439\u0442\u0438",
|
||||
replace_desc:"\u0417\u0430\u043C\u0435\u043D\u0438\u0442\u044C"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C/\u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0438\u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u0438\u0435",
|
||||
delta_width:"200"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C/\u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u0441\u0441\u044B\u043B\u043A\u0443",
|
||||
delta_width:"200"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0426\u0438\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435",
|
||||
abbr_desc:"\u0421\u043E\u043A\u0440\u0430\u0449\u0435\u043D\u0438\u0435",
|
||||
acronym_desc:"\u0410\u0431\u0431\u0440\u0435\u0432\u0438\u0430\u0446\u0438\u044F",
|
||||
del_desc:"\u0423\u0434\u0430\u043B\u0435\u043D\u0438\u0435",
|
||||
ins_desc:"\u0417\u0430\u043C\u0435\u043D\u0430",
|
||||
attribs_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C/\u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u044D\u043B\u0435\u043C\u0435\u043D\u0442"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0420\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C CSS \u0441\u0442\u0438\u043B\u044C"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u043A\u0430\u043A \u0442\u0435\u043A\u0441\u0442",
|
||||
paste_word_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0438\u0437 Word",
|
||||
selectall_desc:"\u0412\u044B\u0434\u0435\u043B\u0438\u0442\u044C \u0432\u0441\u0435",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043E\u043A\u043D\u043E.",
|
||||
text_linebreaks:"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u043D\u043E\u0441\u044B \u0441\u0442\u0440\u043E\u043A",
|
||||
word_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043E\u043A\u043D\u043E."
|
||||
},
|
||||
table:{
|
||||
desc:"\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0435/\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0435 \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
row_before_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
||||
row_after_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0441\u043D\u0438\u0437\u0443",
|
||||
delete_row_desc:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443",
|
||||
col_before_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446 \u0441\u043B\u0435\u0432\u0430",
|
||||
col_after_desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446 \u0441\u043F\u0440\u0430\u0432\u0430",
|
||||
delete_col_desc:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0441\u0442\u043E\u043B\u0431\u0435\u0446",
|
||||
split_cells_desc:"\u0420\u0430\u0437\u0431\u0438\u0442\u044C \u044F\u0447\u0435\u0439\u043A\u0443",
|
||||
merge_cells_desc:"\u041E\u0431\u044A\u0435\u0434\u0438\u043D\u0438\u0442\u044C \u044F\u0447\u0435\u0439\u043A\u0438",
|
||||
row_desc:"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u0441\u0442\u0440\u043E\u043A\u0438",
|
||||
cell_desc:"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u044F\u0447\u0435\u0439\u043A\u0438",
|
||||
props_desc:"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B \u0442\u0430\u0431\u043B\u0438\u0446\u044B",
|
||||
paste_row_before_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0441\u0432\u0435\u0440\u0445\u0443",
|
||||
paste_row_after_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0441\u043D\u0438\u0437\u0443",
|
||||
cut_row_desc:"\u0412\u044B\u0440\u0435\u0437\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443",
|
||||
copy_row_desc:"\u041A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443",
|
||||
del:"\u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0442\u0430\u0431\u043B\u0438\u0446\u0443",
|
||||
row:"\u0421\u0442\u0440\u043E\u043A\u0430",
|
||||
col:"\u0421\u0442\u043E\u043B\u0431\u0435\u0446",
|
||||
cell:"\u042F\u0447\u0435\u0439\u043A\u0430",
|
||||
cellprops_delta_width:"30"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u041F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u0443\u0442\u0435\u0440\u044F\u043D\u044B, \u0435\u0441\u043B\u0438 \u0412\u044B \u0443\u0439\u0434\u0435\u0442\u0435 \u0441 \u044D\u0442\u043E\u0439 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B.",
|
||||
restore_content:"\u0412\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u044C \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u0438\u0435",
|
||||
warning_message:"\u0412\u0441\u0435 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0435\u043D\u043D\u044B\u0435 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u044F \u0431\u0443\u0434\u0443\u0442 \u0443\u0442\u0435\u0440\u044F\u043D\u044B.\n\n\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C \u0432\u043E\u0441\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0433\u043E \u0441\u043E\u0445\u0440\u0430\u043D\u0435\u043D\u0438\u044F?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u041F\u043E\u043B\u043D\u043E\u044D\u043A\u0440\u0430\u043D\u043D\u044B\u0439 \u0440\u0435\u0436\u0438\u043C"
|
||||
},
|
||||
media:{
|
||||
desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C/\u0418\u0437\u043C\u0435\u043D\u0438\u0442\u044C \u043A\u043B\u0438",
|
||||
edit:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043A\u043B\u0438\u043F\u0430"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u044C \u0448\u0430\u0431\u043B\u043E\u043D"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0412\u0441\u0435 \u0437\u043D\u0430\u043A\u0438"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u041F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0435",
|
||||
menu:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u043F\u0440\u043E\u0432\u0435\u0440\u043A\u0438 \u043F\u0440\u0430\u0432\u043E\u043F\u0438\u0441\u0430\u043D\u0438\u044F",
|
||||
ignore_word:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C",
|
||||
ignore_words:"\u041F\u0440\u043E\u043F\u0443\u0441\u0442\u0438\u0442\u044C \u0432\u0441\u0435",
|
||||
langs:"\u042F\u0437\u044B\u043A\u0438",
|
||||
wait:"\u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430, \u043F\u043E\u0434\u043E\u0436\u0434\u0438\u0442\u0435...",
|
||||
sug:"\u0412\u0430\u0440\u0438\u0430\u043D\u0442\u044B",
|
||||
no_sug:"\u041D\u0435\u0442 \u0432\u0430\u0440\u0438\u0430\u043D\u0442\u043E\u0432",
|
||||
no_mpell:"\u041E\u0448\u0438\u0431\u043E\u043A \u043D\u0435 \u043E\u0431\u043D\u0430\u0440\u0443\u0436\u0435\u043D\u043E."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0414\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0440\u0430\u0437\u0440\u044B\u0432 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u044B"
|
||||
},
|
||||
advlist:{
|
||||
types:"\u0421\u0438\u043C\u0432\u043E\u043B\u044B",
|
||||
def:"\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u044B\u0435",
|
||||
lower_alpha:"\u0421\u0442\u0440\u043E\u0447\u043D\u044B\u0435 \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438\u0435 \u0431\u0443\u043A\u0432\u044B",
|
||||
lower_greek:"\u0421\u0442\u0440\u043E\u0447\u043D\u044B\u0435 \u0433\u0440\u0435\u0447\u0435\u0441\u043A\u0438\u0435 \u0431\u0443\u043A\u0432\u044B",
|
||||
lower_roman:"\u0421\u0442\u0440\u043E\u0447\u043D\u044B\u0435 \u0440\u0438\u043C\u0441\u043A\u0438\u0435 \u0446\u0438\u0444\u0440\u044B",
|
||||
upper_alpha:"\u0417\u0430\u0433\u043B\u0430\u0432\u043D\u044B\u0435 \u043B\u0430\u0442\u0438\u043D\u0441\u043A\u0438\u0435 \u0431\u0443\u043A\u0432\u044B",
|
||||
upper_roman:"\u0417\u0430\u0433\u043B\u0430\u0432\u043D\u044B\u0435 \u0440\u0438\u043C\u0441\u043A\u0438\u0435 \u0446\u0438\u0444\u0440\u044B",
|
||||
circle:"\u041A\u0440\u0443\u0433\u0438",
|
||||
disc:"\u041E\u043A\u0440\u0443\u0436\u043D\u043E\u0441\u0442\u0438",
|
||||
square:"\u041A\u0432\u0430\u0434\u0440\u0430\u0442\u044B"
|
||||
}}});
|
178
htdocs/resource2/tinymce/langs/sc.js
Normal file
178
htdocs/resource2/tinymce/langs/sc.js
Normal file
@ -0,0 +1,178 @@
|
||||
tinyMCE.addI18n({sc:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u5728\u6B64textarea\u6807\u7B7E\u5185\u4F7F\u7528\u300C\u6240\u89C1\u5373\u6240\u5F97\u300D\u6A21\u5F0F\uFF1F ",
|
||||
apply:"\u5E94\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u5173\u95ED",
|
||||
browse:"\u6D41\u89C8",
|
||||
class_name:"\u6837\u5F0F",
|
||||
not_set:"--\u672A\u8BBE\u7F6E--",
|
||||
clipboard_msg:"\u590D\u5236\u3001\u526A\u4E0B\u3001\u8D34\u4E0A\u529F\u80FD\u5728Mozilla\u548CFirefox\u4E2D\u4E0D\u80FD\u4F7F\u7528\u3002 \n\u662F\u5426\u9700\u8981\u4E86\u89E3\u66F4\u591A\u6709\u5173\u6B64\u95EE\u9898\u7684\u8D44\u8BAF\uFF1F ",
|
||||
clipboard_no_support:"\u8FD8\u4E0D\u652F\u63F4\u60A8\u7684\u6D41\u89C8\u5668\uFF0C\u8BF7\u4F7F\u7528\u952E\u76D8\u5FEB\u6377\u65B9\u5F0F",
|
||||
popup_blocked:"\u62B1\u6B49\uFF01\u5F39\u51FA\u89C6\u7A97\u5DF2\u88AB\u963B\u6B62\uFF0C\u8BF7\u8C03\u6574\u6D41\u89C8\u5668\u8BBE\u7F6E\uFF0C\u5141\u8BB8\u6B64\u7F51\u7AD9\u53EF\u5F39\u51FA\u65B0\u89C6\u7A97\uFF0C\u4EE5\u4FBF\u4F7F\u7528\u6B64\u5DE5\u5177",
|
||||
invalid_data:"\u9519\u8BEF:\u65E0\u6548\u8F93\u5165\u503C\uFF0C\u5DF2\u6807\u8BB0\u4E3A\u7EA2\u8272\u3002 ",
|
||||
more_colors:"\u66F4\u591A\u989C\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5BF9\u9F50\u65B9\u5F0F",
|
||||
left:"\u9760\u5DE6\u5BF9\u9F50",
|
||||
center:"\u5C45\u4E2D\u5BF9\u9F50",
|
||||
right:"\u9760\u53F3\u5BF9\u9F50",
|
||||
full:"\u4E24\u7AEF\u5BF9\u9F50"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u4ECA\u5929\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u73B0\u5728\u65F6\u95F4",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u5468\u65E5,\u5468\u4E00,\u5468\u4E8C,\u5468\u4E09,\u5468\u56DB,\u5468\u4E94,\u5468\u516D,\u5468\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5217\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9884\u89C8"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u6587\u5B57\u4ECE\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u6587\u5B57\u4ECE\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5C42",
|
||||
forward_desc:"\u7F6E\u524D",
|
||||
backward_desc:"\u7F6E\u540E",
|
||||
absolute_desc:"\u5F00\u5173\u7EDD\u5BF9\u4F4D\u7F6E",
|
||||
content:"\u65B0\u589E\u5C42..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u4FDD\u5B58",
|
||||
cancel_desc:"\u53D6\u6D88\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u767D\u683C"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u62FC\u5199\u68C0\u67E5",
|
||||
download:"\u672A\u68C0\u6D4B\u5230ieSpell\u7684\u5B58\u5728\u3002\u662F\u5426\u73B0\u5728\u7ACB\u5373\u5B89\u88C5\uFF1F "
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7EBF"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u56FE\u91CA"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u67E5\u627E",
|
||||
replace_desc:"\u67E5\u627E/\u66FF\u6362"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7F16\u8F91\u56FE\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7F16\u8F91\u8FDE\u7ED3"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u6587",
|
||||
abbr_desc:"\u7F29\u5199",
|
||||
acronym_desc:"\u9996\u5B57\u7F29\u5199",
|
||||
del_desc:"\u5220\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7F16\u8F91\u5C5E\u6027",
|
||||
attribs_delta_width:"40",
|
||||
attribs_delta_height:"60"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7F16\u8F91CSS\u6837\u5F0F\u8868\u5355"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u4EE5\u7EAF\u6587\u672C\u8D34\u4E0A",
|
||||
paste_word_desc:"\u4ECEWord\u8D34\u4E0A",
|
||||
selectall_desc:"\u5168\u9009",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002 ",
|
||||
text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26\u53F7",
|
||||
word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002 "
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u63D2\u5165\u4E0A\u65B9\u884C",
|
||||
row_after_desc:"\u63D2\u5165\u4E0B\u65B9\u884C",
|
||||
delete_row_desc:"\u5220\u9664\u6240\u5728\u884C",
|
||||
col_before_desc:"\u63D2\u5165\u5DE6\u65B9\u5217",
|
||||
col_after_desc:"\u63D2\u5165\u53F3\u65B9\u5217",
|
||||
delete_col_desc:"\u5220\u9664\u6240\u5728\u5217",
|
||||
split_cells_desc:"\u5206\u5272\u5355\u683C",
|
||||
merge_cells_desc:"\u5408\u5E76\u5355\u683C",
|
||||
row_desc:"\u884C\u5C5E\u6027",
|
||||
cell_desc:"\u5355\u683C\u5C5E\u6027",
|
||||
props_desc:"\u8868\u683C\u5C5E\u6027",
|
||||
paste_row_before_desc:"\u8D34\u5728\u4E0A\u884C",
|
||||
paste_row_after_desc:"\u8D34\u5728\u4E0B\u884C",
|
||||
cut_row_desc:"\u526A\u4E0B\u9009\u62E9\u884C",
|
||||
copy_row_desc:"\u590D\u5236\u9009\u62E9\u884C",
|
||||
del:"\u5220\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u5355\u683C",
|
||||
cellprops_delta_width:"10",
|
||||
cellprops_delta_height:"10",
|
||||
table_delta_width:"40",
|
||||
table_delta_height:"60",
|
||||
merge_cells_delta_width:"40",
|
||||
merge_cells_delta_height:"40"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u5982\u679C\u79BB\u5F00\u6B64\u9875\u9762\u5C06\u5BFC\u81F4\u6240\u505A\u7684\u66F4\u6539\u5168\u90E8\u4E22\u5931\u3002 ",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5F00\u5173\u5168\u5C4F\u6A21\u5F0F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53",
|
||||
edit:"\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6863\u5C5E\u6027"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9884\u5B9A\u7684\u8303\u672C\u5185\u5BB9"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u663E\u793A\u63A7\u5236\u7B26\u53F7\u5F00/\u5173\u3002 "
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u5F00\u5173\u62FC\u5199\u68C0\u67E5",
|
||||
menu:"\u62FC\u5199\u68C0\u67E5\u8BBE\u7F6E",
|
||||
ignore_word:"\u7565\u8FC7",
|
||||
ignore_words:"\u5168\u90E8\u7565\u8FC7",
|
||||
langs:"\u8BED\u8A00",
|
||||
wait:"\u8BF7\u7A0D\u5019...",
|
||||
sug:"\u63A8\u8350\u5B57\u8BCD",
|
||||
no_sug:"\u65E0\u62FC\u5199\u63A8\u8350",
|
||||
no_mpell:"\u672A\u53D1\u73B0\u62FC\u5199\u9519\u8BEF"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9875\u7B26\u53F7"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/se.js
Normal file
170
htdocs/resource2/tinymce/langs/se.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({se:{
|
||||
common:{
|
||||
edit_confirm:"Vill du anv\u00E4nda WYSIWYG l\u00E4get f\u00F6r denna textarea.",
|
||||
apply:"Applicera",
|
||||
insert:"Infoga",
|
||||
update:"Uppdatera",
|
||||
cancel:"Avbryt",
|
||||
close:"St\u00E4ng",
|
||||
browse:"Bl\u00E4ddra",
|
||||
class_name:"Klass",
|
||||
not_set:"-- Inte satt --",
|
||||
clipboard_msg:"Kopiera/klipp ut/klistra in \u00E4r inte tillg\u00E4ngligt i din webbl\u00E4sare.\nVill du veta mer?",
|
||||
clipboard_no_support:"Funktionen \u00E4r inte tillg\u00E4nglig i din webbl\u00E4sare, anv\u00E4nd tangentbordsgenv\u00E4garna i st\u00E4llet.",
|
||||
popup_blocked:"Popup blockerare detekterad. St\u00E4ng av den s\u00E5 att dialogerna kan \u00F6ppnas.",
|
||||
invalid_data:"Fel: Inkorrekta v\u00E4rden har matats in, dessa \u00E4r markerade i r\u00F6tt.",
|
||||
more_colors:"Fler f\u00E4rger"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Justering",
|
||||
left:"V\u00E4nster",
|
||||
center:"Centrerad",
|
||||
right:"H\u00F6ger",
|
||||
full:"Utfyllnad"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d ",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Infoga datum",
|
||||
inserttime_desc:"Infoga tid",
|
||||
months_long:"Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec",
|
||||
day_long:"S\u00F6ndag,M\u00E5ndag,Tisdag,Onsdag,Torsdag,Fredag,L\u00F6rdag,S\u00F6ndag",
|
||||
day_short:"S\u00F6n,M\u00E5n,Tis,Ons,Tors,Fre,L\u00F6r,S\u00F6n"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Skriv ut"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"F\u00F6rhandsgranska"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Skriftl\u00E4ge - v\u00E4nster till h\u00F6ger",
|
||||
rtl_desc:"Skriftl\u00E4ge - h\u00F6ger till v\u00E4nster"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Infoga nytt lager",
|
||||
forward_desc:"Flytta fram\u00E5t",
|
||||
backward_desc:"Flytta bak\u00E5t",
|
||||
absolute_desc:"Sl\u00E5 av/p\u00E5 absolut positionering",
|
||||
content:"Nytt lager..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Spara",
|
||||
cancel_desc:"Hoppa \u00F6ver alla f\u00F6r\u00E4ndringar"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Infoga icke radbrytande mellanslag"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"R\u00E4ttstava",
|
||||
download:"ieSpell kunde inte hittas, vill du installera denna nu?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontell skiljelinje"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Smileys"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"S\u00F6k",
|
||||
replace_desc:"S\u00F6k/ers\u00E4tt"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Infoga/redigera bild"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Infoga/redigera l\u00E4nk"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"citat",
|
||||
abbr_desc:"F\u00F6rkortning",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Markera som struket",
|
||||
ins_desc:"Markera som tillagt",
|
||||
attribs_desc:"Redigera attribut"
|
||||
},
|
||||
style:{
|
||||
desc:"Redigera inline CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Klistra in som text",
|
||||
paste_word_desc:"Klistra in fr\u00E5n Word",
|
||||
selectall_desc:"Markera allt",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.",
|
||||
text_linebreaks:"Spara radbrytningar",
|
||||
word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster."
|
||||
},
|
||||
table:{
|
||||
desc:"Infoga/redigera ny tabell",
|
||||
row_before_desc:"Infoga ny rad f\u00F6re",
|
||||
row_after_desc:"Infoga ny rad efter",
|
||||
delete_row_desc:"Radera rad",
|
||||
col_before_desc:"Infoga kolumn f\u00F6re",
|
||||
col_after_desc:"Infoga kolumn efter",
|
||||
delete_col_desc:"Radera kolumn",
|
||||
split_cells_desc:"Separera sammansatta celler",
|
||||
merge_cells_desc:"Sammanfoga celler",
|
||||
row_desc:"Tabellradsinst\u00E4llningar",
|
||||
cell_desc:"Tabellcellsinst\u00E4llningar",
|
||||
props_desc:"Tabellinst\u00E4llningar",
|
||||
paste_row_before_desc:"Klistra in rad ovanf\u00F6r",
|
||||
paste_row_after_desc:"Klistra in rad efter",
|
||||
cut_row_desc:"Klipp ut rad",
|
||||
copy_row_desc:"Klistra in rad",
|
||||
del:"Radera tabell",
|
||||
row:"Rad",
|
||||
col:"Kolumn",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"F\u00F6r\u00E4ndringarna du gjorde kommer att g\u00E5 f\u00F6rlorade om du v\u00E4ljer att l\u00E4mna denna sida.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Sl\u00E5 av/p\u00E5 fullsk\u00E4rmsl\u00E4ge"
|
||||
},
|
||||
media:{
|
||||
desc:"Infoga/redigera inb\u00E4ddad media",
|
||||
edit:"Redigera inb\u00E4ddad media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumentinst\u00E4llningar"
|
||||
},
|
||||
template:{
|
||||
desc:"Infoga en f\u00E4rdig mall"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visa osynliga tecken"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Sl\u00E5 av/p\u00E5 r\u00E4ttstavningskontroll",
|
||||
menu:"R\u00E4ttstavningsinst\u00E4llningar",
|
||||
ignore_word:"Ignorera ord",
|
||||
ignore_words:"Ignorera alla",
|
||||
langs:"Spr\u00E5k",
|
||||
wait:"Var god v\u00E4nta...",
|
||||
sug:"F\u00F6rslag",
|
||||
no_sug:"Inga f\u00F6rslag",
|
||||
no_mpell:"Kunde inte finna n\u00E5gra felstavningar."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Infoga sidbrytning"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/si.js
Normal file
170
htdocs/resource2/tinymce/langs/si.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({si:{
|
||||
common:{
|
||||
edit_confirm:"\u0D94\u0DB6\u0DA7 \u0DB8\u0DD9\u0DB8 \u0DB4\u0DCF\u0DA8\u0DBA\u0DB1\u0DCA \u0DC3\u0DB3\u0DC4\u0DCF WYSIWYG \u0D86\u0D9A\u0DCF\u0DBB\u0DBA?",
|
||||
apply:"\u0DBA\u0DDC\u0DAF\u0DB1\u0DCA\u0DB1",
|
||||
insert:"\u0D87\u0DAD\u0DD4\u0DC5\u0DAD\u0DCA \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
update:"\u0D85\u0DBD\u0DD4\u0DAD\u0DCA \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
cancel:"\u0D85\u0DC0\u0DBD\u0D82\u0D9C\u0DD4 \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
close:"\u0D89\u0DC0\u0DAD\u0DCA\u0DC0\u0DB1\u0DCA\u0DB1",
|
||||
browse:"Browse",
|
||||
class_name:"\u0DC3\u0DB8\u0DD6\u0DC4\u0DBA",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"\u0DB4\u0DD2\u0DA7\u0DB4\u0DAD\u0DCA \u0D9A\u0DD2\u0DBB\u0DD3\u0DB8/\u0D89\u0DC0\u0DAD\u0DCA \u0D9A\u0DD2\u0DBB\u0DD3\u0DB8/\u0D87\u0DBD\u0DC0\u0DD3\u0DB8 \u0DB8\u0DDC\u0DC3\u0DD2\u0DBD\u0DCA\u0DBD\u0DCF \u0DC4\u0DCF \u0DC6\u0DBA\u0DBB\u0DCA \u0DC6\u0DDC\u0D9A\u0DCA\u0DC3\u0DCA \u0DC4\u0DD2 \u0D87\u0DAD\u0DD4\u0DC5\u0DAD\u0DCA \u0DB1\u0DDC\u0DC0\u0DDA.\n\u0D94\u0DB6\u0DA7 \u0DB8\u0DDA \u0DB4\u0DD2\u0DC5\u0DD2\u0DB6\u0DB3\u0DC0 \u0DAD\u0DA0\u0DAF\u0DD4\u0DBB\u0DA7\u0DAD\u0DCA \u0DAD\u0DDC\u0DBB\u0DAD\u0DD4\u0DBB\u0DD4 \u0D85\u0DC0\u0DC1\u0DCA\u200D\u0DBA \u0DC0\u0DDA\u0DAF?",
|
||||
clipboard_no_support:"\u0DAF\u0DD0\u0DB1\u0DA7 \u0DB4\u0DCA\u200D\u0DBB\u0DAF\u0DBB\u0DCA\u0DC1\u0D9A\u0DBA \u0DB8\u0D9F\u0DD2\u0DB1\u0DCA \u0DB8\u0DD9\u0DB8 \u0DC3\u0DDA\u0DC0\u0DBA \u0DC3\u0DB4\u0DBA\u0DCF \u0DB1\u0DD0\u0DAD,\u0D91\u0DB6\u0DD0\u0DC0\u0DD2\u0DB1\u0DCA \u0DBA\u0DAD\u0DD4\u0DBB\u0DD4\u0DB4\u0DD4\u0DC0\u0DBB\u0DD4\u0DC0 \u0DB7\u0DCF\u0DC0\u0DD2\u0DAD\u0DCF \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1.",
|
||||
popup_blocked:"\u0D94\u0DB6\u0D9C\u0DDA popup-blocker \u0DB8\u0D9F\u0DD2\u0DB1\u0DCA \u0D8B\u0DB4\u0DBA\u0DDD\u0D9C\u0DD2 \u0DC3\u0DDA\u0DC0\u0DCF\u0DC0\u0DB1\u0DCA \u0DC3\u0DB4\u0DBA\u0DB1 \u0D9A\u0DC0\u0DD4\u0DBD\u0DD4\u0DC0\u0D9A\u0DCA \u0D85\u0DB6\u0DBD \u0D9A\u0DBB \u0D87\u0DAD.\u0D91\u0DB6\u0DD0\u0DC0\u0DD2\u0DB1\u0DCA \u0D94\u0DB6\u0DA7 popup-blocker \u0DBA \u0D85\u0D9A\u0DCA\u200D\u0DBB\u0DD3\u0DBA \u0D9A\u0DD2\u0DBB\u0DD3\u0DB8\u0DA7 \u0DC3\u0DD2\u0DAF\u0DD4\u0DC0\u0DDA. ",
|
||||
invalid_data:"\u0DC0\u0DBB\u0DAF: \u0DC0\u0DBD\u0D82\u0D9C\u0DD4 \u0DB1\u0DDC\u0DB8\u0DD0\u0DAD\u0DD2 \u0D85\u0D9C\u0DBA\u0DB1\u0DCA \u0D87\u0DAD\u0DD4\u0DC5\u0DAD\u0DCA \u0D9A\u0DBB \u0D87\u0DAD,\u0D91\u0DB8 \u0D85\u0D9C\u0DBA\u0DB1\u0DCA \u0DBB\u0DAD\u0DD4 \u0DB4\u0DCF\u0DA7\u0DD2\u0DB1\u0DCA \u0DC3\u0DC5\u0D9A\u0DD4\u0DAB\u0DD4 \u0D9A\u0DBB \u0D87\u0DAD.",
|
||||
more_colors:"\u0DAD\u0DC0\u0DAD\u0DCA \u0DC0\u0DBB\u0DCA\u0DAB"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0DB4\u0DD9\u0DC5 \u0D9C\u0DD0\u0DB1\u0DCA\u0DC0\u0DD4\u0DB8",
|
||||
left:"\u0DC0\u0DB8\u0DA7",
|
||||
center:"\u0DB8\u0DD0\u0DAF\u0DA7",
|
||||
right:"\u0DAF\u0D9A\u0DD4\u0DAB\u0DA7",
|
||||
full:"\u0DB4\u0DD6\u0DBB\u0DCA\u0DAB\u0DC0"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%\u0D85\u0DC0\u0DD4-%\u0DB8\u0DCF\u0DC3-%\u0DAF\u0DD2\u0DB1",
|
||||
time_fmt:"%\u0DB4\u0DD0\u0DBA:%\u0DB8\u0DD2\u0DC3:%\u0DAD\u0DAD\u0DCA",
|
||||
insertdate_desc:"\u0DAF\u0DD2\u0DB1\u0DBA \u0D87\u0DAD\u0DD4\u0DC5\u0DAD\u0DCA \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
inserttime_desc:"\u0DC0\u0DDA\u0DBD\u0DCF\u0DC0 \u0D87\u0DAD\u0DD4\u0DC5\u0DAD\u0DCA \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
months_long:"\u0DA2\u0DB1\u0DC0\u0DCF\u0DBB\u0DD2,\u0DB4\u0DD9\u0DB6\u0DBB\u0DC0\u0DCF\u0DBB\u0DD2,\u0DB8\u0DCF\u0DBB\u0DCA\u0DAD\u0DD4,\u0D85\u0DB4\u0DCA\u200D\u0DBB\u0DDA\u0DBD\u0DCA,\u0DB8\u0DD0\u0DBA\u0DD2,\u0DA2\u0DD6\u0DB1\u0DD2,\u0DA2\u0DD6\u0DBD\u0DD2,\u0D85\u0D9C\u0DDD\u0DC3\u0DCA\u0DAD\u0DD4,\u0DC3\u0DD0\u0DCA\u0DAD\u0DD0\u0DB8\u0DCA\u0DB6\u0DBB\u0DCA,\u0D94\u0D9A\u0DCA\u0DAD\u0DDD\u0DB6\u0DBB\u0DCA,\u200D\u0DB1\u0DDC\u0DC0\u0DD0\u0DB8\u0DCA\u0DB6\u0DBB\u0DCA,\u0DAF\u0DD9\u0DC3\u0DD0\u0DB8\u0DCA\u0DB6\u0DBB\u0DCA",
|
||||
months_short:"\u0DA2\u0DB1.,\u0DB4\u0DD9\u0DB6.,\u0DB8\u0DCF\u0DBB\u0DCA\u0DAD\u0DD4,\u0D85\u0DB4\u0DCA\u200D\u0DBB\u0DDA\u0DBD\u0DCA,\u0DB8\u0DD0\u0DBA\u0DD2,\u0DA2\u0DD6\u0DB1\u0DD2,\u0DA2\u0DD6\u0DBD\u0DD2,\u0D85\u0D9C\u0DDD.,\u0DC3\u0DD0\u0DCA.,\u0D94\u0D9A\u0DCA.,\u200D\u0DB1\u0DDC\u0DC0\u0DD0.,\u0DAF\u0DD9\u0DC3\u0DD0.",
|
||||
day_long:"\u0D89\u0DBB\u0DD2\u0DAF\u0DCF,\u0DC3\u0DB3\u0DD4\u0DAF\u0DCF,\u0D85\u0D9F\u0DC4\u0DBB\u0DD0\u0DC0\u0DCF\u0DAF\u0DCF,\u0DB6\u0DAF\u0DCF\u0DAF\u0DCF,\u0DB6\u0DCA\u200D\u0DBB\u0DC4\u0DC3\u0DCA\u0DB4\u0DAD\u0DD2\u0DB1\u0DCA\u0DAF\u0DCF,\u0DC3\u0DD2\u0D9A\u0DD4\u0DBB\u0DCF\u0DAF\u0DCF,\u0DC3\u0DD9\u0DB1\u0DC3\u0DD4\u0DBB\u0DCF\u0DAF\u0DCF",
|
||||
day_short:"\u0D89\u0DBB\u0DD2\u0DAF\u0DCF,\u0DC3\u0DB3\u0DD4\u0DAF\u0DCF,\u0D85\u0D9F.,\u0DB6\u0DAF\u0DCF\u0DAF\u0DCF,\u0DB6\u0DCA\u200D\u0DBB\u0DC4\u0DC3\u0DCA.,\u0DC3\u0DD2\u0D9A\u0DD4.,\u0DC3\u0DD9\u0DB1."
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0DB8\u0DD4\u0DAF\u0DCA\u200D\u0DBB\u0DAB\u0DBA \u0D9A\u0DBB\u0DB1\u0DC0\u0DCF"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u0DB4\u0DD6\u0DBB\u0DCA\u0DC0 \u0DAF\u0DBB\u0DCA\u0DC1\u0DB1\u0DBA"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u0DC0\u0DB8\u0DDA \u0DC3\u0DD2\u0DA7 \u0DAF\u0D9A\u0DD4\u0DAB\u0DA7 \u0DAF\u0DD2\u0DC1\u0DCF\u0DC0",
|
||||
rtl_desc:"\u0DAF\u0D9A\u0DD4\u0DAB\u0DDA \u0DC3\u0DD2\u0DA7 \u0DC0\u0DB8\u0DA7 \u0DAF\u0DD2\u0DC1\u0DCF\u0DC0"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0D85\u0DB5\u0DAD\u0DCA \u0DC3\u0DCA\u0DAE\u0DBB\u0DBA\u0D9A\u0DCA \u0D87\u0DAD\u0DD4\u0DC5\u0DAD\u0DCA \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
forward_desc:"\u0D89\u0DAF\u0DD2\u0DBB\u0DD2\u0DBA\u0DA7 \u0D9C\u0DD9\u0DB1\u0DBA\u0DB1\u0DCA\u0DB1",
|
||||
backward_desc:"\u0DB4\u0DC3\u0DD4\u0DB4\u0DC3\u0DA7 \u0D9C\u0DD9\u0DB1\u0DBA\u0DB1\u0DCA\u0DB1",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"\u0D85\u0DBD\u0DD4\u0DAD\u0DCA \u0DC3\u0DCA\u0DAE\u0DBB\u0DBA\u0D9A\u0DCA..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0DC3\u0DD4\u0DBB\u0D9A\u0DD2\u0DB1\u0DCA\u0DB1",
|
||||
cancel_desc:"\u0D85\u0DC0\u0DBD\u0D82\u0D9C\u0DD4 \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0D85\u0D9A\u0DCA\u0DC2\u0DBB \u0DC0\u0DD2\u0DB1\u0DCA\u200D\u0DBA\u0DCF\u0DC3\u0DBA \u0DB4\u0DBB\u0DD3\u0D9A\u0DC2\u0DCF \u0D9A\u0DBB\u0DB1\u0DCA\u0DB1",
|
||||
download:"ieSpell \u0D85\u0DB1\u0DCF\u0DC0\u0DBB\u0DB1\u0DBA \u0DC0\u0DD6\u0DBA\u0DDA \u0DB1\u0DD0\u0DAD. \u0D94\u0DB6\u0DA7 \u0D91\u0DBA \u0DB4\u0DD2\u0DC4\u0DD2\u0DA7\u0DD4\u0DC0\u0DD3\u0DB8\u0DA7 \u0D85\u0DC0\u0DC1\u0DCA\u200D\u0DBA \u0DAF?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontale rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
176
htdocs/resource2/tinymce/langs/sk.js
Normal file
176
htdocs/resource2/tinymce/langs/sk.js
Normal file
@ -0,0 +1,176 @@
|
||||
tinyMCE.addI18n({sk:{
|
||||
common:{
|
||||
edit_confirm:"Chcete pou\u017Ei\u0165 WYSIWYG re\u017Eim pre tento text?",
|
||||
apply:"Pou\u017Ei\u0165",
|
||||
insert:"Vlo\u017Ei\u0165",
|
||||
update:"Aktualizova\u0165",
|
||||
cancel:"Storno",
|
||||
close:"Zavrie\u0165",
|
||||
browse:"Prech\u00E1dza\u0165",
|
||||
class_name:"Trieda",
|
||||
not_set:"-- Nezadan\u00E9 --",
|
||||
clipboard_msg:"Funkcie kop\u00EDrova\u0165/vystrihn\u00FA\u0165/vlo\u017Ei\u0165 nie s\u00FA podporovan\u00E9 v prehliada\u010Doch Mozilla a Firefox.\nChcete viac inform\u00E1ci\u00ED o tomto probl\u00E9me?",
|
||||
clipboard_no_support:"T\u00E1to funkcia nie je va\u0161\u00EDm prehliada\u010Dom podporovan\u00E1. Pou\u017Eite namiesto toho kl\u00E1vesov\u00FA skratku.",
|
||||
popup_blocked:"Blokovanie vyskakovac\u00EDch okien neumo\u017Enilo otvori\u0165 okno, ktor\u00E9 poskytuje funk\u010Dnos\u0165 aplik\u00E1cie. Pre pln\u00E9 vyu\u017Eitie mo\u017Enost\u00ED aplik\u00E1cie mus\u00EDte vypn\u00FA\u0165 blokovanie vyskakovac\u00EDch okien pre tento web.",
|
||||
invalid_data:"Chyba: Boli zadan\u00E9 neplatn\u00E9 hodnoty a tieto boli ozna\u010Den\u00E9 \u010Dervenou farbou.",
|
||||
more_colors:"\u010Eal\u0161ie farby"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Zarovnanie",
|
||||
left:"Do\u013Eava",
|
||||
center:"Na stred",
|
||||
right:"Doprava",
|
||||
full:"Do bloku"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Vlo\u017Ei\u0165 d\u00E1tum",
|
||||
inserttime_desc:"Vlo\u017Ei\u0165 \u010Das",
|
||||
months_long:"Janu\u00E1r,Febru\u00E1r,Marec,Apr\u00EDl,M\u00E1j,J\u00FAn,J\u00FAl,August,September,Okt\u00F3ber,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,M\u00E1j,J\u00FAn,J\u00FAl,Aug,Sep,Okt,Nov,Dec",
|
||||
day_long:"Nede\u013Ea,Pondelok,Utorok,Streda,\u0160tvrtok,Piatok,Sobota,Nede\u013Ea",
|
||||
day_short:"Ne,Po,Ut,St,\u0160t,Pi,So,Ne"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Tla\u010D"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"N\u00E1h\u013Ead"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Smer z\u013Eava doprava",
|
||||
rtl_desc:"Smer sprava do\u013Eava"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Vlo\u017Ei\u0165 nov\u00FA vrstvu",
|
||||
forward_desc:"Presun\u00FA\u0165 dopredu",
|
||||
backward_desc:"Presun\u00FA\u0165 dozadu",
|
||||
absolute_desc:"Prepn\u00FA\u0165 na absol\u00FAtne poziciovanie",
|
||||
content:"Nov\u00E1 vrstva..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Ulo\u017Ei\u0165",
|
||||
cancel_desc:"Zru\u0161i\u0165 v\u0161etky zmeny"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Vlo\u017Ei\u0165 nerozdelite\u013En\u00FA medzeru"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Spusti\u0165 kontrolu pravopisu",
|
||||
download:"Slovn\u00EDk ieSpell nebol detekovan\u00FD. Chcete ho nain\u0161talova\u0165?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodorovn\u00FD odde\u013Eova\u010D"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotikony"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"H\u013Eada\u0165",
|
||||
replace_desc:"H\u013Eada\u0165 a nahradi\u0165"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Vlo\u017Ei\u0165/upravi\u0165 obr\u00E1zok",
|
||||
delta_width:"40"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Vlo\u017Ei\u0165/upravi\u0165 odkaz"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Cit\u00E1cia",
|
||||
abbr_desc:"Skratka",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Odstr\u00E1nen\u00FD text",
|
||||
ins_desc:"Pridan\u00FD text",
|
||||
attribs_desc:"Vlo\u017Ei\u0165/upravi\u0165 atrib\u00FAty"
|
||||
},
|
||||
style:{
|
||||
desc:"Upravi\u0165 CSS \u0161t\u00FDl",
|
||||
delta_width:"35"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Vlo\u017Ei\u0165 ako prost\u00FD text",
|
||||
paste_word_desc:"Vlo\u017Ei\u0165 z Wordu",
|
||||
selectall_desc:"Ozna\u010Di\u0165 v\u0161etko",
|
||||
plaintext_mode_sticky:"Funkcia vlo\u017Ei\u0165 je teraz v re\u017Eime prost\u00FD text. Op\u00E4tovn\u00E9 kliknutie prepne t\u00FAto funkciu nasp\u00E4\u0165 do norm\u00E1lneho re\u017Eimu. Po vlo\u017Een\u00ED \u010Dohoko\u013Evek bude t\u00E1to funkcia navr\u00E1ten\u00E1 sp\u00E4\u0165 do norm\u00E1lneho re\u017Eimu.",
|
||||
plaintext_mode:"Funkcia vlo\u017Ei\u0165 je teraz v re\u017Eime prost\u00FD text. Op\u00E4tovn\u00E9 kliknutie prepne t\u00FAto funkciu nasp\u00E4\u0165 do norm\u00E1lneho re\u017Eimu."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Pou\u017Eite CTRL+V pre vlo\u017Eenie textu do okna.",
|
||||
text_linebreaks:"Zachova\u0165 zalamovanie riadkov",
|
||||
word_title:"Pou\u017Eite CTRL+V pre vlo\u017Eenie textu do okna."
|
||||
},
|
||||
table:{
|
||||
desc:"Vlo\u017Ei\u0165 nov\u00FA tabu\u013Eku",
|
||||
row_before_desc:"Vlo\u017Ei\u0165 riadok pred",
|
||||
row_after_desc:"Vlo\u017Ei\u0165 riadok za",
|
||||
delete_row_desc:"Odstr\u00E1ni\u0165 riadok tabu\u013Eky",
|
||||
col_before_desc:"Vlo\u017Ei\u0165 st\u013Apec pred",
|
||||
col_after_desc:"Vlo\u017Ei\u0165 st\u013Apec za",
|
||||
delete_col_desc:"Odstr\u00E1ni\u0165 st\u013Apec tabu\u013Eky",
|
||||
split_cells_desc:"Rozdeli\u0165 bunky",
|
||||
merge_cells_desc:"Zl\u00FA\u010Di\u0165 bunky",
|
||||
row_desc:"Vlastnosti riadky tabu\u013Eky",
|
||||
cell_desc:"Vlastnosti bunky",
|
||||
props_desc:"Vlastnosti tabu\u013Eky",
|
||||
paste_row_before_desc:"Vlo\u017Ei\u0165 riadok pred",
|
||||
paste_row_after_desc:"Vlo\u017Ei\u0165 riadok za",
|
||||
cut_row_desc:"Vystrihn\u00FA\u0165 riadok tabu\u013Eky",
|
||||
copy_row_desc:"Kop\u00EDrova\u0165 riadok tabu\u013Eky",
|
||||
del:"Odstr\u00E1ni\u0165 tabu\u013Eku",
|
||||
row:"Riadok",
|
||||
col:"St\u013Apec",
|
||||
cell:"Bunka",
|
||||
cellprops_delta_width:"105",
|
||||
table_delta_width:"50"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Preveden\u00E9 zmeny m\u00F4\u017Eu by\u0165 straten\u00E9, ak opust\u00EDte t\u00FAto str\u00E1nku.",
|
||||
restore_content:"Obnovi\u0165 automaticky ulo\u017Een\u00FD obsah.",
|
||||
warning_message:"Pokia\u013E obnov\u00EDte ulo\u017Een\u00FD obsah, strat\u00EDte t\u00FDm v\u0161etok obsah, ktor\u00FD je pr\u00E1ve v okne editora.\n\nSkuto\u010Dne chcete obnovi\u0165 ulo\u017Een\u00FD obsah?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Prepn\u00FA\u0165 na celostr\u00E1nkov\u00E9 zobrazenie"
|
||||
},
|
||||
media:{
|
||||
desc:"Vlo\u017Ei\u0165/upravi\u0165 m\u00E9di\u00E1",
|
||||
edit:"Upravi\u0165 m\u00E9di\u00E1",
|
||||
delta_width:"180"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Vlastnosti dokumentu",
|
||||
delta_width:"115"
|
||||
},
|
||||
template:{
|
||||
desc:"Vlo\u017Ei\u0165 preddefinovan\u00FD obsah zo \u0161abl\u00F3ny"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Zobrazenie skryt\u00FDch znakov zap/vyp"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Prepn\u00FA\u0165 kontrolu pravopisu",
|
||||
menu:"Nastavenie kontroly pravopisu",
|
||||
ignore_word:"Vynecha\u0165 slovo",
|
||||
ignore_words:"Vynecha\u0165 v\u0161etky",
|
||||
langs:"Jazyky",
|
||||
wait:"\u010Cakajte pros\u00EDm...",
|
||||
sug:"Ponuky",
|
||||
no_sug:"\u017Diadne ponuky",
|
||||
no_mpell:"Bez pravopisn\u00FDch ch\u00FDb."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Vlo\u017Ei\u0165 zalomenie str\u00E1nky."
|
||||
},
|
||||
advlist:{
|
||||
types:"Typ",
|
||||
def:"Predvolen\u00FD",
|
||||
lower_alpha:"Mal\u00E9 p\u00EDsmen\u00E1",
|
||||
lower_greek:"Mal\u00E9 gr\u00E9cke p\u00EDsmen\u00E1",
|
||||
lower_roman:"Mal\u00E9 r\u00EDmske \u010D\u00EDslice",
|
||||
upper_alpha:"Ve\u013Ek\u00E9 p\u00EDsmen\u00E1",
|
||||
upper_roman:"Ve\u013Ek\u00E9 r\u00EDmske \u010D\u00EDslice",
|
||||
circle:"Kr\u00FA\u017Eok",
|
||||
disc:"Pln\u00E9 koliesko",
|
||||
square:"\u0160tvor\u010Dek"
|
||||
}}});
|
171
htdocs/resource2/tinymce/langs/sl.js
Normal file
171
htdocs/resource2/tinymce/langs/sl.js
Normal file
@ -0,0 +1,171 @@
|
||||
tinyMCE.addI18n({sl:{
|
||||
common:{
|
||||
edit_confirm:"\u017Delite uporabiti na\u010Din \'videz ne vara\' (WYSIWYG) za to vnosno polje?",
|
||||
apply:"Uporabi",
|
||||
insert:"Vstavi",
|
||||
update:"Posodobi",
|
||||
cancel:"Prekli\u010Di",
|
||||
close:"Zapri",
|
||||
browse:"Prebrskaj",
|
||||
class_name:"Razred",
|
||||
not_set:"-- ni nastavljeno --",
|
||||
clipboard_msg:"Delo z odlo\u017Ei\u0161\u010Dem ni mogo\u010De v tem brskalniku. Lahko uporabljate kombinacije tipk Ctrl+X, Ctrl+C, Ctrl+V.\n\u017Delite ve\u010D informacij o tem?",
|
||||
clipboard_no_support:"Trenutno ni podporto v va\u0161em brskalniku. Uporabite bli\u017Enjice tipkovnice.",
|
||||
popup_blocked:"\u017Dal va\u0161e orodje za prepre\u010Devanje odpiranja neza\u017Eelenih oken (popup-blocker) ne omogo\u010Da prikaza pomo\u017Enega okna izbranega orodja. Prepre\u010Devanje odpiranja oken morate onemogo\u010Diti.",
|
||||
invalid_data:"Napaka: vne\u0161ene so bile nepravilne vrednosti, ozna\u010Dene so z rde\u010Do.",
|
||||
more_colors:"Ve\u010D barv"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Poravnava",
|
||||
left:"Levo",
|
||||
center:"Sredina",
|
||||
right:"Desno",
|
||||
full:"Polno"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Vstavi datum",
|
||||
inserttime_desc:"Vstavi \u010Das",
|
||||
months_long:"januar,februar,marec,april,maj,junij,julij,avgust,september,oktober,november,december",
|
||||
months_short:"jan,feb,mar,apr,maj,jun,jul,avg,sep,okt,nov,dec",
|
||||
day_long:"nedelja,ponedeljek,torek,sreda,\u010Detrtek,petek,sobota,nedelja",
|
||||
day_short:"ned,pon,tor,sre,\u010Det,pet,sob,ned"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Natisni"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Predogled"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Smer od leve proti desni",
|
||||
rtl_desc:"Smer od desne proti levi"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Vstavi nov sloj",
|
||||
forward_desc:"Premakni v ospredje",
|
||||
backward_desc:"Premakni v ozadje",
|
||||
absolute_desc:"Preklop absolutnega polo\u017Eaja",
|
||||
content:"Nov sloj..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Shrani",
|
||||
cancel_desc:"Prekli\u010Di vse spremembe"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Vstavi nedeljivi presledek"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Za\u017Eeni preverjanje \u010Drkovanja",
|
||||
download:"ieSpell ni zaznan. \u017Delite, da ga namestim?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodoravna \u010Drta"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Sme\u0161ki"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Najdi",
|
||||
replace_desc:"Najdi/zamenjaj"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Vstavi/uredi sliko"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Vstavi/uredi povezavo"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Okraj\u0161ava",
|
||||
acronym_desc:"Kratica",
|
||||
del_desc:"Izbrisano",
|
||||
ins_desc:"Vstavljeno",
|
||||
attribs_desc:"Vstavi/uredi atribute"
|
||||
},
|
||||
style:{
|
||||
desc:"Uredi sloge CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Prilepi kot golo besedilo",
|
||||
paste_word_desc:"Prilepi iz Word-a",
|
||||
selectall_desc:"Izberi vse",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.",
|
||||
text_linebreaks:"Obdr\u017Ei prelome vrstic",
|
||||
word_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno."
|
||||
},
|
||||
table:{
|
||||
desc:"Vstavi/posodobi tabelo",
|
||||
row_before_desc:"Vstavi vrstico nad",
|
||||
row_after_desc:"Vstavi vrstico pod",
|
||||
delete_row_desc:"Odstrani vrstico",
|
||||
col_before_desc:"Vstavi stolpec pred",
|
||||
col_after_desc:"Vstavi stolpec po",
|
||||
delete_col_desc:"Odstrani stolpec",
|
||||
split_cells_desc:"Razcepi celico",
|
||||
merge_cells_desc:"Spoji celice",
|
||||
row_desc:"Lastnosti vrstice",
|
||||
cell_desc:"Lastnosti celice",
|
||||
props_desc:"Lastnosti tabele",
|
||||
paste_row_before_desc:"Prilepi vrstico pred",
|
||||
paste_row_after_desc:"Prilepi vrstico po",
|
||||
cut_row_desc:"Izre\u017Ei vrstico",
|
||||
copy_row_desc:"Kopiraj vrstico",
|
||||
del:"Odstrani tabelo",
|
||||
row:"Vrstica",
|
||||
col:"Stolpec",
|
||||
cell:"Celica",
|
||||
cellprops_delta_width:"100"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Ce se premaknete na drugo stran, bodo narejene spremembe izgubljene!",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Preklopi celozaslonski na\u010Din"
|
||||
},
|
||||
media:{
|
||||
desc:"Vstavi / uredi multimedijsko vsebino",
|
||||
edit:"Uredi multimedijsko vsebino"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Lastnosti dokumenta"
|
||||
},
|
||||
template:{
|
||||
desc:"Vstavi pripravljeno vsebino predloge"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Preklopi prikaz nadzornih znakov."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Preklopi \u010Drkovalnik",
|
||||
menu:"Nastavitve \u010Drkovalnika",
|
||||
ignore_word:"Prezri besedo",
|
||||
ignore_words:"Prezri vse",
|
||||
langs:"Jeziki",
|
||||
wait:"Prosim po\u010Dakaj...",
|
||||
sug:"Predlogi",
|
||||
no_sug:"Ni predlogov",
|
||||
no_mpell:"Napa\u010Dnega \u010Drkovanja nisem na\u0161el."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Vstavi lom strani."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/sq.js
Normal file
170
htdocs/resource2/tinymce/langs/sq.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({sq:{
|
||||
common:{
|
||||
edit_confirm:"Doni t\u00EB p\u00EBrdorni m\u00EBnyr\u00EBn WYSIWYG p\u00EBr k\u00EBt\u00EB tekst?",
|
||||
apply:"Zbato",
|
||||
insert:"Fut",
|
||||
update:"Rifresko",
|
||||
cancel:"Anulo",
|
||||
close:"Mbyll",
|
||||
browse:"Shfleto",
|
||||
class_name:"Klasa",
|
||||
not_set:"-- pa v\u00EBn\u00EB --",
|
||||
clipboard_msg:"Kopja/Prerja/Ngjitja nuk suportohen n\u00EB Mozilla dhe Firefox.\nD\u00EBshironi m\u00EB shum\u00EB informacione p\u00EBr k\u00EBt\u00EB \u00E7\u00EBshtje?",
|
||||
clipboard_no_support:"Aktualisht nuk suportohet nga Shfletuesi juaj, p\u00EBrdorni tastjer\u00EBn.",
|
||||
popup_blocked:"Ju k\u00EBrkojm\u00EB ndjes\u00EB, por bllokuesi i popup-eve ka bllokuar nj\u00EB dritare q\u00EB ofron funksjonalitet p\u00EBr programin. Duhet t'a \u00E7aktivizoni bllokuesin e popup-eve n\u00EB m\u00EBnyr\u00EB q\u00EB t'i p\u00EBrdorni opsionet.",
|
||||
invalid_data:"Gabim: Keni futur vlera t\u00EB pavlefshme, t\u00EB cilat jan\u00EB sh\u00EBnuar me t\u00EB kuqe.",
|
||||
more_colors:"M\u00EB shum\u00EB ngjyra"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Drejtimi",
|
||||
left:"Majtas",
|
||||
center:"Qend\u00EBr",
|
||||
right:"Djathtas",
|
||||
full:"I Plot\u00EB"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Fut dat\u00EBn",
|
||||
inserttime_desc:"Fut or\u00EBn",
|
||||
months_long:"Janar,Shkurt,Mars,Prill,Maj,Qershor,Korrik,Gusht,Shtator,Tetor,N\u00EBntor,Dhjetor",
|
||||
months_short:"Jan,Shk,Mar,Pri,Maj,Qer,Kor,Gus,Sht,Tet,N\u00EBn,Dhj",
|
||||
day_long:"E Djel\u00EB,E H\u00EBn\u00EB,E Mart\u00EB,E M\u00EBrkur\u00EB,E Enjte,E Premte,E Shtun\u00EB,E Djel\u00EB",
|
||||
day_short:"Dje,H\u00EBn,Mar,M\u00EBr,Enj,Pre,Sht,Dje"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Printo"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Paraqitje"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Drejtimi majtas-djathtas",
|
||||
rtl_desc:"Drejtimi djathtas-majtas"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Fut shtres\u00EB t\u00EB re",
|
||||
forward_desc:"L\u00EBviz para",
|
||||
backward_desc:"L\u00EBviz prapa",
|
||||
absolute_desc:"Aktivizo/\u00E7aktivizo pozicionimin absolut",
|
||||
content:"Shtres\u00EB e re..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Ruaj",
|
||||
cancel_desc:"Anuloji t\u00EB gjitha ndryshimet"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Fut hap\u00EBsir\u00EB"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Kontrollo p\u00EBr gabime drejt\u00EBshkrimore",
|
||||
download:"ieSpell nuk u detektua. D\u00EBshironi ta instaloni?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Linj\u00EB horizontale"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emocionet"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"K\u00EBrko",
|
||||
replace_desc:"K\u00EBrko/Z\u00EBvend\u00EBso"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Fut/edito foto"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Fut/edito lidhje"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Shkurtim",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Fshirje",
|
||||
ins_desc:"Futje",
|
||||
attribs_desc:"Fut/Edito Tipare"
|
||||
},
|
||||
style:{
|
||||
desc:"Edito Stilet CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Ngjit si Tekst",
|
||||
paste_word_desc:"Ngjit nga Word",
|
||||
selectall_desc:"Zgjidhi t\u00EB gjitha",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin.",
|
||||
text_linebreaks:"Ruaj linjat e reja",
|
||||
word_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin."
|
||||
},
|
||||
table:{
|
||||
desc:"Fut nj\u00EB tabel\u00EB t\u00EB re",
|
||||
row_before_desc:"Fut rresht p\u00EBrpara",
|
||||
row_after_desc:"Fut rresht pas",
|
||||
delete_row_desc:"Fshi rreshtin",
|
||||
col_before_desc:"Fut kolon\u00EB p\u00EBrpara",
|
||||
col_after_desc:"Fut kolon\u00EB pas",
|
||||
delete_col_desc:"Fshi kolon\u00EBn",
|
||||
split_cells_desc:"Ndaji qelizat e bashkuara",
|
||||
merge_cells_desc:"Bashkoji qelizat",
|
||||
row_desc:"Tiparet e rreshtit",
|
||||
cell_desc:"Tiparet e qeliz\u00EBs",
|
||||
props_desc:"Tiparet e tabel\u00EBs",
|
||||
paste_row_before_desc:"Ngjite rreshtin p\u00EBrpara",
|
||||
paste_row_after_desc:"Ngjite rreshtin pas",
|
||||
cut_row_desc:"Prit rreshtin",
|
||||
copy_row_desc:"Kopjo rreshtin",
|
||||
del:"Fshi tabel\u00EBn",
|
||||
row:"Rresht",
|
||||
col:"Kolon\u00EB",
|
||||
cell:"Qeliz\u00EB"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Ndryshimet q\u00EB keni b\u00EBr\u00EB do t\u00EB humbasin n\u00EBse largoheni nga kjo faqe.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Aktivizo/\u00E7aktivizo pamjen e plot\u00EB"
|
||||
},
|
||||
media:{
|
||||
desc:"Fut / edito media",
|
||||
edit:"Edito media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Tiparet e dokumentit"
|
||||
},
|
||||
template:{
|
||||
desc:"Fut p\u00EBrmbajtje shabllon"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Karakteret e kontrollit vizual: on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Aktivizo/\u00E7aktivizo kontrolluesin e gabimeve",
|
||||
menu:"Tiparet e kontrolluesit t\u00EB gabimeve",
|
||||
ignore_word:"Injoro fjal\u00EBn",
|
||||
ignore_words:"Injoroji t\u00EB gjitha",
|
||||
langs:"Gjuh\u00EBt",
|
||||
wait:"Ju lutem prisni...",
|
||||
sug:"Sygjerimet",
|
||||
no_sug:"Asnj\u00EB sygjerim",
|
||||
no_mpell:"Nuk u gjet asnj\u00EB gabim."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Fut thyerje faqeje."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/sr.js
Normal file
170
htdocs/resource2/tinymce/langs/sr.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({sr:{
|
||||
common:{
|
||||
edit_confirm:"\u017Delite li koristiti WYSIWYG na\u010Din rada za ovo tekstualno polje?",
|
||||
apply:"Primjeni",
|
||||
insert:"Ubaci",
|
||||
update:"Obnovi",
|
||||
cancel:"Odustani",
|
||||
close:"Zatvori",
|
||||
browse:"Pregled",
|
||||
class_name:"Klasa",
|
||||
not_set:"-- Nije postavljeno --",
|
||||
clipboard_msg:"Kopiraj/Izre\u017Ei/Zalepi nije dostupno Mozilla i Firefox preglednicima.\nVi\u0161e informacija?",
|
||||
clipboard_no_support:"Trenuta\u010Dno va\u0161 preglednik ne podr\u017Eava ovu opciju, poku\u0161ajte koristiti tipkovni\u010Dku kraticu.",
|
||||
popup_blocked:"Oprostite, izgleda da je va\u0161 popup-blocker onemogu\u0107io prozor u sklopu ovog programa. Morate onemogu\u0107iti blokiranje popup prozora da bi u potpunosti iskoristili ovaj alat.",
|
||||
invalid_data:"Gre\u0161ka: Une\u0161ene su nevaljane vrednosti, ozna\u010Dene su crvenom bojom.",
|
||||
more_colors:"Vi\u0161e boja"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Poravnavanje",
|
||||
left:"Levo",
|
||||
center:"Sredina",
|
||||
right:"Desno",
|
||||
full:"Puno"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y.",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Umetni datum",
|
||||
inserttime_desc:"Umetni vreme",
|
||||
months_long:"januar,februar,mart,april,maj,juni,juli,avgust,septembar,oktobar,novembar,decembar",
|
||||
months_short:"jan,feb,mar,apr,maj,jun,jul,avg,sep,okt,nov,dec",
|
||||
day_long:"nedelja,ponedjeljak,utorak,sreda,\u010Detvrtak,petak,subota,nedelja",
|
||||
day_short:"ned,pon,uto,sre,\u010Det,pet,sub,ned"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Ispis"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Prikaz"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"S leva na desno",
|
||||
rtl_desc:"S desna na levo"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Umetni novi sloj",
|
||||
forward_desc:"Pomakni napred",
|
||||
backward_desc:"Pomakni natrag",
|
||||
absolute_desc:"Uklju\u010Di/isklju\u010Di apsolutno pozicioniranje",
|
||||
content:"Novi sloj..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Spremi",
|
||||
cancel_desc:"Odustani od svih promjena"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Umetni razmak"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Pokreni provjeru pravopisa",
|
||||
download:"Provjera pravopisa nije postavljena. Postaviti sada?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Vodoravna crta"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emocije"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Prona\u0111i",
|
||||
replace_desc:"Prona\u0111i/Zameni"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Umetni/uredi sliku"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citat",
|
||||
abbr_desc:"Kratica",
|
||||
acronym_desc:"Akronim",
|
||||
del_desc:"Brisanje",
|
||||
ins_desc:"Unos",
|
||||
attribs_desc:"Umetni/uredi atribute"
|
||||
},
|
||||
style:{
|
||||
desc:"Uredi CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Zalepi kao obi\u010Dni tekst",
|
||||
paste_word_desc:"Zalepi iz Worda",
|
||||
selectall_desc:"Odaberi sve",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.",
|
||||
text_linebreaks:"Zadr\u017Ei prelome",
|
||||
word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor."
|
||||
},
|
||||
table:{
|
||||
desc:"Nova tablica",
|
||||
row_before_desc:"Umetni redak iznad",
|
||||
row_after_desc:"Umetni redak ispod",
|
||||
delete_row_desc:"Izbri\u0161i redak",
|
||||
col_before_desc:"Umetni stupac levo",
|
||||
col_after_desc:"Umetni stupac desno",
|
||||
delete_col_desc:"Ukloni stupac",
|
||||
split_cells_desc:"Razdvoji spojene \u0107elije",
|
||||
merge_cells_desc:"Spoji \u0107elije",
|
||||
row_desc:"Svojstva retka",
|
||||
cell_desc:"Svojstva \u0107elije",
|
||||
props_desc:"Svojstva tablice",
|
||||
paste_row_before_desc:"Zalepi redak iznad",
|
||||
paste_row_after_desc:"Zalepi redak ispod",
|
||||
cut_row_desc:"Izre\u017Ei redak",
|
||||
copy_row_desc:"Kopiraj redak",
|
||||
del:"Izbri\u0161i tablicu",
|
||||
row:"Redak",
|
||||
col:"Stupac",
|
||||
cell:"\u0106elija"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Promjene u dokumentu \u0107e biti izgubljene ako iza\u0111ete s ove stranice.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di prikaz preko celog ekrana"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Svojstva dokumenta"
|
||||
},
|
||||
template:{
|
||||
desc:"Umetni sadr\u017Eaj iz predlo\u017Eak"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Vizuelni kontrolni znakovi uklju\u010Deni/isklju\u010Deni."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Uklju\u010Di/isklju\u010Di provjeru pravopisa",
|
||||
menu:"Postavke provere pravopisa",
|
||||
ignore_word:"Zanemari re\u010D",
|
||||
ignore_words:"Zanemari sve",
|
||||
langs:"Jezici",
|
||||
wait:"Pri\u010Dekajte...",
|
||||
sug:"Predlozi",
|
||||
no_sug:"Nema predloga",
|
||||
no_mpell:"Nije prona\u0111ena nijedna pravopisna gre\u0161ka."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Umetni prelom."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/sv.js
Normal file
170
htdocs/resource2/tinymce/langs/sv.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({sv:{
|
||||
common:{
|
||||
edit_confirm:"Vill du anv\u00E4nda WYSIWYG f\u00F6r denna textarea?",
|
||||
apply:"Applicera",
|
||||
insert:"Infoga",
|
||||
update:"Uppdatera",
|
||||
cancel:"Avbryt",
|
||||
close:"St\u00E4ng",
|
||||
browse:"Bl\u00E4ddra",
|
||||
class_name:"Klass",
|
||||
not_set:"-- Inte satt --",
|
||||
clipboard_msg:"Kopiera/klipp ut/klistra in \u00E4r inte tillg\u00E4ngligt i din webbl\u00E4sare.\nVill du veta mer?",
|
||||
clipboard_no_support:"Funktionen \u00E4r inte tillg\u00E4nglig i din webbl\u00E4sare, anv\u00E4nd tangentbordsgenv\u00E4garna i st\u00E4llet.",
|
||||
popup_blocked:"Popup blockerare detekterad. St\u00E4ng av den s\u00E5 att dialogerna kan \u00F6ppnas.",
|
||||
invalid_data:"Fel: Inkorrekta v\u00E4rden har matats in, dessa \u00E4r markerade i r\u00F6tt.",
|
||||
more_colors:"Fler f\u00E4rger"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Justering",
|
||||
left:"V\u00E4nster",
|
||||
center:"Centrerad",
|
||||
right:"H\u00F6ger",
|
||||
full:"Utfyllnad"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d ",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Infoga datum",
|
||||
inserttime_desc:"Infoga tid",
|
||||
months_long:"Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec",
|
||||
day_long:"S\u00F6ndag,M\u00E5ndag,Tisdag,Onsdag,Torsdag,Fredag,L\u00F6rdag,S\u00F6ndag",
|
||||
day_short:"S\u00F6n,M\u00E5n,Tis,Ons,Tors,Fre,L\u00F6r,S\u00F6n"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Skriv ut"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"F\u00F6rhandsgranska"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Skriftl\u00E4ge - v\u00E4nster till h\u00F6ger",
|
||||
rtl_desc:"Skriftl\u00E4ge - h\u00F6ger till v\u00E4nster"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Infoga nytt lager",
|
||||
forward_desc:"Flytta fram\u00E5t",
|
||||
backward_desc:"Flytta bak\u00E5t",
|
||||
absolute_desc:"Sl\u00E5 av/p\u00E5 absolut positionering",
|
||||
content:"Nytt lager..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Spara",
|
||||
cancel_desc:"Hoppa \u00F6ver alla f\u00F6r\u00E4ndringar"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Infoga icke radbrytande mellanslag"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"R\u00E4ttstava",
|
||||
download:"ieSpell kunde inte hittas, vill du installera denna nu?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horisontell skiljelinje"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Smileys"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"S\u00F6k",
|
||||
replace_desc:"S\u00F6k/ers\u00E4tt"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Infoga/redigera bild"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Infoga/redigera l\u00E4nk"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"citat",
|
||||
abbr_desc:"F\u00F6rkortning",
|
||||
acronym_desc:"Akronym",
|
||||
del_desc:"Markera som struket",
|
||||
ins_desc:"Markera som tillagt",
|
||||
attribs_desc:"Redigera attribut"
|
||||
},
|
||||
style:{
|
||||
desc:"Redigera inline CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Klistra in som text",
|
||||
paste_word_desc:"Klistra in fr\u00E5n Word",
|
||||
selectall_desc:"Markera allt",
|
||||
plaintext_mode_sticky:"Inklistring \u00E4r nu i textl\u00E4ge. Efter att du klistrat in kommer den att \u00E5terg\u00E5 till normall\u00E4ge.",
|
||||
plaintext_mode:"Inklistring \u00E4r nu i textl\u00E4ge."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.",
|
||||
text_linebreaks:"Spara radbrytningar",
|
||||
word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster."
|
||||
},
|
||||
table:{
|
||||
desc:"Infoga/redigera ny tabell",
|
||||
row_before_desc:"Infoga ny rad f\u00F6re",
|
||||
row_after_desc:"Infoga ny rad efter",
|
||||
delete_row_desc:"Radera rad",
|
||||
col_before_desc:"Infoga kolumn f\u00F6re",
|
||||
col_after_desc:"Infoga kolumn efter",
|
||||
delete_col_desc:"Radera kolumn",
|
||||
split_cells_desc:"Separera sammansatta celler",
|
||||
merge_cells_desc:"Sammanfoga celler",
|
||||
row_desc:"Tabellradsinst\u00E4llningar",
|
||||
cell_desc:"Tabellcellsinst\u00E4llningar",
|
||||
props_desc:"Tabellinst\u00E4llningar",
|
||||
paste_row_before_desc:"Klistra in rad ovanf\u00F6r",
|
||||
paste_row_after_desc:"Klistra in rad efter",
|
||||
cut_row_desc:"Klipp ut rad",
|
||||
copy_row_desc:"Klistra in rad",
|
||||
del:"Radera tabell",
|
||||
row:"Rad",
|
||||
col:"Kolumn",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"De f\u00F6r\u00E4ndringar som du gjort kommer att g\u00E5 f\u00F6rlorade om du l\u00E4mnar sidan.",
|
||||
restore_content:"\u00C5terskapa automatiskt sparat inneh\u00E5ll.",
|
||||
warning_message:"Om du \u00E5terskapar inneh\u00E5ll s\u00E5 kommer det nuvarande inneh\u00E5llet i f\u00E4ltet att raderas.\n\n\u00C4r du s\u00E4ker p\u00E5 att du vill g\u00F6ra detta?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Sl\u00E5 av/p\u00E5 fullsk\u00E4rmsl\u00E4ge"
|
||||
},
|
||||
media:{
|
||||
desc:"Infoga/redigera inb\u00E4ddad media",
|
||||
edit:"Redigera inb\u00E4ddad media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Dokumentinst\u00E4llningar"
|
||||
},
|
||||
template:{
|
||||
desc:"Infoga en f\u00E4rdig mall"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visa osynliga tecken"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Sl\u00E5 av/p\u00E5 r\u00E4ttstavningskontroll",
|
||||
menu:"R\u00E4ttstavningsinst\u00E4llningar",
|
||||
ignore_word:"Ignorera ord",
|
||||
ignore_words:"Ignorera alla",
|
||||
langs:"Spr\u00E5k",
|
||||
wait:"Var god v\u00E4nta...",
|
||||
sug:"F\u00F6rslag",
|
||||
no_sug:"Inga f\u00F6rslag",
|
||||
no_mpell:"Inga felstavningar funna."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Infoga sidbrytning"
|
||||
},
|
||||
advlist:{
|
||||
types:"Typer",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Cirkel",
|
||||
disc:"Disc",
|
||||
square:"Fyrkant"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ta.js
Normal file
170
htdocs/resource2/tinymce/langs/ta.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ta:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/te.js
Normal file
170
htdocs/resource2/tinymce/langs/te.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({te:{
|
||||
common:{
|
||||
edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
|
||||
apply:"Apply",
|
||||
insert:"Insert",
|
||||
update:"Update",
|
||||
cancel:"Cancel",
|
||||
close:"Close",
|
||||
browse:"Browse",
|
||||
class_name:"Class",
|
||||
not_set:"-- Not set --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/th.js
Normal file
170
htdocs/resource2/tinymce/langs/th.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({th:{
|
||||
common:{
|
||||
edit_confirm:"\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E42\u0E2B\u0E21\u0E14 WYSIWYG \u0E43\u0E19\u0E01\u0E32\u0E23\u0E40\u0E02\u0E35\u0E22\u0E19\u0E1A\u0E17\u0E04\u0E27\u0E32\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48 ?",
|
||||
apply:"\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19",
|
||||
insert:"\u0E40\u0E1E\u0E34\u0E48\u0E21",
|
||||
update:"\u0E2D\u0E31\u0E1E\u0E40\u0E14\u0E15",
|
||||
cancel:"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01",
|
||||
close:"\u0E1B\u0E34\u0E14",
|
||||
browse:"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E44\u0E1F\u0E25\u0E4C",
|
||||
class_name:"css \u0E04\u0E25\u0E32\u0E2A",
|
||||
not_set:"-- \u0E44\u0E21\u0E48\u0E44\u0E14\u0E49\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32 --",
|
||||
clipboard_msg:"\u0E04\u0E31\u0E14\u0E25\u0E2D\u0E01 / \u0E15\u0E31\u0E14 / \u0E27\u0E32\u0E07\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E21\u0E35\u0E43\u0E2B\u0E49\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23\u0E43\u0E19 Mozilla \u0E41\u0E25\u0E30 Firefox.\nDo \u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21\u0E40\u0E01\u0E35\u0E48\u0E22\u0E27\u0E01\u0E31\u0E1A\u0E1B\u0E31\u0E0D\u0E2B\u0E32\u0E19\u0E35\u0E49\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48?",
|
||||
clipboard_no_support:"\u0E02\u0E13\u0E30\u0E19\u0E35\u0E49\u0E22\u0E31\u0E07\u0E44\u0E21\u0E48\u0E2A\u0E19\u0E31\u0E1A\u0E2A\u0E19\u0E38\u0E19\u0E40\u0E1A\u0E23\u0E32\u0E40\u0E0B\u0E2D\u0E23\u0E4C\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E41\u0E1B\u0E49\u0E19\u0E1E\u0E34\u0E21\u0E1E\u0E4C\u0E25\u0E31\u0E14\u0E41\u0E17\u0E19",
|
||||
popup_blocked:"\u0E02\u0E2D\u0E2D\u0E20\u0E31\u0E22\u0E41\u0E15\u0E48\u0E40\u0E23\u0E32\u0E1E\u0E1A\u0E27\u0E48\u0E32\u0E04\u0E38\u0E13\u0E21\u0E35\u0E23\u0E30\u0E1A\u0E1A\u0E1B\u0E49\u0E2D\u0E07\u0E01\u0E31\u0E19\u0E1B\u0E4A\u0E2D\u0E1B\u0E2D\u0E31\u0E1B \u0E04\u0E38\u0E13\u0E08\u0E30\u0E15\u0E49\u0E2D\u0E07\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E07\u0E32\u0E19\u0E01\u0E32\u0E23\u0E1A\u0E25\u0E47\u0E2D\u0E04\u0E1B\u0E4A\u0E2D\u0E1B\u0E2D\u0E31\u0E1B",
|
||||
invalid_data:"\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1E\u0E25\u0E32\u0E14: \u0E1B\u0E49\u0E2D\u0E19\u0E04\u0E48\u0E32\u0E43\u0E19\u0E0A\u0E49\u0E2D\u0E07\u0E2A\u0E35\u0E41\u0E14\u0E07\u0E43\u0E2B\u0E49\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07",
|
||||
more_colors:"\u0E2A\u0E35\u0E2D\u0E37\u0E48\u0E19\u0E46"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07\u0E08\u0E31\u0E14\u0E27\u0E32\u0E07",
|
||||
left:"\u0E0B\u0E49\u0E32\u0E22",
|
||||
center:"\u0E01\u0E25\u0E32\u0E07",
|
||||
right:"\u0E02\u0E27\u0E32",
|
||||
full:"\u0E40\u0E15\u0E47\u0E21"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0E41\u0E17\u0E23\u0E01\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48",
|
||||
inserttime_desc:"\u0E41\u0E17\u0E23\u0E01\u0E40\u0E27\u0E25\u0E32",
|
||||
months_long:"\u0E21\u0E01\u0E23\u0E32\u0E04\u0E21,\u0E01\u0E38\u0E21\u0E20\u0E32\u0E1E\u0E31\u0E19\u0E18\u0E4C,\u0E21\u0E35\u0E19\u0E32\u0E04\u0E21,\u0E40\u0E21\u0E29\u0E32\u0E22\u0E19,\u0E1E\u0E24\u0E29\u0E20\u0E32\u0E04\u0E21,\u0E21\u0E34\u0E16\u0E38\u0E19\u0E32\u0E22\u0E19,\u0E01\u0E23\u0E01\u0E0E\u0E32\u0E04\u0E21,\u0E2A\u0E34\u0E07\u0E2B\u0E32\u0E04\u0E21,\u0E01\u0E31\u0E19\u0E22\u0E32\u0E22\u0E19,\u0E15\u0E38\u0E25\u0E32\u0E04\u0E21,\u0E1E\u0E24\u0E28\u0E08\u0E34\u0E01\u0E32\u0E22\u0E19,\u0E18\u0E31\u0E19\u0E27\u0E32\u0E04\u0E21",
|
||||
months_short:"\u0E21.\u0E04.,\u0E01.\u0E1E.,\u0E21\u0E35.\u0E04.,\u0E40\u0E21.\u0E22.,\u0E1E.\u0E04.,\u0E21\u0E34.\u0E22.,\u0E01.\u0E04.,\u0E2A.\u0E04.,\u0E01.\u0E22.,\u0E15.\u0E04.,\u0E1E.\u0E22.,\u0E18.\u0E04.",
|
||||
day_long:"\u0E27\u0E31\u0E19\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C,\u0E27\u0E31\u0E19\u0E08\u0E31\u0E19\u0E17\u0E23\u0E4C,\u0E27\u0E31\u0E19\u0E2D\u0E31\u0E07\u0E04\u0E32\u0E23,\u0E27\u0E31\u0E19\u0E1E\u0E38\u0E18,\u0E27\u0E31\u0E19\u0E1E\u0E24\u0E2B\u0E31\u0E2A\u0E1A\u0E14\u0E35,\u0E27\u0E31\u0E19\u0E28\u0E38\u0E01\u0E23\u0E4C,\u0E27\u0E31\u0E19\u0E40\u0E2A\u0E32\u0E23\u0E4C,\u0E2D\u0E32\u0E17\u0E34\u0E15\u0E22\u0E4C",
|
||||
day_short:"\u0E2D\u0E32,\u0E08,\u0E2D\u0E31\u0E07,\u0E1E,\u0E1E\u0E24,\u0E28,\u0E2A,\u0E2D"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0E1E\u0E34\u0E21\u0E1E\u0E4C"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u0E14\u0E39\u0E15\u0E31\u0E27\u0E2D\u0E22\u0E48\u0E32\u0E07"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u0E2D\u0E48\u0E32\u0E19\u0E08\u0E32\u0E01\u0E0B\u0E49\u0E32\u0E22\u0E44\u0E1B\u0E02\u0E27\u0E32",
|
||||
rtl_desc:"\u0E2D\u0E48\u0E32\u0E19\u0E08\u0E32\u0E01\u0E02\u0E27\u0E32\u0E44\u0E1B\u0E0B\u0E49\u0E32\u0E22"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E25\u0E40\u0E22\u0E2D\u0E23\u0E4C\u0E43\u0E2B\u0E21\u0E48",
|
||||
forward_desc:"\u0E22\u0E49\u0E32\u0E22\u0E44\u0E1B\u0E02\u0E49\u0E32\u0E07\u0E2B\u0E19\u0E49\u0E32",
|
||||
backward_desc:"\u0E22\u0E49\u0E32\u0E22\u0E44\u0E1B\u0E02\u0E49\u0E32\u0E07\u0E2B\u0E25\u0E31\u0E07",
|
||||
absolute_desc:"\u0E2A\u0E25\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E27\u0E32\u0E07",
|
||||
content:"\u0E40\u0E25\u0E40\u0E22\u0E2D\u0E23\u0E4C\u0E43\u0E2B\u0E21\u0E48..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01",
|
||||
cancel_desc:"\u0E22\u0E01\u0E40\u0E25\u0E34\u0E01\u0E17\u0E38\u0E01\u0E2D\u0E22\u0E48\u0E32\u0E07"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0E41\u0E17\u0E23\u0E01\u0E2D\u0E31\u0E01\u0E02\u0E23\u0E30\u0E27\u0E48\u0E32\u0E07"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0E40\u0E23\u0E35\u0E22\u0E01\u0E43\u0E0A\u0E49\u0E15\u0E23\u0E27\u0E08\u0E01\u0E32\u0E23\u0E2A\u0E30\u0E01\u0E14",
|
||||
download:"\u0E2B\u0E32\u0E01\u0E23\u0E30\u0E1A\u0E1A\u0E15\u0E23\u0E27\u0E08\u0E2A\u0E2D\u0E1A\u0E04\u0E33\u0E1C\u0E34\u0E14\u0E44\u0E21\u0E48\u0E1E\u0E1A \u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E15\u0E34\u0E14\u0E15\u0E31\u0E49\u0E07\u0E40\u0E14\u0E35\u0E4B\u0E22\u0E27\u0E19\u0E35\u0E49 ?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0E40\u0E2A\u0E49\u0E19\u0E1A\u0E23\u0E23\u0E17\u0E31\u0E14"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0E44\u0E2D\u0E04\u0E2D\u0E19\u0E41\u0E2A\u0E14\u0E07\u0E2D\u0E32\u0E23\u0E21\u0E13\u0E4C"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0E04\u0E49\u0E19\u0E2B\u0E32",
|
||||
replace_desc:"\u0E04\u0E49\u0E19\u0E2B\u0E32/\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21/\u0E41\u0E01\u0E49\u0E44\u0E02 \u0E23\u0E39\u0E1B"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21/\u0E41\u0E01\u0E49\u0E44\u0E02 \u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0E01\u0E32\u0E23\u0E2D\u0E49\u0E32\u0E07\u0E2D\u0E34\u0E07",
|
||||
abbr_desc:"\u0E15\u0E31\u0E27\u0E22\u0E48\u0E2D",
|
||||
acronym_desc:"\u0E2D\u0E31\u0E01\u0E29\u0E23\u0E22\u0E48\u0E2D",
|
||||
del_desc:"\u0E25\u0E1A",
|
||||
ins_desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21",
|
||||
attribs_desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21/\u0E41\u0E01\u0E49\u0E44\u0E02 \u0E41\u0E2D\u0E17\u0E17\u0E23\u0E34\u0E1A\u0E34\u0E27"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0E41\u0E01\u0E49\u0E44\u0E02 CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u0E27\u0E32\u0E07\u0E42\u0E14\u0E22\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E18\u0E23\u0E23\u0E21\u0E14\u0E32",
|
||||
paste_word_desc:"\u0E27\u0E32\u0E07\u0E08\u0E32\u0E01\u0E42\u0E1B\u0E23\u0E41\u0E01\u0E23\u0E21 Word",
|
||||
selectall_desc:"\u0E40\u0E25\u0E37\u0E2D\u0E01\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"\u0E41\u0E17\u0E23\u0E01\u0E41\u0E16\u0E27\u0E08\u0E32\u0E01\u0E02\u0E49\u0E32\u0E07\u0E2B\u0E19\u0E49\u0E32",
|
||||
row_after_desc:"\u0E41\u0E17\u0E23\u0E01\u0E41\u0E16\u0E27\u0E08\u0E32\u0E01\u0E02\u0E49\u0E32\u0E07\u0E2B\u0E25\u0E31\u0E07",
|
||||
delete_row_desc:"\u0E25\u0E1A\u0E41\u0E16\u0E27",
|
||||
col_before_desc:"\u0E41\u0E17\u0E23\u0E01\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E08\u0E32\u0E01\u0E02\u0E49\u0E32\u0E07\u0E2B\u0E19\u0E49\u0E32",
|
||||
col_after_desc:"\u0E41\u0E17\u0E23\u0E01\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C\u0E08\u0E32\u0E01\u0E02\u0E49\u0E32\u0E07\u0E2B\u0E25\u0E31\u0E07",
|
||||
delete_col_desc:"\u0E25\u0E1A\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"\u0E25\u0E1A\u0E15\u0E32\u0E23\u0E32\u0E07",
|
||||
row:"\u0E41\u0E16\u0E27",
|
||||
col:"\u0E04\u0E2D\u0E25\u0E31\u0E21\u0E19\u0E4C",
|
||||
cell:"\u0E40\u0E0B\u0E25\u0E25\u0E4C"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E1B\u0E25\u0E07\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E17\u0E33\u0E08\u0E30\u0E2B\u0E32\u0E22\u0E44\u0E1B\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E2D\u0E2D\u0E01\u0E08\u0E32\u0E01\u0E2B\u0E19\u0E49\u0E32\u0E19\u0E35\u0E49",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u0E2A\u0E25\u0E31\u0E1A\u0E44\u0E1B\u0E41\u0E2A\u0E14\u0E07\u0E41\u0E1A\u0E1A\u0E40\u0E15\u0E47\u0E21\u0E2B\u0E19\u0E49\u0E32"
|
||||
},
|
||||
media:{
|
||||
desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21 / \u0E41\u0E01\u0E49\u0E44\u0E02 \u0E21\u0E35\u0E40\u0E14\u0E35\u0E22",
|
||||
edit:"\u0E41\u0E01\u0E49\u0E44\u0E02\u0E21\u0E35\u0E40\u0E14\u0E35\u0E22"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0E04\u0E38\u0E13\u0E2A\u0E21\u0E1A\u0E31\u0E15\u0E34\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E41\u0E21\u0E48\u0E41\u0E1A\u0E1A\u0E40\u0E2D\u0E01\u0E2A\u0E32\u0E23"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23 \u0E40\u0E1B\u0E34\u0E14/\u0E1B\u0E34\u0E14"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u0E1B\u0E34\u0E14\u0E01\u0E32\u0E23\u0E2A\u0E30\u0E01\u0E14\u0E04\u0E33",
|
||||
menu:"\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E01\u0E32\u0E23\u0E2A\u0E30\u0E01\u0E14\u0E04\u0E33",
|
||||
ignore_word:"\u0E25\u0E30\u0E40\u0E27\u0E49\u0E19\u0E1A\u0E32\u0E07\u0E04\u0E33",
|
||||
ignore_words:"\u0E25\u0E30\u0E40\u0E27\u0E49\u0E19\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14",
|
||||
langs:"\u0E20\u0E32\u0E29\u0E32",
|
||||
wait:"\u0E42\u0E1B\u0E23\u0E14\u0E23\u0E2D...",
|
||||
sug:"\u0E04\u0E33\u0E41\u0E19\u0E30\u0E19\u0E33",
|
||||
no_sug:"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E04\u0E33\u0E41\u0E19\u0E30\u0E19\u0E33",
|
||||
no_mpell:"\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E23\u0E30\u0E1A\u0E1A\u0E2A\u0E30\u0E01\u0E14\u0E04\u0E33\u0E1C\u0E34\u0E14"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0E43\u0E2A\u0E48\u0E40\u0E2A\u0E49\u0E19\u0E41\u0E1A\u0E48\u0E07\u0E2B\u0E19\u0E49\u0E32"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/tr.js
Normal file
170
htdocs/resource2/tinymce/langs/tr.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({tr:{
|
||||
common:{
|
||||
edit_confirm:"Metin giri\u015Fi i\u00E7in WYSIWYG modunu kullanmak ister misiniz?",
|
||||
apply:"Uygula",
|
||||
insert:"Ekle",
|
||||
update:"G\u00FCncelle",
|
||||
cancel:"\u0130ptal",
|
||||
close:"Kapat",
|
||||
browse:"G\u00F6zat",
|
||||
class_name:"S\u0131n\u0131f",
|
||||
not_set:"-- Ayarlanmad\u0131 --",
|
||||
clipboard_msg:"Mozilla Firefox da Kes/Kopyala/Yap\u0131\u015Ft\u0131r \u00F6zelli\u011Fi kullan\u0131lmamaktad\u0131r. \nBu konu hakk\u0131nda bilgi almak ister misiniz?",
|
||||
clipboard_no_support:"\u015Eu an kulland\u0131\u011F\u0131n\u0131z taray\u0131c\u0131n\u0131z klavye k\u0131sayollar\u0131n\u0131 desteklememektedir.",
|
||||
popup_blocked:"\u00DCzg\u00FCn\u00FCz, a\u00E7\u0131l\u0131r pencere engelleyiciniz uygulama i\u00E7in gerekli bir pencereyi engelledi. Bu arac\u0131 tam olarak kullanabilmek i\u00E7in a\u00E7\u0131l\u0131r pencere engelleyicisini kapat\u0131n\u0131z.",
|
||||
invalid_data:"Hata: Ge\u00E7ersiz de\u011Fer girildi, bunlar k\u0131rm\u0131z\u0131yla i\u015Faretlenmi\u015Ftir.",
|
||||
more_colors:"Daha fazla renk"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Hizalama",
|
||||
left:"Sol",
|
||||
center:"Orta",
|
||||
right:"Sa\u011F",
|
||||
full:"Tam"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d-%m-%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Tarih ekle",
|
||||
inserttime_desc:"Saat ekle",
|
||||
months_long:"Ocak,\u015Eubat,Mart,Nisan,May\u0131s,Haziran,Temmuz,A\u011Fustos,Eyl\u00FCl,Ekim,Kas\u0131m,Aral\u0131k",
|
||||
months_short:"Oca,\u015Eub,Mar,Nis,May,Haz,Tem,A\u011Fu,Eyl,Eki,Kas,Ara",
|
||||
day_long:"Pazar,Pazartesi,Sal\u0131,\u00C7ar\u015Famba,Per\u015Fembe,Cuma,Cumartesi",
|
||||
day_short:"Paz,Pzt,Sal,\u00C7r\u015F,Per,Cum,Cts"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Yazd\u0131r"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u00D6nizleme"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Sa\u011Fdan sola y\u00F6nlendir",
|
||||
rtl_desc:"Soldan sa\u011Fa y\u00F6nlendir"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Yeni katman ekle",
|
||||
forward_desc:"\u00D6ne getir",
|
||||
backward_desc:"Arkaya al",
|
||||
absolute_desc:"Mutlaka konumu de\u011Fi\u015Ftir",
|
||||
content:"Yeni katman..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Kaydet",
|
||||
cancel_desc:"T\u00FCm de\u011Fi\u015Fiklikleri iptal et"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"B\u00F6l\u00FCnemez bo\u015Fluk karakteri ekle"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0130mla kontrol\u00FCn\u00FC ba\u015Flat",
|
||||
download:"ieSpell bulunamad\u0131. \u015Eimdi kurmak ister misiniz?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Yatay \u00E7izgi"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0130fadeler"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Bul",
|
||||
replace_desc:"Bul/De\u011Fi\u015Ftir"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Resim ekle/d\u00FCzenle"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Ba\u011Flant\u0131 ekle/d\u00FCzenle"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Al\u0131nt\u0131",
|
||||
abbr_desc:"K\u0131saltma",
|
||||
acronym_desc:"K\u0131sa ad",
|
||||
del_desc:"Silme",
|
||||
ins_desc:"Ekleme",
|
||||
attribs_desc:"Nitelik ekle/d\u00FCzenle"
|
||||
},
|
||||
style:{
|
||||
desc:"CSS Stilini D\u00FCzenle"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"D\u00FCz metin olarak yap\u0131\u015Ft\u0131r",
|
||||
paste_word_desc:"Word'den yap\u0131\u015Ft\u0131r",
|
||||
selectall_desc:"T\u00FCm\u00FCn\u00FC se\u00E7",
|
||||
plaintext_mode_sticky:"D\u00FCz metin modunda yap\u0131\u015Ft\u0131r. Normal yap\u0131\u015Ft\u0131rma moduna ge\u00E7mek i\u00E7in tekrar t\u0131klay\u0131n. Yap\u0131\u015Ft\u0131rma i\u015Fleminden sonra normal yap\u0131\u015Ft\u0131rma moduna ge\u00E7ilecektir.",
|
||||
plaintext_mode:"D\u00FCz metin modunda yap\u0131\u015Ft\u0131r. Normal yap\u0131\u015Ft\u0131rma moduna ge\u00E7mek i\u00E7in tekrar t\u0131klay\u0131n."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in klavyeden CTRL+V i kullan\u0131n.",
|
||||
text_linebreaks:"Sat\u0131r kesmelerini tut",
|
||||
word_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in klavyeden CTRL+V i kullan\u0131n."
|
||||
},
|
||||
table:{
|
||||
desc:"Yeni tablo ekle",
|
||||
row_before_desc:"\u00DCst\u00FCne sat\u0131r ekle",
|
||||
row_after_desc:"Alt\u0131na sat\u0131r ekle",
|
||||
delete_row_desc:"Sat\u0131r sil",
|
||||
col_before_desc:"Soluna s\u00FCtun ekle",
|
||||
col_after_desc:"Sa\u011F\u0131na s\u00FCtun ekle",
|
||||
delete_col_desc:"S\u00FCtun sil",
|
||||
split_cells_desc:"Birle\u015Ftirilmi\u015F tablo h\u00FCcrelerini b\u00F6l",
|
||||
merge_cells_desc:"Tablo h\u00FCcrelerini birle\u015Ftir",
|
||||
row_desc:"Tablo sat\u0131r \u00F6zellikleri",
|
||||
cell_desc:"Tablo h\u00FCcre \u00F6zellikleri",
|
||||
props_desc:"Tablo \u00F6zellikleri",
|
||||
paste_row_before_desc:"\u00DCst\u00FCne tablo sat\u0131r\u0131 yap\u0131\u015Ft\u0131r",
|
||||
paste_row_after_desc:"Alt\u0131na tablo sat\u0131r\u0131 yap\u0131\u015Ft\u0131r",
|
||||
cut_row_desc:"Tablo sat\u0131r\u0131n\u0131 kes",
|
||||
copy_row_desc:"Tablo sat\u0131r\u0131n\u0131 kopyala",
|
||||
del:"Tablo sil",
|
||||
row:"Sat\u0131r",
|
||||
col:"S\u00FCtun",
|
||||
cell:"H\u00FCcre"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Bu sayfadan \u00E7\u0131karsan\u0131z yapt\u0131\u011F\u0131n\u0131z de\u011Fi\u015Fiklikler kaybolabilir.",
|
||||
restore_content:"Geri y\u00FCkleme i\u00E7eri\u011Fe otomatik kaydedildi.",
|
||||
warning_message:"E\u011Fer geri y\u00FCkleme i\u00E7eri\u011Fe otomatik kay\u0131t edilirse, edit\u00F6rde varolan t\u00FCm i\u00E7eri\u011Fi kaybedebilirsiniz.\n\nGeri y\u00FCklemenin i\u00E7eri\u011Fe kaydedilmesini istedi\u011Finizden emin misiniz?"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Tam ekran modunu a\u00E7/kapat"
|
||||
},
|
||||
media:{
|
||||
desc:"T\u00FCmle\u015Fik medya ekle / d\u00FCzenle",
|
||||
edit:"T\u00FCmle\u015Fik medya d\u00FCzenle"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Belge \u00F6zellikleri"
|
||||
},
|
||||
template:{
|
||||
desc:"\u00D6ntan\u0131ml\u0131 i\u00E7erik \u015Fablonu kullan"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"G\u00F6rsel karakter kontrol\u00FC a\u00E7\u0131k/kapal\u0131."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u0130mla kontrol\u00FCn\u00FC a\u00E7/kapat",
|
||||
menu:"\u0130mla kontrol\u00FC ayarlar\u0131",
|
||||
ignore_word:"S\u00F6zc\u00FC\u011F\u00FC yoksay",
|
||||
ignore_words:"T\u00FCm\u00FCn\u00FC yoksay",
|
||||
langs:"Diller",
|
||||
wait:"L\u00FCtfen bekleyin...",
|
||||
sug:"\u00D6neriler",
|
||||
no_sug:"\u00D6neri yok",
|
||||
no_mpell:"\u0130mla hatas\u0131 bulunamad\u0131."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Sayfa sonu ekle."
|
||||
},
|
||||
advlist:{
|
||||
types:"Tipler",
|
||||
def:"Varsay\u0131lan",
|
||||
lower_alpha:"K\u00FC\u00E7\u00FCk harf alfa",
|
||||
lower_greek:"K\u00FC\u00E7\u00FCk harf grek",
|
||||
lower_roman:"K\u00FC\u00E7\u00FCk harf roman",
|
||||
upper_alpha:"B\u00FCy\u00FCk harf alfa",
|
||||
upper_roman:"B\u00FCy\u00FCk harf roman",
|
||||
circle:"\u00C7ember",
|
||||
disc:"Daire",
|
||||
square:"Kare"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/tt.js
Normal file
170
htdocs/resource2/tinymce/langs/tt.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({tt:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u5728\u8A72text area\u5167\u5553\u7528\u6240\u898B\u5373\u6240\u5F97\u6A21\u5F0F\uFF1F",
|
||||
apply:"\u61C9\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u95DC\u9589",
|
||||
browse:"\u700F\u89BD",
|
||||
class_name:"\u6A23\u5F0F\u985E\u540D",
|
||||
not_set:"-- \u672A\u8A2D\u5B9A --",
|
||||
clipboard_msg:"\u8907\u88FD\u3001\u526A\u4E0B\u548C\u8CBC\u4E0A\u529F\u80FD\u5728Mozilla \u548C Firefox\u4E2D\u7121\u6CD5\u4F7F\u7528",
|
||||
clipboard_no_support:"\u5C1A\u4E0D\u652F\u63F4\u60A8\u6240\u4F7F\u7528\u7684\u700F\u89BD\u5668\uFF0C\u8ACB\u4F7F\u7528\u9375\u76E4\u65B9\u5F0F\u64CD\u4F5C",
|
||||
popup_blocked:"\u5C0D\u4E0D\u8D77\uFF0C\u60A8\u7684\u5FEB\u986F\u8996\u7A97\u963B\u6B62\u7A0B\u5F0F\u5DF2\u7D93\u963B\u6B62\u4E86\u672C\u5FEB\u986F\u8996\u7A97\uFF0C\u8ACB\u8ABF\u6574\u4F60\u7684\u700F\u89BD\u5668\u8A2D\u5B9A\uFF0C\u5141\u8A31\u672C\u7DB2\u7AD9\u5F48\u51FA\u65B0\u7A97\u53E3\uFF0C\u4EE5\u4FBF\u4F7F\u7528\u6B64\u529F\u80FD",
|
||||
invalid_data:"\u932F\u8AA4\uFF1A\u8F38\u5165\u4E86\u7121\u6548\u7684\u503C\uFF0C\u5DF2\u6A19\u8A18\u7232\u7D05\u8272\u3002",
|
||||
more_colors:"\u66F4\u591A\u9854\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5C0D\u9F4A\u65B9\u5F0F",
|
||||
left:"\u9760\u5DE6\u5C0D\u9F4A",
|
||||
center:"\u7F6E\u4E2D",
|
||||
right:"\u9760\u53F3\u5C0D\u9F4A",
|
||||
full:"\u5169\u7AEF\u5C0D\u9F4A"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u4ECA\u5929\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u73FE\u5728\u6642\u9593",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u9031\u65E5,\u9031\u4E00,\u9031\u4E8C,\u9031\u4E09,\u9031\u56DB,\u9031\u4E94,\u9031\u516D,\u9031\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5217\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9810\u89BD"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u6587\u5B57\u5F9E\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u6587\u5B57\u5F9E\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5C64",
|
||||
forward_desc:"\u524D\u7F6E",
|
||||
backward_desc:"\u5F8C\u7F6E",
|
||||
absolute_desc:"\u7D55\u5C0D\u4F4D\u7F6E",
|
||||
content:"\u65B0\u589E\u5C64..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u5B58\u6A94",
|
||||
cancel_desc:"\u653E\u68C4\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u767D\u5B57\u5143"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u57F7\u884C\u62FC\u5B57\u6AA2\u67E5",
|
||||
download:"\u672A\u6AA2\u6E2C\u5230ieSpell\u5143\u4EF6\uFF0C\u662F\u5426\u73FE\u5728\u5B89\u88DD ?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u5206\u9694\u7DDA"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u8868\u60C5"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u641C\u5C0B",
|
||||
replace_desc:"\u641C\u5C0B/\u53D6\u4EE3"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7DE8\u8F2F \u5716\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7DE8\u8F2F \u9023\u7D50"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u7528",
|
||||
abbr_desc:"\u7E2E\u5BEB",
|
||||
acronym_desc:"\u9996\u5B57\u6BCD\u7E2E\u5BEB",
|
||||
del_desc:"\u522A\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7DE8\u8F2F \u5C6C\u6027"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7DE8\u8F2F CSS \u6A23\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u8CBC\u4E0A\u7232\u7D14\u6587\u5B57",
|
||||
paste_word_desc:"\u8CBC\u4E0A\u7232Word\u683C\u5F0F",
|
||||
selectall_desc:"\u5168\u9078",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u865F\u865F",
|
||||
word_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u5728\u4E0A\u65B9\u63D2\u5165\u884C",
|
||||
row_after_desc:"\u5728\u4E0B\u65B9\u63D2\u5165\u884C",
|
||||
delete_row_desc:"\u522A\u9664\u7576\u524D\u884C",
|
||||
col_before_desc:"\u5728\u5DE6\u5074\u63D2\u5165\u5217",
|
||||
col_after_desc:"\u5728\u53F3\u5074\u63D2\u5165\u5217",
|
||||
delete_col_desc:"\u522A\u9664\u7576\u524D\u5217",
|
||||
split_cells_desc:"\u62C6\u5206\u5132\u5B58\u683C",
|
||||
merge_cells_desc:"\u5408\u4F75\u5132\u5B58\u683C",
|
||||
row_desc:"\u5217 \u5C6C\u6027",
|
||||
cell_desc:"\u5132\u5B58\u683C \u5C6C\u6027",
|
||||
props_desc:"\u8868\u683C \u5C6C\u6027",
|
||||
paste_row_before_desc:"\u8CBC\u4E0A\u884C\u5230\u4E0A\u65B9",
|
||||
paste_row_after_desc:"\u8CBC\u4E0A\u884C\u5230\u4E0B\u65B9",
|
||||
cut_row_desc:"\u526A\u4E0B\u7576\u524D\u5217",
|
||||
copy_row_desc:"\u8907\u88FD\u7576\u524D\u5217",
|
||||
del:"\u522A\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u5132\u5B58\u683C"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u5982\u679C\u96E2\u958B\u8A72\u9801\u5C07\u5C0E\u81F4\u6240\u6709\u4FEE\u6539\u5168\u90E8\u907A\u5931\u3002",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5168\u87A2\u5E55\u6A21\u5F0F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7DE8\u8F2F \u5A92\u9AD4",
|
||||
edit:"\u7DE8\u8F2F \u5A92\u9AD4"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6587\u4EF6"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9078\u5B9A\u7684\u7BC4\u672C"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u986F\u793A\u63A7\u5236\u7B26\u865F\u3002"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u62FC\u5B57\u6AA2\u67E5",
|
||||
menu:"\u62FC\u5B57\u6AA2\u67E5 \u8A2D\u5B9A",
|
||||
ignore_word:"\u5FFD\u7565",
|
||||
ignore_words:"\u5168\u90E8\u5FFD\u7565",
|
||||
langs:"\u8A9E\u8A00\u6E05\u55AE",
|
||||
wait:"\u8ACB\u7A0D\u5019...",
|
||||
sug:"\u5EFA\u8B70\u8A5E",
|
||||
no_sug:"\u7121\u62FC\u5B57\u5EFA\u8B70",
|
||||
no_mpell:"\u7121\u62FC\u5B57\u932F\u8AA4"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9801\u7B26\u865F"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
178
htdocs/resource2/tinymce/langs/tw.js
Normal file
178
htdocs/resource2/tinymce/langs/tw.js
Normal file
@ -0,0 +1,178 @@
|
||||
tinyMCE.addI18n({tw:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u9700\u8981\u958B\u555F\u6587\u5B57\u7DE8\u8F2F\u5668\uFF1F",
|
||||
apply:"\u61C9\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u95DC\u9589",
|
||||
browse:"\u9810\u89BD",
|
||||
class_name:"\u985E\u5225",
|
||||
not_set:"--\u672A\u8A2D\u5B9A--",
|
||||
clipboard_msg:"\u5F88\u62B1\u6B49\uFF0C\u60A8\u7684\u700F\u89BD\u5668\u4E0D\u652F\u63F4\u8907\u88FD\u529F\u80FD\u3002",
|
||||
clipboard_no_support:"\u60A8\u7684\u700F\u89BD\u5668\u4E0D\u652F\u63F4\u8A72\u529F\u80FD\uFF0C\u8ACB\u4F7F\u7528Ctrl + C\u9375\u4EE3\u66FF\u3002",
|
||||
popup_blocked:"\u60A8\u7684\u700F\u89BD\u5668\u963B\u6B62\u4E86\u5F48\u51FA\u8996\u7A97\u3002",
|
||||
invalid_data:"\u60A8\u8F38\u5165\u7684\u8CC7\u6599\u6709\u8AA4\uFF08\u898B\u7D05\u8272\u90E8\u5206\uFF09",
|
||||
more_colors:"\u66F4\u591A\u984F\u8272..."
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5C0D\u9F4A\u65B9\u5F0F",
|
||||
left:"\u9760\u5DE6",
|
||||
center:"\u5C45\u4E2D",
|
||||
right:"\u9760\u53F3",
|
||||
full:"\u5DE6\u53F3\u5C0D\u9F4A"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y/%m/%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u76EE\u524D\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u76EE\u524D\u6642\u9593",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u9031\u65E5,\u9031\u4E00,\u9031\u4E8C,\u9031\u4E09,\u9031\u56DB,\u9031\u4E94,\u9031\u516D,\u9031\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5217\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9810\u89BD"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u5F9E\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u5F9E\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5716\u5C64",
|
||||
forward_desc:"\u7F6E\u524D",
|
||||
backward_desc:"\u7F6E\u5F8C",
|
||||
absolute_desc:"\u5207\u63DB\u5230\u7D55\u5C0D\u5B9A\u4F4D",
|
||||
content:"\u65B0\u5EFA\u5716\u5C64..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u5132\u5B58",
|
||||
cancel_desc:"\u53D6\u6D88\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u683C"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u62FC\u5BEB\u6AA2\u67E5",
|
||||
download:"\u6AA2\u6E2C\u4E0D\u5230ieSpell\u5916\u639B\uFF0C\u662F\u5426\u7ACB\u5373\u5B89\u88DD\uFF1F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7DDA"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u8868\u60C5"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u641C\u5C0B",
|
||||
replace_desc:"\u641C\u5C0B/\u66FF\u63DB"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7DE8\u8F2F\u5716\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7DE8\u8F2F\u93C8\u63A5"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u7528",
|
||||
abbr_desc:"\u7E2E\u5BEB",
|
||||
acronym_desc:"\u9996\u5B57\u6BCD\u7E2E\u5BEB",
|
||||
del_desc:"\u522A\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7DE8\u8F2F\u5C6C\u6027",
|
||||
attribs_delta_width:"40",
|
||||
attribs_delta_height:"60"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7DE8\u8F2F CSS \u6A23\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u8CBC\u4E0A\u70BA\u7D14\u6587\u672C",
|
||||
paste_word_desc:"\u8CBC\u4E0A\u70BA Word \u683C\u5F0F",
|
||||
selectall_desc:"\u5168\u9078",
|
||||
plaintext_mode_sticky:"\u76EE\u524D\u70BA\u7D14\u6587\u672C\u8CBC\u4E0A\u6A21\u5F0F\uFF0C\u518D\u9EDE\u64CA\u4E00\u6B21\u5207\u63DB\u56DE\u4E00\u822C\u8CBC\u4E0A\u6A21\u5F0F\u3002\u5728\u4F60\u8CBC\u4E0A\u5F8C\u6703\u56DE\u5230\u4E00\u822C\u8CBC\u4E0A\u6A21\u5F0F\u3002",
|
||||
plaintext_mode:"\u76EE\u524D\u70BA\u4E00\u822C\u8CBC\u4E0A\u6A21\u5F0F\uFF0C\u518D\u9EDE\u64CA\u4E00\u6B21\u5207\u63DB\u56DE\u7D14\u6587\u672C\u8CBC\u4E0A\u6A21\u5F0F\u3002"
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u7528 Ctrl+V \u7D44\u5408\u9375\u5C07\u5167\u5BB9\u8CBC\u5165\u8996\u7A97\u4E2D\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u63DB\u884C\u7B26\u865F",
|
||||
word_title:"\u7528 Ctrl+V \u7D44\u5408\u9375\u5C07\u5167\u5BB9\u8CBC\u5165\u8996\u7A97\u4E2D\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u5728\u4E0A\u65B9\u63D2\u5165\u884C",
|
||||
row_after_desc:"\u5728\u4E0B\u65B9\u63D2\u5165\u884C",
|
||||
delete_row_desc:"\u522A\u9664\u76EE\u524D\u884C",
|
||||
col_before_desc:"\u5728\u5DE6\u5074\u63D2\u5165\u6B04",
|
||||
col_after_desc:"\u5728\u53F3\u5074\u63D2\u5165\u6B04",
|
||||
delete_col_desc:"\u522A\u9664\u76EE\u524D\u6B04",
|
||||
split_cells_desc:"\u5206\u5272\u5132\u5B58\u683C",
|
||||
merge_cells_desc:"\u5408\u4F75\u5132\u5B58\u683C",
|
||||
row_desc:"\u884C\u5C6C\u6027",
|
||||
cell_desc:"\u5132\u5B58\u683C\u5C6C\u6027",
|
||||
props_desc:"\u8868\u683C\u5C6C\u6027",
|
||||
paste_row_before_desc:"\u5728\u4E0A\u65B9\u8CBC\u4E0A\u884C",
|
||||
paste_row_after_desc:"\u5728\u4E0B\u65B9\u8CBC\u4E0A\u884C",
|
||||
cut_row_desc:"\u526A\u4E0B\u9078\u5B9A\u884C",
|
||||
copy_row_desc:"\u8907\u88FD\u9078\u5B9A\u884C",
|
||||
del:"\u522A\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u6B04",
|
||||
cell:"\u5132\u5B58\u683C",
|
||||
cellprops_delta_width:"10",
|
||||
cellprops_delta_height:"10",
|
||||
table_delta_width:"40",
|
||||
table_delta_height:"60",
|
||||
merge_cells_delta_width:"40",
|
||||
merge_cells_delta_height:"40"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u60A8\u5C1A\u672A\u5132\u5B58\u8CC7\u6599\uFF0C\u60A8\u8F38\u5165\u7684\u8CC7\u6599\u6709\u53EF\u80FD\u6703\u907A\u5931\u2026",
|
||||
restore_content:"\u6062\u5FA9\u81EA\u52D5\u5132\u5B58\u7684\u5167\u5BB9\u3002",
|
||||
warning_message:"\u5982\u679C\u6062\u5FA9\u5148\u524D\u5132\u5B58\u7684\u5167\u5BB9\uFF0C\u4F60\u5C07\u5931\u53BB\u7DE8\u8F2F\u5668\u4E2D\u73FE\u6709\u7684\u5167\u5BB9\u3002 \n\n\u4F60\u78BA\u5B9A\u8981\u6062\u5FA9\u5148\u524D\u5132\u5B58\u7684\u5167\u5BB9\u55CE\uFF1F"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5168\u87A2\u5E55\u7DE8\u8F2F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7DE8\u8F2F\u5F71\u7247",
|
||||
edit:"\u7DE8\u8F2F\u5F71\u7247"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6587\u4EF6\u5C6C\u6027"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9810\u5B9A\u7FA9\u6A23\u677F"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u986F\u793A/\u96B1\u85CF\u4E0D\u53EF\u898B\u5B57\u5143"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u958B\u95DC\u62FC\u5BEB\u6AA2\u67E5",
|
||||
menu:"\u62FC\u5BEB\u6AA2\u67E5\u8A2D\u5B9A",
|
||||
ignore_word:"\u5FFD\u7565",
|
||||
ignore_words:"\u5168\u90E8\u5FFD\u7565",
|
||||
langs:"\u8A9E\u8A00",
|
||||
wait:"\u8ACB\u7A0D\u5019...",
|
||||
sug:"\u5EFA\u8B70",
|
||||
no_sug:"\u7121\u5EFA\u8B70",
|
||||
no_mpell:"\u7121\u62FC\u5BEB\u932F\u8AA4"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9801\u7B26\u865F"
|
||||
},
|
||||
advlist:{
|
||||
types:"\u6A23\u5F0F",
|
||||
def:"\u9810\u8A2D",
|
||||
lower_alpha:"\u5C0F\u5BEB\u7684\u82F1\u6587\u5B57",
|
||||
lower_greek:"\u5C0F\u5BEB\u7684\u5E0C\u81D8\u6587\u5B57",
|
||||
lower_roman:"\u5C0F\u5BEB\u7684\u7F85\u99AC\u6578\u5B57",
|
||||
upper_alpha:"\u5927\u5BEB\u7684\u82F1\u6587\u5B57",
|
||||
upper_roman:"\u5927\u5BEB\u7684\u7F85\u99AC\u6578\u5B57",
|
||||
circle:"\u5713\u5708",
|
||||
disc:"\u9ED1\u9EDE",
|
||||
square:"\u65B9\u584A"
|
||||
}}});
|
173
htdocs/resource2/tinymce/langs/uk.js
Normal file
173
htdocs/resource2/tinymce/langs/uk.js
Normal file
@ -0,0 +1,173 @@
|
||||
tinyMCE.addI18n({uk:{
|
||||
common:{
|
||||
edit_confirm:"\u0412\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 WYSIWYG \u0440\u0435\u0436\u0438\u043C \u0434\u043B\u044F \u0446\u044C\u043E\u0433\u043E \u043F\u043E\u043B\u044F?",
|
||||
apply:"\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u0432\u0430\u0442\u0438",
|
||||
insert:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438",
|
||||
update:"\u041E\u043D\u043E\u0432\u0438\u0442\u0438",
|
||||
cancel:"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438",
|
||||
close:"\u0417\u0430\u043A\u0440\u0438\u0442\u0438",
|
||||
browse:"\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u0434",
|
||||
class_name:"\u041A\u043B\u0430\u0441",
|
||||
not_set:"-- \u043D\u0435 \u0432\u0438\u0431\u0440\u0430\u043D\u043E --",
|
||||
clipboard_msg:"\u041A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438/\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438/\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u043E \u0432 Mozilla \u0442\u0430 Firefox.\n\u0412\u0430\u043C \u0446\u0456\u043A\u0430\u0432\u0430 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u044F \u043F\u0440\u043E \u0446\u0435?",
|
||||
clipboard_no_support:"\u041D\u0430\u0440\u0430\u0437\u0456 \u0446\u044F \u0444\u0443\u043D\u043A\u0446\u0456\u044F \u043D\u0435 \u0434\u043E\u0441\u0442\u0443\u043F\u043D\u0430 \u0432 \u0432\u0430\u0448\u043E\u043C\u0443 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0456, \u0430\u043B\u0435 \u0432\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0432\u0430\u0442\u0438 \u043A\u043B\u0430\u0432\u0456\u0430\u0442\u0443\u0440\u0443 \u0437\u0430\u043C\u0456\u0441\u0442\u044C \u0446\u044C\u043E\u0433\u043E.",
|
||||
popup_blocked:"\u0414\u0443\u0436\u0435 \u043F\u0440\u0438\u043A\u0440\u043E, \u0430\u043B\u0435 \u0432\u0430\u0448 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0437\u0430\u0431\u043B\u043E\u043A\u0443\u0432\u0430\u0432 \u0432\u0438\u0440\u0438\u043D\u0430\u044E\u0447\u0435 \u0432\u0456\u043A\u043D\u043E. \u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u043D\u0430\u043B\u0430\u0448\u0442\u0443\u0439\u0442\u0435 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0442\u0430\u043A, \u0449\u043E\u0431 \u0432\u0456\u043D \u0434\u043E\u0437\u0432\u043E\u043B\u044F\u0432 \u0432\u0438\u0440\u0438\u043D\u0430\u044E\u0447\u0456 \u0432\u0456\u043A\u043D\u0430 \u0437 \u0446\u044C\u043E\u0433\u043E \u0441\u0430\u0439\u0442\u0443.",
|
||||
invalid_data:"\u041F\u043E\u043C\u0438\u043B\u043A\u0430: \u0412\u0432\u0435\u0434\u0435\u043D\u043E \u043F\u043E\u043C\u0438\u043B\u043A\u043E\u0432\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F, \u0432\u0456\u0434\u043C\u0456\u0447\u0435\u043D\u0435 \u0447\u0435\u0440\u0432\u043E\u043D\u0438\u043C.",
|
||||
more_colors:"\u0411\u0456\u043B\u044C\u0448\u0435 \u043A\u043E\u043B\u044C\u043E\u0440\u0456\u0432"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u0412\u0438\u0440\u0456\u0432\u043D\u044E\u0432\u0430\u043D\u043D\u044F",
|
||||
left:"\u041F\u043E \u043B\u0456\u0432\u043E\u043C\u0443 \u043A\u0440\u0430\u044E",
|
||||
center:"\u041F\u043E \u0446\u0435\u043D\u0442\u0440\u0443",
|
||||
right:"\u041F\u043E \u043F\u0440\u0430\u0432\u043E\u043C\u0443 \u043A\u0440\u0430\u044E",
|
||||
full:"\u041F\u043E \u0448\u0438\u0440\u0438\u043D\u0456"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%d.%m.%Y",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0434\u0430\u0442\u0443",
|
||||
inserttime_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0447\u0430\u0441",
|
||||
months_long:"\u0421\u0456\u0447\u0435\u043D\u044C,\u041B\u044E\u0442\u0438\u0439,\u0411\u0435\u0440\u0435\u0437\u0435\u043D\u044C,\u041A\u0432\u0456\u0442\u0435\u043D\u044C,\u0422\u0440\u0430\u0432\u0435\u043D\u044C,\u0427\u0435\u0440\u0432\u0435\u043D\u044C,\u041B\u0438\u043F\u0435\u043D\u044C,\u0421\u0435\u0440\u043F\u0435\u043D\u044C,\u0412\u0435\u0440\u0435\u0441\u0435\u043D\u044C,\u0416\u043E\u0432\u0442\u0435\u043D\u044C,\u041B\u0438\u0441\u0442\u043E\u043F\u0430\u0434,\u0413\u0440\u0443\u0434\u0435\u043D\u044C",
|
||||
months_short:"\u0421\u0456\u0447,\u041B\u044E\u0442,\u0411\u0435\u0440,\u041A\u0432\u0456,\u0422\u0440\u0430,\u0427\u0435\u0440,\u041B\u0438\u043F,\u0421\u0435\u0440,\u0412\u0435\u0440,\u0416\u043E\u0432,\u041B\u0438\u0441,\u0413\u0440\u0443",
|
||||
day_long:"\u041D\u0435\u0434\u0456\u043B\u044F,\u041F\u043E\u043D\u0435\u0434\u0456\u043B\u043E\u043A,\u0412\u0456\u0432\u0442\u043E\u0440\u043E\u043A,\u0421\u0435\u0440\u0435\u0434\u0430,\u0427\u0435\u0442\u0432\u0435\u0440,\u041F'\u044F\u0442\u043D\u0438\u0446\u044F,\u0421\u0443\u0431\u043E\u0442\u0430,\u041D\u0435\u0434\u0456\u043B\u044F",
|
||||
day_short:"\u041D\u0434,\u041F\u043D,\u0412\u0442,\u0421\u0440,\u0427\u0442,\u041F\u0442,\u0421\u0431,\u041D\u0434"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u0414\u0440\u0443\u043A\u0443\u0432\u0430\u0442\u0438"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u0434"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u041D\u0430\u043F\u0440\u044F\u043C \u0437\u043B\u0456\u0432\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u043E",
|
||||
rtl_desc:"\u041D\u0430\u043F\u0440\u044F\u043C \u0441\u043F\u0440\u0430\u0432\u0430 \u043D\u0430\u043B\u0456\u0432\u043E"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043D\u043E\u0432\u0438\u0439 \u043F\u0440\u043E\u0448\u0430\u0440\u043E\u043A",
|
||||
forward_desc:"\u041F\u0435\u0440\u0435\u043C\u0456\u0441\u0442\u0438\u0442\u0438 \u0432\u043F\u0435\u0440\u0435\u0434",
|
||||
backward_desc:"\u041F\u0435\u0440\u0435\u043C\u0456\u0441\u0442\u0438\u0442\u0438 \u043D\u0430\u0437\u0430\u0434",
|
||||
absolute_desc:"\u041F\u0435\u0440\u0435\u043C\u0438\u043A\u043D\u0443\u0442\u0438 \u0430\u0431\u0441\u043E\u043B\u044E\u0442\u043D\u0435 \u043F\u043E\u0437\u0438\u0446\u0456\u044E\u0432\u0430\u043D\u043D\u044F",
|
||||
content:"\u041D\u043E\u0432\u0438\u0439 \u043F\u0440\u043E\u0448\u0430\u0440\u043E\u043A..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
|
||||
cancel_desc:"\u0412\u0456\u0434\u043C\u0456\u043D\u0438\u0442\u0438 \u0432\u0441\u0456 \u0437\u043C\u0456\u043D\u0438"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043D\u0435\u0440\u043E\u0437\u0440\u0438\u0432\u043D\u0438\u0439 \u043F\u0440\u043E\u043C\u0456\u0436\u043E\u043A"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u0417\u0430\u043F\u0443\u0441\u0442\u0438\u0442\u0438 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0443 \u043E\u0440\u0444\u043E\u0433\u0440\u0430\u0444\u0456\u0457",
|
||||
download:"\u0414\u043E\u0434\u0430\u0442\u043E\u043A ieSpell \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E. \u0411\u0430\u0436\u0430\u0454\u0442\u0435 \u0432\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0438?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u0413\u043E\u0440\u0438\u0437\u043E\u043D\u0442\u0430\u043B\u044C\u043D\u0438\u0439 \u0440\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0438\u043A"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u0421\u043C\u0430\u0439\u043B\u0438"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u0428\u0443\u043A\u0430\u0442\u0438",
|
||||
replace_desc:"\u0428\u0443\u043A\u0430\u0442\u0438/\u0417\u0430\u043C\u0456\u043D\u0438\u0442\u0438"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438/\u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u0437\u043E\u0431\u0440\u0430\u0436\u0435\u043D\u043D\u044F",
|
||||
delta_width:"200"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438/\u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F",
|
||||
delta_width:"200"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u0426\u0438\u0442\u0430\u0442\u0430",
|
||||
abbr_desc:"\u0410\u0431\u0440\u0435\u0432\u0456\u0430\u0442\u0443\u0440\u0430",
|
||||
acronym_desc:"\u0410\u043A\u0440\u043E\u043D\u0456\u043C",
|
||||
del_desc:"\u0412\u0438\u0434\u0430\u043B\u0435\u043D\u043D\u044F",
|
||||
ins_desc:"\u0412\u0441\u0442\u0430\u0432\u043A\u0430",
|
||||
attribs_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438/\u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u0438"
|
||||
},
|
||||
style:{
|
||||
desc:"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 CSS \u0441\u0442\u0438\u043B\u044C"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u044F\u043A \u0442\u0435\u043A\u0441\u0442",
|
||||
paste_word_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0437 Word",
|
||||
selectall_desc:"\u0412\u0438\u0434\u0456\u043B\u0438\u0442\u0438 \u0432\u0441\u0435",
|
||||
plaintext_mode_sticky:"\u0412 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0412\u0441\u0442\u0430\u0432\u043A\u0430 \u0432 \u0440\u0435\u0436\u0438\u043C\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u043E\u0433\u043E \u0442\u0435\u043A\u0441\u0442\u0443. \u041D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C \u0437\u043D\u043E\u0432\u0443 \u0434\u043B\u044F \u043F\u0435\u0440\u0435\u043C\u0438\u043A\u0430\u043D\u043D\u044F \u043D\u0430\u0437\u0430\u0434 \u0432 \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u0438\u0439 \u0440\u0435\u0436\u0438\u043C \u0412\u0441\u0442\u0430\u0432\u043A\u0438.. \u041F\u0456\u0441\u043B\u044F \u0442\u043E\u0433\u043E, \u044F\u043A \u0412\u0438 \u0449\u043E-\u043D\u0435\u0431\u0443\u0434\u044C \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u0435, \u0412\u0438 \u043F\u043E\u0432\u0435\u0440\u043D\u0435\u0442\u0435\u0441\u044C \u0432 \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u043C\u0439 \u0440\u0435\u0436\u0438\u043C \u0412\u0441\u0442\u0430\u0432\u043A\u0438.",
|
||||
plaintext_mode:"\u0412 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0412\u0441\u0442\u0430\u0432\u043A\u0430 \u0432 \u0440\u0435\u0436\u0438\u043C\u0456 \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u043E\u0433\u043E \u0442\u0435\u043A\u0441\u0442\u0443. \u041D\u0430\u0442\u0438\u0441\u043D\u0456\u0442\u044C \u0437\u043D\u043E\u0432\u0443 \u0434\u043B\u044F \u043F\u0435\u0440\u0435\u043C\u0438\u043A\u0430\u043D\u043D\u044F \u043D\u0430\u0437\u0430\u0434 \u0432 \u0437\u0432\u0438\u0447\u0430\u0439\u043D\u0438\u0439 \u0440\u0435\u0436\u0438\u043C \u0412\u0441\u0442\u0430\u0432\u043A\u0438."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0443 \u0443 \u0432\u0456\u043A\u043D\u043E.",
|
||||
text_linebreaks:"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043F\u0435\u0440\u0435\u043D\u043E\u0441\u0438 \u0440\u044F\u0434\u043A\u0456\u0432",
|
||||
word_title:"\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0443 \u0443 \u0432\u0456\u043A\u043D\u043E."
|
||||
},
|
||||
table:{
|
||||
desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043D\u043E\u0432\u0443 \u0442\u0430\u0431\u043B\u0438\u0446\u044E",
|
||||
row_before_desc:"\u0414\u043E\u0434\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0434\u043E",
|
||||
row_after_desc:"\u0414\u043E\u0434\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u043F\u0456\u0441\u043B\u044F",
|
||||
delete_row_desc:"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0440\u044F\u0434\u043E\u043A",
|
||||
col_before_desc:"\u0414\u043E\u0434\u0430\u0442\u0438 \u0441\u0442\u043E\u0432\u043F\u0435\u0446\u044C \u0434\u043E",
|
||||
col_after_desc:"\u0414\u043E\u0434\u0430\u0442\u0438 \u0441\u0442\u043E\u0432\u043F\u0435\u0446\u044C \u043F\u0456\u0441\u043B\u044F",
|
||||
delete_col_desc:"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0441\u0442\u043E\u0432\u043F\u0435\u0446\u044C",
|
||||
split_cells_desc:"\u0420\u043E\u0437\u0434\u0456\u043B\u0438\u0442\u0438 \u043A\u043E\u043C\u0456\u0440\u043A\u0438",
|
||||
merge_cells_desc:"\u041E\u0431'\u0454\u0434\u043D\u0430\u0442\u0438 \u043A\u043E\u043C\u0456\u0440\u043A\u0438",
|
||||
row_desc:"\u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 \u0440\u044F\u0434\u043A\u0443 \u0442\u0430\u0431\u043B\u0438\u0446\u0456",
|
||||
cell_desc:"\u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 \u043A\u043E\u043C\u0456\u0440\u043A\u0438 \u0442\u0430\u0431\u043B\u0438\u0446\u0456",
|
||||
props_desc:"\u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 \u0442\u0430\u0431\u043B\u0438\u0446\u0456",
|
||||
paste_row_before_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0434\u043E",
|
||||
paste_row_after_desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u043F\u0456\u0441\u043B\u044F",
|
||||
cut_row_desc:"\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0442\u0430\u0431\u043B\u0438\u0446\u0456",
|
||||
copy_row_desc:"\u041A\u043E\u043F\u0456\u044E\u0432\u0430\u0442\u0438 \u0440\u044F\u0434\u043E\u043A \u0442\u0430\u0431\u043B\u0438\u0446\u0456",
|
||||
del:"\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438 \u0442\u0430\u0431\u043B\u0438\u0446\u044E",
|
||||
row:"\u0420\u044F\u0434\u043E\u043A",
|
||||
col:"\u0421\u0442\u043E\u0432\u043F\u0435\u0446\u044C",
|
||||
cell:"\u041A\u043E\u043C\u0456\u0440\u043A\u0430",
|
||||
cellprops_delta_width:"30"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u0417\u043C\u0456\u043D\u0438, \u044F\u043A\u0456 \u0432\u0438 \u0437\u0440\u043E\u0431\u0438\u043B\u0438, \u0431\u0443\u0434\u0443\u0442\u044C \u0432\u0442\u0440\u0430\u0447\u0435\u043D\u0456, \u044F\u043A\u0449\u043E \u0432\u0438 \u043F\u0435\u0440\u0435\u0439\u0434\u0435\u0442\u0435 \u0437 \u0446\u0456\u0454\u0457 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438.",
|
||||
restore_content:"\u0412\u0456\u0434\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0430\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u043D\u043E \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043E\u0433\u043E \u0432\u043C\u0456\u0441\u0442\u0443.",
|
||||
warning_message:"\u042F\u043A\u0449\u043E \u0432\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0438\u0439 \u0432\u043C\u0456\u0441\u0442, \u0442\u043E \u0432\u0438 \u0432\u0442\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u0435\u0441\u044C \u0432\u043C\u0456\u0441\u0442, \u044F\u043A\u0438\u0439 \u0432 \u0434\u0430\u043D\u0438\u0439 \u0447\u0430\u0441 \u0437\u043D\u0430\u0445\u043E\u0434\u0438\u0442\u044C\u0441\u044F \u0432 \u0440\u0435\u0434\u0430\u043A\u0442\u043E\u0440\u0456. \n\n\u0412\u0438 \u0432\u043F\u0435\u0432\u043D\u0435\u043D\u0456, \u0449\u043E \u0445\u043E\u0447\u0435\u0442\u0435 \u0432\u0456\u0434\u043D\u043E\u0432\u0438\u0442\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u0438\u0439 \u0437\u043C\u0456\u0441\u0442?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u041F\u0435\u0440\u0435\u043C\u043A\u043D\u0443\u0442\u0438 \u043D\u0430 \u0432\u0435\u0441\u044C \u0435\u043A\u0440\u0430\u043D"
|
||||
},
|
||||
media:{
|
||||
desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 / \u0440\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0431\u0443\u0434\u043E\u0432\u0430\u043D\u0456 \u043C\u0435\u0434\u0456\u0430",
|
||||
edit:"\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0432\u0431\u0443\u0434\u043E\u0432\u0430\u043D\u0456 \u043C\u0435\u0434\u0456\u0430"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 \u0434\u043E\u043A\u0443\u043C\u0435\u043D\u0442\u0430"
|
||||
},
|
||||
template:{
|
||||
desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0448\u0430\u0431\u043B\u043E\u043D\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0435\u043D\u0442"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u0412\u0456\u0437\u0443\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432 \u0432\u0432\u0456\u043C\u043A\u043D\u0435\u043D\u043D\u044F / \u0432\u0438\u043C\u043A\u043D\u0435\u043D\u043D\u044F."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u041F\u0435\u0440\u0435\u043A\u043B\u044E\u0447\u0438\u0442\u0438 \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0443",
|
||||
menu:"\u041D\u0430\u043B\u0430\u0448\u0442\u0443\u0432\u0430\u043D\u043D\u044F \u043F\u0435\u0440\u0435\u0432\u0456\u0440\u043A\u0438",
|
||||
ignore_word:"\u0406\u0433\u043D\u043E\u0440\u0443\u0432\u0430\u0442\u0438 \u0441\u043B\u043E\u0432\u043E",
|
||||
ignore_words:"\u0406\u0433\u043D\u043E\u0440\u0443\u0432\u0430\u0442\u0438 \u0432\u0441\u0435",
|
||||
langs:"\u041C\u043E\u0432\u0438",
|
||||
wait:"\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0437\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435...",
|
||||
sug:"\u0412\u0430\u0440\u0456\u0430\u043D\u0442\u0438",
|
||||
no_sug:"\u041D\u0435\u043C\u0430\u0454 \u0432\u0430\u0440\u0456\u0430\u043D\u0442\u0456\u0432",
|
||||
no_mpell:"\u041F\u043E\u043C\u0438\u043B\u043E\u043A \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u0440\u043E\u0437\u0434\u0456\u043B\u044C\u043D\u0438\u043A \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438."
|
||||
},
|
||||
advlist:{
|
||||
types:"\u0422\u0438\u043F\u0438",
|
||||
def:"\u0417\u0430 \u0437\u0430\u043C\u043E\u0432\u0447\u0430\u043D\u043D\u044F\u043C",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"\u041A\u043E\u043B\u043E",
|
||||
disc:"\u0414\u0438\u0441\u043A",
|
||||
square:"\u041A\u0432\u0430\u0434\u0440\u0430\u0442"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/ur.js
Normal file
170
htdocs/resource2/tinymce/langs/ur.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({ur:{
|
||||
common:{
|
||||
edit_confirm:"\u06A9\u06CC\u0627 \u0627\u0653\u067E \u0627\u0633 \u0679\u06CC\u06A9\u0633\u0679 \u0627\u06CC\u0631\u06CC\u0627 \u06A9\u06CC\u0644\u0626\u06D2 \u0648\u0632\u06CC \u0648\u06AF \u0645\u0648\u0688 \u0627\u0633\u062A\u0639\u0645\u0627\u0644 \u06A9\u0631\u0646\u0627 \u0686\u0627\u06C1\u062A\u06D2 \u06C1\u06CC\u06BA\u061F",
|
||||
apply:"\u0627\u067E\u0644\u0627\u0626\u06CC",
|
||||
insert:"\u062F\u0627\u062E\u0644 \u06A9\u0631\u06CC\u06BA",
|
||||
update:"\u0627\u067E \u0688\u06CC\u0679",
|
||||
cancel:"\u06A9\u06CC\u0646\u0633\u0644",
|
||||
close:"\u0628\u0646\u062F",
|
||||
browse:"\u0628\u0631\u0627\u0624\u0632",
|
||||
class_name:"\u06A9\u0644\u0627\u0633",
|
||||
not_set:"-- \u0646\u0627\u0679 \u0633\u06CC\u0679 --",
|
||||
clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
|
||||
clipboard_no_support:"\u0627\u0653\u067E \u06A9\u06D2 \u0628\u0631\u0627\u0624\u0632\u0631 \u0645\u06CC\u06BA \u06CC\u06C1 \u0633\u06C1\u0648\u0644\u062A \u0645\u06CC\u0633\u0631 \u0646\u06C1\u06CC\u06BA\u06D4 \u06A9\u06CC \u0628\u0648\u0631\u0688 \u0634\u0627\u0631\u0679 \u06A9\u0679 \u0645\u0646\u062A\u062E\u0628 \u06A9\u0631\u06CC\u06BA",
|
||||
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.",
|
||||
invalid_data:"Error: Invalid values entered, these are marked in red.",
|
||||
more_colors:"More colors"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Alignment",
|
||||
left:"Left",
|
||||
center:"Center",
|
||||
right:"Right",
|
||||
full:"Full"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Insert date",
|
||||
inserttime_desc:"Insert time",
|
||||
months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
||||
months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
||||
day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
||||
day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
||||
},
|
||||
print:{
|
||||
print_desc:"Print"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Preview"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"Direction left to right",
|
||||
rtl_desc:"Direction right to left"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Insert new layer",
|
||||
forward_desc:"Move forward",
|
||||
backward_desc:"Move backward",
|
||||
absolute_desc:"Toggle absolute positioning",
|
||||
content:"New layer..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"Save",
|
||||
cancel_desc:"Cancel all changes"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Insert non-breaking space character"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Run spell checking",
|
||||
download:"ieSpell not detected. Do you want to install it now?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Horizontal rule"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Emotions"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"Find",
|
||||
replace_desc:"Find/Replace"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Insert/edit image"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Insert/edit link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Citation",
|
||||
abbr_desc:"Abbreviation",
|
||||
acronym_desc:"Acronym",
|
||||
del_desc:"Deletion",
|
||||
ins_desc:"Insertion",
|
||||
attribs_desc:"Insert/Edit Attributes"
|
||||
},
|
||||
style:{
|
||||
desc:"Edit CSS Style"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"Paste as Plain Text",
|
||||
paste_word_desc:"Paste from Word",
|
||||
selectall_desc:"Select All",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
|
||||
text_linebreaks:"Keep linebreaks",
|
||||
word_title:"Use CTRL+V on your keyboard to paste the text into the window."
|
||||
},
|
||||
table:{
|
||||
desc:"Inserts a new table",
|
||||
row_before_desc:"Insert row before",
|
||||
row_after_desc:"Insert row after",
|
||||
delete_row_desc:"Delete row",
|
||||
col_before_desc:"Insert column before",
|
||||
col_after_desc:"Insert column after",
|
||||
delete_col_desc:"Remove column",
|
||||
split_cells_desc:"Split merged table cells",
|
||||
merge_cells_desc:"Merge table cells",
|
||||
row_desc:"Table row properties",
|
||||
cell_desc:"Table cell properties",
|
||||
props_desc:"Table properties",
|
||||
paste_row_before_desc:"Paste table row before",
|
||||
paste_row_after_desc:"Paste table row after",
|
||||
cut_row_desc:"Cut table row",
|
||||
copy_row_desc:"Copy table row",
|
||||
del:"Delete table",
|
||||
row:"Row",
|
||||
col:"Column",
|
||||
cell:"Cell"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"The changes you made will be lost if you navigate away from this page.",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"Toggle fullscreen mode"
|
||||
},
|
||||
media:{
|
||||
desc:"Insert / edit embedded media",
|
||||
edit:"Edit embedded media"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Document properties"
|
||||
},
|
||||
template:{
|
||||
desc:"Insert predefined template content"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"Visual control characters on/off."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"Toggle spellchecker",
|
||||
menu:"Spellchecker settings",
|
||||
ignore_word:"Ignore word",
|
||||
ignore_words:"Ignore all",
|
||||
langs:"Languages",
|
||||
wait:"Please wait...",
|
||||
sug:"Suggestions",
|
||||
no_sug:"No suggestions",
|
||||
no_mpell:"No misspellings found."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Insert page break."
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
170
htdocs/resource2/tinymce/langs/vi.js
Normal file
170
htdocs/resource2/tinymce/langs/vi.js
Normal file
@ -0,0 +1,170 @@
|
||||
tinyMCE.addI18n({vi:{
|
||||
common:{
|
||||
edit_confirm:"B\u1EA1n c\u00F3 mu\u1ED1n s\u1EED d\u1EE5ng ch\u1EBF \u0111\u1ED9 WYSIWYG cho textarea n\u00E0y?",
|
||||
apply:"Thay \u0111\u1ED5i",
|
||||
insert:"Th\u00EAm",
|
||||
update:"C\u1EADp nh\u1EADt",
|
||||
cancel:"H\u1EE7y b\u1ECF",
|
||||
close:"Tho\u00E1t",
|
||||
browse:"T\u00ECm",
|
||||
class_name:"L\u1EDBp",
|
||||
not_set:"-- Ch\u01B0a \u0111\u1EB7t --",
|
||||
clipboard_msg:"Copy/Cut/Paste kh\u00F4ng \u0111\u01B0\u1EE3c h\u1ED7 tr\u1EE3 trong tr\u00ECnh duy\u1EC7t web n\u00E0y.\nB\u1EA1n c\u00F3 mu\u1ED1n bi\u1EBFt th\u00EAm th\u00F4ng tin v\u1EC1 v\u1EA5n \u0111\u1EC1 n\u00E0y kh\u00F4ng??",
|
||||
clipboard_no_support:"S\u1EED d\u1EE5ng ph\u00EDm t\u1EAFt kh\u00F4ng \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng trong tr\u00ECnh duy\u1EC7t hi\u1EC7n t\u1EA1i.",
|
||||
popup_blocked:"Xin l\u1ED7i, Nh\u01B0ng ch\u1EBF \u0111\u1ED9 c\u1EEDa s\u1ED5 popup \u0111\u00E3 b\u1ECB v\u00F4 hi\u1EC7u ho\u00E1. B\u1EA1n s\u1EBD c\u1EA7n ph\u1EA3i t\u1EAFt ch\u1EE9c n\u0103ng ch\u1EB7n popup tr\u00EAn trang web n\u00E0y \u0111\u1EC3 s\u1EED d\u1EE5ng c\u00F4ng c\u1EE5 n\u00E0y ho\u00E0n to\u00E0n.",
|
||||
invalid_data:"L\u1ED7i: Gi\u00E1 tr\u1ECB nh\u1EADp v\u00E0o kh\u00F4ng h\u1EE3p l\u1EC7. (\u0110\u01B0\u1EE3c \u0111\u00E1nh d\u1EA5u \u0111\u1ECF)",
|
||||
more_colors:"M\u00E0u kh\u00E1c"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"Canh l\u1EC1",
|
||||
left:"Tr\u00E1i",
|
||||
center:"Gi\u1EEFa",
|
||||
right:"Ph\u1EA3i",
|
||||
full:"\u0110\u1EA7y"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"Ch\u00E8n ng\u00E0y",
|
||||
inserttime_desc:"Ch\u00E8n gi\u1EDD",
|
||||
months_long:"Th\u00E1ng M\u1ED9t,Th\u00E1ng Hai,Th\u00E1ng Ba,Th\u00E1ng T\u01B0,Th\u00E1ng N\u0103m,Th\u00E1ng S\u00E1u,Th\u00E1ng B\u1EA3y,Th\u00E1ng T\u00E1m,Th\u00E1ng Ch\u00EDn,Th\u00E1ng M\u01B0\u1EDDi,Th\u00E1ng M\u01B0\u1EDDi M\u1ED9t,Th\u00E1ng M\u01B0\u1EDDi Hai",
|
||||
months_short:"Thg1,Thg2,Thg3,Thg4,Thg5,Thg6,Thg7,Thg8,Thg9,Th10,Th11,Th12",
|
||||
day_long:"Ch\u1EE7 Nh\u1EADt,Th\u1EE9 Hai,Th\u1EE9 Ba,Th\u1EE9 T\u01B0,Th\u1EE9 N\u0103m,Th\u1EE9 S\u00E1u,Th\u1EE9 B\u1EA3y,Ch\u1EE7 Nh\u1EADt",
|
||||
day_short:"CN,T2,T3,T4,T5,T6,T7,CN"
|
||||
},
|
||||
print:{
|
||||
print_desc:"In"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"Xem tr\u01B0\u1EDBc"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"H\u01B0\u1EDBng tr\u00E1i qua ph\u1EA3i",
|
||||
rtl_desc:"H\u01B0\u1EDBng ph\u1EA3i qua tr\u00E1i"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"Ch\u00E8n l\u1EDBp m\u1EDBi",
|
||||
forward_desc:"Di chuy\u1EC3n v\u1EC1 tr\u01B0\u1EDBc",
|
||||
backward_desc:"Di chuy\u1EC3n v\u1EC1 sau",
|
||||
absolute_desc:"\u0110\u1EA3o v\u1ECB tr\u00ED c\u1ED1 \u0111\u1ECBnh",
|
||||
content:"L\u1EDBp m\u1EDBi..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"L\u01B0u",
|
||||
cancel_desc:"H\u1EE7y b\u1ECF t\u1EA5t c\u1EA3 thay \u0111\u1ED5i"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"Ch\u00E8n k\u00FD t\u1EF1 kho\u1EA3ng c\u00E1ch kh\u00F4ng b\u1ECB ng\u1EAFt"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"Ch\u1EA1y tr\u00ECnh ki\u1EC3m tra ch\u00EDnh t\u1EA3",
|
||||
download:"ieSpell kh\u00F4ng \u0111\u01B0\u1EE3c ph\u00E1t hi\u1EC7n. B\u1EA1n c\u00F3 mu\u1ED1n c\u00E0i \u0111\u1EB7t n\u00F3 b\u00E2y gi\u1EDD?"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"Th\u01B0\u1EDBc ngang"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"Bi\u1EC3u T\u01B0\u1EE3ng C\u1EA3m X\u00FAc"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"T\u00ECm",
|
||||
replace_desc:"T\u00ECm/Thay th\u1EBF"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"Ch\u00E8n/s\u1EEDa \u1EA3nh"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"Th\u00EAm/S\u1EEDa Link"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"Bi\u00EA\u0309u ch\u01B0\u01A1ng",
|
||||
abbr_desc:"T\u00EAn vi\u1EBFt t\u1EAFt",
|
||||
acronym_desc:"T\u1EEB vi\u1EBFt t\u1EAFt",
|
||||
del_desc:"X\u00F3a",
|
||||
ins_desc:"Ch\u00E8n",
|
||||
attribs_desc:"Ch\u00E8n/S\u1EEDa c\u00E1c thu\u1ED9c t\u00EDnh"
|
||||
},
|
||||
style:{
|
||||
desc:"S\u1EEDa ki\u1EC3u d\u00E1ng CSS"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"D\u00E1nh nh\u01B0 Plain Text",
|
||||
paste_word_desc:"D\u00E1n t\u1EEB Word",
|
||||
selectall_desc:"Ch\u1ECDn t\u1EA5t",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"S\u1EED d\u1EE5ng CTRL+V tr\u00EAn b\u00E0n ph\u00EDm \u0111\u1EC3 d\u00E1n v\u0103n b\u1EA3n v\u00E0o c\u1EEDa s\u1ED5.",
|
||||
text_linebreaks:"Gi\u1EEF ng\u1EAFt d\u00F2ng",
|
||||
word_title:"S\u1EED d\u1EE5ng CTRL+V tr\u00EAn b\u00E0n ph\u00EDm \u0111\u1EC3 d\u00E1n v\u0103n b\u1EA3n v\u00E0o c\u1EEDa s\u1ED5."
|
||||
},
|
||||
table:{
|
||||
desc:"Ch\u00E8n m\u1ED9t b\u1EA3ng m\u1EDBi",
|
||||
row_before_desc:"Ch\u00E8n h\u00E0ng v\u00E0o tr\u01B0\u1EDBc",
|
||||
row_after_desc:"Ch\u00E8n h\u00E0ng v\u00E0o sau",
|
||||
delete_row_desc:"X\u00F3a d\u00F2ng",
|
||||
col_before_desc:"Ch\u00E8n c\u1ED9t v\u00E0o tr\u01B0\u1EDBc",
|
||||
col_after_desc:"Ch\u00E8n c\u1ED9t v\u00E0o sau",
|
||||
delete_col_desc:"Lo\u1EA1i b\u1ECF c\u1ED9t",
|
||||
split_cells_desc:"T\u00E1ch c\u00E1c \u00F4 \u0111\u00E3 k\u1EBFt h\u1EE3p c\u1EE7a b\u1EA3ng",
|
||||
merge_cells_desc:"K\u1EBFt h\u1EE3p c\u00E1c \u00F4 c\u1EE7a b\u1EA3ng",
|
||||
row_desc:"Thu\u1ED9c t\u00EDnh h\u00E0ng",
|
||||
cell_desc:"Thu\u1ED9c t\u00EDnh \u00F4",
|
||||
props_desc:"Thu\u1ED9c t\u00EDnh b\u1EA3ng",
|
||||
paste_row_before_desc:"D\u00E1n hang v\u00E0o tr\u01B0\u1EDBc",
|
||||
paste_row_after_desc:"D\u00E1n hang v\u00E0o sau",
|
||||
cut_row_desc:"C\u1EAFt h\u00E0ng",
|
||||
copy_row_desc:"Sao ch\u00E9p h\u00E0ng",
|
||||
del:"X\u00F3a b\u1EA3ng",
|
||||
row:"H\u00E0ng",
|
||||
col:"C\u1ED9t",
|
||||
cell:"\u00D4"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"Nh\u1EEFng thay \u0111\u1ED5i b\u1EA1n \u0111\u00E3 th\u1EF1c hi\u1EC7n s\u1EBD b\u1ECB m\u1EA5t n\u1EBFu b\u1EA1n \u0111i\u1EC1u h\u01B0\u1EDBng \u0111i t\u1EEB trang n\u00E0y.",
|
||||
restore_content:"Kh\u00F4i ph\u1EE5c n\u1ED9i dung t\u1EF1 \u0111\u1ED9ng l\u01B0u l\u1EA1i.",
|
||||
warning_message:"N\u1EBFu b\u1EA1n kh\u00F4i ph\u1EE5c l\u1EA1i n\u1ED9i dung \u0111\u00E3 l\u01B0u, b\u1EA1n s\u1EBD m\u1EA5t t\u1EA5t c\u1EA3 c\u00E1c n\u1ED9i dung m\u00E0 hi\u1EC7n \u0111ang trong tr\u00ECnh so\u1EA1n th\u1EA3o.\n\nB\u1EA1n c\u00F3 ch\u1EAFc l\u00E0 b\u1EA1n mu\u1ED1n kh\u00F4i ph\u1EE5c l\u1EA1i n\u1ED9i dung \u0111\u00E3 l\u01B0u?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"B\u1EADt/t\u1EAFt ch\u1EBF \u0111\u1ED9 to\u00E0n m\u00E0n h\u00ECnh"
|
||||
},
|
||||
media:{
|
||||
desc:"Ch\u00E8n / s\u1EEDa ph\u01B0\u01A1ng ti\u1EC7n truy\u1EC1n th\u00F4ng nh\u00FAng",
|
||||
edit:"S\u1EEDa ph\u01B0\u01A1ng ti\u1EC7n truy\u1EC1n th\u00F4ng nh\u00FAng"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"Thu\u1ED9c t\u00EDnh v\u0103n b\u1EA3n"
|
||||
},
|
||||
template:{
|
||||
desc:"Ch\u00E8n m\u1ED9t n\u1ED9i dung m\u1EABu \u0111\u1ECBnh ngh\u0129a tr\u01B0\u1EDBc"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"B\u1EB7t/T\u1EAFt c\u00E1c k\u00FD t\u1EF1 \u0111i\u1EC1u khi\u1EC3n tr\u1EF1c quan."
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"B\u1EADt/T\u1EAFt ki\u1EC3m tra ch\u00EDnh t\u1EA3",
|
||||
menu:"Thi\u1EBFt l\u1EADp ki\u1EC3m tra ch\u00EDnh t\u1EA3",
|
||||
ignore_word:"B\u1ECF qua t\u1EEB ng\u1EEF",
|
||||
ignore_words:"B\u1ECF qua t\u1EA5t c\u1EA3",
|
||||
langs:"Ng\u00F4n ng\u1EEF",
|
||||
wait:"Vui l\u00F2ng ch\u1EDD...",
|
||||
sug:"G\u1EE3i \u00FD",
|
||||
no_sug:"Kh\u00F4ng c\u00F3 g\u1EE3i \u00FD",
|
||||
no_mpell:"Kh\u00F4ng c\u00F3 l\u1ED7i ch\u00EDnh t\u1EA3 \u0111\u01B0\u1EE3c t\u00ECm th\u1EA5y."
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"Ch\u00E8n ng\u1EAFt trang."
|
||||
},
|
||||
advlist:{
|
||||
types:"Ki\u1EC3u",
|
||||
def:"M\u1EB7c \u0111\u1ECBnh",
|
||||
lower_alpha:"K\u00FD hi\u1EC7u alpha th\u01B0\u1EDDng",
|
||||
lower_greek:"K\u00FD hi\u1EC7u Hy-l\u1EA1p th\u01B0\u1EDDng",
|
||||
lower_roman:"K\u00FD hi\u1EC7u La m\u00E3 th\u01B0\u1EDDng",
|
||||
upper_alpha:"K\u00FD hi\u1EC7u alpha cao",
|
||||
upper_roman:"K\u00FD hi\u1EC7u La m\u00E3 hoa",
|
||||
circle:"Tr\u00F2ng",
|
||||
disc:"\u0110\u0129a",
|
||||
square:"Vu\u00F4ng"
|
||||
}}});
|
178
htdocs/resource2/tinymce/langs/zh.js
Normal file
178
htdocs/resource2/tinymce/langs/zh.js
Normal file
@ -0,0 +1,178 @@
|
||||
tinyMCE.addI18n({zh:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u9700\u8981\u958B\u555F\u6587\u5B57\u7DE8\u8F2F\u5668\uFF1F",
|
||||
apply:"\u5957\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u95DC\u9589",
|
||||
browse:"\u9810\u89BD",
|
||||
class_name:"\u985E\u5225",
|
||||
not_set:"--\u5C1A\u672A\u8A2D\u5B9A--",
|
||||
clipboard_msg:"\u5F88\u62B1\u6B49\uFF0C\u60A8\u7684\u700F\u89BD\u5668\u4E0D\u652F\u63F4\u8907\u88FD\u529F\u80FD\u3002",
|
||||
clipboard_no_support:"\u60A8\u7684\u700F\u89BD\u5668\u4E0D\u652F\u63F4\u8A72\u529F\u80FD\uFF0C\u8ACB\u4F7F\u7528Ctrl + C\u9375\u4EE3\u66FF\u3002",
|
||||
popup_blocked:"\u4F60\u7684\u700F\u89BD\u5668\u7981\u6B62\u4E86\u5F48\u51FA\u8996\u7A97\u3002",
|
||||
invalid_data:"\u4F60\u8F38\u5165\u7684\u8CC7\u6599\u6709\u8AA4\uFF08\u7D05\u8272\u90E8\u5206\uFF09",
|
||||
more_colors:"\u66F4\u591A\u984F\u8272..."
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5C0D\u9F4A",
|
||||
left:"\u9760\u5DE6\u5C0D\u9F4A",
|
||||
center:"\u7F6E\u4E2D\u5C0D\u9F4A",
|
||||
right:"\u9760\u53F3\u5C0D\u9F4A",
|
||||
full:"\u5DE6\u53F3\u5C0D\u9F4A"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y/%m/%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u76EE\u524D\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u76EE\u524D\u6642\u9593",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u5468\u65E5,\u5468\u4E00,\u5468\u4E8C,\u5468\u4E09,\u5468\u56DB,\u5468\u4E94,\u5468\u516D,\u5468\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5217\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9810\u89BD"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u5F9E\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u5F9E\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5716\u5C64",
|
||||
forward_desc:"\u7F6E\u524D",
|
||||
backward_desc:"\u7F6E\u5F8C",
|
||||
absolute_desc:"\u5207\u63DB\u5230\u7D55\u5C0D\u4F4D\u7F6E",
|
||||
content:"\u65B0\u5EFA\u5716\u5C64..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u5B58\u6A94",
|
||||
cancel_desc:"\u53D6\u6D88\u6240\u6709\u8B8A\u66F4"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u683C"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u62FC\u5B57\u6AA2\u67E5",
|
||||
download:"\u6AA2\u67E5\u4E0D\u5230ieSpell\u63D2\u4EF6\u7A0B\u5E8F\uFF0C\u662F\u5426\u7ACB\u5373\u5B89\u88DD\uFF1F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7DDA"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u8868\u60C5"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u641C\u5C0B",
|
||||
replace_desc:"\u641C\u5C0B/\u53D6\u4EE3"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7DE8\u8F2F\u5716\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7DE8\u8F2F\u8D85\u9023\u7D50"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u7528",
|
||||
abbr_desc:"\u7E2E\u5BEB",
|
||||
acronym_desc:"\u9996\u5B57\u6BCD\u7E2E\u5BEB",
|
||||
del_desc:"\u522A\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7DE8\u8F2F\u5C6C\u6027",
|
||||
attribs_delta_width:"40",
|
||||
attribs_delta_height:"60"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7DE8\u8F2F CSS \u6A23\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u4EE5\u7D14\u6587\u672C\u8CBC\u4E0A",
|
||||
paste_word_desc:"\u4EE5Word\u683C\u5F0F\u8CBC\u4E0A",
|
||||
selectall_desc:"\u5168\u9078",
|
||||
plaintext_mode_sticky:"\u76EE\u524D\u70BA\u7D14\u6587\u672C\u8CBC\u4E0A\u6A21\u5F0F\uFF0C\u518D\u9EDE\u64CA\u4E00\u6B21\u5207\u63DB\u56DE\u4E00\u822C\u6A21\u5F0F\u3002",
|
||||
plaintext_mode:"\u76EE\u524D\u70BA\u4E00\u822C\u8CBC\u4E0A\u6A21\u5F0F\uFF0C\u518D\u9EDE\u9EDE\u64CA\u4E00\u6B21\u5207\u63DB\u56DE\u7D14\u6587\u672C\u8CBC\u4E0A\u6A21\u5F0F\u3002"
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u7528 Ctrl+V \u5C07\u5167\u5BB9\u8CBC\u4E0A\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u865F",
|
||||
word_title:"\u7528 Ctrl+V \u5C07\u5167\u5BB9\u8CBC\u4E0A\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u5728\u4E0A\u65B9\u63D2\u5165\u884C",
|
||||
row_after_desc:"\u5728\u4E0B\u65B9\u63D2\u5165\u884C",
|
||||
delete_row_desc:"\u522A\u9664\u76EE\u524D\u884C",
|
||||
col_before_desc:"\u5728\u5DE6\u5074\u63D2\u5165\u6B04",
|
||||
col_after_desc:"\u5728\u53F3\u5074\u63D2\u5165\u6B04",
|
||||
delete_col_desc:"\u522A\u9664\u76EE\u524D\u6B04",
|
||||
split_cells_desc:"\u5206\u5272\u5132\u5B58\u683C",
|
||||
merge_cells_desc:"\u5408\u4F75\u5132\u5B58\u683C",
|
||||
row_desc:"\u884C\u5C6C\u6027",
|
||||
cell_desc:"\u5132\u5B58\u683C\u5C6C\u6027",
|
||||
props_desc:"\u8868\u683C\u5C6C\u6027",
|
||||
paste_row_before_desc:"\u5728\u4E0A\u65B9\u8CBC\u4E0A\u884C",
|
||||
paste_row_after_desc:"\u5728\u4E0B\u65B9\u8CBC\u4E0A\u884C",
|
||||
cut_row_desc:"\u526A\u4E0B\u9078\u64C7\u884C",
|
||||
copy_row_desc:"\u8907\u88FD\u9078\u64C7\u884C",
|
||||
del:"\u522A\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u6B04",
|
||||
cell:"\u5132\u5B58\u683C",
|
||||
cellprops_delta_width:"10",
|
||||
cellprops_delta_height:"10",
|
||||
table_delta_width:"40",
|
||||
table_delta_height:"60",
|
||||
merge_cells_delta_width:"40",
|
||||
merge_cells_delta_height:"40"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u60A8\u5C1A\u672A\u5132\u5B58\u5167\u5BB9\uFF0C\u60A8\u8F38\u5165\u7684\u5167\u5BB9\u53EF\u80FD\u6703\u4E1F\u5931...",
|
||||
restore_content:"\u6062\u5FA9\u81EA\u52D5\u5132\u5B58\u7684\u5167\u5BB9\u3002",
|
||||
warning_message:"\u5982\u679C\u6062\u5FA9\u5148\u524D\u5132\u5B58\u7684\u5167\u5BB9\uFF0C\u60A8\u5C07\u5931\u53BB\u7DE8\u8F2F\u5668\u4E2D\u73FE\u6709\u7684\u5167\u5BB9\u3002 \n\n\u60A8\u78BA\u5B9A\u8981\u6062\u5FA9\u5148\u524D\u5132\u5B58\u7684\u5167\u5BB9\u55CE\uFF1F"
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5168\u87A2\u5E55\u7DE8\u8F2F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7DE8\u8F2F\u5F71\u7247",
|
||||
edit:"\u7DE8\u8F2F\u5F71\u7247"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6A94\u6848\u5C6C\u6027"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9810\u8A2D\u6A21\u677F"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u986F\u793A/\u96B1\u85CF\u975E\u53EF\u898B\u5B57\u7B26"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u958B\u95DC\u62FC\u5BEB\u6AA2\u67E5",
|
||||
menu:"\u62FC\u5B57\u6AA2\u67E5\u8A2D\u5B9A",
|
||||
ignore_word:"\u5FFD\u7565",
|
||||
ignore_words:"\u5168\u90E8\u5FFD\u7565",
|
||||
langs:"\u8A9E\u8A00",
|
||||
wait:"\u8ACB\u7A0D\u5019...",
|
||||
sug:"\u5EFA\u8B70",
|
||||
no_sug:"\u7121\u5EFA\u8B70",
|
||||
no_mpell:"\u7121\u62FC\u5BEB\u932F\u8AA4"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9801\u7B26\u865F"
|
||||
},
|
||||
advlist:{
|
||||
types:"\u6A23\u5F0F",
|
||||
def:"\u9810\u8A2D",
|
||||
lower_alpha:"\u5C0F\u5BEB\u7684\u82F1\u6587\u5B57",
|
||||
lower_greek:"\u5C0F\u5BEB\u7684\u5E0C\u814A\u6587\u5B57",
|
||||
lower_roman:"\u5C0F\u5BEB\u7684\u7F85\u99AC\u6578\u5B57",
|
||||
upper_alpha:"\u5927\u5BEB\u7684\u82F1\u6587\u5B57",
|
||||
upper_roman:"\u5927\u5BEB\u7684\u7F85\u99AC\u6578\u5B57",
|
||||
circle:"\u5713\u5708",
|
||||
disc:"\u5713\u9EDE",
|
||||
square:"\u65B9\u5F62"
|
||||
}}});
|
178
htdocs/resource2/tinymce/langs/zu.js
Normal file
178
htdocs/resource2/tinymce/langs/zu.js
Normal file
@ -0,0 +1,178 @@
|
||||
tinyMCE.addI18n({zu:{
|
||||
common:{
|
||||
edit_confirm:"\u662F\u5426\u5728\u6B64textarea\u6807\u7B7E\u5185\u4F7F\u7528\"\u6240\u89C1\u5373\u6240\u5F97\"\u6A21\u5F0F\uFF1F",
|
||||
apply:"\u5E94\u7528",
|
||||
insert:"\u63D2\u5165",
|
||||
update:"\u66F4\u65B0",
|
||||
cancel:"\u53D6\u6D88",
|
||||
close:"\u5173\u95ED",
|
||||
browse:"\u6D41\u89C8",
|
||||
class_name:"\u6837\u5F0F",
|
||||
not_set:"--\u672A\u8BBE\u7F6E--",
|
||||
clipboard_msg:"\u590D\u5236\u3001\u526A\u4E0B\u3001\u8D34\u4E0A\u529F\u80FD\u5728Mozilla\u548CFirefox\u4E2D\u4E0D\u80FD\u4F7F\u7528\u3002 \n\u662F\u5426\u9700\u8981\u4E86\u89E3\u66F4\u591A\u6709\u5173\u6B64\u95EE\u9898\u7684\u8D44\u8BAF\uFF1F",
|
||||
clipboard_no_support:"\u8FD8\u4E0D\u652F\u63F4\u60A8\u7684\u6D41\u89C8\u5668\uFF0C\u8BF7\u4F7F\u7528\u952E\u76D8\u5FEB\u901F\u952E",
|
||||
popup_blocked:"\u62B1\u6B49\uFF01\u5FEB\u663E\u89C6\u7A97\u5DF2\u88AB\u963B\u6B62\uFF0C\u8BF7\u8C03\u6574\u6D41\u89C8\u5668\u8BBE\u7F6E\uFF0C\u5141\u8BB8\u6B64\u7F51\u7AD9\u53EF\u5F39\u51FA\u65B0\u89C6\u7A97\uFF0C\u4EE5\u4FBF\u4F7F\u7528\u6B64\u5DE5\u5177",
|
||||
invalid_data:"\u9519\u8BEF:\u65E0\u6548\u8F93\u5165\u503C\uFF0C\u5DF2\u6807\u8BB0\u4E3A\u7EA2\u8272\u3002",
|
||||
more_colors:"\u66F4\u591A\u989C\u8272"
|
||||
},
|
||||
contextmenu:{
|
||||
align:"\u5BF9\u9F50\u65B9\u5F0F",
|
||||
left:"\u9760\u5DE6\u5BF9\u9F50",
|
||||
center:"\u5C45\u4E2D\u5BF9\u9F50",
|
||||
right:"\u9760\u53F3\u5BF9\u9F50",
|
||||
full:"\u4E24\u7AEF\u5BF9\u9F50"
|
||||
},
|
||||
insertdatetime:{
|
||||
date_fmt:"%Y-%m-%d",
|
||||
time_fmt:"%H:%M:%S",
|
||||
insertdate_desc:"\u63D2\u5165\u4ECA\u5929\u65E5\u671F",
|
||||
inserttime_desc:"\u63D2\u5165\u73B0\u5728\u65F6\u95F4",
|
||||
months_long:"\u4E00\u6708,\u4E8C\u6708,\u4E09\u6708,\u56DB\u6708,\u4E94\u6708,\u516D\u6708,\u4E03\u6708,\u516B\u6708,\u4E5D\u6708,\u5341\u6708,\u5341\u4E00\u6708,\u5341\u4E8C\u6708",
|
||||
months_short:"1\u6708,2\u6708,3\u6708,4\u6708,5\u6708,6\u6708,7\u6708,8\u6708,9\u6708,10\u6708,11\u6708,12\u6708",
|
||||
day_long:"\u661F\u671F\u65E5,\u661F\u671F\u4E00,\u661F\u671F\u4E8C,\u661F\u671F\u4E09,\u661F\u671F\u56DB,\u661F\u671F\u4E94,\u661F\u671F\u516D,\u661F\u671F\u65E5",
|
||||
day_short:"\u5468\u65E5,\u5468\u4E00,\u5468\u4E8C,\u5468\u4E09,\u5468\u56DB,\u5468\u4E94,\u5468\u516D,\u5468\u65E5"
|
||||
},
|
||||
print:{
|
||||
print_desc:"\u5217\u5370"
|
||||
},
|
||||
preview:{
|
||||
preview_desc:"\u9884\u89C8"
|
||||
},
|
||||
directionality:{
|
||||
ltr_desc:"\u6587\u5B57\u4ECE\u5DE6\u5230\u53F3",
|
||||
rtl_desc:"\u6587\u5B57\u4ECE\u53F3\u5230\u5DE6"
|
||||
},
|
||||
layer:{
|
||||
insertlayer_desc:"\u63D2\u5165\u5C42",
|
||||
forward_desc:"\u7F6E\u524D",
|
||||
backward_desc:"\u7F6E\u540E",
|
||||
absolute_desc:"\u5F00\u5173\u7EDD\u5BF9\u4F4D\u7F6E",
|
||||
content:"\u65B0\u589E\u5C42..."
|
||||
},
|
||||
save:{
|
||||
save_desc:"\u4FDD\u5B58",
|
||||
cancel_desc:"\u53D6\u6D88\u6240\u6709\u66F4\u6539"
|
||||
},
|
||||
nonbreaking:{
|
||||
nonbreaking_desc:"\u63D2\u5165\u7A7A\u767D\u683C"
|
||||
},
|
||||
iespell:{
|
||||
iespell_desc:"\u62FC\u5199\u68C0\u67E5",
|
||||
download:"\u672A\u68C0\u6D4B\u5230ieSpell\u7684\u5B58\u5728\u3002\u662F\u5426\u73B0\u5728\u7ACB\u5373\u5B89\u88C5\uFF1F"
|
||||
},
|
||||
advhr:{
|
||||
advhr_desc:"\u6C34\u5E73\u7EBF"
|
||||
},
|
||||
emotions:{
|
||||
emotions_desc:"\u56FE\u91CA"
|
||||
},
|
||||
searchreplace:{
|
||||
search_desc:"\u67E5\u627E",
|
||||
replace_desc:"\u67E5\u627E/\u66FF\u6362"
|
||||
},
|
||||
advimage:{
|
||||
image_desc:"\u63D2\u5165/\u7F16\u8F91\u56FE\u7247"
|
||||
},
|
||||
advlink:{
|
||||
link_desc:"\u63D2\u5165/\u7F16\u8F91\u8FDE\u7ED3"
|
||||
},
|
||||
xhtmlxtras:{
|
||||
cite_desc:"\u5F15\u6587",
|
||||
abbr_desc:"\u7F29\u5199",
|
||||
acronym_desc:"\u9996\u5B57\u7F29\u5199",
|
||||
del_desc:"\u5220\u9664",
|
||||
ins_desc:"\u63D2\u5165",
|
||||
attribs_desc:"\u63D2\u5165/\u7F16\u8F91\u5C5E\u6027",
|
||||
attribs_delta_width:"40",
|
||||
attribs_delta_height:"60"
|
||||
},
|
||||
style:{
|
||||
desc:"\u7F16\u8F91CSS\u6837\u5F0F\u8868"
|
||||
},
|
||||
paste:{
|
||||
paste_text_desc:"\u4EE5\u7EAF\u6587\u5B57\u8D34\u4E0A",
|
||||
paste_word_desc:"\u4ECEWord\u8D34\u4E0A",
|
||||
selectall_desc:"\u5168\u9009",
|
||||
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.",
|
||||
plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
|
||||
},
|
||||
paste_dlg:{
|
||||
text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002",
|
||||
text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
|
||||
word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002"
|
||||
},
|
||||
table:{
|
||||
desc:"\u63D2\u5165\u65B0\u8868\u683C",
|
||||
row_before_desc:"\u63D2\u5165\u4E0A\u65B9\u884C",
|
||||
row_after_desc:"\u63D2\u5165\u4E0B\u65B9\u884C",
|
||||
delete_row_desc:"\u5220\u9664\u6240\u5728\u884C",
|
||||
col_before_desc:"\u63D2\u5165\u5DE6\u65B9\u5217",
|
||||
col_after_desc:"\u63D2\u5165\u53F3\u65B9\u5217",
|
||||
delete_col_desc:"\u5220\u9664\u6240\u5728\u5217",
|
||||
split_cells_desc:"\u5206\u5272\u50A8\u5B58\u683C",
|
||||
merge_cells_desc:"\u5408\u5E76\u50A8\u5B58\u683C",
|
||||
row_desc:"\u884C\u5C5E\u6027",
|
||||
cell_desc:"\u50A8\u5B58\u683C\u5C5E\u6027",
|
||||
props_desc:"\u8868\u683C\u5C5E\u6027",
|
||||
paste_row_before_desc:"\u8D34\u5728\u4E0A\u884C",
|
||||
paste_row_after_desc:"\u8D34\u5728\u4E0B\u884C",
|
||||
cut_row_desc:"\u526A\u4E0B\u9009\u62E9\u884C",
|
||||
copy_row_desc:"\u590D\u5236\u9009\u62E9\u884C",
|
||||
del:"\u5220\u9664\u8868\u683C",
|
||||
row:"\u884C",
|
||||
col:"\u5217",
|
||||
cell:"\u50A8\u5B58\u683C",
|
||||
cellprops_delta_width:"10",
|
||||
cellprops_delta_height:"10",
|
||||
table_delta_width:"40",
|
||||
table_delta_height:"60",
|
||||
merge_cells_delta_width:"40",
|
||||
merge_cells_delta_height:"40"
|
||||
},
|
||||
autosave:{
|
||||
unload_msg:"\u5982\u679C\u79BB\u5F00\u6B64\u9875\u9762\u5C06\u5BFC\u81F4\u6240\u505A\u7684\u66F4\u6539\u5168\u90E8\u4E22\u5931\u3002",
|
||||
restore_content:"Restore auto-saved content.",
|
||||
warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
|
||||
},
|
||||
fullscreen:{
|
||||
desc:"\u5F00\u5173\u5168\u5C4F\u6A21\u5F0F"
|
||||
},
|
||||
media:{
|
||||
desc:"\u63D2\u5165/\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53",
|
||||
edit:"\u7F16\u8F91\u5D4C\u5165\u5A92\u4F53"
|
||||
},
|
||||
fullpage:{
|
||||
desc:"\u6863\u6848\u5C5E\u6027"
|
||||
},
|
||||
template:{
|
||||
desc:"\u63D2\u5165\u9884\u5B9A\u7684\u8303\u672C\u5185\u5BB9"
|
||||
},
|
||||
visualchars:{
|
||||
desc:"\u663E\u793A\u63A7\u5236\u7B26\u53F7\u5F00/\u5173\u3002"
|
||||
},
|
||||
spellchecker:{
|
||||
desc:"\u5F00\u5173\u62FC\u5199\u68C0\u67E5",
|
||||
menu:"\u62FC\u5199\u68C0\u67E5\u8BBE\u7F6E",
|
||||
ignore_word:"\u7565\u8FC7",
|
||||
ignore_words:"\u5168\u90E8\u7565\u8FC7",
|
||||
langs:"\u8BED\u8A00",
|
||||
wait:"\u8BF7\u7A0D\u5019...",
|
||||
sug:"\u63A8\u8350\u5B57\u8BCD",
|
||||
no_sug:"\u65E0\u62FC\u5199\u63A8\u8350",
|
||||
no_mpell:"\u672A\u53D1\u73B0\u62FC\u5199\u9519\u8BEF"
|
||||
},
|
||||
pagebreak:{
|
||||
desc:"\u63D2\u5165\u5206\u9875\u7B26\u53F7"
|
||||
},
|
||||
advlist:{
|
||||
types:"Types",
|
||||
def:"Default",
|
||||
lower_alpha:"Lower alpha",
|
||||
lower_greek:"Lower greek",
|
||||
lower_roman:"Lower roman",
|
||||
upper_alpha:"Upper alpha",
|
||||
upper_roman:"Upper roman",
|
||||
circle:"Circle",
|
||||
disc:"Disc",
|
||||
square:"Square"
|
||||
}}});
|
504
htdocs/resource2/tinymce/license.txt
Normal file
504
htdocs/resource2/tinymce/license.txt
Normal file
@ -0,0 +1,504 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
||||
|
||||
|
5
htdocs/resource2/tinymce/plugins/advhr/css/advhr.css
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/css/advhr.css
Normal file
@ -0,0 +1,5 @@
|
||||
input.radio {border:1px none #000; background:transparent; vertical-align:middle;}
|
||||
.panel_wrapper div.current {height:80px;}
|
||||
#width {width:50px; vertical-align:middle;}
|
||||
#width2 {width:50px; vertical-align:middle;}
|
||||
#size {width:100px;}
|
1
htdocs/resource2/tinymce/plugins/advhr/editor_plugin.js
Normal file
1
htdocs/resource2/tinymce/plugins/advhr/editor_plugin.js
Normal file
@ -0,0 +1 @@
|
||||
(function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})();
|
57
htdocs/resource2/tinymce/plugins/advhr/editor_plugin_src.js
Normal file
57
htdocs/resource2/tinymce/plugins/advhr/editor_plugin_src.js
Normal file
@ -0,0 +1,57 @@
|
||||
/**
|
||||
* editor_plugin_src.js
|
||||
*
|
||||
* Copyright 2009, Moxiecode Systems AB
|
||||
* Released under LGPL License.
|
||||
*
|
||||
* License: http://tinymce.moxiecode.com/license
|
||||
* Contributing: http://tinymce.moxiecode.com/contributing
|
||||
*/
|
||||
|
||||
(function() {
|
||||
tinymce.create('tinymce.plugins.AdvancedHRPlugin', {
|
||||
init : function(ed, url) {
|
||||
// Register commands
|
||||
ed.addCommand('mceAdvancedHr', function() {
|
||||
ed.windowManager.open({
|
||||
file : url + '/rule.htm',
|
||||
width : 250 + parseInt(ed.getLang('advhr.delta_width', 0)),
|
||||
height : 160 + parseInt(ed.getLang('advhr.delta_height', 0)),
|
||||
inline : 1
|
||||
}, {
|
||||
plugin_url : url
|
||||
});
|
||||
});
|
||||
|
||||
// Register buttons
|
||||
ed.addButton('advhr', {
|
||||
title : 'advhr.advhr_desc',
|
||||
cmd : 'mceAdvancedHr'
|
||||
});
|
||||
|
||||
ed.onNodeChange.add(function(ed, cm, n) {
|
||||
cm.setActive('advhr', n.nodeName == 'HR');
|
||||
});
|
||||
|
||||
ed.onClick.add(function(ed, e) {
|
||||
e = e.target;
|
||||
|
||||
if (e.nodeName === 'HR')
|
||||
ed.selection.select(e);
|
||||
});
|
||||
},
|
||||
|
||||
getInfo : function() {
|
||||
return {
|
||||
longname : 'Advanced HR',
|
||||
author : 'Moxiecode Systems AB',
|
||||
authorurl : 'http://tinymce.moxiecode.com',
|
||||
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr',
|
||||
version : tinymce.majorVersion + "." + tinymce.minorVersion
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
// Register plugin
|
||||
tinymce.PluginManager.add('advhr', tinymce.plugins.AdvancedHRPlugin);
|
||||
})();
|
43
htdocs/resource2/tinymce/plugins/advhr/js/rule.js
Normal file
43
htdocs/resource2/tinymce/plugins/advhr/js/rule.js
Normal file
@ -0,0 +1,43 @@
|
||||
var AdvHRDialog = {
|
||||
init : function(ed) {
|
||||
var dom = ed.dom, f = document.forms[0], n = ed.selection.getNode(), w;
|
||||
|
||||
w = dom.getAttrib(n, 'width');
|
||||
f.width.value = w ? parseInt(w) : (dom.getStyle('width') || '');
|
||||
f.size.value = dom.getAttrib(n, 'size') || parseInt(dom.getStyle('height')) || '';
|
||||
f.noshade.checked = !!dom.getAttrib(n, 'noshade') || !!dom.getStyle('border-width');
|
||||
selectByValue(f, 'width2', w.indexOf('%') != -1 ? '%' : 'px');
|
||||
},
|
||||
|
||||
update : function() {
|
||||
var ed = tinyMCEPopup.editor, h, f = document.forms[0], st = '';
|
||||
|
||||
h = '<hr';
|
||||
|
||||
if (f.size.value) {
|
||||
h += ' size="' + f.size.value + '"';
|
||||
st += ' height:' + f.size.value + 'px;';
|
||||
}
|
||||
|
||||
if (f.width.value) {
|
||||
h += ' width="' + f.width.value + (f.width2.value == '%' ? '%' : '') + '"';
|
||||
st += ' width:' + f.width.value + (f.width2.value == '%' ? '%' : 'px') + ';';
|
||||
}
|
||||
|
||||
if (f.noshade.checked) {
|
||||
h += ' noshade="noshade"';
|
||||
st += ' border-width: 1px; border-style: solid; border-color: #CCCCCC; color: #ffffff;';
|
||||
}
|
||||
|
||||
if (ed.settings.inline_styles)
|
||||
h += ' style="' + tinymce.trim(st) + '"';
|
||||
|
||||
h += ' />';
|
||||
|
||||
ed.execCommand("mceInsertContent", false, h);
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.requireLangPack();
|
||||
tinyMCEPopup.onInit.add(AdvHRDialog.init, AdvHRDialog);
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/ar_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/ar_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('ar.advhr_dlg',{
|
||||
width:"Width",
|
||||
size:"Height",
|
||||
noshade:"No shadow"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/az_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/az_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('az.advhr_dlg',{
|
||||
width:"Eni",
|
||||
size:"H\u00FCnd\u00FCrl\u00FCy\u00FC",
|
||||
noshade:"K\u00F6lg\u0259 yoxdur"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/be_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/be_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('be.advhr_dlg',{
|
||||
width:"\u0428\u044B\u0440\u044B\u043D\u044F",
|
||||
size:"\u0412\u044B\u0448\u044B\u043D\u044F",
|
||||
noshade:"\u041D\u044F\u043C\u0430 \u0446\u0435\u043D\u044E"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/bg_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/bg_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('bg.advhr_dlg',{
|
||||
width:"\u0428\u0438\u0440\u0438\u043D\u0430",
|
||||
size:"\u0412\u0438\u0441\u043E\u0447\u0438\u043D\u0430",
|
||||
noshade:"\u0411\u0435\u0437 \u0441\u044F\u043D\u043A\u0430"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/bn_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/bn_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('bn.advhr_dlg',{
|
||||
width:"Width",
|
||||
size:"Height",
|
||||
noshade:"No shadow"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/br_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/br_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('br.advhr_dlg',{
|
||||
width:"Largura",
|
||||
size:"Altura",
|
||||
noshade:"Sem sombra"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/bs_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/bs_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('bs.advhr_dlg',{
|
||||
width:"\u0160irina",
|
||||
size:"Visina",
|
||||
noshade:"Bez sjene"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/ca_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/ca_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('ca.advhr_dlg',{
|
||||
width:"Amplada",
|
||||
size:"Al\u00E7ada",
|
||||
noshade:"Sense sombra"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/ch_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/ch_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('ch.advhr_dlg',{
|
||||
width:"\u5BBD",
|
||||
size:"\u957F",
|
||||
noshade:"\u65E0\u9634\u5F71"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/cs_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/cs_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('cs.advhr_dlg',{
|
||||
width:"\u0160\u00ED\u0159ka",
|
||||
size:"V\u00FD\u0161ka",
|
||||
noshade:"Bez st\u00EDnu"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/cy_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/cy_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('cy.advhr_dlg',{
|
||||
width:"Lled",
|
||||
size:"Uchder",
|
||||
noshade:"Dim cysgod"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/da_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/da_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('da.advhr_dlg',{
|
||||
width:"Bredde",
|
||||
size:"H\u00F8jde",
|
||||
noshade:"Ingen skygge"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/de_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/de_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('de.advhr_dlg',{
|
||||
width:"Breite",
|
||||
size:"H\u00F6he",
|
||||
noshade:"Kein Schatten"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/dv_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/dv_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('dv.advhr_dlg',{
|
||||
width:"Width",
|
||||
size:"Height",
|
||||
noshade:"No shadow"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/el_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/el_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('el.advhr_dlg',{
|
||||
width:"\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2",
|
||||
size:"\u038E\u03C8\u03BF\u03C2",
|
||||
noshade:"\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C3\u03BA\u03B9\u03AC"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/en_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/en_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('en.advhr_dlg',{
|
||||
width:"Width",
|
||||
size:"Height",
|
||||
noshade:"No shadow"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/es_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/es_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('es.advhr_dlg',{
|
||||
width:"Ancho",
|
||||
size:"Alto",
|
||||
noshade:"Sin sombra"
|
||||
});
|
5
htdocs/resource2/tinymce/plugins/advhr/langs/et_dlg.js
Normal file
5
htdocs/resource2/tinymce/plugins/advhr/langs/et_dlg.js
Normal file
@ -0,0 +1,5 @@
|
||||
tinyMCE.addI18n('et.advhr_dlg',{
|
||||
width:"Laius",
|
||||
size:"K\u00F5rgus",
|
||||
noshade:"Ilma varjuta"
|
||||
});
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user