Commit a63b86f5 authored by Frank Bergmann's avatar Frank Bergmann

- OpenACS 5.6

parent 7bc8adb6
tinyMCE.importPluginLanguagePack('template');var TinyMCE_TemplatePlugin={getInfo:function(){return{longname:'Template plugin',author:'Your name',authorurl:'http://www.yoursite.com',infourl:'http://www.yoursite.com/docs/template.html',version:"1.0"}},initInstance:function(inst){alert("Initialization parameter:"+tinyMCE.getParam("template_someparam",false));inst.addShortcut('ctrl','t','lang_template_desc','mceTemplate')},removeInstance:function(inst){},getControlHTML:function(cn){switch(cn){case"template":return tinyMCE.getButtonHTML(cn,'lang_template_desc','{$pluginurl}/images/template.gif','mceTemplate',true)}return""},execCommand:function(editor_id,element,command,user_interface,value){switch(command){case"mceTemplate":if(user_interface){var template=new Array();template['file']='../../plugins/template/popup.htm';template['width']=300;template['height']=200;tinyMCE.openWindow(template,{editor_id:editor_id,some_custom_arg:"somecustomdata"});tinyMCE.triggerNodeChange(false)}else{alert("execCommand: mceTemplate gets called from popup.")}return true}return false},handleNodeChange:function(editor_id,node,undo_index,undo_levels,visual_aid,any_selection){if(node.parentNode.nodeName=="STRONG"||node.parentNode.nodeName=="B"){tinyMCE.switchClass(editor_id+'_template','mceButtonSelected');return true}tinyMCE.switchClass(editor_id+'_template','mceButtonNormal')},setupContent:function(editor_id,body,doc){},onChange:function(inst){},handleEvent:function(e){top.status="template plugin event: "+e.type;return true;},cleanup:function(type,content,inst){switch(type){case"get_from_editor":alert("[FROM] Value HTML string: "+content);break;case"insert_to_editor":alert("[TO] Value HTML string: "+content);break;case"get_from_editor_dom":alert("[FROM] Value DOM Element "+content.innerHTML);break;case"insert_to_editor_dom":alert("[TO] Value DOM Element: "+content.innerHTML);break}return content},_someInternalFunction:function(a,b){return 1}};tinyMCE.addPlugin("template",TinyMCE_TemplatePlugin);
\ No newline at end of file
/**
* $Id$
*
* @author Moxiecode
* @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
*/
/* Import plugin specific language pack */
tinyMCE.importPluginLanguagePack('template');
/****
* Steps for creating a plugin from this template:
*
* 1. Change all "template" to the name of your plugin.
* 2. Remove all the callbacks in this file that you don't need.
* 3. Remove the popup.htm file if you don't need any popups.
* 4. Add your custom logic to the callbacks you needed.
* 5. Write documentation in a readme.txt file on how to use the plugin.
* 6. Upload it under the "Plugins" section at sourceforge.
*
****/
// Singleton class
var TinyMCE_TemplatePlugin = {
/**
* Returns information about the plugin as a name/value array.
* The current keys are longname, author, authorurl, infourl and version.
*
* @returns Name/value array containing information about the plugin.
* @type Array
*/
getInfo : function() {
return {
longname : 'Template plugin',
author : 'Your name',
authorurl : 'http://www.yoursite.com',
infourl : 'http://www.yoursite.com/docs/template.html',
version : "1.0"
};
},
/**
* Gets executed when a TinyMCE editor instance is initialized.
*
* @param {TinyMCE_Control} Initialized TinyMCE editor control instance.
*/
initInstance : function(inst) {
// You can take out plugin specific parameters
alert("Initialization parameter:" + tinyMCE.getParam("template_someparam", false));
// Register custom keyboard shortcut
inst.addShortcut('ctrl', 't', 'lang_template_desc', 'mceTemplate');
},
/**
* Gets executed when a TinyMCE editor instance is removed.
*
* @param {TinyMCE_Control} Removed TinyMCE editor control instance.
*/
removeInstance : function(inst) {
// Cleanup instance resources
},
/**
* Returns the HTML code for a specific control or empty string if this plugin doesn't have that control.
* A control can be a button, select list or any other HTML item to present in the TinyMCE user interface.
* The variable {$editor_id} will be replaced with the current editor instance id and {$pluginurl} will be replaced
* with the URL of the plugin. Language variables such as {$lang_somekey} will also be replaced with contents from
* the language packs.
*
* @param {string} cn Editor control/button name to get HTML for.
* @return HTML code for a specific control or empty string.
* @type string
*/
getControlHTML : function(cn) {
switch (cn) {
case "template":
return tinyMCE.getButtonHTML(cn, 'lang_template_desc', '{$pluginurl}/images/template.gif', 'mceTemplate', true);
}
return "";
},
/**
* Executes a specific command, this function handles plugin commands.
*
* @param {string} editor_id TinyMCE editor instance id that issued the command.
* @param {HTMLElement} element Body or root element for the editor instance.
* @param {string} command Command name to be executed.
* @param {string} user_interface True/false if a user interface should be presented.
* @param {mixed} value Custom value argument, can be anything.
* @return true/false if the command was executed by this plugin or not.
* @type
*/
execCommand : function(editor_id, element, command, user_interface, value) {
// Handle commands
switch (command) {
// Remember to have the "mce" prefix for commands so they don't intersect with built in ones in the browser.
case "mceTemplate":
// Show UI/Popup
if (user_interface) {
// Open a popup window and send in some custom data in a window argument
var template = new Array();
template['file'] = '../../plugins/template/popup.htm'; // Relative to theme
template['width'] = 300;
template['height'] = 200;
tinyMCE.openWindow(template, {editor_id : editor_id, some_custom_arg : "somecustomdata"});
// Let TinyMCE know that something was modified
tinyMCE.triggerNodeChange(false);
} else {
// Do a command this gets called from the template popup
alert("execCommand: mceTemplate gets called from popup.");
}
return true;
}
// Pass to next handler in chain
return false;
},
/**
* Gets called ones the cursor/selection in a TinyMCE instance changes. This is useful to enable/disable
* button controls depending on where the user are and what they have selected. This method gets executed
* alot and should be as performance tuned as possible.
*
* @param {string} editor_id TinyMCE editor instance id that was changed.
* @param {HTMLNode} node Current node location, where the cursor is in the DOM tree.
* @param {int} undo_index The current undo index, if this is -1 custom undo/redo is disabled.
* @param {int} undo_levels The current undo levels, if this is -1 custom undo/redo is disabled.
* @param {boolean} visual_aid Is visual aids enabled/disabled ex: dotted lines on tables.
* @param {boolean} any_selection Is there any selection at all or is there only a cursor.
*/
handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
// Select template button if parent node is a strong or b
if (node.parentNode.nodeName == "STRONG" || node.parentNode.nodeName == "B") {
tinyMCE.switchClass(editor_id + '_template', 'mceButtonSelected');
return true;
}
// Deselect template button
tinyMCE.switchClass(editor_id + '_template', 'mceButtonNormal');
},
/**
* Gets called when a TinyMCE editor instance gets filled with content on startup.
*
* @param {string} editor_id TinyMCE editor instance id that was filled with content.
* @param {HTMLElement} body HTML body element of editor instance.
* @param {HTMLDocument} doc HTML document instance.
*/
setupContent : function(editor_id, body, doc) {
},
/**
* Gets called when the contents of a TinyMCE area is modified, in other words when a undo level is
* added.
*
* @param {TinyMCE_Control} inst TinyMCE editor area control instance that got modified.
*/
onChange : function(inst) {
},
/**
* Gets called when TinyMCE handles events such as keydown, mousedown etc. TinyMCE
* doesn't listen on all types of events so custom event handling may be required for
* some purposes.
*
* @param {Event} e HTML editor event reference.
* @return true - pass to next handler in chain, false - stop chain execution
* @type boolean
*/
handleEvent : function(e) {
// Display event type in statusbar
top.status = "template plugin event: " + e.type;
return true; // Pass to next handler
},
/**
* Gets called when HTML contents is inserted or retrived from a TinyMCE editor instance.
* The type parameter contains what type of event that was performed and what format the content is in.
* Possible valuses for type is get_from_editor, insert_to_editor, get_from_editor_dom, insert_to_editor_dom.
*
* @param {string} type Cleanup event type.
* @param {mixed} content Editor contents that gets inserted/extracted can be a string or DOM element.
* @param {TinyMCE_Control} inst TinyMCE editor instance control that performes the cleanup.
* @return New content or the input content depending on action.
* @type string
*/
cleanup : function(type, content, inst) {
switch (type) {
case "get_from_editor":
alert("[FROM] Value HTML string: " + content);
// Do custom cleanup code here
break;
case "insert_to_editor":
alert("[TO] Value HTML string: " + content);
// Do custom cleanup code here
break;
case "get_from_editor_dom":
alert("[FROM] Value DOM Element " + content.innerHTML);
// Do custom cleanup code here
break;
case "insert_to_editor_dom":
alert("[TO] Value DOM Element: " + content.innerHTML);
// Do custom cleanup code here
break;
}
return content;
},
// Private plugin internal methods
/**
* This is just a internal plugin method, prefix all internal methods with a _ character.
* The prefix is needed so they doesn't collide with future TinyMCE callback functions.
*
* @param {string} a Some arg1.
* @param {string} b Some arg2.
* @return Some return.
* @type string
*/
_someInternalFunction : function(a, b) {
return 1;
}
};
// Adds the plugin class to the list of available TinyMCE plugins
tinyMCE.addPlugin("template", TinyMCE_TemplatePlugin);
// UK lang variables
/* Remember to namespace the language parameters lang_<your plugin>_<some name> */
tinyMCE.addToLang('',{
template_title : 'This is just a template popup',
template_desc : 'This is just a template button'
});
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{$lang_template_title}</title>
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
<script language="javascript" type="text/javascript">
<!--
function init() {
var inst = tinyMCE.selectedInstance;
var elm = inst.getFocusElement();
alert("Got a window argument from plugin: " + tinyMCE.getWindowArg('some_custom_arg'));
// Set the form item value to the selected node element name
document.forms[0].nodename.value = elm.nodeName;
}
function insertSomething() {
// Execute the mceTemplate command without UI this time
tinyMCEPopup.execCommand('mceTemplate');
// Close the dialog
tinyMCEPopup.close();
}
//-->
</script>
<base target="_self" />
</head>
<body onload="tinyMCEPopup.executeOnLoad('init();');">
<form onsubmit="insert();return false;">
<h3>{$lang_template_title}</h3>
<!-- Gets filled with the selected elements name -->
<div style="margin-top: 10px; margin-bottom: 10px">
The selected element name: <input type="text" name="nodename" />
</div>
<div class="mceActionPanel">
<div style="float: left">
<input type="button" id="insert" name="insert" value="{$lang_insert}" onclick="insertSomething();" />
</div>
<div style="float: right">
<input type="button" id="cancel" name="cancel" value="{$lang_cancel}" onclick="tinyMCEPopup.close();" />
</div>
</div>
</form>
</body>
</html>
This is a template/tutorial plugin that where created to help you in the development of own plugins for TinyMCE.
\ No newline at end of file
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;}
(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)})();
\ No newline at end of file
/**
* $Id$
*
* @author Moxiecode
* @copyright Copyright 2004-2008, Moxiecode Systems AB, All rights reserved.
*/
(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);
})();
\ No newline at end of file
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);
function init() {
tinyMCEPopup.resizeToInnerSize();
var formObj = document.forms[0];
formObj.width.value = tinyMCE.getWindowArg('width');
formObj.size.value = tinyMCE.getWindowArg('size');
formObj.insert.value = tinyMCE.getLang('lang_' + tinyMCE.getWindowArg('mceDo'),'Insert',true);
if (tinyMCE.getWindowArg('noshade')) {
formObj.noshade.checked = true;
}
if (tinyMCE.getWindowArg('width').lastIndexOf('%')!=-1) {
formObj.width2.value = "%";
formObj.width.value = formObj.width.value.substring(0,formObj.width.value.length-1);
}
}
function insertHR() {
var formObj = document.forms[0];
var width = formObj.width.value;
var size = formObj.size.value;
var html = '<hr';
if (size!='' && size!=0) {
html += ' size="' + size + '"';
}
if (width!='' && width!=0) {
html += ' width="' + width;
if (formObj.width2.value=='%') {
html += '%';
}
html += '"';
}
if (formObj.noshade.checked==true) {
html += ' noshade="noshade"';
}
html += ' />';
tinyMCEPopup.execCommand("mceInsertContent", true, html);
tinyMCEPopup.close();
}
function cancelAction() {
tinyMCEPopup.close();
}
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"
});
\ No newline at end of file
tinyMCE.addI18n('ca.advhr_dlg',{
width:"Amplada",
size:"Al\u00E7ada",
noshade:"Sense ombra"
});
\ No newline at end of file
tinyMCE.addI18n('da.advhr_dlg',{
width:"Bredde",
size:"H\u00F8jde",
noshade:"Ingen skygge"
});
\ No newline at end of file
tinyMCE.addI18n('de.advhr_dlg',{
width:"Breite",
size:"H\u00F6he",
noshade:"Kein Schatten"
});
\ No newline at end of file
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"
});
\ No newline at end of file
// UK lang variables
tinyMCE.addToLang('',{
insert_advhr_desc : 'Horizontale rule',
insert_advhr_width : 'Width',
insert_advhr_size : 'Height',
insert_advhr_noshade : 'No shadow'
});
tinyMCE.addI18n('en.advhr_dlg',{
width:"Width",
size:"Height",
noshade:"No shadow"
});
\ No newline at end of file
tinyMCE.addI18n('es.advhr_dlg',{
width:"Ancho",
size:"Alto",
noshade:"Sin sombra"
});
\ No newline at end of file
tinyMCE.addI18n('et.advhr_dlg',{
width:"Laius",
size:"K\u00F5rgus",
noshade:"Ilma varjuta"
});
\ No newline at end of file
tinyMCE.addI18n('fa.advhr_dlg',{
width:"\u067E\u0647\u0646\u0627",
size:"\u0627\u0631\u062A\u0641\u0627\u0639",
noshade:"\u0628\u062F\u0648\u0646 \u0633\u0627\u06CC\u0647"
});
\ No newline at end of file
tinyMCE.addI18n('fi.advhr_dlg',{
width:"Leveys",
size:"Korkeus",
noshade:"Ei varjoa"
});
\ No newline at end of file
tinyMCE.addI18n('fr.advhr_dlg',{
width:"Largeur",
size:"Hauteur",
noshade:"Pas d'ombre"
});
\ No newline at end of file
tinyMCE.addI18n('gl.advhr_dlg',{
width:"Ancho",
size:"Alto",
noshade:"Sen sombra"
});
\ No newline at end of file
tinyMCE.addI18n('hr.advhr_dlg',{
width:"\u0160irina",
size:"Visina",
noshade:"Bez sjene"
});
\ No newline at end of file
tinyMCE.addI18n('hu.advhr_dlg',{
width:"Sz\u00E9less\u00E9g",
size:"Magass\u00E1g",
noshade:"\u00C1rny\u00E9k n\u00E9lk\u00FCl"
});
\ No newline at end of file
tinyMCE.addI18n('is.advhr_dlg',{
width:"Breidd",
size:"H\u00E6\u00F0",
noshade:"Enginn skuggi"
});
\ No newline at end of file
tinyMCE.addI18n('it.advhr_dlg',{
width:"Width",
size:"Height",
noshade:"Senza ombreggiatura"
});
\ No newline at end of file
tinyMCE.addI18n('ja.advhr_dlg',{
width:"\u5E45",
size:"\u9AD8\u3055",
noshade:"\u5F71\u306A\u3057"
});
\ No newline at end of file
tinyMCE.addI18n('ko.advhr_dlg',{
width:"\uD3ED",
size:"\uB192\uC774",
noshade:"\uADF8\uB9BC\uC790\uC5C6\uC74C"
});
\ No newline at end of file
tinyMCE.addI18n('lt.advhr_dlg',{
width:"Ilgis",
size:"Auk\u0161tis",
noshade:"Be \u0161e\u0161\u0117lio"
});
\ No newline at end of file
tinyMCE.addI18n('lv.advhr_dlg',{
width:"Platums",
size:"Augstums",
noshade:"Bez \u0113nas"
});
\ No newline at end of file
tinyMCE.addI18n('ms.advhr_dlg',{
width:"Lebar",
size:"Tinggi",
noshade:"Tanpa bayang"
});
\ No newline at end of file
tinyMCE.addI18n('nl.advhr_dlg',{
width:"Breedte",
size:"Hoogte",
noshade:"Geen schaduw"
});
\ No newline at end of file
tinyMCE.addI18n('nn.advhr_dlg',{
width:"Breidd",
size:"Storleik",
noshade:"Inga skugge"
});
\ No newline at end of file
tinyMCE.addI18n('no.advhr_dlg',{
width:"Bredde",
size:"St\u00F8rrelse",
noshade:"Ingen skygge"
});
\ No newline at end of file
tinyMCE.addI18n('pl.advhr_dlg',{
width:"Szeroko\u015B\u0107",
size:"Wysoko\u015B\u0107",
noshade:"Bez cienia"
});
\ No newline at end of file
tinyMCE.addI18n('pt.advhr_dlg',{
width:"Largura",
size:"Altura",
noshade:"Sem sombra"
});
\ No newline at end of file
tinyMCE.addI18n('ro.advhr_dlg',{
width:"L\u0103\u0163ime",
size:"\u00CEn\u0103l\u0163ime",
noshade:"F\u0103r\u0103 umbre"
});
\ No newline at end of file
tinyMCE.addI18n('ru.advhr_dlg',{
width:"\u0428\u0438\u0440\u0438\u043D\u0430",
size:"\u0412\u044B\u0441\u043E\u0442\u0430",
noshade:"\u0411\u0435\u0437 \u0442\u0435\u043D\u0438"
});
\ No newline at end of file
tinyMCE.addI18n('si.advhr_dlg',{
width:"Width",
size:"Height",
noshade:"No shadow"
});
\ No newline at end of file
tinyMCE.addI18n('sr.advhr_dlg',{
width:"\u0160irina",
size:"Visina",
noshade:"Bez sjene"
});
\ No newline at end of file
tinyMCE.addI18n('sv.advhr_dlg',{
width:"Bredd",
size:"H\u00F6jd",
noshade:"Ingen skugga"
});
\ No newline at end of file
tinyMCE.addI18n('th.advhr_dlg',{
width:"\u0E01\u0E27\u0E49\u0E32\u0E07",
size:"\u0E2A\u0E39\u0E07",
noshade:"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E07\u0E32"
});
\ No newline at end of file
tinyMCE.addI18n('tr.advhr_dlg',{
width:"Geni\u015Flik",
size:"Y\u00FCkseklik",
noshade:"G\u00F6lge yok"
});
\ No newline at end of file
tinyMCE.addI18n('uk.advhr_dlg',{
width:"\u0428\u0438\u0440\u0438\u043D\u0430",
size:"\u0412\u0438\u0441\u043E\u0442\u0430",
noshade:"\u0411\u0435\u0437 \u0442\u0456\u043D\u0456"
});
\ No newline at end of file
tinyMCE.addI18n('zh.advhr_dlg',{
width:"\u5BBD",
size:"\u957F",
noshade:"\u9634\u5F71"
});
\ No newline at end of file
Check the TinyMCE documentation for details on this plugin.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>{#advhr.advhr_desc}</title>
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
<script type="text/javascript" src="js/rule.js"></script>
<script type="text/javascript" src="../../utils/mctabs.js"></script>
<script type="text/javascript" src="../../utils/form_utils.js"></script>
<link href="css/advhr.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form onsubmit="AdvHRDialog.update();return false;" action="#">
<div class="tabs">
<ul>
<li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advhr.advhr_desc}</a></span></li>
</ul>
</div>
<div class="panel_wrapper">
<div id="general_panel" class="panel current">
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<td><label for="width">{#advhr_dlg.width}</label></td>
<td class="nowrap">
<input id="width" name="width" type="text" value="" class="mceFocus" />
<select name="width2" id="width2">
<option value="">px</option>
<option value="%">%</option>
</select>
</td>
</tr>
<tr>
<td><label for="size">{#advhr_dlg.size}</label></td>
<td><select id="size" name="size">
<option value="">Normal</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select></td>
</tr>
<tr>
<td><label for="noshade">{#advhr_dlg.noshade}</label></td>
<td><input type="checkbox" name="noshade" id="noshade" class="radio" /></td>
</tr>
</table>
</div>
</div>
<div class="mceActionPanel">
<div style="float: left">
<input type="submit" id="insert" name="insert" value="{#insert}" />
</div>
<div style="float: right">
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
</div>
</div>
</form>
</body>
</html>
/**
* $Id$
*
* @author Moxiecode
* @copyright Copyright 2004-2007, Moxiecode Systems AB, All rights reserved.
*/
/* Import plugin specific language pack */
tinyMCE.importPluginLanguagePack('advlink');
var TinyMCE_AdvancedLinkPlugin = {
getInfo : function() {
return {
longname : 'Advanced link',
author : 'Moxiecode Systems AB',
authorurl : 'http://tinymce.moxiecode.com',
infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_advlink.html',
version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
};
},
initInstance : function(inst) {
inst.addShortcut('ctrl', 'k', 'lang_advlink_desc', 'mceAdvLink');
},
getControlHTML : function(cn) {
switch (cn) {
case "link":
return tinyMCE.getButtonHTML(cn, 'lang_link_desc', '{$themeurl}/images/link.gif', 'mceAdvLink');
}
return "";
},
execCommand : function(editor_id, element, command, user_interface, value) {
switch (command) {
case "mceAdvLink":
var anySelection = false;
var inst = tinyMCE.getInstanceById(editor_id);
var focusElm = inst.getFocusElement();
var selectedText = inst.selection.getSelectedText();
if (tinyMCE.selectedElement)
anySelection = (tinyMCE.selectedElement.nodeName.toLowerCase() == "img") || (selectedText && selectedText.length > 0);
if (anySelection || (focusElm != null && focusElm.nodeName == "A")) {
var template = new Array();
template['file'] = '../../plugins/advlink/link.htm';
template['width'] = 480;
template['height'] = 400;
// Language specific width and height addons
template['width'] += tinyMCE.getLang('lang_advlink_delta_width', 0);
template['height'] += tinyMCE.getLang('lang_advlink_delta_height', 0);
tinyMCE.openWindow(template, {editor_id : editor_id, inline : "yes"});
}
return true;
}
return false;
},
handleNodeChange : function(editor_id, node, undo_index, undo_levels, visual_aid, any_selection) {
if (node == null)
return;
do {
if (node.nodeName == "A" && tinyMCE.getAttrib(node, 'href') != "") {
tinyMCE.switchClass(editor_id + '_advlink', 'mceButtonSelected');
return true;
}
} while ((node = node.parentNode));
if (any_selection) {
tinyMCE.switchClass(editor_id + '_advlink', 'mceButtonNormal');
return true;
}
tinyMCE.switchClass(editor_id + '_advlink', 'mceButtonDisabled');
return true;
}
};
tinyMCE.addPlugin("advlink", TinyMCE_AdvancedLinkPlugin);
/* CSS file for advimage plugin popup */
.mceLinkList, .mceAnchorList, #targetlist {
width: 280px;
}
.mceActionPanel {
margin-top: 7px;
}
.panel_wrapper div.current {
height: 320px;
}
#classlist, #title, #href {
width: 280px;
}
#popupurl, #popupname {
width: 200px;
}
#popupwidth, #popupheight, #popupleft, #popuptop {
width: 30px;
vertical-align: middle;
text-align: center;
}
#id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {
width: 200px;
}
#events_panel input {
width: 200px;
}
/**
* $Id$
*
* @author Moxiecode
* @copyright Copyright 2004-2008, Moxiecode Systems AB, All rights reserved.
*/
(function() {
// Load plugin specific language pack
tinymce.PluginManager.requireLangPack('oacslink');
tinymce.create('tinymce.plugins.OacsLinkPlugin', {
init : function(ed, url) {
this.editor = ed;
// Register commands
ed.addCommand('mceOacsLink', function() {
var se = ed.selection;
// No selection and not in link
// if (se.isCollapsed() && !ed.dom.getParent(se.getNode(), 'A'))
// return;
ed.windowManager.open({
file : '/acs-templating/scripts/xinha/attach-file',
width : 480 + parseInt(ed.getLang('oacslink.delta_width', 0)),
height : 400 + parseInt(ed.getLang('oacslink.delta_height', 0)),
inline : 1
}, {
plugin_url : url
});
});
// Register buttons
ed.addButton('oacslink', {
title : 'oacslink.link_desc',
cmd : 'mceOacsLink',
image: ed.baseURI.path + '/plugins/oacslink/img/attach.png'
});
ed.addShortcut('ctrl+k', 'oacslink.oacslink_desc', 'mceOacsLink');
ed.onNodeChange.add(function(ed, cm, n, co) {
cm.setDisabled('link', co && n.nodeName != 'A');
cm.setActive('link', n.nodeName == 'A' && !n.name);
});
},
getInfo : function() {
return {
longname : 'Oacs link',
author : 'Moxiecode Systems AB',
authorurl : 'http://tinymce.moxiecode.com',
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/oacslink',
version : tinymce.majorVersion + "." + tinymce.minorVersion
};
}
});
// Register plugin
tinymce.PluginManager.add('oacslink', tinymce.plugins.OacsLinkPlugin);
})();
\ No newline at end of file
/**
* $Id$
*
* @author Moxiecode
* @copyright Copyright 2004-2008, Moxiecode Systems AB, All rights reserved.
*/
(function() {
// Load plugin specific language pack
tinymce.PluginManager.requireLangPack('oacslink');
tinymce.create('tinymce.plugins.OacsLinkPlugin', {
init : function(ed, url) {
this.editor = ed;
// Register commands
ed.addCommand('mceOacsLink', function() {
var se = ed.selection;
// No selection and not in link
// if (se.isCollapsed() && !ed.dom.getParent(se.getNode(), 'A'))
// return;
ed.windowManager.open({
file : '/acs-templating/scripts/xinha/attach-file',
width : 480 + parseInt(ed.getLang('oacslink.delta_width', 0)),
height : 400 + parseInt(ed.getLang('oacslink.delta_height', 0)),
inline : 1
}, {
plugin_url : url
});
});
// Register buttons
ed.addButton('oacslink', {
title : 'oacslink.link_desc',
cmd : 'mceOacsLink',
image: ed.baseURI.path + '/plugins/oacslink/img/attach.png'
});
ed.addShortcut('ctrl+k', 'oacslink.oacslink_desc', 'mceOacsLink');
ed.onNodeChange.add(function(ed, cm, n, co) {
cm.setDisabled('link', co && n.nodeName != 'A');
cm.setActive('link', n.nodeName == 'A' && !n.name);
});
},
getInfo : function() {
return {
longname : 'Oacs link',
author : 'Moxiecode Systems AB',
authorurl : 'http://tinymce.moxiecode.com',
infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/oacslink',
version : tinymce.majorVersion + "." + tinymce.minorVersion
};
}
});
// Register plugin
tinymce.PluginManager.add('oacslink', tinymce.plugins.OacsLinkPlugin);
})();
\ No newline at end of file
// UK lang variables
tinyMCE.addToLang('oacslink',{
general_tab : 'General',
popup_tab : 'Popup',
events_tab : 'Events',
advanced_tab : 'Advanced',
general_props : 'General properties',
popup_props : 'Popup properties',
event_props : 'Events',
advanced_props : 'Advanced properties',
popup_opts : 'Options',
anchor_names : 'Anchors',
target_same : 'Open in this window / frame',
target_parent : 'Open in parent window / frame',
target_top : 'Open in top frame (replaces all frames)',
target_blank : 'Open in new window',
popup : 'Javascript popup',
popup_url : 'Popup URL',
popup_name : 'Window name',
popup_return : 'Insert \'return false\'',
popup_scrollbars : 'Show scrollbars',
popup_statusbar : 'Show status bar',
popup_toolbar : 'Show toolbars',
popup_menubar : 'Show menu bar',
popup_location : 'Show location bar',
popup_resizable : 'Make window resizable',
popup_dependent : 'Dependent (Mozilla/Firefox only)',
popup_size : 'Size',
popup_position : 'Position (X/Y)',
id : 'Id',
style: 'Style',
classes : 'Classes',
target_name : 'Target name',
langdir : 'Language direction',
target_langcode : 'Target language',
langcode : 'Language code',
encoding : 'Target character encoding',
mime : 'Target MIME type',
rel : 'Relationship page to target',
rev : 'Relationship target to page',
tabindex : 'Tabindex',
accesskey : 'Accesskey',
ltr : 'Left to right',
rtl : 'Right to left'
});
tinyMCE.addI18n('bg.oacslink_dlg',{
title:"\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",
url:"URL \u043D\u0430 \u0445\u0438\u043F\u0435\u0440\u0432\u0440\u044A\u0437\u043A\u0430",
target:"\u0426\u0435\u043B",
titlefield:"\u0417\u0430\u0433\u043B\u0430\u0432\u0438\u0435",
is_email:"URL-\u0442\u043E \u043A\u043E\u0435\u0442\u043E \u0432\u044A\u0432\u0435\u0434\u043E\u0445\u0442\u0435 \u0435 email \u0430\u0434\u0440\u0435\u0441, \u0436\u0435\u043B\u0430\u0435\u0442\u0435 \u043B\u0438 \u0434\u0430 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u0435 \u043D\u0443\u0436\u043D\u0438\u044F\u0442 mailto: \u043F\u0440\u0435\u0444\u0438\u043A\u0441?",
is_external:"URL-\u0442\u043E \u043A\u043E\u0435\u0442\u043E \u0432\u044A\u0432\u0435\u0434\u043E\u0445\u0442\u0435 \u0435 \u0432\u044A\u043D\u0448\u043D\u0430 \u0445\u0438\u043F\u0435\u0440\u0432\u0440\u044A\u0437\u043A\u0430, \u0436\u0435\u043B\u0430\u0435\u0442\u0435 \u043B\u0438 \u0434\u0430 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u0435 \u043D\u0443\u0436\u043D\u0438\u044F\u0442 http:// \u043F\u0440\u0435\u0444\u0438\u043A\u0441?",
list:"\u0421\u043F\u0438\u0441\u044A\u043A \u0441 \u0445\u0438\u043F\u0435\u0440\u0432\u0440\u044A\u0437\u043A\u0438",
general_tab:"\u041E\u0431\u0449\u0438",
popup_tab:"Popup",
events_tab:"\u0421\u044A\u0431\u0438\u0442\u0438\u044F",
advanced_tab:"\u0417\u0430 \u043D\u0430\u043F\u0440\u0435\u0434\u043D\u0430\u043B\u0438",
general_props:"\u041E\u0431\u0449\u0438 \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438",
popup_props:"Popup \u043D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438",
event_props:"\u0421\u044A\u0431\u0438\u0442\u0438\u044F",
advanced_props:"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0437\u0430 \u043D\u0430\u043F\u0440\u0435\u0434\u043D\u0430\u043B\u0438",
popup_opts:"\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438",
anchor_names:"\u041A\u043E\u0442\u0432\u0438",
target_same:"\u041E\u0442\u0432\u043E\u0440\u0438 \u0432 \u0442\u043E\u0437\u0438 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446 / \u0444\u0440\u0435\u0439\u043C",
target_parent:"\u041E\u0442\u0432\u043E\u0440\u0438 \u0432 \u0433\u043E\u0440\u043D\u0438\u044F \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446 / \u0444\u0440\u0435\u0439\u043C",
target_top:"\u041E\u0442\u0432\u043E\u0440\u0438 \u0432 \u043D\u0430\u0439-\u0433\u043E\u0440\u043D\u0438\u044F \u0444\u0440\u0435\u0439\u043C (\u0437\u0430\u043C\u0435\u0441\u0442\u0432\u0430 \u0432\u0441\u0438\u0447\u043A\u0438 \u0444\u0440\u0435\u0439\u043C\u043E\u0432\u0435)",
target_blank:"\u041E\u0442\u0432\u043E\u0440\u0438 \u0432 \u043D\u043E\u0432 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446",
popup:"Javascript popup",
popup_url:"URL \u043D\u0430 popup-\u0430",
popup_name:"\u0418\u043C\u0435 \u043D\u0430 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446\u0430",
popup_return:"\u0412\u043C\u044A\u043A\u043D\u0438 'return false'",
popup_scrollbars:"\u041F\u043E\u043A\u0430\u0436\u0438 \u0441\u043A\u0440\u043E\u043B\u0435\u0440\u0438",
popup_statusbar:"\u041F\u043E\u043A\u0430\u0436\u0438 status bar",
popup_toolbar:"\u041F\u043E\u043A\u0430\u0436\u0438 \u043B\u0435\u043D\u0442\u0438\u0442\u0435 \u0441 \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u0438",
popup_menubar:"\u041F\u043E\u043A\u0430\u0436\u0438 \u043B\u0435\u043D\u0442\u0430\u0442\u0430 \u0441 \u043C\u0435\u043D\u044E\u0442\u0430",
popup_location:"\u041F\u043E\u043A\u0430\u0436\u0438 location bar",
popup_resizable:"\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043F\u0440\u0435\u043E\u0440\u0430\u0437\u043C\u0435\u0440\u044F\u0432\u0430\u043D\u0435 \u043D\u0430 \u043F\u0440\u043E\u0437\u043E\u0440\u0446\u0438\u0442\u0435",
popup_dependent:"\u0417\u0430\u0432\u0438\u0441\u0438\u043C\u0438 (Mozilla/Firefox only)",
popup_size:"\u0420\u0430\u0437\u043C\u0435\u0440",
popup_position:"\u041F\u043E\u0437\u0438\u0446\u0438\u044F (X/Y)",
id:"Id",
style:"\u0421\u0442\u0438\u043B",
classes:"\u041A\u043B\u0430\u0441\u043E\u0432\u0435",
target_name:"\u0418\u043C\u0435 \u043D\u0430 \u0446\u0435\u043B",
langdir:"\u041F\u043E\u0441\u043E\u043A\u0430 \u043D\u0430 \u0435\u0437\u0438\u043A\u0430",
target_langcode:"\u0415\u0437\u0438\u043A",
langcode:"\u041A\u043E\u0434 \u043D\u0430 \u0435\u0437\u0438\u043A\u0430",
encoding:"\u041A\u043E\u0434\u0438\u0440\u0430\u043D\u0435 \u043D\u0430 \u0441\u0438\u043C\u0432\u043E\u043B\u0438\u0442\u0435",
mime:"MIME \u0442\u0438\u043F",
rel:"\u0412\u0437\u0430\u0438\u043C\u043E\u043E\u0442\u043D\u043E\u0448\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 - \u0446\u0435\u043B",
rev:"\u0412\u0437\u0430\u0438\u043C\u043E\u043E\u0442\u043D\u043E\u0448\u0435\u043D\u0438\u0435 \u0446\u0435\u043B - \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430",
tabindex:"\u041F\u043E\u0441\u043B\u0435\u0434\u043E\u0432\u0430\u0442\u0435\u043B\u043D\u043E\u0441\u0442",
accesskey:"\u041A\u043B\u0430\u0432\u0438\u0448",
ltr:"\u041E\u0442\u043B\u044F\u0432\u043E \u043D\u0430 \u0434\u044F\u0441\u043D\u043E",
rtl:"\u041E\u0442\u0434\u044F\u0441\u043D\u043E \u043D\u0430 \u043B\u044F\u0432\u043E",
link_list:"\u0421\u043F\u0438\u0441\u044A\u043A \u0441 \u0445\u0438\u043F\u0435\u0440\u0432\u0440\u044A\u0437\u043A\u0438"
});
\ No newline at end of file
tinyMCE.addI18n('ca.oacslink_dlg',{
title:"Insereix/edita enlla\u00E7",
url:"URL de l'enlla\u00E7",
target:"Objectiu",
titlefield:"T\u00EDtol",
is_email:"L'URL que has introdu\u00EFt sembla una adre\u00E7a de correu, vols afegir-hi el prefix mailto://?",
is_external:"L'URL que has introdu\u00EFt sembla un enlla\u00E7 extern, vols afegir-hi el prefix http://?",
list:"Llista d'enlla\u00E7os",
general_tab:"General",
popup_tab:"Emergent",
events_tab:"Esdeveniments",
advanced_tab:"Avan\u00E7at",
general_props:"Propietats generals",
popup_props:"Propietats de l'emergent",
event_props:"Esdeveniments",
advanced_props:"Propietats avan\u00E7ades",
popup_opts:"Opcions",
anchor_names:"\u00C0ncores",
target_same:"Obre en aquesta finestra / marc",
target_parent:"Obre a la finestra /marc pare",
target_top:"Obre en el marc superior (substitueix tots els marcs)",
target_blank:"Obre en una finestra nova",
popup:"Emergent Javascript",
popup_url:"URL de l'emergent",
popup_name:"Nom de la finestra",
popup_return:"Insereix 'return false'",
popup_scrollbars:"Mostra les barres de despla\u00E7ament",
popup_statusbar:"Mostra la barra d'estat",
popup_toolbar:"Mostra les barres d'eines",
popup_menubar:"Mostra la barra de men\u00FA",
popup_location:"Mostra la barra d'ubicaci\u00F3",
popup_resizable:"La finestra es pot amidar",
popup_dependent:"Dependent (nom\u00E9s Mozilla/Firefox)",
popup_size:"Mida",
popup_position:"Posici\u00F3 (X/Y)",
id:"Id",
style:"Estil",
classes:"Classes",
target_name:"Nom de l'objectiu",
langdir:"Direcci\u00F3 de l'idioma",
target_langcode:"Idioma objectiu",
langcode:"Codi de l'idioma",
encoding:"Codificaci\u00F3 de car\u00E0cters de l'objectiu",
mime:"Tipus MIME de l'objectiu",
rel:"Relaci\u00F3 p\u00E0gina a objectiu",
rev:"Relaci\u00F3 objectiu a p\u00E0gina",
tabindex:"\u00CDndex de taula",
accesskey:"Accesskey",
ltr:"D'esquerra a dreta",
rtl:"De dreta a esquerra",
link_list:"Llista d'enlla\u00E7os"
});
\ No newline at end of file
tinyMCE.addI18n('da.oacslink_dlg',{
title:"Inds\u00E6t/rediger link",
url:"Link URL",
target:"M\u00E5l",
titlefield:"Titel",
is_email:"Den URL, der er indtastet, ser ud til at v\u00E6re en emailadresse. Vil du have tilf\u00F8jet det p\u00E5kr\u00E6vede mailto: foran?",
is_external:"Den URL, der er indtastet, ser ud til at v\u00E6re et eksternt link. Vil du have tilf\u00F8jet det p\u00E5kr\u00E6vede http:// foran?",
list:"Liste over links",
general_tab:"Generelt",
popup_tab:"Popup",
events_tab:"H\u00E6ndelser",
advanced_tab:"Advanceret",
general_props:"Generelle egenskaber",
popup_props:"Popup egenskaber",
event_props:"H\u00E6ndelser",
advanced_props:"Avancerede egenskaber",
popup_opts:"Indstillinger",
anchor_names:"Ankre",
target_same:"\u00C5ben i dette vindue / ramme",
target_parent:"\u00C5ben i overliggende vindue / ramme",
target_top:"\u00C5ben i \u00F8verste vindue / ramme (erstatter alle rammer)",
target_blank:"\u00C5ben i nyt vindue",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Vinduesnavn",
popup_return:"Inds\u00E6t 'return false'",
popup_scrollbars:"Vis rullepanel",
popup_statusbar:"Vis statuslinje",
popup_toolbar:"Vis v\u00E6rkt\u00F8jslinjer",
popup_menubar:"Vis menulinje",
popup_location:"Vis adresselinje",
popup_resizable:"Lad det v\u00E6re muligt at \u00E6ndre st\u00F8rrelsen p\u00E5 vinduet",
popup_dependent:"Afh\u00E6ngig (Kun Mozilla/Firefox)",
popup_size:"St\u00F8rrelse",
popup_position:"Position (X/Y)",
id:"Id",
style:"Stil",
classes:"Klasser",
target_name:"Destinationsnavn",
langdir:"Sprogretning",
target_langcode:"Destinationssprog",
langcode:"Sprogkode",
encoding:"Destinationstegns\u00E6t",
mime:"Destinations-MIME-type",
rel:"Relativ side til destination",
rev:"Relativ destination til side",
tabindex:"Tabindex",
accesskey:"Genvejstast",
ltr:"Venstre mod h\u00F8jre",
rtl:"H\u00F8jre mod venstre",
link_list:"Liste over links"
});
\ No newline at end of file
tinyMCE.addI18n('de.oacslink_dlg',{
title:"Link einf\u00FCgen/bearbeiten",
url:"Adresse",
target:"Fenster",
titlefield:"Titel",
is_email:"Diese Adresse scheint eine E-Mail-Adresse zu sein. M\u00F6chten Sie das dazu ben\u00F6tigte mailto: voranstellen?",
is_external:"Diese Adresse scheint ein externer Link zu sein. M\u00F6chten Sie das dazu ben\u00F6tigte http:// voranstellen?",
list:"Linkliste",
general_tab:"Allgemein",
popup_tab:"Popup",
events_tab:"Ereignisse",
advanced_tab:"Erweitert",
general_props:"Allemeine Eigenschaften",
popup_props:"Popup-Eigenschaften",
event_props:"Ereignisse",
advanced_props:"Erweiterte Eigenschaften",
popup_opts:"Optionen",
anchor_names:"Anker",
target_same:"Im selben Fenster/Frame \u00F6ffnen",
target_parent:"Im \u00FCbergeordneten Fenster/Frame \u00F6ffnen",
target_top:"Im obersten Frame \u00F6ffnen (sprengt das Frameset)",
target_blank:"In neuem Fenster \u00F6ffnen",
popup:"JavaScript-Popup",
popup_url:"Popup-Adresse",
popup_name:"Name des Fensters",
popup_return:"Link trotz Popup folgen",
popup_scrollbars:"Scrollbalken anzeigen",
popup_statusbar:"Statusleiste anzeigen",
popup_toolbar:"Werkzeugleisten anzeigen",
popup_menubar:"Browsermen\u00FC anzeigen",
popup_location:"Adressleiste anzeigen",
popup_resizable:"Vergr\u00F6\u00DFern des Fenster zulassen",
popup_dependent:"Vom Elternfenster abh\u00E4ngig <br /> (nur Mozilla/Firefox) ",
popup_size:"Gr\u00F6\u00DFe",
popup_position:"Position (X/Y)",
id:"ID",
style:"Format",
classes:"Klassen",
target_name:"Name der Zielseite",
langdir:"Schriftrichtung",
target_langcode:"Sprache der Zielseite",
langcode:"Sprachcode",
encoding:"Zeichenkodierung der Zielseite",
mime:"MIME-Type der Zielseite",
rel:"Beziehung der Seite zum Linkziel",
rev:"Beziehung des Linkziels zur Seite",
tabindex:"Tabindex",
accesskey:"Tastenk\u00FCrzel",
ltr:"Links nach rechts",
rtl:"Rechts nach links",
link_list:"Linkliste"
});
\ No newline at end of file
tinyMCE.addI18n('el.oacslink_dlg',{
title:"\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",
url:"\u0394\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE URL \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5",
target:"\u03A3\u03C4\u03CC\u03C7\u03BF\u03C2",
titlefield:"\u03A4\u03AF\u03C4\u03BB\u03BF\u03C2",
is_email:"\u0397 \u03B4\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE URL \u03C0\u03BF\u03C5 \u03B5\u03B9\u03C3\u03AC\u03B3\u03B1\u03C4\u03B5 \u03C6\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 email, \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B5\u03B8\u03B5\u03AF \u03C4\u03BF \u03B1\u03C0\u03B1\u03C1\u03B1\u03AF\u03C4\u03B7\u03C4\u03BF mailto: ;",
is_external:"\u0397 \u03B4\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE URL \u03C0\u03BF\u03C5 \u03B5\u03B9\u03C3\u03AC\u03B3\u03B1\u03C4\u03B5 \u03C6\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BE\u03C9\u03C4\u03B5\u03C1\u03B9\u03BA\u03CC\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2, \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B5\u03B8\u03B5\u03AF \u03C4\u03BF \u03B1\u03C0\u03B1\u03C1\u03B1\u03AF\u03C4\u03B7\u03C4\u03BF http:// ;",
list:"\u039B\u03AF\u03C3\u03C4\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD",
general_tab:"\u0393\u03B5\u03BD\u03B9\u03BA\u03AC",
popup_tab:"Popup",
events_tab:"\u0393\u03B5\u03B3\u03BF\u03BD\u03CC\u03C4\u03B1",
advanced_tab:"\u0393\u03B9\u03B1 \u03C0\u03C1\u03BF\u03C7\u03C9\u03C1\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2",
general_props:"\u0393\u03B5\u03BD\u03B9\u03BA\u03AD\u03C2 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2",
popup_props:"\u0399\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 Popup",
event_props:"\u0393\u03B5\u03B3\u03BF\u03BD\u03CC\u03C4\u03B1",
advanced_props:"\u03A0\u03C1\u03BF\u03C7\u03C9\u03C1\u03B7\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B9\u03B4\u03B9\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2",
popup_opts:"\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2",
anchor_names:"Anchors",
target_same:"\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03B5 \u03AF\u03B4\u03B9\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF / frame",
target_parent:"\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03C4\u03BF \u03B3\u03BF\u03BD\u03B9\u03BA\u03CC window / frame",
target_top:"\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03C4\u03BF \u03C0\u03B9\u03BF \u03C0\u03AC\u03BD\u03C9 frame (\u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03B8\u03B9\u03C3\u03C4\u03AC \u03CC\u03BB\u03B1 \u03C4\u03B1 frames)",
target_blank:"\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF",
popup:"Javascript popup",
popup_url:"\u0394\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE URL \u03C4\u03BF\u03C5 Popup",
popup_name:"\u038C\u03BD\u03BF\u03BC\u03B1 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5",
popup_return:"\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE 'return false'",
popup_scrollbars:"\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C1\u03AC\u03B2\u03B4\u03C9\u03BD \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7\u03C2",
popup_statusbar:"\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2",
popup_toolbar:"\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03CE\u03BD \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD",
popup_menubar:"\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BC\u03B5\u03BD\u03BF\u03CD",
popup_location:"\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1\u03C2",
popup_resizable:"\u039D\u03B1 \u03B1\u03BB\u03BB\u03AC\u03B6\u03BF\u03C5\u03BD \u03BF\u03B9 \u03B4\u03B9\u03B1\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5",
popup_dependent:"\u0395\u03BE\u03B1\u03C1\u03C4\u03CE\u03BC\u03B5\u03BD\u03BF (\u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 Mozilla/Firefox)",
popup_size:"\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2",
popup_position:"\u0398\u03AD\u03C3\u03B7 (X/Y)",
id:"Id",
style:"\u03A3\u03C4\u03C5\u03BB",
classes:"\u039A\u03BB\u03AC\u03C3\u03B5\u03B9\u03C2",
target_name:"\u038C\u03BD\u03BF\u03BC\u03B1 \u03C3\u03C4\u03CC\u03C7\u03BF\u03C5",
langdir:"\u039A\u03B1\u03C4\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1\u03C2",
target_langcode:"\u0393\u03BB\u03CE\u03C3\u03C3\u03B1 \u03C3\u03C4\u03CC\u03C7\u03BF\u03C5",
langcode:"\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03B3\u03BB\u03CE\u03C3\u03C3\u03B1\u03C2",
encoding:"\u039A\u03C9\u03B4\u03B9\u03BA\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD \u03C3\u03C4\u03CC\u03C7\u03BF\u03C5",
mime:"\u03A4\u03CD\u03C0\u03BF\u03C2 MIME \u03C3\u03C4\u03CC\u03C7\u03BF\u03C5",
rel:"\u03A3\u03C7\u03AD\u03C3\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C3\u03C4\u03CC\u03C7\u03BF (REL)",
rev:"\u03A3\u03C7\u03AD\u03C3\u03B7 \u03C3\u03C4\u03CC\u03C7\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 (REV)",
tabindex:"Tabindex",
accesskey:"\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2",
ltr:"\u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C0\u03C1\u03BF\u03C2 \u03B4\u03B5\u03BE\u03B9\u03AC",
rtl:"\u0394\u03B5\u03BE\u03B9\u03AC \u03C0\u03C1\u03BF\u03C2 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC",
link_list:"\u039B\u03AF\u03C3\u03C4\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD"
});
\ No newline at end of file
// UK lang variables
tinyMCE.addI18n('en.oacslink',{
link_desc : 'Insert/edit attachment',
general_tab : 'General',
popup_tab : 'Popup',
events_tab : 'Events',
advanced_tab : 'Advanced',
general_props : 'General properties',
popup_props : 'Popup properties',
event_props : 'Events',
advanced_props : 'Advanced properties',
popup_opts : 'Options',
anchor_names : 'Anchors',
target_same : 'Open in this window / frame',
target_parent : 'Open in parent window / frame',
target_top : 'Open in top frame (replaces all frames)',
target_blank : 'Open in new window',
popup : 'Javascript popup',
popup_url : 'Popup URL',
popup_name : 'Window name',
popup_return : 'Insert \'return false\'',
popup_scrollbars : 'Show scrollbars',
popup_statusbar : 'Show status bar',
popup_toolbar : 'Show toolbars',
popup_menubar : 'Show menu bar',
popup_location : 'Show location bar',
popup_resizable : 'Make window resizable',
popup_dependent : 'Dependent (Mozilla/Firefox only)',
popup_size : 'Size',
popup_position : 'Position (X/Y)',
id : 'Id',
style: 'Style',
classes : 'Classes',
target_name : 'Target name',
langdir : 'Language direction',
target_langcode : 'Target language',
langcode : 'Language code',
encoding : 'Target character encoding',
mime : 'Target MIME type',
rel : 'Relationship page to target',
rev : 'Relationship target to page',
tabindex : 'Tabindex',
accesskey : 'Accesskey',
ltr : 'Left to right',
rtl : 'Right to left'
});
tinyMCE.addI18n('en.oacslink_dlg',{
title:"Insert/edit link",
url:"Link URL",
target:"Target",
titlefield:"Title",
is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
list:"Link list",
general_tab:"General",
popup_tab:"Popup",
events_tab:"Events",
advanced_tab:"Advanced",
general_props:"General properties",
popup_props:"Popup properties",
event_props:"Events",
advanced_props:"Advanced properties",
popup_opts:"Options",
anchor_names:"Anchors",
target_same:"Open in this window / frame",
target_parent:"Open in parent window / frame",
target_top:"Open in top frame (replaces all frames)",
target_blank:"Open in new window",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Window name",
popup_return:"Insert 'return false'",
popup_scrollbars:"Show scrollbars",
popup_statusbar:"Show status bar",
popup_toolbar:"Show toolbars",
popup_menubar:"Show menu bar",
popup_location:"Show location bar",
popup_resizable:"Make window resizable",
popup_dependent:"Dependent (Mozilla/Firefox only)",
popup_size:"Size",
popup_position:"Position (X/Y)",
id:"Id",
style:"Style",
classes:"Classes",
target_name:"Target name",
langdir:"Language direction",
target_langcode:"Target language",
langcode:"Language code",
encoding:"Target character encoding",
mime:"Target MIME type",
rel:"Relationship page to target",
rev:"Relationship target to page",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"Left to right",
rtl:"Right to left",
link_list:"Link list"
});
\ No newline at end of file
// UK lang variables
tinyMCE.addI18n('es.oacslink',{
link_desc : 'Insertar/editar adjunto',
general_tab : 'General',
popup_tab : 'Popup',
events_tab : 'Eventos',
advanced_tab : 'Avanzado',
general_props : 'Propiedades generales',
popup_props : 'Propiedades del popup',
event_props : 'Eventos',
advanced_props : 'Propiedades avanzadas',
popup_opts : 'Opciones',
anchor_names : 'Anclas',
target_same : 'Abrir en esta ventana/marco',
target_parent : 'Abrir en la ventana/marco padre',
target_top : 'Abrir en el marco origen (reemplaza todos los marcos)',
target_blank : 'Abrir en una nueva ventana',
popup : 'Javascript popup',
popup_url : 'Popup URL',
popup_name : 'Título de la ventana',
popup_return : 'Insertar \'return false\'',
popup_scrollbars : 'Mostrar barras de desplazamiento',
popup_statusbar : 'Mostrar barra de estado',
popup_toolbar : 'Mostrar barra de herramientas',
popup_menubar : 'Mostrar barra de menú',
popup_location : 'Mostrar barra de locación',
popup_resizable : 'Permitir redimensionar la ventana',
popup_dependent : 'Dependiente (Mozilla/Firefox only)',
popup_size : 'Tamaño',
popup_position : 'Posición (X/Y)',
id : 'Id',
style: 'Estilo',
classes : 'Clases',
target_name : 'Nombre de destino (target)',
langdir : 'Dirección del idioma',
target_langcode : 'Idioma destino',
langcode : 'Código de idioma',
encoding : 'Encoding',
mime : 'Tipo MIME',
rel : 'Relación de la página al destino',
rev : 'Relación del destino a la página',
tabindex : 'Tabindex',
accesskey : 'Accesskey',
ltr : 'Izquierda a derecha',
rtl : 'Derecha a izquierda'
});
tinyMCE.addI18n('es.oacslink_dlg',{
title:"Insertar/editar hiperv\u00EDnculo",
url:"URL del hiperv\u00EDnculo",
target:"Destino",
titlefield:"T\u00EDtulo",
is_email:"La URL que ha introducido parece ser una direci\u00F3n de correo, \u00BFdesea agregar el prefijo mailto: necesario?",
is_external:"La URL que ha introducido parece ser un v\u00EDnculo externo, \u00BFdesea agregar el prefijo http:// necesario?",
list:"Lista de v\u00EDnculos",
general_tab:"General",
popup_tab:"Ventana emergente",
events_tab:"Eventos",
advanced_tab:"Avanzado",
general_props:"Propiedades generales",
popup_props:"Propiedades de ventanas emergentes",
event_props:"Eventos",
advanced_props:"Propiedades avanzadas",
popup_opts:"Opciones",
anchor_names:"Anclas",
target_same:"Abrir en esta ventana / marco",
target_parent:"Abrir en ventana padre / marco",
target_top:"Abrir en el marco superior (reemplaza todos los marcos)",
target_blank:"Abrir en ventana nueva",
popup:"Javascript popup",
popup_url:"URL de la ventana emergente",
popup_name:"Nombre de la ventana",
popup_return:"Insertar 'return false'",
popup_scrollbars:"Barras de desplazamiento",
popup_statusbar:"Barra de estado",
popup_toolbar:"Barra de herramientas",
popup_menubar:"Barra de men\u00FA",
popup_location:"Barra de localizaci\u00F3n",
popup_resizable:"Permitir cambiar el tama\u00F1o de la ventana",
popup_dependent:"Dependientes (s\u00F3lo Mozilla/Firefox)",
popup_size:"Tama\u00F1o",
popup_position:"Posici\u00F3n (X/Y)",
id:"Id",
style:"Estilo",
classes:"Clases",
target_name:"Nombre del Target",
langdir:"Direcci\u00F3n del lenguaje",
target_langcode:"Lenguaje del Target",
langcode:"C\u00F3digo del lenguaje",
encoding:"Codificaci\u00F3n de caracteres del Target",
mime:"Tipo MIME del Target",
rel:"Relaci\u00F3n p\u00E1gina a target",
rev:"Relaci\u00F3n target a p\u00E1gina",
tabindex:"Indice de tabulaci\u00F3n",
accesskey:"Tecla de acceso",
ltr:"Izquierda a derecha",
rtl:"Derecha a izquierda",
link_list:"Lista de v\u00EDnculo"
});
\ No newline at end of file
tinyMCE.addI18n('et.oacslink_dlg',{
title:"Sisesta muuda linki",
url:" URL\u2019i link",
target:"Sihtm\u00E4rk",
titlefield:"Pealkiri",
is_email:" URL, mille sisestasid, tundub olevat e-posti aadress, kas soovid sellele lisada mailto: funktsiooni?",
is_external:"URL, mille sisestasid, tundub olevat v\u00E4line link, kas soovid sellele lisada http://?",
list:"Linkide nimekiri",
general_tab:"\u00DCldine",
popup_tab:"Pop-up",
events_tab:"S\u00FCndmused",
advanced_tab:"P\u00F5hjalikum",
general_props:"\u00DCldised seadistused",
popup_props:"Pop-up\u2019i seadistus",
event_props:"S\u00FCndmused",
advanced_props:"\u00DCldised seadistused",
popup_opts:"Valikud",
anchor_names:"Ankrud",
target_same:"Ava selles aknas/raamis",
target_parent:"Ava pea-aknas/raamis",
target_top:"Ava k\u00F5rgeimas raamis (asenda k\u00F5ik raamid)",
target_blank:"Ava uues aknas",
popup:"Javascript\u2019i pop-up",
popup_url:"Pop-up\u2019i URL",
popup_name:"Akna nimi",
popup_return:"Sisesta 'tagasiminek eba\u00F5nnestus'",
popup_scrollbars:"N\u00E4ita kerimisribasid",
popup_statusbar:"N\u00E4ita staatuse riba",
popup_toolbar:"N\u00E4ita seadistusriba",
popup_menubar:"N\u00E4ita men\u00FC\u00FCriba",
popup_location:"N\u00E4ita asukohariba",
popup_resizable:"Muuda akna suurus muudetavaks",
popup_dependent:"S\u00F5ltuv (ainult Mozilla/Firefox)",
popup_size:"Suurus",
popup_position:"Positsioon (X/Y)",
id:"ID",
style:"Stiil",
classes:"Klassid",
target_name:"Sihtm\u00E4rgi nimi",
langdir:"Keele suund",
target_langcode:"Sihtm\u00E4rgi keel",
langcode:"Keele kood",
encoding:"Sihtm\u00E4rgi kodeering",
mime:"M\u00E4rgista MIME t\u00FC\u00FCp",
rel:"Seo leht sihtm\u00E4rgiga",
rev:"Seo sihtm\u00E4rk lehega",
tabindex:"Sisujuht",
accesskey:"Ligip\u00E4\u00E4suklahv",
ltr:"Vasakult paremale",
rtl:"Paremalt vasakule",
link_list:"Linkide list"
});
\ No newline at end of file
tinyMCE.addI18n('fa.oacslink_dlg',{
title:"\u062F\u0631\u062C/\u0648\u06CC\u0631\u0627\u06CC\u0634 \u0644\u06CC\u0646\u0643",
url:"URL \u0644\u06CC\u0646\u0643",
target:"\u0645\u0642\u0635\u062F (Target)",
titlefield:"\u0639\u0646\u0648\u0627\u0646",
is_email:"URL \u06CC \u0643\u0647 \u0648\u0627\u0631\u062F \u0643\u0631\u062F\u0647 \u0627\u06CC\u062F \u0628\u0647 \u0646\u0638\u0631 \u0645\u06CC \u0622\u06CC\u062F \u0643\u0647 \u06CC\u0643 \u0622\u062F\u0631\u0633 \u0627\u06CC\u0645\u06CC\u0644 \u0645\u06CC \u0628\u0627\u0634\u062F \u060C \u0622\u06CC\u0627 \u0645\u0627\u06CC\u0644\u06CC\u062F \u062A\u0627 \u067E\u06CC\u0634\u0648\u0646\u062F \u0644\u0627\u0632\u0645\u0647 :mailto \u0631\u0627 \u0627\u0636\u0627\u0641\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F\u061F",
is_external:"URL \u06CC \u0643\u0647 \u0648\u0627\u0631\u062F \u0643\u0631\u062F\u0647 \u0627\u06CC\u062F \u0628\u0647 \u0646\u0638\u0631 \u0645\u06CC \u0622\u06CC\u062F \u0643\u0647 \u06CC\u0643 \u0644\u06CC\u0646\u0643 \u062E\u0627\u0631\u062C\u06CC \u0645\u06CC \u0628\u0627\u0634\u062F \u060C \u0622\u06CC\u0627 \u0645\u0627\u06CC\u0644\u06CC\u062F \u062A\u0627 \u067E\u06CC\u0634\u0648\u0646\u062F \u0644\u0627\u0632\u0645\u0647 //:http \u0631\u0627 \u0627\u0636\u0627\u0641\u0647 \u0646\u0645\u0627\u0626\u06CC\u062F\u061F",
list:"\u0644\u06CC\u0633\u062A \u0644\u06CC\u0646\u0643",
general_tab:"\u0639\u0645\u0648\u0645\u06CC",
popup_tab:"\u067E\u0646\u062C\u0631\u0647 \u0628\u0627\u0632\u0634\u0648 (Popup)",
events_tab:"\u0631\u0648\u06CC\u062F\u0627\u062F\u0647\u0627",
advanced_tab:"\u067E\u06CC\u0634\u0631\u0641\u062A\u0647",
general_props:"\u0645\u0634\u062E\u0635\u0627\u062A \u0639\u0645\u0648\u0645\u06CC",
popup_props:"\u0645\u0634\u062E\u0635\u0627\u062A \u067E\u0646\u062C\u0631\u0647 \u0628\u0627\u0632\u0634\u0648 (Popup)",
event_props:"\u0631\u0648\u06CC\u062F\u0627\u062F\u0647\u0627",
advanced_props:"\u0645\u0634\u062E\u0635\u0627\u062A \u067E\u06CC\u0634\u0631\u0641\u062A\u0647",
popup_opts:"\u06AF\u0632\u06CC\u0646\u0647 \u0647\u0627",
anchor_names:"\u0644\u0646\u06AF\u0631\u0647\u0627 (Anchor)",
target_same:"\u0628\u0627\u0632\u0634\u062F\u0646 \u062F\u0631 \u0627\u06CC\u0646 \u067E\u0646\u062C\u0631\u0647 / \u0642\u0627\u0628 (Frame)",
target_parent:"\u0628\u0627\u0632\u0634\u062F\u0646 \u062F\u0631 \u067E\u0646\u062C\u0631\u0647 / \u0642\u0627\u0628 \u0648\u0627\u0644\u062F (Parent Frame)",
target_top:"\u0628\u0627\u0632\u0634\u062F\u0646 \u062F\u0631 \u0642\u0627\u0628 \u0628\u0627\u0644\u0627 (Top Frame) (\u062A\u0645\u0627\u0645\u06CC \u0642\u0627\u0628 \u0647\u0627 \u0631\u0627 \u062A\u0639\u0648\u06CC\u0636 \u0645\u06CC \u0643\u0646\u062F)",
target_blank:"\u0628\u0627\u0632\u0634\u062F\u0646 \u062F\u0631 \u067E\u0646\u062C\u0631\u0647 \u062C\u062F\u06CC\u062F",
popup:"\u067E\u0646\u062C\u0631\u0647 \u0628\u0627\u0632\u0634\u0648\u06CC Javascript",
popup_url:"URL \u067E\u0646\u062C\u0631\u0647 \u0628\u0627\u0632\u0634\u0648 (Popup)",
popup_name:"\u0646\u0627\u0645 \u067E\u0646\u062C\u0631\u0647",
popup_return:"\u062F\u0631\u062C 'return false'",
popup_scrollbars:"\u0646\u0645\u0627\u06CC\u0634 \u0646\u0648\u0627\u0631 \u067E\u06CC\u0645\u0627\u06CC\u0634 \u0647\u0627",
popup_statusbar:"\u0646\u0645\u0627\u06CC\u0634 \u0646\u0648\u0627\u0631 \u0648\u0636\u0639\u06CC\u062A",
popup_toolbar:"\u0646\u0645\u0627\u06CC\u0634 \u0646\u0648\u0627\u0631 \u0627\u0628\u0632\u0627\u0631",
popup_menubar:"\u0646\u0645\u0627\u06CC\u0634 \u0646\u0648\u0627\u0631 \u0645\u0646\u0648",
popup_location:"\u0646\u0645\u0627\u06CC\u0634 \u0646\u0648\u0627\u0631 \u0645\u0643\u0627\u0646",
popup_resizable:"\u0627\u06CC\u062C\u0627\u062F \u067E\u0646\u062C\u0631\u0647 \u0642\u0627\u0628\u0644 \u0627\u0646\u062F\u0627\u0632\u0647 \u0628\u0646\u062F\u06CC \u0645\u062C\u062F\u062F",
popup_dependent:"\u0648\u0627\u0628\u0633\u062A\u0647 (\u0641\u0642\u0637 Mozilla/Firefox)",
popup_size:"\u0627\u0646\u062F\u0627\u0632\u0647",
popup_position:"\u0645\u0648\u0642\u0639\u06CC\u062A (X/Y)",
id:"\u0634\u0646\u0627\u0633\u0647",
style:"\u0627\u0633\u062A\u06CC\u0644",
classes:"\u0643\u0644\u0627\u0633 \u0647\u0627",
target_name:"\u0646\u0627\u0645 \u0645\u0642\u0635\u062F (Target)",
langdir:"\u062C\u0647\u062A \u0632\u0628\u0627\u0646",
target_langcode:"\u0632\u0628\u0627\u0646 \u0645\u0642\u0635\u062F (Target)",
langcode:"\u0643\u062F \u0632\u0628\u0627\u0646",
encoding:"\u0631\u0645\u0632\u06AF\u0630\u0627\u0631\u06CC \u0643\u0627\u0631\u0627\u0643\u062A\u0631 \u0645\u0642\u0635\u062F (Target)",
mime:"\u0646\u0648\u0639 MIME \u0645\u0642\u0635\u062F (Target)",
rel:"\u0631\u0627\u0628\u0637\u0647 \u0635\u0641\u062D\u0647 \u0628\u0627 \u0645\u0642\u0635\u062F (Target)",
rev:"\u0631\u0627\u0628\u0637\u0647 \u0645\u0642\u0635\u062F (Target) \u0628\u0627 \u0635\u0641\u062D\u0647",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"\u0686\u067E \u0628\u0647 \u0631\u0627\u0633\u062A",
rtl:"\u0631\u0627\u0633\u062A \u0628\u0647 \u0686\u067E",
link_list:"\u0644\u06CC\u0633\u062A \u0644\u06CC\u0646\u0643"
});
\ No newline at end of file
tinyMCE.addI18n('fi.oacslink_dlg',{
title:"Lis\u00E4\u00E4/muokkaa linkki\u00E4",
url:"Linkin URL",
target:"Kohde (target)",
titlefield:"Otsikko",
is_email:"Sy\u00F6tt\u00E4m\u00E4si URL n\u00E4ytt\u00E4\u00E4 olevan s\u00E4hk\u00F6postiosoite, haluatko lis\u00E4t\u00E4 mailto:-etuliitteen?",
is_external:"Sy\u00F6tt\u00E4m\u00E4si URL n\u00E4ytt\u00E4\u00E4 olevan sivuston ulkoinen osoite, haluatko lis\u00E4t\u00E4 http://-etuliitteen?",
list:"Linkkilista",
general_tab:"Yleiset",
popup_tab:"Ponnahdusikkuna",
events_tab:"Tapahtumat",
advanced_tab:"Edistynyt",
general_props:"Yleiset asetukset",
popup_props:"Ponnahdusikkunan asetukset",
event_props:"Tapahtumat (events)",
advanced_props:"Edistyneet asetukset",
popup_opts:"Valinta",
anchor_names:"Ankkurit",
target_same:"Avaa t\u00E4ss\u00E4 ikkunassa",
target_parent:"Avaa ylemm\u00E4ss\u00E4 ikkunassa",
target_top:"Avaa ylimm\u00E4ss\u00E4 ruudussa (korvaa kaikki ruudut)",
target_blank:"Avaa uudessa ikkunassa",
popup:"Javascript ponnahdusikkuna",
popup_url:"Ponnahdusikkunan URL",
popup_name:"Ikkunan nimi",
popup_return:"Lis\u00E4\u00E4 'return false'",
popup_scrollbars:"N\u00E4yt\u00E4 vierityspalkit",
popup_statusbar:"N\u00E4yt\u00E4 tilapalkki",
popup_toolbar:"N\u00E4yt\u00E4 ty\u00F6kalut",
popup_menubar:"N\u00E4yt\u00E4 valikkopalkki",
popup_location:"N\u00E4yt\u00E4 sijaintipalkki",
popup_resizable:"Tee ikkunan koko muokattavaksi",
popup_dependent:"Riippuvainen (vain Mozilla/Firefox)",
popup_size:"Koko",
popup_position:"Sijainti (X/Y)",
id:"Id",
style:"Tyyli",
classes:"Luokat",
target_name:"Kohteen nimi",
langdir:"Kielen suunta",
target_langcode:"Kohteen kieli",
langcode:"Kielen koodi",
encoding:"Kohteen merkist\u00F6koodaus",
mime:"Kohteen MIME-tyyppi",
rel:"Sivun suhde kohteeseen",
rev:"Kohteen suhde sivuun",
tabindex:"Tabulaattori-indeksi",
accesskey:"Pikan\u00E4pp\u00E4in",
ltr:"Vasemmalta oikealle",
rtl:"Oikealta vasemmalle",
link_list:"Linkkilista"
});
\ No newline at end of file
tinyMCE.addI18n('fr.oacslink_dlg',{
title:"Ins\u00E9rer/\u00C9diter lien",
url:"URL du lien",
target:"Cible",
titlefield:"Titre",
is_email:"L'url que vous avez entr\u00E9 semble \u00EAtre une adresse e-mail, voulez-vous ajouter le pr\u00E9fixe mailto:\u00A0?",
is_external:"L'url que vous avez entr\u00E9 semble \u00EAtre une adresse web externe, voulez-vous ajouter le pr\u00E9fixe http://\u00A0?",
list:"Liste de liens",
general_tab:"G\u00E9n\u00E9ral",
popup_tab:"Popup",
events_tab:"\u00C9v\u00E9nements",
advanced_tab:"Advanc\u00E9",
general_props:"Propri\u00E9t\u00E9s g\u00E9n\u00E9rales",
popup_props:"Propri\u00E9t\u00E9s du popup",
event_props:"\u00C9v\u00E9nements",
advanced_props:"Propri\u00E9t\u00E9s avanc\u00E9es",
popup_opts:"Options",
anchor_names:"Ancres",
target_same:"Ouvrir dans cette fen\u00EAtre / dans ce cadre",
target_parent:"Ouvrir dans la fen\u00EAtre / le cadre parent",
target_top:"Ouvrir dans le cadre principal (Remplace tous les cadres)",
target_blank:"Ouvrir dans une nouvelle fen\u00EAtre",
popup:"Popup en Javascript",
popup_url:"URL du popup",
popup_name:"Nom de la fen\u00EAtre",
popup_return:"Ins\u00E9rer 'return false'",
popup_scrollbars:"Afficher les ascenseurs",
popup_statusbar:"Afficher la barre de status",
popup_toolbar:"Afficher la barre d'outils",
popup_menubar:"Afficher la barre de menu",
popup_location:"Afficher la barre d'adresse",
popup_resizable:"Rendre la fen\u00EAtre redimensionable",
popup_dependent:"D\u00E9pendent (Seulement sous Mozilla/Firefox)",
popup_size:"Taille",
popup_position:"Position (X/Y)",
id:"Id",
style:"Style",
classes:"Classes",
target_name:"Nom de la cible",
langdir:"Sens de lecture",
target_langcode:"Langue de la cible",
langcode:"Code de la langue",
encoding:"Encodage de la cible",
mime:"Type MIME de la cible",
rel:"Relation de la page \u00E0 la cible",
rev:"Relation de la cible \u00E0 la page",
tabindex:"Tabindex",
accesskey:"Touche d'acc\u00E8s rapide",
ltr:"Gauche \u00E0 droite",
rtl:"Droite \u00E0 gauche",
link_list:"Liste des liens"
});
\ No newline at end of file
tinyMCE.addI18n('gl.oacslink_dlg',{
title:"Insertar/editar hiperv\u00EDnculo",
url:"URL do hiperv\u00EDnculo",
target:"Destino",
titlefield:"T\u00EDtulo",
is_email:"A URL introducida semella ser un enderezo de e-mail, \u00BFDesexa engadi-lo prefixo necesario mailto:?",
is_external:"A URL introducida semella ser un v\u00EDnculo externo, \u00BFDesexa engadi-lo prefixo necesario http://?",
list:"Lista de v\u00EDnculos",
general_tab:"Xeral",
popup_tab:"Ventana emerxente",
events_tab:"Eventos",
advanced_tab:"Avanzado",
general_props:"Propiedades xerales",
popup_props:"Propiedades de vent\u00E1s emerxentes",
event_props:"Eventos",
advanced_props:"Propiedades avanzadas",
popup_opts:"Opci\u00F3ns",
anchor_names:"\u00C1ncoras",
target_same:"Abrir nesta vent\u00E1 / marco",
target_parent:"Abrir na vent\u00E1 / marco padre",
target_top:"Abrir no marco superior (reemplaza todo-los marcos)",
target_blank:"Abrir en vent\u00E1 nova",
popup:"Javascript popup",
popup_url:"URL da vent\u00E1 emerxente",
popup_name:"Nome da vent\u00E1",
popup_return:"Insertar 'return false'",
popup_scrollbars:"Barras de desprazamento",
popup_statusbar:"Barra de estado",
popup_toolbar:"Barra de ferramentas",
popup_menubar:"Barra de men\u00FA",
popup_location:"Barra de localizaci\u00F3n",
popup_resizable:"Permitir cambia-lo tama\u00F1o da vent\u00E1",
popup_dependent:"Dependentes (s\u00F3lo Mozilla/Firefox)",
popup_size:"Tama\u00F1o",
popup_position:"Posici\u00F3n (X/Y)",
id:"Id",
style:"Estilo",
classes:"Clases",
target_name:"Nome do obxetivo",
langdir:"Direcci\u00F3n da lenguaxe",
target_langcode:"Lenguaxe do obxetivo",
langcode:"C\u00F3digo da lenguaxe",
encoding:"Codificaci\u00F3n de caracteres do obxetivo",
mime:"Tipo MIME do obxetivo",
rel:"Relaci\u00F3n p\u00E1xina a obxetivo",
rev:"Relaci\u00F3n obxetivo a p\u00E1xina",
tabindex:"\u00CDndice de tabulaci\u00F3n",
accesskey:"Tecla de acceso",
ltr:"Esquerda a dereita",
rtl:"Dereita a esquerda",
link_list:"Lista de v\u00EDnculo"
});
\ No newline at end of file
tinyMCE.addI18n('hr.oacslink_dlg',{
title:"Umetni/uredi poveznicu",
url:"URL poveznice",
target:"Meta",
titlefield:"Naslov",
is_email:"URL koji ste unijeli izgleda kao e-mail adresa, \u017Eelite li dodati potrebni mailto: prefiks?",
is_external:"URL koji ste unijeli izgleda kao vanjska poveznica, \u017Eelite li dodati potrebni http:// prefiks?",
list:"Lista poveznica",
general_tab:"Osnovno",
popup_tab:"Popup",
events_tab:"Doga\u0111aj",
advanced_tab:"Napredno",
general_props:"Osnovna svojstva",
popup_props:"Svojstva popup prozora",
event_props:"Doga\u0111aji",
advanced_props:"Napredna svojstva",
popup_opts:"Opcije",
anchor_names:"Sidra",
target_same:"Otovori u novom prozoru / okviru",
target_parent:"Otvori u izvornom prozoru / okvir",
target_top:"Otvori u gornjem okviru (zamjenjuje sve okvire)",
target_blank:"Otvori u novom prozoru",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Ime prozora",
popup_return:"Umetni 'return false'",
popup_scrollbars:"Poka\u017Ei kliza\u010De",
popup_statusbar:"Poka\u017Ei statusnu traku",
popup_toolbar:"Poka\u017Ei alatne trake",
popup_menubar:"Poka\u017Ei izbornik",
popup_location:"Poka\u017Ei traku lokacije",
popup_resizable:"Prozor promjenjive veli\u010Dine",
popup_dependent:"Ovisan (samo za Mozilla/Firefox)",
popup_size:"Veli\u010Dina",
popup_position:"Pozicija (X/Y)",
id:"Id",
style:"Stil",
classes:"Klasa",
target_name:"Ime mete",
langdir:"Smjer jezika",
target_langcode:"Jezik",
langcode:"Kod jezika",
encoding:"Kodiranje znakova",
mime:"MIME tip",
rel:"Odnos stranice prema meti",
rev:"Odnos mete prema stranici",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"S lijeva na desno",
rtl:"S desna na lijevo",
link_list:"Lista poveznica"
});
\ No newline at end of file
tinyMCE.addI18n('hu.oacslink_dlg',{
title:"Link besz\u00FAr\u00E1s/szerkeszt\u00E9s",
url:"Link URL",
target:"Target",
titlefield:"C\u00EDm",
is_email:"A be\u00EDrt URL e-mail c\u00EDmnek t\u0171nik, k\u00EDv\u00E1nja a sz\u00FCks\u00E9ges mailto:-t el\u00E9 tenni?",
is_external:"A be\u00EDrt URL k\u00FCls\u0151 hivatkoz\u00E1snak t\u0171nik, k\u00EDv\u00E1nja a sz\u00FCks\u00E9ges http://-t el\u00E9 tenni?",
list:"Link lista",
general_tab:"\u00C1ltal\u00E1nos",
popup_tab:"Felugr\u00F3 ablak",
events_tab:"Esem\u00E9nyek",
advanced_tab:"Halad\u00F3",
general_props:"\u00C1ltal\u00E1nos tulajdons\u00E1gok",
popup_props:"Felugr\u00F3 ablak tulajdons\u00E1gai",
event_props:"Esem\u00E9nyek",
advanced_props:"Halad\u00F3 tulajdons\u00E1gok",
popup_opts:"Be\u00E1ll\u00EDt\u00E1sok",
anchor_names:"Horgonyok",
target_same:"Azonos ablakban/keretben megnyit\u00E1s",
target_parent:"Sz\u00FCl\u0151 ablakban/keretben megnyit\u00E1s",
target_top:"Azonos ablakban/keretben megnyit\u00E1s legfel\u00FCl",
target_blank:"\u00DAj ablakban megnyit\u00E1s",
popup:"JavaScript felugr\u00F3 ablak",
popup_url:"Felugr\u00F3 ablak URL",
popup_name:"Ablakn\u00E9v",
popup_return:"'return false' besz\u00FAr\u00E1sa",
popup_scrollbars:"G\u00F6rget\u0151s\u00E1vok mutat\u00E1sa",
popup_statusbar:"St\u00E1tuszsor mutat\u00E1sa",
popup_toolbar:"Eszk\u00F6zsor mutat\u00E1sa",
popup_menubar:"Men\u00FCsor mutat\u00E1sa",
popup_location:"C\u00EDm mez\u0151 mutat\u00E1sa",
popup_resizable:"\u00C1tm\u00E9retezhet\u0151 ablak",
popup_dependent:"F\u00FCgg\u0151 (csak Mozilla/Firefox)",
popup_size:"M\u00E9ret",
popup_position:"Poz\u00EDci\u00F3 (X/Y)",
id:"Id",
style:"Style",
classes:"Class-ok",
target_name:"C\u00E9l neve",
langdir:"Nyelv \u00EDr\u00E1s ir\u00E1ny",
target_langcode:"C\u00E9l nyelv",
langcode:"Nyelv k\u00F3d",
encoding:"C\u00E9l karakterk\u00F3dol\u00E1s",
mime:"C\u00E9l MIME t\u00EDpus",
rel:"Oldal kapcsolata a c\u00E9llal",
rev:"C\u00E9l kapcsolata az oldallal",
tabindex:"Tabindex",
accesskey:"Gyorsgomb",
ltr:"Balr\u00F3l jobbra",
rtl:"Jobbr\u00F3l balra",
link_list:"Link lista"
});
\ No newline at end of file
tinyMCE.addI18n('is.oacslink_dlg',{
title:"Insert/edit link",
url:"Link URL",
target:"Target",
titlefield:"Title",
is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
list:"Link list",
general_tab:"General",
popup_tab:"Popup",
events_tab:"Events",
advanced_tab:"Advanced",
general_props:"General properties",
popup_props:"Popup properties",
event_props:"Events",
advanced_props:"Advanced properties",
popup_opts:"Options",
anchor_names:"Anchors",
target_same:"Open in this window / frame",
target_parent:"Open in parent window / frame",
target_top:"Open in top frame (replaces all frames)",
target_blank:"Open in new window",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Window name",
popup_return:"Insert 'return false'",
popup_scrollbars:"Show scrollbars",
popup_statusbar:"Show status bar",
popup_toolbar:"Show toolbars",
popup_menubar:"Show menu bar",
popup_location:"Show location bar",
popup_resizable:"Make window resizable",
popup_dependent:"Dependent (Mozilla/Firefox only)",
popup_size:"Size",
popup_position:"Position (X/Y)",
id:"Id",
style:"Style",
classes:"Classes",
target_name:"Target name",
langdir:"Language direction",
target_langcode:"Target language",
langcode:"Language code",
encoding:"Target character encoding",
mime:"Target MIME type",
rel:"Relationship page to target",
rev:"Relationship target to page",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"Left to right",
rtl:"Right to left",
link_list:"Link list"
});
\ No newline at end of file
tinyMCE.addI18n('it.oacslink_dlg',{
title:"Inserisci/modifica link",
url:"URL collegamento",
target:"Target",
titlefield:"Titolo",
is_email:"L'URL inserito sembra essere un indirizzo email. Aggiungere il necessario prefisso mailto: ?",
is_external:"L'URL inserito sembra essere un link esterno. Aggiungere il necessario prefisso http:// ?",
list:"Lista collegamenti",
general_tab:"Generale",
popup_tab:"Popup",
events_tab:"Eventi",
advanced_tab:"Avanzate",
general_props:"Propriet\u00E0 generali",
popup_props:"Propriet\u00E0 popup",
event_props:"Eventi",
advanced_props:"Propriet\u00E0 avanzate",
popup_opts:"Opzioni",
anchor_names:"Ancore",
target_same:"Apri in questa finestra / cornice",
target_parent:"Apri nella finestra / cornice genitore",
target_top:"Apri nella cornice superiore (sostituisce tutte le cornici)",
target_blank:"Apri in una nuova finestra",
popup:"Popup Javascript",
popup_url:"URL Popup",
popup_name:"Nome finestra",
popup_return:"Inserisci 'return false'",
popup_scrollbars:"Mostra barre di scorrimento",
popup_statusbar:"Mostra barra di stato",
popup_toolbar:"Mostra barre strumenti",
popup_menubar:"Mostra barra menu",
popup_location:"Mostra barra navigazione",
popup_resizable:"Rendi la finestra ridimensionabile",
popup_dependent:"Dipendente (Solo in Mozilla/Firefox)",
popup_size:"Dimensioni",
popup_position:"Posizione (X/Y)",
id:"Id",
style:"Stile",
classes:"Classe",
target_name:"Nome target",
langdir:"Direzione del testo",
target_langcode:"Lingua del target",
langcode:"Lingua",
encoding:"Codifica carattere del target",
mime:"Tipo MIME del target",
rel:"Relazione da pagina a target",
rev:"Relazione da target a pagina",
tabindex:"Indice tabulazione",
accesskey:"Carattere di accesso",
ltr:"Sinistra verso destra",
rtl:"Destra verso sinistra",
link_list:"Lista collegamenti"
});
\ No newline at end of file
tinyMCE.addI18n('ja.oacslink_dlg',{
title:"\u30EA\u30F3\u30AF\u306E\u633F\u5165/\u7DE8\u96C6",
url:"\u30EA\u30F3\u30AFURL",
target:"\u30BF\u30FC\u30B2\u30C3\u30C8",
titlefield:"\u30BF\u30A4\u30C8\u30EB",
is_email:"\u30E1\u30FC\u30EB\u30A2\u30C9\u30EC\u30B9\u304C\u5165\u529B\u3055\u308C\u307E\u3057\u305F\u3002\u30EA\u30F3\u30AF\u306Bmailto:\u3092\u4ED8\u52A0\u3057\u307E\u3059\u304B\uFF1F",
is_external:"\u30EA\u30F3\u30AF\u306Bhttp://\u3092\u4ED8\u52A0\u3057\u307E\u3059\u304B\uFF1F",
list:"\u4E00\u89A7\u304B\u3089\u9078\u3076",
general_tab:"\u4E00\u822C",
popup_tab:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7",
events_tab:"\u30A4\u30D9\u30F3\u30C8",
advanced_tab:"\u9AD8\u5EA6\u306A\u8A2D\u5B9A",
general_props:"\u4E00\u822C",
popup_props:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7",
event_props:"\u30A4\u30D9\u30F3\u30C8",
advanced_props:"\u9AD8\u5EA6\u306A\u8A2D\u5B9A",
popup_opts:"\u30AA\u30D7\u30B7\u30E7\u30F3",
anchor_names:"\u30A2\u30F3\u30AB\u30FC",
target_same:"\u3053\u306E\u30A6\u30A4\u30F3\u30C9\u30A6/\u30D5\u30EC\u30FC\u30E0\u3067\u958B\u304F",
target_parent:"\u89AA\u30A6\u30A4\u30F3\u30C9\u30A6/\u89AA\u30D5\u30EC\u30FC\u30E0\u3067\u958B\u304F",
target_top:"\u30C8\u30C3\u30D7\u306E\u30D5\u30EC\u30FC\u30E0\u3067\u958B\u304F",
target_blank:"\u65B0\u3057\u3044\u30A6\u30A4\u30F3\u30C9\u30A6\u3067\u958B\u304F",
popup:"JavaScript\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7",
popup_url:"\u30DD\u30C3\u30D7\u30A2\u30C3\u30D7URL",
popup_name:"\u30A6\u30A4\u30F3\u30C9\u30A6\u540D",
popup_return:"'return false'\u3092\u633F\u5165\u3059\u308B",
popup_scrollbars:"\u30B9\u30AF\u30ED\u30FC\u30EB\u30D0\u30FC\u3092\u8868\u793A",
popup_statusbar:"\u30B9\u30C6\u30FC\u30BF\u30B9\u30D0\u30FC\u3092\u8868\u793A",
popup_toolbar:"\u30C4\u30FC\u30EB\u30D0\u30FC\u3092\u8868\u793A",
popup_menubar:"\u30E1\u30CB\u30E5\u30FC\u30D0\u30FC\u3092\u8868\u793A",
popup_location:"\u30A2\u30C9\u30EC\u30B9\u30D0\u30FC\u3092\u8868\u793A",
popup_resizable:"\u30A6\u30A4\u30F3\u30C9\u30A6\u306E\u30B5\u30A4\u30BA\u5909\u66F4\u3092\u8A31\u53EF\u3059\u308B",
popup_dependent:"Dependent (Mozilla/Firefox\u306E\u307F)",
popup_size:"\u30B5\u30A4\u30BA",
popup_position:"\u4F4D\u7F6E (X/Y)",
id:"ID",
style:"\u30B9\u30BF\u30A4\u30EB",
classes:"\u30AF\u30E9\u30B9",
target_name:"\u30BF\u30FC\u30B2\u30C3\u30C8\u540D",
langdir:"\u6587\u7AE0\u306E\u65B9\u5411",
target_langcode:"\u30BF\u30FC\u30B2\u30C3\u30C8\u306E\u8A00\u8A9E",
langcode:"\u8A00\u8A9E\u30B3\u30FC\u30C9",
encoding:"\u30BF\u30FC\u30B2\u30C3\u30C8\u306E\u6587\u5B57\u30A8\u30F3\u30B3\u30FC\u30C7\u30A3\u30F3\u30B0",
mime:"\u30BF\u30FC\u30B2\u30C3\u30C8\u306EMIME\u30BF\u30A4\u30D7",
rel:"\u3053\u306E\u30DA\u30FC\u30B8\u306E\u30BF\u30FC\u30B2\u30C3\u30C8\u306B\u5BFE\u3059\u308B\u95A2\u4FC2",
rev:"\u30BF\u30FC\u30B2\u30C3\u30C8\u306E\u3053\u306E\u30DA\u30FC\u30B8\u306B\u5BFE\u3059\u308B\u95A2\u4FC2",
tabindex:"\u30BF\u30D6\u30A4\u30F3\u30C7\u30C3\u30AF\u30B9",
accesskey:"\u30A2\u30AF\u30BB\u30B9\u30AD\u30FC",
ltr:"\u5DE6\u304B\u3089\u53F3",
rtl:"\u53F3\u304B\u3089\u5DE6",
link_list:"\u4E00\u89A7\u304B\u3089\u9078\u3076"
});
\ No newline at end of file
tinyMCE.addI18n('ko.oacslink_dlg',{
title:"\uB9C1\uD06C\uC758 \uC0BD\uC785/\uD3B8\uC9D1",
url:"\uB9C1\uD06C URL",
target:"Target",
titlefield:"\uC81C\uBAA9",
is_email:"\uBA54\uC77C\uC8FC\uC18C\uAC00 \uC785\uB825\uB418\uC5C8\uC2B5\uB2C8\uB2E4. \uBA54\uC77C\uC8FC\uC18C\uC758 \uC55E\uC5D0 mailto:\uB97C \uBD99\uC785\uB2C8\uAE4C?",
is_external:"\uC678\uBD80URL\uC774 \uC785\uB825\uB418\uC5C8\uC2B5\uB2C8\uB2E4.URL\uC758 \uC55E\uC5D0http://\uB97C \uBD99\uC785\uB2C8\uAE4C?",
list:"\uB9C1\uD06C \uBAA9\uB85D",
general_tab:"\uC77C\uBC18",
popup_tab:"\uD31D\uC5C5",
events_tab:"\uC774\uBCA4\uD2B8",
advanced_tab:"\uACE0\uAE09",
general_props:"\uC77C\uBC18 \uC124\uC815",
popup_props:"\uD31D\uC5C5 \uC124\uC815",
event_props:"\uC774\uBCA4\uD2B8",
advanced_props:"\uACE0\uAE09\uC758 \uC124\uC815",
popup_opts:"\uC635\uC158",
anchor_names:"\uC5E5\uCEE4",
target_same:"\uC774 \uCC3D/\uD504\uB808\uC784\uC73C\uB85C \uC5F4\uB9B0\uB2E4",
target_parent:"\uBD80\uBAA8\uCC3D/\uD504\uB808\uC784\uC73C\uB85C \uC5F4\uB9B0\uB2E4",
target_top:"\uCD5C\uC0C1\uC704 \uD504\uB808\uC784\uC73C\uB85C \uC5F4\uB9B0\uB2E4 (\uBAA8\uB4E0 \uD504\uB808\uC784 \uBCC0\uACBD)",
target_blank:"\uC0C8\uCC3D\uC73C\uB85C \uC5F4\uB9B0\uB2E4",
popup:"Javascript \uD31D\uC5C5",
popup_url:"\uD31D\uC5C5 URL",
popup_name:"Window \uC774\uB984",
popup_return:"'return false'\uB97C \uC0BD\uC785",
popup_scrollbars:"\uC2A4\uD06C\uB864\uBC14\uB97C \uD45C\uC2DC",
popup_statusbar:"\uC0C1\uD0DC\uC904\uC744 \uD45C\uC2DC",
popup_toolbar:"\uD234\uBC14\uB97C \uD45C\uC2DC",
popup_menubar:"\uBA54\uB274\uB97C \uD45C\uC2DC",
popup_location:"\uC8FC\uC18C\uBC14\uB97C \uD45C\uC2DC",
popup_resizable:"\uD06C\uAE30\uBCC0\uACBD \uAC00\uB2A5",
popup_dependent:"\uC5F0\uB3D9 (Mozilla/Firefox\uB9CC)",
popup_size:"\uD06C\uAE30",
popup_position:"\uC704\uCE58(X/Y)",
id:"Id",
style:"\uC2A4\uD0C0\uC77C",
classes:"\uD074\uB798\uC2A4",
target_name:"Target \uC774\uB984",
langdir:"\uD398\uC774\uC9C0 \uBB38\uC790 \uBC29\uD5A5",
target_langcode:"\uD398\uC774\uC9C0 \uC5B8\uC5B4",
langcode:"\uC5B8\uC5B4 \uCF54\uB4DC",
encoding:"\uBB38\uC790 \uC778\uCF54\uB529",
mime:"MIME\uD0C0\uC785",
rel:"\uB9C1\uD06C\uC5D0 \uAD00\uACC4",
rev:"\uB9C1\uD06C\uB85C\uBD80\uD130\uC758 \uAD00\uACC4",
tabindex:"\uD0ED \uC778\uB371\uC2A4",
accesskey:"\uC561\uC138\uC2A4 \uD0A4",
ltr:"\uC67C\uCABD\uC5D0\uC11C \uC624\uB978\uCABD",
rtl:"\uC624\uB978\uCABD\uC5D0\uC11C \uC67C\uCABD",
link_list:"\uB9C1\uD06C \uBAA9\uB85D"
});
\ No newline at end of file
tinyMCE.addI18n('lt.oacslink_dlg',{
title:"\u012Eterpti/Redaguoti nuorod\u0105",
url:"Nuorodos URL adresas",
target:"Taikinys",
titlefield:"Pavadinimas",
is_email:"URL adresas, kur\u012F \u012Fved\u0117te yra e-pa\u0161to adresas, ar norite prid\u0117ti reikaling\u0105 mailto: prefiks\u0105?",
is_external:"URL adresas, kur\u012F \u012Fved\u0117te yra i\u0161orin\u0117 nuoroda, ar norite prid\u0117ti reikaling\u0105 http:// prefiks\u0105?",
list:"Nuorod\u0173 s\u0105ra\u0161as",
general_tab:"Bendra",
popup_tab:"I\u0161\u0161okantis langas",
events_tab:"\u012Evykiai",
advanced_tab:"I\u0161pl\u0117sta",
general_props:"Bendri nustatymai",
popup_props:"I\u0161\u0161okan\u010Dio lango nustatymai",
event_props:"\u012Evykiai",
advanced_props:"I\u0161pl\u0117stiniai nustatymai",
popup_opts:"Nustatymai",
anchor_names:"Inkarai",
target_same:"Atidaryti tame pa\u010Diame lange",
target_parent:"Atidaryti t\u0117viniame lange",
target_top:"Atidaryti vir\u0161tiniame lange (pakei\u010Dia visus langus)",
target_blank:"Atidaryti naujame lange",
popup:"Javascript i\u0161\u0161okantis langas",
popup_url:"I\u0161\u0161okan\u010Dio lango URL adresas",
popup_name:"Lango vardas",
popup_return:"\u012Eterpti 'return false'",
popup_scrollbars:"Rodyti slankiojimo juostas",
popup_statusbar:"Rodyti statuso juost\u0105",
popup_toolbar:"Rodyti \u012Franki\u0173 juost\u0105",
popup_menubar:"Rodyti meniu juost\u0105",
popup_location:"Rodyti lokacijos juost\u0105",
popup_resizable:"Galima koreguoti lango i\u0161matavimus",
popup_dependent:"Proporcionaliai (tik Mozilla/Firefox)",
popup_size:"Dydis",
popup_position:"Pozicija (X/Y)",
id:"Id",
style:"Stilius",
classes:"Klas\u0117s",
target_name:"Taikinio vardas",
langdir:"Kalbos kryptis",
target_langcode:"Taikinio kalba",
langcode:"Kalbos kodas",
encoding:"Kalbos koduot\u0117",
mime:"Taikinio MIME tipas",
rel:"Santykis puslapio su taikiniu",
rev:"Santykis taikinio su puslapiu",
tabindex:"Tabuliacijos indeksas",
accesskey:"Prieities klavi\u0161as",
ltr:"I\u0161 kair\u0117s \u012F de\u0161in\u0119",
rtl:"I\u0161 de\u0161in\u0117s \u012F kair\u0119",
link_list:"Nuorod\u0173 s\u0105ra\u0161as"
});
\ No newline at end of file
tinyMCE.addI18n('lv.oacslink_dlg',{
title:"Ievietot/Redi\u0123\u0113t saiti",
url:"Saites URL",
target:"M\u0113r\u0137is",
titlefield:"Nosaukums",
is_email:"Ievad\u012Btais URL \u0161\u0137iet ir e-pasta adrese, vai J\u016Bs v\u0113laties pirms t\u0101s pievienot mailto: pried\u0113kli?",
is_external:"Ievad\u012Btais URL \u0161\u0137iet ir \u0101r\u0113j\u0101 saite, vai J\u016Bs v\u0113laties pirms t\u0101s pievienot http:// pried\u0113kli?",
list:"Link list",
general_tab:"Kop\u012Bgais",
popup_tab:"Popup",
events_tab:"Notikumi",
advanced_tab:"Advanced",
general_props:"Kop\u012Bgas \u012Bpa\u0161\u012Bbas",
popup_props:"Popup \u012Bpa\u0161\u012Bbas",
event_props:"Notikumi",
advanced_props:"Advanced \u012Bpa\u0161\u012Bbas",
popup_opts:"Opcijas",
anchor_names:"Enkuri",
target_same:"Atvert \u0161aj\u0101 log\u0101 / r\u0101m\u012B",
target_parent:"Atvert \u0161aj\u0101 log\u0101 / r\u0101m\u012B",
target_top:"Atvert pa virsu \u0161im r\u0101m\u012Bm (aizvieto visus r\u0101mjus)",
target_blank:"Atvert jaun\u0101j\u0101 log\u0101",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Loga nosaukums",
popup_return:"Ielikt 'return false'",
popup_scrollbars:"Par\u0101d\u012Bt scrollbars",
popup_statusbar:"Par\u0101d\u012Bt status bar",
popup_toolbar:"Par\u0101d\u012Bt r\u012Bkjoslu",
popup_menubar:"Par\u0101d\u012Bt izvelnes joslu",
popup_location:"Par\u0101d\u012Bt adreses joslu",
popup_resizable:"Iedot iesp\u0113ju main\u012Bt loga izmerus",
popup_dependent:"Atkar\u012Bgs (tikai priek\u0161 Mozilla/Firefox)",
popup_size:"Izm\u0113rs",
popup_position:"Poz\u012Bcija (X/Y)",
id:"Id",
style:"St\u012Bls",
classes:"Klases",
target_name:"M\u0113r\u0137a nosaukums",
langdir:"Valodas virziens",
target_langcode:"M\u0113r\u0137a valoda",
langcode:"Valodas kods",
encoding:"M\u0113r\u0137a valodas koda tabula",
mime:"M\u0113r\u0137a MIME tips",
rel:"Lapas attiec\u012Bbas pret m\u0113r\u0137i",
rev:"M\u0113r\u0137a attiec\u012Bbas pret lapu",
tabindex:"Tabindex",
accesskey:"Pieejas poga",
ltr:"No kreisas puses uz labo",
rtl:"No labas puses uz kreiso",
link_list:"Sakaru saraksts"
});
\ No newline at end of file
tinyMCE.addI18n('ms.oacslink_dlg',{
title:"Sisip/sunting pautan",
url:"Pautan URL",
target:"Sasaran",
titlefield:"Tajuk",
is_email:"URL yang dimasukkan adalah alamat emel, tambah \"mailto\": di awalan?",
is_external:"URL yang dimasukkan adalah pautan luar, tambah \"http://\" di awalan?",
list:"Senarai pautan",
general_tab:"Am",
popup_tab:"Popup",
events_tab:"Peristiwa",
advanced_tab:"Lanjutan",
general_props:"Alatan am",
popup_props:"Alatan Popup",
event_props:"Peristiwa",
advanced_props:"Alatan lanjutan",
popup_opts:"Pilihan",
anchor_names:"Sauh",
target_same:"Buka tetingkap ini",
target_parent:"Buka dalam tetingkap yang lain",
target_top:"Buka bingkaian atas (gantikan kesemua bingkai)",
target_blank:"Buka dalam tetingkap baru.",
popup:"Popup Javascript ",
popup_url:"Popup URL",
popup_name:"Nama tetingkap",
popup_return:"Masukkan 'return false'",
popup_scrollbars:"Tunjuk bar gulung",
popup_statusbar:"Tunjuk bar status",
popup_toolbar:"Tunjuk bar alatan",
popup_menubar:"Tunjuk bar menu",
popup_location:"Tunjuk bar lokasi",
popup_resizable:"Jadikan tetingkap boleh diubahsuai",
popup_dependent:"Tanggungan (Hanya Mozilla/Firefox)",
popup_size:"Saiz",
popup_position:"Posisi (X/Y)",
id:"Id",
style:"Gaya",
classes:"Kelas-kelas",
target_name:"Nama sasaran",
langdir:"Arah bahasa",
target_langcode:"Bahasa sasaran",
langcode:"Kod bahasa",
encoding:"Sasaran enkod perkataan",
mime:"Sasaran jenis MIME",
rel:"Kaitan halaman kepada sasaran",
rev:"Kaitan sasaran kepada halaman",
tabindex:"Tanda indeks",
accesskey:"Kunci akses",
ltr:"Kiri ke kanan",
rtl:"Kanan ke kiri",
link_list:"Senarai pautan"
});
\ No newline at end of file
tinyMCE.addI18n('nl.oacslink_dlg',{
title:"Link invoegen/bewerken",
url:"URL",
target:"Doel",
titlefield:"Titel",
is_email:"De ingevoerde URL lijkt op een e-mailadres. Wilt u de vereiste mailto: tekst voorvoegen?",
is_external:"De ingevoerde URL lijkt op een externe link. Wilt u de vereiste http:// tekst voorvoegen?",
list:"Lijst",
general_tab:"Algemeen",
popup_tab:"Popup",
events_tab:"Gebeurtenissen",
advanced_tab:"Geavanceerd",
general_props:"Algemene eigenschappen",
popup_props:"Popup eigenschappen",
event_props:"Gebeurtenissen",
advanced_props:"Geavanceerde eigenschappen",
popup_opts:"Opties",
anchor_names:"Ankers",
target_same:"In dit venster / frame openen",
target_parent:"In bovenliggend venster / frame openen",
target_top:"In bovenste frame openen (vervangt gehele pagina)",
target_blank:"In nieuw venster openen",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Venstertitel",
popup_return:"'return false' invoegen",
popup_scrollbars:"Scrollbalken weergeven",
popup_statusbar:"Statusbalk weergeven",
popup_toolbar:"Werkbalk weergeven",
popup_menubar:"Menubalk weergeven",
popup_location:"Lokatiebalk weergeven",
popup_resizable:"Aanpasbaar venster",
popup_dependent:"Afhankelijk (Alleen Mozilla/Firefox)",
popup_size:"Grootte",
popup_position:"Positie (X/Y)",
id:"Id",
style:"Stijl",
classes:"Klasses",
target_name:"Doel",
langdir:"Taalrichting",
target_langcode:"Taal",
langcode:"Taalcode",
encoding:"Taalcodering",
mime:"MIME type",
rel:"Relatie van pagina tot doel",
rev:"Relatie van doel tot pagina",
tabindex:"Tabvolgorde",
accesskey:"Toegangstoets",
ltr:"Van links naar rechts",
rtl:"Van rechts naar links",
link_list:"Lijst"
});
\ No newline at end of file
tinyMCE.addI18n('nn.oacslink_dlg',{
title:"Set inn / rediger lenkje",
url:"Lenkje-URL",
target:"M\u00E5l",
titlefield:"Tittel",
is_email:"URL-en du skreiv inn ser ut til \u00E5 vere ei e-postadresse. \u00D8nskjer du \u00E5 leggje til det obligatoriske mailto:-prefikset?",
is_external:"URL-en du skreiv inn ser ut til \u00E5 vere ei eksern lenkje. \u00D8nskjer du \u00E5 leggje til det obligatoriske http://-prefikset?",
list:"Lenkjeliste",
general_tab:"Generelt",
popup_tab:"Popup",
events_tab:"Hendingar",
advanced_tab:"Avansert",
general_props:"Generelt",
popup_props:"Popup-eigenskapar",
event_props:"Hendingar",
advanced_props:"Generelle eigenskapar",
popup_opts:"Innstillingar",
anchor_names:"Anker",
target_same:"Opne i same vindauge/ramme",
target_parent:"Opne i overordna vindauge/ramme",
target_top:"Opne i toppvindauge (erstattar alle rammer)",
target_blank:"Opne i nytt vindauge",
popup:"Javascript-popup",
popup_url:"Popup URL",
popup_name:"Namn p\u00E5 vindauge",
popup_return:"Set inn \'return false\'",
popup_scrollbars:"Vis rullefelt",
popup_statusbar:"Vis statusline",
popup_toolbar:"Vis verktyliner",
popup_menubar:"Vis menyline",
popup_location:"Vis plasseringsline",
popup_resizable:"Gjer vindauget skalerbart",
popup_dependent:"Avhengig vindu (berre i Mozilla/Firefox)",
popup_size:"Storleik",
popup_position:"Posisjon (X/Y)",
id:"Id",
style:"Stil",
classes:"Klasser",
target_name:"M\u00E5lnamn",
langdir:"Skriftretning",
target_langcode:"M\u00E5lspr\u00E5k",
langcode:"Spr\u00E5kkode",
encoding:"Teiknkonvertering",
mime:"M\u00E5let sin MIME-type",
rel:"Sida sitt forhold til m\u00E5let",
rev:"M\u00E5let sitt forhold til sida",
tabindex:"Tabulatorindeks",
accesskey:"Hurtigtast",
ltr:"Venstre mot h\u00F8gre",
rtl:"H\u00F8gre mot venstre",
link_list:"Lenkjeliste"
});
\ No newline at end of file
tinyMCE.addI18n('no.oacslink_dlg',{
title:"Sett inn / rediger lenke",
url:"Lenke-URL",
target:"M\u00E5l",
titlefield:"Tittel",
is_email:"URL-en du skrev inn ser ut til \u00E5 v\u00E6re en e-postadresse. \u00D8nsker du \u00E5 legge til det obligatoriske mailto:-prefikset?",
is_external:"URL-en du skrev inn ser ut til \u00E5 v\u00E6re en eksern lenke. \u00D8nsker du \u00E5 legge til det obligatoriske http://-prefikset?",
list:"Lenkeliste",
general_tab:"Generelt",
popup_tab:"Popup",
events_tab:"Hendelser",
advanced_tab:"Avansert",
general_props:"Generelt",
popup_props:"Popup-egenskaper",
event_props:"Hendelser",
advanced_props:"Generelle egenskaper",
popup_opts:"Innstillinger",
anchor_names:"Anker",
target_same:"\u00C5pne i same vindu/ramme",
target_parent:"\u00C5pne i overordnet vindu/ramme",
target_top:"\u00C5pne i toppvindu (erstatter alle rammer)",
target_blank:"\u00C5pne i nytt vindu",
popup:"Javascript-popup",
popup_url:"Popup URL",
popup_name:"Navn p\u00E5 vindu",
popup_return:"Sett inn \'return false\'",
popup_scrollbars:"Vis rullefelt",
popup_statusbar:"Vis statusline",
popup_toolbar:"Vis verktylinjer",
popup_menubar:"Vis menylinje",
popup_location:"Vis plasseringslinje",
popup_resizable:"Gj\u00F8r vinduet skalerbart",
popup_dependent:"Avhengig vindu (berre i Mozilla/Firefox)",
popup_size:"St\u00F8rrelse",
popup_position:"Posisjon (X/Y)",
id:"Id",
style:"Stil",
classes:"Klasser",
target_name:"M\u00E5lnavn",
langdir:"Skriftretning",
target_langcode:"M\u00E5lspr\u00E5k",
langcode:"Spr\u00E5kkode",
encoding:"Tegnkonvertering",
mime:"M\u00E5let sin MIME-type",
rel:"Siden sitt forhold til m\u00E5let",
rev:"M\u00E5let sitt forhold til siden",
tabindex:"Tabulatorindeks",
accesskey:"Hurtigtast",
ltr:"Venstre mot h\u00F8yre",
rtl:"H\u00F8yre mot venstre",
link_list:"Lenkeliste"
});
\ No newline at end of file
tinyMCE.addI18n('pl.oacslink_dlg',{
title:"Wstaw/edytuj link",
url:"Link URL",
target:"Cel",
titlefield:"Tytu\u0142",
is_email:"Podany adres wydaje si\u0119 by\u0107 adresem emailowym, czy chcesz doda\u0107 wymagany prefix mailto: ?",
is_external:"Podany adres wydaje si\u0119 by\u0107 zewn\u0119trznym linkiem, czy chcesz doda\u0107 wymagany prefix http:// ?",
list:"Lista link\u00F3w",
general_tab:"Og\u00F3lny",
popup_tab:"Popup",
events_tab:"Wydarzenia",
advanced_tab:"Zaawansowany",
general_props:"Og\u00F3lne w\u0142a\u015Bciwo\u015Bci",
popup_props:"Popup w\u0142a\u015Bciwo\u015Bci",
event_props:"Wydarzenia",
advanced_props:"Zaawansowae w\u0142a\u015Bciwo\u015Bci",
popup_opts:"Opcje",
anchor_names:"Kotwice",
target_same:"Otw\u00F3rz w tym oknie / ramce",
target_parent:"Otw\u00F3rz w nadrz\u0119dnej oknie / ramce",
target_top:"Otw\u00F3rz w g\u00F3rnej ramce (zamie\u0144 wszystkie ramki)",
target_blank:"Otw\u00F3rz w nowym oknie",
popup:"Wyskakuj\u0105ce okienko",
popup_url:"URL okienka",
popup_name:"Nazwa okiena",
popup_return:"Wklej 'return false'",
popup_scrollbars:"Poka\u017C paski przewijania",
popup_statusbar:"Poka\u017C pasek statusu",
popup_toolbar:"Poka\u017C narz\u0119dzia",
popup_menubar:"Poka\u017C pasek menu",
popup_location:"Poka\u017C pasek adresu",
popup_resizable:"Stw\u00F3rz okno z w\u0142a\u015Bciwo\u015Bciami zmiany rozmiaru",
popup_dependent:"Podleg\u0142y (Mozilla/Firefox wy\u0142\u0105cznie)",
popup_size:"Rozmiar",
popup_position:"Pozycja (X/Y)",
id:"Id",
style:"Wz\u00F3r",
classes:"Klasy",
target_name:"Cel",
langdir:"Kierunek czytania tekstu",
target_langcode:"Docelowy kod j\u0119zyka",
langcode:"Kod j\u0119zyka",
encoding:"Kodowanie znak\u00F3w celu",
mime:"Cel MIME type",
rel:"Relacje strony do celu",
rev:"Relacje celu do strony",
tabindex:"Tabindex",
accesskey:"Klawisz skr\u00F3tu",
ltr:"Kierunek z lewej do prawej",
rtl:"Kierunek z prawej do lewej",
link_list:"Lista odno\u015Bnik\u00F3w"
});
\ No newline at end of file
tinyMCE.addI18n('pt.oacslink_dlg',{
title:"Inserir/editar hyperlink",
url:"URL do hyperlink",
target:"Alvo",
titlefield:"T\u00EDtulo",
is_email:"A URL digitada parece ser um endere\u00E7o de e-mail. Deseja acrescentar o prefixo necess\u00E1rio mailto:?",
is_external:"A URL digitada parece conduzir a um link externo. Deseja acrescentar o prefixo necess\u00E1rio http://?",
list:"Lista de hyperlinks",
general_tab:"Geral",
popup_tab:"Popup",
events_tab:"Eventos",
advanced_tab:"Avan\u00E7ado",
general_props:"Propriedades gerais",
popup_props:"Propriedades de popup",
event_props:"Eventos",
advanced_props:"Propriedades avan\u00E7adas",
popup_opts:"Op\u00E7\u00F5es",
anchor_names:"\u00C2ncoras",
target_same:"Abrir nesta janela/quadro",
target_parent:"Abrir na janela/quadro pai",
target_top:"Abrir na p\u00E1gina inteira (substitui todos os quadros)",
target_blank:"Abrir numa nova janela",
popup:"Popup javascript",
popup_url:"URL do popup",
popup_name:"Nome da janela",
popup_return:"Inserir \"return false\"",
popup_scrollbars:"Mostrar as barras de scroll",
popup_statusbar:"Mostrar a barra de status",
popup_toolbar:"Mostrar a barra de ferramentas",
popup_menubar:"Mostrar a barra de menu",
popup_location:"Mostrar a barra de endere\u00E7os",
popup_resizable:"Permitir altera\u00E7\u00E3o do tamanho da janela",
popup_dependent:"Dependente (Mozilla/Firefox apenas)",
popup_size:"Tamanho",
popup_position:"Posi\u00E7\u00E3o (X/Y)",
id:"Id",
style:"Estilo",
classes:"Classes",
target_name:"Nome do alvo",
langdir:"Dire\u00E7\u00E3o do texto",
target_langcode:"Idioma alvo",
langcode:"C\u00F3digo da idioma",
encoding:"Codifica\u00E7\u00E3o de caracteres",
mime:"Tipo MIME alvo",
rel:"Rela\u00E7\u00E3o p\u00E1gina/alvo",
rev:"Rela\u00E7\u00E3 alvo/p\u00E1gina",
tabindex:"Tabindex",
accesskey:"Chave de acesso",
ltr:"Da esquerda para a direita",
rtl:"Da direita para a esquerda",
link_list:"Lista de hyperlinks"
});
\ No newline at end of file
tinyMCE.addI18n('ro.oacslink_dlg',{
title:"Insereaz\u0103/editeaz\u0103 link",
url:"URL leg\u0103tur\u0103",
target:"\u0162int\u0103",
titlefield:"Titlu",
is_email:"URL-ul pe care l-a\u0163i introdus pare a fi o adres\u0103 de e-mail. Dori\u0163i s\u0103 adaug \u015Fi prefixul mailto: necesar?",
is_external:"URL-ul pe care l-a\u0163i introdus pare a fi o leg\u0103tur\u0103 extern\u0103. Dori\u0163i s\u0103 adaug \u015Fi prefixul http:// necesar?",
list:"List\u0103 de leg\u0103turi",
general_tab:"General",
popup_tab:"Popup",
events_tab:"Evenimente",
advanced_tab:"Avansat",
general_props:"Propriet\u0103\u0163i generale",
popup_props:"Propriet\u0103\u0163i popup",
event_props:"Evenimente",
advanced_props:"Propriet\u0103\u0163i avansate",
popup_opts:"Op\u0163iuni",
anchor_names:"Ancore",
target_same:"Deschide leg\u0103tura \u00EEn aceea\u015Fi fereastr\u0103/acela\u015Fi cadru",
target_parent:"Deschide leg\u0103tura \u00EEn fereastra/cadrul p\u0103rinte",
target_top:"Deschide \u00EEn frame-ul cel mai mare (\u00EEnlocuie\u015Fte celelalte frame-uri)",
target_blank:"Deschide \u00EEn fereastr\u0103 nou\u0103",
popup:"Javascript Popup",
popup_url:"URL Popup",
popup_name:"Nume fereastr\u0103",
popup_return:"Insereaz\u0103 'return false'",
popup_scrollbars:"Arat\u0103 barele de derulare",
popup_statusbar:"Arat\u0103 bara de stare",
popup_toolbar:"Arat\u0103 toolbar-uri",
popup_menubar:"Arat\u0103 meniul",
popup_location:"Arat\u0103 bara de adrese",
popup_resizable:"Fereastr\u0103 redimensionabil\u0103?",
popup_dependent:"Dependent (Mozilla/Firefox)?",
popup_size:"M\u0103rime",
popup_position:"Pozi\u0163ie (X/Y)",
id:"Id",
style:"Stil",
classes:"Clase",
target_name:"Nume \u0163int\u0103",
langdir:"Direc\u0163ie limb\u0103",
target_langcode:"Limb\u0103",
langcode:"Cod limb\u0103",
encoding:"Set de caractere \u0163int\u0103",
mime:"MIME type \u0163int\u0103",
rel:"Rela\u0163ia paginii cu \u0163inta",
rev:"Rela\u0163ia \u0163intei cu pagina",
tabindex:"Tabindex",
accesskey:"Cheie de acces",
ltr:"St\u00E2nga la dreapta",
rtl:"Dreapta la st\u00E2nga",
link_list:"List\u0103 leg\u0103turi"
});
\ No newline at end of file
tinyMCE.addI18n('ru.oacslink_dlg',{
title:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C/\u0440\u0435\u0434\u0430\u043A\u0442\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0441\u0441\u044B\u043B\u043A\u0443",
url:"\u0410\u0434\u0440\u0435\u0441 \u0441\u0441\u044B\u043B\u043A\u0438",
target:"\u0426\u0435\u043B\u044C",
titlefield:"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435",
is_email:"\u0412\u0432\u0435\u0434\u0435\u043D\u043D\u044B\u0439 \u0430\u0434\u0440\u0435\u0441 \u043F\u043E\u0445\u043E\u0436 \u043D\u0430 \u044D\u043B. \u043F\u043E\u0447\u0442\u0443, \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0440\u0435\u0444\u0438\u043A\u0441 mailto:?",
is_external:"\u0412\u0432\u0435\u0434\u0435\u043D\u043D\u044B\u0439 \u0430\u0434\u0440\u0435\u0441 \u043F\u043E\u0445\u043E\u0436 \u043D\u0430 \u0432\u043D\u0435\u0448\u043D\u044E\u044E \u0441\u0441\u044B\u043B\u043A\u0443, \u0432\u044B \u0445\u043E\u0442\u0438\u0442\u0435 \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u043F\u0440\u0435\u0444\u0438\u043A\u0441 http://?",
list:"\u0421\u043F\u0438\u0441\u043E\u043A \u0441\u0441\u044B\u043B\u043E\u043A",
general_tab:"\u041E\u0431\u0449\u0438\u0435",
popup_tab:"\u0412\u0441\u043F\u043B\u044B\u0432\u0430\u044E\u0449\u0435\u0435 \u043E\u043A\u043D\u043E",
events_tab:"\u0421\u043E\u0431\u044B\u0442\u0438\u044F",
advanced_tab:"\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435",
general_props:"\u041E\u0431\u0449\u0438\u0435 \u0441\u0432\u043E\u0439\u0441\u0442\u0432\u0430",
popup_props:"\u0421\u0432\u043E\u0439\u0441\u0442\u0432\u0430 \u0432\u0441\u043F\u043B\u044B\u0432\u0430\u044E\u0449\u0435\u0433\u043E \u043E\u043A\u043D\u0430",
event_props:"\u0421\u043E\u0431\u044B\u0442\u0438\u044F",
advanced_props:"\u0414\u043E\u043F\u043E\u043B\u043D\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0435 \u0441\u0432\u043E\u0439\u0441\u0442\u0432\u0430",
popup_opts:"\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u044B",
anchor_names:"\u042F\u043A\u043E\u0440\u0438",
target_same:"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u044D\u0442\u043E\u043C \u043E\u043A\u043D\u0435/\u0444\u0440\u0435\u0439\u043C\u0435",
target_parent:"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u0440\u043E\u0434\u0438\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u043C \u043E\u043A\u043D\u0435/\u0444\u0440\u0435\u0439\u043C\u0435",
target_top:"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u0432\u0435\u0440\u0445\u043D\u0435\u043C \u0444\u0440\u0435\u0439\u043C\u0435 (\u0437\u0430\u043C\u0435\u0449\u0430\u0435\u0442 \u0432\u0441\u0435 \u043E\u0441\u0442\u0430\u043B\u044C\u043D\u044B\u0435)",
target_blank:"\u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0432 \u043D\u043E\u0432\u043E\u043C \u043E\u043A\u043D\u0435",
popup:"\u0412\u0441\u043F\u043B\u044B\u0432\u0430\u044E\u0449\u0435\u0435 \u043E\u043A\u043D\u043E",
popup_url:"\u0410\u0434\u0440\u0435\u0441 \u0432\u0441\u043F\u043B\u044B\u0432\u0430\u044E\u0449\u0435\u0433\u043E \u043E\u043A\u043D\u0430",
popup_name:"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u043E\u043A\u043D\u0430",
popup_return:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044C 'return false'",
popup_scrollbars:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u043F\u043E\u043B\u043E\u0441\u044B \u043F\u0440\u043E\u043A\u0440\u0443\u0442\u043A\u0438",
popup_statusbar:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0441\u043E\u0441\u0442\u043E\u044F\u043D\u0438\u044F",
popup_toolbar:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u043F\u0430\u043D\u0435\u043B\u0438 \u0438\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u043E\u0432",
popup_menubar:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u043C\u0435\u043D\u044E",
popup_location:"\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0441\u0442\u0440\u043E\u043A\u0443 \u0430\u0434\u0440\u0435\u0441\u0430",
popup_resizable:"\u0421\u0434\u0435\u043B\u0430\u0442\u044C \u0440\u0430\u0437\u043C\u0435\u0440 \u043E\u043A\u043D\u0430 \u0438\u0437\u043C\u0435\u043D\u044F\u0435\u043C\u044B\u043C",
popup_dependent:"\u0417\u0430\u0432\u0438\u0441\u0438\u043C\u044B\u0435 (\u0442\u043E\u043B\u044C\u043A\u043E Mozilla/Firefox)",
popup_size:"\u0420\u0430\u0437\u043C\u0435\u0440",
popup_position:"\u041F\u043E\u0437\u0438\u0446\u0438\u044F (X/Y)",
id:"\u0418\u0434\u0435\u043D\u0442\u0438\u0444\u0438\u043A\u0430\u0442\u043E\u0440",
style:"\u0421\u0442\u0438\u043B\u044C",
classes:"\u041A\u043B\u0430\u0441\u0441\u044B",
target_name:"\u041D\u0430\u0437\u0432\u0430\u043D\u0438\u0435 \u0446\u0435\u043B\u0438",
langdir:"\u041D\u0430\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435 \u044F\u0437\u044B\u043A\u0430",
target_langcode:"\u0426\u0435\u043B\u0435\u0432\u043E\u0439 \u044F\u0437\u044B\u043A",
langcode:"\u041A\u043E\u0434 \u044F\u0437\u044B\u043A\u0430",
encoding:"\u0426\u0435\u043B\u0435\u0432\u0430\u044F \u043A\u043E\u0434\u0438\u0440\u043E\u0432\u043A\u0430",
mime:"\u0426\u0435\u043B\u0435\u0432\u043E\u0439 MIME-\u0442\u0438\u043F",
rel:"\u041E\u0442\u043D\u043E\u0448\u0435\u043D\u0438\u0435 \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0430 \u043A \u0446\u0435\u043B\u0438",
rev:"\u041E\u0442\u043D\u043E\u0448\u0435\u043D\u0438\u0435 \u0446\u0435\u043B\u044C \u043A \u0441\u0442\u0440\u0430\u043D\u0438\u0446\u0435",
tabindex:"\u0418\u043D\u0434\u0435\u043A\u0441 \u0442\u0430\u0431\u0443\u043B\u044F\u0446\u0438\u0438",
accesskey:"\u041A\u043B\u0430\u0432\u0438\u0448\u0430 \u0434\u043E\u0441\u0442\u0443\u043F\u0430",
ltr:"\u0421\u043B\u0435\u0432\u0430 \u043D\u0430\u043F\u0440\u0430\u0432\u043E",
rtl:"\u0421\u043F\u0440\u0430\u0432\u0430 \u043D\u0430\u043B\u0435\u0432\u043E",
link_list:"\u0421\u043F\u0438\u0441\u043E\u043A \u0441\u0441\u044B\u043B\u043E\u043A"
});
\ No newline at end of file
tinyMCE.addI18n('si.oacslink_dlg',{
title:"Insert/edit link",
url:"Link URL",
target:"Target",
titlefield:"Title",
is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
list:"Link list",
general_tab:"General",
popup_tab:"Popup",
events_tab:"Events",
advanced_tab:"Advanced",
general_props:"General properties",
popup_props:"Popup properties",
event_props:"Events",
advanced_props:"Advanced properties",
popup_opts:"Options",
anchor_names:"Anchors",
target_same:"Open in this window / frame",
target_parent:"Open in parent window / frame",
target_top:"Open in top frame (replaces all frames)",
target_blank:"Open in new window",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Window name",
popup_return:"Insert 'return false'",
popup_scrollbars:"Show scrollbars",
popup_statusbar:"Show status bar",
popup_toolbar:"Show toolbars",
popup_menubar:"Show menu bar",
popup_location:"Show location bar",
popup_resizable:"Make window resizable",
popup_dependent:"Dependent (Mozilla/Firefox only)",
popup_size:"Size",
popup_position:"Position (X/Y)",
id:"Id",
style:"Style",
classes:"Classes",
target_name:"Target name",
langdir:"Language direction",
target_langcode:"Target language",
langcode:"Language code",
encoding:"Target character encoding",
mime:"Target MIME type",
rel:"Relationship page to target",
rev:"Relationship target to page",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"Left to right",
rtl:"Right to left",
link_list:"Link list"
});
\ No newline at end of file
tinyMCE.addI18n('sr.oacslink_dlg',{
title:"Umetni/uredi poveznicu",
url:"URL poveznice",
target:"Meta",
titlefield:"Naslov",
is_email:"URL koji ste uneli izgleda kao e-mail adresa, \u017Eelite li dodati potrebni mailto: prefiks?",
is_external:"URL koji ste uneli izgleda kao vanjska poveznica, \u017Eelite li dodati potrebni http:// prefiks?",
list:"Lista poveznica",
general_tab:"Osnovno",
popup_tab:"Popup",
events_tab:"Doga\u0111aj",
advanced_tab:"Napredno",
general_props:"Osnovna svojstva",
popup_props:"Svojstva popup prozora",
event_props:"Doga\u0111aji",
advanced_props:"Napredna svojstva",
popup_opts:"Opcije",
anchor_names:"Sidra",
target_same:"Otovori u novom prozoru / okviru",
target_parent:"Otvori u izvornom prozoru / okvir",
target_top:"Otvori u gornjem okviru (zamjenjuje sve okvire)",
target_blank:"Otvori u novom prozoru",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"Ime prozora",
popup_return:"Umetni 'return false'",
popup_scrollbars:"Poka\u017Ei kliza\u010De",
popup_statusbar:"Poka\u017Ei statusnu traku",
popup_toolbar:"Poka\u017Ei alatne trake",
popup_menubar:"Poka\u017Ei izbornik",
popup_location:"Poka\u017Ei traku lokacije",
popup_resizable:"Prozor promjenjive veli\u010Dine",
popup_dependent:"Ovisan (samo za Mozilla/Firefox)",
popup_size:"Veli\u010Dina",
popup_position:"Pozicija (X/Y)",
id:"Id",
style:"Stil",
classes:"Klasa",
target_name:"Ime mete",
langdir:"Smjer jezika",
target_langcode:"Jezik",
langcode:"Kod jezika",
encoding:"Kodiranje znakova",
mime:"MIME tip",
rel:"Odnos stranice prema meti",
rev:"Odnos mete prema stranici",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"S leva na desno",
rtl:"S desna na levo",
link_list:"Lista poveznica"
});
\ No newline at end of file
tinyMCE.addI18n('sv.oacslink_dlg',{
title:"Infoga/redigera l\u00E4nk",
url:"L\u00E4nkens URL",
target:"M\u00E5l",
titlefield:"Titel",
is_email:"L\u00E4nken du angav verkar vara en e-post adress. Vill du infoga mailto: prefixet p\u00E5 l\u00E4nken?",
is_external:"L\u00E4nken du angav verkar vara en extern adress. Vill du infoga http:// prefixet p\u00E5 l\u00E4nken?",
list:"L\u00E4nklista",
general_tab:"Generellt",
popup_tab:"Popup",
events_tab:"H\u00E4ndelser",
advanced_tab:"Avancerat",
general_props:"Generella inst\u00E4llningar",
popup_props:"Popup-inst\u00E4llningar",
event_props:"H\u00E4ndelser",
advanced_props:"Avancerade inst\u00E4llningar",
popup_opts:"Inst\u00E4llningar",
anchor_names:"Bokm\u00E4rken",
target_same:"\u00D6ppna i detta f\u00F6nster/ram",
target_parent:"\u00D6ppna i \u00F6verliggande f\u00F6nster/ram",
target_top:"\u00D6ppna i toppramen (ers\u00E4tter alla ramar)",
target_blank:"\u00D6ppna i nytt f\u00F6nster",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"F\u00F6nsternamn",
popup_return:"Infoga 'return false'",
popup_scrollbars:"Rullningslister",
popup_statusbar:"Statusf\u00E4lt",
popup_toolbar:"Verktygsf\u00E4lt",
popup_menubar:"Menyrad",
popup_location:"Adressraden",
popup_resizable:"Skalbart f\u00F6nster",
popup_dependent:"Beroende av (Mozilla/Firefox enbart)",
popup_size:"Storlek",
popup_position:"Position (x/y)",
id:"Id",
style:"Stil",
classes:"Klasser",
target_name:"M\u00E5lnamn",
langdir:"Skriftriktning",
target_langcode:"M\u00E5lspr\u00E5k",
langcode:"Spr\u00E5kkod",
encoding:"Teckenformattering",
mime:"MIME type",
rel:"Relation (rel attribut)",
rev:"Omv\u00E4nd relation (rev)",
tabindex:"Tabbindex",
accesskey:"Snabbtangent",
ltr:"V\u00E4nster till h\u00F6ger",
rtl:"H\u00F6ger till v\u00E4nster",
link_list:"L\u00E4nklista"
});
\ No newline at end of file
tinyMCE.addI18n('th.oacslink_dlg',{
title:"\u0E40\u0E1E\u0E34\u0E48\u0E21/\u0E41\u0E01\u0E49\u0E44\u0E02 \u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C",
url:"\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48 \u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C",
target:"\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22",
titlefield:"\u0E0A\u0E37\u0E48\u0E2D",
is_email:"URL \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E1B\u0E49\u0E2D\u0E19\u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E27\u0E48\u0E32\u0E08\u0E30\u0E21\u0E35\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48\u0E2D\u0E35\u0E40\u0E21\u0E25\u0E2D\u0E22\u0E39\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1E\u0E34\u0E48\u0E21 mailto: \u0E19\u0E33\u0E2B\u0E19\u0E49\u0E32\u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48 ",
is_external:"URL \u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E1B\u0E49\u0E2D\u0E19\u0E14\u0E39\u0E40\u0E2B\u0E21\u0E37\u0E2D\u0E19\u0E27\u0E48\u0E32\u0E20\u0E32\u0E22\u0E19\u0E2D\u0E01\u0E25\u0E34\u0E07\u0E04\u0E04\u0E38\u0E13\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E40\u0E1E\u0E34\u0E48\u0E21 http:// \u0E2B\u0E23\u0E37\u0E2D\u0E44\u0E21\u0E48 ?",
list:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C",
general_tab:"\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B",
popup_tab:"\u0E1B\u0E4A\u0E2D\u0E1B-\u0E2D\u0E31\u0E1E",
events_tab:"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21",
advanced_tab:"\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07",
general_props:"\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E17\u0E31\u0E48\u0E27\u0E44\u0E1B",
popup_props:"\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E1B\u0E4A\u0E2D\u0E1B-\u0E2D\u0E31\u0E1E",
event_props:"\u0E01\u0E34\u0E08\u0E01\u0E23\u0E23\u0E21",
advanced_props:"\u0E15\u0E31\u0E49\u0E07\u0E04\u0E48\u0E32\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07",
popup_opts:"\u0E15\u0E31\u0E27\u0E40\u0E25\u0E37\u0E2D\u0E01",
anchor_names:"\u0E0A\u0E37\u0E48\u0E2D\u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C",
target_same:"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E2B\u0E19\u0E49\u0E32\u0E15\u0E48\u0E32\u0E07\u0E43\u0E2B\u0E21\u0E48 / \u0E40\u0E1F\u0E23\u0E21",
target_parent:"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E2B\u0E19\u0E49\u0E32\u0E15\u0E48\u0E32\u0E07\u0E40\u0E14\u0E34\u0E21 / \u0E40\u0E1F\u0E23\u0E21",
target_top:"\u0E40\u0E1B\u0E34\u0E14\u0E17\u0E35\u0E48\u0E40\u0E1F\u0E23\u0E21\u0E1A\u0E19 (\u0E41\u0E17\u0E19\u0E17\u0E35\u0E48\u0E17\u0E38\u0E01\u0E40\u0E1F\u0E23\u0E21)",
target_blank:"\u0E40\u0E1B\u0E34\u0E14\u0E43\u0E19\u0E2B\u0E19\u0E49\u0E32\u0E15\u0E48\u0E32\u0E07\u0E43\u0E2B\u0E21\u0E48",
popup:"\u0E08\u0E32\u0E27\u0E32 \u0E1B\u0E4A\u0E2D\u0E1B-\u0E2D\u0E31\u0E1E",
popup_url:"\u0E1B\u0E4A\u0E2D\u0E1B-\u0E2D\u0E31\u0E1E URL",
popup_name:"\u0E0A\u0E37\u0E48\u0E2D\u0E2B\u0E19\u0E49\u0E32\u0E15\u0E48\u0E32\u0E07",
popup_return:"\u0E40\u0E1E\u0E34\u0E48\u0E21 'return false'",
popup_scrollbars:"\u0E41\u0E2A\u0E14\u0E07\u0E2A\u0E01\u0E2D\u0E25\u0E1A\u0E32\u0E23\u0E4C",
popup_statusbar:"\u0E41\u0E2A\u0E14\u0E07 \u0E2A\u0E40\u0E15\u0E15\u0E31\u0E2A\u0E1A\u0E32\u0E23\u0E4C",
popup_toolbar:"\u0E41\u0E2A\u0E40\u0E07\u0E17\u0E39\u0E25\u0E1A\u0E32\u0E23\u0E4C",
popup_menubar:"\u0E41\u0E2A\u0E14\u0E07\u0E40\u0E21\u0E19\u0E39\u0E1A\u0E32\u0E23\u0E4C",
popup_location:"\u0E41\u0E2A\u0E14\u0E07\u0E0A\u0E48\u0E2D\u0E07\u0E17\u0E35\u0E48\u0E2D\u0E22\u0E39\u0E48",
popup_resizable:"\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E02\u0E19\u0E32\u0E14\u0E02\u0E2D\u0E07\u0E2B\u0E19\u0E49\u0E32\u0E15\u0E48\u0E32\u0E07\u0E44\u0E14\u0E49",
popup_dependent:"Dependent (Mozilla/Firefox only)",
popup_size:"\u0E02\u0E19\u0E32\u0E14",
popup_position:"\u0E15\u0E33\u0E41\u0E2B\u0E19\u0E48\u0E07 (X/Y)",
id:"Id",
style:"\u0E23\u0E39\u0E1B\u0E41\u0E1A\u0E1A",
classes:"\u0E04\u0E25\u0E32\u0E2A",
target_name:"\u0E0A\u0E37\u0E48\u0E2D\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22",
langdir:"\u0E17\u0E34\u0E28\u0E17\u0E32\u0E07\u0E01\u0E32\u0E23\u0E2D\u0E48\u0E32\u0E19",
target_langcode:"\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22 \u0E20\u0E32\u0E29\u0E32",
langcode:"\u0E42\u0E04\u0E4A\u0E14\u0E20\u0E32\u0E29\u0E32",
encoding:"\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22\u0E15\u0E31\u0E27\u0E2D\u0E31\u0E01\u0E29\u0E23",
mime:"\u0E40\u0E1B\u0E49\u0E32\u0E2B\u0E21\u0E32\u0E22 MIME type",
rel:"Relationship page to target",
rev:"Relationship target to page",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"\u0E0B\u0E49\u0E32\u0E22\u0E44\u0E1B\u0E02\u0E27\u0E32",
rtl:"\u0E02\u0E27\u0E32\u0E44\u0E1B\u0E0B\u0E49\u0E32\u0E22",
link_list:"\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E25\u0E34\u0E49\u0E07\u0E04\u0E4C"
});
\ No newline at end of file
tinyMCE.addI18n('tr.oacslink_dlg',{
title:"Ba\u011Flant\u0131 ekle/d\u00FCzenle",
url:"Ba\u011Flant\u0131 URL",
target:"Hedef",
titlefield:"Ba\u015Fl\u0131k",
is_email:"Girdi\u011Finiz URL bir e-posta adresi gibi g\u00F6z\u00FCk\u00FCyor, gerekli olan mailto: \u00F6nekinin eklenmesini ister misiniz?",
is_external:"Girdi\u011Finiz URL d\u0131\u015F bir ba\u011Flant\u0131 gibi g\u00F6z\u00FCk\u00FCyor, gerekli olan http:// \u00F6nekinin eklenmesini ister misiniz?",
list:"Link list",
general_tab:"General",
popup_tab:"A\u00E7\u0131lma",
events_tab:"Olaylar",
advanced_tab:"Geli\u015Fmi\u015F",
general_props:"Genel \u00F6zellikler",
popup_props:"A\u00E7\u0131l\u0131r pencere \u00F6zellikleri",
event_props:"Olaylar",
advanced_props:"Geli\u015Fmi\u015F \u00F6zellikler",
popup_opts:"Se\u00E7enekler",
anchor_names:"\u00C7engel noktalar\u0131",
target_same:"Bu pencere/\u00E7er\u00E7evede a\u00E7",
target_parent:"Ata pencere/\u00E7evrede a\u00E7",
target_top:"\u00DCst \u00E7er\u00E7evede a\u00E7 (t\u00FCm \u00E7er\u00E7eveleri de\u011Fi\u015Ftirir)",
target_blank:"Yeni pencerede a\u00E7",
popup:"Javascript a\u00E7\u0131l\u0131r pencere",
popup_url:"A\u00E7\u0131lacak URL",
popup_name:"Pencere ismi",
popup_return:"'return false' ekle",
popup_scrollbars:"Kayd\u0131rma \u00E7ubuklar\u0131n\u0131 g\u00F6ster",
popup_statusbar:"Durum \u00E7ubu\u011Funu g\u00F6ster",
popup_toolbar:"Ara\u00E7 \u00E7ubuklar\u0131n\u0131 g\u00F6ster",
popup_menubar:"Men\u00FC \u00E7ubu\u011Funu g\u00F6ster",
popup_location:"Konum \u00E7ubu\u011Funu g\u00F6ster",
popup_resizable:"Pencereyi boyutlanabilir yap",
popup_dependent:"Ba\u011F\u0131ml\u0131 (sadece Mozilla/Firefox)",
popup_size:"Boyut",
popup_position:"Konum (X/Y)",
id:"Id",
style:"Stil",
classes:"S\u0131n\u0131flar",
target_name:"Hedef ismi",
langdir:"Dil y\u00F6nelimi",
target_langcode:"Hedef dil",
langcode:"Dil kodu",
encoding:"Hedef karakter kodlamas\u0131",
mime:"Hedef MIME tipi",
rel:"Sayfadan hedefe ili\u015Fki",
rev:"Hedeften sayfaya ili\u015Fki",
tabindex:"Sekme indeksi",
accesskey:"Eri\u015Fim tu\u015Fu",
ltr:"Soldan sa\u011Fa",
rtl:"Sa\u011Fdan sola",
link_list:"Ba\u011Flant\u0131 listesi"
});
\ No newline at end of file
tinyMCE.addI18n('uk.oacslink_dlg',{
title:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438/\u0437\u043C\u0456\u043D\u0438\u0442\u0438 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F",
url:"\u0410\u0434\u0440\u0435\u0441\u0430",
target:"\u0412\u0456\u0434\u043A\u0440\u0438\u0442\u0438 \u0432...",
titlefield:"\u0417\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A",
is_email:"\u0412\u0432\u0435\u0434\u0435\u043D\u0438\u0439 URL \u0441\u0445\u043E\u0436\u0438\u0439 \u043D\u0430 email \u0430\u0434\u0440\u0435\u0441\u0443, \u0432\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043E\u0434\u0430\u0442\u0438 \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0438\u0439 \u043F\u0440\u0435\u0444\u0456\u043A\u0441 mailto?",
is_external:"\u0412\u0432\u0435\u0434\u0435\u043D\u0438\u0439 URL \u0441\u0445\u043E\u0436\u0438\u0439 \u043D\u0430 \u0437\u043E\u0432\u043D\u0456\u0448\u043D\u0454 \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F, \u0432\u0438 \u0431\u0430\u0436\u0430\u0454\u0442\u0435 \u0434\u043E\u0434\u0430\u0442\u0438 \u043D\u0435\u043E\u0431\u0445\u0456\u0434\u043D\u0438\u0439 \u043F\u0440\u0435\u0444\u0456\u043A\u0441 http://?",
list:"\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u044C",
general_tab:"\u0417\u0430\u0433\u0430\u043B\u044C\u043D\u0435",
popup_tab:"Popup",
events_tab:"\u041F\u043E\u0434\u0456\u0457",
advanced_tab:"\u0414\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u043E",
general_props:"\u0417\u0430\u0433\u0430\u043B\u044C\u043D\u0456 \u0432\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456",
popup_props:"\u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456 Popup",
event_props:"\u041F\u043E\u0434\u0456\u0457",
advanced_props:"\u0420\u043E\u0437\u0448\u0438\u0440\u0435\u043D\u043D\u0456 \u0432\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456",
popup_opts:"\u0412\u043B\u0430\u0441\u0442\u0438\u0432\u043E\u0441\u0442\u0456",
anchor_names:"\u042F\u043A\u043E\u0440\u0456",
target_same:"\u0412\u0456\u0434\u043A\u0440\u0438\u0442\u0438 \u0432 \u0446\u044C\u043E\u043C\u0443 \u0436 \u0432\u0456\u043A\u043D\u0456 / \u0444\u0440\u0435\u0439\u043C\u0456",
target_parent:"\u0412\u0456\u0434\u043A\u0440\u0438\u0442\u0438 \u0432 \u0431\u0430\u0442\u044C\u043A\u0456\u0432\u0441\u044C\u043A\u043E\u043C\u0443 \u0432\u0456\u043A\u043D\u0456 / \u0444\u0440\u0435\u0439\u043C\u0456",
target_top:"\u0412\u0456\u0434\u043A\u0440\u0438\u0442\u0438 \u0443 \u0432\u0435\u0440\u0445\u043D\u044C\u043E\u043C\u0443 \u0444\u0440\u0435\u0439\u043C\u0456 (\u0437\u0430\u043C\u0456\u043D\u0438\u0442\u0438 \u0432\u0441\u0456 \u0444\u0440\u0435\u0439\u043C\u0438)",
target_blank:"\u0412\u0456\u0434\u043A\u0440\u0438\u0442\u0438 \u0432 \u043D\u043E\u0432\u043E\u043C\u0443 \u0432\u0456\u043A\u043D\u0456",
popup:"Javascript popup",
popup_url:"Popup URL",
popup_name:"\u041D\u0430\u0437\u0432\u0430 \u0432\u0456\u043A\u043D\u0430",
popup_return:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 'return false'",
popup_scrollbars:"\u041F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0441\u043A\u0440\u043E\u043B\u0435\u0440\u0438",
popup_statusbar:"\u041F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u0441\u0442\u0430\u0442\u0443\u0441",
popup_toolbar:"\u041F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043F\u0430\u043D\u0435\u043B\u0456 \u0456\u043D\u0441\u0442\u0440\u0443\u043C\u0435\u043D\u0442\u0456\u0432",
popup_menubar:"\u041F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043C\u0435\u043D\u044E",
popup_location:"\u041F\u043E\u043A\u0430\u0437\u0443\u0432\u0430\u0442\u0438 \u043F\u0430\u043D\u0435\u043B\u044C location",
popup_resizable:"\u0414\u043E\u0437\u0432\u043E\u043B\u044F\u0442\u0438 \u0437\u043C\u0456\u043D\u044E\u0432\u0430\u0442\u0438 \u0440\u043E\u0437\u043C\u0456\u0440",
popup_dependent:"Dependent (\u043B\u0438\u0448\u0435 \u0434\u043B\u044F Mozilla/Firefox)",
popup_size:"\u0420\u043E\u0437\u043C\u0456\u0440",
popup_position:"\u041F\u043E\u0437\u0438\u0446\u0456\u044F (X/Y)",
id:"Id",
style:"\u0421\u0442\u0438\u043B\u044C",
classes:"\u041A\u043B\u0430\u0441\u0438",
target_name:"Target name",
langdir:"\u041D\u0430\u043F\u0440\u044F\u043C \u043C\u043E\u0432\u0438",
target_langcode:"Target language",
langcode:"\u041A\u043E\u0434 \u043C\u043E\u0432\u0438",
encoding:"Target character encoding",
mime:"Target MIME type",
rel:"Relationship page to target",
rev:"Relationship target to page",
tabindex:"Tabindex",
accesskey:"Accesskey",
ltr:"\u0417\u043B\u0456\u0432\u0430 \u043F\u0440\u0430\u0432\u043E\u0440\u0443\u0447",
rtl:"\u0421\u043F\u0440\u0430\u0432\u0430 \u043B\u0456\u0432\u043E\u0440\u0443\u0447",
link_list:"\u0421\u043F\u0438\u0441\u043E\u043A \u043F\u043E\u0441\u0438\u043B\u0430\u043D\u044C"
});
\ No newline at end of file
tinyMCE.addI18n('zh.oacslink_dlg',{
title:"\u63D2\u5165/\u7F16\u8F91\u94FE\u63A5",
url:"\u94FE\u63A5\u5730\u5740",
target:"\u76EE\u6807",
titlefield:"\u67E5\u627E",
is_email:"\u60A8\u8F93\u5165\u7684\u662F\u4E00\u4E2A\u7535\u5B50\u90AE\u4EF6\u5730\u5740\uFF0C\u662F\u5426\u9700\u8981\u5728\u90AE\u5740\u524D\u65B9\u52A0\u5165mailto:\uFF1F",
is_external:"\u60A8\u8F93\u5165\u7684\u662F\u4E00\u4E2A\u5916\u90E8\u94FE\u63A5\uFF0C\u662F\u5426\u9700\u8981\u5728\u7F51\u5740\u524D\u65B9\u52A0\u5165http://\uFF1F",
list:"\u94FE\u63A5\u5217\u8868",
general_tab:"\u5E38\u89C4",
popup_tab:"\u5FEB\u663E\u7A97\u53E3",
events_tab:"\u4E8B\u4EF6",
advanced_tab:"\u9AD8\u7EA7",
general_props:"\u5E38\u89C4\u5C5E\u6027",
popup_props:"\u7A97\u53E3\u5C5E\u6027",
event_props:"\u4E8B\u4EF6",
advanced_props:"\u9AD8\u7EA7\u5C5E\u6027",
popup_opts:"\u9009\u9879",
anchor_names:"\u951A\u70B9",
target_same:"\u6253\u5F00\u5728\u65B0\u7A97\u53E3/\u6846\u67B6",
target_parent:"\u6253\u5F00\u5728\u7236\u7A97\u53E3/\u6846\u67B6",
target_top:"\u6253\u5F00\u5728\u6700\u4E0A\u5C42\u7684\u6846\u67B6(\u66FF\u6362\u6240\u6709\u6846\u67B6)",
target_blank:"\u6253\u5F00\u5728\u65B0\u7A97\u53E3",
popup:"Javascript\u5FEB\u663E\u7A97\u53E3",
popup_url:"\u7A97\u53E3\u7F51\u5740",
popup_name:"\u7A97\u53E3\u540D\u79F0",
popup_return:"\u63D2\u5165'return false'",
popup_scrollbars:"\u663E\u793A\u8FB9\u6761",
popup_statusbar:"\u663E\u793A\u72B6\u6001\u533A",
popup_toolbar:"\u663E\u793A\u5DE5\u5177\u680F",
popup_menubar:"\u663E\u793A\u83DC\u5355",
popup_location:"\u663E\u793A\u7F51\u5740\u5217",
popup_resizable:"\u53EF\u8C03\u6574\u7A97\u53E3\u5C3A\u5BF8",
popup_dependent:"\u4ECE\u5C5E(\u53EA\u6709Mozilla/Firefox\u6709\u6548)",
popup_size:"\u5C3A\u5BF8",
popup_position:"\u5750\u6807(X/Y)",
id:"Id",
style:"\u6837\u5F0F",
classes:"\u7C7B\u578B",
target_name:"\u76EE\u6807\u540D\u79F0",
langdir:"\u8BED\u8A00\u4E66\u5199\u65B9\u5411",
target_langcode:"\u76EE\u6807\u8BED\u8A00",
langcode:"\u8BED\u8A00\u7F16\u7801",
encoding:"\u7F16\u7801",
mime:"\u76EE\u6807MIME\u7C7B\u578B",
rel:"\u9875\u5230\u76EE\u6807\u7684\u5173\u7CFB",
rev:"\u76EE\u6807\u5230\u9875\u7684\u5173\u7CFB",
tabindex:"Tab\u7D22\u5F15",
accesskey:"\u5FEB\u6377\u952E",
ltr:"\u7531\u5DE6\u5230\u53F3",
rtl:"\u7531\u53F3\u5230\u5DE6",
link_list:"\u94FE\u63A5\u5217\u8868"
});
\ No newline at end of file
Check the TinyMCE documentation for details on this plugin.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment