Version Description
- added option to enable admin to change the upload user of a file
- code improvements and bug fixes related to file download feature
- code improvements related to clean database function
- added Italian translation
Download this release
Release Info
Developer | nickboss |
Plugin | WordPress File Upload |
Version | 3.9.4 |
Comparing to | |
See all releases |
Code changes from version 3.9.3 to 3.9.4
- js/wordpress_file_upload_adminfunctions.js +3 -3
- languages/wp-file-upload-de_DE.mo +0 -0
- languages/wp-file-upload-de_DE.po +101 -89
- languages/wp-file-upload-el_GR.mo +0 -0
- languages/wp-file-upload-el_GR.po +125 -90
- languages/wp-file-upload-en_US.mo +0 -0
- languages/wp-file-upload-en_US.po +101 -89
- languages/wp-file-upload-es_ES.mo +0 -0
- languages/wp-file-upload-es_ES.po +101 -89
- languages/wp-file-upload-fr_FR.mo +0 -0
- languages/wp-file-upload-fr_FR.po +101 -89
- languages/wp-file-upload-it_IT.mo +0 -0
- languages/wp-file-upload-it_IT.po +1073 -0
- languages/wp-file-upload-nl_NL.mo +0 -0
- languages/wp-file-upload-nl_NL.po +101 -89
- languages/wp-file-upload-pl_PL.mo +0 -0
- languages/wp-file-upload-pl_PL.po +101 -89
- languages/wp-file-upload-sr_RS.mo +0 -0
- languages/wp-file-upload-sr_RS.po +101 -89
- languages/wp-file-upload-zh_CN.mo +0 -0
- languages/wp-file-upload-zh_CN.po +101 -89
- languages/wp-file-upload.pot +101 -89
- lib/wfu_admin_browser.php +16 -4
- lib/wfu_admin_log.php +11 -6
- lib/wfu_admin_maintenance.php +2 -0
- lib/wfu_ajaxactions.php +9 -0
- lib/wfu_constants.php +3 -0
- lib/wfu_functions.php +46 -0
- readme.txt +13 -3
- release_notes.txt +1 -3
- wfu_file_downloader.php +2 -7
- wordpress_file_upload.php +1 -1
js/wordpress_file_upload_adminfunctions.js
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
function wfu_admin_activate_tab(e){for(var t,a,l=document.getElementById("wfu_tab_container"),n=0;n<l.childNodes.length;n++)t=l.childNodes[n],1===t.nodeType&&(a=t.id.substr(8),t.className.indexOf("nav-tab-active")>-1&&(t.className="nav-tab",document.getElementById("wfu_container_"+a).style.display="none"));document.getElementById("wfu_tab_"+e).className="nav-tab nav-tab-active",document.getElementById("wfu_container_"+e).style.display="block"}function wfu_admin_onoff_clicked(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_wrapper"),l=document.getElementsByClassName("wfu_shadow_"+e,"div",a),n=document.getElementsByClassName("wfu_shadow_"+e+"_inv","div",a),d="on"==t.className.substr(t.className.length-2);if(d=!d){document.getElementById("wfu_attribute_value_"+e).value="true",t.className="wfu_onoff_container_on";for(var u=0;u<l.length;u++)l[u].style.display="none";for(var u=0;u<n.length;u++)n[u].style.display="block"}else{document.getElementById("wfu_attribute_value_"+e).value="false",t.className="wfu_onoff_container_off";for(var u=0;u<l.length;u++)l[u].style.display="block";for(var u=0;u<n.length;u++)n[u].style.display="none"}wfu_generate_shortcode(),("userdata"==e||"formdata"==e)&&wfu_update_formfield_variables()}function wfu_admin_radio_clicked(e){var t=document.getElementsByName("wfu_radioattribute_"+e),a=document.getElementById("wfu_wrapper"),l=document.getElementsByClassName("wfu_shadow_"+e,"div",a),n=document.getElementsByClassName("wfu_shadow_"+e+"_inv","div",a),d="";for(r=0;r<t.length;r++)t[r].checked&&(d=t[r].value);var u="*"==d.substr(0,1);if(u){d=d.substr(1);for(var r=0;r<l.length;r++)l[r].style.display="none";for(var r=0;r<n.length;r++)n[r].style.display="block"}else{for(var r=0;r<l.length;r++)l[r].style.display="block";for(var r=0;r<n.length;r++)n[r].style.display="none"}document.getElementById("wfu_attribute_value_"+e).value=d,wfu_generate_shortcode()}function wfu_addEventHandler(e,t,a){e.addEventListener?e.addEventListener(t,a,!1):e.attachEvent?e.attachEvent("on"+t,a):e["on"+t]=a}function wfu_attach_separator_dragdrop_events(){for(var e,t=document.getElementById("wfu_placements_container"),a=0;a<t.childNodes.length;a++)e=t.childNodes[a],("wfu_component_separator_hor"==e.className||"wfu_component_separator_ver"==e.className)&&(wfu_addEventHandler(e,"dragenter",wfu_separator_dragenter),wfu_addEventHandler(e,"dragover",wfu_default_dragover),wfu_addEventHandler(e,"dragleave",wfu_separator_dragleave),wfu_addEventHandler(e,"drop",wfu_separator_drop))}function wfu_Attach_Admin_DragDrop_Events(){if(window.FileReader){var e=document.getElementById("wfu_placements_container");if(e){for(var t,a=document.getElementById("wfu_componentlist_container"),l=0;l<e.childNodes.length;l++)t=e.childNodes[l],"wfu_component_box"==t.className&&(wfu_addEventHandler(t,"dragstart",wfu_component_dragstart),wfu_addEventHandler(t,"dragend",wfu_component_dragend));for(var l=0;l<a.childNodes.length;l++)if(t=a.childNodes[l],"wfu_component_box_container"==t.className)for(var n=0;n<t.childNodes.length;n++)"wfu_component_box wfu_inbase"==t.childNodes[n].className&&(wfu_addEventHandler(t.childNodes[n],"dragstart",wfu_component_dragstart),wfu_addEventHandler(t.childNodes[n],"dragend",wfu_component_dragend));t=document.getElementById("wfu_componentlist_dragdrop"),wfu_addEventHandler(t,"dragenter",wfu_componentlist_dragenter),wfu_addEventHandler(t,"dragover",wfu_default_dragover),wfu_addEventHandler(t,"dragleave",wfu_componentlist_dragleave),wfu_addEventHandler(t,"drop",wfu_componentlist_drop),wfu_attach_separator_dragdrop_events()}}}function wfu_componentlist_dragenter(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;var t=document.getElementById("wfu_componentlist_dragdrop");return-1==t.className.indexOf("wfu_componentlist_dragdrop_dragover")&&(t.className+=" wfu_componentlist_dragdrop_dragover"),!1}function wfu_componentlist_dragleave(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;var t=document.getElementById("wfu_componentlist_dragdrop");return t.className=t.className.replace(" wfu_componentlist_dragdrop_dragover",""),!1}function wfu_componentlist_drop(e){e=e||window.event,e.preventDefault&&e.preventDefault();var t=e.dataTransfer.getData("Component");if(!t)return!1;var a=t.split("_"),l=a[0],n=parseInt(a[1]),d=document.getElementById("wfu_component_box_"+l+"_"+n);0==n?(d.className="wfu_component_box wfu_inbase",d.style.display="block",document.getElementById("wfu_component_box_container_"+l).appendChild(d)):d.parentNode.removeChild(d);var u=wfu_admin_recreate_placements_text(null,"");return wfu_admin_recreate_placements_panel(u),document.getElementById("wfu_attribute_value_placements").value=u,wfu_update_multiplacement_attributes(),wfu_generate_shortcode(),!1}function wfu_separator_dragenter(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;if("wfu_component_separator_hor"==e.target.className){var t=document.getElementById("wfu_component_bar_hor");t.style.top=e.target.offsetTop+"px",t.style.display="block"}else if("wfu_component_separator_ver"==e.target.className){var t=document.getElementById("wfu_component_bar_ver");t.style.top=e.target.offsetTop+"px",t.style.left=e.target.offsetLeft+"px",t.style.display="block"}return!1}function wfu_default_dragover(e){return e=e||window.event,e.preventDefault&&e.preventDefault(),!1}function wfu_separator_dragleave(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;if("wfu_component_separator_hor"==e.target.className){var t=document.getElementById("wfu_component_bar_hor");t.style.display="none"}else if("wfu_component_separator_ver"==e.target.className){var t=document.getElementById("wfu_component_bar_ver");t.style.display="none"}return!1}function wfu_separator_drop(e){e=e||window.event,e.preventDefault&&e.preventDefault();var t=e.dataTransfer.getData("Component");if(!t)return!1;var a=t.split("_"),l=a[0],n=parseInt(a[1]),d=document.getElementById("wfu_component_box_"+l+"_"+n);d.style.display="none",d.className="wfu_component_box wfu_inbase",document.getElementById("wfu_component_box_container_"+l).appendChild(d);var u=wfu_admin_recreate_placements_text(e.target,l);return wfu_admin_recreate_placements_panel(u),document.getElementById("wfu_attribute_value_placements").value=u,wfu_update_multiplacement_attributes(),wfu_generate_shortcode(),!1}function wfu_component_dragstart(e){e=e||window.event,e.dataTransfer.setData("Component",e.target.id.replace("wfu_component_box_","")),-1==e.target.className.indexOf("wfu_component_box_dragged")&&(e.target.className+=" wfu_component_box_dragged",DraggedItem=e.target),e.target.style.zIndex=3;var t=document.getElementById("wfu_componentlist_dragdrop");return t.className="wfu_componentlist_dragdrop wfu_componentlist_dragdrop_dragover",t.style.display="block",!1}function wfu_component_dragend(e){e=e||window.event,DraggedItem=null,e.target.style.zIndex=1;var t=document.getElementById("wfu_componentlist_dragdrop");return t.style.display="none",t.className="wfu_componentlist_dragdrop",e.target.className=e.target.className.replace(" wfu_component_box_dragged",""),document.getElementById("wfu_component_bar_ver").style.display="none",document.getElementById("wfu_component_bar_hor").style.display="none",!1}function wfu_admin_recreate_placements_text(e,t){function a(e){""!=d&&(d+=n),d+=e,n=""}for(var l=document.getElementById("wfu_placements_container"),n="",d="",u=0;u<l.childNodes.length;u++)item=l.childNodes[u],"wfu_component_separator_ver"==item.className?(""==n&&(n="+"),item==e&&(a(t),n="+")):"wfu_component_separator_hor"==item.className?(n="/",item==e&&(a(t),n="/")):"wfu_component_box"==item.className&&a(item.id.replace("wfu_component_box_","").replace(/_.*$/,""));return d}function wfu_admin_recreate_placements_panel(e){for(var t,a,l,n,d,u,r,o=document.getElementById("wfu_placements_container"),_="",s=0;s<o.childNodes.length;s++)t=o.childNodes[s],"wfu_component_box"==t.className&&(n=t.id.replace("wfu_component_box_",""),d=n.split("_"),_=d[0],u=parseInt(d[1]),0==u?(t.style.display="inline-block",t.className="wfu_component_box wfu_inbase",document.getElementById("wfu_component_box_container_"+_).appendChild(t)):t.parentNode.removeChild(t));for(var c=document.querySelectorAll("div.wfu_component_box_container"),i={},s=0;s<c.length;s++)_=c[s].id.replace("wfu_component_box_container_",""),i[_]=0,r=document.querySelector("div#"+c[s].id+" div.wfu_component_box_index"),r&&(r.innerHTML="1");o.innerHTML="",a=e.split("/");for(var s=0;s<a.length;s++){t=document.createElement("DIV"),t.className="wfu_component_separator_hor",t.setAttribute("draggable",!0),o.appendChild(t),t=document.createElement("DIV"),t.className="wfu_component_separator_ver",t.setAttribute("draggable",!0),o.appendChild(t),l=a[s].split("+");for(var f=0;f<l.length;f++)t=document.querySelector("div#wfu_component_box_container_"+l[f]+" div.wfu_component_box.wfu_inbase"),t&&(n=t.id.replace("wfu_component_box_",""),d=n.split("_"),_=d[0],u=parseInt(d[1]),0==u?o.appendChild(t):(i[_]++,t.id="wfu_component_box_"+_+"_"+(i[_]+1).toString(),t.style.display="block",r=document.querySelector("div#"+t.id+" div.wfu_component_box_index"),r.innerHTML=(i[_]+1).toString(),t=t.cloneNode(!0),o.appendChild(t),t.id="wfu_component_box_"+_+"_"+i[_].toString(),r=document.querySelector("div#"+t.id+" div.wfu_component_box_index"),r.innerHTML=i[_].toString(),wfu_addEventHandler(t,"dragstart",wfu_component_dragstart),wfu_addEventHandler(t,"dragend",wfu_component_dragend)),t.className="wfu_component_box",t.style.display="inline-block",t=document.createElement("DIV"),t.className="wfu_component_separator_ver",t.setAttribute("draggable",!0),o.appendChild(t))}t=document.createElement("DIV"),t.className="wfu_component_separator_hor",t.setAttribute("draggable",!0),o.appendChild(t),t=document.createElement("DIV"),t.id="wfu_component_bar_hor",t.className="wfu_component_bar_hor",o.appendChild(t),t=document.createElement("DIV"),t.id="wfu_component_bar_ver",t.className="wfu_component_bar_ver",o.appendChild(t),wfu_attach_separator_dragdrop_events()}function wfu_update_multiplacement_attributes(){for(var e=document.querySelectorAll("div.wfu_component_box_container"),t=0;t<e.length;t++){itemname=e[t].id.replace("wfu_component_box_container_","");var a=document.querySelector("div#"+e[t].id+" div.wfu_component_box_index");if(a)for(var l=Math.max(1,parseInt(a.innerHTML)-1),n=document.getElementsByName("wfu_attribute_governor_"+itemname),d=0;d<n.length;d++)wfu_update_multiplacement_attribute(n[d].value,l)}}function wfu_update_multiplacement_attribute(e,t){if("userdatalabel"==e){var a=document.querySelectorAll("div.wfu_formdata_container"),l=a.length;if(1>l)return;for(var n,d,u=a[0],r=2;r<=Math.max(l,t);){if(r>l){var o=e+r.toString();for(n=u.parentNode;null!=n&&"TR"!=n.tagName;)n=n.parentNode;if(null==n||"TR"!=n.tagName)return;d=n.cloneNode(!0),d.id="tr_"+wfu_randomString(4),n.parentNode.appendChild(d);var _=document.querySelector("tr#"+d.id+' label[for="wfu_attribute_'+e+'"]');_.setAttribute("for","wfu_attribute_"+o),_.innerHTML+=" ("+r.toString()+")",_=document.querySelector("tr#"+d.id+" input.wfu_attribute_governor"),_.setAttribute("name","wfu_attribute_governor_independent"),_.value=o,_=document.querySelector("tr#"+d.id+" div.wfu_formdata_container"),_.id+=r.toString();var s=document.getElementById("wfu_attribute_default_"+o);s||(s=document.createElement("INPUT"),s.id="wfu_attribute_default_"+o,s.type="hidden",s.value=document.getElementById("wfu_attribute_default_"+e).value,document.getElementById("wfu_attribute_defaults").appendChild(s));var c=document.getElementById("wfu_attribute_value_"+o);c||(c=document.createElement("INPUT"),c.id="wfu_attribute_value_"+o,c.type="hidden",c.value=s.value,document.getElementById("wfu_attribute_values").appendChild(c)),window["wfu_attribute_"+o+"_formtemplate"]=window["wfu_attribute_"+e+"_formtemplate"],window["wfu_attribute_"+o+"_typeprops"]=window["wfu_attribute_"+e+"_typeprops"],wfu_apply_value(o,"formfields",c.value)}else if(r>t){for(d=a[r-1].parentNode;null!=d&&"TR"!=d.tagName;)d=d.parentNode;if(null==d||"TR"!=d.tagName)return;d.parentNode.removeChild(d),wfu_update_formfield_variables()}r++}}}function wfu_subfolders_input_changed(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_subfolders_path_","");a=a.replace("wfu_subfolders_label_","");var l=document.getElementById("wfu_attribute_"+a);if(!(l.selectedIndex<0)){var n,d,u=document.getElementById("wfu_subfolders_path_"+a),r=document.getElementById("wfu_subfolders_label_"+a),o=document.getElementById("wfu_subfolders_ok_"+a),_="1"==document.getElementById("wfu_subfolders_isnewitem_"+a).value;if(_)n="",d="";else{var s=l.data;t=s[l.selectedIndex],n=t.path,d=t.label}if(u.value==n&&r.value==d)o.disabled=!0,_||wfu_subfolders_update_nav(a);else{o.disabled=!1;for(var c=document.getElementsByName("wfu_subfolder_nav_"+a),i=0;i<c.length;i++)c[i].disabled=!0}}}function wfu_subfolders_auto_changed(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_subfolders_auto_"+e),l=document.getElementById("wfu_subfolders_editable_"+e),n=document.getElementById("wfu_subfolders_manualtext_"+e);if(a.checked){var d=document.getElementById("wfu_attribute_value_"+e).value;"auto"!=d.substr(0,4)&&(n.value=d),l.parentNode.style.display="inline",wfu_apply_value(e,"folderlist","auto"+(l.checked?"+":"")),t.disabled=!0}else t.disabled=!1,l.parentNode.style.display="none",wfu_apply_value(e,"folderlist",n.value)}function wfu_subfolders_up_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;item=a[t.selectedIndex];var l=item.index-1;if(!(0>l)){for(var n=-1,d=t.selectedIndex-1;d>=0;){if(a[d].level==item.level&&a[d].index==l){n=d;break}d--}if(-1!=n){var u=0;for(d=t.selectedIndex+1;d<a.length&&a[d].level>item.level;)u++,d++;a[n].index=item.index,item.index=l,t.data=a.slice(0,n).concat(a.slice(t.selectedIndex,t.selectedIndex+1+u)).concat(a.slice(n,t.selectedIndex)).concat(a.slice(t.selectedIndex+1+u));var r=wfu_update_subfolder_list(e);t.selectedIndex=n,wfu_subfolders_update_toolnav(e),item=t,r!==item.oldVal&&(item.oldVal=r,document.getElementById("wfu_attribute_value_"+e).value=r,wfu_generate_shortcode())}}}}function wfu_subfolders_down_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;item=a[t.selectedIndex];var l=item.index+1,n=-1;for(curind=t.selectedIndex+1;curind<a.length;){if(a[curind].level==item.level){n=curind;break}if(a[curind].level<item.level)break;curind++}if(-1!=n){var d=0;for(curind=n+1;curind<a.length&&a[curind].level>item.level;)d++,curind++;a[n].index=item.index,item.index=l,t.data=a.slice(0,t.selectedIndex).concat(a.slice(n,n+1+d)).concat(a.slice(t.selectedIndex,n)).concat(a.slice(n+1+d));var u=wfu_update_subfolder_list(e);t.selectedIndex=t.selectedIndex+d+1,wfu_subfolders_update_toolnav(e),item=t,u!==item.oldVal&&(item.oldVal=u,document.getElementById("wfu_attribute_value_"+e).value=u,wfu_generate_shortcode())}}}function wfu_subfolders_left_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;for(item=a[t.selectedIndex],curind=t.selectedIndex+1;curind<a.length&&a[curind].level>item.level;)a[curind].level--,curind++;item.level--;var l=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,l!==item.oldVal&&(item.oldVal=l,document.getElementById("wfu_attribute_value_"+e).value=l,wfu_generate_shortcode())}}function wfu_subfolders_right_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;for(item=a[t.selectedIndex],curind=t.selectedIndex+1;curind<a.length&&a[curind].level>item.level;)a[curind].level++,curind++;item.level++;var l=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,l!==item.oldVal&&(item.oldVal=l,document.getElementById("wfu_attribute_value_"+e).value=l,wfu_generate_shortcode())}}function wfu_subfolders_def_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;if(item=a[t.selectedIndex],item["default"])item["default"]=!1;else{for(var l=0;l<a.length;l++)a[l]["default"]=!1;item["default"]=!0}var n=wfu_update_subfolder_list(e);wfu_subfolders_update_toolnav(e),item=t,n!==item.oldVal&&(item.oldVal=n,document.getElementById("wfu_attribute_value_"+e).value=n,wfu_generate_shortcode())}}function wfu_subfolders_ok_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=document.getElementById("wfu_subfolders_path_"+e),l=document.getElementById("wfu_subfolders_label_"+e);if(""==a.value||""==l.value)return void alert("Path or label cannot be empty!");var n=t.data,d="1"==document.getElementById("wfu_subfolders_isnewitem_"+e).value;if(d){var u=parseInt(document.getElementById("wfu_subfolders_newitemlevel_"+e).value),r={label:l.value,path:a.value,level:u,"default":!1},o=parseInt(document.getElementById("wfu_subfolders_newitemindex_"+e).value);o>=n.length?n.push(r):n.splice(o,0,r)}else item=n[t.selectedIndex],item.path=a.value,item.label=l.value;var _=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,_!==item.oldVal&&(item.oldVal=_,document.getElementById("wfu_attribute_value_"+e).value=_,wfu_generate_shortcode())}}function wfu_subfolders_del_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;item=a[t.selectedIndex];var l=0;for(curind=t.selectedIndex+1;curind<a.length&&a[curind].level>item.level;)l++,curind++;if(!(l>0)||confirm("Children items will be deleted as well. Proceed?")){a.splice(t.selectedIndex,1+l);var n=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,n!==item.oldVal&&(item.oldVal=n,document.getElementById("wfu_attribute_value_"+e).value=n,wfu_generate_shortcode())}}}function wfu_subfolders_add_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data,l=t.selectedIndex;item=a[l];var n=t.options,d=document.createElement("option");d.value="",d.innerHTML="",n.add(d,l),t.selectedIndex=l;var u=document.getElementById("wfu_subfolder_tools_"+e),r=document.getElementById("wfu_subfolders_path_"+e),o=document.getElementById("wfu_subfolders_label_"+e),_=document.getElementById("wfu_subfolders_ok_"+e),s=document.getElementById("wfu_subfolders_browse_"+e);u.className="wfu_subfolder_tools_container",o.disabled=!1,_.disabled=!0,document.getElementById("wfu_subfolders_isnewitem_"+e).value="1",document.getElementById("wfu_subfolders_newitemindex_"+e).value=l,document.getElementById("wfu_subfolders_newitemlevel_"+e).value=item.level,document.getElementById("wfu_subfolders_newitemlevel2_"+e).value="",r.disabled=0==item.level,s.disabled=0==item.level,0==item.level?(r.value="{root}",o.value="{upload folder}"):(r.value="",o.value="");for(var c=document.getElementsByName("wfu_subfolder_nav_"+e),i=0;i<c.length;i++)c[i].disabled=!0}}function wfu_subfolders_browse_clicked(e){var t=wfu_GetHttpRequestObject();if(null!=t){var a=null;try{var a=new FormData}catch(l){}if(null!=a){for(var n=document.getElementById("wfu_global_dialog_container"),d=document.getElementById("wfu_subfolders_browser_"+e),u=document.getElementById("wfu_subfolders_browse_"+e),r=document.getElementById("wfu_subfolders_inner_shadow_"+e),o=document.getElementById("wfu_subfolders_browser_msgcont_"+e),_=document.getElementById("wfu_subfolders_browser_msg_"+e),s=document.getElementById("wfu_subfolders_browser_img_"+e),c=document.getElementById("wfu_subfolders_browser_ok_"+e),i=document.getElementById("wfu_subfolders_browser_list_"+e);i.options.length>0;)i.options.remove(0);c.disabled=!0,c.onclick=function(){wfu_folder_browser_cancel_clicked(e)},_.innerHTML="loading folder contents...",s.style.display="inline",o.style.display="block",n.style.display="block",d.style.display="block",d.style.left=u.offsetLeft+u.offsetWidth-d.offsetWidth+"px",d.style.top=u.offsetTop+u.offsetHeight-d.offsetHeight+"px",r.style.display="block",n.onclick=function(){wfu_folder_browser_cancel_clicked(e)};var f=document.getElementById("wfu_attribute_uploadpath").value;"/"==f.substr(f.length-1)&&(f=f.substr(0,f.length-1));var m=wfu_get_relative_path(e).split(","),p=f+m[0];"/"!=p.substr(0)&&(p="/"+p);var w="";2==m.length&&(w=m[1]),a.append("action","wfu_ajax_action_read_subfolders"),a.append("folder1",wfu_plugin_encode_string(p)),a.append("folder2",wfu_plugin_encode_string(w)),t.key=e,t.addEventListener("load",wfu_readfolderComplete,!1),t.addEventListener("error",wfu_readfolderFailed,!1),t.addEventListener("abort",wfu_readfolderCanceled,!1),t.open("POST",AdminParams.wfu_ajax_url),t.send(a)}}}function wfu_readfolderComplete(e){var t=e.target.key,a=document.getElementById("wfu_subfolders_browser_msgcont_"+t),l=document.getElementById("wfu_subfolders_browser_msg_"+t),n=document.getElementById("wfu_subfolders_browser_img_"+t),d=document.getElementById("wfu_subfolders_browser_list_"+t),u=document.getElementById("wfu_subfolders_browser_ok_"+t),r=document.getElementById("wfu_subfolders_path_"+t),o=document.getElementById("wfu_subfolders_label_"+t),_=e.target.responseText;if(-1!=_){var s="wfu_read_subfolders:",c=e.target.responseText.indexOf(s);-1==c&&(c=e.target.responseText.length);var i=(e.target.responseText.substr(0,c),e.target.responseText.substr(c+s.length,e.target.responseText.length-c-s.length));c=i.indexOf(":");var f=i.substr(0,c);if(txt_value=i.substr(c+1,i.length-c-1),"success"==f){for(var m,p=wfu_plugin_decode_string(txt_value),w=p.split(","),g=0,v=0;v<w.length;v++)""!=w[v]&&(m=document.createElement("option"),m.value=w[v],m.innerHTML=w[v].replace("*"," "),d.add(m),g++);0==g&&(m=document.createElement("option"),m.value="",m.innerHTML="{empty}",m.disabled=!0,d.add(m)),d.selectedIndex=-1,u.onclick=function(){var e=d.options[d.selectedIndex].value,a=parseInt(document.getElementById("wfu_subfolders_newitemlevel_"+t).value);("*"==e.substr(0,1)||0==a)&&(document.getElementById("wfu_subfolders_newitemlevel_"+t).value=a+1,a>0&&(e=e.substr(1))),r.value=e,o.value=e,wfu_folder_browser_cancel_clicked(t),wfu_subfolders_ok_clicked(t)},a.style.display="none"}else"error"==f?(l.innerHTML=txt_value,n.style.display="none",u.disabled=!1):(l.innerHTML="Unknown error",n.style.display="none",u.disabled=!1)}}function wfu_readfolderFailed(e){var t=e.target.key,a=document.getElementById("wfu_subfolders_browser_msg_"+t),l=document.getElementById("wfu_subfolders_browser_img_"+t),n=document.getElementById("wfu_subfolders_browser_ok_"+t);a.innerHTML="Unknown error",l.style.display="none",n.disabled=!1}function wfu_readfolderCanceled(e){var t=e.target.key,a=document.getElementById("wfu_subfolders_browser_msg_"+t),l=document.getElementById("wfu_subfolders_browser_img_"+t),n=document.getElementById("wfu_subfolders_browser_ok_"+t);a.innerHTML="Unknown error",l.style.display="none",n.disabled=!1}function wfu_subfolders_browser_list_changed(e){var t=document.getElementById("wfu_subfolders_browser_list_"+e),a=document.getElementById("wfu_subfolders_browser_ok_"+e);a.disabled=t.selectedIndex<0}function wfu_folder_browser_cancel_clicked(e){var t=document.getElementById("wfu_global_dialog_container"),a=document.getElementById("wfu_subfolders_browser_"+e),l=(document.getElementById("wfu_subfolders_browse_"+e),document.getElementById("wfu_subfolders_inner_shadow_"+e));t.onclick=null,l.style.display="none",a.style.display="none",t.style.display="none"}function wfu_get_relative_path(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a,l=t.data,n="1"==document.getElementById("wfu_subfolders_isnewitem_"+e).value;a=n?parseInt(document.getElementById("wfu_subfolders_newitemlevel_"+e).value):l[t.selectedIndex].level;for(var d="/",u=t.selectedIndex-1,r=a;u>=0&&r>1;)l[u].level<r&&(d="/"+l[u].path+d,r=l[u].level),u--;return n&&"1"==document.getElementById("wfu_subfolders_newitemlevel2_"+e).value&&a>0&&t.selectedIndex>0&&(d+=","+l[t.selectedIndex-1].path),d}}function wfu_subfolders_changed(e){wfu_update_subfolder_list(e),wfu_subfolders_update_toolnav(e)}function wfu_subfolders_update_toolnav(e){var t,a,l=document.getElementById("wfu_attribute_"+e),n=document.getElementById("wfu_subfolder_tools_"+e),d=document.getElementById("wfu_subfolders_path_"+e),u=document.getElementById("wfu_subfolders_label_"+e),r=document.getElementById("wfu_subfolders_ok_"+e),o=document.getElementById("wfu_subfolders_browse_"+e),_=document.getElementById("wfu_subfolders_auto_"+e);if(document.getElementById("wfu_subfolders_isnewitem_"+e).value="",document.getElementById("wfu_subfolders_newitemindex_"+e).value="",document.getElementById("wfu_subfolders_newitemlevel_"+e).value="",document.getElementById("wfu_subfolders_newitemlevel2_"+e).value="",null==l.data?(t=wfu_decode_subfolder_list(e),l.data=t):t=l.data,0===l.data.length?(l.className="wfu_select_folders wfu_select_folders_empty",l.options[0].innerHTML=_.checked?"":"press here"):l.className="wfu_select_folders",l.selectedIndex<0)n.className="wfu_subfolder_tools_container wfu_subfolder_tools_disabled",d.disabled=!0,u.disabled=!0,r.disabled=!0,o.disabled=!0,u.value="",d.value="";else if(l.selectedIndex>=l.options.length-1){n.className="wfu_subfolder_tools_container",u.disabled=!1,r.disabled=!0,document.getElementById("wfu_subfolders_isnewitem_"+e).value="1",document.getElementById("wfu_subfolders_newitemindex_"+e).value=t.length;var s;s=0==t.length?0:0==t[t.length-1].level?1:t[t.length-1].level,document.getElementById("wfu_subfolders_newitemlevel_"+e).value=s,document.getElementById("wfu_subfolders_newitemlevel2_"+e).value="1",d.disabled=0==s,o.disabled=!1,0==s?(d.value="{root}",u.value="{upload folder}"):(d.value="",u.value="")}else n.className="wfu_subfolder_tools_container",u.disabled=!1,r.disabled=!0,a=t[l.selectedIndex],d.disabled=0==a.level,o.disabled=0==a.level,u.value=a.label,d.value=a.path;var c=document.getElementsByName("wfu_subfolder_nav_"+e);if(l.selectedIndex<0||l.selectedIndex>=l.options.length-1)for(var i=0;i<c.length;i++)c[i].disabled=!0;else wfu_subfolders_update_nav(e)}function wfu_subfolders_update_nav(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_subfolders_up_"+e),l=document.getElementById("wfu_subfolders_down_"+e),n=document.getElementById("wfu_subfolders_left_"+e),d=document.getElementById("wfu_subfolders_right_"+e),u=document.getElementById("wfu_subfolders_add_"+e),r=document.getElementById("wfu_subfolders_def_"+e),o=document.getElementById("wfu_subfolders_del_"+e),_=t.data,s=_[t.selectedIndex];for(a.disabled=s.index<=0,ind=t.selectedIndex+1,nextind=0;ind<_.length;){if(_[ind].level==s.level){nextind=_[ind].index;break}if(_[ind].level<s.level)break;ind++}l.disabled=0==s.level||0==nextind,n.disabled=0==t.selectedIndex&&s.level<1||t.selectedIndex>0&&s.level<=1,t.selectedIndex>=1?prevlevel=_[t.selectedIndex-1].level:prevlevel=0,d.disabled=s.level-prevlevel>0,u.disabled=0==s.level,r.disabled=!1,r.className="button"+(s["default"]?" wfu_subfolder_nav_pressed":""),o.disabled=!1}function wfu_decode_subfolder(e){var t={label:"",path:"",level:0,"default":!1};e=e.trim();for(var a=0,l=!1;a<e.length&&"*"==e.substr(a,1);)a++;e=e.substr(a,e.length-a),"&"==e.substr(0,1)&&(e=e.substr(1),l=!0),t.level=a,t["default"]=l;var n=e.split("/");return 1==n.length?(t.path=n[0],t.label=n[0]):n.length>1&&(t.path=n[0],t.label=n[1]),0==a&&(t.path="{root}",""==t.label&&(t.label="{upload folder}")),t}function wfu_decode_subfolder_list(e){for(var t,a=document.getElementById("wfu_attribute_"+e).options,l=Array(),n=["root"],d=[0],u=-1,r=0;r<a.length-1;r++){for(l.push(wfu_decode_subfolder(wfu_plugin_decode_string(a[r].value))),n.length>l[r].level?n[l[r].level]=l[r].path:n.push(l[r].path),t="",j=1;j<=l[r].level;j++)t+=n[j]+"/";l[r].fullpath=t,d.length<=l[r].level&&d.push(0),l[r].level>u?l[r].index=0:l[r].index=d[l[r].level]+1,d[l[r].level]=l[r].index,u=l[r].level}return l}function wfu_update_subfolder_list(e){var t=document.getElementById("wfu_attribute_"+e).options,a=document.getElementById("wfu_attribute_"+e),l=a.data;if(null!=l){var n,d,u="";t.length=l.length+1;for(var r=0;r<l.length;r++){for(n="",d="",j=0;j<l[r].level;j++)n+="*",d+=" ";l[r]["default"]?(n+="&",t[r].className="wfu_select_folders_option_default"):t[r].className="",n+=l[r].path+"/"+l[r].label,d+=l[r].label,t[r].value=wfu_plugin_encode_string(n),t[r].innerHTML=d,""!=u&&(u+=","),u+=n}return t[l.length].value="",t[l.length].innerHTML="",u}}function wfu_userdata_edit_field(e,t,a){for(var l,n=0;n<e.childNodes.length;n++)l=e.childNodes[n],"INPUT"==l.tagName?"text"==l.type?(l.value=t,wfu_attach_element_handlers(l,wfu_update_userfield_value)):"checkbox"==l.type&&(l.checked=a):"DIV"==l.tagName&&(l.className="wfu_userdata_action")}function wfu_formdata_edit_field(e,t,a){}function wfu_formdata_type_changed(e){var t=e.split("_"),a=t[0],l="wfu_formfield_"+e,n=(document.getElementById("wfu_attribute_"+a),document.getElementById(l+"_container")),d=window["wfu_attribute_"+a+"_typeprops"][document.getElementById(l+"_type").value],u={type:document.getElementById(l+"_type").value,label:document.getElementById(l+"_label").value,labelposition:document.getElementById(l+"_labelposition").value,required:"show"==d.required.substr(0,4)&&document.getElementById(l+"_required")?document.getElementById(l+"_required").checked:"true"==d.required.substr(5),donotautocomplete:"show"==d.donotautocomplete.substr(0,4)&&document.getElementById(l+"_donotautocomplete")?document.getElementById(l+"_donotautocomplete").checked:"true"==d.donotautocomplete.substr(5),validate:"show"==d.validate.substr(0,4)&&document.getElementById(l+"_validate")?document.getElementById(l+"_validate").checked:"true"==d.validate.substr(5),typehook:"show"==d.typehook.substr(0,4)&&document.getElementById(l+"_typehook")?document.getElementById(l+"_typehook").checked:"true"==d.typehook.substr(5),hintposition:"show"==d.hintposition.substr(0,4)&&document.getElementById(l+"_hintposition")?document.getElementById(l+"_hintposition").value:d.hintposition.substr(5),"default":"show"==d["default"].substr(0,4)&&document.getElementById(l+"_default")?document.getElementById(l+"_default").value:d["default"].substr(5),data:"show"==d.data.substr(0,4)&&document.getElementById(l+"_data")?document.getElementById(l+"_data").value:d.data.substr(5),group:"show"==d.group.substr(0,4)&&document.getElementById(l+"_group")?document.getElementById(l+"_group").value:d.group.substr(5),format:"show"==d.format.substr(0,4)&&document.getElementById(l+"_format")?document.getElementById(l+"_format").value:d.format.substr(5)},r=wfu_formdata_prepare_template(a,u,e);n.innerHTML=r;for(var o=document.querySelectorAll("div#"+l+'_container input[name="wfu_formfield_elements"]'),_=0;_<o.length;_++)wfu_attach_element_handlers(o[_],wfu_update_formfield_value);for(var s=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),_=0;_<s.length;_++)s[_].className="wfu_formdata_action wfu_formdata_action_remove"+(s.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:n})}function wfu_userdata_add_field(e){var t=e.parentNode,a=t.cloneNode(!0);wfu_userdata_edit_field(a,"",!1),t.parentNode.insertBefore(a,t.nextSibling)}function wfu_formdata_add_field(e){var t=e.split("_"),a=t[0],l=(t[1],document.getElementById("wfu_attribute_"+a)),n=document.getElementById("wfu_formfield_"+e+"_container"),d=document.createElement("DIV"),u=a+"_"+wfu_randomString(4);d.id="wfu_formfield_"+u+"_container",d.className="wfu_formdata_line_container",l.insertBefore(d,n.nextSibling);var r={type:"text",label:"",labelposition:"left",required:!1,donotautocomplete:!1,validate:!1,"default":"",data:"",group:"",format:"",hintposition:"right",typehook:!1},o=wfu_formdata_prepare_template(a,r,u);
|
2 |
-
d.innerHTML=o;for(var _=document.querySelectorAll("div#wfu_formfield_"+u+'_container input[name="wfu_formfield_elements"]'),s=0;s<_.length;s++)wfu_attach_element_handlers(_[s],wfu_update_formfield_value);for(var c=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),s=0;s<c.length;s++)c[s].className="wfu_formdata_action wfu_formdata_action_remove"+(c.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:d})}function wfu_formdata_prepare_template(e,t,a){var l=wfu_plugin_decode_string(window["wfu_attribute_"+e+"_formtemplate"]),n=window["wfu_attribute_"+e+"_typeprops"][t.type],d=window["wfu_attribute_"+e+"_typeprops"][0].split(","),u=["required","donotautocomplete","validate","typehook","labelposition","hintposition","default","data","group","format"],r=["none","top","right","bottom","left"],o=["none","inline","top","right","bottom","left"];l=l.replace(/\[\[key\]\]/g,a).replace(/\[\[t\]\]/g,t.type).replace(/\[\[label\]\]/g,t.label).replace(/\[\[s\]\]/g,t.labelposition).replace(/\[\[d\]\]/g,t["default"]).replace(/\[\[l\]\]/g,t.data).replace(/\[\[data_label\]\]/g,n.data_label).replace(/\[\[g\]\]/g,t.group).replace(/\[\[f\]\]/g,t.format).replace(/\[\[p\]\]/g,t.hintposition);for(var _=0;_<u.length;_++)l=l.replace(new RegExp("\\[\\["+u[_]+"_hint\\]\\]","g"),n[u[_]+"_hint"]);for(var _=0;_<d.length;_++)l=l.replace("[[type_"+d[_]+"_selected]]",d[_]==t.type?' selected="selected"':"");for(var _=0;_<r.length;_++)l=l.replace("[[labelposition_"+r[_]+"_selected]]",r[_]==t.labelposition?' selected="selected"':"");for(var _=0;_<o.length;_++)l=l.replace("[[hintposition_"+o[_]+"_selected]]",o[_]==t.hintposition?' selected="selected"':"");return l=l.replace("[[remove_disabled]]",""),l=t.required?l.replace(/\[\[r\-\>\]\]|\[\[\<\-r\]\]/g,""):l.replace(/\[\[r\-\>\]\].*\[\[\<\-r\]\]/g,""),l=t.donotautocomplete?l.replace(/\[\[a\-\>\]\]|\[\[\<\-a\]\]/g,""):l.replace(/\[\[a\-\>\]\].*\[\[\<\-a\]\]/g,""),l=t.validate?l.replace(/\[\[v\-\>\]\]|\[\[\<\-v\]\]/g,""):l.replace(/\[\[v\-\>\]\].*\[\[\<\-v\]\]/g,""),l=t.typehook?l.replace(/\[\[h\-\>\]\]|\[\[\<\-h\]\]/g,""):l.replace(/\[\[h\-\>\]\].*\[\[\<\-h\]\]/g,""),l="show"==n.required.substr(0,4)?l.replace(/\[\[R\-\>\]\]|\[\[\<\-R\]\]/g,""):l.replace(/\[\[R\-\>\]\][^]*\[\[\<\-R\]\]/g,""),l="show"==n.donotautocomplete.substr(0,4)?l.replace(/\[\[A\-\>\]\]|\[\[\<\-A\]\]/g,""):l.replace(/\[\[A\-\>\]\][^]*\[\[\<\-A\]\]/g,""),l="show"==n.validate.substr(0,4)?l.replace(/\[\[V\-\>\]\]|\[\[\<\-V\]\]/g,""):l.replace(/\[\[V\-\>\]\][^]*\[\[\<\-V\]\]/g,""),l="show"==n.hintposition.substr(0,4)?l.replace(/\[\[P\-\>\]\]|\[\[\<\-P\]\]/g,""):l.replace(/\[\[P\-\>\]\][^]*\[\[\<\-P\]\]/g,""),l="show"==n.typehook.substr(0,4)?l.replace(/\[\[H\-\>\]\]|\[\[\<\-H\]\]/g,""):l.replace(/\[\[H\-\>\]\][^]*\[\[\<\-H\]\]/g,""),l="show"==n["default"].substr(0,4)?l.replace(/\[\[D\-\>\]\]|\[\[\<\-D\]\]/g,""):l.replace(/\[\[D\-\>\]\][^]*\[\[\<\-D\]\]/g,""),l="show"==n.data.substr(0,4)?l.replace(/\[\[L\-\>\]\]|\[\[\<\-L\]\]/g,""):l.replace(/\[\[L\-\>\]\][^]*\[\[\<\-L\]\]/g,""),l="show"==n.group.substr(0,4)?l.replace(/\[\[G\-\>\]\]|\[\[\<\-G\]\]/g,""):l.replace(/\[\[G\-\>\]\][^]*\[\[\<\-G\]\]/g,""),l="show"==n.format.substr(0,4)?l.replace(/\[\[F\-\>\]\]|\[\[\<\-F\]\]/g,""):l.replace(/\[\[F\-\>\]\][^]*\[\[\<\-F\]\]/g,"")}function wfu_userdata_remove_field(e){for(var t=e.parentNode,a=t.parentNode,l=null,n=0;n<a.childNodes.length;n++)if(1===a.childNodes[n].nodeType){l=a.childNodes[n];break}if(t!=l){t.parentNode.removeChild(t);for(var n=0;n<l.childNodes.length;n++)if(1===l.childNodes[n].nodeType){wfu_update_userfield_value({target:l.childNodes[n]});break}}}function wfu_formdata_remove_field(e){var t=e.split("_"),a=t[0],l=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_line_container");if(!(l.length<2)){var n=document.getElementById("wfu_attribute_"+a),d=document.getElementById("wfu_formfield_"+e+"_container");n.removeChild(d),d=document.querySelector("div#wfu_attribute_"+a+" .wfu_formdata_line_container");for(var u=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),r=0;r<u.length;r++)u[r].className="wfu_formdata_action wfu_formdata_action_remove"+(u.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:d})}}function wfu_generate_shortcode(){for(var e,t=document.getElementById("wfu_shortcode_tag").value,a=document.getElementById("wfu_attribute_defaults"),l=(document.getElementById("wfu_attribute_values"),""),n="",d="["+t,u="",r=0;r<a.childNodes.length;r++)e=a.childNodes[r],1===e.nodeType&&(l=e.id.replace("wfu_attribute_default_",""),n=document.getElementById("wfu_attribute_value_"+l).value,e.value!=n&&(u+=" "+l+'="'+n+'"'));d+=u+"]",document.getElementById("wfu_shortcode").value=d,ShortcodeString=u.substr(1),document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode").disabled=wfu_plugin_encode_string(d)==document.getElementById("wfu_shortcode_original_enc").value),Autosave&&wfu_schedule_save_shortcode()}function wfu_update_text_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_",""),l=t.value;l=l.replace(/(\r\n|\n|\r)/gm,"%n%"),l=l.replace(/\"/gm,"%dq%"),l=l.replace(/\[/gm,"%brl%"),l=l.replace(/\]/gm,"%brr%"),l!==t.oldVal&&(t.oldVal=l,document.getElementById("wfu_attribute_value_"+a).value=l,wfu_generate_shortcode())}function wfu_update_date_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_",""),l=t.value;l!==t.oldVal&&(t.oldVal=l,document.getElementById("wfu_attribute_value_"+a).value=l,wfu_generate_shortcode())}function wfu_update_stringmatch_textvalue(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_","");a=a.replace("_matchfield","").replace("_matchvalue",""),wfu_update_stringmatch_value(a)}function wfu_update_triplecolor_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_","");a=a.replace("_color",""),a=a.replace("_bgcolor",""),a=a.replace("_borcolor",""),t=document.getElementById("wfu_attribute_"+a+"_color");var l=t.value+","+document.getElementById("wfu_attribute_"+a+"_bgcolor").value+","+document.getElementById("wfu_attribute_"+a+"_borcolor").value;l!==t.oldVal&&(t.oldVal=l,document.getElementById("wfu_attribute_value_"+a).value=l,wfu_generate_shortcode())}function wfu_update_dimension_value(e){e=e||window.event;var t=e.target,a=t.name.replace("wfu_dimension_elements_",""),l=document.getElementsByName(t.name);t=l[0];for(var n="",d="",u=0;u<l.length;u++)d=l[u].id.replace("wfu_attribute_"+a+"_",""),""!=n&&""!=l[u].value&&(n+=", "),""!=l[u].value&&(n+=d+":"+l[u].value);n!==t.oldVal&&(t.oldVal=n,document.getElementById("wfu_attribute_value_"+a).value=n,wfu_generate_shortcode())}function wfu_update_ptext_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_","");a=a.substr(2);var l=document.getElementById("wfu_attribute_s_"+a).value,n=document.getElementById("wfu_attribute_p_"+a).value,d=l+"/"+n;d!==t.oldVal&&(t.oldVal=d,document.getElementById("wfu_attribute_value_"+a).value=d),wfu_generate_shortcode()}function wfu_update_mchecklist_value(e){var t="",a=(document.getElementById("wfu_attribute_"+e),document.getElementById("wfu_attribute_"+e+"_all"));a.checked?(jQuery("#wfu_attribute_"+e+" input").prop("disabled",!0),jQuery("#wfu_attribute_"+e+" input").prop("checked",!0),t="all"):(jQuery("#wfu_attribute_"+e+" input").prop("disabled",!1),jQuery("#wfu_attribute_"+e+" input").each(function(){jQuery(this).prop("checked")&&(t+=","+jQuery(this).next().html())}),t=t.substr(1)),document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_rolelist_value(e){var t="",a=document.getElementById("wfu_attribute_"+e),l=document.getElementById("wfu_attribute_"+e+"_guests"),n=document.getElementById("wfu_attribute_"+e+"_all");if(n.checked)a.disabled=!0,t="all";else{a.disabled=!1;for(var d=a.options,u=0;u<d.length;u++)d[u].selected&&(""!=t&&(t+=","),t+=d[u].value)}l.checked&&(""!=t&&(t+=","),t+="guests"),document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_userlist_value(e){var t="",a=document.getElementById("wfu_attribute_"+e),l=document.getElementById("wfu_attribute_"+e+"_current"),n=document.getElementById("wfu_attribute_"+e+"_guests"),d=document.getElementById("wfu_attribute_"+e+"_all");if(l&&l.checked)a.disabled=!0,d.disabled=!0,n.disabled=!0,t="current";else{if(d.disabled=!1,n.disabled=!1,d.checked)a.disabled=!0,t="all";else{a.disabled=!1;for(var u=a.options,r=0;r<u.length;r++)u[r].selected&&(""!=t&&(t+=","),t+=u[r].value)}n.checked&&(""!=t&&(t+=","),t+="guests")}document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_postlist_value(e){for(var t="",a=Array(),l=Array(),n=document.getElementById("wfu_attribute_"+e+"_postlist").value.split(","),d=0;d<n.length;d++)a.push(document.getElementById("wfu_attribute_"+e+"_"+n[d])),l.push(document.getElementById("wfu_attribute_"+e+"_all_"+n[d]));var u=document.getElementById("wfu_attribute_"+e+"_current");if(u&&u.checked){for(var d=0;d<n.length;d++)a[d].disabled=!0,l[d].disabled=!0;t="current"}else{var r=!0;t="";for(var d=0;d<n.length;d++)if(l[d].disabled=!1,l[d].checked)a[d].disabled=!0,""!=t&&(t+=","),t+="all"+n[d];else{a[d].disabled=!1,r=!1;for(var o=a[d].options,_=0;_<o.length;_++)o[_].selected&&(""!=t&&(t+=","),t+=o[_].value)}r&&(t="all")}document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_bloglist_value(e){var t="",a=document.getElementById("wfu_attribute_"+e),l=document.getElementById("wfu_attribute_"+e+"_current"),n=document.getElementById("wfu_attribute_"+e+"_all");if(l&&l.checked)a.disabled=!0,n.disabled=!0,t="current";else if(n.disabled=!1,n.checked)a.disabled=!0,t="all";else{a.disabled=!1;for(var d=a.options,u=0;u<d.length;u++)d[u].selected&&(""!=t&&(t+=","),t+=d[u].value)}document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_stringmatch_value(e){var t=document.getElementById("wfu_attribute_"+e+"_matchfield").value,a=document.getElementById("wfu_attribute_"+e+"_matchcriterion").value,l=document.getElementById("wfu_attribute_"+e+"_matchvalue").value;t=t.replace(";",""),""==t.trim()?document.getElementById("wfu_attribute_value_"+e).value="":document.getElementById("wfu_attribute_value_"+e).value="field:"+t+";criterion:"+a+";value:"+l,wfu_generate_shortcode()}function wfu_update_userfield_value(e){e=e||window.event;for(var t=e.target,a=t.parentNode,l=a.parentNode,n="",d=!1,u="",r=0;r<l.childNodes.length;r++)if(a=l.childNodes[r],"DIV"===a.tagName){for(var o=0;o<a.childNodes.length;o++)"INPUT"==a.childNodes[o].tagName&&("text"==a.childNodes[o].type?(n=a.childNodes[o].value,0==r&&(t=a.childNodes[o])):"checkbox"==a.childNodes[o].type&&(d=a.childNodes[o].checked));""!=u&&""!=n&&(u+="/"),""!=n&&d&&(u+="*"),""!=n&&(u+=n)}u!==t.oldVal&&(t.oldVal=u,document.getElementById("wfu_attribute_value_userdatalabel").value=u,wfu_generate_shortcode(),wfu_update_formfield_variables())}function wfu_update_formfield_value(e){e=e||window.event;for(var t=e.target,a=t.id.match(/^wfu_formfield_(.*?)_/)[1],l=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_line_container"),n="",d=0;d<l.length;d++){var u="",r=l[d].id.match(/^wfu_formfield_.*?_(.*?)_/)[1],o=a+"_"+r,_=document.getElementById("wfu_formfield_"+o+"_label").value;if(""!=_.trim()){u=_.trim();var s=document.getElementById("wfu_formfield_"+o+"_type").value,c=window["wfu_attribute_"+a+"_typeprops"];u+="|t:"+s,u+="|s:"+document.getElementById("wfu_formfield_"+o+"_labelposition").value,"show"==c[s].required.substr(0,4)&&(u+="|r:"+(document.getElementById("wfu_formfield_"+o+"_required").checked?"1":"0")),"show"==c[s].donotautocomplete.substr(0,4)&&(u+="|a:"+(document.getElementById("wfu_formfield_"+o+"_donotautocomplete").checked?"1":"0")),"show"==c[s].validate.substr(0,4)&&(u+="|v:"+(document.getElementById("wfu_formfield_"+o+"_validate").checked?"1":"0")),"show"==c[s].typehook.substr(0,4)&&(u+="|h:"+(document.getElementById("wfu_formfield_"+o+"_typehook").checked?"1":"0")),"show"==c[s].hintposition.substr(0,4)&&(u+="|p:"+document.getElementById("wfu_formfield_"+o+"_hintposition").value),"show"==c[s]["default"].substr(0,4)&&(u+="|d:"+document.getElementById("wfu_formfield_"+o+"_default").value),"show"==c[s].data.substr(0,4)&&(u+="|l:"+document.getElementById("wfu_formfield_"+o+"_data").value),"show"==c[s].group.substr(0,4)&&(u+="|g:"+document.getElementById("wfu_formfield_"+o+"_group").value),"show"==c[s].format.substr(0,4)&&(u+="|f:"+document.getElementById("wfu_formfield_"+o+"_format").value)}""!=u&&(""!=n&&(n+="/"),n+=u)}n!==t.oldVal&&(t.oldVal=n,document.getElementById("wfu_attribute_value_"+a).value=n,wfu_generate_shortcode(),wfu_update_formfield_variables())}function wfu_update_formfield_variables(){var e=document.getElementById("wfu_attribute_value_userdatalabel");if(e){for(var t=document.getElementById("wfu_wrapper"),a=document.getElementsByClassName("wfu_shadow_userdata","div",t),l=document.getElementsByName("wfu_formfield_select"),n=0;n<l.length;n++)l[n].style.display="none";if(0!=a.length&&"block"!=a[0].style.display){for(var d='<option style="display:none;">%userdataXXX%</option>',u=e.value.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]"),r=2;document.getElementById("wfu_attribute_userdatalabel"+r);){var o=document.getElementById("wfu_attribute_value_userdatalabel"+r).value.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]");u=u.concat(o),r++}var _="",s=0;r=1;for(var n=0;n<u.length;n++)_=u[n],"*"==_[0]&&(_=_.substr(1)),s=_.indexOf("|"),s>-1&&(_=_.substr(0,s)),""!=_.trim()&&(d+='<option value="%userdata'+r+'%">'+r+": "+_.trim()+"</option>",r++);for(var n=0;n<l.length;n++)l[n].innerHTML=d,l[n].style.display="inline-block"}}}function wfu_attach_element_handlers(e,t){for(var a=["DOMAttrModified","textInput","input","change","keypress","paste","focus","propertychange"],l=0;l<a.length;l++)wfu_addEventHandler(e,a[l],t)}function wfu_Attach_Admin_Events(e){Autosave=e,wfu_generate_shortcode(),wfu_update_formfield_variables(),wfu_Attach_Admin_DragDrop_Events();for(var t=document.getElementsByName("wfu_text_elements"),a=0;a<t.length;a++)wfu_attach_element_handlers(t[a],wfu_update_text_value);for(var l=document.getElementsByName("wfu_ptext_elements"),a=0;a<l.length;a++)wfu_attach_element_handlers(l[a],wfu_update_ptext_value);for(var n=document.getElementsByName("wfu_stringmatch_elements"),a=0;a<n.length;a++)wfu_attach_element_handlers(n[a],wfu_update_stringmatch_textvalue);for(var d=document.getElementsByName("wfu_triplecolor_elements"),a=0;a<d.length;a++)wfu_attach_element_handlers(d[a],wfu_update_triplecolor_value);for(var u=document.getElementsByName("wfu_dimension_elements_widths"),a=0;a<u.length;a++)wfu_attach_element_handlers(u[a],wfu_update_dimension_value);u=document.getElementsByName("wfu_dimension_elements_heights");for(var a=0;a<u.length;a++)wfu_attach_element_handlers(u[a],wfu_update_dimension_value);for(var r=document.getElementsByName("wfu_userfield_elements"),a=0;a<r.length;a++)wfu_attach_element_handlers(r[a],wfu_update_userfield_value);for(var o=document.getElementsByName("wfu_formfield_elements"),a=0;a<o.length;a++)wfu_attach_element_handlers(o[a],wfu_update_formfield_value);for(var _=document.getElementsByName("wfu_subfolder_tools_input"),a=0;a<_.length;a++)wfu_attach_element_handlers(_[a],wfu_subfolders_input_changed);for(var s=document.getElementsByName("wfu_columnprops_elements"),a=0;a<s.length;a++)wfu_attach_element_handlers(s[a],wfu_columnprops_element_changed);""!=document.getElementById("wfu_shortcode_postid").value&&setTimeout(function(){wfu_check_page_obsolescence()},CheckObsolescenceTimeOut)}function wfu_insert_variable(e){var t=e.className.replace("wfu_variable wfu_variable_",""),a=document.getElementById("wfu_attribute_"+t),l=a.selectionStart,n=a.value;a.value=n.substr(0,l)+e.innerHTML+n.substr(l),wfu_update_text_value({target:a})}function wfu_insert_userfield_variable(e){var t=e.className.replace("wfu_variable wfu_variable_",""),a=document.getElementById("wfu_attribute_"+t),l=a.selectionStart,n=a.value;a.value=n.substr(0,l)+e.value+n.substr(l),e.value="%userdataXXX%",wfu_update_text_value({target:a})}function wfu_columns_itemclicked(e,t){var a=e.parentNode;if("SELECT"==a.tagName){for(var l=0;l<a.options.length;l++)a.options[l].selected=a.options[l]==e;wfu_update_column_props(t)}}function wfu_columns_buttonaction(e,t){var a=document.getElementById("wfu_attribute_"+e+"_sourcelist"),l=document.getElementById("wfu_attribute_"+e);if("add"==t){for(var n=0;n<a.options.length;n++)if(a.options[n].selected||"wfu_columns_item_required"==a.options[n].className){for(var d=!1,u=a.options[n].value.replace(/:.*/,""),r=0;r<l.options.length;r++){var o=l.options[r].value.replace(/:.*/,"");if(o==u){d=!0;break}}if(!d){var _=a.options[n].value.match(/(.*?):(.*?)\/(.*)/),s=_[1],c="custom"==s?"+-"+(""==_[2]?"s":_[2]):""!=_[2]?"-+"+_[2]:"",i=_[3];"custom"==s&&(s="custom1");var f=document.createElement("OPTION");f.value=s+":"+c+"/"+a.options[n].innerHTML+"/"+i,f.innerHTML=a.options[n].innerHTML+(""!=i&&i!=a.options[n].innerHTML?" ("+i+")":""),f.className=a.options[n].className,f.onclick=a.options[n].onclick,l.appendChild(f),l.selectedIndex=l.options.length-1}}}else if("del"==t)for(var n=0;n<l.options.length;)l.options[n].selected&&"wfu_columns_item_required"!=l.options[n].className?l.options.remove(n):n++;else if("up"==t||"down"==t){for(var m=-1,n=0;n<l.options.length;n++)l.options[n].selected&&-1==m?m=n:l.options[n].selected&&m>-1&&(l.options[n].selected=!1);"up"==t&&m>0?l.insertBefore(l.options[m],l.options[m-1]):"down"==t&&m<l.options.length-1&&l.insertBefore(l.options[m+1],l.options[m])}wfu_update_column_props(e),wfu_update_columns(e)}function wfu_update_column_props(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_attribute_"+e+"_columnprops_container"),l=document.getElementById("wfu_attribute_"+e+"_columnprops_title"),n=(document.getElementById("wfu_attribute_"+e+"_columnprops_title_label"),document.getElementById("wfu_attribute_"+e+"_columnprops_id")),d=document.getElementById("wfu_attribute_"+e+"_columnprops_id_label"),u=document.getElementById("wfu_attribute_"+e+"_columnprops_sort"),r=document.getElementById("wfu_attribute_"+e+"_columnprops_sort_label"),o=document.getElementById("wfu_attribute_"+e+"_columnprops_sorttype"),_=document.getElementById("wfu_attribute_"+e+"_columnprops_sorttype_label"),s=t.selectedIndex;if(""==o.options[0].value&&o.options.remove(0),-1==s)a.className="wfu_columnprops_container wfu_columnprops_container_disabled",l.value="",l.disabled=!0,n.value="",n.disabled=!0,u.checked=!1,u.disabled=!0,o.selectedIndex=-1,o.disabled=!0;else{var c=t.options[s].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),i=c[1],f="custom"==i.substr(0,6),m=f?i.substr(6):"",p=""!=c[2],w=p&&"+"==c[2].substr(1,1),g=w&&"+"==c[2].substr(0,1),v=w?c[2].substr(2):"",b=c[4];a.className="wfu_columnprops_container",l.value=b,l.disabled=!1,d.className=f?"":"wfu_columnprops_label_disabled",n.value=m,n.disabled=!f,r.className=p?"":"wfu_columnprops_label_disabled",u.checked=w,u.disabled=!p,_.className=g?"":"wfu_columnprops_label_disabled",o.value=v,o.disabled=!g}}function wfu_columnprops_element_changed(e){e=e||window.event;var t=e.target,a=t.id.match(/^wfu_attribute_(.*?)_columnprops_/)[1],l=document.getElementById("wfu_attribute_"+a),n=document.getElementById("wfu_attribute_"+a+"_columnprops_title"),d=document.getElementById("wfu_attribute_"+a+"_columnprops_id"),u=document.getElementById("wfu_attribute_"+a+"_columnprops_sort"),r=document.getElementById("wfu_attribute_"+a+"_columnprops_sorttype"),o=l.selectedIndex;if(-1!=o){var _=l.options[o].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),s=_[1],c="custom"==s.substr(0,6)?"custom":s,i="custom"==c,f=i?parseInt(d.value)>=1?d.value:"1":"",m=""!=_[2]?_[2].substr(0,1)+(u.checked?"+":"-")+(""!=r.value?r.value:""!=_[2].substr(2)?_[2].substr(2):"s"):"",p=_[3],w=""!=n.value?n.value:p;l.options[o].value=c+f+":"+m+"/"+p+"/"+w,l.options[o].innerHTML=p+(w!=p?" ("+w+")":""),wfu_update_column_props(a),wfu_update_columns(a)}}function wfu_update_columns(e){for(var t=document.getElementById("wfu_attribute_"+e),a="",l=0;l<t.options.length;l++){var n=t.options[l].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),d=n[1]+":"+("+"==n[2].substr(1,1)?n[2].substr(2):"")+"/"+n[4];""!=a&&(a+=","),a+=d}document.getElementById("wfu_attribute_value_"+e).value=a,wfu_generate_shortcode()}function wfu_GetHttpRequestObject(){var e=null;try{e=new XMLHttpRequest}catch(t){try{e=new ActiveXObject("Msxml2.XMLHTTP")}catch(a){try{e=new ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}}if(null==e&&window.createRequest)try{xmlhttp=window.createRequest()}catch(t){}return e}function wfu_plugin_encode_string(e){var t,a=0,l="",n="";for(a=0;a<e.length;a++)t=e.charCodeAt(a),t>=2048?t=((16773120&t|917504)<<4)+((4032&t|8192)<<2)+(63&t|128):t>=128&&(t=((65472&t|12288)<<2)+(63&t|128)),n=t.toString(16),(1==n.length||3==n.length||5==n.length)&&(n="0"+n),l+=n;return l}function wfu_plugin_decode_string(e){for(var t,a,l=0,n="";l<e.length;)t=parseInt(e.substr(l,2),16),a=128>t?t:224>t?((31&t)<<6)+(63&parseInt(e.substr(l+=2,2),16)):((15&t)<<12)+((63&parseInt(e.substr(l+=2,2),16))<<6)+(63&parseInt(e.substr(l+=2,2),16)),n+=String.fromCharCode(a),l+=2;return n}function wfu_randomString(e){for(var t="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz",a=e,l="",n=0;a>n;n++){var d=Math.floor(Math.random()*t.length);l+=t.substring(d,d+1)}return l}function wfu_schedule_save_shortcode(){var e=new Date,t=ShortcodeNextSave-e.getTime();null!=ShortcodeTimeOut&&(clearTimeout(ShortcodeTimeOut),ShortcodeTimeOut=null),0>=t?wfu_save_shortcode():ShortcodeTimeOut=setTimeout(function(){wfu_save_shortcode()},t)}function wfu_check_page_obsolescence(){PageObsolete||PageUpdating||""==document.getElementById("wfu_shortcode_postid").value}function wfu_save_shortcode(){if(!PageObsolete){var e=wfu_GetHttpRequestObject();if(null!=e){PageUpdating=!0,document.getElementById("wfu_update_failed_message").style.display="none";var t=AdminParams.wfu_ajax_url;params=new Array(8),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_save_shortcode",params[1]=new Array(2),params[1][0]="shortcode",params[1][1]=wfu_plugin_encode_string(ShortcodeString),params[2]=new Array(2),params[2][0]="shortcode_original",params[2][1]=document.getElementById("wfu_shortcode_original_enc").value,params[3]=new Array(2),params[3][0]="post_id",params[3][1]=document.getElementById("wfu_shortcode_postid").value,params[4]=new Array(2),params[4][0]="post_hash",params[4][1]=document.getElementById("wfu_shortcode_posthash").value,params[5]=new Array(2),params[5][0]="shortcode_position",params[5][1]=document.getElementById("wfu_shortcode_position").value,params[6]=new Array(2),params[6][0]="shortcode_tag",params[6][1]=document.getElementById("wfu_shortcode_tag").value,params[7]=new Array(2),params[7][0]="widget_id",params[7][1]=document.getElementById("wfu_shortcode_widgetid").value;for(var a="",l=0;l<params.length;l++)a+=(l>0?"&":"")+params[l][0]+"="+encodeURI(params[l][1]);var n=new Date;Autosave?ShortcodeNextSave=n.getTime()+5e3:document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode_wait").style.display="inline"),e.open("POST",t,!0),e.setRequestHeader("Content-type","application/x-www-form-urlencoded"),e.onreadystatechange=function(){if(4==e.readyState&&200==e.status){PageUpdating=!1;var t="wfu_save_shortcode:",a=e.responseText.indexOf(t);-1==a&&(a=e.responseText.length);var l=(e.responseText.substr(0,a),e.responseText.substr(a+t.length,e.responseText.length-a-t.length));a=l.indexOf(":");var d=l.substr(0,a);if(txt_value=l.substr(a+1,l.length-a-1),"success"==d){if(Autosave?(document.getElementById("wfu_save_label").innerHTML="saved",document.getElementById("wfu_save_label").className="wfu_save_label",document.getElementById("wfu_save_label").style.opacity=1,wfu_fadeout_element(300),ShortcodeNextSave=n.getTime()+1e3,null!=ShortcodeTimeOut&&wfu_schedule_save_shortcode()):document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode_wait").style.display="none",document.getElementById("wfu_update_shortcode").disabled=!0,window.plugin_window&&window.plugin_window.location.reload(!0)),""!=document.getElementById("wfu_shortcode_postid").value){var u=document.getElementById("wfu_shortcode_tag").value;document.getElementById("wfu_shortcode_original_enc").value=wfu_plugin_encode_string("["+u+" "+ShortcodeString+"]"),document.getElementById("wfu_shortcode_posthash").value=txt_value,setTimeout(function(){wfu_check_page_obsolescence()},CheckObsolescenceTimeOut)}}else Autosave&&(document.getElementById("wfu_save_label").innerHTML="not saved",document.getElementById("wfu_save_label").className="wfu_save_label_fail",document.getElementById("wfu_save_label").style.opacity=1,wfu_fadeout_element(300)),"fail"==d&&("post_modified"==txt_value?(PageObsolete=!0,document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode").disabled=!0),document.getElementById("wfu_update_rejected_message").style.display="block"):document.getElementById("wfu_update_failed_message").style.display="block")}},e.send(a)}}}function wfu_adjust_opacity(e){document.getElementById("wfu_save_label").style.opacity=e}function wfu_fadeout_element(e){for(var t=20,a=0,l=0;t>l;l++)a=1-l/t,setTimeout('wfu_adjust_opacity("'+a.toString()+'")',l*e/t);setTimeout('wfu_adjust_opacity("0.0")',l*e/t)}function wfu_apply_value(e,t,a){if("onoff"==t)document.getElementById("wfu_attribute_"+e).className="wfu_onoff_container_"+("true"!=a?"on":"off"),wfu_admin_onoff_clicked(e);else if("text"==t||"ltext"==t||"integer"==t||"float"==t||"mtext"==t||"color"==t){var l=document.getElementById("wfu_attribute_"+e);if(a=a.replace(/\%n\%/gm,"\n"),a=a.replace(/\%dq\%/gm,'"'),a=a.replace(/\%brl\%/gm,"["),a=a.replace(/\%brr\%/gm,"]"),"color"==t){var n=colourNameToHex(a);n||(n=a),jQuery("#wfu_attribute_"+e).wpColorPicker("color",n)}l.value=a,wfu_update_text_value({target:l})}else if("date"==t){var l=document.getElementById("wfu_attribute_"+e);l.value=a,wfu_update_date_value({target:l})}else if("placements"==t)wfu_admin_recreate_placements_panel(a),document.getElementById("wfu_attribute_value_placements").value=a,wfu_generate_shortcode();else if("radio"==t){for(var d=document.getElementsByName("wfu_radioattribute_"+e),u=0;u<d.length;u++)d[u].checked=d[u].value==a||"*"+d[u].value==a;wfu_admin_radio_clicked(e)}else if("ptext"==t){a=a.replace(/\%n\%/gm,"\n"),a=a.replace(/\%dq\%/gm,'"'),a=a.replace(/\%brl\%/gm,"["),a=a.replace(/\%brr\%/gm,"]");var r=a.split("/"),o=r.length<1?"":r[0],_=r.length<2?o:r[1],s=document.getElementById("wfu_attribute_s_"+e);s.value=o;var c=document.getElementById("wfu_attribute_p_"+e);c.value=_,wfu_update_ptext_value({target:s}),wfu_update_ptext_value({target:c})}else if("mchecklist"==t){if(a=a.toLowerCase(),"all"==a)document.getElementById("wfu_attribute_"+e+"_all").checked=!0;else{document.getElementById("wfu_attribute_"+e+"_all").checked=!1;for(var i=a.split(","),u=0;u<i.length;u++)i[u]=i[u].trim();jQuery("#wfu_attribute_"+e+" input").each(function(){jQuery(this).prop("checked",i.indexOf(jQuery(this).next().html())>-1)})}wfu_update_mchecklist_value(e)}else if("rolelist"==t){var l=document.getElementById("wfu_attribute_"+e),f=document.getElementById("wfu_attribute_"+e+"_all"),m=f.className.indexOf("wfu_default_administrator")>-1,p=a.split(",");if(p.indexOf("all")>-1){f.checked=!0;for(var u=0;u<l.options.length;u++)l.options[u].selected=m&&"administrator"==l.options[u].value}else{f.checked=!1;for(var u=0;u<p.length;u++)p[u]=p[u].trim();for(var u=0;u<l.options.length;u++)l.options[u].selected=p.indexOf(l.options[u].value)>-1}document.getElementById("wfu_attribute_"+e+"_guests").checked=p.indexOf("guests")>-1,wfu_update_rolelist_value(e)}else if("userlist"==t){var l=document.getElementById("wfu_attribute_"+e),f=document.getElementById("wfu_attribute_"+e+"_all"),w=f.className.indexOf("wfu_default_0")>-1,g=document.getElementById("wfu_attribute_"+e+"_current");if(g&&"current"==a){g.checked=!0,f.checked=!1,document.getElementById("wfu_attribute_"+e+"_guests").checked=!1;for(var u=0;u<l.options.length;u++)l.options[u].selected=w&&1>u}else{g&&(g.checked=!1);var v=a.split(",");if(v.indexOf("all")>-1){f.checked=!0;for(var u=0;u<l.options.length;u++)l.options[u].selected=w&&1>u}else{f.checked=!1;for(var u=0;u<v.length;u++)v[u]=v[u].trim();for(var u=0;u<l.options.length;u++)l.options[u].selected=v.indexOf(l.options[u].value)>-1}document.getElementById("wfu_attribute_"+e+"_guests").checked=v.indexOf("guests")>-1}wfu_update_userlist_value(e)}else if("postlist"==t){for(var b=Array(),f=Array(),h=document.getElementById("wfu_attribute_"+e+"_postlist").value.split(","),u=0;u<h.length;u++)b.push(document.getElementById("wfu_attribute_"+e+"_"+h[u])),f.push(document.getElementById("wfu_attribute_"+e+"_all_"+h[u]));var g=document.getElementById("wfu_attribute_"+e+"_current");if(g&&"current"==a){g.checked=!0;for(var u=0;u<h.length;u++){f[u].checked=!1;for(var y=0;y<b[u].options.length;y++)b[u].options[y].selected=!1}}else{g&&(g.checked=!1);for(var I=a.split(","),u=0;u<h.length;u++){("all"==a||I.indexOf("all"+h[u])>-1)&&(f[u].checked=!0);for(var y=0;y<b[u].options.length;y++)b[u].options[y].selected=I.indexOf(b[u].options[y].value)>-1}}wfu_update_postlist_value(e)}else if("bloglist"==t){var g=document.getElementById("wfu_attribute_"+e+"_current");if(g&&"current"==a){g.checked=!0,document.getElementById("wfu_attribute_"+e+"_all").checked=!1;for(var l=document.getElementById("wfu_attribute_"+e),u=0;u<l.options.length;u++)l.options[u].selected=!1}else{g&&(g.checked=!1);var E=a.split(",");if("all"==a)document.getElementById("wfu_attribute_"+e+"_all").checked=!0;else{document.getElementById("wfu_attribute_"+e+"_all").checked=!1;for(var u=0;u<E.length;u++)E[u]=E[u].trim();for(var l=document.getElementById("wfu_attribute_"+e),u=0;u<l.options.length;u++)l.options[u].selected=E.indexOf(l.options[u].value)>-1}}wfu_update_bloglist_value(e)}else if("stringmatch"==t){var B="",k="equal to",x="",N=a.match(/^field:(.*?);\s*criterion:(.*?)\s*;\s*value:(.*)$/);N&&4==N.length&&(B=N[1],k=N[2],x=N[3]),document.getElementById("wfu_attribute_"+e+"_matchfield").value=B,document.getElementById("wfu_attribute_"+e+"_matchcriterion").value=k,document.getElementById("wfu_attribute_"+e+"_matchvalue").value=x,wfu_update_stringmatch_value(e)}else if("columns"==t){var T=document.getElementById("wfu_attribute_"+e+"_sourcelist"),A=document.getElementById("wfu_attribute_"+e);A.innerHTML="";for(var H=a.replace(/(:|\/).*?(,|$)/g,"$2").split(","),u=0;u<T.options.length;u++){var r=T.options[u].value.match(/(.*?):(.*?)\/(.*)/),S=r[1];if("wfu_columns_item_required"==T.options[u].className&&-1==H.indexOf(S)){var q="custom"==S?"+-"+(""==r[2]?"s":r[2]):""!=r[2]?"-+"+r[2]:"",O=r[3];"custom"==S&&(S="custom1");var C=document.createElement("OPTION");C.value=S+":"+q+"/"+T.options[u].innerHTML+"/"+O,C.innerHTML=T.options[u].innerHTML+(""!=O&&O!=T.options[u].innerHTML?" ("+O+")":""),C.className=T.options[u].className,C.onclick=T.options[u].onclick,A.appendChild(C)}}for(var L=a.split(","),u=0;u<L.length;u++){var M=L[u].split("/",2),S=M[0],j="";M.length>1&&(j=M[1]),M=S.split(":",2),S=M[0];for(var D=S.replace(/custom[0-9]+$/,"custom"),P=-1,y=0;y<T.options.length;y++){var V=T.options[y].value.replace(/:.*/,"");if(V==D){P=y;break}}for(var R=!1,y=0;y<A.options.length;y++){var F=A.options[y].value.replace(/:.*/,"");if(F==S){R=!0;break}}if("custom"!=S&&P>-1&&!R){var r=T.options[P].value.match(/(.*?):(.*?)\/(.*)/),U="custom"==D||""!=r[2],q=r[2],Q=T.options[P].innerHTML,O=r[3],G="";G=1==M.length?"custom"==D?"+-s":U?"-+"+q:"":"custom"==D?"+"+(""==M[1]?"-s":"+"+M[1]):U?"-"+(""==M[1]?"-":"+")+q:"",
|
3 |
-
""==j&&(j=O);var C=document.createElement("OPTION");C.value=S+":"+G+"/"+Q+"/"+j,C.innerHTML=Q+(O!=Q?" ("+O+")":""),C.className=T.options[P].className,C.onclick=T.options[u].onclick,A.appendChild(C)}}wfu_update_column_props(e),wfu_update_columns(e)}else if("dimensions"==t){for(var X,W,$,l,z=a.split(","),J=document.getElementsByName("wfu_dimension_elements_"+e),u=0;u<J.length;u++)J[u].value="";for(var u=0;u<z.length;u++)X=z[u].split(":",2),W=X.length<1?"":X[0],$=X.length<2?W:X[1],l=document.getElementById("wfu_attribute_"+e+"_"+W.trim()),l&&(l.value=$.trim());l=J[0],wfu_update_dimension_value({target:l})}else if("userfields"==t){for(var K,Z=a.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]"),Y=Array(),u=0;u<Z.length;u++)K="*"==Z[u].substr(0,1),K&&(Z[u]=Z[u].substr(1)),""!=Z[u]&&Y.push({name:Z[u],required:K});for(var ee=document.getElementById("wfu_attribute_"+e),te=null,ae=Array(),u=0;u<ee.childNodes.length;u++)1===ee.childNodes[u].nodeType&&(null==te?te=ee.childNodes[u]:ae.push(ee.childNodes[u]));for(var u=0;u<ae.length;u++)ee.removeChild(ae[u]);wfu_userdata_edit_field(te,"",!1);for(var le,ne=te,u=0;u<Y.length;u++)0==u?wfu_userdata_edit_field(te,Y[u].name,Y[u].required):(le=ne.cloneNode(!0),wfu_userdata_edit_field(le,Y[u].name,Y[u].required),ee.insertBefore(le,ne.nextSibling),ne=le);for(var l,u=0;u<te.childNodes.length&&(l=te.childNodes[u],"INPUT"!=l.tagName);u++);wfu_update_userfield_value({target:l})}else if("formfields"==t){for(var Y=Array(),de=window["wfu_attribute_"+e+"_typeprops"],ue=de[0].split(","),re={},u=0;u<ue.length;u++){var oe=de[ue[u]],_e={};_e.type=ue[u],_e.label="",_e.labelposition=oe.labelposition.substr(5),_e.required="true"==oe.required.substr(5),_e.donotautocomplete="true"==oe.donotautocomplete.substr(5),_e.validate="true"==oe.validate.substr(5),_e.typehook="true"==oe.typehook.substr(5),_e.hintposition=oe.hintposition.substr(5),_e["default"]=oe["default"].substr(5),_e.data=oe.data.substr(5),_e.group=oe.group.substr(5),_e.format=oe.format.substr(5),re[ue[u]]=_e}for(var Z=a.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]"),u=0;u<Z.length;u++){var se=Z[u].trim(),ce={};for(prop in re.text)ce[prop]=re.text[prop];"*"==se.substr(0,1)&&(ce.required=!0,se=se.substr(1));var ie=se.split("|");if(""!=ie[0].trim()){for(var fe=-1,me="",y=0;y<ie.length;y++){var pe=ie[y].replace(/^\s+/gm,""),we=pe.substr(0,2),$=pe.substr(2);if("t:"==we&&y>0&&ue.indexOf($)>-1){me=$,fe=y;break}}if(""!=me){for(prop in re[me])ce[prop]=re[me][prop];ie.splice(fe,1)}ce.label=ie[0].trim(),ie.splice(0,1);for(var y=0;y<ie.length;y++){var pe=ie[y].replace(/^\s+/gm,""),we=pe.substr(0,2),$=pe.substr(2);"s:"==we?ce.labelposition=$:"r:"==we?ce.required="1"==$:"a:"==we?ce.donotautocomplete="1"==$:"v:"==we?ce.validate="1"==$:"d:"==we?ce["default"]=$:"l:"==we?ce.data=$:"g:"==we?ce.group=$:"f:"==we?ce.format=$:"p:"==we?ce.hintposition=$:"h:"==we&&(ce.typehook="1"==$)}Y.push(ce)}}0==Y.length&&Y.push(fieldprops_default);for(var ee=document.getElementById("wfu_attribute_"+e),ge=document.querySelectorAll("div#wfu_attribute_"+e+" .wfu_formdata_line_container"),u=1;u<ge.length;u++)ee.removeChild(ge[u]);for(var ve=ge[0],u=0;u<Y.length;u++){var be=e+"_"+wfu_randomString(4),he=wfu_formdata_prepare_template(e,Y[u],be);u>0&&(ve=document.createElement("DIV")),ve.id="wfu_formfield_"+be+"_container",ve.className="wfu_formdata_line_container",u>0&&ee.insertBefore(ve,null),ve.innerHTML=he}for(var ye=document.querySelectorAll("div#wfu_attribute_"+e+' input[name="wfu_formfield_elements"]'),u=0;u<ye.length;u++)wfu_attach_element_handlers(ye[u],wfu_update_formfield_value);for(var Ie=document.querySelectorAll("div#wfu_attribute_"+e+" .wfu_formdata_action_remove"),u=0;u<Ie.length;u++)Ie[u].className="wfu_formdata_action wfu_formdata_action_remove"+(Ie.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:ge[0]})}else if("color-triplet"==t){for(var Ee=a.split(","),u=0;u<Ee.length;u++)Ee[u]=Ee[u].trim();2==Ee.length?Ee=[Ee[0],Ee[1],"#000000"]:1==Ee.length?Ee=[Ee[0],"#FFFFFF","#000000"]:Ee.length<3&&(Ee=["#000000","#FFFFFF","#000000"]);var n=colourNameToHex(Ee[0]);n||(n=Ee[0]),jQuery("#wfu_attribute_"+e+"_color").wpColorPicker("color",n);var l=document.getElementById("wfu_attribute_"+e+"_color");l.value=Ee[0],n=colourNameToHex(Ee[1]),n||(n=Ee[1]),jQuery("#wfu_attribute_"+e+"_bgcolor").wpColorPicker("color",n),document.getElementById("wfu_attribute_"+e+"_bgcolor").value=Ee[1],n=colourNameToHex(Ee[2]),n||(n=Ee[2]),jQuery("#wfu_attribute_"+e+"_borcolor").wpColorPicker("color",n),document.getElementById("wfu_attribute_"+e+"_borcolor").value=Ee[2],wfu_update_triplecolor_value({target:l})}else if("folderlist"==t){for(var i=wfu_parse_folderlist_js(a),Be=document.getElementById("wfu_attribute_"+e).options;Be.length>0;)Be.remove(0);for(var C,ke,xe,Ne,Te,Ae,u=0;u<i.path.length;u++){ke=i.path[u],"/"==ke.substr(ke.length,1)&&(ke=ke.substr(0,ke.length-1)),xe=ke.split("/"),ke=xe[xe.length-1],Te=parseInt(i.level[u]),Ne="",Ae="";for(var y=0;Te>y;y++)Ne+=" ",Ae+="*";Ne+=i.label[u],i["default"][u]&&(Ae+="&"),Ae+=""==ke?"{root}/"+i.label[u]:ke+i.label[u],C=document.createElement("option"),i["default"][u]?C.className="wfu_select_folders_option_default":C.className="",C.value=wfu_plugin_encode_string(Ae),C.innerHTML=Ne,Be.add(C)}C=document.createElement("option"),C.value="",C.innerHTML="",Be.add(C);var He=document.getElementById("wfu_attribute_"+e);He.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),l=He,a!==l.oldVal&&(l.oldVal=a,document.getElementById("wfu_attribute_value_"+e).value=a,wfu_generate_shortcode())}}function wfu_parse_folderlist_js(e){var t=Object();if(t.path=Array(),t.label=Array(),t.level=Array(),t["default"]=Array(),"auto"==e.substr(0,4))return t;var a=e.split(",");if(0==a.length)return t;if(1==a.length&&""==a[0].trim())return t;for(var l,n,d,u,r,o,_,s=["root"],c=0,i=0,f=-1,m=0;m<a.length;m++){for(l=a[m].trim(),n=0,d="",u=!1;n<l.length&&"*"==l.substr(n,1);)n++,d+=" ";if(1>=n-c&&(n>0||0==i)&&(l=l.substr(n,l.length-n),"&"==l.substr(0,1)&&(l=l.substr(1),u=!0),subfolder_items=l.split("/"),subfolder_items.length<2&&subfolder_items.push(""),""!=subfolder_items[1]?(r=subfolder_items[0],o=subfolder_items[1]):(r=l,o=l),""!=r)){u&&-1==f?f=t.path.length:u=!1,0==n&&(i=1),s.length>n?s[n]=r:s.push(r),_="";for(var p=1;n>=p;p++)_+=s[p]+"/";t.path.push(_),t.label.push(o),t.level.push(n),t["default"].push(u),c=n}}return t}function colourNameToHex(e){var t={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4","indianred ":"#cd5c5c","indigo ":"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};return"undefined"!=typeof t[e.toLowerCase()]?t[e.toLowerCase()]:!1}function wfu_download_file(e,t,a){var l=wfu_GetHttpRequestObject();if(null!=l){var n=AdminParams.wfu_ajax_url;params=new Array(3),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_download_file_invoker",params[1]=new Array(2),params[1][0]="file",params[1][1]=e,params[2]=new Array(2),params[2][0]="nonce",params[2][1]=a;for(var d="",u=0;u<params.length;u++)d+=(u>0?"&":"")+params[u][0]+"="+encodeURI(params[u][1]);l.open("POST",n,!0),l.setRequestHeader("Content-type","application/x-www-form-urlencoded"),l.onreadystatechange=function(){if(4==l.readyState&&200==l.status){var a="wfu_ajax_action_download_file_invoker:",n=l.responseText.indexOf(a);-1==n&&(n=l.responseText.length);var d=(l.responseText.substr(0,n),l.responseText.substr(n+a.length,l.responseText.length-n-a.length));n=d.indexOf(":");var u=d.substr(0,n);if(txt_value=d.substr(n+1,d.length-n-1),"wfu_download_id;"==u.substr(0,16)){var r=u.substr(16),o=document.getElementById("wfu_file_download_container_"+t);o.innerHTML=txt_value,setTimeout("wfu_download_file_monitor('"+e+"', "+t+", '"+r+"')",100)}}},l.send(d)}}function wfu_download_file_monitor(e,t,a){var l=wfu_GetHttpRequestObject();if(null!=l){var n=AdminParams.wfu_ajax_url;params=new Array(3),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_download_file_monitor",params[1]=new Array(2),params[1][0]="file",params[1][1]=e,params[2]=new Array(2),params[2][0]="id",params[2][1]=a;for(var d="",u=0;u<params.length;u++)d+=(u>0?"&":"")+params[u][0]+"="+encodeURI(params[u][1]);l.open("POST",n,!0),l.setRequestHeader("Content-type","application/x-www-form-urlencoded"),l.onreadystatechange=function(){if(4==l.readyState&&200==l.status){var a="wfu_ajax_action_download_file_monitor:",n=l.responseText.indexOf(a);-1==n&&(n=l.responseText.length);var d=(l.responseText.substr(0,n),l.responseText.substr(n+a.length,l.responseText.length-n-a.length));n=d.indexOf(":");var u=d.substr(0,n);if(txt_value=d.substr(n+1,d.length-n-1),"repeat"!=u){var r=document.getElementById("wfu_file_download_container_"+t);r.innerHTML=""}else"repeat"==u&&setTimeout("wfu_download_file_monitor('"+e+"', "+t+", '"+txt_value+"')",100)}},l.send(d)}}function wfu_filedetails_userdata_changed(e){for(var t,a,l=document.getElementsByName("wfu_filedetails_userdata"),n=!1,d=0;d<l.length;d++)if(t=document.getElementById(l[d].id.replace("wfu_filedetails_userdata_value_","wfu_filedetails_userdata_default_")),a=document.getElementById(l[d].id.replace("wfu_filedetails_userdata_value_","wfu_filedetails_userdata_")),a.value=l[d].value,l[d].value!=t.value){n=!0;break}document.getElementById("dp_filedetails_submit_fields").disabled=!n}function wfu_Attach_FileDetails_Admin_Events(){for(var e=document.getElementsByName("wfu_filedetails_userdata"),t=0;t<e.length;t++)wfu_attach_element_handlers(e[t],wfu_filedetails_userdata_changed)}function wfu_update_browserpermission_option(e,t,a){var l=document.getElementById("wfu_fbperm_users"),n=document.getElementById("wfu_fbperm_roles"),d=document.getElementById("wfu_fbperm_"+e+"_"+t+"_view"),u=document.getElementById("wfu_fbperm_"+e+"_"+t+"_dl"),r=document.getElementById("wfu_fbperm_"+e+"_"+t+"_edit"),o=document.getElementById("wfu_fbperm_"+e+"_"+t+"_del");if("role"==e){if("0"==t){u.checked=d.checked&&u.checked,r.checked=d.checked&&r.checked,o.checked=d.checked&&o.checked,u.disabled=!d.checked,r.disabled=!d.checked,o.disabled=!d.checked;for(var _=document.querySelectorAll("tr.wfu_fbperm_role_tr"),s=0;s<_.length;s++){var c=_[s].id.substr(16,_[s].id.length-20);wfu_update_browserpermission_option("role",c,!1)}if(a){var i=(d.checked?"v":"")+(u.checked?"d":"")+(r.checked?"e":"")+(o.checked?"l":"");n.value=n.value.replace(/^0\[\w*\]/,"0["+i+"]")}}else if("administrator"!=t){var f=document.getElementById("wfu_fbperm_role_"+t+"_row"),m=document.getElementById("wfu_fbperm_role_"+t+"_def"),p=document.getElementById("wfu_fbperm_role_0_view"),w=document.getElementById("wfu_fbperm_role_0_dl"),g=document.getElementById("wfu_fbperm_role_0_edit"),v=document.getElementById("wfu_fbperm_role_0_del");if(d.checked=m.checked?p.checked:d.checked,f.style.fontWeight=m.checked?"":"bold",u.checked=m.checked?w.checked:d.checked&&u.checked,r.checked=m.checked?g.checked:d.checked&&r.checked,o.checked=m.checked?v.checked:d.checked&&o.checked,d.disabled=m.checked,u.disabled=m.checked||!d.checked,r.disabled=m.checked||!d.checked,o.disabled=m.checked||!d.checked,a){var i=m.checked?"":"D"+(d.checked?"v":"")+(u.checked?"d":"")+(r.checked?"e":"")+(o.checked?"l":"");n.value=n.value.replace(new RegExp(","+t+"\\[\\w*\\]"),","+t+"["+i+"]")}}for(var b=document.querySelectorAll("tr.wfu_fbperm_user_tr"),s=0;s<b.length;s++){var h=b[s].id.substr(16,b[s].id.length-20);wfu_update_browserpermission_option("user",h,!1)}}else if("user"==e){var y=document.getElementById("wfu_fbperm_user_"+t+"_role");if("0"==t){d.checked=y.checked?!1:d.checked,u.checked=y.checked?!1:d.checked&&u.checked,r.checked=y.checked?!1:d.checked&&r.checked,o.checked=y.checked?!1:d.checked&&o.checked,d.disabled=y.checked,u.disabled=y.checked||!d.checked,r.disabled=y.checked||!d.checked,o.disabled=y.checked||!d.checked,d.indeterminate=y.checked,u.indeterminate=y.checked,r.indeterminate=y.checked,o.indeterminate=y.checked;for(var b=document.querySelectorAll("tr.wfu_fbperm_user_tr"),s=0;s<b.length;s++){var h=b[s].id.substr(16,b[s].id.length-20);wfu_update_browserpermission_option("user",h,!1)}if(a){var i=y.checked?"":"R"+(d.checked?"v":"")+(u.checked?"d":"")+(r.checked?"e":"")+(o.checked?"l":"");l.value=l.value.replace(/^0\[\w*\],?/,""),l.value="0["+i+"]"+(""==l.value?"":","+l.value)}}else{var I=document.getElementById("wfu_fbperm_user_"+t+"_roles").value.split(",");if(1==I.length&&""==I[0]&&(I=Array()),I.indexOf("administrator")<0){var f=document.getElementById("wfu_fbperm_user_"+t+"_row"),m=document.getElementById("wfu_fbperm_user_"+t+"_def"),E=document.getElementById("wfu_fbperm_user_0_role"),p=document.getElementById("wfu_fbperm_user_0_view"),w=document.getElementById("wfu_fbperm_user_0_dl"),g=document.getElementById("wfu_fbperm_user_0_edit"),v=document.getElementById("wfu_fbperm_user_0_del");if(I.length>0)for(var B=!1,k=!1,x=!1,N=!1,s=0;s<I.length;s++)B=B||document.getElementById("wfu_fbperm_role_"+I[s]+"_view").checked,k=B&&(k||document.getElementById("wfu_fbperm_role_"+I[s]+"_dl").checked),x=B&&(x||document.getElementById("wfu_fbperm_role_"+I[s]+"_edit").checked),N=B&&(N||document.getElementById("wfu_fbperm_role_"+I[s]+"_del").checked);else var B=document.getElementById("wfu_fbperm_role_0_view"),k=document.getElementById("wfu_fbperm_role_0_dl"),x=document.getElementById("wfu_fbperm_role_0_edit"),N=document.getElementById("wfu_fbperm_role_0_del");if(f.style.fontWeight=m.checked?"":"bold",y.checked=m.checked?E.checked:y.checked,d.checked=m.checked?E.checked?B:p.checked:y.checked?B:d.checked,u.checked=m.checked?E.checked?k:w.checked:y.checked?k:d.checked&&u.checked,r.checked=m.checked?E.checked?x:g.checked:y.checked?x:d.checked&&r.checked,o.checked=m.checked?E.checked?N:v.checked:y.checked?N:d.checked&&o.checked,y.disabled=m.checked,d.disabled=m.checked||y.checked,u.disabled=m.checked||y.checked||!d.checked,r.disabled=m.checked||y.checked||!d.checked,o.disabled=m.checked||y.checked||!d.checked,a){var i=m.checked?"":"D"+(y.checked?"":"R"+(d.checked?"v":"")+(u.checked?"d":"")+(r.checked?"e":"")+(o.checked?"l":""));l.value=l.value.replace(new RegExp(","+t+"\\[\\w*\\]|"+t+"\\[\\w*\\],|"+t+"\\[\\w*\\]"),""),l.value+=(""==l.value?"":",")+t+"["+i+"]"}}}}}function wfu_goto_historylog_page(e,t){var a=document.getElementById("wfu_historylog_pages"),l=a.selectedIndex+1,n=l;if("next"==t?n=Math.min(l+1,a.options.length):"prev"==t?n=Math.max(l-1,1):"last"==t?n=a.options.length:"first"==t?n=1:"sel"==t&&(l=-1),n!=l){var d=wfu_GetHttpRequestObject();if(null!=d){var u=AdminParams.wfu_ajax_url;params=new Array(3),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_get_historylog_page",params[1]=new Array(2),params[1][0]="token",params[1][1]=e,params[2]=new Array(2),params[2][0]="page",params[2][1]=n;for(var r="",o=0;o<params.length;o++)r+=(o>0?"&":"")+params[o][0]+"="+encodeURI(params[o][1]);document.getElementById("wfu_historylog_overlay").style.display="block",d.open("POST",u,!0),d.setRequestHeader("Content-type","application/x-www-form-urlencoded"),d.onreadystatechange=function(){if(4==d.readyState&&200==d.status){document.getElementById("wfu_historylog_overlay").style.display="none";var e="wfu_historylog_page_success:",t=d.responseText.indexOf(e);-1==t&&(t=d.responseText.length);var l=(d.responseText.substr(0,t),d.responseText.substr(t+e.length,d.responseText.length-t-e.length));if(""!=l){var u=document.getElementById("wfu_historylog_table");u.tBodies[0].innerHTML=wfu_plugin_decode_string(l),a.selectedIndex=n-1,document.getElementById("wfu_historylog_first_disabled").style.display=1==n?"inline":"none",document.getElementById("wfu_historylog_prev_disabled").style.display=1==n?"inline":"none",document.getElementById("wfu_historylog_first").style.display=1==n?"none":"inline",document.getElementById("wfu_historylog_prev").style.display=1==n?"none":"inline",document.getElementById("wfu_historylog_last_disabled").style.display=n==a.options.length?"inline":"none",document.getElementById("wfu_historylog_next_disabled").style.display=n==a.options.length?"inline":"none",document.getElementById("wfu_historylog_last").style.display=n==a.options.length?"none":"inline",document.getElementById("wfu_historylog_next").style.display=n==a.options.length?"none":"inline"}}},d.send(r)}}}function wfu_include_file(e,t,a){var l=wfu_GetHttpRequestObject();if(null!=l){var n=AdminParams.wfu_ajax_url;params=new Array(2),params[0]=new Array(3),params[0][0]="action",params[0][1]="wfu_ajax_action_include_file",params[1]=new Array(2),params[1][0]="file",params[1][1]=e,params[2]=new Array(2),params[2][0]="nonce",params[2][1]=a;for(var d="",u=0;u<params.length;u++)d+=(u>0?"&":"")+params[u][0]+"="+encodeURI(params[u][1]);document.getElementById("wfu_include_file_"+t+"_a").href="javascript: void(0)",document.getElementById("wfu_include_file_"+t+"_img").style.display="inline",l.open("POST",n,!0),l.setRequestHeader("Content-type","application/x-www-form-urlencoded"),l.onreadystatechange=function(){if(4==l.readyState&&(document.getElementById("wfu_include_file_"+t+"_img").style.display="none",200==l.status)){var e="wfu_include_file:",a=l.responseText.indexOf(e);-1==a&&(a=l.responseText.length);var n=(l.responseText.substr(0,a),l.responseText.substr(a+e.length,l.responseText.length-a-e.length));a=n.indexOf(":");var d=n.substr(0,a);txt_value=n.substr(a+1,n.length-a-1),"success"==d?(document.getElementById("wfu_file_flat_"+t).style.display="none",document.getElementById("wfu_file_link_"+t).style.display="inline",document.getElementById("wfu_file_can_be_included_actions_"+t).style.display="none",document.getElementById("wfu_file_is_included_actions_"+t).style.display="block"):document.getElementById("wfu_include_file_"+t+"_a").innerHTML=document.getElementById("wfu_include_file_"+t+"_inpfail").value}},l.send(d)}}function wfu_adminbrowser_select_all_visible_changed(){for(var e=document.getElementById("wfu_select_all_visible").checked,t=document.querySelectorAll(".wfu_selectors"),a=0;a<t.length;a++)t[a].checked=e}function wfu_adminbrowser_selector_changed(e){var t=document.querySelectorAll(".wfu_selectors").length,a=document.querySelectorAll(".wfu_selectors:checked").length,l=document.getElementById("wfu_select_all_visible");l.style.webkitAppearance="",l.style.webkitAppearance="checkbox",l.checked=a>0,l.indeterminate=a>0&&t>a}function wfu_apply_adminbrowser_bulkaction(){var e=document.getElementById("wfu_adminbrowser_bulkactions");if(!(e.selectedIndex<1)){var t=e.options[e.selectedIndex].value,a=document.querySelectorAll(".wfu_selectors:checked");if(0!=a.length){for(var l=[],n=0,d=0,u=0;u<a.length;u++){var r=a[u].className.replace(/.*?wfu_selcode_/,"");if(""!=r){var o=a[u].className.indexOf("wfu_included")>-1;o?n++:d++,"delete"==t&&!o||"include"==t&&o?a[u].checked=!1:l.push(r)}}if("delete"==t&&d>0?alert("Notice! Files that were not uploaded using the plugin cannot be deleted and have been deselected."):"include"==t&&n>0&&alert("Notice! Files already included in the plugin have been deselected."),0!=l.length){var _=document.getElementById("wfu_adminbrowser_action_url").value,s=document.getElementById("wfu_adminbrowser_referer").value;if("delete"==t||"include"==t){var c=document.createElement("FORM");c.method="POST",c.action=_,c.style.display="none";var i=document.createElement("INPUT");i.type="hidden",i.name="action",i.value=t+"_file",c.appendChild(i);var f=document.createElement("INPUT");f.type="hidden",f.name="file",f.value="list:"+l.join(),c.appendChild(f);var m=document.createElement("INPUT");m.type="hidden",m.name="referer",m.value=s,c.appendChild(m),document.body.appendChild(c),c.submit()}}}}}var DraggedItem=null,ShortcodeNextSave=0,ShortcodeTimeOut=null,ShortcodeString="",Autosave=!1,PageObsolete=!1,PageUpdating=!1,CheckObsolescenceTimeOut=5e3;jQuery(document).ready(function(e){e(".wfu_color_field").wpColorPicker({change:function(e,t){e.target.value=t.color.toString(),"wfu_text_elements"==e.target.name?wfu_update_text_value(e):"wfu_triplecolor_elements"==e.target.name&&wfu_update_triplecolor_value(e)}})});
|
1 |
+
function wfu_admin_activate_tab(e){for(var t,a,l=document.getElementById("wfu_tab_container"),n=0;n<l.childNodes.length;n++)t=l.childNodes[n],1===t.nodeType&&(a=t.id.substr(8),t.className.indexOf("nav-tab-active")>-1&&(t.className="nav-tab",document.getElementById("wfu_container_"+a).style.display="none"));document.getElementById("wfu_tab_"+e).className="nav-tab nav-tab-active",document.getElementById("wfu_container_"+e).style.display="block"}function wfu_admin_onoff_clicked(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_wrapper"),l=document.getElementsByClassName("wfu_shadow_"+e,"div",a),n=document.getElementsByClassName("wfu_shadow_"+e+"_inv","div",a),d="on"==t.className.substr(t.className.length-2);if(d=!d){document.getElementById("wfu_attribute_value_"+e).value="true",t.className="wfu_onoff_container_on";for(var u=0;u<l.length;u++)l[u].style.display="none";for(var u=0;u<n.length;u++)n[u].style.display="block"}else{document.getElementById("wfu_attribute_value_"+e).value="false",t.className="wfu_onoff_container_off";for(var u=0;u<l.length;u++)l[u].style.display="block";for(var u=0;u<n.length;u++)n[u].style.display="none"}wfu_generate_shortcode(),("userdata"==e||"formdata"==e)&&wfu_update_formfield_variables()}function wfu_admin_radio_clicked(e){var t=document.getElementsByName("wfu_radioattribute_"+e),a=document.getElementById("wfu_wrapper"),l=document.getElementsByClassName("wfu_shadow_"+e,"div",a),n=document.getElementsByClassName("wfu_shadow_"+e+"_inv","div",a),d="";for(o=0;o<t.length;o++)t[o].checked&&(d=t[o].value);var u="*"==d.substr(0,1);if(u){d=d.substr(1);for(var o=0;o<l.length;o++)l[o].style.display="none";for(var o=0;o<n.length;o++)n[o].style.display="block"}else{for(var o=0;o<l.length;o++)l[o].style.display="block";for(var o=0;o<n.length;o++)n[o].style.display="none"}document.getElementById("wfu_attribute_value_"+e).value=d,wfu_generate_shortcode()}function wfu_addEventHandler(e,t,a){e.addEventListener?e.addEventListener(t,a,!1):e.attachEvent?e.attachEvent("on"+t,a):e["on"+t]=a}function wfu_attach_separator_dragdrop_events(){for(var e,t=document.getElementById("wfu_placements_container"),a=0;a<t.childNodes.length;a++)e=t.childNodes[a],("wfu_component_separator_hor"==e.className||"wfu_component_separator_ver"==e.className)&&(wfu_addEventHandler(e,"dragenter",wfu_separator_dragenter),wfu_addEventHandler(e,"dragover",wfu_default_dragover),wfu_addEventHandler(e,"dragleave",wfu_separator_dragleave),wfu_addEventHandler(e,"drop",wfu_separator_drop))}function wfu_Attach_Admin_DragDrop_Events(){if(window.FileReader){var e=document.getElementById("wfu_placements_container");if(e){for(var t,a=document.getElementById("wfu_componentlist_container"),l=0;l<e.childNodes.length;l++)t=e.childNodes[l],"wfu_component_box"==t.className&&(wfu_addEventHandler(t,"dragstart",wfu_component_dragstart),wfu_addEventHandler(t,"dragend",wfu_component_dragend));for(var l=0;l<a.childNodes.length;l++)if(t=a.childNodes[l],"wfu_component_box_container"==t.className)for(var n=0;n<t.childNodes.length;n++)"wfu_component_box wfu_inbase"==t.childNodes[n].className&&(wfu_addEventHandler(t.childNodes[n],"dragstart",wfu_component_dragstart),wfu_addEventHandler(t.childNodes[n],"dragend",wfu_component_dragend));t=document.getElementById("wfu_componentlist_dragdrop"),wfu_addEventHandler(t,"dragenter",wfu_componentlist_dragenter),wfu_addEventHandler(t,"dragover",wfu_default_dragover),wfu_addEventHandler(t,"dragleave",wfu_componentlist_dragleave),wfu_addEventHandler(t,"drop",wfu_componentlist_drop),wfu_attach_separator_dragdrop_events()}}}function wfu_componentlist_dragenter(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;var t=document.getElementById("wfu_componentlist_dragdrop");return-1==t.className.indexOf("wfu_componentlist_dragdrop_dragover")&&(t.className+=" wfu_componentlist_dragdrop_dragover"),!1}function wfu_componentlist_dragleave(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;var t=document.getElementById("wfu_componentlist_dragdrop");return t.className=t.className.replace(" wfu_componentlist_dragdrop_dragover",""),!1}function wfu_componentlist_drop(e){e=e||window.event,e.preventDefault&&e.preventDefault();var t=e.dataTransfer.getData("Component");if(!t)return!1;var a=t.split("_"),l=a[0],n=parseInt(a[1]),d=document.getElementById("wfu_component_box_"+l+"_"+n);0==n?(d.className="wfu_component_box wfu_inbase",d.style.display="block",document.getElementById("wfu_component_box_container_"+l).appendChild(d)):d.parentNode.removeChild(d);var u=wfu_admin_recreate_placements_text(null,"");return wfu_admin_recreate_placements_panel(u),document.getElementById("wfu_attribute_value_placements").value=u,wfu_update_multiplacement_attributes(),wfu_generate_shortcode(),!1}function wfu_separator_dragenter(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;if("wfu_component_separator_hor"==e.target.className){var t=document.getElementById("wfu_component_bar_hor");t.style.top=e.target.offsetTop+"px",t.style.display="block"}else if("wfu_component_separator_ver"==e.target.className){var t=document.getElementById("wfu_component_bar_ver");t.style.top=e.target.offsetTop+"px",t.style.left=e.target.offsetLeft+"px",t.style.display="block"}return!1}function wfu_default_dragover(e){return e=e||window.event,e.preventDefault&&e.preventDefault(),!1}function wfu_separator_dragleave(e){if(e=e||window.event,e.preventDefault&&e.preventDefault(),!DraggedItem)return!1;if("wfu_component_separator_hor"==e.target.className){var t=document.getElementById("wfu_component_bar_hor");t.style.display="none"}else if("wfu_component_separator_ver"==e.target.className){var t=document.getElementById("wfu_component_bar_ver");t.style.display="none"}return!1}function wfu_separator_drop(e){e=e||window.event,e.preventDefault&&e.preventDefault();var t=e.dataTransfer.getData("Component");if(!t)return!1;var a=t.split("_"),l=a[0],n=parseInt(a[1]),d=document.getElementById("wfu_component_box_"+l+"_"+n);d.style.display="none",d.className="wfu_component_box wfu_inbase",document.getElementById("wfu_component_box_container_"+l).appendChild(d);var u=wfu_admin_recreate_placements_text(e.target,l);return wfu_admin_recreate_placements_panel(u),document.getElementById("wfu_attribute_value_placements").value=u,wfu_update_multiplacement_attributes(),wfu_generate_shortcode(),!1}function wfu_component_dragstart(e){e=e||window.event,e.dataTransfer.setData("Component",e.target.id.replace("wfu_component_box_","")),-1==e.target.className.indexOf("wfu_component_box_dragged")&&(e.target.className+=" wfu_component_box_dragged",DraggedItem=e.target),e.target.style.zIndex=3;var t=document.getElementById("wfu_componentlist_dragdrop");return t.className="wfu_componentlist_dragdrop wfu_componentlist_dragdrop_dragover",t.style.display="block",!1}function wfu_component_dragend(e){e=e||window.event,DraggedItem=null,e.target.style.zIndex=1;var t=document.getElementById("wfu_componentlist_dragdrop");return t.style.display="none",t.className="wfu_componentlist_dragdrop",e.target.className=e.target.className.replace(" wfu_component_box_dragged",""),document.getElementById("wfu_component_bar_ver").style.display="none",document.getElementById("wfu_component_bar_hor").style.display="none",!1}function wfu_admin_recreate_placements_text(e,t){function a(e){""!=d&&(d+=n),d+=e,n=""}for(var l=document.getElementById("wfu_placements_container"),n="",d="",u=0;u<l.childNodes.length;u++)item=l.childNodes[u],"wfu_component_separator_ver"==item.className?(""==n&&(n="+"),item==e&&(a(t),n="+")):"wfu_component_separator_hor"==item.className?(n="/",item==e&&(a(t),n="/")):"wfu_component_box"==item.className&&a(item.id.replace("wfu_component_box_","").replace(/_.*$/,""));return d}function wfu_admin_recreate_placements_panel(e){for(var t,a,l,n,d,u,o,r=document.getElementById("wfu_placements_container"),_="",s=0;s<r.childNodes.length;s++)t=r.childNodes[s],"wfu_component_box"==t.className&&(n=t.id.replace("wfu_component_box_",""),d=n.split("_"),_=d[0],u=parseInt(d[1]),0==u?(t.style.display="inline-block",t.className="wfu_component_box wfu_inbase",document.getElementById("wfu_component_box_container_"+_).appendChild(t)):t.parentNode.removeChild(t));for(var c=document.querySelectorAll("div.wfu_component_box_container"),i={},s=0;s<c.length;s++)_=c[s].id.replace("wfu_component_box_container_",""),i[_]=0,o=document.querySelector("div#"+c[s].id+" div.wfu_component_box_index"),o&&(o.innerHTML="1");r.innerHTML="",a=e.split("/");for(var s=0;s<a.length;s++){t=document.createElement("DIV"),t.className="wfu_component_separator_hor",t.setAttribute("draggable",!0),r.appendChild(t),t=document.createElement("DIV"),t.className="wfu_component_separator_ver",t.setAttribute("draggable",!0),r.appendChild(t),l=a[s].split("+");for(var f=0;f<l.length;f++)t=document.querySelector("div#wfu_component_box_container_"+l[f]+" div.wfu_component_box.wfu_inbase"),t&&(n=t.id.replace("wfu_component_box_",""),d=n.split("_"),_=d[0],u=parseInt(d[1]),0==u?r.appendChild(t):(i[_]++,t.id="wfu_component_box_"+_+"_"+(i[_]+1).toString(),t.style.display="block",o=document.querySelector("div#"+t.id+" div.wfu_component_box_index"),o.innerHTML=(i[_]+1).toString(),t=t.cloneNode(!0),r.appendChild(t),t.id="wfu_component_box_"+_+"_"+i[_].toString(),o=document.querySelector("div#"+t.id+" div.wfu_component_box_index"),o.innerHTML=i[_].toString(),wfu_addEventHandler(t,"dragstart",wfu_component_dragstart),wfu_addEventHandler(t,"dragend",wfu_component_dragend)),t.className="wfu_component_box",t.style.display="inline-block",t=document.createElement("DIV"),t.className="wfu_component_separator_ver",t.setAttribute("draggable",!0),r.appendChild(t))}t=document.createElement("DIV"),t.className="wfu_component_separator_hor",t.setAttribute("draggable",!0),r.appendChild(t),t=document.createElement("DIV"),t.id="wfu_component_bar_hor",t.className="wfu_component_bar_hor",r.appendChild(t),t=document.createElement("DIV"),t.id="wfu_component_bar_ver",t.className="wfu_component_bar_ver",r.appendChild(t),wfu_attach_separator_dragdrop_events()}function wfu_update_multiplacement_attributes(){for(var e=document.querySelectorAll("div.wfu_component_box_container"),t=0;t<e.length;t++){itemname=e[t].id.replace("wfu_component_box_container_","");var a=document.querySelector("div#"+e[t].id+" div.wfu_component_box_index");if(a)for(var l=Math.max(1,parseInt(a.innerHTML)-1),n=document.getElementsByName("wfu_attribute_governor_"+itemname),d=0;d<n.length;d++)wfu_update_multiplacement_attribute(n[d].value,l)}}function wfu_update_multiplacement_attribute(e,t){if("userdatalabel"==e){var a=document.querySelectorAll("div.wfu_formdata_container"),l=a.length;if(1>l)return;for(var n,d,u=a[0],o=2;o<=Math.max(l,t);){if(o>l){var r=e+o.toString();for(n=u.parentNode;null!=n&&"TR"!=n.tagName;)n=n.parentNode;if(null==n||"TR"!=n.tagName)return;d=n.cloneNode(!0),d.id="tr_"+wfu_randomString(4),n.parentNode.appendChild(d);var _=document.querySelector("tr#"+d.id+' label[for="wfu_attribute_'+e+'"]');_.setAttribute("for","wfu_attribute_"+r),_.innerHTML+=" ("+o.toString()+")",_=document.querySelector("tr#"+d.id+" input.wfu_attribute_governor"),_.setAttribute("name","wfu_attribute_governor_independent"),_.value=r,_=document.querySelector("tr#"+d.id+" div.wfu_formdata_container"),_.id+=o.toString();var s=document.getElementById("wfu_attribute_default_"+r);s||(s=document.createElement("INPUT"),s.id="wfu_attribute_default_"+r,s.type="hidden",s.value=document.getElementById("wfu_attribute_default_"+e).value,document.getElementById("wfu_attribute_defaults").appendChild(s));var c=document.getElementById("wfu_attribute_value_"+r);c||(c=document.createElement("INPUT"),c.id="wfu_attribute_value_"+r,c.type="hidden",c.value=s.value,document.getElementById("wfu_attribute_values").appendChild(c)),window["wfu_attribute_"+r+"_formtemplate"]=window["wfu_attribute_"+e+"_formtemplate"],window["wfu_attribute_"+r+"_typeprops"]=window["wfu_attribute_"+e+"_typeprops"],wfu_apply_value(r,"formfields",c.value)}else if(o>t){for(d=a[o-1].parentNode;null!=d&&"TR"!=d.tagName;)d=d.parentNode;if(null==d||"TR"!=d.tagName)return;d.parentNode.removeChild(d),wfu_update_formfield_variables()}o++}}}function wfu_subfolders_input_changed(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_subfolders_path_","");a=a.replace("wfu_subfolders_label_","");var l=document.getElementById("wfu_attribute_"+a);if(!(l.selectedIndex<0)){var n,d,u=document.getElementById("wfu_subfolders_path_"+a),o=document.getElementById("wfu_subfolders_label_"+a),r=document.getElementById("wfu_subfolders_ok_"+a),_="1"==document.getElementById("wfu_subfolders_isnewitem_"+a).value;if(_)n="",d="";else{var s=l.data;t=s[l.selectedIndex],n=t.path,d=t.label}if(u.value==n&&o.value==d)r.disabled=!0,_||wfu_subfolders_update_nav(a);else{r.disabled=!1;for(var c=document.getElementsByName("wfu_subfolder_nav_"+a),i=0;i<c.length;i++)c[i].disabled=!0}}}function wfu_subfolders_auto_changed(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_subfolders_auto_"+e),l=document.getElementById("wfu_subfolders_editable_"+e),n=document.getElementById("wfu_subfolders_manualtext_"+e);if(a.checked){var d=document.getElementById("wfu_attribute_value_"+e).value;"auto"!=d.substr(0,4)&&(n.value=d),l.parentNode.style.display="inline",wfu_apply_value(e,"folderlist","auto"+(l.checked?"+":"")),t.disabled=!0}else t.disabled=!1,l.parentNode.style.display="none",wfu_apply_value(e,"folderlist",n.value)}function wfu_subfolders_up_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;item=a[t.selectedIndex];var l=item.index-1;if(!(0>l)){for(var n=-1,d=t.selectedIndex-1;d>=0;){if(a[d].level==item.level&&a[d].index==l){n=d;break}d--}if(-1!=n){var u=0;for(d=t.selectedIndex+1;d<a.length&&a[d].level>item.level;)u++,d++;a[n].index=item.index,item.index=l,t.data=a.slice(0,n).concat(a.slice(t.selectedIndex,t.selectedIndex+1+u)).concat(a.slice(n,t.selectedIndex)).concat(a.slice(t.selectedIndex+1+u));var o=wfu_update_subfolder_list(e);t.selectedIndex=n,wfu_subfolders_update_toolnav(e),item=t,o!==item.oldVal&&(item.oldVal=o,document.getElementById("wfu_attribute_value_"+e).value=o,wfu_generate_shortcode())}}}}function wfu_subfolders_down_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;item=a[t.selectedIndex];var l=item.index+1,n=-1;for(curind=t.selectedIndex+1;curind<a.length;){if(a[curind].level==item.level){n=curind;break}if(a[curind].level<item.level)break;curind++}if(-1!=n){var d=0;for(curind=n+1;curind<a.length&&a[curind].level>item.level;)d++,curind++;a[n].index=item.index,item.index=l,t.data=a.slice(0,t.selectedIndex).concat(a.slice(n,n+1+d)).concat(a.slice(t.selectedIndex,n)).concat(a.slice(n+1+d));var u=wfu_update_subfolder_list(e);t.selectedIndex=t.selectedIndex+d+1,wfu_subfolders_update_toolnav(e),item=t,u!==item.oldVal&&(item.oldVal=u,document.getElementById("wfu_attribute_value_"+e).value=u,wfu_generate_shortcode())}}}function wfu_subfolders_left_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;for(item=a[t.selectedIndex],curind=t.selectedIndex+1;curind<a.length&&a[curind].level>item.level;)a[curind].level--,curind++;item.level--;var l=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,l!==item.oldVal&&(item.oldVal=l,document.getElementById("wfu_attribute_value_"+e).value=l,wfu_generate_shortcode())}}function wfu_subfolders_right_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;for(item=a[t.selectedIndex],curind=t.selectedIndex+1;curind<a.length&&a[curind].level>item.level;)a[curind].level++,curind++;item.level++;var l=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,l!==item.oldVal&&(item.oldVal=l,document.getElementById("wfu_attribute_value_"+e).value=l,wfu_generate_shortcode())}}function wfu_subfolders_def_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;if(item=a[t.selectedIndex],item["default"])item["default"]=!1;else{for(var l=0;l<a.length;l++)a[l]["default"]=!1;item["default"]=!0}var n=wfu_update_subfolder_list(e);wfu_subfolders_update_toolnav(e),item=t,n!==item.oldVal&&(item.oldVal=n,document.getElementById("wfu_attribute_value_"+e).value=n,wfu_generate_shortcode())}}function wfu_subfolders_ok_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=document.getElementById("wfu_subfolders_path_"+e),l=document.getElementById("wfu_subfolders_label_"+e);if(""==a.value||""==l.value)return void alert("Path or label cannot be empty!");var n=t.data,d="1"==document.getElementById("wfu_subfolders_isnewitem_"+e).value;if(d){var u=parseInt(document.getElementById("wfu_subfolders_newitemlevel_"+e).value),o={label:l.value,path:a.value,level:u,"default":!1},r=parseInt(document.getElementById("wfu_subfolders_newitemindex_"+e).value);r>=n.length?n.push(o):n.splice(r,0,o)}else item=n[t.selectedIndex],item.path=a.value,item.label=l.value;var _=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,_!==item.oldVal&&(item.oldVal=_,document.getElementById("wfu_attribute_value_"+e).value=_,wfu_generate_shortcode())}}function wfu_subfolders_del_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data;item=a[t.selectedIndex];var l=0;for(curind=t.selectedIndex+1;curind<a.length&&a[curind].level>item.level;)l++,curind++;if(!(l>0)||confirm("Children items will be deleted as well. Proceed?")){a.splice(t.selectedIndex,1+l);var n=wfu_update_subfolder_list(e);t.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),item=t,n!==item.oldVal&&(item.oldVal=n,document.getElementById("wfu_attribute_value_"+e).value=n,wfu_generate_shortcode())}}}function wfu_subfolders_add_clicked(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a=t.data,l=t.selectedIndex;item=a[l];var n=t.options,d=document.createElement("option");d.value="",d.innerHTML="",n.add(d,l),t.selectedIndex=l;var u=document.getElementById("wfu_subfolder_tools_"+e),o=document.getElementById("wfu_subfolders_path_"+e),r=document.getElementById("wfu_subfolders_label_"+e),_=document.getElementById("wfu_subfolders_ok_"+e),s=document.getElementById("wfu_subfolders_browse_"+e);u.className="wfu_subfolder_tools_container",r.disabled=!1,_.disabled=!0,document.getElementById("wfu_subfolders_isnewitem_"+e).value="1",document.getElementById("wfu_subfolders_newitemindex_"+e).value=l,document.getElementById("wfu_subfolders_newitemlevel_"+e).value=item.level,document.getElementById("wfu_subfolders_newitemlevel2_"+e).value="",o.disabled=0==item.level,s.disabled=0==item.level,0==item.level?(o.value="{root}",r.value="{upload folder}"):(o.value="",r.value="");for(var c=document.getElementsByName("wfu_subfolder_nav_"+e),i=0;i<c.length;i++)c[i].disabled=!0}}function wfu_subfolders_browse_clicked(e){var t=wfu_GetHttpRequestObject();if(null!=t){var a=null;try{var a=new FormData}catch(l){}if(null!=a){for(var n=document.getElementById("wfu_global_dialog_container"),d=document.getElementById("wfu_subfolders_browser_"+e),u=document.getElementById("wfu_subfolders_browse_"+e),o=document.getElementById("wfu_subfolders_inner_shadow_"+e),r=document.getElementById("wfu_subfolders_browser_msgcont_"+e),_=document.getElementById("wfu_subfolders_browser_msg_"+e),s=document.getElementById("wfu_subfolders_browser_img_"+e),c=document.getElementById("wfu_subfolders_browser_ok_"+e),i=document.getElementById("wfu_subfolders_browser_list_"+e);i.options.length>0;)i.options.remove(0);c.disabled=!0,c.onclick=function(){wfu_folder_browser_cancel_clicked(e)},_.innerHTML="loading folder contents...",s.style.display="inline",r.style.display="block",n.style.display="block",d.style.display="block",d.style.left=u.offsetLeft+u.offsetWidth-d.offsetWidth+"px",d.style.top=u.offsetTop+u.offsetHeight-d.offsetHeight+"px",o.style.display="block",n.onclick=function(){wfu_folder_browser_cancel_clicked(e)};var f=document.getElementById("wfu_attribute_uploadpath").value;"/"==f.substr(f.length-1)&&(f=f.substr(0,f.length-1));var m=wfu_get_relative_path(e).split(","),p=f+m[0];"/"!=p.substr(0)&&(p="/"+p);var w="";2==m.length&&(w=m[1]),a.append("action","wfu_ajax_action_read_subfolders"),a.append("folder1",wfu_plugin_encode_string(p)),a.append("folder2",wfu_plugin_encode_string(w)),t.key=e,t.addEventListener("load",wfu_readfolderComplete,!1),t.addEventListener("error",wfu_readfolderFailed,!1),t.addEventListener("abort",wfu_readfolderCanceled,!1),t.open("POST",AdminParams.wfu_ajax_url),t.send(a)}}}function wfu_readfolderComplete(e){var t=e.target.key,a=document.getElementById("wfu_subfolders_browser_msgcont_"+t),l=document.getElementById("wfu_subfolders_browser_msg_"+t),n=document.getElementById("wfu_subfolders_browser_img_"+t),d=document.getElementById("wfu_subfolders_browser_list_"+t),u=document.getElementById("wfu_subfolders_browser_ok_"+t),o=document.getElementById("wfu_subfolders_path_"+t),r=document.getElementById("wfu_subfolders_label_"+t),_=e.target.responseText;if(-1!=_){var s="wfu_read_subfolders:",c=e.target.responseText.indexOf(s);-1==c&&(c=e.target.responseText.length);var i=(e.target.responseText.substr(0,c),e.target.responseText.substr(c+s.length,e.target.responseText.length-c-s.length));c=i.indexOf(":");var f=i.substr(0,c);if(txt_value=i.substr(c+1,i.length-c-1),"success"==f){for(var m,p=wfu_plugin_decode_string(txt_value),w=p.split(","),g=0,v=0;v<w.length;v++)""!=w[v]&&(m=document.createElement("option"),m.value=w[v],m.innerHTML=w[v].replace("*"," "),d.add(m),g++);0==g&&(m=document.createElement("option"),m.value="",m.innerHTML="{empty}",m.disabled=!0,d.add(m)),d.selectedIndex=-1,u.onclick=function(){var e=d.options[d.selectedIndex].value,a=parseInt(document.getElementById("wfu_subfolders_newitemlevel_"+t).value);("*"==e.substr(0,1)||0==a)&&(document.getElementById("wfu_subfolders_newitemlevel_"+t).value=a+1,a>0&&(e=e.substr(1))),o.value=e,r.value=e,wfu_folder_browser_cancel_clicked(t),wfu_subfolders_ok_clicked(t)},a.style.display="none"}else"error"==f?(l.innerHTML=txt_value,n.style.display="none",u.disabled=!1):(l.innerHTML="Unknown error",n.style.display="none",u.disabled=!1)}}function wfu_readfolderFailed(e){var t=e.target.key,a=document.getElementById("wfu_subfolders_browser_msg_"+t),l=document.getElementById("wfu_subfolders_browser_img_"+t),n=document.getElementById("wfu_subfolders_browser_ok_"+t);a.innerHTML="Unknown error",l.style.display="none",n.disabled=!1}function wfu_readfolderCanceled(e){var t=e.target.key,a=document.getElementById("wfu_subfolders_browser_msg_"+t),l=document.getElementById("wfu_subfolders_browser_img_"+t),n=document.getElementById("wfu_subfolders_browser_ok_"+t);a.innerHTML="Unknown error",l.style.display="none",n.disabled=!1}function wfu_subfolders_browser_list_changed(e){var t=document.getElementById("wfu_subfolders_browser_list_"+e),a=document.getElementById("wfu_subfolders_browser_ok_"+e);a.disabled=t.selectedIndex<0}function wfu_folder_browser_cancel_clicked(e){var t=document.getElementById("wfu_global_dialog_container"),a=document.getElementById("wfu_subfolders_browser_"+e),l=(document.getElementById("wfu_subfolders_browse_"+e),document.getElementById("wfu_subfolders_inner_shadow_"+e));t.onclick=null,l.style.display="none",a.style.display="none",t.style.display="none"}function wfu_get_relative_path(e){var t=document.getElementById("wfu_attribute_"+e);if(!(t.selectedIndex<0)){var a,l=t.data,n="1"==document.getElementById("wfu_subfolders_isnewitem_"+e).value;a=n?parseInt(document.getElementById("wfu_subfolders_newitemlevel_"+e).value):l[t.selectedIndex].level;for(var d="/",u=t.selectedIndex-1,o=a;u>=0&&o>1;)l[u].level<o&&(d="/"+l[u].path+d,o=l[u].level),u--;return n&&"1"==document.getElementById("wfu_subfolders_newitemlevel2_"+e).value&&a>0&&t.selectedIndex>0&&(d+=","+l[t.selectedIndex-1].path),d}}function wfu_subfolders_changed(e){wfu_update_subfolder_list(e),wfu_subfolders_update_toolnav(e)}function wfu_subfolders_update_toolnav(e){var t,a,l=document.getElementById("wfu_attribute_"+e),n=document.getElementById("wfu_subfolder_tools_"+e),d=document.getElementById("wfu_subfolders_path_"+e),u=document.getElementById("wfu_subfolders_label_"+e),o=document.getElementById("wfu_subfolders_ok_"+e),r=document.getElementById("wfu_subfolders_browse_"+e),_=document.getElementById("wfu_subfolders_auto_"+e);if(document.getElementById("wfu_subfolders_isnewitem_"+e).value="",document.getElementById("wfu_subfolders_newitemindex_"+e).value="",document.getElementById("wfu_subfolders_newitemlevel_"+e).value="",document.getElementById("wfu_subfolders_newitemlevel2_"+e).value="",null==l.data?(t=wfu_decode_subfolder_list(e),l.data=t):t=l.data,0===l.data.length?(l.className="wfu_select_folders wfu_select_folders_empty",l.options[0].innerHTML=_.checked?"":"press here"):l.className="wfu_select_folders",l.selectedIndex<0)n.className="wfu_subfolder_tools_container wfu_subfolder_tools_disabled",d.disabled=!0,u.disabled=!0,o.disabled=!0,r.disabled=!0,u.value="",d.value="";else if(l.selectedIndex>=l.options.length-1){n.className="wfu_subfolder_tools_container",u.disabled=!1,o.disabled=!0,document.getElementById("wfu_subfolders_isnewitem_"+e).value="1",document.getElementById("wfu_subfolders_newitemindex_"+e).value=t.length;var s;s=0==t.length?0:0==t[t.length-1].level?1:t[t.length-1].level,document.getElementById("wfu_subfolders_newitemlevel_"+e).value=s,document.getElementById("wfu_subfolders_newitemlevel2_"+e).value="1",d.disabled=0==s,r.disabled=!1,0==s?(d.value="{root}",u.value="{upload folder}"):(d.value="",u.value="")}else n.className="wfu_subfolder_tools_container",u.disabled=!1,o.disabled=!0,a=t[l.selectedIndex],d.disabled=0==a.level,r.disabled=0==a.level,u.value=a.label,d.value=a.path;var c=document.getElementsByName("wfu_subfolder_nav_"+e);if(l.selectedIndex<0||l.selectedIndex>=l.options.length-1)for(var i=0;i<c.length;i++)c[i].disabled=!0;else wfu_subfolders_update_nav(e)}function wfu_subfolders_update_nav(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_subfolders_up_"+e),l=document.getElementById("wfu_subfolders_down_"+e),n=document.getElementById("wfu_subfolders_left_"+e),d=document.getElementById("wfu_subfolders_right_"+e),u=document.getElementById("wfu_subfolders_add_"+e),o=document.getElementById("wfu_subfolders_def_"+e),r=document.getElementById("wfu_subfolders_del_"+e),_=t.data,s=_[t.selectedIndex];for(a.disabled=s.index<=0,ind=t.selectedIndex+1,nextind=0;ind<_.length;){if(_[ind].level==s.level){nextind=_[ind].index;break}if(_[ind].level<s.level)break;ind++}l.disabled=0==s.level||0==nextind,n.disabled=0==t.selectedIndex&&s.level<1||t.selectedIndex>0&&s.level<=1,t.selectedIndex>=1?prevlevel=_[t.selectedIndex-1].level:prevlevel=0,d.disabled=s.level-prevlevel>0,u.disabled=0==s.level,o.disabled=!1,o.className="button"+(s["default"]?" wfu_subfolder_nav_pressed":""),r.disabled=!1}function wfu_decode_subfolder(e){var t={label:"",path:"",level:0,"default":!1};e=e.trim();for(var a=0,l=!1;a<e.length&&"*"==e.substr(a,1);)a++;e=e.substr(a,e.length-a),"&"==e.substr(0,1)&&(e=e.substr(1),l=!0),t.level=a,t["default"]=l;var n=e.split("/");return 1==n.length?(t.path=n[0],t.label=n[0]):n.length>1&&(t.path=n[0],t.label=n[1]),0==a&&(t.path="{root}",""==t.label&&(t.label="{upload folder}")),t}function wfu_decode_subfolder_list(e){for(var t,a=document.getElementById("wfu_attribute_"+e).options,l=Array(),n=["root"],d=[0],u=-1,o=0;o<a.length-1;o++){for(l.push(wfu_decode_subfolder(wfu_plugin_decode_string(a[o].value))),n.length>l[o].level?n[l[o].level]=l[o].path:n.push(l[o].path),t="",j=1;j<=l[o].level;j++)t+=n[j]+"/";l[o].fullpath=t,d.length<=l[o].level&&d.push(0),l[o].level>u?l[o].index=0:l[o].index=d[l[o].level]+1,d[l[o].level]=l[o].index,u=l[o].level}return l}function wfu_update_subfolder_list(e){var t=document.getElementById("wfu_attribute_"+e).options,a=document.getElementById("wfu_attribute_"+e),l=a.data;if(null!=l){var n,d,u="";t.length=l.length+1;for(var o=0;o<l.length;o++){for(n="",d="",j=0;j<l[o].level;j++)n+="*",d+=" ";l[o]["default"]?(n+="&",t[o].className="wfu_select_folders_option_default"):t[o].className="",n+=l[o].path+"/"+l[o].label,d+=l[o].label,t[o].value=wfu_plugin_encode_string(n),t[o].innerHTML=d,""!=u&&(u+=","),u+=n}return t[l.length].value="",t[l.length].innerHTML="",u}}function wfu_userdata_edit_field(e,t,a){for(var l,n=0;n<e.childNodes.length;n++)l=e.childNodes[n],"INPUT"==l.tagName?"text"==l.type?(l.value=t,wfu_attach_element_handlers(l,wfu_update_userfield_value)):"checkbox"==l.type&&(l.checked=a):"DIV"==l.tagName&&(l.className="wfu_userdata_action")}function wfu_formdata_edit_field(e,t,a){}function wfu_formdata_type_changed(e){var t=e.split("_"),a=t[0],l="wfu_formfield_"+e,n=(document.getElementById("wfu_attribute_"+a),document.getElementById(l+"_container")),d=window["wfu_attribute_"+a+"_typeprops"][document.getElementById(l+"_type").value],u={type:document.getElementById(l+"_type").value,label:document.getElementById(l+"_label").value,labelposition:document.getElementById(l+"_labelposition").value,required:"show"==d.required.substr(0,4)&&document.getElementById(l+"_required")?document.getElementById(l+"_required").checked:"true"==d.required.substr(5),donotautocomplete:"show"==d.donotautocomplete.substr(0,4)&&document.getElementById(l+"_donotautocomplete")?document.getElementById(l+"_donotautocomplete").checked:"true"==d.donotautocomplete.substr(5),validate:"show"==d.validate.substr(0,4)&&document.getElementById(l+"_validate")?document.getElementById(l+"_validate").checked:"true"==d.validate.substr(5),typehook:"show"==d.typehook.substr(0,4)&&document.getElementById(l+"_typehook")?document.getElementById(l+"_typehook").checked:"true"==d.typehook.substr(5),hintposition:"show"==d.hintposition.substr(0,4)&&document.getElementById(l+"_hintposition")?document.getElementById(l+"_hintposition").value:d.hintposition.substr(5),"default":"show"==d["default"].substr(0,4)&&document.getElementById(l+"_default")?document.getElementById(l+"_default").value:d["default"].substr(5),data:"show"==d.data.substr(0,4)&&document.getElementById(l+"_data")?document.getElementById(l+"_data").value:d.data.substr(5),group:"show"==d.group.substr(0,4)&&document.getElementById(l+"_group")?document.getElementById(l+"_group").value:d.group.substr(5),format:"show"==d.format.substr(0,4)&&document.getElementById(l+"_format")?document.getElementById(l+"_format").value:d.format.substr(5)},o=wfu_formdata_prepare_template(a,u,e);n.innerHTML=o;for(var r=document.querySelectorAll("div#"+l+'_container input[name="wfu_formfield_elements"]'),_=0;_<r.length;_++)wfu_attach_element_handlers(r[_],wfu_update_formfield_value);for(var s=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),_=0;_<s.length;_++)s[_].className="wfu_formdata_action wfu_formdata_action_remove"+(s.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:n})}function wfu_userdata_add_field(e){var t=e.parentNode,a=t.cloneNode(!0);wfu_userdata_edit_field(a,"",!1),t.parentNode.insertBefore(a,t.nextSibling)}function wfu_formdata_add_field(e){var t=e.split("_"),a=t[0],l=(t[1],document.getElementById("wfu_attribute_"+a)),n=document.getElementById("wfu_formfield_"+e+"_container"),d=document.createElement("DIV"),u=a+"_"+wfu_randomString(4);d.id="wfu_formfield_"+u+"_container",d.className="wfu_formdata_line_container",l.insertBefore(d,n.nextSibling);var o={type:"text",label:"",labelposition:"left",required:!1,donotautocomplete:!1,validate:!1,"default":"",data:"",group:"",format:"",hintposition:"right",typehook:!1},r=wfu_formdata_prepare_template(a,o,u);
|
2 |
+
d.innerHTML=r;for(var _=document.querySelectorAll("div#wfu_formfield_"+u+'_container input[name="wfu_formfield_elements"]'),s=0;s<_.length;s++)wfu_attach_element_handlers(_[s],wfu_update_formfield_value);for(var c=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),s=0;s<c.length;s++)c[s].className="wfu_formdata_action wfu_formdata_action_remove"+(c.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:d})}function wfu_formdata_prepare_template(e,t,a){var l=wfu_plugin_decode_string(window["wfu_attribute_"+e+"_formtemplate"]),n=window["wfu_attribute_"+e+"_typeprops"][t.type],d=window["wfu_attribute_"+e+"_typeprops"][0].split(","),u=["required","donotautocomplete","validate","typehook","labelposition","hintposition","default","data","group","format"],o=["none","top","right","bottom","left"],r=["none","inline","top","right","bottom","left"];l=l.replace(/\[\[key\]\]/g,a).replace(/\[\[t\]\]/g,t.type).replace(/\[\[label\]\]/g,t.label).replace(/\[\[s\]\]/g,t.labelposition).replace(/\[\[d\]\]/g,t["default"]).replace(/\[\[l\]\]/g,t.data).replace(/\[\[data_label\]\]/g,n.data_label).replace(/\[\[g\]\]/g,t.group).replace(/\[\[f\]\]/g,t.format).replace(/\[\[p\]\]/g,t.hintposition);for(var _=0;_<u.length;_++)l=l.replace(new RegExp("\\[\\["+u[_]+"_hint\\]\\]","g"),n[u[_]+"_hint"]);for(var _=0;_<d.length;_++)l=l.replace("[[type_"+d[_]+"_selected]]",d[_]==t.type?' selected="selected"':"");for(var _=0;_<o.length;_++)l=l.replace("[[labelposition_"+o[_]+"_selected]]",o[_]==t.labelposition?' selected="selected"':"");for(var _=0;_<r.length;_++)l=l.replace("[[hintposition_"+r[_]+"_selected]]",r[_]==t.hintposition?' selected="selected"':"");return l=l.replace("[[remove_disabled]]",""),l=t.required?l.replace(/\[\[r\-\>\]\]|\[\[\<\-r\]\]/g,""):l.replace(/\[\[r\-\>\]\].*\[\[\<\-r\]\]/g,""),l=t.donotautocomplete?l.replace(/\[\[a\-\>\]\]|\[\[\<\-a\]\]/g,""):l.replace(/\[\[a\-\>\]\].*\[\[\<\-a\]\]/g,""),l=t.validate?l.replace(/\[\[v\-\>\]\]|\[\[\<\-v\]\]/g,""):l.replace(/\[\[v\-\>\]\].*\[\[\<\-v\]\]/g,""),l=t.typehook?l.replace(/\[\[h\-\>\]\]|\[\[\<\-h\]\]/g,""):l.replace(/\[\[h\-\>\]\].*\[\[\<\-h\]\]/g,""),l="show"==n.required.substr(0,4)?l.replace(/\[\[R\-\>\]\]|\[\[\<\-R\]\]/g,""):l.replace(/\[\[R\-\>\]\][^]*\[\[\<\-R\]\]/g,""),l="show"==n.donotautocomplete.substr(0,4)?l.replace(/\[\[A\-\>\]\]|\[\[\<\-A\]\]/g,""):l.replace(/\[\[A\-\>\]\][^]*\[\[\<\-A\]\]/g,""),l="show"==n.validate.substr(0,4)?l.replace(/\[\[V\-\>\]\]|\[\[\<\-V\]\]/g,""):l.replace(/\[\[V\-\>\]\][^]*\[\[\<\-V\]\]/g,""),l="show"==n.hintposition.substr(0,4)?l.replace(/\[\[P\-\>\]\]|\[\[\<\-P\]\]/g,""):l.replace(/\[\[P\-\>\]\][^]*\[\[\<\-P\]\]/g,""),l="show"==n.typehook.substr(0,4)?l.replace(/\[\[H\-\>\]\]|\[\[\<\-H\]\]/g,""):l.replace(/\[\[H\-\>\]\][^]*\[\[\<\-H\]\]/g,""),l="show"==n["default"].substr(0,4)?l.replace(/\[\[D\-\>\]\]|\[\[\<\-D\]\]/g,""):l.replace(/\[\[D\-\>\]\][^]*\[\[\<\-D\]\]/g,""),l="show"==n.data.substr(0,4)?l.replace(/\[\[L\-\>\]\]|\[\[\<\-L\]\]/g,""):l.replace(/\[\[L\-\>\]\][^]*\[\[\<\-L\]\]/g,""),l="show"==n.group.substr(0,4)?l.replace(/\[\[G\-\>\]\]|\[\[\<\-G\]\]/g,""):l.replace(/\[\[G\-\>\]\][^]*\[\[\<\-G\]\]/g,""),l="show"==n.format.substr(0,4)?l.replace(/\[\[F\-\>\]\]|\[\[\<\-F\]\]/g,""):l.replace(/\[\[F\-\>\]\][^]*\[\[\<\-F\]\]/g,"")}function wfu_userdata_remove_field(e){for(var t=e.parentNode,a=t.parentNode,l=null,n=0;n<a.childNodes.length;n++)if(1===a.childNodes[n].nodeType){l=a.childNodes[n];break}if(t!=l){t.parentNode.removeChild(t);for(var n=0;n<l.childNodes.length;n++)if(1===l.childNodes[n].nodeType){wfu_update_userfield_value({target:l.childNodes[n]});break}}}function wfu_formdata_remove_field(e){var t=e.split("_"),a=t[0],l=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_line_container");if(!(l.length<2)){var n=document.getElementById("wfu_attribute_"+a),d=document.getElementById("wfu_formfield_"+e+"_container");n.removeChild(d),d=document.querySelector("div#wfu_attribute_"+a+" .wfu_formdata_line_container");for(var u=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),o=0;o<u.length;o++)u[o].className="wfu_formdata_action wfu_formdata_action_remove"+(u.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:d})}}function wfu_generate_shortcode(){for(var e,t=document.getElementById("wfu_shortcode_tag").value,a=document.getElementById("wfu_attribute_defaults"),l=(document.getElementById("wfu_attribute_values"),""),n="",d="["+t,u="",o=0;o<a.childNodes.length;o++)e=a.childNodes[o],1===e.nodeType&&(l=e.id.replace("wfu_attribute_default_",""),n=document.getElementById("wfu_attribute_value_"+l).value,e.value!=n&&(u+=" "+l+'="'+n+'"'));d+=u+"]",document.getElementById("wfu_shortcode").value=d,ShortcodeString=u.substr(1),document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode").disabled=wfu_plugin_encode_string(d)==document.getElementById("wfu_shortcode_original_enc").value),Autosave&&wfu_schedule_save_shortcode()}function wfu_update_text_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_",""),l=t.value;l=l.replace(/(\r\n|\n|\r)/gm,"%n%"),l=l.replace(/\"/gm,"%dq%"),l=l.replace(/\[/gm,"%brl%"),l=l.replace(/\]/gm,"%brr%"),l!==t.oldVal&&(t.oldVal=l,document.getElementById("wfu_attribute_value_"+a).value=l,wfu_generate_shortcode())}function wfu_update_date_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_",""),l=t.value;l!==t.oldVal&&(t.oldVal=l,document.getElementById("wfu_attribute_value_"+a).value=l,wfu_generate_shortcode())}function wfu_update_stringmatch_textvalue(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_","");a=a.replace("_matchfield","").replace("_matchvalue",""),wfu_update_stringmatch_value(a)}function wfu_update_triplecolor_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_","");a=a.replace("_color",""),a=a.replace("_bgcolor",""),a=a.replace("_borcolor",""),t=document.getElementById("wfu_attribute_"+a+"_color");var l=t.value+","+document.getElementById("wfu_attribute_"+a+"_bgcolor").value+","+document.getElementById("wfu_attribute_"+a+"_borcolor").value;l!==t.oldVal&&(t.oldVal=l,document.getElementById("wfu_attribute_value_"+a).value=l,wfu_generate_shortcode())}function wfu_update_dimension_value(e){e=e||window.event;var t=e.target,a=t.name.replace("wfu_dimension_elements_",""),l=document.getElementsByName(t.name);t=l[0];for(var n="",d="",u=0;u<l.length;u++)d=l[u].id.replace("wfu_attribute_"+a+"_",""),""!=n&&""!=l[u].value&&(n+=", "),""!=l[u].value&&(n+=d+":"+l[u].value);n!==t.oldVal&&(t.oldVal=n,document.getElementById("wfu_attribute_value_"+a).value=n,wfu_generate_shortcode())}function wfu_update_ptext_value(e){e=e||window.event;var t=e.target,a=t.id.replace("wfu_attribute_","");a=a.substr(2);var l=document.getElementById("wfu_attribute_s_"+a).value,n=document.getElementById("wfu_attribute_p_"+a).value,d=l+"/"+n;d!==t.oldVal&&(t.oldVal=d,document.getElementById("wfu_attribute_value_"+a).value=d),wfu_generate_shortcode()}function wfu_update_mchecklist_value(e){var t="",a=(document.getElementById("wfu_attribute_"+e),document.getElementById("wfu_attribute_"+e+"_all"));a.checked?(jQuery("#wfu_attribute_"+e+" input").prop("disabled",!0),jQuery("#wfu_attribute_"+e+" input").prop("checked",!0),t="all"):(jQuery("#wfu_attribute_"+e+" input").prop("disabled",!1),jQuery("#wfu_attribute_"+e+" input").each(function(){jQuery(this).prop("checked")&&(t+=","+jQuery(this).next().html())}),t=t.substr(1)),document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_rolelist_value(e){var t="",a=document.getElementById("wfu_attribute_"+e),l=document.getElementById("wfu_attribute_"+e+"_guests"),n=document.getElementById("wfu_attribute_"+e+"_all");if(n.checked)a.disabled=!0,t="all";else{a.disabled=!1;for(var d=a.options,u=0;u<d.length;u++)d[u].selected&&(""!=t&&(t+=","),t+=d[u].value)}l.checked&&(""!=t&&(t+=","),t+="guests"),document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_userlist_value(e){var t="",a=document.getElementById("wfu_attribute_"+e),l=document.getElementById("wfu_attribute_"+e+"_current"),n=document.getElementById("wfu_attribute_"+e+"_guests"),d=document.getElementById("wfu_attribute_"+e+"_all");if(l&&l.checked)a.disabled=!0,d.disabled=!0,n.disabled=!0,t="current";else{if(d.disabled=!1,n.disabled=!1,d.checked)a.disabled=!0,t="all";else{a.disabled=!1;for(var u=a.options,o=0;o<u.length;o++)u[o].selected&&(""!=t&&(t+=","),t+=u[o].value)}n.checked&&(""!=t&&(t+=","),t+="guests")}document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_postlist_value(e){for(var t="",a=Array(),l=Array(),n=document.getElementById("wfu_attribute_"+e+"_postlist").value.split(","),d=0;d<n.length;d++)a.push(document.getElementById("wfu_attribute_"+e+"_"+n[d])),l.push(document.getElementById("wfu_attribute_"+e+"_all_"+n[d]));var u=document.getElementById("wfu_attribute_"+e+"_current");if(u&&u.checked){for(var d=0;d<n.length;d++)a[d].disabled=!0,l[d].disabled=!0;t="current"}else{var o=!0;t="";for(var d=0;d<n.length;d++)if(l[d].disabled=!1,l[d].checked)a[d].disabled=!0,""!=t&&(t+=","),t+="all"+n[d];else{a[d].disabled=!1,o=!1;for(var r=a[d].options,_=0;_<r.length;_++)r[_].selected&&(""!=t&&(t+=","),t+=r[_].value)}o&&(t="all")}document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_bloglist_value(e){var t="",a=document.getElementById("wfu_attribute_"+e),l=document.getElementById("wfu_attribute_"+e+"_current"),n=document.getElementById("wfu_attribute_"+e+"_all");if(l&&l.checked)a.disabled=!0,n.disabled=!0,t="current";else if(n.disabled=!1,n.checked)a.disabled=!0,t="all";else{a.disabled=!1;for(var d=a.options,u=0;u<d.length;u++)d[u].selected&&(""!=t&&(t+=","),t+=d[u].value)}document.getElementById("wfu_attribute_value_"+e).value=t,wfu_generate_shortcode()}function wfu_update_stringmatch_value(e){var t=document.getElementById("wfu_attribute_"+e+"_matchfield").value,a=document.getElementById("wfu_attribute_"+e+"_matchcriterion").value,l=document.getElementById("wfu_attribute_"+e+"_matchvalue").value;t=t.replace(";",""),""==t.trim()?document.getElementById("wfu_attribute_value_"+e).value="":document.getElementById("wfu_attribute_value_"+e).value="field:"+t+";criterion:"+a+";value:"+l,wfu_generate_shortcode()}function wfu_update_userfield_value(e){e=e||window.event;for(var t=e.target,a=t.parentNode,l=a.parentNode,n="",d=!1,u="",o=0;o<l.childNodes.length;o++)if(a=l.childNodes[o],"DIV"===a.tagName){for(var r=0;r<a.childNodes.length;r++)"INPUT"==a.childNodes[r].tagName&&("text"==a.childNodes[r].type?(n=a.childNodes[r].value,0==o&&(t=a.childNodes[r])):"checkbox"==a.childNodes[r].type&&(d=a.childNodes[r].checked));""!=u&&""!=n&&(u+="/"),""!=n&&d&&(u+="*"),""!=n&&(u+=n)}u!==t.oldVal&&(t.oldVal=u,document.getElementById("wfu_attribute_value_userdatalabel").value=u,wfu_generate_shortcode(),wfu_update_formfield_variables())}function wfu_update_formfield_value(e){e=e||window.event;for(var t=e.target,a=t.id.match(/^wfu_formfield_(.*?)_/)[1],l=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_line_container"),n="",d=0;d<l.length;d++){var u="",o=l[d].id.match(/^wfu_formfield_.*?_(.*?)_/)[1],r=a+"_"+o,_=document.getElementById("wfu_formfield_"+r+"_label").value;if(""!=_.trim()){u=_.trim();var s=document.getElementById("wfu_formfield_"+r+"_type").value,c=window["wfu_attribute_"+a+"_typeprops"];u+="|t:"+s,u+="|s:"+document.getElementById("wfu_formfield_"+r+"_labelposition").value,"show"==c[s].required.substr(0,4)&&(u+="|r:"+(document.getElementById("wfu_formfield_"+r+"_required").checked?"1":"0")),"show"==c[s].donotautocomplete.substr(0,4)&&(u+="|a:"+(document.getElementById("wfu_formfield_"+r+"_donotautocomplete").checked?"1":"0")),"show"==c[s].validate.substr(0,4)&&(u+="|v:"+(document.getElementById("wfu_formfield_"+r+"_validate").checked?"1":"0")),"show"==c[s].typehook.substr(0,4)&&(u+="|h:"+(document.getElementById("wfu_formfield_"+r+"_typehook").checked?"1":"0")),"show"==c[s].hintposition.substr(0,4)&&(u+="|p:"+document.getElementById("wfu_formfield_"+r+"_hintposition").value),"show"==c[s]["default"].substr(0,4)&&(u+="|d:"+document.getElementById("wfu_formfield_"+r+"_default").value),"show"==c[s].data.substr(0,4)&&(u+="|l:"+document.getElementById("wfu_formfield_"+r+"_data").value),"show"==c[s].group.substr(0,4)&&(u+="|g:"+document.getElementById("wfu_formfield_"+r+"_group").value),"show"==c[s].format.substr(0,4)&&(u+="|f:"+document.getElementById("wfu_formfield_"+r+"_format").value)}""!=u&&(""!=n&&(n+="/"),n+=u)}n!==t.oldVal&&(t.oldVal=n,document.getElementById("wfu_attribute_value_"+a).value=n,wfu_generate_shortcode(),wfu_update_formfield_variables())}function wfu_update_formfield_variables(){var e=document.getElementById("wfu_attribute_value_userdatalabel");if(e){for(var t=document.getElementById("wfu_wrapper"),a=document.getElementsByClassName("wfu_shadow_userdata","div",t),l=document.getElementsByName("wfu_formfield_select"),n=0;n<l.length;n++)l[n].style.display="none";if(0!=a.length&&"block"!=a[0].style.display){for(var d='<option style="display:none;">%userdataXXX%</option>',u=e.value.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]"),o=2;document.getElementById("wfu_attribute_userdatalabel"+o);){var r=document.getElementById("wfu_attribute_value_userdatalabel"+o).value.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]");u=u.concat(r),o++}var _="",s=0;o=1;for(var n=0;n<u.length;n++)_=u[n],"*"==_[0]&&(_=_.substr(1)),s=_.indexOf("|"),s>-1&&(_=_.substr(0,s)),""!=_.trim()&&(d+='<option value="%userdata'+o+'%">'+o+": "+_.trim()+"</option>",o++);for(var n=0;n<l.length;n++)l[n].innerHTML=d,l[n].style.display="inline-block"}}}function wfu_attach_element_handlers(e,t){for(var a=["DOMAttrModified","textInput","input","change","keypress","paste","focus","propertychange"],l=0;l<a.length;l++)wfu_addEventHandler(e,a[l],t)}function wfu_Attach_Admin_Events(e){Autosave=e,wfu_generate_shortcode(),wfu_update_formfield_variables(),wfu_Attach_Admin_DragDrop_Events();for(var t=document.getElementsByName("wfu_text_elements"),a=0;a<t.length;a++)wfu_attach_element_handlers(t[a],wfu_update_text_value);for(var l=document.getElementsByName("wfu_ptext_elements"),a=0;a<l.length;a++)wfu_attach_element_handlers(l[a],wfu_update_ptext_value);for(var n=document.getElementsByName("wfu_stringmatch_elements"),a=0;a<n.length;a++)wfu_attach_element_handlers(n[a],wfu_update_stringmatch_textvalue);for(var d=document.getElementsByName("wfu_triplecolor_elements"),a=0;a<d.length;a++)wfu_attach_element_handlers(d[a],wfu_update_triplecolor_value);for(var u=document.getElementsByName("wfu_dimension_elements_widths"),a=0;a<u.length;a++)wfu_attach_element_handlers(u[a],wfu_update_dimension_value);u=document.getElementsByName("wfu_dimension_elements_heights");for(var a=0;a<u.length;a++)wfu_attach_element_handlers(u[a],wfu_update_dimension_value);for(var o=document.getElementsByName("wfu_userfield_elements"),a=0;a<o.length;a++)wfu_attach_element_handlers(o[a],wfu_update_userfield_value);for(var r=document.getElementsByName("wfu_formfield_elements"),a=0;a<r.length;a++)wfu_attach_element_handlers(r[a],wfu_update_formfield_value);for(var _=document.getElementsByName("wfu_subfolder_tools_input"),a=0;a<_.length;a++)wfu_attach_element_handlers(_[a],wfu_subfolders_input_changed);for(var s=document.getElementsByName("wfu_columnprops_elements"),a=0;a<s.length;a++)wfu_attach_element_handlers(s[a],wfu_columnprops_element_changed);""!=document.getElementById("wfu_shortcode_postid").value&&setTimeout(function(){wfu_check_page_obsolescence()},CheckObsolescenceTimeOut)}function wfu_insert_variable(e){var t=e.className.replace("wfu_variable wfu_variable_",""),a=document.getElementById("wfu_attribute_"+t),l=a.selectionStart,n=a.value;a.value=n.substr(0,l)+e.innerHTML+n.substr(l),wfu_update_text_value({target:a})}function wfu_insert_userfield_variable(e){var t=e.className.replace("wfu_variable wfu_variable_",""),a=document.getElementById("wfu_attribute_"+t),l=a.selectionStart,n=a.value;a.value=n.substr(0,l)+e.value+n.substr(l),e.value="%userdataXXX%",wfu_update_text_value({target:a})}function wfu_columns_itemclicked(e,t){var a=e.parentNode;if("SELECT"==a.tagName){for(var l=0;l<a.options.length;l++)a.options[l].selected=a.options[l]==e;wfu_update_column_props(t)}}function wfu_columns_buttonaction(e,t){var a=document.getElementById("wfu_attribute_"+e+"_sourcelist"),l=document.getElementById("wfu_attribute_"+e);if("add"==t){for(var n=0;n<a.options.length;n++)if(a.options[n].selected||"wfu_columns_item_required"==a.options[n].className){for(var d=!1,u=a.options[n].value.replace(/:.*/,""),o=0;o<l.options.length;o++){var r=l.options[o].value.replace(/:.*/,"");if(r==u){d=!0;break}}if(!d){var _=a.options[n].value.match(/(.*?):(.*?)\/(.*)/),s=_[1],c="custom"==s?"+-"+(""==_[2]?"s":_[2]):""!=_[2]?"-+"+_[2]:"",i=_[3];"custom"==s&&(s="custom1");var f=document.createElement("OPTION");f.value=s+":"+c+"/"+a.options[n].innerHTML+"/"+i,f.innerHTML=a.options[n].innerHTML+(""!=i&&i!=a.options[n].innerHTML?" ("+i+")":""),f.className=a.options[n].className,f.onclick=a.options[n].onclick,l.appendChild(f),l.selectedIndex=l.options.length-1}}}else if("del"==t)for(var n=0;n<l.options.length;)l.options[n].selected&&"wfu_columns_item_required"!=l.options[n].className?l.options.remove(n):n++;else if("up"==t||"down"==t){for(var m=-1,n=0;n<l.options.length;n++)l.options[n].selected&&-1==m?m=n:l.options[n].selected&&m>-1&&(l.options[n].selected=!1);"up"==t&&m>0?l.insertBefore(l.options[m],l.options[m-1]):"down"==t&&m<l.options.length-1&&l.insertBefore(l.options[m+1],l.options[m])}wfu_update_column_props(e),wfu_update_columns(e)}function wfu_update_column_props(e){var t=document.getElementById("wfu_attribute_"+e),a=document.getElementById("wfu_attribute_"+e+"_columnprops_container"),l=document.getElementById("wfu_attribute_"+e+"_columnprops_title"),n=(document.getElementById("wfu_attribute_"+e+"_columnprops_title_label"),document.getElementById("wfu_attribute_"+e+"_columnprops_id")),d=document.getElementById("wfu_attribute_"+e+"_columnprops_id_label"),u=document.getElementById("wfu_attribute_"+e+"_columnprops_sort"),o=document.getElementById("wfu_attribute_"+e+"_columnprops_sort_label"),r=document.getElementById("wfu_attribute_"+e+"_columnprops_sorttype"),_=document.getElementById("wfu_attribute_"+e+"_columnprops_sorttype_label"),s=t.selectedIndex;if(""==r.options[0].value&&r.options.remove(0),-1==s)a.className="wfu_columnprops_container wfu_columnprops_container_disabled",l.value="",l.disabled=!0,n.value="",n.disabled=!0,u.checked=!1,u.disabled=!0,r.selectedIndex=-1,r.disabled=!0;else{var c=t.options[s].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),i=c[1],f="custom"==i.substr(0,6),m=f?i.substr(6):"",p=""!=c[2],w=p&&"+"==c[2].substr(1,1),g=w&&"+"==c[2].substr(0,1),v=w?c[2].substr(2):"",b=c[4];a.className="wfu_columnprops_container",l.value=b,l.disabled=!1,d.className=f?"":"wfu_columnprops_label_disabled",n.value=m,n.disabled=!f,o.className=p?"":"wfu_columnprops_label_disabled",u.checked=w,u.disabled=!p,_.className=g?"":"wfu_columnprops_label_disabled",r.value=v,r.disabled=!g}}function wfu_columnprops_element_changed(e){e=e||window.event;var t=e.target,a=t.id.match(/^wfu_attribute_(.*?)_columnprops_/)[1],l=document.getElementById("wfu_attribute_"+a),n=document.getElementById("wfu_attribute_"+a+"_columnprops_title"),d=document.getElementById("wfu_attribute_"+a+"_columnprops_id"),u=document.getElementById("wfu_attribute_"+a+"_columnprops_sort"),o=document.getElementById("wfu_attribute_"+a+"_columnprops_sorttype"),r=l.selectedIndex;if(-1!=r){var _=l.options[r].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),s=_[1],c="custom"==s.substr(0,6)?"custom":s,i="custom"==c,f=i?parseInt(d.value)>=1?d.value:"1":"",m=""!=_[2]?_[2].substr(0,1)+(u.checked?"+":"-")+(""!=o.value?o.value:""!=_[2].substr(2)?_[2].substr(2):"s"):"",p=_[3],w=""!=n.value?n.value:p;l.options[r].value=c+f+":"+m+"/"+p+"/"+w,l.options[r].innerHTML=p+(w!=p?" ("+w+")":""),wfu_update_column_props(a),wfu_update_columns(a)}}function wfu_update_columns(e){for(var t=document.getElementById("wfu_attribute_"+e),a="",l=0;l<t.options.length;l++){var n=t.options[l].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),d=n[1]+":"+("+"==n[2].substr(1,1)?n[2].substr(2):"")+"/"+n[4];""!=a&&(a+=","),a+=d}document.getElementById("wfu_attribute_value_"+e).value=a,wfu_generate_shortcode()}function wfu_GetHttpRequestObject(){var e=null;try{e=new XMLHttpRequest}catch(t){try{e=new ActiveXObject("Msxml2.XMLHTTP")}catch(a){try{e=new ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}}if(null==e&&window.createRequest)try{xmlhttp=window.createRequest()}catch(t){}return e}function wfu_plugin_encode_string(e){var t,a=0,l="",n="";for(a=0;a<e.length;a++)t=e.charCodeAt(a),t>=2048?t=((16773120&t|917504)<<4)+((4032&t|8192)<<2)+(63&t|128):t>=128&&(t=((65472&t|12288)<<2)+(63&t|128)),n=t.toString(16),(1==n.length||3==n.length||5==n.length)&&(n="0"+n),l+=n;return l}function wfu_plugin_decode_string(e){for(var t,a,l=0,n="";l<e.length;)t=parseInt(e.substr(l,2),16),a=128>t?t:224>t?((31&t)<<6)+(63&parseInt(e.substr(l+=2,2),16)):((15&t)<<12)+((63&parseInt(e.substr(l+=2,2),16))<<6)+(63&parseInt(e.substr(l+=2,2),16)),n+=String.fromCharCode(a),l+=2;return n}function wfu_randomString(e){for(var t="0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz",a=e,l="",n=0;a>n;n++){var d=Math.floor(Math.random()*t.length);l+=t.substring(d,d+1)}return l}function wfu_schedule_save_shortcode(){var e=new Date,t=ShortcodeNextSave-e.getTime();null!=ShortcodeTimeOut&&(clearTimeout(ShortcodeTimeOut),ShortcodeTimeOut=null),0>=t?wfu_save_shortcode():ShortcodeTimeOut=setTimeout(function(){wfu_save_shortcode()},t)}function wfu_check_page_obsolescence(){PageObsolete||PageUpdating||""==document.getElementById("wfu_shortcode_postid").value}function wfu_save_shortcode(){if(!PageObsolete){var e=wfu_GetHttpRequestObject();if(null!=e){PageUpdating=!0,document.getElementById("wfu_update_failed_message").style.display="none";var t=AdminParams.wfu_ajax_url;params=new Array(8),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_save_shortcode",params[1]=new Array(2),params[1][0]="shortcode",params[1][1]=wfu_plugin_encode_string(ShortcodeString),params[2]=new Array(2),params[2][0]="shortcode_original",params[2][1]=document.getElementById("wfu_shortcode_original_enc").value,params[3]=new Array(2),params[3][0]="post_id",params[3][1]=document.getElementById("wfu_shortcode_postid").value,params[4]=new Array(2),params[4][0]="post_hash",params[4][1]=document.getElementById("wfu_shortcode_posthash").value,params[5]=new Array(2),params[5][0]="shortcode_position",params[5][1]=document.getElementById("wfu_shortcode_position").value,params[6]=new Array(2),params[6][0]="shortcode_tag",params[6][1]=document.getElementById("wfu_shortcode_tag").value,params[7]=new Array(2),params[7][0]="widget_id",params[7][1]=document.getElementById("wfu_shortcode_widgetid").value;for(var a="",l=0;l<params.length;l++)a+=(l>0?"&":"")+params[l][0]+"="+encodeURI(params[l][1]);var n=new Date;Autosave?ShortcodeNextSave=n.getTime()+5e3:document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode_wait").style.display="inline"),e.open("POST",t,!0),e.setRequestHeader("Content-type","application/x-www-form-urlencoded"),e.onreadystatechange=function(){if(4==e.readyState&&200==e.status){PageUpdating=!1;var t="wfu_save_shortcode:",a=e.responseText.indexOf(t);-1==a&&(a=e.responseText.length);var l=(e.responseText.substr(0,a),e.responseText.substr(a+t.length,e.responseText.length-a-t.length));a=l.indexOf(":");var d=l.substr(0,a);if(txt_value=l.substr(a+1,l.length-a-1),"success"==d){if(Autosave?(document.getElementById("wfu_save_label").innerHTML="saved",document.getElementById("wfu_save_label").className="wfu_save_label",document.getElementById("wfu_save_label").style.opacity=1,wfu_fadeout_element(300),ShortcodeNextSave=n.getTime()+1e3,null!=ShortcodeTimeOut&&wfu_schedule_save_shortcode()):document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode_wait").style.display="none",document.getElementById("wfu_update_shortcode").disabled=!0,window.plugin_window&&window.plugin_window.location.reload(!0)),""!=document.getElementById("wfu_shortcode_postid").value){var u=document.getElementById("wfu_shortcode_tag").value;document.getElementById("wfu_shortcode_original_enc").value=wfu_plugin_encode_string("["+u+" "+ShortcodeString+"]"),document.getElementById("wfu_shortcode_posthash").value=txt_value,setTimeout(function(){wfu_check_page_obsolescence()},CheckObsolescenceTimeOut)}}else Autosave&&(document.getElementById("wfu_save_label").innerHTML="not saved",document.getElementById("wfu_save_label").className="wfu_save_label_fail",document.getElementById("wfu_save_label").style.opacity=1,wfu_fadeout_element(300)),"fail"==d&&("post_modified"==txt_value?(PageObsolete=!0,document.getElementById("wfu_update_shortcode")&&(document.getElementById("wfu_update_shortcode").disabled=!0),document.getElementById("wfu_update_rejected_message").style.display="block"):document.getElementById("wfu_update_failed_message").style.display="block")}},e.send(a)}}}function wfu_adjust_opacity(e){document.getElementById("wfu_save_label").style.opacity=e}function wfu_fadeout_element(e){for(var t=20,a=0,l=0;t>l;l++)a=1-l/t,setTimeout('wfu_adjust_opacity("'+a.toString()+'")',l*e/t);setTimeout('wfu_adjust_opacity("0.0")',l*e/t)}function wfu_apply_value(e,t,a){if("onoff"==t)document.getElementById("wfu_attribute_"+e).className="wfu_onoff_container_"+("true"!=a?"on":"off"),wfu_admin_onoff_clicked(e);else if("text"==t||"ltext"==t||"integer"==t||"float"==t||"mtext"==t||"color"==t){var l=document.getElementById("wfu_attribute_"+e);if(a=a.replace(/\%n\%/gm,"\n"),a=a.replace(/\%dq\%/gm,'"'),a=a.replace(/\%brl\%/gm,"["),a=a.replace(/\%brr\%/gm,"]"),"color"==t){var n=colourNameToHex(a);n||(n=a),jQuery("#wfu_attribute_"+e).wpColorPicker("color",n)}l.value=a,wfu_update_text_value({target:l})}else if("date"==t){var l=document.getElementById("wfu_attribute_"+e);l.value=a,wfu_update_date_value({target:l})}else if("placements"==t)wfu_admin_recreate_placements_panel(a),document.getElementById("wfu_attribute_value_placements").value=a,wfu_generate_shortcode();else if("radio"==t){for(var d=document.getElementsByName("wfu_radioattribute_"+e),u=0;u<d.length;u++)d[u].checked=d[u].value==a||"*"+d[u].value==a;wfu_admin_radio_clicked(e)}else if("ptext"==t){a=a.replace(/\%n\%/gm,"\n"),a=a.replace(/\%dq\%/gm,'"'),a=a.replace(/\%brl\%/gm,"["),a=a.replace(/\%brr\%/gm,"]");var o=a.split("/"),r=o.length<1?"":o[0],_=o.length<2?r:o[1],s=document.getElementById("wfu_attribute_s_"+e);s.value=r;var c=document.getElementById("wfu_attribute_p_"+e);c.value=_,wfu_update_ptext_value({target:s}),wfu_update_ptext_value({target:c})}else if("mchecklist"==t){if(a=a.toLowerCase(),"all"==a)document.getElementById("wfu_attribute_"+e+"_all").checked=!0;else{document.getElementById("wfu_attribute_"+e+"_all").checked=!1;for(var i=a.split(","),u=0;u<i.length;u++)i[u]=i[u].trim();jQuery("#wfu_attribute_"+e+" input").each(function(){jQuery(this).prop("checked",i.indexOf(jQuery(this).next().html())>-1)})}wfu_update_mchecklist_value(e)}else if("rolelist"==t){var l=document.getElementById("wfu_attribute_"+e),f=document.getElementById("wfu_attribute_"+e+"_all"),m=f.className.indexOf("wfu_default_administrator")>-1,p=a.split(",");if(p.indexOf("all")>-1){f.checked=!0;for(var u=0;u<l.options.length;u++)l.options[u].selected=m&&"administrator"==l.options[u].value}else{f.checked=!1;for(var u=0;u<p.length;u++)p[u]=p[u].trim();for(var u=0;u<l.options.length;u++)l.options[u].selected=p.indexOf(l.options[u].value)>-1}document.getElementById("wfu_attribute_"+e+"_guests").checked=p.indexOf("guests")>-1,wfu_update_rolelist_value(e)}else if("userlist"==t){var l=document.getElementById("wfu_attribute_"+e),f=document.getElementById("wfu_attribute_"+e+"_all"),w=f.className.indexOf("wfu_default_0")>-1,g=document.getElementById("wfu_attribute_"+e+"_current");if(g&&"current"==a){g.checked=!0,f.checked=!1,document.getElementById("wfu_attribute_"+e+"_guests").checked=!1;for(var u=0;u<l.options.length;u++)l.options[u].selected=w&&1>u}else{g&&(g.checked=!1);var v=a.split(",");if(v.indexOf("all")>-1){f.checked=!0;for(var u=0;u<l.options.length;u++)l.options[u].selected=w&&1>u}else{f.checked=!1;for(var u=0;u<v.length;u++)v[u]=v[u].trim();for(var u=0;u<l.options.length;u++)l.options[u].selected=v.indexOf(l.options[u].value)>-1}document.getElementById("wfu_attribute_"+e+"_guests").checked=v.indexOf("guests")>-1}wfu_update_userlist_value(e)}else if("postlist"==t){for(var b=Array(),f=Array(),h=document.getElementById("wfu_attribute_"+e+"_postlist").value.split(","),u=0;u<h.length;u++)b.push(document.getElementById("wfu_attribute_"+e+"_"+h[u])),f.push(document.getElementById("wfu_attribute_"+e+"_all_"+h[u]));var g=document.getElementById("wfu_attribute_"+e+"_current");if(g&&"current"==a){g.checked=!0;for(var u=0;u<h.length;u++){f[u].checked=!1;for(var y=0;y<b[u].options.length;y++)b[u].options[y].selected=!1}}else{g&&(g.checked=!1);for(var I=a.split(","),u=0;u<h.length;u++){("all"==a||I.indexOf("all"+h[u])>-1)&&(f[u].checked=!0);for(var y=0;y<b[u].options.length;y++)b[u].options[y].selected=I.indexOf(b[u].options[y].value)>-1}}wfu_update_postlist_value(e)}else if("bloglist"==t){var g=document.getElementById("wfu_attribute_"+e+"_current");if(g&&"current"==a){g.checked=!0,document.getElementById("wfu_attribute_"+e+"_all").checked=!1;for(var l=document.getElementById("wfu_attribute_"+e),u=0;u<l.options.length;u++)l.options[u].selected=!1}else{g&&(g.checked=!1);var E=a.split(",");if("all"==a)document.getElementById("wfu_attribute_"+e+"_all").checked=!0;else{document.getElementById("wfu_attribute_"+e+"_all").checked=!1;for(var u=0;u<E.length;u++)E[u]=E[u].trim();for(var l=document.getElementById("wfu_attribute_"+e),u=0;u<l.options.length;u++)l.options[u].selected=E.indexOf(l.options[u].value)>-1}}wfu_update_bloglist_value(e)}else if("stringmatch"==t){var B="",k="equal to",x="",N=a.match(/^field:(.*?);\s*criterion:(.*?)\s*;\s*value:(.*)$/);N&&4==N.length&&(B=N[1],k=N[2],x=N[3]),document.getElementById("wfu_attribute_"+e+"_matchfield").value=B,document.getElementById("wfu_attribute_"+e+"_matchcriterion").value=k,document.getElementById("wfu_attribute_"+e+"_matchvalue").value=x,wfu_update_stringmatch_value(e)}else if("columns"==t){var T=document.getElementById("wfu_attribute_"+e+"_sourcelist"),A=document.getElementById("wfu_attribute_"+e);A.innerHTML="";for(var H=a.replace(/(:|\/).*?(,|$)/g,"$2").split(","),u=0;u<T.options.length;u++){var o=T.options[u].value.match(/(.*?):(.*?)\/(.*)/),S=o[1];if("wfu_columns_item_required"==T.options[u].className&&-1==H.indexOf(S)){var q="custom"==S?"+-"+(""==o[2]?"s":o[2]):""!=o[2]?"-+"+o[2]:"",O=o[3];"custom"==S&&(S="custom1");var C=document.createElement("OPTION");C.value=S+":"+q+"/"+T.options[u].innerHTML+"/"+O,C.innerHTML=T.options[u].innerHTML+(""!=O&&O!=T.options[u].innerHTML?" ("+O+")":""),C.className=T.options[u].className,C.onclick=T.options[u].onclick,A.appendChild(C)}}for(var L=a.split(","),u=0;u<L.length;u++){var M=L[u].split("/",2),S=M[0],j="";M.length>1&&(j=M[1]),M=S.split(":",2),S=M[0];for(var D=S.replace(/custom[0-9]+$/,"custom"),P=-1,y=0;y<T.options.length;y++){var V=T.options[y].value.replace(/:.*/,"");if(V==D){P=y;break}}for(var R=!1,y=0;y<A.options.length;y++){var F=A.options[y].value.replace(/:.*/,"");if(F==S){R=!0;break}}if("custom"!=S&&P>-1&&!R){var o=T.options[P].value.match(/(.*?):(.*?)\/(.*)/),U="custom"==D||""!=o[2],q=o[2],Q=T.options[P].innerHTML,O=o[3],G="";G=1==M.length?"custom"==D?"+-s":U?"-+"+q:"":"custom"==D?"+"+(""==M[1]?"-s":"+"+M[1]):U?"-"+(""==M[1]?"-":"+")+q:"",
|
3 |
+
""==j&&(j=O);var C=document.createElement("OPTION");C.value=S+":"+G+"/"+Q+"/"+j,C.innerHTML=Q+(O!=Q?" ("+O+")":""),C.className=T.options[P].className,C.onclick=T.options[u].onclick,A.appendChild(C)}}wfu_update_column_props(e),wfu_update_columns(e)}else if("dimensions"==t){for(var X,W,$,l,z=a.split(","),J=document.getElementsByName("wfu_dimension_elements_"+e),u=0;u<J.length;u++)J[u].value="";for(var u=0;u<z.length;u++)X=z[u].split(":",2),W=X.length<1?"":X[0],$=X.length<2?W:X[1],l=document.getElementById("wfu_attribute_"+e+"_"+W.trim()),l&&(l.value=$.trim());l=J[0],wfu_update_dimension_value({target:l})}else if("userfields"==t){for(var K,Z=a.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]"),Y=Array(),u=0;u<Z.length;u++)K="*"==Z[u].substr(0,1),K&&(Z[u]=Z[u].substr(1)),""!=Z[u]&&Y.push({name:Z[u],required:K});for(var ee=document.getElementById("wfu_attribute_"+e),te=null,ae=Array(),u=0;u<ee.childNodes.length;u++)1===ee.childNodes[u].nodeType&&(null==te?te=ee.childNodes[u]:ae.push(ee.childNodes[u]));for(var u=0;u<ae.length;u++)ee.removeChild(ae[u]);wfu_userdata_edit_field(te,"",!1);for(var le,ne=te,u=0;u<Y.length;u++)0==u?wfu_userdata_edit_field(te,Y[u].name,Y[u].required):(le=ne.cloneNode(!0),wfu_userdata_edit_field(le,Y[u].name,Y[u].required),ee.insertBefore(le,ne.nextSibling),ne=le);for(var l,u=0;u<te.childNodes.length&&(l=te.childNodes[u],"INPUT"!=l.tagName);u++);wfu_update_userfield_value({target:l})}else if("formfields"==t){for(var Y=Array(),de=window["wfu_attribute_"+e+"_typeprops"],ue=de[0].split(","),oe={},u=0;u<ue.length;u++){var re=de[ue[u]],_e={};_e.type=ue[u],_e.label="",_e.labelposition=re.labelposition.substr(5),_e.required="true"==re.required.substr(5),_e.donotautocomplete="true"==re.donotautocomplete.substr(5),_e.validate="true"==re.validate.substr(5),_e.typehook="true"==re.typehook.substr(5),_e.hintposition=re.hintposition.substr(5),_e["default"]=re["default"].substr(5),_e.data=re.data.substr(5),_e.group=re.group.substr(5),_e.format=re.format.substr(5),oe[ue[u]]=_e}for(var Z=a.replace(/\//g,"[/]").replace(/\(.*\)/,function(e){return e.replace(/\[\/\]/g,"/")}).split("[/]"),u=0;u<Z.length;u++){var se=Z[u].trim(),ce={};for(prop in oe.text)ce[prop]=oe.text[prop];"*"==se.substr(0,1)&&(ce.required=!0,se=se.substr(1));var ie=se.split("|");if(""!=ie[0].trim()){for(var fe=-1,me="",y=0;y<ie.length;y++){var pe=ie[y].replace(/^\s+/gm,""),we=pe.substr(0,2),$=pe.substr(2);if("t:"==we&&y>0&&ue.indexOf($)>-1){me=$,fe=y;break}}if(""!=me){for(prop in oe[me])ce[prop]=oe[me][prop];ie.splice(fe,1)}ce.label=ie[0].trim(),ie.splice(0,1);for(var y=0;y<ie.length;y++){var pe=ie[y].replace(/^\s+/gm,""),we=pe.substr(0,2),$=pe.substr(2);"s:"==we?ce.labelposition=$:"r:"==we?ce.required="1"==$:"a:"==we?ce.donotautocomplete="1"==$:"v:"==we?ce.validate="1"==$:"d:"==we?ce["default"]=$:"l:"==we?ce.data=$:"g:"==we?ce.group=$:"f:"==we?ce.format=$:"p:"==we?ce.hintposition=$:"h:"==we&&(ce.typehook="1"==$)}Y.push(ce)}}0==Y.length&&Y.push(fieldprops_default);for(var ee=document.getElementById("wfu_attribute_"+e),ge=document.querySelectorAll("div#wfu_attribute_"+e+" .wfu_formdata_line_container"),u=1;u<ge.length;u++)ee.removeChild(ge[u]);for(var ve=ge[0],u=0;u<Y.length;u++){var be=e+"_"+wfu_randomString(4),he=wfu_formdata_prepare_template(e,Y[u],be);u>0&&(ve=document.createElement("DIV")),ve.id="wfu_formfield_"+be+"_container",ve.className="wfu_formdata_line_container",u>0&&ee.insertBefore(ve,null),ve.innerHTML=he}for(var ye=document.querySelectorAll("div#wfu_attribute_"+e+' input[name="wfu_formfield_elements"]'),u=0;u<ye.length;u++)wfu_attach_element_handlers(ye[u],wfu_update_formfield_value);for(var Ie=document.querySelectorAll("div#wfu_attribute_"+e+" .wfu_formdata_action_remove"),u=0;u<Ie.length;u++)Ie[u].className="wfu_formdata_action wfu_formdata_action_remove"+(Ie.length>1?"":" wfu_formdata_action_disabled");wfu_update_formfield_value({target:ge[0]})}else if("color-triplet"==t){for(var Ee=a.split(","),u=0;u<Ee.length;u++)Ee[u]=Ee[u].trim();2==Ee.length?Ee=[Ee[0],Ee[1],"#000000"]:1==Ee.length?Ee=[Ee[0],"#FFFFFF","#000000"]:Ee.length<3&&(Ee=["#000000","#FFFFFF","#000000"]);var n=colourNameToHex(Ee[0]);n||(n=Ee[0]),jQuery("#wfu_attribute_"+e+"_color").wpColorPicker("color",n);var l=document.getElementById("wfu_attribute_"+e+"_color");l.value=Ee[0],n=colourNameToHex(Ee[1]),n||(n=Ee[1]),jQuery("#wfu_attribute_"+e+"_bgcolor").wpColorPicker("color",n),document.getElementById("wfu_attribute_"+e+"_bgcolor").value=Ee[1],n=colourNameToHex(Ee[2]),n||(n=Ee[2]),jQuery("#wfu_attribute_"+e+"_borcolor").wpColorPicker("color",n),document.getElementById("wfu_attribute_"+e+"_borcolor").value=Ee[2],wfu_update_triplecolor_value({target:l})}else if("folderlist"==t){for(var i=wfu_parse_folderlist_js(a),Be=document.getElementById("wfu_attribute_"+e).options;Be.length>0;)Be.remove(0);for(var C,ke,xe,Ne,Te,Ae,u=0;u<i.path.length;u++){ke=i.path[u],"/"==ke.substr(ke.length,1)&&(ke=ke.substr(0,ke.length-1)),xe=ke.split("/"),ke=xe[xe.length-1],Te=parseInt(i.level[u]),Ne="",Ae="";for(var y=0;Te>y;y++)Ne+=" ",Ae+="*";Ne+=i.label[u],i["default"][u]&&(Ae+="&"),Ae+=""==ke?"{root}/"+i.label[u]:ke+i.label[u],C=document.createElement("option"),i["default"][u]?C.className="wfu_select_folders_option_default":C.className="",C.value=wfu_plugin_encode_string(Ae),C.innerHTML=Ne,Be.add(C)}C=document.createElement("option"),C.value="",C.innerHTML="",Be.add(C);var He=document.getElementById("wfu_attribute_"+e);He.data=wfu_decode_subfolder_list(e),wfu_subfolders_update_toolnav(e),l=He,a!==l.oldVal&&(l.oldVal=a,document.getElementById("wfu_attribute_value_"+e).value=a,wfu_generate_shortcode())}}function wfu_parse_folderlist_js(e){var t=Object();if(t.path=Array(),t.label=Array(),t.level=Array(),t["default"]=Array(),"auto"==e.substr(0,4))return t;var a=e.split(",");if(0==a.length)return t;if(1==a.length&&""==a[0].trim())return t;for(var l,n,d,u,o,r,_,s=["root"],c=0,i=0,f=-1,m=0;m<a.length;m++){for(l=a[m].trim(),n=0,d="",u=!1;n<l.length&&"*"==l.substr(n,1);)n++,d+=" ";if(1>=n-c&&(n>0||0==i)&&(l=l.substr(n,l.length-n),"&"==l.substr(0,1)&&(l=l.substr(1),u=!0),subfolder_items=l.split("/"),subfolder_items.length<2&&subfolder_items.push(""),""!=subfolder_items[1]?(o=subfolder_items[0],r=subfolder_items[1]):(o=l,r=l),""!=o)){u&&-1==f?f=t.path.length:u=!1,0==n&&(i=1),s.length>n?s[n]=o:s.push(o),_="";for(var p=1;n>=p;p++)_+=s[p]+"/";t.path.push(_),t.label.push(r),t.level.push(n),t["default"].push(u),c=n}}return t}function colourNameToHex(e){var t={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",honeydew:"#f0fff0",hotpink:"#ff69b4","indianred ":"#cd5c5c","indigo ":"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgrey:"#d3d3d3",lightgreen:"#90ee90",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370d8",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#d87093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};return"undefined"!=typeof t[e.toLowerCase()]?t[e.toLowerCase()]:!1}function wfu_download_file(e,t,a){var l=wfu_GetHttpRequestObject();if(null!=l){var n=AdminParams.wfu_ajax_url;params=new Array(3),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_download_file_invoker",params[1]=new Array(2),params[1][0]="file",params[1][1]=e,params[2]=new Array(2),params[2][0]="nonce",params[2][1]=a;for(var d="",u=0;u<params.length;u++)d+=(u>0?"&":"")+params[u][0]+"="+encodeURI(params[u][1]);l.open("POST",n,!0),l.setRequestHeader("Content-type","application/x-www-form-urlencoded"),l.onreadystatechange=function(){if(4==l.readyState&&200==l.status){var a="wfu_ajax_action_download_file_invoker:",n=l.responseText.indexOf(a);-1==n&&(n=l.responseText.length);var d=(l.responseText.substr(0,n),l.responseText.substr(n+a.length,l.responseText.length-n-a.length));n=d.indexOf(":");var u=d.substr(0,n);if(txt_value=d.substr(n+1,d.length-n-1),"wfu_download_id;"==u.substr(0,16)){var o=u.substr(16),r=document.getElementById("wfu_file_download_container_"+t);r.innerHTML=txt_value,setTimeout("wfu_download_file_monitor('"+e+"', "+t+", '"+o+"')",100)}}},l.send(d)}}function wfu_download_file_monitor(e,t,a){var l=wfu_GetHttpRequestObject();if(null!=l){var n=AdminParams.wfu_ajax_url;params=new Array(3),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_download_file_monitor",params[1]=new Array(2),params[1][0]="file",params[1][1]=e,params[2]=new Array(2),params[2][0]="id",params[2][1]=a;for(var d="",u=0;u<params.length;u++)d+=(u>0?"&":"")+params[u][0]+"="+encodeURI(params[u][1]);l.open("POST",n,!0),l.setRequestHeader("Content-type","application/x-www-form-urlencoded"),l.onreadystatechange=function(){if(4==l.readyState&&200==l.status){var a="wfu_ajax_action_download_file_monitor:",n=l.responseText.indexOf(a);-1==n&&(n=l.responseText.length);var d=(l.responseText.substr(0,n),l.responseText.substr(n+a.length,l.responseText.length-n-a.length));n=d.indexOf(":");var u=d.substr(0,n);if(txt_value=d.substr(n+1,d.length-n-1),"repeat"!=u){var o=document.getElementById("wfu_file_download_container_"+t);o.innerHTML=""}else"repeat"==u&&setTimeout("wfu_download_file_monitor('"+e+"', "+t+", '"+txt_value+"')",100)}},l.send(d)}}function wfu_filedetails_changed(e){for(var t,a,l=document.getElementsByName("wfu_filedetails_userdata"),n=!1,d=!1,u=0;u<l.length;u++)if(t=document.getElementById(l[u].id.replace("wfu_filedetails_userdata_value_","wfu_filedetails_userdata_default_")),a=document.getElementById(l[u].id.replace("wfu_filedetails_userdata_value_","wfu_filedetails_userdata_")),a.value=l[u].value,l[u].value!=t.value){n=!0;break}d=document.getElementById("wfu_filedetails_userid").value!=document.getElementById("wfu_filedetails_userid_default").value,document.getElementById("dp_filedetails_submit_fields").disabled=!n&&!d}function wfu_Attach_FileDetails_Admin_Events(){for(var e=document.getElementsByName("wfu_filedetails_userdata"),t=0;t<e.length;t++)wfu_attach_element_handlers(e[t],wfu_filedetails_changed)}function wfu_update_browserpermission_option(e,t,a){var l=document.getElementById("wfu_fbperm_users"),n=document.getElementById("wfu_fbperm_roles"),d=document.getElementById("wfu_fbperm_"+e+"_"+t+"_view"),u=document.getElementById("wfu_fbperm_"+e+"_"+t+"_dl"),o=document.getElementById("wfu_fbperm_"+e+"_"+t+"_edit"),r=document.getElementById("wfu_fbperm_"+e+"_"+t+"_del");if("role"==e){if("0"==t){u.checked=d.checked&&u.checked,o.checked=d.checked&&o.checked,r.checked=d.checked&&r.checked,u.disabled=!d.checked,o.disabled=!d.checked,r.disabled=!d.checked;for(var _=document.querySelectorAll("tr.wfu_fbperm_role_tr"),s=0;s<_.length;s++){var c=_[s].id.substr(16,_[s].id.length-20);wfu_update_browserpermission_option("role",c,!1)}if(a){var i=(d.checked?"v":"")+(u.checked?"d":"")+(o.checked?"e":"")+(r.checked?"l":"");n.value=n.value.replace(/^0\[\w*\]/,"0["+i+"]")}}else if("administrator"!=t){var f=document.getElementById("wfu_fbperm_role_"+t+"_row"),m=document.getElementById("wfu_fbperm_role_"+t+"_def"),p=document.getElementById("wfu_fbperm_role_0_view"),w=document.getElementById("wfu_fbperm_role_0_dl"),g=document.getElementById("wfu_fbperm_role_0_edit"),v=document.getElementById("wfu_fbperm_role_0_del");if(d.checked=m.checked?p.checked:d.checked,f.style.fontWeight=m.checked?"":"bold",u.checked=m.checked?w.checked:d.checked&&u.checked,o.checked=m.checked?g.checked:d.checked&&o.checked,r.checked=m.checked?v.checked:d.checked&&r.checked,d.disabled=m.checked,u.disabled=m.checked||!d.checked,o.disabled=m.checked||!d.checked,r.disabled=m.checked||!d.checked,a){var i=m.checked?"":"D"+(d.checked?"v":"")+(u.checked?"d":"")+(o.checked?"e":"")+(r.checked?"l":"");n.value=n.value.replace(new RegExp(","+t+"\\[\\w*\\]"),","+t+"["+i+"]")}}for(var b=document.querySelectorAll("tr.wfu_fbperm_user_tr"),s=0;s<b.length;s++){var h=b[s].id.substr(16,b[s].id.length-20);wfu_update_browserpermission_option("user",h,!1)}}else if("user"==e){var y=document.getElementById("wfu_fbperm_user_"+t+"_role");if("0"==t){d.checked=y.checked?!1:d.checked,u.checked=y.checked?!1:d.checked&&u.checked,o.checked=y.checked?!1:d.checked&&o.checked,r.checked=y.checked?!1:d.checked&&r.checked,d.disabled=y.checked,u.disabled=y.checked||!d.checked,o.disabled=y.checked||!d.checked,r.disabled=y.checked||!d.checked,d.indeterminate=y.checked,u.indeterminate=y.checked,o.indeterminate=y.checked,r.indeterminate=y.checked;for(var b=document.querySelectorAll("tr.wfu_fbperm_user_tr"),s=0;s<b.length;s++){var h=b[s].id.substr(16,b[s].id.length-20);wfu_update_browserpermission_option("user",h,!1)}if(a){var i=y.checked?"":"R"+(d.checked?"v":"")+(u.checked?"d":"")+(o.checked?"e":"")+(r.checked?"l":"");l.value=l.value.replace(/^0\[\w*\],?/,""),l.value="0["+i+"]"+(""==l.value?"":","+l.value)}}else{var I=document.getElementById("wfu_fbperm_user_"+t+"_roles").value.split(",");if(1==I.length&&""==I[0]&&(I=Array()),I.indexOf("administrator")<0){var f=document.getElementById("wfu_fbperm_user_"+t+"_row"),m=document.getElementById("wfu_fbperm_user_"+t+"_def"),E=document.getElementById("wfu_fbperm_user_0_role"),p=document.getElementById("wfu_fbperm_user_0_view"),w=document.getElementById("wfu_fbperm_user_0_dl"),g=document.getElementById("wfu_fbperm_user_0_edit"),v=document.getElementById("wfu_fbperm_user_0_del");if(I.length>0)for(var B=!1,k=!1,x=!1,N=!1,s=0;s<I.length;s++)B=B||document.getElementById("wfu_fbperm_role_"+I[s]+"_view").checked,k=B&&(k||document.getElementById("wfu_fbperm_role_"+I[s]+"_dl").checked),x=B&&(x||document.getElementById("wfu_fbperm_role_"+I[s]+"_edit").checked),N=B&&(N||document.getElementById("wfu_fbperm_role_"+I[s]+"_del").checked);else var B=document.getElementById("wfu_fbperm_role_0_view"),k=document.getElementById("wfu_fbperm_role_0_dl"),x=document.getElementById("wfu_fbperm_role_0_edit"),N=document.getElementById("wfu_fbperm_role_0_del");if(f.style.fontWeight=m.checked?"":"bold",y.checked=m.checked?E.checked:y.checked,d.checked=m.checked?E.checked?B:p.checked:y.checked?B:d.checked,u.checked=m.checked?E.checked?k:w.checked:y.checked?k:d.checked&&u.checked,o.checked=m.checked?E.checked?x:g.checked:y.checked?x:d.checked&&o.checked,r.checked=m.checked?E.checked?N:v.checked:y.checked?N:d.checked&&r.checked,y.disabled=m.checked,d.disabled=m.checked||y.checked,u.disabled=m.checked||y.checked||!d.checked,o.disabled=m.checked||y.checked||!d.checked,r.disabled=m.checked||y.checked||!d.checked,a){var i=m.checked?"":"D"+(y.checked?"":"R"+(d.checked?"v":"")+(u.checked?"d":"")+(o.checked?"e":"")+(r.checked?"l":""));l.value=l.value.replace(new RegExp(","+t+"\\[\\w*\\]|"+t+"\\[\\w*\\],|"+t+"\\[\\w*\\]"),""),l.value+=(""==l.value?"":",")+t+"["+i+"]"}}}}}function wfu_goto_historylog_page(e,t){var a=document.getElementById("wfu_historylog_pages"),l=a.selectedIndex+1,n=l;if("next"==t?n=Math.min(l+1,a.options.length):"prev"==t?n=Math.max(l-1,1):"last"==t?n=a.options.length:"first"==t?n=1:"sel"==t&&(l=-1),n!=l){var d=wfu_GetHttpRequestObject();if(null!=d){var u=AdminParams.wfu_ajax_url;params=new Array(3),params[0]=new Array(2),params[0][0]="action",params[0][1]="wfu_ajax_action_get_historylog_page",params[1]=new Array(2),params[1][0]="token",params[1][1]=e,params[2]=new Array(2),params[2][0]="page",params[2][1]=n;for(var o="",r=0;r<params.length;r++)o+=(r>0?"&":"")+params[r][0]+"="+encodeURI(params[r][1]);document.getElementById("wfu_historylog_overlay").style.display="block",d.open("POST",u,!0),d.setRequestHeader("Content-type","application/x-www-form-urlencoded"),d.onreadystatechange=function(){if(4==d.readyState&&200==d.status){document.getElementById("wfu_historylog_overlay").style.display="none";var e="wfu_historylog_page_success:",t=d.responseText.indexOf(e);-1==t&&(t=d.responseText.length);var l=(d.responseText.substr(0,t),d.responseText.substr(t+e.length,d.responseText.length-t-e.length));if(""!=l){var u=document.getElementById("wfu_historylog_table");u.tBodies[0].innerHTML=wfu_plugin_decode_string(l),a.selectedIndex=n-1,document.getElementById("wfu_historylog_first_disabled").style.display=1==n?"inline":"none",document.getElementById("wfu_historylog_prev_disabled").style.display=1==n?"inline":"none",document.getElementById("wfu_historylog_first").style.display=1==n?"none":"inline",document.getElementById("wfu_historylog_prev").style.display=1==n?"none":"inline",document.getElementById("wfu_historylog_last_disabled").style.display=n==a.options.length?"inline":"none",document.getElementById("wfu_historylog_next_disabled").style.display=n==a.options.length?"inline":"none",document.getElementById("wfu_historylog_last").style.display=n==a.options.length?"none":"inline",document.getElementById("wfu_historylog_next").style.display=n==a.options.length?"none":"inline"}}},d.send(o)}}}function wfu_include_file(e,t,a){var l=wfu_GetHttpRequestObject();if(null!=l){var n=AdminParams.wfu_ajax_url;params=new Array(2),params[0]=new Array(3),params[0][0]="action",params[0][1]="wfu_ajax_action_include_file",params[1]=new Array(2),params[1][0]="file",params[1][1]=e,params[2]=new Array(2),params[2][0]="nonce",params[2][1]=a;for(var d="",u=0;u<params.length;u++)d+=(u>0?"&":"")+params[u][0]+"="+encodeURI(params[u][1]);document.getElementById("wfu_include_file_"+t+"_a").href="javascript: void(0)",document.getElementById("wfu_include_file_"+t+"_img").style.display="inline",l.open("POST",n,!0),l.setRequestHeader("Content-type","application/x-www-form-urlencoded"),l.onreadystatechange=function(){if(4==l.readyState&&(document.getElementById("wfu_include_file_"+t+"_img").style.display="none",200==l.status)){var e="wfu_include_file:",a=l.responseText.indexOf(e);-1==a&&(a=l.responseText.length);var n=(l.responseText.substr(0,a),l.responseText.substr(a+e.length,l.responseText.length-a-e.length));a=n.indexOf(":");var d=n.substr(0,a);txt_value=n.substr(a+1,n.length-a-1),"success"==d?(document.getElementById("wfu_file_flat_"+t).style.display="none",document.getElementById("wfu_file_link_"+t).style.display="inline",document.getElementById("wfu_file_can_be_included_actions_"+t).style.display="none",document.getElementById("wfu_file_is_included_actions_"+t).style.display="block"):document.getElementById("wfu_include_file_"+t+"_a").innerHTML=document.getElementById("wfu_include_file_"+t+"_inpfail").value}},l.send(d)}}function wfu_adminbrowser_select_all_visible_changed(){for(var e=document.getElementById("wfu_select_all_visible").checked,t=document.querySelectorAll(".wfu_selectors"),a=0;a<t.length;a++)t[a].checked=e}function wfu_adminbrowser_selector_changed(e){var t=document.querySelectorAll(".wfu_selectors").length,a=document.querySelectorAll(".wfu_selectors:checked").length,l=document.getElementById("wfu_select_all_visible");l.style.webkitAppearance="",l.style.webkitAppearance="checkbox",l.checked=a>0,l.indeterminate=a>0&&t>a}function wfu_apply_adminbrowser_bulkaction(){var e=document.getElementById("wfu_adminbrowser_bulkactions");if(!(e.selectedIndex<1)){var t=e.options[e.selectedIndex].value,a=document.querySelectorAll(".wfu_selectors:checked");if(0!=a.length){for(var l=[],n=0,d=0,u=0;u<a.length;u++){var o=a[u].className.replace(/.*?wfu_selcode_/,"");if(""!=o){var r=a[u].className.indexOf("wfu_included")>-1;r?n++:d++,"delete"==t&&!r||"include"==t&&r?a[u].checked=!1:l.push(o)}}if("delete"==t&&d>0?alert("Notice! Files that were not uploaded using the plugin cannot be deleted and have been deselected."):"include"==t&&n>0&&alert("Notice! Files already included in the plugin have been deselected."),0!=l.length){var _=document.getElementById("wfu_adminbrowser_action_url").value,s=document.getElementById("wfu_adminbrowser_referer").value;if("delete"==t||"include"==t){var c=document.createElement("FORM");c.method="POST",c.action=_,c.style.display="none";var i=document.createElement("INPUT");i.type="hidden",i.name="action",i.value=t+"_file",c.appendChild(i);var f=document.createElement("INPUT");f.type="hidden",f.name="file",f.value="list:"+l.join(),c.appendChild(f);var m=document.createElement("INPUT");m.type="hidden",m.name="referer",m.value=s,c.appendChild(m),document.body.appendChild(c),c.submit()}}}}}var DraggedItem=null,ShortcodeNextSave=0,ShortcodeTimeOut=null,ShortcodeString="",Autosave=!1,PageObsolete=!1,PageUpdating=!1,CheckObsolescenceTimeOut=5e3;jQuery(document).ready(function(e){e(".wfu_color_field").wpColorPicker({change:function(e,t){e.target.value=t.color.toString(),"wfu_text_elements"==e.target.name?wfu_update_text_value(e):"wfu_triplecolor_elements"==e.target.name&&wfu_update_triplecolor_value(e)}})});
|
languages/wp-file-upload-de_DE.mo
CHANGED
Binary file
|
languages/wp-file-upload-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: de_DE\n"
|
@@ -317,7 +317,7 @@ msgstr ""
|
|
317 |
"Hochladen fehlgeschlagen! Es sind Fehler beim Versuch, die Datei hochzuladen "
|
318 |
"aufgetreten."
|
319 |
|
320 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
321 |
msgid "Upload failed!"
|
322 |
msgstr "Hochladen fehlgeschlagen!"
|
323 |
|
@@ -587,52 +587,64 @@ msgid "Could not open file handles on chunk %d"
|
|
587 |
msgstr "Dateihandles konnte nicht geöffnet werden am chunk %d"
|
588 |
|
589 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
msgid "You are not allowed to delete this file!"
|
591 |
msgstr "Sie sind nicht berechtigt, diese Datei zu löschen!"
|
592 |
|
593 |
-
#: lib/wfu_constants.php:
|
594 |
msgid "File was not deleted!"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: lib/wfu_constants.php:
|
598 |
msgid "No file was deleted!"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "Some files were not deleted!"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid "Upload skipped! File already exists."
|
607 |
msgstr "Hochladen abgebrochen! Datei ist bereits vorhanden."
|
608 |
|
609 |
-
#: lib/wfu_constants.php:
|
610 |
msgid "The extension of the file does not match its contents."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
msgid ""
|
615 |
"Upload succeeded but the file is suspicious because its contents do not "
|
616 |
"match its extension. Its proper filename is: "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: lib/wfu_constants.php:
|
620 |
msgid "No files have been selected!"
|
621 |
msgstr "Keine Dateien ausgewählt!"
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
625 |
msgstr ""
|
626 |
"WPFilebase Plugin konnte nicht aktualisiert werden, da keine Dateien "
|
627 |
"hochgeladen wurden."
|
628 |
|
629 |
-
#: lib/wfu_constants.php:
|
630 |
msgid "Notification email was not sent because there were no files uploaded."
|
631 |
msgstr ""
|
632 |
"Benachrichtigung per E-Mail wurde nicht gesendet, weil keine Dateien "
|
633 |
"hochgeladen worden sind."
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid ""
|
637 |
"Notification email was not sent because no recipients were defined. Please "
|
638 |
"check notifyrecipients attribute in the shortcode."
|
@@ -641,7 +653,7 @@ msgstr ""
|
|
641 |
"definiert wurde. Bitte überprüfen Sie das notifyrecipients-Attribut im "
|
642 |
"Shortcode."
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid ""
|
646 |
"Notification email was not sent due to an error. Please check "
|
647 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -649,7 +661,7 @@ msgstr ""
|
|
649 |
"E-Mail-Benachrichtigung wurde wegen eines Fehlers nicht gesendet. Bitte "
|
650 |
"überprüfen Sie das notifysubject und das notifymessage Attribut auf Fehler."
|
651 |
|
652 |
-
#: lib/wfu_constants.php:
|
653 |
msgid ""
|
654 |
"Redirection not executed because redirection link is empty. Please check "
|
655 |
"redirectlink attribute."
|
@@ -657,18 +669,18 @@ msgstr ""
|
|
657 |
"Umleitung nicht ausgeführt, da der Umleitungs-Link leer ist. Bitte "
|
658 |
"überprüfen Sie das redirectlink Attribut."
|
659 |
|
660 |
-
#: lib/wfu_constants.php:
|
661 |
msgid ""
|
662 |
"Redirection not executed because not all files were successfully uploaded."
|
663 |
msgstr ""
|
664 |
"Umleitung nicht ausgeführt, da nicht alle Dateien erfolgreich hochgeladen "
|
665 |
"wurden."
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: lib/wfu_constants.php:
|
672 |
msgid ""
|
673 |
"Hello admin\n"
|
674 |
"\n"
|
@@ -688,7 +700,7 @@ msgid ""
|
|
688 |
"Thanks"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: lib/wfu_constants.php:
|
692 |
msgid ""
|
693 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
694 |
"message persists, contact administrator."
|
@@ -697,7 +709,7 @@ msgstr ""
|
|
697 |
"versuche es erneut. Wenn die Meldung weiterhin, wenden Sie sich "
|
698 |
"Administrator."
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid ""
|
702 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
703 |
"again to edit the shortcode."
|
@@ -705,7 +717,7 @@ msgstr ""
|
|
705 |
"Der Shortcode konnte nicht bearbeitet, da sich der Inhalt der Seite geändert "
|
706 |
"hat. Versuchen Sie erneut den Shortcode zu bearbeiten."
|
707 |
|
708 |
-
#: lib/wfu_constants.php:
|
709 |
msgid ""
|
710 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
711 |
"again to delete it."
|
@@ -713,7 +725,7 @@ msgstr ""
|
|
713 |
"Der Shortcode konnte nicht gelöscht werden, da sich der Inhalt der Seite "
|
714 |
"geändert hat. Versuchen Sie erneut den Shortcode zu löschen."
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid ""
|
718 |
"The page containing the shortcode has been modified and it is no longer "
|
719 |
"valid. Please go back to reload the shortcode."
|
@@ -721,7 +733,7 @@ msgstr ""
|
|
721 |
"Die Seite mit dem Shortcode wurde modifiziert und ist nicht mehr gültig. "
|
722 |
"Bitte gehen Sie zurück um zu den Shortcode zu laden."
|
723 |
|
724 |
-
#: lib/wfu_constants.php:
|
725 |
msgid ""
|
726 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
727 |
"back to reload the shortcode."
|
@@ -729,7 +741,7 @@ msgstr ""
|
|
729 |
"Der Shortcode konnte nicht aktualisiert werden, da sich der Inhalt der Seite "
|
730 |
"geändert geändert hat. Gehen Sie zurück um zu den Shortcode neu zu laden."
|
731 |
|
732 |
-
#: lib/wfu_constants.php:
|
733 |
msgid ""
|
734 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
735 |
"go back and reload the shortcode."
|
@@ -738,39 +750,39 @@ msgstr ""
|
|
738 |
"Wenn das Problem weiterhin besteht, gehen Sie zurück und laden Sie den "
|
739 |
"Shortcode neu."
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "This is a test message"
|
743 |
msgstr "This is a test message"
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "This is a test administrator message"
|
747 |
msgstr "Dies ist eine Test-Admin-Nachricht"
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "File testfile 1 under test"
|
751 |
msgstr "Datei testfile 1 wird getestet"
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "File testfile 1 message"
|
755 |
msgstr "Datei testfile 1 Nachricht"
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
758 |
msgid "File testfile 1 administrator message"
|
759 |
msgstr "Datei testfile 1 Admin-Nachricht"
|
760 |
|
761 |
-
#: lib/wfu_constants.php:
|
762 |
msgid "File testfile 2 under test"
|
763 |
msgstr "File testfile 2 wird getestet"
|
764 |
|
765 |
-
#: lib/wfu_constants.php:
|
766 |
msgid "File testfile 2 message"
|
767 |
msgstr "Datei testfile 2 Nachricht"
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid "File testfile 2 administrator message"
|
771 |
msgstr "Datei testfile 2 Admin-Nachricht"
|
772 |
|
773 |
-
#: lib/wfu_constants.php:
|
774 |
msgid ""
|
775 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
776 |
"current user."
|
@@ -778,7 +790,7 @@ msgstr ""
|
|
778 |
"Fügen Sie die Variable %userid% in den Text ein. Sie wird durch die ID des "
|
779 |
"aktuellen Benutzers ersetzt."
|
780 |
|
781 |
-
#: lib/wfu_constants.php:
|
782 |
msgid ""
|
783 |
"Insert variable %username% inside text. It will be replaced by the username "
|
784 |
"of the current user."
|
@@ -786,7 +798,7 @@ msgstr ""
|
|
786 |
"Fügen Sie die Variable %username% in den Text ein. Sie wird durch den "
|
787 |
"Benutzernamen des aktuellen Benutzers ersetzt."
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid ""
|
791 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
792 |
"the current user."
|
@@ -794,7 +806,7 @@ msgstr ""
|
|
794 |
"Fügen Sie die Variable %useremail% in den Text ein. Sie wird durch die E-"
|
795 |
"Mail-Adresse des aktuellen Benutzers ersetzt."
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid ""
|
799 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
800 |
"of the uploaded file."
|
@@ -802,7 +814,7 @@ msgstr ""
|
|
802 |
"Fügen Sie die Variable %filename% in den Text. Sie wird durch den Dateinamen "
|
803 |
"der hochgeladenen Dateien ersetzt."
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid ""
|
807 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
808 |
"filepath of the uploaded file."
|
@@ -810,7 +822,7 @@ msgstr ""
|
|
810 |
"Fügen Sie die Variable %filepath% in den Text ein. Sie wird durch die "
|
811 |
"vollständige Dateipfad der hochgeladenen Dateien ersetzt."
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid ""
|
815 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
816 |
"the website."
|
@@ -818,7 +830,7 @@ msgstr ""
|
|
818 |
"Fügen Sie die Variable %blogid% in den Text ein. Sie wird durch die Blog-ID "
|
819 |
"der Website ersetzt werden."
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid ""
|
823 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
824 |
"current page."
|
@@ -826,7 +838,7 @@ msgstr ""
|
|
826 |
"Fügen Sie die Variable %pageid% in den Text ein. Sie wird durch die ID der "
|
827 |
"aktuellen Seite ersetzt."
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid ""
|
831 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
832 |
"the current page."
|
@@ -834,7 +846,7 @@ msgstr ""
|
|
834 |
"Fügen Sie die Variable %pagetitle% in den Text ein. Sie wird durch dden "
|
835 |
"Title des aktuellen Benutzers ersetzt."
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid ""
|
839 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
840 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -844,199 +856,199 @@ msgstr ""
|
|
844 |
"Feld \"Benutzer\" aus der Dropdown Liste. Die Variable wird durch den Wert "
|
845 |
"ersetzt, die der Benutzer in dieses Feld eingetragen hat."
|
846 |
|
847 |
-
#: lib/wfu_constants.php:
|
848 |
msgid "Insert variable %n% inside text to denote a line change."
|
849 |
msgstr ""
|
850 |
"Fügen Sie die Variable %n% in den Text ein, um eine Änderung der Zeile zu "
|
851 |
"kennzeichnen."
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "Test Mode"
|
855 |
msgstr "Test Modus"
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "select dir..."
|
859 |
msgstr "Wählen Sie das Verzeichnis ..."
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "type dir"
|
863 |
msgstr "Geben Sie das Verzeichnis ein"
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "Upload path: %filepath%"
|
867 |
msgstr "Upload-Pfad: %filepath%"
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "Failed upload path: %filepath%"
|
871 |
msgstr "Fehlerhafter Upload-Pfad: %filepath%"
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid " (required)"
|
875 |
msgstr "(erforderlich)"
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
879 |
msgstr ""
|
880 |
"Dateien werden hochgeladen wird. Sind Sie sicher, dass Sie die Seite "
|
881 |
"verlassen wollen?"
|
882 |
|
883 |
-
#: lib/wfu_constants.php:
|
884 |
msgid "checking captcha..."
|
885 |
msgstr "Prüfung captcha..."
|
886 |
|
887 |
-
#: lib/wfu_constants.php:
|
888 |
msgid "refreshing..."
|
889 |
msgstr "erfrischend..."
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid "correct captcha"
|
893 |
msgstr "korrekte captcha"
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
896 |
msgid "click to continue the upload"
|
897 |
msgstr "Klicken Sie, um das Hochladen fortsetzen"
|
898 |
|
899 |
-
#: lib/wfu_constants.php:
|
900 |
msgid "Are you sure you want to delete this file?"
|
901 |
msgstr "Sind sie sicher, das sie diese datei löschen wollen?"
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid "Are you sure you want to delete these files?"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "Bulk Actions"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid "Apply"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid "Are you sure that you want to cancel the upload?"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "cancel upload of this file"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "Upload in progress"
|
925 |
msgstr "Upload läuft"
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "Upload in progress with warnings!"
|
929 |
msgstr "Upload läuft mit Warnhinweisen!"
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid "Upload in progress but some files already failed!"
|
933 |
msgstr "Upload läuft, aber einige Dateien bereits gescheitert!"
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "Upload in progress but no files uploaded so far!"
|
937 |
msgstr "Upload läuft aber keine Dateien hochgeladen bis jetzt!"
|
938 |
|
939 |
-
#: lib/wfu_constants.php:
|
940 |
msgid "All files uploaded successfully"
|
941 |
msgstr "Alle Dateien erfolgreich hochgeladen"
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid "All files uploaded successfully but there are warnings!"
|
945 |
msgstr "Alle Dateien erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
946 |
|
947 |
-
#: lib/wfu_constants.php:
|
948 |
msgid "File uploaded successfully but there are warnings!"
|
949 |
msgstr "Datei erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid "Some files failed to upload!"
|
953 |
msgstr "Einige Dateien konnten nicht hochgeladen werden!"
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "All files failed to upload"
|
957 |
msgstr "Alle Dateien konnten nicht hochgeladen werden"
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "File failed to upload"
|
961 |
msgstr "Datei konnte nicht hochgeladen werden"
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "There are no files to upload!"
|
965 |
msgstr "Es gibt keine Dateien zum Hochladen!"
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "Test upload message"
|
969 |
msgstr "Test-Upload-Nachricht"
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "JSON parse warning!"
|
973 |
msgstr "JSON parse Warnung!"
|
974 |
|
975 |
-
#: lib/wfu_constants.php:
|
976 |
msgid "please wait while redirecting..."
|
977 |
msgstr "Bitte warten Sie, Sie werden umgeleitet ..."
|
978 |
|
979 |
-
#: lib/wfu_constants.php:
|
980 |
msgid "Open visual shortcode editor in new window"
|
981 |
msgstr "Offenen des visuellen Shortcode-Editor in neuem Fenster"
|
982 |
|
983 |
-
#: lib/wfu_constants.php:
|
984 |
msgid "loading visual editor"
|
985 |
msgstr "visueller Editor laden"
|
986 |
|
987 |
-
#: lib/wfu_constants.php:
|
988 |
msgid "Clear file list?"
|
989 |
msgstr "Klar Dateiliste?"
|
990 |
|
991 |
-
#: lib/wfu_constants.php:
|
992 |
msgid "DROP HERE"
|
993 |
msgstr "HIER ABLEGEN"
|
994 |
|
995 |
-
#: lib/wfu_constants.php:
|
996 |
msgid "record video"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: lib/wfu_constants.php:
|
1000 |
msgid "take a picture"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: lib/wfu_constants.php:
|
1004 |
msgid "turn webcam on/off"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: lib/wfu_constants.php:
|
1008 |
msgid "go live again"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: lib/wfu_constants.php:
|
1012 |
msgid "end recording"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: lib/wfu_constants.php:
|
1016 |
msgid "play"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "pause"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "go to the beginning"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "go to the end"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: lib/wfu_constants.php:
|
1032 |
msgid "Wordpress File Upload Form"
|
1033 |
msgstr "Wordpress Datei Upload Formular"
|
1034 |
|
1035 |
-
#: lib/wfu_constants.php:
|
1036 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1037 |
msgstr "Wordpress Datei Upload Plugin Uploader für Seitenleisten"
|
1038 |
|
1039 |
-
#: lib/wfu_constants.php:
|
1040 |
msgid "Upload Files"
|
1041 |
msgstr "Dateien hochladen"
|
1042 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:20+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:20+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: de_DE\n"
|
317 |
"Hochladen fehlgeschlagen! Es sind Fehler beim Versuch, die Datei hochzuladen "
|
318 |
"aufgetreten."
|
319 |
|
320 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
321 |
msgid "Upload failed!"
|
322 |
msgstr "Hochladen fehlgeschlagen!"
|
323 |
|
587 |
msgstr "Dateihandles konnte nicht geöffnet werden am chunk %d"
|
588 |
|
589 |
#: lib/wfu_constants.php:127
|
590 |
+
msgid "You are not allowed to download this file!"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: lib/wfu_constants.php:128
|
594 |
+
msgid "File does not exist!"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: lib/wfu_constants.php:129
|
598 |
+
msgid "Could not download file!"
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: lib/wfu_constants.php:130
|
602 |
msgid "You are not allowed to delete this file!"
|
603 |
msgstr "Sie sind nicht berechtigt, diese Datei zu löschen!"
|
604 |
|
605 |
+
#: lib/wfu_constants.php:131
|
606 |
msgid "File was not deleted!"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: lib/wfu_constants.php:132
|
610 |
msgid "No file was deleted!"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: lib/wfu_constants.php:133
|
614 |
msgid "Some files were not deleted!"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: lib/wfu_constants.php:135
|
618 |
msgid "Upload skipped! File already exists."
|
619 |
msgstr "Hochladen abgebrochen! Datei ist bereits vorhanden."
|
620 |
|
621 |
+
#: lib/wfu_constants.php:136
|
622 |
msgid "The extension of the file does not match its contents."
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: lib/wfu_constants.php:137
|
626 |
msgid ""
|
627 |
"Upload succeeded but the file is suspicious because its contents do not "
|
628 |
"match its extension. Its proper filename is: "
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: lib/wfu_constants.php:138
|
632 |
msgid "No files have been selected!"
|
633 |
msgstr "Keine Dateien ausgewählt!"
|
634 |
|
635 |
+
#: lib/wfu_constants.php:139
|
636 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
637 |
msgstr ""
|
638 |
"WPFilebase Plugin konnte nicht aktualisiert werden, da keine Dateien "
|
639 |
"hochgeladen wurden."
|
640 |
|
641 |
+
#: lib/wfu_constants.php:140
|
642 |
msgid "Notification email was not sent because there were no files uploaded."
|
643 |
msgstr ""
|
644 |
"Benachrichtigung per E-Mail wurde nicht gesendet, weil keine Dateien "
|
645 |
"hochgeladen worden sind."
|
646 |
|
647 |
+
#: lib/wfu_constants.php:141
|
648 |
msgid ""
|
649 |
"Notification email was not sent because no recipients were defined. Please "
|
650 |
"check notifyrecipients attribute in the shortcode."
|
653 |
"definiert wurde. Bitte überprüfen Sie das notifyrecipients-Attribut im "
|
654 |
"Shortcode."
|
655 |
|
656 |
+
#: lib/wfu_constants.php:142
|
657 |
msgid ""
|
658 |
"Notification email was not sent due to an error. Please check "
|
659 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
661 |
"E-Mail-Benachrichtigung wurde wegen eines Fehlers nicht gesendet. Bitte "
|
662 |
"überprüfen Sie das notifysubject und das notifymessage Attribut auf Fehler."
|
663 |
|
664 |
+
#: lib/wfu_constants.php:143
|
665 |
msgid ""
|
666 |
"Redirection not executed because redirection link is empty. Please check "
|
667 |
"redirectlink attribute."
|
669 |
"Umleitung nicht ausgeführt, da der Umleitungs-Link leer ist. Bitte "
|
670 |
"überprüfen Sie das redirectlink Attribut."
|
671 |
|
672 |
+
#: lib/wfu_constants.php:144
|
673 |
msgid ""
|
674 |
"Redirection not executed because not all files were successfully uploaded."
|
675 |
msgstr ""
|
676 |
"Umleitung nicht ausgeführt, da nicht alle Dateien erfolgreich hochgeladen "
|
677 |
"wurden."
|
678 |
|
679 |
+
#: lib/wfu_constants.php:145
|
680 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: lib/wfu_constants.php:146
|
684 |
msgid ""
|
685 |
"Hello admin\n"
|
686 |
"\n"
|
700 |
"Thanks"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: lib/wfu_constants.php:148
|
704 |
msgid ""
|
705 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
706 |
"message persists, contact administrator."
|
709 |
"versuche es erneut. Wenn die Meldung weiterhin, wenden Sie sich "
|
710 |
"Administrator."
|
711 |
|
712 |
+
#: lib/wfu_constants.php:149
|
713 |
msgid ""
|
714 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
715 |
"again to edit the shortcode."
|
717 |
"Der Shortcode konnte nicht bearbeitet, da sich der Inhalt der Seite geändert "
|
718 |
"hat. Versuchen Sie erneut den Shortcode zu bearbeiten."
|
719 |
|
720 |
+
#: lib/wfu_constants.php:150
|
721 |
msgid ""
|
722 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
723 |
"again to delete it."
|
725 |
"Der Shortcode konnte nicht gelöscht werden, da sich der Inhalt der Seite "
|
726 |
"geändert hat. Versuchen Sie erneut den Shortcode zu löschen."
|
727 |
|
728 |
+
#: lib/wfu_constants.php:151
|
729 |
msgid ""
|
730 |
"The page containing the shortcode has been modified and it is no longer "
|
731 |
"valid. Please go back to reload the shortcode."
|
733 |
"Die Seite mit dem Shortcode wurde modifiziert und ist nicht mehr gültig. "
|
734 |
"Bitte gehen Sie zurück um zu den Shortcode zu laden."
|
735 |
|
736 |
+
#: lib/wfu_constants.php:152
|
737 |
msgid ""
|
738 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
739 |
"back to reload the shortcode."
|
741 |
"Der Shortcode konnte nicht aktualisiert werden, da sich der Inhalt der Seite "
|
742 |
"geändert geändert hat. Gehen Sie zurück um zu den Shortcode neu zu laden."
|
743 |
|
744 |
+
#: lib/wfu_constants.php:153
|
745 |
msgid ""
|
746 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
747 |
"go back and reload the shortcode."
|
750 |
"Wenn das Problem weiterhin besteht, gehen Sie zurück und laden Sie den "
|
751 |
"Shortcode neu."
|
752 |
|
753 |
+
#: lib/wfu_constants.php:155
|
754 |
msgid "This is a test message"
|
755 |
msgstr "This is a test message"
|
756 |
|
757 |
+
#: lib/wfu_constants.php:156
|
758 |
msgid "This is a test administrator message"
|
759 |
msgstr "Dies ist eine Test-Admin-Nachricht"
|
760 |
|
761 |
+
#: lib/wfu_constants.php:157
|
762 |
msgid "File testfile 1 under test"
|
763 |
msgstr "Datei testfile 1 wird getestet"
|
764 |
|
765 |
+
#: lib/wfu_constants.php:158
|
766 |
msgid "File testfile 1 message"
|
767 |
msgstr "Datei testfile 1 Nachricht"
|
768 |
|
769 |
+
#: lib/wfu_constants.php:159
|
770 |
msgid "File testfile 1 administrator message"
|
771 |
msgstr "Datei testfile 1 Admin-Nachricht"
|
772 |
|
773 |
+
#: lib/wfu_constants.php:160
|
774 |
msgid "File testfile 2 under test"
|
775 |
msgstr "File testfile 2 wird getestet"
|
776 |
|
777 |
+
#: lib/wfu_constants.php:161
|
778 |
msgid "File testfile 2 message"
|
779 |
msgstr "Datei testfile 2 Nachricht"
|
780 |
|
781 |
+
#: lib/wfu_constants.php:162
|
782 |
msgid "File testfile 2 administrator message"
|
783 |
msgstr "Datei testfile 2 Admin-Nachricht"
|
784 |
|
785 |
+
#: lib/wfu_constants.php:164
|
786 |
msgid ""
|
787 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
788 |
"current user."
|
790 |
"Fügen Sie die Variable %userid% in den Text ein. Sie wird durch die ID des "
|
791 |
"aktuellen Benutzers ersetzt."
|
792 |
|
793 |
+
#: lib/wfu_constants.php:165
|
794 |
msgid ""
|
795 |
"Insert variable %username% inside text. It will be replaced by the username "
|
796 |
"of the current user."
|
798 |
"Fügen Sie die Variable %username% in den Text ein. Sie wird durch den "
|
799 |
"Benutzernamen des aktuellen Benutzers ersetzt."
|
800 |
|
801 |
+
#: lib/wfu_constants.php:166
|
802 |
msgid ""
|
803 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
804 |
"the current user."
|
806 |
"Fügen Sie die Variable %useremail% in den Text ein. Sie wird durch die E-"
|
807 |
"Mail-Adresse des aktuellen Benutzers ersetzt."
|
808 |
|
809 |
+
#: lib/wfu_constants.php:167
|
810 |
msgid ""
|
811 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
812 |
"of the uploaded file."
|
814 |
"Fügen Sie die Variable %filename% in den Text. Sie wird durch den Dateinamen "
|
815 |
"der hochgeladenen Dateien ersetzt."
|
816 |
|
817 |
+
#: lib/wfu_constants.php:168
|
818 |
msgid ""
|
819 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
820 |
"filepath of the uploaded file."
|
822 |
"Fügen Sie die Variable %filepath% in den Text ein. Sie wird durch die "
|
823 |
"vollständige Dateipfad der hochgeladenen Dateien ersetzt."
|
824 |
|
825 |
+
#: lib/wfu_constants.php:169
|
826 |
msgid ""
|
827 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
828 |
"the website."
|
830 |
"Fügen Sie die Variable %blogid% in den Text ein. Sie wird durch die Blog-ID "
|
831 |
"der Website ersetzt werden."
|
832 |
|
833 |
+
#: lib/wfu_constants.php:170
|
834 |
msgid ""
|
835 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
836 |
"current page."
|
838 |
"Fügen Sie die Variable %pageid% in den Text ein. Sie wird durch die ID der "
|
839 |
"aktuellen Seite ersetzt."
|
840 |
|
841 |
+
#: lib/wfu_constants.php:171
|
842 |
msgid ""
|
843 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
844 |
"the current page."
|
846 |
"Fügen Sie die Variable %pagetitle% in den Text ein. Sie wird durch dden "
|
847 |
"Title des aktuellen Benutzers ersetzt."
|
848 |
|
849 |
+
#: lib/wfu_constants.php:172
|
850 |
msgid ""
|
851 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
852 |
"drop-down list. It will be replaced by the value that the user entered in "
|
856 |
"Feld \"Benutzer\" aus der Dropdown Liste. Die Variable wird durch den Wert "
|
857 |
"ersetzt, die der Benutzer in dieses Feld eingetragen hat."
|
858 |
|
859 |
+
#: lib/wfu_constants.php:173
|
860 |
msgid "Insert variable %n% inside text to denote a line change."
|
861 |
msgstr ""
|
862 |
"Fügen Sie die Variable %n% in den Text ein, um eine Änderung der Zeile zu "
|
863 |
"kennzeichnen."
|
864 |
|
865 |
+
#: lib/wfu_constants.php:175
|
866 |
msgid "Test Mode"
|
867 |
msgstr "Test Modus"
|
868 |
|
869 |
+
#: lib/wfu_constants.php:176
|
870 |
msgid "select dir..."
|
871 |
msgstr "Wählen Sie das Verzeichnis ..."
|
872 |
|
873 |
+
#: lib/wfu_constants.php:177
|
874 |
msgid "type dir"
|
875 |
msgstr "Geben Sie das Verzeichnis ein"
|
876 |
|
877 |
+
#: lib/wfu_constants.php:178
|
878 |
msgid "Upload path: %filepath%"
|
879 |
msgstr "Upload-Pfad: %filepath%"
|
880 |
|
881 |
+
#: lib/wfu_constants.php:179
|
882 |
msgid "Failed upload path: %filepath%"
|
883 |
msgstr "Fehlerhafter Upload-Pfad: %filepath%"
|
884 |
|
885 |
+
#: lib/wfu_constants.php:180
|
886 |
msgid " (required)"
|
887 |
msgstr "(erforderlich)"
|
888 |
|
889 |
+
#: lib/wfu_constants.php:181
|
890 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
891 |
msgstr ""
|
892 |
"Dateien werden hochgeladen wird. Sind Sie sicher, dass Sie die Seite "
|
893 |
"verlassen wollen?"
|
894 |
|
895 |
+
#: lib/wfu_constants.php:182
|
896 |
msgid "checking captcha..."
|
897 |
msgstr "Prüfung captcha..."
|
898 |
|
899 |
+
#: lib/wfu_constants.php:183
|
900 |
msgid "refreshing..."
|
901 |
msgstr "erfrischend..."
|
902 |
|
903 |
+
#: lib/wfu_constants.php:184
|
904 |
msgid "correct captcha"
|
905 |
msgstr "korrekte captcha"
|
906 |
|
907 |
+
#: lib/wfu_constants.php:185
|
908 |
msgid "click to continue the upload"
|
909 |
msgstr "Klicken Sie, um das Hochladen fortsetzen"
|
910 |
|
911 |
+
#: lib/wfu_constants.php:186
|
912 |
msgid "Are you sure you want to delete this file?"
|
913 |
msgstr "Sind sie sicher, das sie diese datei löschen wollen?"
|
914 |
|
915 |
+
#: lib/wfu_constants.php:187
|
916 |
msgid "Are you sure you want to delete these files?"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: lib/wfu_constants.php:188
|
920 |
msgid "Bulk Actions"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: lib/wfu_constants.php:189
|
924 |
msgid "Apply"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: lib/wfu_constants.php:190
|
928 |
msgid "Are you sure that you want to cancel the upload?"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: lib/wfu_constants.php:191
|
932 |
msgid "cancel upload of this file"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: lib/wfu_constants.php:192
|
936 |
msgid "Upload in progress"
|
937 |
msgstr "Upload läuft"
|
938 |
|
939 |
+
#: lib/wfu_constants.php:193
|
940 |
msgid "Upload in progress with warnings!"
|
941 |
msgstr "Upload läuft mit Warnhinweisen!"
|
942 |
|
943 |
+
#: lib/wfu_constants.php:194
|
944 |
msgid "Upload in progress but some files already failed!"
|
945 |
msgstr "Upload läuft, aber einige Dateien bereits gescheitert!"
|
946 |
|
947 |
+
#: lib/wfu_constants.php:195
|
948 |
msgid "Upload in progress but no files uploaded so far!"
|
949 |
msgstr "Upload läuft aber keine Dateien hochgeladen bis jetzt!"
|
950 |
|
951 |
+
#: lib/wfu_constants.php:196
|
952 |
msgid "All files uploaded successfully"
|
953 |
msgstr "Alle Dateien erfolgreich hochgeladen"
|
954 |
|
955 |
+
#: lib/wfu_constants.php:197
|
956 |
msgid "All files uploaded successfully but there are warnings!"
|
957 |
msgstr "Alle Dateien erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
958 |
|
959 |
+
#: lib/wfu_constants.php:198
|
960 |
msgid "File uploaded successfully but there are warnings!"
|
961 |
msgstr "Datei erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
962 |
|
963 |
+
#: lib/wfu_constants.php:199
|
964 |
msgid "Some files failed to upload!"
|
965 |
msgstr "Einige Dateien konnten nicht hochgeladen werden!"
|
966 |
|
967 |
+
#: lib/wfu_constants.php:200
|
968 |
msgid "All files failed to upload"
|
969 |
msgstr "Alle Dateien konnten nicht hochgeladen werden"
|
970 |
|
971 |
+
#: lib/wfu_constants.php:201
|
972 |
msgid "File failed to upload"
|
973 |
msgstr "Datei konnte nicht hochgeladen werden"
|
974 |
|
975 |
+
#: lib/wfu_constants.php:202
|
976 |
msgid "There are no files to upload!"
|
977 |
msgstr "Es gibt keine Dateien zum Hochladen!"
|
978 |
|
979 |
+
#: lib/wfu_constants.php:203
|
980 |
msgid "Test upload message"
|
981 |
msgstr "Test-Upload-Nachricht"
|
982 |
|
983 |
+
#: lib/wfu_constants.php:204
|
984 |
msgid "JSON parse warning!"
|
985 |
msgstr "JSON parse Warnung!"
|
986 |
|
987 |
+
#: lib/wfu_constants.php:205
|
988 |
msgid "please wait while redirecting..."
|
989 |
msgstr "Bitte warten Sie, Sie werden umgeleitet ..."
|
990 |
|
991 |
+
#: lib/wfu_constants.php:207
|
992 |
msgid "Open visual shortcode editor in new window"
|
993 |
msgstr "Offenen des visuellen Shortcode-Editor in neuem Fenster"
|
994 |
|
995 |
+
#: lib/wfu_constants.php:208
|
996 |
msgid "loading visual editor"
|
997 |
msgstr "visueller Editor laden"
|
998 |
|
999 |
+
#: lib/wfu_constants.php:209
|
1000 |
msgid "Clear file list?"
|
1001 |
msgstr "Klar Dateiliste?"
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:210
|
1004 |
msgid "DROP HERE"
|
1005 |
msgstr "HIER ABLEGEN"
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:212
|
1008 |
msgid "record video"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:213
|
1012 |
msgid "take a picture"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:214
|
1016 |
msgid "turn webcam on/off"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:215
|
1020 |
msgid "go live again"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:216
|
1024 |
msgid "end recording"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:217
|
1028 |
msgid "play"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:218
|
1032 |
msgid "pause"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:219
|
1036 |
msgid "go to the beginning"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:220
|
1040 |
msgid "go to the end"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: lib/wfu_constants.php:222
|
1044 |
msgid "Wordpress File Upload Form"
|
1045 |
msgstr "Wordpress Datei Upload Formular"
|
1046 |
|
1047 |
+
#: lib/wfu_constants.php:223
|
1048 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1049 |
msgstr "Wordpress Datei Upload Plugin Uploader für Seitenleisten"
|
1050 |
|
1051 |
+
#: lib/wfu_constants.php:224
|
1052 |
msgid "Upload Files"
|
1053 |
msgstr "Dateien hochladen"
|
1054 |
|
languages/wp-file-upload-el_GR.mo
CHANGED
Binary file
|
languages/wp-file-upload-el_GR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: el\n"
|
@@ -211,12 +211,18 @@ msgid ""
|
|
211 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
212 |
"suspicious behaviour."
|
213 |
msgstr ""
|
|
|
|
|
|
|
|
|
214 |
|
215 |
#: lib/wfu_constants.php:54
|
216 |
msgid ""
|
217 |
"File not uploaded in order to prevent overflow of the website. Please "
|
218 |
"contact administrator."
|
219 |
msgstr ""
|
|
|
|
|
220 |
|
221 |
#: lib/wfu_constants.php:55
|
222 |
msgid "Targer folder doesn't exist."
|
@@ -312,7 +318,7 @@ msgid "Upload failed! Error occured while attemting to upload the file."
|
|
312 |
msgstr ""
|
313 |
"Η αποστολή απέτυχε! Συνέβη κάποιο σφάλμα κατά την αποστολή του αρχείου."
|
314 |
|
315 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
316 |
msgid "Upload failed!"
|
317 |
msgstr "Η αποστολή απέτυχε!"
|
318 |
|
@@ -588,30 +594,42 @@ msgid "Could not open file handles on chunk %d"
|
|
588 |
msgstr "Δεν ήταν δυνατό το άνοιγμα χειριστών αρχείου στο τμήμα %d"
|
589 |
|
590 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
591 |
msgid "You are not allowed to delete this file!"
|
592 |
msgstr "Δεν επιτρέπεται η διαγραφή αυτού του αρχείου!"
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid "File was not deleted!"
|
596 |
msgstr "Το αρχείο δε διαγράφηκε!"
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "No file was deleted!"
|
600 |
msgstr "Δε διαγράφηκε κανένα αρχείο!"
|
601 |
|
602 |
-
#: lib/wfu_constants.php:
|
603 |
msgid "Some files were not deleted!"
|
604 |
msgstr "Μερικά αρχεία δε διαγράφηκαν!"
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
msgid "Upload skipped! File already exists."
|
608 |
msgstr "Η αποστολή παραβλέφθηκε! Το αρχείο υπάρχει ήδη."
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid "The extension of the file does not match its contents."
|
612 |
msgstr "Η επέκταση του αρχείου δεν ταιριάζει με τα περιεχόμενά του."
|
613 |
|
614 |
-
#: lib/wfu_constants.php:
|
615 |
msgid ""
|
616 |
"Upload succeeded but the file is suspicious because its contents do not "
|
617 |
"match its extension. Its proper filename is: "
|
@@ -619,20 +637,20 @@ msgstr ""
|
|
619 |
"Η αποστολή ήταν επιτυχής αλλά το αρχείο είναι ύποπτο διότι τα περιεχόμενά "
|
620 |
"του δεν ταιριάζουν με την επέκτασή του. Το σωστό του όνομα είναι: "
|
621 |
|
622 |
-
#: lib/wfu_constants.php:
|
623 |
msgid "No files have been selected!"
|
624 |
msgstr "Δεν επιλέχθηκαν αρχεία!"
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
628 |
msgstr "Το plugin WPFilebase δεν ενημερώθηκε διότι δεν απεστάλη κανένα αρχείο."
|
629 |
|
630 |
-
#: lib/wfu_constants.php:
|
631 |
msgid "Notification email was not sent because there were no files uploaded."
|
632 |
msgstr ""
|
633 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν απεστάλη κανένα αρχείο."
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid ""
|
637 |
"Notification email was not sent because no recipients were defined. Please "
|
638 |
"check notifyrecipients attribute in the shortcode."
|
@@ -640,7 +658,7 @@ msgstr ""
|
|
640 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν ορίστηκαν παραλήπτες. "
|
641 |
"Παρακαλούμε ελέγξτε την ιδιότητα notifyrecipients στο shortcode."
|
642 |
|
643 |
-
#: lib/wfu_constants.php:
|
644 |
msgid ""
|
645 |
"Notification email was not sent due to an error. Please check "
|
646 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -648,7 +666,7 @@ msgstr ""
|
|
648 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email λόγω σφάλματος. Παρακαλούμε ελέγξτε "
|
649 |
"τις ιδιότητες notifyrecipients, notifysubject και notifymessage για σφάλματα."
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid ""
|
653 |
"Redirection not executed because redirection link is empty. Please check "
|
654 |
"redirectlink attribute."
|
@@ -656,18 +674,18 @@ msgstr ""
|
|
656 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι ο σύνδεσμος αναδρομολόγησης είναι "
|
657 |
"κενός. Παρακαλούμε ελέγξτε την ιδιότητα redirectlink."
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid ""
|
661 |
"Redirection not executed because not all files were successfully uploaded."
|
662 |
msgstr ""
|
663 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι δεν αποεστάλησαν όλα τα αρχεία "
|
664 |
"επιτυχώς."
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
668 |
-
msgstr ""
|
669 |
|
670 |
-
#: lib/wfu_constants.php:
|
671 |
msgid ""
|
672 |
"Hello admin\n"
|
673 |
"\n"
|
@@ -686,8 +704,25 @@ msgid ""
|
|
686 |
"\n"
|
687 |
"Thanks"
|
688 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
689 |
|
690 |
-
#: lib/wfu_constants.php:
|
691 |
msgid ""
|
692 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
693 |
"message persists, contact administrator."
|
@@ -695,7 +730,7 @@ msgstr ""
|
|
695 |
"Δεν κατέστη δυνατή η προσθήκη του shortcode στη σελίδα / άρθρο. Παρακαλώ "
|
696 |
"προσπάθησε ξανά. Αν το μήνυμα συνεχίζει, επικοινωνήστε με το διαχειριστή."
|
697 |
|
698 |
-
#: lib/wfu_constants.php:
|
699 |
msgid ""
|
700 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
701 |
"again to edit the shortcode."
|
@@ -703,7 +738,7 @@ msgstr ""
|
|
703 |
"Δεν ήταν δυνατή η επεξεργασία του shortcode διότι τα περιεχόμενα της σελίδας "
|
704 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να επεξεργαστείτε το shortcode."
|
705 |
|
706 |
-
#: lib/wfu_constants.php:
|
707 |
msgid ""
|
708 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
709 |
"again to delete it."
|
@@ -711,7 +746,7 @@ msgstr ""
|
|
711 |
"Δεν ήταν δυνατή η διαγραφή του shortcode διότι τα περιεχόμενα της σελίδας "
|
712 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να διαγράψετε το shortcode."
|
713 |
|
714 |
-
#: lib/wfu_constants.php:
|
715 |
msgid ""
|
716 |
"The page containing the shortcode has been modified and it is no longer "
|
717 |
"valid. Please go back to reload the shortcode."
|
@@ -719,7 +754,7 @@ msgstr ""
|
|
719 |
"Η σελίδα που περιέχει το shortcode τροποποιήθηκε και δεν είναι πλέον σε "
|
720 |
"ισχύ. Παρακαλούμε πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid ""
|
724 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
725 |
"back to reload the shortcode."
|
@@ -727,7 +762,7 @@ msgstr ""
|
|
727 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode διότι τα περιεχόμενα της σελίδας "
|
728 |
"άλλαξαν. Πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid ""
|
732 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
733 |
"go back and reload the shortcode."
|
@@ -735,39 +770,39 @@ msgstr ""
|
|
735 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode. Παρακαλούμε ξαναδοκιμάστε. Αν το "
|
736 |
"πρόβλημα παραμείνει, πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
737 |
|
738 |
-
#: lib/wfu_constants.php:
|
739 |
msgid "This is a test message"
|
740 |
msgstr "Αυτό είναι ένα μήνυμα ελέγχου"
|
741 |
|
742 |
-
#: lib/wfu_constants.php:
|
743 |
msgid "This is a test administrator message"
|
744 |
msgstr "Αυτό είναι ένα μήνυμα διαχειριστή ελέγχου"
|
745 |
|
746 |
-
#: lib/wfu_constants.php:
|
747 |
msgid "File testfile 1 under test"
|
748 |
msgstr "Αρχείο testfile 1 υπό έλεγχο"
|
749 |
|
750 |
-
#: lib/wfu_constants.php:
|
751 |
msgid "File testfile 1 message"
|
752 |
msgstr "Μήνυμα αρχείου testfile 1"
|
753 |
|
754 |
-
#: lib/wfu_constants.php:
|
755 |
msgid "File testfile 1 administrator message"
|
756 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 1"
|
757 |
|
758 |
-
#: lib/wfu_constants.php:
|
759 |
msgid "File testfile 2 under test"
|
760 |
msgstr "Αρχείο testfile 2 υπό έλεγχο"
|
761 |
|
762 |
-
#: lib/wfu_constants.php:
|
763 |
msgid "File testfile 2 message"
|
764 |
msgstr "Μήνυμα αρχείου testfile 2"
|
765 |
|
766 |
-
#: lib/wfu_constants.php:
|
767 |
msgid "File testfile 2 administrator message"
|
768 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 2"
|
769 |
|
770 |
-
#: lib/wfu_constants.php:
|
771 |
msgid ""
|
772 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
773 |
"current user."
|
@@ -775,7 +810,7 @@ msgstr ""
|
|
775 |
"Εισάγετε τη μεταβλητή %userid% στο κείμενο. Θα αντικατασταθεί από το id του "
|
776 |
"τρέχοντος χρήστη."
|
777 |
|
778 |
-
#: lib/wfu_constants.php:
|
779 |
msgid ""
|
780 |
"Insert variable %username% inside text. It will be replaced by the username "
|
781 |
"of the current user."
|
@@ -783,7 +818,7 @@ msgstr ""
|
|
783 |
"Εισάγετε τη μεταβλητή %username% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
784 |
"του τρέχοντος χρήστη."
|
785 |
|
786 |
-
#: lib/wfu_constants.php:
|
787 |
msgid ""
|
788 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
789 |
"the current user."
|
@@ -791,7 +826,7 @@ msgstr ""
|
|
791 |
"Εισάγετε τη μεταβλητή %useremail% στο κείμενο. Θα αντικατασταθεί από το "
|
792 |
"email του τρέχοντος χρήστη."
|
793 |
|
794 |
-
#: lib/wfu_constants.php:
|
795 |
msgid ""
|
796 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
797 |
"of the uploaded file."
|
@@ -799,7 +834,7 @@ msgstr ""
|
|
799 |
"Εισάγετε τη μεταβλητή %filename% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
800 |
"του αποστελλομένου αρχείου."
|
801 |
|
802 |
-
#: lib/wfu_constants.php:
|
803 |
msgid ""
|
804 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
805 |
"filepath of the uploaded file."
|
@@ -807,7 +842,7 @@ msgstr ""
|
|
807 |
"Εισάγετε τη μεταβλητή %filepath% στο κείμενο. Θα αντικατασταθεί από την "
|
808 |
"πλήρη διαδρομή του αποστελλομένου αρχείου."
|
809 |
|
810 |
-
#: lib/wfu_constants.php:
|
811 |
msgid ""
|
812 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
813 |
"the website."
|
@@ -815,7 +850,7 @@ msgstr ""
|
|
815 |
"Εισάγετε τη μεταβλητή %blogid% στο κείμενο. Θα αντικατασταθεί από το blog id "
|
816 |
"της ιστοσελίδας."
|
817 |
|
818 |
-
#: lib/wfu_constants.php:
|
819 |
msgid ""
|
820 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
821 |
"current page."
|
@@ -823,7 +858,7 @@ msgstr ""
|
|
823 |
"Εισάγετε τη μεταβλητή %pageid% στο κείμενο. Θα αντικατασταθεί από το id της "
|
824 |
"τρέχουσας σελίδας."
|
825 |
|
826 |
-
#: lib/wfu_constants.php:
|
827 |
msgid ""
|
828 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
829 |
"the current page."
|
@@ -831,7 +866,7 @@ msgstr ""
|
|
831 |
"Εισάγετε τη μεταβλητή %pagetitle% στο κείμενο. Θα αντικατασταθεί από τον "
|
832 |
"τίτλο της τρέχουσας σελίδας."
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid ""
|
836 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
837 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -841,197 +876,197 @@ msgstr ""
|
|
841 |
"από την εμφανιζόμενη dropdown λίστα. Θα αντικατασταθεί από την τιμή που "
|
842 |
"εισήγαγε ο χρήστης σε αυτό το πεδίο."
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "Insert variable %n% inside text to denote a line change."
|
846 |
msgstr ""
|
847 |
"Εισάγετε τη μεταβλητή %n% στο κείμενο για να υποδείξετε αλλαγή γραμμής."
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "Test Mode"
|
851 |
msgstr "Κατάσταση Ελέγχου"
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "select dir..."
|
855 |
msgstr "επιλογή καταλόγου..."
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "type dir"
|
859 |
msgstr "εισάγετε κατάλογο"
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "Upload path: %filepath%"
|
863 |
msgstr "Διαδρομή προορισμού: %filepath%"
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "Failed upload path: %filepath%"
|
867 |
msgstr "Εσφαλμένη διαδρομή προορισμού: %filepath%"
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid " (required)"
|
871 |
msgstr " (απαραίτητο)"
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
875 |
msgstr ""
|
876 |
"Υπάρχουν αρχεία που αποστέλλονται. Σίγουρα θέλετε να φύγετε από τη σελίδα;"
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid "checking captcha..."
|
880 |
msgstr "έλεγχος captcha..."
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid "refreshing..."
|
884 |
msgstr "ανανέωση..."
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid "correct captcha"
|
888 |
msgstr "σωστό captcha"
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid "click to continue the upload"
|
892 |
msgstr "πατήστε click για να συνεχίσει η αποστολή"
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid "Are you sure you want to delete this file?"
|
896 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο;"
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid "Are you sure you want to delete these files?"
|
900 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτά τα αρχεία;"
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid "Bulk Actions"
|
904 |
msgstr "Μαζικές Ενέργειες"
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid "Apply"
|
908 |
msgstr "Εκτέλεση"
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid "Are you sure that you want to cancel the upload?"
|
912 |
msgstr "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την αποστολή;"
|
913 |
|
914 |
-
#: lib/wfu_constants.php:
|
915 |
msgid "cancel upload of this file"
|
916 |
msgstr "ακυρώστε την αποστολή αυτού του αρχείου"
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid "Upload in progress"
|
920 |
msgstr "Αποστολή σε εξέλιξη"
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "Upload in progress with warnings!"
|
924 |
msgstr "Αποστολή σε εξέλιξη με προειδοποιήσεις!"
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "Upload in progress but some files already failed!"
|
928 |
msgstr "Αποστολή σε εξέλιξη αλλά κάποια αρχεία ήδη απέτυχαν!"
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "Upload in progress but no files uploaded so far!"
|
932 |
msgstr "Αποστολή σε εξέλιξη αλλά δεν απεστάλη κανένα αρχείο μέχρι τώρα!"
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "All files uploaded successfully"
|
936 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς"
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "All files uploaded successfully but there are warnings!"
|
940 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "File uploaded successfully but there are warnings!"
|
944 |
msgstr "Το αρχείο απεστάλη επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "Some files failed to upload!"
|
948 |
msgstr "Μερικά αρχεία απέτυχαν να αποσταλούν!"
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "All files failed to upload"
|
952 |
msgstr "Όλα τα αρχεία απέτυχαν να αποσταλούν"
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "File failed to upload"
|
956 |
msgstr "Το αρχείο απέτυχε να αποσταλεί"
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "There are no files to upload!"
|
960 |
msgstr "Δεν υπάρχουν αρχεία για αποστολή!"
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "Test upload message"
|
964 |
msgstr "Μήνυμα αποστολής ελέγχου"
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "JSON parse warning!"
|
968 |
msgstr "Προειδοποίηση μετατροπής JSON!"
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "please wait while redirecting..."
|
972 |
msgstr "παρακαλούμε περιμένετε ενώ γίνεται αναδρομολόγηση..."
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "Open visual shortcode editor in new window"
|
976 |
msgstr "Ανοίξτε τη γραφική επεξεργασία του shortcode σε νέο παράθυρο"
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "loading visual editor"
|
980 |
msgstr "φόρτωση του γραφικού επεξεργαστή"
|
981 |
|
982 |
-
#: lib/wfu_constants.php:
|
983 |
msgid "Clear file list?"
|
984 |
msgstr "Να γίνει καθαρισμός της λίστας αρχείων;"
|
985 |
|
986 |
-
#: lib/wfu_constants.php:
|
987 |
msgid "DROP HERE"
|
988 |
msgstr "ΑΦΗΣΤΕ ΕΔΩ"
|
989 |
|
990 |
-
#: lib/wfu_constants.php:
|
991 |
msgid "record video"
|
992 |
msgstr "εγγραφή video"
|
993 |
|
994 |
-
#: lib/wfu_constants.php:
|
995 |
msgid "take a picture"
|
996 |
msgstr "φωτογραφία"
|
997 |
|
998 |
-
#: lib/wfu_constants.php:
|
999 |
msgid "turn webcam on/off"
|
1000 |
msgstr "ενεργοποίηση/απενεργοποίηση κάμερας"
|
1001 |
|
1002 |
-
#: lib/wfu_constants.php:
|
1003 |
msgid "go live again"
|
1004 |
msgstr "επιστροφή σε ζωντανή λήψη"
|
1005 |
|
1006 |
-
#: lib/wfu_constants.php:
|
1007 |
msgid "end recording"
|
1008 |
msgstr "τέλος εγγραφής"
|
1009 |
|
1010 |
-
#: lib/wfu_constants.php:
|
1011 |
msgid "play"
|
1012 |
msgstr "αναπαραγωγή"
|
1013 |
|
1014 |
-
#: lib/wfu_constants.php:
|
1015 |
msgid "pause"
|
1016 |
msgstr "παύση"
|
1017 |
|
1018 |
-
#: lib/wfu_constants.php:
|
1019 |
msgid "go to the beginning"
|
1020 |
msgstr "μετάβαση στην αρχή"
|
1021 |
|
1022 |
-
#: lib/wfu_constants.php:
|
1023 |
msgid "go to the end"
|
1024 |
msgstr "μετάβαση στο τέλος"
|
1025 |
|
1026 |
-
#: lib/wfu_constants.php:
|
1027 |
msgid "Wordpress File Upload Form"
|
1028 |
msgstr "Φόρμα του Wordpress File Upload"
|
1029 |
|
1030 |
-
#: lib/wfu_constants.php:
|
1031 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1032 |
msgstr "Αποστολή αρχείων με το Wordpress File Upload plugin για sidebars"
|
1033 |
|
1034 |
-
#: lib/wfu_constants.php:
|
1035 |
msgid "Upload Files"
|
1036 |
msgstr "Αποστολή αρχείων"
|
1037 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:20+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:31+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: el\n"
|
211 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
212 |
"suspicious behaviour."
|
213 |
msgstr ""
|
214 |
+
"Αποστέλλονται πάρα πολλά αρχεία σε μικρό χρονικό διάστημα. Αυτή μπορεί να "
|
215 |
+
"είναι μία επίθεση τύπου Denial-Of-Service και για αυτό το λόγο το αρχείο "
|
216 |
+
"απορρίφθηκε. Παρακαλώ ελέγξτε το αρχείο καταγραφής των αποστελλόμενων "
|
217 |
+
"αρχείων για ύποπτη συμπεριφορά."
|
218 |
|
219 |
#: lib/wfu_constants.php:54
|
220 |
msgid ""
|
221 |
"File not uploaded in order to prevent overflow of the website. Please "
|
222 |
"contact administrator."
|
223 |
msgstr ""
|
224 |
+
"Το αρχείο δεν απεστάλλη προκειμένου να αποφευχθεί υπερφόρτωση της "
|
225 |
+
"ιστοσελίδας. Παρακαλώ επικοινωνήστε με το διαχειριστή."
|
226 |
|
227 |
#: lib/wfu_constants.php:55
|
228 |
msgid "Targer folder doesn't exist."
|
318 |
msgstr ""
|
319 |
"Η αποστολή απέτυχε! Συνέβη κάποιο σφάλμα κατά την αποστολή του αρχείου."
|
320 |
|
321 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
322 |
msgid "Upload failed!"
|
323 |
msgstr "Η αποστολή απέτυχε!"
|
324 |
|
594 |
msgstr "Δεν ήταν δυνατό το άνοιγμα χειριστών αρχείου στο τμήμα %d"
|
595 |
|
596 |
#: lib/wfu_constants.php:127
|
597 |
+
msgid "You are not allowed to download this file!"
|
598 |
+
msgstr "Δεν επιτρέπεται να κατεβάσετε αυτό το αρχείο!"
|
599 |
+
|
600 |
+
#: lib/wfu_constants.php:128
|
601 |
+
msgid "File does not exist!"
|
602 |
+
msgstr "Το αρχείο δεν υπάρχει!"
|
603 |
+
|
604 |
+
#: lib/wfu_constants.php:129
|
605 |
+
msgid "Could not download file!"
|
606 |
+
msgstr "Δεν ήταν δυνατό το κατέβασμα του αρχείου!"
|
607 |
+
|
608 |
+
#: lib/wfu_constants.php:130
|
609 |
msgid "You are not allowed to delete this file!"
|
610 |
msgstr "Δεν επιτρέπεται η διαγραφή αυτού του αρχείου!"
|
611 |
|
612 |
+
#: lib/wfu_constants.php:131
|
613 |
msgid "File was not deleted!"
|
614 |
msgstr "Το αρχείο δε διαγράφηκε!"
|
615 |
|
616 |
+
#: lib/wfu_constants.php:132
|
617 |
msgid "No file was deleted!"
|
618 |
msgstr "Δε διαγράφηκε κανένα αρχείο!"
|
619 |
|
620 |
+
#: lib/wfu_constants.php:133
|
621 |
msgid "Some files were not deleted!"
|
622 |
msgstr "Μερικά αρχεία δε διαγράφηκαν!"
|
623 |
|
624 |
+
#: lib/wfu_constants.php:135
|
625 |
msgid "Upload skipped! File already exists."
|
626 |
msgstr "Η αποστολή παραβλέφθηκε! Το αρχείο υπάρχει ήδη."
|
627 |
|
628 |
+
#: lib/wfu_constants.php:136
|
629 |
msgid "The extension of the file does not match its contents."
|
630 |
msgstr "Η επέκταση του αρχείου δεν ταιριάζει με τα περιεχόμενά του."
|
631 |
|
632 |
+
#: lib/wfu_constants.php:137
|
633 |
msgid ""
|
634 |
"Upload succeeded but the file is suspicious because its contents do not "
|
635 |
"match its extension. Its proper filename is: "
|
637 |
"Η αποστολή ήταν επιτυχής αλλά το αρχείο είναι ύποπτο διότι τα περιεχόμενά "
|
638 |
"του δεν ταιριάζουν με την επέκτασή του. Το σωστό του όνομα είναι: "
|
639 |
|
640 |
+
#: lib/wfu_constants.php:138
|
641 |
msgid "No files have been selected!"
|
642 |
msgstr "Δεν επιλέχθηκαν αρχεία!"
|
643 |
|
644 |
+
#: lib/wfu_constants.php:139
|
645 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
646 |
msgstr "Το plugin WPFilebase δεν ενημερώθηκε διότι δεν απεστάλη κανένα αρχείο."
|
647 |
|
648 |
+
#: lib/wfu_constants.php:140
|
649 |
msgid "Notification email was not sent because there were no files uploaded."
|
650 |
msgstr ""
|
651 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν απεστάλη κανένα αρχείο."
|
652 |
|
653 |
+
#: lib/wfu_constants.php:141
|
654 |
msgid ""
|
655 |
"Notification email was not sent because no recipients were defined. Please "
|
656 |
"check notifyrecipients attribute in the shortcode."
|
658 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν ορίστηκαν παραλήπτες. "
|
659 |
"Παρακαλούμε ελέγξτε την ιδιότητα notifyrecipients στο shortcode."
|
660 |
|
661 |
+
#: lib/wfu_constants.php:142
|
662 |
msgid ""
|
663 |
"Notification email was not sent due to an error. Please check "
|
664 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
666 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email λόγω σφάλματος. Παρακαλούμε ελέγξτε "
|
667 |
"τις ιδιότητες notifyrecipients, notifysubject και notifymessage για σφάλματα."
|
668 |
|
669 |
+
#: lib/wfu_constants.php:143
|
670 |
msgid ""
|
671 |
"Redirection not executed because redirection link is empty. Please check "
|
672 |
"redirectlink attribute."
|
674 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι ο σύνδεσμος αναδρομολόγησης είναι "
|
675 |
"κενός. Παρακαλούμε ελέγξτε την ιδιότητα redirectlink."
|
676 |
|
677 |
+
#: lib/wfu_constants.php:144
|
678 |
msgid ""
|
679 |
"Redirection not executed because not all files were successfully uploaded."
|
680 |
msgstr ""
|
681 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι δεν αποεστάλησαν όλα τα αρχεία "
|
682 |
"επιτυχώς."
|
683 |
|
684 |
+
#: lib/wfu_constants.php:145
|
685 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
686 |
+
msgstr "Πιθανή Επίθεση Τύπου Denial-Of-Service στο {SITE}"
|
687 |
|
688 |
+
#: lib/wfu_constants.php:146
|
689 |
msgid ""
|
690 |
"Hello admin\n"
|
691 |
"\n"
|
704 |
"\n"
|
705 |
"Thanks"
|
706 |
msgstr ""
|
707 |
+
"Γεια σου διαχειριστή\n"
|
708 |
+
"\n"
|
709 |
+
"Αυτό είναι ένα μήνυμα από το Wordpress File Upload Plugin για να σε "
|
710 |
+
"ενημερώσει ότι εντοπίστηκε πιθανή επίθεση Denial-Of-Service στο {SITE}.\n"
|
711 |
+
"\n"
|
712 |
+
"Το plugin εντόπισε περισσότερες από {FILENUM} αποστολές αρχείων μέσα σε "
|
713 |
+
"{INTERVAL} δευτερόλεπτα.\n"
|
714 |
+
"\n"
|
715 |
+
"Όλες οι αποστολές που υπερβαίνουν το όριο αυτό απορρίπτονται για να "
|
716 |
+
"προστατευτεί το website από υπερφόρτωση.\n"
|
717 |
+
"\n"
|
718 |
+
"Παρακαλώ ελέγξε το ιστορικό των αποστελλόμενων αρχείων που βρίσκεται στη "
|
719 |
+
"σελίδα του plugin στο Dashboard για τυχόν ύποπτη συμπεριφορά.\n"
|
720 |
+
"\n"
|
721 |
+
"Θα επακολουθήσει νεώτερο μήνυμα αν η κατάσταση παραμείνει ως έχει.\n"
|
722 |
+
"\n"
|
723 |
+
"Ευχαριστώ"
|
724 |
|
725 |
+
#: lib/wfu_constants.php:148
|
726 |
msgid ""
|
727 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
728 |
"message persists, contact administrator."
|
730 |
"Δεν κατέστη δυνατή η προσθήκη του shortcode στη σελίδα / άρθρο. Παρακαλώ "
|
731 |
"προσπάθησε ξανά. Αν το μήνυμα συνεχίζει, επικοινωνήστε με το διαχειριστή."
|
732 |
|
733 |
+
#: lib/wfu_constants.php:149
|
734 |
msgid ""
|
735 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
736 |
"again to edit the shortcode."
|
738 |
"Δεν ήταν δυνατή η επεξεργασία του shortcode διότι τα περιεχόμενα της σελίδας "
|
739 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να επεξεργαστείτε το shortcode."
|
740 |
|
741 |
+
#: lib/wfu_constants.php:150
|
742 |
msgid ""
|
743 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
744 |
"again to delete it."
|
746 |
"Δεν ήταν δυνατή η διαγραφή του shortcode διότι τα περιεχόμενα της σελίδας "
|
747 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να διαγράψετε το shortcode."
|
748 |
|
749 |
+
#: lib/wfu_constants.php:151
|
750 |
msgid ""
|
751 |
"The page containing the shortcode has been modified and it is no longer "
|
752 |
"valid. Please go back to reload the shortcode."
|
754 |
"Η σελίδα που περιέχει το shortcode τροποποιήθηκε και δεν είναι πλέον σε "
|
755 |
"ισχύ. Παρακαλούμε πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
756 |
|
757 |
+
#: lib/wfu_constants.php:152
|
758 |
msgid ""
|
759 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
760 |
"back to reload the shortcode."
|
762 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode διότι τα περιεχόμενα της σελίδας "
|
763 |
"άλλαξαν. Πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
764 |
|
765 |
+
#: lib/wfu_constants.php:153
|
766 |
msgid ""
|
767 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
768 |
"go back and reload the shortcode."
|
770 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode. Παρακαλούμε ξαναδοκιμάστε. Αν το "
|
771 |
"πρόβλημα παραμείνει, πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
772 |
|
773 |
+
#: lib/wfu_constants.php:155
|
774 |
msgid "This is a test message"
|
775 |
msgstr "Αυτό είναι ένα μήνυμα ελέγχου"
|
776 |
|
777 |
+
#: lib/wfu_constants.php:156
|
778 |
msgid "This is a test administrator message"
|
779 |
msgstr "Αυτό είναι ένα μήνυμα διαχειριστή ελέγχου"
|
780 |
|
781 |
+
#: lib/wfu_constants.php:157
|
782 |
msgid "File testfile 1 under test"
|
783 |
msgstr "Αρχείο testfile 1 υπό έλεγχο"
|
784 |
|
785 |
+
#: lib/wfu_constants.php:158
|
786 |
msgid "File testfile 1 message"
|
787 |
msgstr "Μήνυμα αρχείου testfile 1"
|
788 |
|
789 |
+
#: lib/wfu_constants.php:159
|
790 |
msgid "File testfile 1 administrator message"
|
791 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 1"
|
792 |
|
793 |
+
#: lib/wfu_constants.php:160
|
794 |
msgid "File testfile 2 under test"
|
795 |
msgstr "Αρχείο testfile 2 υπό έλεγχο"
|
796 |
|
797 |
+
#: lib/wfu_constants.php:161
|
798 |
msgid "File testfile 2 message"
|
799 |
msgstr "Μήνυμα αρχείου testfile 2"
|
800 |
|
801 |
+
#: lib/wfu_constants.php:162
|
802 |
msgid "File testfile 2 administrator message"
|
803 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 2"
|
804 |
|
805 |
+
#: lib/wfu_constants.php:164
|
806 |
msgid ""
|
807 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
808 |
"current user."
|
810 |
"Εισάγετε τη μεταβλητή %userid% στο κείμενο. Θα αντικατασταθεί από το id του "
|
811 |
"τρέχοντος χρήστη."
|
812 |
|
813 |
+
#: lib/wfu_constants.php:165
|
814 |
msgid ""
|
815 |
"Insert variable %username% inside text. It will be replaced by the username "
|
816 |
"of the current user."
|
818 |
"Εισάγετε τη μεταβλητή %username% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
819 |
"του τρέχοντος χρήστη."
|
820 |
|
821 |
+
#: lib/wfu_constants.php:166
|
822 |
msgid ""
|
823 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
824 |
"the current user."
|
826 |
"Εισάγετε τη μεταβλητή %useremail% στο κείμενο. Θα αντικατασταθεί από το "
|
827 |
"email του τρέχοντος χρήστη."
|
828 |
|
829 |
+
#: lib/wfu_constants.php:167
|
830 |
msgid ""
|
831 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
832 |
"of the uploaded file."
|
834 |
"Εισάγετε τη μεταβλητή %filename% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
835 |
"του αποστελλομένου αρχείου."
|
836 |
|
837 |
+
#: lib/wfu_constants.php:168
|
838 |
msgid ""
|
839 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
840 |
"filepath of the uploaded file."
|
842 |
"Εισάγετε τη μεταβλητή %filepath% στο κείμενο. Θα αντικατασταθεί από την "
|
843 |
"πλήρη διαδρομή του αποστελλομένου αρχείου."
|
844 |
|
845 |
+
#: lib/wfu_constants.php:169
|
846 |
msgid ""
|
847 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
848 |
"the website."
|
850 |
"Εισάγετε τη μεταβλητή %blogid% στο κείμενο. Θα αντικατασταθεί από το blog id "
|
851 |
"της ιστοσελίδας."
|
852 |
|
853 |
+
#: lib/wfu_constants.php:170
|
854 |
msgid ""
|
855 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
856 |
"current page."
|
858 |
"Εισάγετε τη μεταβλητή %pageid% στο κείμενο. Θα αντικατασταθεί από το id της "
|
859 |
"τρέχουσας σελίδας."
|
860 |
|
861 |
+
#: lib/wfu_constants.php:171
|
862 |
msgid ""
|
863 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
864 |
"the current page."
|
866 |
"Εισάγετε τη μεταβλητή %pagetitle% στο κείμενο. Θα αντικατασταθεί από τον "
|
867 |
"τίτλο της τρέχουσας σελίδας."
|
868 |
|
869 |
+
#: lib/wfu_constants.php:172
|
870 |
msgid ""
|
871 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
872 |
"drop-down list. It will be replaced by the value that the user entered in "
|
876 |
"από την εμφανιζόμενη dropdown λίστα. Θα αντικατασταθεί από την τιμή που "
|
877 |
"εισήγαγε ο χρήστης σε αυτό το πεδίο."
|
878 |
|
879 |
+
#: lib/wfu_constants.php:173
|
880 |
msgid "Insert variable %n% inside text to denote a line change."
|
881 |
msgstr ""
|
882 |
"Εισάγετε τη μεταβλητή %n% στο κείμενο για να υποδείξετε αλλαγή γραμμής."
|
883 |
|
884 |
+
#: lib/wfu_constants.php:175
|
885 |
msgid "Test Mode"
|
886 |
msgstr "Κατάσταση Ελέγχου"
|
887 |
|
888 |
+
#: lib/wfu_constants.php:176
|
889 |
msgid "select dir..."
|
890 |
msgstr "επιλογή καταλόγου..."
|
891 |
|
892 |
+
#: lib/wfu_constants.php:177
|
893 |
msgid "type dir"
|
894 |
msgstr "εισάγετε κατάλογο"
|
895 |
|
896 |
+
#: lib/wfu_constants.php:178
|
897 |
msgid "Upload path: %filepath%"
|
898 |
msgstr "Διαδρομή προορισμού: %filepath%"
|
899 |
|
900 |
+
#: lib/wfu_constants.php:179
|
901 |
msgid "Failed upload path: %filepath%"
|
902 |
msgstr "Εσφαλμένη διαδρομή προορισμού: %filepath%"
|
903 |
|
904 |
+
#: lib/wfu_constants.php:180
|
905 |
msgid " (required)"
|
906 |
msgstr " (απαραίτητο)"
|
907 |
|
908 |
+
#: lib/wfu_constants.php:181
|
909 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
910 |
msgstr ""
|
911 |
"Υπάρχουν αρχεία που αποστέλλονται. Σίγουρα θέλετε να φύγετε από τη σελίδα;"
|
912 |
|
913 |
+
#: lib/wfu_constants.php:182
|
914 |
msgid "checking captcha..."
|
915 |
msgstr "έλεγχος captcha..."
|
916 |
|
917 |
+
#: lib/wfu_constants.php:183
|
918 |
msgid "refreshing..."
|
919 |
msgstr "ανανέωση..."
|
920 |
|
921 |
+
#: lib/wfu_constants.php:184
|
922 |
msgid "correct captcha"
|
923 |
msgstr "σωστό captcha"
|
924 |
|
925 |
+
#: lib/wfu_constants.php:185
|
926 |
msgid "click to continue the upload"
|
927 |
msgstr "πατήστε click για να συνεχίσει η αποστολή"
|
928 |
|
929 |
+
#: lib/wfu_constants.php:186
|
930 |
msgid "Are you sure you want to delete this file?"
|
931 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο;"
|
932 |
|
933 |
+
#: lib/wfu_constants.php:187
|
934 |
msgid "Are you sure you want to delete these files?"
|
935 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτά τα αρχεία;"
|
936 |
|
937 |
+
#: lib/wfu_constants.php:188
|
938 |
msgid "Bulk Actions"
|
939 |
msgstr "Μαζικές Ενέργειες"
|
940 |
|
941 |
+
#: lib/wfu_constants.php:189
|
942 |
msgid "Apply"
|
943 |
msgstr "Εκτέλεση"
|
944 |
|
945 |
+
#: lib/wfu_constants.php:190
|
946 |
msgid "Are you sure that you want to cancel the upload?"
|
947 |
msgstr "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την αποστολή;"
|
948 |
|
949 |
+
#: lib/wfu_constants.php:191
|
950 |
msgid "cancel upload of this file"
|
951 |
msgstr "ακυρώστε την αποστολή αυτού του αρχείου"
|
952 |
|
953 |
+
#: lib/wfu_constants.php:192
|
954 |
msgid "Upload in progress"
|
955 |
msgstr "Αποστολή σε εξέλιξη"
|
956 |
|
957 |
+
#: lib/wfu_constants.php:193
|
958 |
msgid "Upload in progress with warnings!"
|
959 |
msgstr "Αποστολή σε εξέλιξη με προειδοποιήσεις!"
|
960 |
|
961 |
+
#: lib/wfu_constants.php:194
|
962 |
msgid "Upload in progress but some files already failed!"
|
963 |
msgstr "Αποστολή σε εξέλιξη αλλά κάποια αρχεία ήδη απέτυχαν!"
|
964 |
|
965 |
+
#: lib/wfu_constants.php:195
|
966 |
msgid "Upload in progress but no files uploaded so far!"
|
967 |
msgstr "Αποστολή σε εξέλιξη αλλά δεν απεστάλη κανένα αρχείο μέχρι τώρα!"
|
968 |
|
969 |
+
#: lib/wfu_constants.php:196
|
970 |
msgid "All files uploaded successfully"
|
971 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς"
|
972 |
|
973 |
+
#: lib/wfu_constants.php:197
|
974 |
msgid "All files uploaded successfully but there are warnings!"
|
975 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
976 |
|
977 |
+
#: lib/wfu_constants.php:198
|
978 |
msgid "File uploaded successfully but there are warnings!"
|
979 |
msgstr "Το αρχείο απεστάλη επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
980 |
|
981 |
+
#: lib/wfu_constants.php:199
|
982 |
msgid "Some files failed to upload!"
|
983 |
msgstr "Μερικά αρχεία απέτυχαν να αποσταλούν!"
|
984 |
|
985 |
+
#: lib/wfu_constants.php:200
|
986 |
msgid "All files failed to upload"
|
987 |
msgstr "Όλα τα αρχεία απέτυχαν να αποσταλούν"
|
988 |
|
989 |
+
#: lib/wfu_constants.php:201
|
990 |
msgid "File failed to upload"
|
991 |
msgstr "Το αρχείο απέτυχε να αποσταλεί"
|
992 |
|
993 |
+
#: lib/wfu_constants.php:202
|
994 |
msgid "There are no files to upload!"
|
995 |
msgstr "Δεν υπάρχουν αρχεία για αποστολή!"
|
996 |
|
997 |
+
#: lib/wfu_constants.php:203
|
998 |
msgid "Test upload message"
|
999 |
msgstr "Μήνυμα αποστολής ελέγχου"
|
1000 |
|
1001 |
+
#: lib/wfu_constants.php:204
|
1002 |
msgid "JSON parse warning!"
|
1003 |
msgstr "Προειδοποίηση μετατροπής JSON!"
|
1004 |
|
1005 |
+
#: lib/wfu_constants.php:205
|
1006 |
msgid "please wait while redirecting..."
|
1007 |
msgstr "παρακαλούμε περιμένετε ενώ γίνεται αναδρομολόγηση..."
|
1008 |
|
1009 |
+
#: lib/wfu_constants.php:207
|
1010 |
msgid "Open visual shortcode editor in new window"
|
1011 |
msgstr "Ανοίξτε τη γραφική επεξεργασία του shortcode σε νέο παράθυρο"
|
1012 |
|
1013 |
+
#: lib/wfu_constants.php:208
|
1014 |
msgid "loading visual editor"
|
1015 |
msgstr "φόρτωση του γραφικού επεξεργαστή"
|
1016 |
|
1017 |
+
#: lib/wfu_constants.php:209
|
1018 |
msgid "Clear file list?"
|
1019 |
msgstr "Να γίνει καθαρισμός της λίστας αρχείων;"
|
1020 |
|
1021 |
+
#: lib/wfu_constants.php:210
|
1022 |
msgid "DROP HERE"
|
1023 |
msgstr "ΑΦΗΣΤΕ ΕΔΩ"
|
1024 |
|
1025 |
+
#: lib/wfu_constants.php:212
|
1026 |
msgid "record video"
|
1027 |
msgstr "εγγραφή video"
|
1028 |
|
1029 |
+
#: lib/wfu_constants.php:213
|
1030 |
msgid "take a picture"
|
1031 |
msgstr "φωτογραφία"
|
1032 |
|
1033 |
+
#: lib/wfu_constants.php:214
|
1034 |
msgid "turn webcam on/off"
|
1035 |
msgstr "ενεργοποίηση/απενεργοποίηση κάμερας"
|
1036 |
|
1037 |
+
#: lib/wfu_constants.php:215
|
1038 |
msgid "go live again"
|
1039 |
msgstr "επιστροφή σε ζωντανή λήψη"
|
1040 |
|
1041 |
+
#: lib/wfu_constants.php:216
|
1042 |
msgid "end recording"
|
1043 |
msgstr "τέλος εγγραφής"
|
1044 |
|
1045 |
+
#: lib/wfu_constants.php:217
|
1046 |
msgid "play"
|
1047 |
msgstr "αναπαραγωγή"
|
1048 |
|
1049 |
+
#: lib/wfu_constants.php:218
|
1050 |
msgid "pause"
|
1051 |
msgstr "παύση"
|
1052 |
|
1053 |
+
#: lib/wfu_constants.php:219
|
1054 |
msgid "go to the beginning"
|
1055 |
msgstr "μετάβαση στην αρχή"
|
1056 |
|
1057 |
+
#: lib/wfu_constants.php:220
|
1058 |
msgid "go to the end"
|
1059 |
msgstr "μετάβαση στο τέλος"
|
1060 |
|
1061 |
+
#: lib/wfu_constants.php:222
|
1062 |
msgid "Wordpress File Upload Form"
|
1063 |
msgstr "Φόρμα του Wordpress File Upload"
|
1064 |
|
1065 |
+
#: lib/wfu_constants.php:223
|
1066 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1067 |
msgstr "Αποστολή αρχείων με το Wordpress File Upload plugin για sidebars"
|
1068 |
|
1069 |
+
#: lib/wfu_constants.php:224
|
1070 |
msgid "Upload Files"
|
1071 |
msgstr "Αποστολή αρχείων"
|
1072 |
|
languages/wp-file-upload-en_US.mo
CHANGED
Binary file
|
languages/wp-file-upload-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
@@ -279,7 +279,7 @@ msgstr ""
|
|
279 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
283 |
msgid "Upload failed!"
|
284 |
msgstr ""
|
285 |
|
@@ -523,75 +523,87 @@ msgid "Could not open file handles on chunk %d"
|
|
523 |
msgstr ""
|
524 |
|
525 |
#: lib/wfu_constants.php:127
|
526 |
-
msgid "You are not allowed to
|
527 |
msgstr ""
|
528 |
|
529 |
#: lib/wfu_constants.php:128
|
530 |
-
msgid "File
|
531 |
msgstr ""
|
532 |
|
533 |
#: lib/wfu_constants.php:129
|
534 |
-
msgid "
|
535 |
msgstr ""
|
536 |
|
537 |
#: lib/wfu_constants.php:130
|
538 |
-
msgid "
|
|
|
|
|
|
|
|
|
539 |
msgstr ""
|
540 |
|
541 |
#: lib/wfu_constants.php:132
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
#: lib/wfu_constants.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
msgid "The extension of the file does not match its contents."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: lib/wfu_constants.php:
|
550 |
msgid ""
|
551 |
"Upload succeeded but the file is suspicious because its contents do not "
|
552 |
"match its extension. Its proper filename is: "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: lib/wfu_constants.php:
|
556 |
msgid "No files have been selected!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid "Notification email was not sent because there were no files uploaded."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid ""
|
569 |
"Notification email was not sent because no recipients were defined. Please "
|
570 |
"check notifyrecipients attribute in the shortcode."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: lib/wfu_constants.php:
|
574 |
msgid ""
|
575 |
"Notification email was not sent due to an error. Please check "
|
576 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid ""
|
581 |
"Redirection not executed because redirection link is empty. Please check "
|
582 |
"redirectlink attribute."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid ""
|
587 |
"Redirection not executed because not all files were successfully uploaded."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: lib/wfu_constants.php:
|
591 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid ""
|
596 |
"Hello admin\n"
|
597 |
"\n"
|
@@ -611,317 +623,317 @@ msgid ""
|
|
611 |
"Thanks"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: lib/wfu_constants.php:
|
615 |
msgid ""
|
616 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
617 |
"message persists, contact administrator."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid ""
|
622 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
623 |
"again to edit the shortcode."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid ""
|
628 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
629 |
"again to delete it."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: lib/wfu_constants.php:
|
633 |
msgid ""
|
634 |
"The page containing the shortcode has been modified and it is no longer "
|
635 |
"valid. Please go back to reload the shortcode."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: lib/wfu_constants.php:
|
639 |
msgid ""
|
640 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
641 |
"back to reload the shortcode."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid ""
|
646 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
647 |
"go back and reload the shortcode."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: lib/wfu_constants.php:
|
651 |
msgid "This is a test message"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: lib/wfu_constants.php:
|
655 |
msgid "This is a test administrator message"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: lib/wfu_constants.php:
|
659 |
msgid "File testfile 1 under test"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: lib/wfu_constants.php:
|
663 |
msgid "File testfile 1 message"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid "File testfile 1 administrator message"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: lib/wfu_constants.php:
|
671 |
msgid "File testfile 2 under test"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: lib/wfu_constants.php:
|
675 |
msgid "File testfile 2 message"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: lib/wfu_constants.php:
|
679 |
msgid "File testfile 2 administrator message"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: lib/wfu_constants.php:
|
683 |
msgid ""
|
684 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
685 |
"current user."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid ""
|
690 |
"Insert variable %username% inside text. It will be replaced by the username "
|
691 |
"of the current user."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: lib/wfu_constants.php:
|
695 |
msgid ""
|
696 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
697 |
"the current user."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid ""
|
702 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
703 |
"of the uploaded file."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: lib/wfu_constants.php:
|
707 |
msgid ""
|
708 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
709 |
"filepath of the uploaded file."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid ""
|
714 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
715 |
"the website."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: lib/wfu_constants.php:
|
719 |
msgid ""
|
720 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
721 |
"current page."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: lib/wfu_constants.php:
|
725 |
msgid ""
|
726 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
727 |
"the current page."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid ""
|
732 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
733 |
"drop-down list. It will be replaced by the value that the user entered in "
|
734 |
"this field."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "Insert variable %n% inside text to denote a line change."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "Test Mode"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "select dir..."
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "type dir"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "Upload path: %filepath%"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
758 |
msgid "Failed upload path: %filepath%"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: lib/wfu_constants.php:
|
762 |
msgid " (required)"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: lib/wfu_constants.php:
|
766 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid "checking captcha..."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: lib/wfu_constants.php:
|
774 |
msgid "refreshing..."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: lib/wfu_constants.php:
|
778 |
msgid "correct captcha"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: lib/wfu_constants.php:
|
782 |
msgid "click to continue the upload"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: lib/wfu_constants.php:
|
786 |
msgid "Are you sure you want to delete this file?"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid "Are you sure you want to delete these files?"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid "Bulk Actions"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid "Apply"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: lib/wfu_constants.php:
|
802 |
msgid "Are you sure that you want to cancel the upload?"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid "cancel upload of this file"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: lib/wfu_constants.php:
|
810 |
msgid "Upload in progress"
|
811 |
msgstr "Uploading..."
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid "Upload in progress with warnings!"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid "Upload in progress but some files already failed!"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid "Upload in progress but no files uploaded so far!"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: lib/wfu_constants.php:
|
826 |
msgid "All files uploaded successfully"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "All files uploaded successfully but there are warnings!"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
834 |
msgid "File uploaded successfully but there are warnings!"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "Some files failed to upload!"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "All files failed to upload"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "File failed to upload"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "There are no files to upload!"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "Test upload message"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "JSON parse warning!"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "please wait while redirecting..."
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "Open visual shortcode editor in new window"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "loading visual editor"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "Clear file list?"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "DROP HERE"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid "record video"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid "take a picture"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: lib/wfu_constants.php:
|
890 |
msgid "turn webcam on/off"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: lib/wfu_constants.php:
|
894 |
msgid "go live again"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: lib/wfu_constants.php:
|
898 |
msgid "end recording"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: lib/wfu_constants.php:
|
902 |
msgid "play"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: lib/wfu_constants.php:
|
906 |
msgid "pause"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid "go to the beginning"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: lib/wfu_constants.php:
|
914 |
msgid "go to the end"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid "Wordpress File Upload Form"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "Upload Files"
|
927 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:31+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:31+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
279 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
283 |
msgid "Upload failed!"
|
284 |
msgstr ""
|
285 |
|
523 |
msgstr ""
|
524 |
|
525 |
#: lib/wfu_constants.php:127
|
526 |
+
msgid "You are not allowed to download this file!"
|
527 |
msgstr ""
|
528 |
|
529 |
#: lib/wfu_constants.php:128
|
530 |
+
msgid "File does not exist!"
|
531 |
msgstr ""
|
532 |
|
533 |
#: lib/wfu_constants.php:129
|
534 |
+
msgid "Could not download file!"
|
535 |
msgstr ""
|
536 |
|
537 |
#: lib/wfu_constants.php:130
|
538 |
+
msgid "You are not allowed to delete this file!"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: lib/wfu_constants.php:131
|
542 |
+
msgid "File was not deleted!"
|
543 |
msgstr ""
|
544 |
|
545 |
#: lib/wfu_constants.php:132
|
546 |
+
msgid "No file was deleted!"
|
547 |
msgstr ""
|
548 |
|
549 |
#: lib/wfu_constants.php:133
|
550 |
+
msgid "Some files were not deleted!"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: lib/wfu_constants.php:135
|
554 |
+
msgid "Upload skipped! File already exists."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: lib/wfu_constants.php:136
|
558 |
msgid "The extension of the file does not match its contents."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: lib/wfu_constants.php:137
|
562 |
msgid ""
|
563 |
"Upload succeeded but the file is suspicious because its contents do not "
|
564 |
"match its extension. Its proper filename is: "
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: lib/wfu_constants.php:138
|
568 |
msgid "No files have been selected!"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: lib/wfu_constants.php:139
|
572 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: lib/wfu_constants.php:140
|
576 |
msgid "Notification email was not sent because there were no files uploaded."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: lib/wfu_constants.php:141
|
580 |
msgid ""
|
581 |
"Notification email was not sent because no recipients were defined. Please "
|
582 |
"check notifyrecipients attribute in the shortcode."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: lib/wfu_constants.php:142
|
586 |
msgid ""
|
587 |
"Notification email was not sent due to an error. Please check "
|
588 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: lib/wfu_constants.php:143
|
592 |
msgid ""
|
593 |
"Redirection not executed because redirection link is empty. Please check "
|
594 |
"redirectlink attribute."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: lib/wfu_constants.php:144
|
598 |
msgid ""
|
599 |
"Redirection not executed because not all files were successfully uploaded."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: lib/wfu_constants.php:145
|
603 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: lib/wfu_constants.php:146
|
607 |
msgid ""
|
608 |
"Hello admin\n"
|
609 |
"\n"
|
623 |
"Thanks"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: lib/wfu_constants.php:148
|
627 |
msgid ""
|
628 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
629 |
"message persists, contact administrator."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: lib/wfu_constants.php:149
|
633 |
msgid ""
|
634 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
635 |
"again to edit the shortcode."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: lib/wfu_constants.php:150
|
639 |
msgid ""
|
640 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
641 |
"again to delete it."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: lib/wfu_constants.php:151
|
645 |
msgid ""
|
646 |
"The page containing the shortcode has been modified and it is no longer "
|
647 |
"valid. Please go back to reload the shortcode."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: lib/wfu_constants.php:152
|
651 |
msgid ""
|
652 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
653 |
"back to reload the shortcode."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: lib/wfu_constants.php:153
|
657 |
msgid ""
|
658 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
659 |
"go back and reload the shortcode."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: lib/wfu_constants.php:155
|
663 |
msgid "This is a test message"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: lib/wfu_constants.php:156
|
667 |
msgid "This is a test administrator message"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: lib/wfu_constants.php:157
|
671 |
msgid "File testfile 1 under test"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: lib/wfu_constants.php:158
|
675 |
msgid "File testfile 1 message"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: lib/wfu_constants.php:159
|
679 |
msgid "File testfile 1 administrator message"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: lib/wfu_constants.php:160
|
683 |
msgid "File testfile 2 under test"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: lib/wfu_constants.php:161
|
687 |
msgid "File testfile 2 message"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: lib/wfu_constants.php:162
|
691 |
msgid "File testfile 2 administrator message"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: lib/wfu_constants.php:164
|
695 |
msgid ""
|
696 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
697 |
"current user."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: lib/wfu_constants.php:165
|
701 |
msgid ""
|
702 |
"Insert variable %username% inside text. It will be replaced by the username "
|
703 |
"of the current user."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: lib/wfu_constants.php:166
|
707 |
msgid ""
|
708 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
709 |
"the current user."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: lib/wfu_constants.php:167
|
713 |
msgid ""
|
714 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
715 |
"of the uploaded file."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: lib/wfu_constants.php:168
|
719 |
msgid ""
|
720 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
721 |
"filepath of the uploaded file."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: lib/wfu_constants.php:169
|
725 |
msgid ""
|
726 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
727 |
"the website."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: lib/wfu_constants.php:170
|
731 |
msgid ""
|
732 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
733 |
"current page."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: lib/wfu_constants.php:171
|
737 |
msgid ""
|
738 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
739 |
"the current page."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: lib/wfu_constants.php:172
|
743 |
msgid ""
|
744 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
745 |
"drop-down list. It will be replaced by the value that the user entered in "
|
746 |
"this field."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: lib/wfu_constants.php:173
|
750 |
msgid "Insert variable %n% inside text to denote a line change."
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: lib/wfu_constants.php:175
|
754 |
msgid "Test Mode"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: lib/wfu_constants.php:176
|
758 |
msgid "select dir..."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: lib/wfu_constants.php:177
|
762 |
msgid "type dir"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: lib/wfu_constants.php:178
|
766 |
msgid "Upload path: %filepath%"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: lib/wfu_constants.php:179
|
770 |
msgid "Failed upload path: %filepath%"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: lib/wfu_constants.php:180
|
774 |
msgid " (required)"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: lib/wfu_constants.php:181
|
778 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: lib/wfu_constants.php:182
|
782 |
msgid "checking captcha..."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: lib/wfu_constants.php:183
|
786 |
msgid "refreshing..."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: lib/wfu_constants.php:184
|
790 |
msgid "correct captcha"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: lib/wfu_constants.php:185
|
794 |
msgid "click to continue the upload"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: lib/wfu_constants.php:186
|
798 |
msgid "Are you sure you want to delete this file?"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: lib/wfu_constants.php:187
|
802 |
msgid "Are you sure you want to delete these files?"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: lib/wfu_constants.php:188
|
806 |
msgid "Bulk Actions"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: lib/wfu_constants.php:189
|
810 |
msgid "Apply"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: lib/wfu_constants.php:190
|
814 |
msgid "Are you sure that you want to cancel the upload?"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: lib/wfu_constants.php:191
|
818 |
msgid "cancel upload of this file"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: lib/wfu_constants.php:192
|
822 |
msgid "Upload in progress"
|
823 |
msgstr "Uploading..."
|
824 |
|
825 |
+
#: lib/wfu_constants.php:193
|
826 |
msgid "Upload in progress with warnings!"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: lib/wfu_constants.php:194
|
830 |
msgid "Upload in progress but some files already failed!"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: lib/wfu_constants.php:195
|
834 |
msgid "Upload in progress but no files uploaded so far!"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: lib/wfu_constants.php:196
|
838 |
msgid "All files uploaded successfully"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: lib/wfu_constants.php:197
|
842 |
msgid "All files uploaded successfully but there are warnings!"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: lib/wfu_constants.php:198
|
846 |
msgid "File uploaded successfully but there are warnings!"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: lib/wfu_constants.php:199
|
850 |
msgid "Some files failed to upload!"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: lib/wfu_constants.php:200
|
854 |
msgid "All files failed to upload"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: lib/wfu_constants.php:201
|
858 |
msgid "File failed to upload"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: lib/wfu_constants.php:202
|
862 |
msgid "There are no files to upload!"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: lib/wfu_constants.php:203
|
866 |
msgid "Test upload message"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: lib/wfu_constants.php:204
|
870 |
msgid "JSON parse warning!"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: lib/wfu_constants.php:205
|
874 |
msgid "please wait while redirecting..."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: lib/wfu_constants.php:207
|
878 |
msgid "Open visual shortcode editor in new window"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: lib/wfu_constants.php:208
|
882 |
msgid "loading visual editor"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: lib/wfu_constants.php:209
|
886 |
msgid "Clear file list?"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: lib/wfu_constants.php:210
|
890 |
msgid "DROP HERE"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: lib/wfu_constants.php:212
|
894 |
msgid "record video"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: lib/wfu_constants.php:213
|
898 |
msgid "take a picture"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: lib/wfu_constants.php:214
|
902 |
msgid "turn webcam on/off"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: lib/wfu_constants.php:215
|
906 |
msgid "go live again"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: lib/wfu_constants.php:216
|
910 |
msgid "end recording"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: lib/wfu_constants.php:217
|
914 |
msgid "play"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: lib/wfu_constants.php:218
|
918 |
msgid "pause"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: lib/wfu_constants.php:219
|
922 |
msgid "go to the beginning"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: lib/wfu_constants.php:220
|
926 |
msgid "go to the end"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: lib/wfu_constants.php:222
|
930 |
msgid "Wordpress File Upload Form"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: lib/wfu_constants.php:223
|
934 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: lib/wfu_constants.php:224
|
938 |
msgid "Upload Files"
|
939 |
msgstr ""
|
languages/wp-file-upload-es_ES.mo
CHANGED
Binary file
|
languages/wp-file-upload-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: es\n"
|
@@ -317,7 +317,7 @@ msgstr ""
|
|
317 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
318 |
msgstr "Fallo en la carga! Ocurrió un error al intentar cargar el archivo."
|
319 |
|
320 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
321 |
msgid "Upload failed!"
|
322 |
msgstr "Fallo en la carga!"
|
323 |
|
@@ -586,30 +586,42 @@ msgid "Could not open file handles on chunk %d"
|
|
586 |
msgstr "No se pudieron abrir los identificadores de archivo en parte %d"
|
587 |
|
588 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
msgid "You are not allowed to delete this file!"
|
590 |
msgstr "Sin permiso para eliminar este archivo!"
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "File was not deleted!"
|
594 |
msgstr "El archivo no fue eliminado!"
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
msgid "No file was deleted!"
|
598 |
msgstr "Ningún archivo fue eliminado!"
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid "Some files were not deleted!"
|
602 |
msgstr "Algunos archivos no fueron eliminados!"
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "Upload skipped! File already exists."
|
606 |
msgstr "Carga omitida! El archivo ya existe."
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid "The extension of the file does not match its contents."
|
610 |
msgstr "La extensión del archivo no coincide con su conenido."
|
611 |
|
612 |
-
#: lib/wfu_constants.php:
|
613 |
msgid ""
|
614 |
"Upload succeeded but the file is suspicious because its contents do not "
|
615 |
"match its extension. Its proper filename is: "
|
@@ -617,21 +629,21 @@ msgstr ""
|
|
617 |
"La carga fue satisfactoria pero el archivo es sospechoso porque su contenido "
|
618 |
"no coincide con la extensión. El nombre de archivo adecuado es:"
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid "No files have been selected!"
|
622 |
msgstr "Ningún archivo seleccionado!"
|
623 |
|
624 |
-
#: lib/wfu_constants.php:
|
625 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
626 |
msgstr ""
|
627 |
"El complemento WPFilebase no fue actualizado porque ningún archivo fue "
|
628 |
"cargado."
|
629 |
|
630 |
-
#: lib/wfu_constants.php:
|
631 |
msgid "Notification email was not sent because there were no files uploaded."
|
632 |
msgstr "No se envió email de notificación porque ningún archivo fue cargado."
|
633 |
|
634 |
-
#: lib/wfu_constants.php:
|
635 |
msgid ""
|
636 |
"Notification email was not sent because no recipients were defined. Please "
|
637 |
"check notifyrecipients attribute in the shortcode."
|
@@ -639,7 +651,7 @@ msgstr ""
|
|
639 |
"No se envió email de notificación porque no se definieron destinatarios. Por "
|
640 |
"favor verificar el atributo notifyrecipients del shortcode."
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid ""
|
644 |
"Notification email was not sent due to an error. Please check "
|
645 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -648,7 +660,7 @@ msgstr ""
|
|
648 |
"no haya errores en los atributos notifyrecipients, notifysubject y "
|
649 |
"notifymessage."
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid ""
|
653 |
"Redirection not executed because redirection link is empty. Please check "
|
654 |
"redirectlink attribute."
|
@@ -656,18 +668,18 @@ msgstr ""
|
|
656 |
"La redirección no fue ejecutada porque el enlace de redirección está vacío. "
|
657 |
"Por favor verificar el atributo redirectlink."
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid ""
|
661 |
"Redirection not executed because not all files were successfully uploaded."
|
662 |
msgstr ""
|
663 |
"La redirección no fue ejecutada porque no todos los archivos se cargaron "
|
664 |
"satisfactoriamente."
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
668 |
msgstr "Potencial ataque de Denegación-De-Servicio en {SITE}"
|
669 |
|
670 |
-
#: lib/wfu_constants.php:
|
671 |
msgid ""
|
672 |
"Hello admin\n"
|
673 |
"\n"
|
@@ -704,7 +716,7 @@ msgstr ""
|
|
704 |
"\n"
|
705 |
"Gracias"
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
710 |
"message persists, contact administrator."
|
@@ -712,7 +724,7 @@ msgstr ""
|
|
712 |
"Fallo al agregar el shortcode a la página/entrada. Por favor intente "
|
713 |
"nuevamente. Si el mensaje persiste, contacte al administrador."
|
714 |
|
715 |
-
#: lib/wfu_constants.php:
|
716 |
msgid ""
|
717 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
718 |
"again to edit the shortcode."
|
@@ -720,7 +732,7 @@ msgstr ""
|
|
720 |
"Fallo al editar el shortcode porque el contenido de la página cambió. "
|
721 |
"Intente editar el shortcode nuevamente."
|
722 |
|
723 |
-
#: lib/wfu_constants.php:
|
724 |
msgid ""
|
725 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
726 |
"again to delete it."
|
@@ -728,7 +740,7 @@ msgstr ""
|
|
728 |
"Fallo al eliminar el shortcode porque el contenido de la página cambió. "
|
729 |
"Intente eliminarlo nuevamente."
|
730 |
|
731 |
-
#: lib/wfu_constants.php:
|
732 |
msgid ""
|
733 |
"The page containing the shortcode has been modified and it is no longer "
|
734 |
"valid. Please go back to reload the shortcode."
|
@@ -736,7 +748,7 @@ msgstr ""
|
|
736 |
"La página que contiene el shortcode fue modificada y ya no es válida. Por "
|
737 |
"favor vuelva a cargar el shortcode."
|
738 |
|
739 |
-
#: lib/wfu_constants.php:
|
740 |
msgid ""
|
741 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
742 |
"back to reload the shortcode."
|
@@ -744,7 +756,7 @@ msgstr ""
|
|
744 |
"Fallo al actualizar el shortcode porque el contenido de la página cambió. "
|
745 |
"Vuelva a cargar el shortcode."
|
746 |
|
747 |
-
#: lib/wfu_constants.php:
|
748 |
msgid ""
|
749 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
750 |
"go back and reload the shortcode."
|
@@ -752,39 +764,39 @@ msgstr ""
|
|
752 |
"Fallo al actualizar el shortcode. Por favor intente nuevamente. Si el "
|
753 |
"problema persiste, vuelva a cargar el shortcode."
|
754 |
|
755 |
-
#: lib/wfu_constants.php:
|
756 |
msgid "This is a test message"
|
757 |
msgstr "Este es un mensaje de prueba"
|
758 |
|
759 |
-
#: lib/wfu_constants.php:
|
760 |
msgid "This is a test administrator message"
|
761 |
msgstr "Este es un mensaje de prueba del administrador"
|
762 |
|
763 |
-
#: lib/wfu_constants.php:
|
764 |
msgid "File testfile 1 under test"
|
765 |
msgstr "Archivo testfile 1 en prueba"
|
766 |
|
767 |
-
#: lib/wfu_constants.php:
|
768 |
msgid "File testfile 1 message"
|
769 |
msgstr "Archivo testfile 1 mensaje"
|
770 |
|
771 |
-
#: lib/wfu_constants.php:
|
772 |
msgid "File testfile 1 administrator message"
|
773 |
msgstr "Archivo testfile 1 mensaje de administrador"
|
774 |
|
775 |
-
#: lib/wfu_constants.php:
|
776 |
msgid "File testfile 2 under test"
|
777 |
msgstr "Archivo testfile 2 en prueba"
|
778 |
|
779 |
-
#: lib/wfu_constants.php:
|
780 |
msgid "File testfile 2 message"
|
781 |
msgstr "Archivo testfile 2 mensaje"
|
782 |
|
783 |
-
#: lib/wfu_constants.php:
|
784 |
msgid "File testfile 2 administrator message"
|
785 |
msgstr "Archivo testfile 2 mensaje de administrador"
|
786 |
|
787 |
-
#: lib/wfu_constants.php:
|
788 |
msgid ""
|
789 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
790 |
"current user."
|
@@ -792,7 +804,7 @@ msgstr ""
|
|
792 |
"Insertar la variable %userid% dentro del texto. Será reemplazada por el id "
|
793 |
"del usuario actual."
|
794 |
|
795 |
-
#: lib/wfu_constants.php:
|
796 |
msgid ""
|
797 |
"Insert variable %username% inside text. It will be replaced by the username "
|
798 |
"of the current user."
|
@@ -800,7 +812,7 @@ msgstr ""
|
|
800 |
"Insertar la variable %username% dentro del texto. Será reemplazada por el "
|
801 |
"nombre del usuario actual."
|
802 |
|
803 |
-
#: lib/wfu_constants.php:
|
804 |
msgid ""
|
805 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
806 |
"the current user."
|
@@ -808,7 +820,7 @@ msgstr ""
|
|
808 |
"Insertar la variable %useremail% dentro del texto. Será reemplazada por el "
|
809 |
"email del usuario actual."
|
810 |
|
811 |
-
#: lib/wfu_constants.php:
|
812 |
msgid ""
|
813 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
814 |
"of the uploaded file."
|
@@ -816,7 +828,7 @@ msgstr ""
|
|
816 |
"Insertar la variable %filename% dentro del texto. Será reemplazada por el "
|
817 |
"nombre del archivo cargado."
|
818 |
|
819 |
-
#: lib/wfu_constants.php:
|
820 |
msgid ""
|
821 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
822 |
"filepath of the uploaded file."
|
@@ -824,7 +836,7 @@ msgstr ""
|
|
824 |
"Insertar la variable %filepath% dentro del texto. Será reemplazada por la "
|
825 |
"ruta completa al archivo cargado."
|
826 |
|
827 |
-
#: lib/wfu_constants.php:
|
828 |
msgid ""
|
829 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
830 |
"the website."
|
@@ -832,7 +844,7 @@ msgstr ""
|
|
832 |
"Insertar la variable %blogid% dentro del texto. Será reemplazada por la blog "
|
833 |
"id del sitio web."
|
834 |
|
835 |
-
#: lib/wfu_constants.php:
|
836 |
msgid ""
|
837 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
838 |
"current page."
|
@@ -840,7 +852,7 @@ msgstr ""
|
|
840 |
"Insertar la variable %pageid% dentro del texto. Será reemplazada por el id "
|
841 |
"de la página actual."
|
842 |
|
843 |
-
#: lib/wfu_constants.php:
|
844 |
msgid ""
|
845 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
846 |
"the current page."
|
@@ -848,7 +860,7 @@ msgstr ""
|
|
848 |
"Insertar variable %pagetitle% dentro del texto. Será reemplazada por el "
|
849 |
"título de la página actual."
|
850 |
|
851 |
-
#: lib/wfu_constants.php:
|
852 |
msgid ""
|
853 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
854 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -858,196 +870,196 @@ msgstr ""
|
|
858 |
"usuario de la lista desplegable. Será reemplazada por el valor que el "
|
859 |
"usuario ingresó en este campo."
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "Insert variable %n% inside text to denote a line change."
|
863 |
msgstr ""
|
864 |
"Insertar la variable %n% dentro del texto para denotar un cambio de línea."
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "Test Mode"
|
868 |
msgstr "Modo de Prueba"
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid "select dir..."
|
872 |
msgstr "elegir carpeta..."
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid "type dir"
|
876 |
msgstr "ingresar carpeta"
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid "Upload path: %filepath%"
|
880 |
msgstr "Ruta de carga: %filepath%"
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid "Failed upload path: %filepath%"
|
884 |
msgstr "Falló la ruta de carga: %filepath%"
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid " (required)"
|
888 |
msgstr "(requerido)"
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
892 |
msgstr "Los archivos están siendo cargados. ¿Desea salir de la página?"
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid "checking captcha..."
|
896 |
msgstr "verificando captcha..."
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid "refreshing..."
|
900 |
msgstr "recargando..."
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid "correct captcha"
|
904 |
msgstr "captcha correcto"
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid "click to continue the upload"
|
908 |
msgstr "click para continuar la carga"
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid "Are you sure you want to delete this file?"
|
912 |
msgstr "¿Desea eliminar este archivo?"
|
913 |
|
914 |
-
#: lib/wfu_constants.php:
|
915 |
msgid "Are you sure you want to delete these files?"
|
916 |
msgstr "¿Desea eliminar estos archivos?"
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid "Bulk Actions"
|
920 |
msgstr "Acciones en conjunto"
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "Apply"
|
924 |
msgstr "Aplicar"
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "Are you sure that you want to cancel the upload?"
|
928 |
msgstr "¿Desea cancelar la carga?"
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "cancel upload of this file"
|
932 |
msgstr "cancelar carga de este archivo"
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "Upload in progress"
|
936 |
msgstr "Carga en progreso"
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "Upload in progress with warnings!"
|
940 |
msgstr "Carga en progreso con advertencias!"
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "Upload in progress but some files already failed!"
|
944 |
msgstr "Carga en progreso pero algunos archivos ya fallaron!"
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "Upload in progress but no files uploaded so far!"
|
948 |
msgstr "Carga en progreso pero ningún archivo fue cargado aún!"
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "All files uploaded successfully"
|
952 |
msgstr "Todos los archivos fueron cargados satisfactoriamente"
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "All files uploaded successfully but there are warnings!"
|
956 |
msgstr ""
|
957 |
"Todos los archivos fueron cargados satisfactoriamente pero hay advertencias!"
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "File uploaded successfully but there are warnings!"
|
961 |
msgstr "El archivo fue cargado satisfactoriamente pero hubo advertencias!"
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "Some files failed to upload!"
|
965 |
msgstr "Falló la carga de algunos archivos!"
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "All files failed to upload"
|
969 |
msgstr "Falló la carga de todos los archivos"
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "File failed to upload"
|
973 |
msgstr "Falló la carga del archivo"
|
974 |
|
975 |
-
#: lib/wfu_constants.php:
|
976 |
msgid "There are no files to upload!"
|
977 |
msgstr "No hay archivos para cargar!"
|
978 |
|
979 |
-
#: lib/wfu_constants.php:
|
980 |
msgid "Test upload message"
|
981 |
msgstr "Mensaje de prueba de carga."
|
982 |
|
983 |
-
#: lib/wfu_constants.php:
|
984 |
msgid "JSON parse warning!"
|
985 |
msgstr "Advertencia de procesamiento JSON!"
|
986 |
|
987 |
-
#: lib/wfu_constants.php:
|
988 |
msgid "please wait while redirecting..."
|
989 |
msgstr "por favor espere mientras se redirecciona..."
|
990 |
|
991 |
-
#: lib/wfu_constants.php:
|
992 |
msgid "Open visual shortcode editor in new window"
|
993 |
msgstr "Abrir el editor visual de shortcode en una nueva ventana"
|
994 |
|
995 |
-
#: lib/wfu_constants.php:
|
996 |
msgid "loading visual editor"
|
997 |
msgstr "cargando editor visual"
|
998 |
|
999 |
-
#: lib/wfu_constants.php:
|
1000 |
msgid "Clear file list?"
|
1001 |
msgstr "Limpiar lista de archivos?"
|
1002 |
|
1003 |
-
#: lib/wfu_constants.php:
|
1004 |
msgid "DROP HERE"
|
1005 |
msgstr "SOLTAR AQUÍ"
|
1006 |
|
1007 |
-
#: lib/wfu_constants.php:
|
1008 |
msgid "record video"
|
1009 |
msgstr "grabar video"
|
1010 |
|
1011 |
-
#: lib/wfu_constants.php:
|
1012 |
msgid "take a picture"
|
1013 |
msgstr "tomar fotografía"
|
1014 |
|
1015 |
-
#: lib/wfu_constants.php:
|
1016 |
msgid "turn webcam on/off"
|
1017 |
msgstr "encender/apagar webcam"
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "go live again"
|
1021 |
msgstr "salir en vivo otra vez"
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "end recording"
|
1025 |
msgstr "finalizar grabación"
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "play"
|
1029 |
msgstr "reproducir"
|
1030 |
|
1031 |
-
#: lib/wfu_constants.php:
|
1032 |
msgid "pause"
|
1033 |
msgstr "pausa"
|
1034 |
|
1035 |
-
#: lib/wfu_constants.php:
|
1036 |
msgid "go to the beginning"
|
1037 |
msgstr "ir al principio"
|
1038 |
|
1039 |
-
#: lib/wfu_constants.php:
|
1040 |
msgid "go to the end"
|
1041 |
msgstr "ir al final"
|
1042 |
|
1043 |
-
#: lib/wfu_constants.php:
|
1044 |
msgid "Wordpress File Upload Form"
|
1045 |
msgstr "Formulario Wordpress File Upload"
|
1046 |
|
1047 |
-
#: lib/wfu_constants.php:
|
1048 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1049 |
msgstr "Cargador de complemento Wordpress File Uploader para sidebars"
|
1050 |
|
1051 |
-
#: lib/wfu_constants.php:
|
1052 |
msgid "Upload Files"
|
1053 |
msgstr "Cargar Archivos"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:31+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:32+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: es\n"
|
317 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
318 |
msgstr "Fallo en la carga! Ocurrió un error al intentar cargar el archivo."
|
319 |
|
320 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
321 |
msgid "Upload failed!"
|
322 |
msgstr "Fallo en la carga!"
|
323 |
|
586 |
msgstr "No se pudieron abrir los identificadores de archivo en parte %d"
|
587 |
|
588 |
#: lib/wfu_constants.php:127
|
589 |
+
msgid "You are not allowed to download this file!"
|
590 |
+
msgstr "¡No se puede descargar este archivo!"
|
591 |
+
|
592 |
+
#: lib/wfu_constants.php:128
|
593 |
+
msgid "File does not exist!"
|
594 |
+
msgstr "El archivo no existe!"
|
595 |
+
|
596 |
+
#: lib/wfu_constants.php:129
|
597 |
+
msgid "Could not download file!"
|
598 |
+
msgstr "No se puede descargar el archivo!"
|
599 |
+
|
600 |
+
#: lib/wfu_constants.php:130
|
601 |
msgid "You are not allowed to delete this file!"
|
602 |
msgstr "Sin permiso para eliminar este archivo!"
|
603 |
|
604 |
+
#: lib/wfu_constants.php:131
|
605 |
msgid "File was not deleted!"
|
606 |
msgstr "El archivo no fue eliminado!"
|
607 |
|
608 |
+
#: lib/wfu_constants.php:132
|
609 |
msgid "No file was deleted!"
|
610 |
msgstr "Ningún archivo fue eliminado!"
|
611 |
|
612 |
+
#: lib/wfu_constants.php:133
|
613 |
msgid "Some files were not deleted!"
|
614 |
msgstr "Algunos archivos no fueron eliminados!"
|
615 |
|
616 |
+
#: lib/wfu_constants.php:135
|
617 |
msgid "Upload skipped! File already exists."
|
618 |
msgstr "Carga omitida! El archivo ya existe."
|
619 |
|
620 |
+
#: lib/wfu_constants.php:136
|
621 |
msgid "The extension of the file does not match its contents."
|
622 |
msgstr "La extensión del archivo no coincide con su conenido."
|
623 |
|
624 |
+
#: lib/wfu_constants.php:137
|
625 |
msgid ""
|
626 |
"Upload succeeded but the file is suspicious because its contents do not "
|
627 |
"match its extension. Its proper filename is: "
|
629 |
"La carga fue satisfactoria pero el archivo es sospechoso porque su contenido "
|
630 |
"no coincide con la extensión. El nombre de archivo adecuado es:"
|
631 |
|
632 |
+
#: lib/wfu_constants.php:138
|
633 |
msgid "No files have been selected!"
|
634 |
msgstr "Ningún archivo seleccionado!"
|
635 |
|
636 |
+
#: lib/wfu_constants.php:139
|
637 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
638 |
msgstr ""
|
639 |
"El complemento WPFilebase no fue actualizado porque ningún archivo fue "
|
640 |
"cargado."
|
641 |
|
642 |
+
#: lib/wfu_constants.php:140
|
643 |
msgid "Notification email was not sent because there were no files uploaded."
|
644 |
msgstr "No se envió email de notificación porque ningún archivo fue cargado."
|
645 |
|
646 |
+
#: lib/wfu_constants.php:141
|
647 |
msgid ""
|
648 |
"Notification email was not sent because no recipients were defined. Please "
|
649 |
"check notifyrecipients attribute in the shortcode."
|
651 |
"No se envió email de notificación porque no se definieron destinatarios. Por "
|
652 |
"favor verificar el atributo notifyrecipients del shortcode."
|
653 |
|
654 |
+
#: lib/wfu_constants.php:142
|
655 |
msgid ""
|
656 |
"Notification email was not sent due to an error. Please check "
|
657 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
660 |
"no haya errores en los atributos notifyrecipients, notifysubject y "
|
661 |
"notifymessage."
|
662 |
|
663 |
+
#: lib/wfu_constants.php:143
|
664 |
msgid ""
|
665 |
"Redirection not executed because redirection link is empty. Please check "
|
666 |
"redirectlink attribute."
|
668 |
"La redirección no fue ejecutada porque el enlace de redirección está vacío. "
|
669 |
"Por favor verificar el atributo redirectlink."
|
670 |
|
671 |
+
#: lib/wfu_constants.php:144
|
672 |
msgid ""
|
673 |
"Redirection not executed because not all files were successfully uploaded."
|
674 |
msgstr ""
|
675 |
"La redirección no fue ejecutada porque no todos los archivos se cargaron "
|
676 |
"satisfactoriamente."
|
677 |
|
678 |
+
#: lib/wfu_constants.php:145
|
679 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
680 |
msgstr "Potencial ataque de Denegación-De-Servicio en {SITE}"
|
681 |
|
682 |
+
#: lib/wfu_constants.php:146
|
683 |
msgid ""
|
684 |
"Hello admin\n"
|
685 |
"\n"
|
716 |
"\n"
|
717 |
"Gracias"
|
718 |
|
719 |
+
#: lib/wfu_constants.php:148
|
720 |
msgid ""
|
721 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
722 |
"message persists, contact administrator."
|
724 |
"Fallo al agregar el shortcode a la página/entrada. Por favor intente "
|
725 |
"nuevamente. Si el mensaje persiste, contacte al administrador."
|
726 |
|
727 |
+
#: lib/wfu_constants.php:149
|
728 |
msgid ""
|
729 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
730 |
"again to edit the shortcode."
|
732 |
"Fallo al editar el shortcode porque el contenido de la página cambió. "
|
733 |
"Intente editar el shortcode nuevamente."
|
734 |
|
735 |
+
#: lib/wfu_constants.php:150
|
736 |
msgid ""
|
737 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
738 |
"again to delete it."
|
740 |
"Fallo al eliminar el shortcode porque el contenido de la página cambió. "
|
741 |
"Intente eliminarlo nuevamente."
|
742 |
|
743 |
+
#: lib/wfu_constants.php:151
|
744 |
msgid ""
|
745 |
"The page containing the shortcode has been modified and it is no longer "
|
746 |
"valid. Please go back to reload the shortcode."
|
748 |
"La página que contiene el shortcode fue modificada y ya no es válida. Por "
|
749 |
"favor vuelva a cargar el shortcode."
|
750 |
|
751 |
+
#: lib/wfu_constants.php:152
|
752 |
msgid ""
|
753 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
754 |
"back to reload the shortcode."
|
756 |
"Fallo al actualizar el shortcode porque el contenido de la página cambió. "
|
757 |
"Vuelva a cargar el shortcode."
|
758 |
|
759 |
+
#: lib/wfu_constants.php:153
|
760 |
msgid ""
|
761 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
762 |
"go back and reload the shortcode."
|
764 |
"Fallo al actualizar el shortcode. Por favor intente nuevamente. Si el "
|
765 |
"problema persiste, vuelva a cargar el shortcode."
|
766 |
|
767 |
+
#: lib/wfu_constants.php:155
|
768 |
msgid "This is a test message"
|
769 |
msgstr "Este es un mensaje de prueba"
|
770 |
|
771 |
+
#: lib/wfu_constants.php:156
|
772 |
msgid "This is a test administrator message"
|
773 |
msgstr "Este es un mensaje de prueba del administrador"
|
774 |
|
775 |
+
#: lib/wfu_constants.php:157
|
776 |
msgid "File testfile 1 under test"
|
777 |
msgstr "Archivo testfile 1 en prueba"
|
778 |
|
779 |
+
#: lib/wfu_constants.php:158
|
780 |
msgid "File testfile 1 message"
|
781 |
msgstr "Archivo testfile 1 mensaje"
|
782 |
|
783 |
+
#: lib/wfu_constants.php:159
|
784 |
msgid "File testfile 1 administrator message"
|
785 |
msgstr "Archivo testfile 1 mensaje de administrador"
|
786 |
|
787 |
+
#: lib/wfu_constants.php:160
|
788 |
msgid "File testfile 2 under test"
|
789 |
msgstr "Archivo testfile 2 en prueba"
|
790 |
|
791 |
+
#: lib/wfu_constants.php:161
|
792 |
msgid "File testfile 2 message"
|
793 |
msgstr "Archivo testfile 2 mensaje"
|
794 |
|
795 |
+
#: lib/wfu_constants.php:162
|
796 |
msgid "File testfile 2 administrator message"
|
797 |
msgstr "Archivo testfile 2 mensaje de administrador"
|
798 |
|
799 |
+
#: lib/wfu_constants.php:164
|
800 |
msgid ""
|
801 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
802 |
"current user."
|
804 |
"Insertar la variable %userid% dentro del texto. Será reemplazada por el id "
|
805 |
"del usuario actual."
|
806 |
|
807 |
+
#: lib/wfu_constants.php:165
|
808 |
msgid ""
|
809 |
"Insert variable %username% inside text. It will be replaced by the username "
|
810 |
"of the current user."
|
812 |
"Insertar la variable %username% dentro del texto. Será reemplazada por el "
|
813 |
"nombre del usuario actual."
|
814 |
|
815 |
+
#: lib/wfu_constants.php:166
|
816 |
msgid ""
|
817 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
818 |
"the current user."
|
820 |
"Insertar la variable %useremail% dentro del texto. Será reemplazada por el "
|
821 |
"email del usuario actual."
|
822 |
|
823 |
+
#: lib/wfu_constants.php:167
|
824 |
msgid ""
|
825 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
826 |
"of the uploaded file."
|
828 |
"Insertar la variable %filename% dentro del texto. Será reemplazada por el "
|
829 |
"nombre del archivo cargado."
|
830 |
|
831 |
+
#: lib/wfu_constants.php:168
|
832 |
msgid ""
|
833 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
834 |
"filepath of the uploaded file."
|
836 |
"Insertar la variable %filepath% dentro del texto. Será reemplazada por la "
|
837 |
"ruta completa al archivo cargado."
|
838 |
|
839 |
+
#: lib/wfu_constants.php:169
|
840 |
msgid ""
|
841 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
842 |
"the website."
|
844 |
"Insertar la variable %blogid% dentro del texto. Será reemplazada por la blog "
|
845 |
"id del sitio web."
|
846 |
|
847 |
+
#: lib/wfu_constants.php:170
|
848 |
msgid ""
|
849 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
850 |
"current page."
|
852 |
"Insertar la variable %pageid% dentro del texto. Será reemplazada por el id "
|
853 |
"de la página actual."
|
854 |
|
855 |
+
#: lib/wfu_constants.php:171
|
856 |
msgid ""
|
857 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
858 |
"the current page."
|
860 |
"Insertar variable %pagetitle% dentro del texto. Será reemplazada por el "
|
861 |
"título de la página actual."
|
862 |
|
863 |
+
#: lib/wfu_constants.php:172
|
864 |
msgid ""
|
865 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
866 |
"drop-down list. It will be replaced by the value that the user entered in "
|
870 |
"usuario de la lista desplegable. Será reemplazada por el valor que el "
|
871 |
"usuario ingresó en este campo."
|
872 |
|
873 |
+
#: lib/wfu_constants.php:173
|
874 |
msgid "Insert variable %n% inside text to denote a line change."
|
875 |
msgstr ""
|
876 |
"Insertar la variable %n% dentro del texto para denotar un cambio de línea."
|
877 |
|
878 |
+
#: lib/wfu_constants.php:175
|
879 |
msgid "Test Mode"
|
880 |
msgstr "Modo de Prueba"
|
881 |
|
882 |
+
#: lib/wfu_constants.php:176
|
883 |
msgid "select dir..."
|
884 |
msgstr "elegir carpeta..."
|
885 |
|
886 |
+
#: lib/wfu_constants.php:177
|
887 |
msgid "type dir"
|
888 |
msgstr "ingresar carpeta"
|
889 |
|
890 |
+
#: lib/wfu_constants.php:178
|
891 |
msgid "Upload path: %filepath%"
|
892 |
msgstr "Ruta de carga: %filepath%"
|
893 |
|
894 |
+
#: lib/wfu_constants.php:179
|
895 |
msgid "Failed upload path: %filepath%"
|
896 |
msgstr "Falló la ruta de carga: %filepath%"
|
897 |
|
898 |
+
#: lib/wfu_constants.php:180
|
899 |
msgid " (required)"
|
900 |
msgstr "(requerido)"
|
901 |
|
902 |
+
#: lib/wfu_constants.php:181
|
903 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
904 |
msgstr "Los archivos están siendo cargados. ¿Desea salir de la página?"
|
905 |
|
906 |
+
#: lib/wfu_constants.php:182
|
907 |
msgid "checking captcha..."
|
908 |
msgstr "verificando captcha..."
|
909 |
|
910 |
+
#: lib/wfu_constants.php:183
|
911 |
msgid "refreshing..."
|
912 |
msgstr "recargando..."
|
913 |
|
914 |
+
#: lib/wfu_constants.php:184
|
915 |
msgid "correct captcha"
|
916 |
msgstr "captcha correcto"
|
917 |
|
918 |
+
#: lib/wfu_constants.php:185
|
919 |
msgid "click to continue the upload"
|
920 |
msgstr "click para continuar la carga"
|
921 |
|
922 |
+
#: lib/wfu_constants.php:186
|
923 |
msgid "Are you sure you want to delete this file?"
|
924 |
msgstr "¿Desea eliminar este archivo?"
|
925 |
|
926 |
+
#: lib/wfu_constants.php:187
|
927 |
msgid "Are you sure you want to delete these files?"
|
928 |
msgstr "¿Desea eliminar estos archivos?"
|
929 |
|
930 |
+
#: lib/wfu_constants.php:188
|
931 |
msgid "Bulk Actions"
|
932 |
msgstr "Acciones en conjunto"
|
933 |
|
934 |
+
#: lib/wfu_constants.php:189
|
935 |
msgid "Apply"
|
936 |
msgstr "Aplicar"
|
937 |
|
938 |
+
#: lib/wfu_constants.php:190
|
939 |
msgid "Are you sure that you want to cancel the upload?"
|
940 |
msgstr "¿Desea cancelar la carga?"
|
941 |
|
942 |
+
#: lib/wfu_constants.php:191
|
943 |
msgid "cancel upload of this file"
|
944 |
msgstr "cancelar carga de este archivo"
|
945 |
|
946 |
+
#: lib/wfu_constants.php:192
|
947 |
msgid "Upload in progress"
|
948 |
msgstr "Carga en progreso"
|
949 |
|
950 |
+
#: lib/wfu_constants.php:193
|
951 |
msgid "Upload in progress with warnings!"
|
952 |
msgstr "Carga en progreso con advertencias!"
|
953 |
|
954 |
+
#: lib/wfu_constants.php:194
|
955 |
msgid "Upload in progress but some files already failed!"
|
956 |
msgstr "Carga en progreso pero algunos archivos ya fallaron!"
|
957 |
|
958 |
+
#: lib/wfu_constants.php:195
|
959 |
msgid "Upload in progress but no files uploaded so far!"
|
960 |
msgstr "Carga en progreso pero ningún archivo fue cargado aún!"
|
961 |
|
962 |
+
#: lib/wfu_constants.php:196
|
963 |
msgid "All files uploaded successfully"
|
964 |
msgstr "Todos los archivos fueron cargados satisfactoriamente"
|
965 |
|
966 |
+
#: lib/wfu_constants.php:197
|
967 |
msgid "All files uploaded successfully but there are warnings!"
|
968 |
msgstr ""
|
969 |
"Todos los archivos fueron cargados satisfactoriamente pero hay advertencias!"
|
970 |
|
971 |
+
#: lib/wfu_constants.php:198
|
972 |
msgid "File uploaded successfully but there are warnings!"
|
973 |
msgstr "El archivo fue cargado satisfactoriamente pero hubo advertencias!"
|
974 |
|
975 |
+
#: lib/wfu_constants.php:199
|
976 |
msgid "Some files failed to upload!"
|
977 |
msgstr "Falló la carga de algunos archivos!"
|
978 |
|
979 |
+
#: lib/wfu_constants.php:200
|
980 |
msgid "All files failed to upload"
|
981 |
msgstr "Falló la carga de todos los archivos"
|
982 |
|
983 |
+
#: lib/wfu_constants.php:201
|
984 |
msgid "File failed to upload"
|
985 |
msgstr "Falló la carga del archivo"
|
986 |
|
987 |
+
#: lib/wfu_constants.php:202
|
988 |
msgid "There are no files to upload!"
|
989 |
msgstr "No hay archivos para cargar!"
|
990 |
|
991 |
+
#: lib/wfu_constants.php:203
|
992 |
msgid "Test upload message"
|
993 |
msgstr "Mensaje de prueba de carga."
|
994 |
|
995 |
+
#: lib/wfu_constants.php:204
|
996 |
msgid "JSON parse warning!"
|
997 |
msgstr "Advertencia de procesamiento JSON!"
|
998 |
|
999 |
+
#: lib/wfu_constants.php:205
|
1000 |
msgid "please wait while redirecting..."
|
1001 |
msgstr "por favor espere mientras se redirecciona..."
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:207
|
1004 |
msgid "Open visual shortcode editor in new window"
|
1005 |
msgstr "Abrir el editor visual de shortcode en una nueva ventana"
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:208
|
1008 |
msgid "loading visual editor"
|
1009 |
msgstr "cargando editor visual"
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:209
|
1012 |
msgid "Clear file list?"
|
1013 |
msgstr "Limpiar lista de archivos?"
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:210
|
1016 |
msgid "DROP HERE"
|
1017 |
msgstr "SOLTAR AQUÍ"
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:212
|
1020 |
msgid "record video"
|
1021 |
msgstr "grabar video"
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:213
|
1024 |
msgid "take a picture"
|
1025 |
msgstr "tomar fotografía"
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:214
|
1028 |
msgid "turn webcam on/off"
|
1029 |
msgstr "encender/apagar webcam"
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:215
|
1032 |
msgid "go live again"
|
1033 |
msgstr "salir en vivo otra vez"
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:216
|
1036 |
msgid "end recording"
|
1037 |
msgstr "finalizar grabación"
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:217
|
1040 |
msgid "play"
|
1041 |
msgstr "reproducir"
|
1042 |
|
1043 |
+
#: lib/wfu_constants.php:218
|
1044 |
msgid "pause"
|
1045 |
msgstr "pausa"
|
1046 |
|
1047 |
+
#: lib/wfu_constants.php:219
|
1048 |
msgid "go to the beginning"
|
1049 |
msgstr "ir al principio"
|
1050 |
|
1051 |
+
#: lib/wfu_constants.php:220
|
1052 |
msgid "go to the end"
|
1053 |
msgstr "ir al final"
|
1054 |
|
1055 |
+
#: lib/wfu_constants.php:222
|
1056 |
msgid "Wordpress File Upload Form"
|
1057 |
msgstr "Formulario Wordpress File Upload"
|
1058 |
|
1059 |
+
#: lib/wfu_constants.php:223
|
1060 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1061 |
msgstr "Cargador de complemento Wordpress File Uploader para sidebars"
|
1062 |
|
1063 |
+
#: lib/wfu_constants.php:224
|
1064 |
msgid "Upload Files"
|
1065 |
msgstr "Cargar Archivos"
|
languages/wp-file-upload-fr_FR.mo
CHANGED
Binary file
|
languages/wp-file-upload-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: Eric D. Valachs <ericduval@laposte.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr_FR\n"
|
@@ -315,7 +315,7 @@ msgstr ""
|
|
315 |
"Envoi impossible ! Une erreur est survenue pendant la tentative d'envoi du "
|
316 |
"fichier."
|
317 |
|
318 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
319 |
msgid "Upload failed!"
|
320 |
msgstr "Envoi impossible !"
|
321 |
|
@@ -584,52 +584,64 @@ msgid "Could not open file handles on chunk %d"
|
|
584 |
msgstr "Impossible d'ouvrir le fichier handles sur bloc %d"
|
585 |
|
586 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
msgid "You are not allowed to delete this file!"
|
588 |
msgstr "Vous n' êtes pas autorisé à supprimer ce fichier !"
|
589 |
|
590 |
-
#: lib/wfu_constants.php:
|
591 |
msgid "File was not deleted!"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid "No file was deleted!"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "Some files were not deleted!"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: lib/wfu_constants.php:
|
603 |
msgid "Upload skipped! File already exists."
|
604 |
msgstr "Envoi ignoré ! Le fichier existe déjà."
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
msgid "The extension of the file does not match its contents."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid ""
|
612 |
"Upload succeeded but the file is suspicious because its contents do not "
|
613 |
"match its extension. Its proper filename is: "
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: lib/wfu_constants.php:
|
617 |
msgid "No files have been selected!"
|
618 |
msgstr "Aucun fichier n'a été envoyé !"
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
622 |
msgstr ""
|
623 |
"WPFilebase Plugin n'a pas été mis à jour car il n'y a pas de fichiers à "
|
624 |
"envoyer."
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid "Notification email was not sent because there were no files uploaded."
|
628 |
msgstr ""
|
629 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de fichiers à "
|
630 |
"envoyer."
|
631 |
|
632 |
-
#: lib/wfu_constants.php:
|
633 |
msgid ""
|
634 |
"Notification email was not sent because no recipients were defined. Please "
|
635 |
"check notifyrecipients attribute in the shortcode."
|
@@ -637,7 +649,7 @@ msgstr ""
|
|
637 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de destinataire. "
|
638 |
"Merci de vérifier l'attribut notifyrecipients dans le shortcode."
|
639 |
|
640 |
-
#: lib/wfu_constants.php:
|
641 |
msgid ""
|
642 |
"Notification email was not sent due to an error. Please check "
|
643 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -645,7 +657,7 @@ msgstr ""
|
|
645 |
"Le mail de notification n'a pas été envoyé car il n'y a une erreur. Merci de "
|
646 |
"vérifier les attributs notifyrecipients, notifysubject et notifymessage."
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid ""
|
650 |
"Redirection not executed because redirection link is empty. Please check "
|
651 |
"redirectlink attribute."
|
@@ -653,18 +665,18 @@ msgstr ""
|
|
653 |
"La redirection n'a pas été effectuée car le lien de redirection est vide. "
|
654 |
"Merci de vérifier l'attribut redirectlink."
|
655 |
|
656 |
-
#: lib/wfu_constants.php:
|
657 |
msgid ""
|
658 |
"Redirection not executed because not all files were successfully uploaded."
|
659 |
msgstr ""
|
660 |
"La redirection n'est pas exécutée car tous les fichiers n'ont pas été "
|
661 |
"envoyés."
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid ""
|
669 |
"Hello admin\n"
|
670 |
"\n"
|
@@ -684,7 +696,7 @@ msgid ""
|
|
684 |
"Thanks"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: lib/wfu_constants.php:
|
688 |
msgid ""
|
689 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
690 |
"message persists, contact administrator."
|
@@ -692,7 +704,7 @@ msgstr ""
|
|
692 |
"Impossible d' ajouter le shortcode à la page / poste. Essayez à nouveau. Si "
|
693 |
"le message persiste, contactez l' administrateur."
|
694 |
|
695 |
-
#: lib/wfu_constants.php:
|
696 |
msgid ""
|
697 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
698 |
"again to edit the shortcode."
|
@@ -700,7 +712,7 @@ msgstr ""
|
|
700 |
"Impossible de modifier le shortcode parce que le contenu de la page a "
|
701 |
"changé. Essayez à nouveau de modifier le shortcode."
|
702 |
|
703 |
-
#: lib/wfu_constants.php:
|
704 |
msgid ""
|
705 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
706 |
"again to delete it."
|
@@ -708,7 +720,7 @@ msgstr ""
|
|
708 |
"Impossible de supprimer le shortcode parce que le contenu de la page a "
|
709 |
"changé. Essayez à nouveau de le supprimer."
|
710 |
|
711 |
-
#: lib/wfu_constants.php:
|
712 |
msgid ""
|
713 |
"The page containing the shortcode has been modified and it is no longer "
|
714 |
"valid. Please go back to reload the shortcode."
|
@@ -716,7 +728,7 @@ msgstr ""
|
|
716 |
"La page contenant le shortcode a été modifié et il n'est plus valide. "
|
717 |
"Rechargez le shortcode."
|
718 |
|
719 |
-
#: lib/wfu_constants.php:
|
720 |
msgid ""
|
721 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
722 |
"back to reload the shortcode."
|
@@ -724,7 +736,7 @@ msgstr ""
|
|
724 |
"Impossible de mettre à jour le shortcode parce que le contenu de la page a "
|
725 |
"changé. Rechargez le shortcode."
|
726 |
|
727 |
-
#: lib/wfu_constants.php:
|
728 |
msgid ""
|
729 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
730 |
"go back and reload the shortcode."
|
@@ -732,39 +744,39 @@ msgstr ""
|
|
732 |
"Impossible de mettre à jour le shortcode. Essayez à nouveau. Si le problème "
|
733 |
"persiste, rechargez le shortcode."
|
734 |
|
735 |
-
#: lib/wfu_constants.php:
|
736 |
msgid "This is a test message"
|
737 |
msgstr "Ceci est un message de test"
|
738 |
|
739 |
-
#: lib/wfu_constants.php:
|
740 |
msgid "This is a test administrator message"
|
741 |
msgstr "Ceci est un message administrateur de test"
|
742 |
|
743 |
-
#: lib/wfu_constants.php:
|
744 |
msgid "File testfile 1 under test"
|
745 |
msgstr "File testfile 1 under test"
|
746 |
|
747 |
-
#: lib/wfu_constants.php:
|
748 |
msgid "File testfile 1 message"
|
749 |
msgstr "File testfile 1 message"
|
750 |
|
751 |
-
#: lib/wfu_constants.php:
|
752 |
msgid "File testfile 1 administrator message"
|
753 |
msgstr "Message administrateur File testfile"
|
754 |
|
755 |
-
#: lib/wfu_constants.php:
|
756 |
msgid "File testfile 2 under test"
|
757 |
msgstr "En test File testfile"
|
758 |
|
759 |
-
#: lib/wfu_constants.php:
|
760 |
msgid "File testfile 2 message"
|
761 |
msgstr "Message File testfile 2"
|
762 |
|
763 |
-
#: lib/wfu_constants.php:
|
764 |
msgid "File testfile 2 administrator message"
|
765 |
msgstr "Message administrateur File testfile 2"
|
766 |
|
767 |
-
#: lib/wfu_constants.php:
|
768 |
msgid ""
|
769 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
770 |
"current user."
|
@@ -772,7 +784,7 @@ msgstr ""
|
|
772 |
"Insérez %userid% variable dans le texte. Il sera remplacé par l'id de "
|
773 |
"l'utilisateur courant."
|
774 |
|
775 |
-
#: lib/wfu_constants.php:
|
776 |
msgid ""
|
777 |
"Insert variable %username% inside text. It will be replaced by the username "
|
778 |
"of the current user."
|
@@ -780,7 +792,7 @@ msgstr ""
|
|
780 |
"Insérez la variable %username% dans le texte. Il sera remplacé par le "
|
781 |
"username de l'utilisateur courant."
|
782 |
|
783 |
-
#: lib/wfu_constants.php:
|
784 |
msgid ""
|
785 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
786 |
"the current user."
|
@@ -788,7 +800,7 @@ msgstr ""
|
|
788 |
"Insérez la variable %useremail% dans le texte. Il sera remplacé par l'email "
|
789 |
"de l'utilisateur courant."
|
790 |
|
791 |
-
#: lib/wfu_constants.php:
|
792 |
msgid ""
|
793 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
794 |
"of the uploaded file."
|
@@ -796,7 +808,7 @@ msgstr ""
|
|
796 |
"Insérez la variable %filename% dans le texte. Il sera remplacé par le nom du "
|
797 |
"fichier à envoyer."
|
798 |
|
799 |
-
#: lib/wfu_constants.php:
|
800 |
msgid ""
|
801 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
802 |
"filepath of the uploaded file."
|
@@ -804,7 +816,7 @@ msgstr ""
|
|
804 |
"Insérez la variable %filepath% dans le texte. Il sera remplacé par le chemin "
|
805 |
"complet du fichier envoyé."
|
806 |
|
807 |
-
#: lib/wfu_constants.php:
|
808 |
msgid ""
|
809 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
810 |
"the website."
|
@@ -812,7 +824,7 @@ msgstr ""
|
|
812 |
"Insérez la variable %blogid% dans le texte. Il sera remplacé par l'id du "
|
813 |
"blog du site web."
|
814 |
|
815 |
-
#: lib/wfu_constants.php:
|
816 |
msgid ""
|
817 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
818 |
"current page."
|
@@ -820,7 +832,7 @@ msgstr ""
|
|
820 |
"Insérez %pageid% variable dans le texte. Il sera remplacé par l'id de la "
|
821 |
"page en cours."
|
822 |
|
823 |
-
#: lib/wfu_constants.php:
|
824 |
msgid ""
|
825 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
826 |
"the current page."
|
@@ -828,7 +840,7 @@ msgstr ""
|
|
828 |
"Insérez %pagetitle% variable dans le texte. Il sera remplacé par le titre de "
|
829 |
"la page courante."
|
830 |
|
831 |
-
#: lib/wfu_constants.php:
|
832 |
msgid ""
|
833 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
834 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -838,198 +850,198 @@ msgstr ""
|
|
838 |
"l'utilisateur dans la liste déroulante. Il sera remplacé par la valeur que "
|
839 |
"l'utilisateur aura entré dans ce champ."
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "Insert variable %n% inside text to denote a line change."
|
843 |
msgstr ""
|
844 |
"Insérez la variable %n% à l'intérieur du texte pour indiquer un changement "
|
845 |
"de ligne."
|
846 |
|
847 |
-
#: lib/wfu_constants.php:
|
848 |
msgid "Test Mode"
|
849 |
msgstr "Mode de test"
|
850 |
|
851 |
-
#: lib/wfu_constants.php:
|
852 |
msgid "select dir..."
|
853 |
msgstr "Sélectionnez dir"
|
854 |
|
855 |
-
#: lib/wfu_constants.php:
|
856 |
msgid "type dir"
|
857 |
msgstr "Saisir dir"
|
858 |
|
859 |
-
#: lib/wfu_constants.php:
|
860 |
msgid "Upload path: %filepath%"
|
861 |
msgstr "Chemin d'upload : %filepath%"
|
862 |
|
863 |
-
#: lib/wfu_constants.php:
|
864 |
msgid "Failed upload path: %filepath%"
|
865 |
msgstr "Mauvais répertoire d'envoi : %filepath%"
|
866 |
|
867 |
-
#: lib/wfu_constants.php:
|
868 |
msgid " (required)"
|
869 |
msgstr " (*)"
|
870 |
|
871 |
-
#: lib/wfu_constants.php:
|
872 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
873 |
msgstr "Les fichiers sont envoyés. Êtes-vous sûr de vouloir quitter la page ?"
|
874 |
|
875 |
-
#: lib/wfu_constants.php:
|
876 |
msgid "checking captcha..."
|
877 |
msgstr "Vérifiez captcha..."
|
878 |
|
879 |
-
#: lib/wfu_constants.php:
|
880 |
msgid "refreshing..."
|
881 |
msgstr "Mise à jour..."
|
882 |
|
883 |
-
#: lib/wfu_constants.php:
|
884 |
msgid "correct captcha"
|
885 |
msgstr "Captcha correctement saisi"
|
886 |
|
887 |
-
#: lib/wfu_constants.php:
|
888 |
msgid "click to continue the upload"
|
889 |
msgstr "Cliquer pour continuer l'envoi"
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid "Are you sure you want to delete this file?"
|
893 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier?"
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
896 |
msgid "Are you sure you want to delete these files?"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: lib/wfu_constants.php:
|
900 |
msgid "Bulk Actions"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid "Apply"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "Are you sure that you want to cancel the upload?"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid "cancel upload of this file"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid "Upload in progress"
|
917 |
msgstr "Envoi en cours"
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "Upload in progress with warnings!"
|
921 |
msgstr "Envoi en cours mais avec des avertissements!"
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "Upload in progress but some files already failed!"
|
925 |
msgstr "Envoi en cours mais certains fichiers ont échoués!"
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "Upload in progress but no files uploaded so far!"
|
929 |
msgstr "Envoi en cours mais aucun fichier n'a été envoyé pour le moment!"
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid "All files uploaded successfully"
|
933 |
msgstr "Tous les fichiers ont été envoyés avec succès"
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "All files uploaded successfully but there are warnings!"
|
937 |
msgstr ""
|
938 |
"Tous les fichiers ont été envoyés avec succès mais avec des avertissements!"
|
939 |
|
940 |
-
#: lib/wfu_constants.php:
|
941 |
msgid "File uploaded successfully but there are warnings!"
|
942 |
msgstr "Fichiers envoyés avec succès mais certain avec un avertissement."
|
943 |
|
944 |
-
#: lib/wfu_constants.php:
|
945 |
msgid "Some files failed to upload!"
|
946 |
msgstr "Certains fichiers n'ont pas été envoyé"
|
947 |
|
948 |
-
#: lib/wfu_constants.php:
|
949 |
msgid "All files failed to upload"
|
950 |
msgstr "Impossible d'envoyer les fichiers"
|
951 |
|
952 |
-
#: lib/wfu_constants.php:
|
953 |
msgid "File failed to upload"
|
954 |
msgstr "Impossible d'envoyer le fichier"
|
955 |
|
956 |
-
#: lib/wfu_constants.php:
|
957 |
msgid "There are no files to upload!"
|
958 |
msgstr "Il n'y a pas de fichiers à envoyer"
|
959 |
|
960 |
-
#: lib/wfu_constants.php:
|
961 |
msgid "Test upload message"
|
962 |
msgstr "Message de test d'upload"
|
963 |
|
964 |
-
#: lib/wfu_constants.php:
|
965 |
msgid "JSON parse warning!"
|
966 |
msgstr "Avertissements d'analyse JSON."
|
967 |
|
968 |
-
#: lib/wfu_constants.php:
|
969 |
msgid "please wait while redirecting..."
|
970 |
msgstr "Merci de patienter pendant la redirection..."
|
971 |
|
972 |
-
#: lib/wfu_constants.php:
|
973 |
msgid "Open visual shortcode editor in new window"
|
974 |
msgstr "Ouvrez l'éditeur de shortcode visuel dans une nouvelle fenêtre"
|
975 |
|
976 |
-
#: lib/wfu_constants.php:
|
977 |
msgid "loading visual editor"
|
978 |
msgstr "Chargement de l'éditeur visuel"
|
979 |
|
980 |
-
#: lib/wfu_constants.php:
|
981 |
msgid "Clear file list?"
|
982 |
msgstr "Effacer la liste des fichiers ?"
|
983 |
|
984 |
-
#: lib/wfu_constants.php:
|
985 |
msgid "DROP HERE"
|
986 |
msgstr "Déposer ici"
|
987 |
|
988 |
-
#: lib/wfu_constants.php:
|
989 |
msgid "record video"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: lib/wfu_constants.php:
|
993 |
msgid "take a picture"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: lib/wfu_constants.php:
|
997 |
msgid "turn webcam on/off"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: lib/wfu_constants.php:
|
1001 |
msgid "go live again"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: lib/wfu_constants.php:
|
1005 |
msgid "end recording"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: lib/wfu_constants.php:
|
1009 |
msgid "play"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: lib/wfu_constants.php:
|
1013 |
msgid "pause"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: lib/wfu_constants.php:
|
1017 |
msgid "go to the beginning"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: lib/wfu_constants.php:
|
1021 |
msgid "go to the end"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: lib/wfu_constants.php:
|
1025 |
msgid "Wordpress File Upload Form"
|
1026 |
msgstr "Wordpress File Upload Formulaire"
|
1027 |
|
1028 |
-
#: lib/wfu_constants.php:
|
1029 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1030 |
msgstr "Wordpress File Upload extension d'upload pour sidebar."
|
1031 |
|
1032 |
-
#: lib/wfu_constants.php:
|
1033 |
msgid "Upload Files"
|
1034 |
msgstr "Envoyer des fichiers"
|
1035 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:32+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:32+0200\n"
|
7 |
"Last-Translator: Eric D. Valachs <ericduval@laposte.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr_FR\n"
|
315 |
"Envoi impossible ! Une erreur est survenue pendant la tentative d'envoi du "
|
316 |
"fichier."
|
317 |
|
318 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
319 |
msgid "Upload failed!"
|
320 |
msgstr "Envoi impossible !"
|
321 |
|
584 |
msgstr "Impossible d'ouvrir le fichier handles sur bloc %d"
|
585 |
|
586 |
#: lib/wfu_constants.php:127
|
587 |
+
msgid "You are not allowed to download this file!"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: lib/wfu_constants.php:128
|
591 |
+
msgid "File does not exist!"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: lib/wfu_constants.php:129
|
595 |
+
msgid "Could not download file!"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: lib/wfu_constants.php:130
|
599 |
msgid "You are not allowed to delete this file!"
|
600 |
msgstr "Vous n' êtes pas autorisé à supprimer ce fichier !"
|
601 |
|
602 |
+
#: lib/wfu_constants.php:131
|
603 |
msgid "File was not deleted!"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: lib/wfu_constants.php:132
|
607 |
msgid "No file was deleted!"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: lib/wfu_constants.php:133
|
611 |
msgid "Some files were not deleted!"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: lib/wfu_constants.php:135
|
615 |
msgid "Upload skipped! File already exists."
|
616 |
msgstr "Envoi ignoré ! Le fichier existe déjà."
|
617 |
|
618 |
+
#: lib/wfu_constants.php:136
|
619 |
msgid "The extension of the file does not match its contents."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: lib/wfu_constants.php:137
|
623 |
msgid ""
|
624 |
"Upload succeeded but the file is suspicious because its contents do not "
|
625 |
"match its extension. Its proper filename is: "
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: lib/wfu_constants.php:138
|
629 |
msgid "No files have been selected!"
|
630 |
msgstr "Aucun fichier n'a été envoyé !"
|
631 |
|
632 |
+
#: lib/wfu_constants.php:139
|
633 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
634 |
msgstr ""
|
635 |
"WPFilebase Plugin n'a pas été mis à jour car il n'y a pas de fichiers à "
|
636 |
"envoyer."
|
637 |
|
638 |
+
#: lib/wfu_constants.php:140
|
639 |
msgid "Notification email was not sent because there were no files uploaded."
|
640 |
msgstr ""
|
641 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de fichiers à "
|
642 |
"envoyer."
|
643 |
|
644 |
+
#: lib/wfu_constants.php:141
|
645 |
msgid ""
|
646 |
"Notification email was not sent because no recipients were defined. Please "
|
647 |
"check notifyrecipients attribute in the shortcode."
|
649 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de destinataire. "
|
650 |
"Merci de vérifier l'attribut notifyrecipients dans le shortcode."
|
651 |
|
652 |
+
#: lib/wfu_constants.php:142
|
653 |
msgid ""
|
654 |
"Notification email was not sent due to an error. Please check "
|
655 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
657 |
"Le mail de notification n'a pas été envoyé car il n'y a une erreur. Merci de "
|
658 |
"vérifier les attributs notifyrecipients, notifysubject et notifymessage."
|
659 |
|
660 |
+
#: lib/wfu_constants.php:143
|
661 |
msgid ""
|
662 |
"Redirection not executed because redirection link is empty. Please check "
|
663 |
"redirectlink attribute."
|
665 |
"La redirection n'a pas été effectuée car le lien de redirection est vide. "
|
666 |
"Merci de vérifier l'attribut redirectlink."
|
667 |
|
668 |
+
#: lib/wfu_constants.php:144
|
669 |
msgid ""
|
670 |
"Redirection not executed because not all files were successfully uploaded."
|
671 |
msgstr ""
|
672 |
"La redirection n'est pas exécutée car tous les fichiers n'ont pas été "
|
673 |
"envoyés."
|
674 |
|
675 |
+
#: lib/wfu_constants.php:145
|
676 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: lib/wfu_constants.php:146
|
680 |
msgid ""
|
681 |
"Hello admin\n"
|
682 |
"\n"
|
696 |
"Thanks"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: lib/wfu_constants.php:148
|
700 |
msgid ""
|
701 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
702 |
"message persists, contact administrator."
|
704 |
"Impossible d' ajouter le shortcode à la page / poste. Essayez à nouveau. Si "
|
705 |
"le message persiste, contactez l' administrateur."
|
706 |
|
707 |
+
#: lib/wfu_constants.php:149
|
708 |
msgid ""
|
709 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
710 |
"again to edit the shortcode."
|
712 |
"Impossible de modifier le shortcode parce que le contenu de la page a "
|
713 |
"changé. Essayez à nouveau de modifier le shortcode."
|
714 |
|
715 |
+
#: lib/wfu_constants.php:150
|
716 |
msgid ""
|
717 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
718 |
"again to delete it."
|
720 |
"Impossible de supprimer le shortcode parce que le contenu de la page a "
|
721 |
"changé. Essayez à nouveau de le supprimer."
|
722 |
|
723 |
+
#: lib/wfu_constants.php:151
|
724 |
msgid ""
|
725 |
"The page containing the shortcode has been modified and it is no longer "
|
726 |
"valid. Please go back to reload the shortcode."
|
728 |
"La page contenant le shortcode a été modifié et il n'est plus valide. "
|
729 |
"Rechargez le shortcode."
|
730 |
|
731 |
+
#: lib/wfu_constants.php:152
|
732 |
msgid ""
|
733 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
734 |
"back to reload the shortcode."
|
736 |
"Impossible de mettre à jour le shortcode parce que le contenu de la page a "
|
737 |
"changé. Rechargez le shortcode."
|
738 |
|
739 |
+
#: lib/wfu_constants.php:153
|
740 |
msgid ""
|
741 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
742 |
"go back and reload the shortcode."
|
744 |
"Impossible de mettre à jour le shortcode. Essayez à nouveau. Si le problème "
|
745 |
"persiste, rechargez le shortcode."
|
746 |
|
747 |
+
#: lib/wfu_constants.php:155
|
748 |
msgid "This is a test message"
|
749 |
msgstr "Ceci est un message de test"
|
750 |
|
751 |
+
#: lib/wfu_constants.php:156
|
752 |
msgid "This is a test administrator message"
|
753 |
msgstr "Ceci est un message administrateur de test"
|
754 |
|
755 |
+
#: lib/wfu_constants.php:157
|
756 |
msgid "File testfile 1 under test"
|
757 |
msgstr "File testfile 1 under test"
|
758 |
|
759 |
+
#: lib/wfu_constants.php:158
|
760 |
msgid "File testfile 1 message"
|
761 |
msgstr "File testfile 1 message"
|
762 |
|
763 |
+
#: lib/wfu_constants.php:159
|
764 |
msgid "File testfile 1 administrator message"
|
765 |
msgstr "Message administrateur File testfile"
|
766 |
|
767 |
+
#: lib/wfu_constants.php:160
|
768 |
msgid "File testfile 2 under test"
|
769 |
msgstr "En test File testfile"
|
770 |
|
771 |
+
#: lib/wfu_constants.php:161
|
772 |
msgid "File testfile 2 message"
|
773 |
msgstr "Message File testfile 2"
|
774 |
|
775 |
+
#: lib/wfu_constants.php:162
|
776 |
msgid "File testfile 2 administrator message"
|
777 |
msgstr "Message administrateur File testfile 2"
|
778 |
|
779 |
+
#: lib/wfu_constants.php:164
|
780 |
msgid ""
|
781 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
782 |
"current user."
|
784 |
"Insérez %userid% variable dans le texte. Il sera remplacé par l'id de "
|
785 |
"l'utilisateur courant."
|
786 |
|
787 |
+
#: lib/wfu_constants.php:165
|
788 |
msgid ""
|
789 |
"Insert variable %username% inside text. It will be replaced by the username "
|
790 |
"of the current user."
|
792 |
"Insérez la variable %username% dans le texte. Il sera remplacé par le "
|
793 |
"username de l'utilisateur courant."
|
794 |
|
795 |
+
#: lib/wfu_constants.php:166
|
796 |
msgid ""
|
797 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
798 |
"the current user."
|
800 |
"Insérez la variable %useremail% dans le texte. Il sera remplacé par l'email "
|
801 |
"de l'utilisateur courant."
|
802 |
|
803 |
+
#: lib/wfu_constants.php:167
|
804 |
msgid ""
|
805 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
806 |
"of the uploaded file."
|
808 |
"Insérez la variable %filename% dans le texte. Il sera remplacé par le nom du "
|
809 |
"fichier à envoyer."
|
810 |
|
811 |
+
#: lib/wfu_constants.php:168
|
812 |
msgid ""
|
813 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
814 |
"filepath of the uploaded file."
|
816 |
"Insérez la variable %filepath% dans le texte. Il sera remplacé par le chemin "
|
817 |
"complet du fichier envoyé."
|
818 |
|
819 |
+
#: lib/wfu_constants.php:169
|
820 |
msgid ""
|
821 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
822 |
"the website."
|
824 |
"Insérez la variable %blogid% dans le texte. Il sera remplacé par l'id du "
|
825 |
"blog du site web."
|
826 |
|
827 |
+
#: lib/wfu_constants.php:170
|
828 |
msgid ""
|
829 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
830 |
"current page."
|
832 |
"Insérez %pageid% variable dans le texte. Il sera remplacé par l'id de la "
|
833 |
"page en cours."
|
834 |
|
835 |
+
#: lib/wfu_constants.php:171
|
836 |
msgid ""
|
837 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
838 |
"the current page."
|
840 |
"Insérez %pagetitle% variable dans le texte. Il sera remplacé par le titre de "
|
841 |
"la page courante."
|
842 |
|
843 |
+
#: lib/wfu_constants.php:172
|
844 |
msgid ""
|
845 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
846 |
"drop-down list. It will be replaced by the value that the user entered in "
|
850 |
"l'utilisateur dans la liste déroulante. Il sera remplacé par la valeur que "
|
851 |
"l'utilisateur aura entré dans ce champ."
|
852 |
|
853 |
+
#: lib/wfu_constants.php:173
|
854 |
msgid "Insert variable %n% inside text to denote a line change."
|
855 |
msgstr ""
|
856 |
"Insérez la variable %n% à l'intérieur du texte pour indiquer un changement "
|
857 |
"de ligne."
|
858 |
|
859 |
+
#: lib/wfu_constants.php:175
|
860 |
msgid "Test Mode"
|
861 |
msgstr "Mode de test"
|
862 |
|
863 |
+
#: lib/wfu_constants.php:176
|
864 |
msgid "select dir..."
|
865 |
msgstr "Sélectionnez dir"
|
866 |
|
867 |
+
#: lib/wfu_constants.php:177
|
868 |
msgid "type dir"
|
869 |
msgstr "Saisir dir"
|
870 |
|
871 |
+
#: lib/wfu_constants.php:178
|
872 |
msgid "Upload path: %filepath%"
|
873 |
msgstr "Chemin d'upload : %filepath%"
|
874 |
|
875 |
+
#: lib/wfu_constants.php:179
|
876 |
msgid "Failed upload path: %filepath%"
|
877 |
msgstr "Mauvais répertoire d'envoi : %filepath%"
|
878 |
|
879 |
+
#: lib/wfu_constants.php:180
|
880 |
msgid " (required)"
|
881 |
msgstr " (*)"
|
882 |
|
883 |
+
#: lib/wfu_constants.php:181
|
884 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
885 |
msgstr "Les fichiers sont envoyés. Êtes-vous sûr de vouloir quitter la page ?"
|
886 |
|
887 |
+
#: lib/wfu_constants.php:182
|
888 |
msgid "checking captcha..."
|
889 |
msgstr "Vérifiez captcha..."
|
890 |
|
891 |
+
#: lib/wfu_constants.php:183
|
892 |
msgid "refreshing..."
|
893 |
msgstr "Mise à jour..."
|
894 |
|
895 |
+
#: lib/wfu_constants.php:184
|
896 |
msgid "correct captcha"
|
897 |
msgstr "Captcha correctement saisi"
|
898 |
|
899 |
+
#: lib/wfu_constants.php:185
|
900 |
msgid "click to continue the upload"
|
901 |
msgstr "Cliquer pour continuer l'envoi"
|
902 |
|
903 |
+
#: lib/wfu_constants.php:186
|
904 |
msgid "Are you sure you want to delete this file?"
|
905 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier?"
|
906 |
|
907 |
+
#: lib/wfu_constants.php:187
|
908 |
msgid "Are you sure you want to delete these files?"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: lib/wfu_constants.php:188
|
912 |
msgid "Bulk Actions"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: lib/wfu_constants.php:189
|
916 |
msgid "Apply"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: lib/wfu_constants.php:190
|
920 |
msgid "Are you sure that you want to cancel the upload?"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: lib/wfu_constants.php:191
|
924 |
msgid "cancel upload of this file"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: lib/wfu_constants.php:192
|
928 |
msgid "Upload in progress"
|
929 |
msgstr "Envoi en cours"
|
930 |
|
931 |
+
#: lib/wfu_constants.php:193
|
932 |
msgid "Upload in progress with warnings!"
|
933 |
msgstr "Envoi en cours mais avec des avertissements!"
|
934 |
|
935 |
+
#: lib/wfu_constants.php:194
|
936 |
msgid "Upload in progress but some files already failed!"
|
937 |
msgstr "Envoi en cours mais certains fichiers ont échoués!"
|
938 |
|
939 |
+
#: lib/wfu_constants.php:195
|
940 |
msgid "Upload in progress but no files uploaded so far!"
|
941 |
msgstr "Envoi en cours mais aucun fichier n'a été envoyé pour le moment!"
|
942 |
|
943 |
+
#: lib/wfu_constants.php:196
|
944 |
msgid "All files uploaded successfully"
|
945 |
msgstr "Tous les fichiers ont été envoyés avec succès"
|
946 |
|
947 |
+
#: lib/wfu_constants.php:197
|
948 |
msgid "All files uploaded successfully but there are warnings!"
|
949 |
msgstr ""
|
950 |
"Tous les fichiers ont été envoyés avec succès mais avec des avertissements!"
|
951 |
|
952 |
+
#: lib/wfu_constants.php:198
|
953 |
msgid "File uploaded successfully but there are warnings!"
|
954 |
msgstr "Fichiers envoyés avec succès mais certain avec un avertissement."
|
955 |
|
956 |
+
#: lib/wfu_constants.php:199
|
957 |
msgid "Some files failed to upload!"
|
958 |
msgstr "Certains fichiers n'ont pas été envoyé"
|
959 |
|
960 |
+
#: lib/wfu_constants.php:200
|
961 |
msgid "All files failed to upload"
|
962 |
msgstr "Impossible d'envoyer les fichiers"
|
963 |
|
964 |
+
#: lib/wfu_constants.php:201
|
965 |
msgid "File failed to upload"
|
966 |
msgstr "Impossible d'envoyer le fichier"
|
967 |
|
968 |
+
#: lib/wfu_constants.php:202
|
969 |
msgid "There are no files to upload!"
|
970 |
msgstr "Il n'y a pas de fichiers à envoyer"
|
971 |
|
972 |
+
#: lib/wfu_constants.php:203
|
973 |
msgid "Test upload message"
|
974 |
msgstr "Message de test d'upload"
|
975 |
|
976 |
+
#: lib/wfu_constants.php:204
|
977 |
msgid "JSON parse warning!"
|
978 |
msgstr "Avertissements d'analyse JSON."
|
979 |
|
980 |
+
#: lib/wfu_constants.php:205
|
981 |
msgid "please wait while redirecting..."
|
982 |
msgstr "Merci de patienter pendant la redirection..."
|
983 |
|
984 |
+
#: lib/wfu_constants.php:207
|
985 |
msgid "Open visual shortcode editor in new window"
|
986 |
msgstr "Ouvrez l'éditeur de shortcode visuel dans une nouvelle fenêtre"
|
987 |
|
988 |
+
#: lib/wfu_constants.php:208
|
989 |
msgid "loading visual editor"
|
990 |
msgstr "Chargement de l'éditeur visuel"
|
991 |
|
992 |
+
#: lib/wfu_constants.php:209
|
993 |
msgid "Clear file list?"
|
994 |
msgstr "Effacer la liste des fichiers ?"
|
995 |
|
996 |
+
#: lib/wfu_constants.php:210
|
997 |
msgid "DROP HERE"
|
998 |
msgstr "Déposer ici"
|
999 |
|
1000 |
+
#: lib/wfu_constants.php:212
|
1001 |
msgid "record video"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: lib/wfu_constants.php:213
|
1005 |
msgid "take a picture"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:214
|
1009 |
msgid "turn webcam on/off"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:215
|
1013 |
msgid "go live again"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:216
|
1017 |
msgid "end recording"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: lib/wfu_constants.php:217
|
1021 |
msgid "play"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: lib/wfu_constants.php:218
|
1025 |
msgid "pause"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: lib/wfu_constants.php:219
|
1029 |
msgid "go to the beginning"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: lib/wfu_constants.php:220
|
1033 |
msgid "go to the end"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: lib/wfu_constants.php:222
|
1037 |
msgid "Wordpress File Upload Form"
|
1038 |
msgstr "Wordpress File Upload Formulaire"
|
1039 |
|
1040 |
+
#: lib/wfu_constants.php:223
|
1041 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1042 |
msgstr "Wordpress File Upload extension d'upload pour sidebar."
|
1043 |
|
1044 |
+
#: lib/wfu_constants.php:224
|
1045 |
msgid "Upload Files"
|
1046 |
msgstr "Envoyer des fichiers"
|
1047 |
|
languages/wp-file-upload-it_IT.mo
ADDED
Binary file
|
languages/wp-file-upload-it_IT.po
ADDED
@@ -0,0 +1,1073 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:33+0200\n"
|
7 |
+
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
+
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
+
"Language: it\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;gettext;gettext_noop\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 1.7.5\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
"X-Poedit-SearchPathExcluded-0: vendor\n"
|
19 |
+
"X-Poedit-SearchPathExcluded-1: minified\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-2: unminified\n"
|
21 |
+
|
22 |
+
#: lib/wfu_constants.php:7
|
23 |
+
msgid "Upload files"
|
24 |
+
msgstr "Carica files"
|
25 |
+
|
26 |
+
#: lib/wfu_constants.php:10
|
27 |
+
msgid "Select File/Select Files"
|
28 |
+
msgstr "Scegli File/Scegli Files"
|
29 |
+
|
30 |
+
#: lib/wfu_constants.php:11
|
31 |
+
msgid "Upload File/Upload Files"
|
32 |
+
msgstr "Carica File/Carica Files"
|
33 |
+
|
34 |
+
#: lib/wfu_constants.php:15
|
35 |
+
msgid "Select File"
|
36 |
+
msgstr "Scegli File"
|
37 |
+
|
38 |
+
#: lib/wfu_constants.php:16
|
39 |
+
msgid "Upload File"
|
40 |
+
msgstr "Carica File"
|
41 |
+
|
42 |
+
#: lib/wfu_constants.php:19
|
43 |
+
msgid "File Upload Notification"
|
44 |
+
msgstr "Notifica di caricamento del file"
|
45 |
+
|
46 |
+
#: lib/wfu_constants.php:20
|
47 |
+
msgid ""
|
48 |
+
"Dear Recipient,%n%%n% This is an automatic delivery message to notify you "
|
49 |
+
"that a new file has been uploaded.%n%%n%Best Regards"
|
50 |
+
msgstr ""
|
51 |
+
"Caro Destinatario,%n%%n% Questo è un messaggio automatico per avvisarti che "
|
52 |
+
"è stato caricato un nuovo file.%n%%n%Cordiali saluti"
|
53 |
+
|
54 |
+
#: lib/wfu_constants.php:21
|
55 |
+
#, php-format
|
56 |
+
msgid "File %filename% uploaded successfully"
|
57 |
+
msgstr "Il file %filename% è stato caricato correttamente "
|
58 |
+
|
59 |
+
#: lib/wfu_constants.php:22
|
60 |
+
#, php-format
|
61 |
+
msgid "File %filename% uploaded successfully but with warnings"
|
62 |
+
msgstr ""
|
63 |
+
"Il file %filename% è stato caricato correttamente ma con degli avvertimenti "
|
64 |
+
|
65 |
+
#: lib/wfu_constants.php:23
|
66 |
+
msgid "File %filename% not uploaded"
|
67 |
+
msgstr "Il file %filename% non è stato caricato"
|
68 |
+
|
69 |
+
#: lib/wfu_constants.php:24
|
70 |
+
msgid "File %filename% is being uploaded"
|
71 |
+
msgstr "Il file %filename% sta per essere caricato"
|
72 |
+
|
73 |
+
#: lib/wfu_constants.php:25
|
74 |
+
msgid "Your message"
|
75 |
+
msgstr "Il tuo messaggio"
|
76 |
+
|
77 |
+
#: lib/wfu_constants.php:26
|
78 |
+
msgid "Please fill in the above words: "
|
79 |
+
msgstr "Compila con le parole qui sopra, grazie"
|
80 |
+
|
81 |
+
#: lib/wfu_constants.php:27
|
82 |
+
msgid "Upload Media"
|
83 |
+
msgstr "Carica media"
|
84 |
+
|
85 |
+
#: lib/wfu_constants.php:28
|
86 |
+
msgid "videostream"
|
87 |
+
msgstr "flusso video"
|
88 |
+
|
89 |
+
#: lib/wfu_constants.php:29
|
90 |
+
msgid "screenshot"
|
91 |
+
msgstr "schermata"
|
92 |
+
|
93 |
+
#: lib/wfu_constants.php:31
|
94 |
+
msgid "File"
|
95 |
+
msgstr "File"
|
96 |
+
|
97 |
+
#: lib/wfu_constants.php:32
|
98 |
+
msgid "Date"
|
99 |
+
msgstr "Data"
|
100 |
+
|
101 |
+
#: lib/wfu_constants.php:33
|
102 |
+
msgid "Size"
|
103 |
+
msgstr "Dimensione"
|
104 |
+
|
105 |
+
#: lib/wfu_constants.php:34
|
106 |
+
msgid "User"
|
107 |
+
msgstr "Utente"
|
108 |
+
|
109 |
+
#: lib/wfu_constants.php:35
|
110 |
+
msgid "Page"
|
111 |
+
msgstr "Pagina"
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
+
msgid "User Fields"
|
115 |
+
msgstr "Campi utente"
|
116 |
+
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
+
msgid "Download"
|
119 |
+
msgstr "Scarica"
|
120 |
+
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
+
msgid "Download this file"
|
123 |
+
msgstr "Scarica questo file"
|
124 |
+
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
+
msgid "Delete"
|
127 |
+
msgstr "Cancella"
|
128 |
+
|
129 |
+
#: lib/wfu_constants.php:40
|
130 |
+
msgid "Delete this file"
|
131 |
+
msgstr "Cancella questo file"
|
132 |
+
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
+
msgid "Sort list based on this column"
|
135 |
+
msgstr "Ordina la lista in base a questa colonna"
|
136 |
+
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
+
msgid "guest"
|
139 |
+
msgstr "ospite"
|
140 |
+
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
+
msgid "unknown"
|
143 |
+
msgstr "sconosciuto"
|
144 |
+
|
145 |
+
#: lib/wfu_constants.php:45
|
146 |
+
msgid ""
|
147 |
+
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
148 |
+
"attribute."
|
149 |
+
msgstr ""
|
150 |
+
"Errore. Non riesco a trovare la destinazione e la cartella FTP. Controlla il "
|
151 |
+
"dominio nell'attributo 'ftpinfo'."
|
152 |
+
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
+
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
155 |
+
msgstr "Errore. Informazioni FTP non valide. Controlla l'attributo 'ftpinfo'."
|
156 |
+
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
+
msgid ""
|
159 |
+
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
160 |
+
"syntax."
|
161 |
+
msgstr ""
|
162 |
+
"Errore. Non riesco ad estrarre le informazioni su FTP dall'attributo "
|
163 |
+
"'ftpinfo'. Controlla la sintassi."
|
164 |
+
|
165 |
+
#: lib/wfu_constants.php:48
|
166 |
+
msgid ""
|
167 |
+
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
168 |
+
"attribute."
|
169 |
+
msgstr ""
|
170 |
+
"Errore. Non riesco a risolvere il nome della destinazione FTP. Controlla il "
|
171 |
+
"dominio nell'attributo 'ftpinfo'"
|
172 |
+
|
173 |
+
#: lib/wfu_constants.php:49
|
174 |
+
msgid ""
|
175 |
+
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
176 |
+
"preventing the upload of big files.\n"
|
177 |
+
"PHP directive upload_max_filesize limit is: "
|
178 |
+
msgstr ""
|
179 |
+
"Errore. Il caricamento dei file di grandi dimensioni è impedito dalla "
|
180 |
+
"direttiva PHP upload_max_filesize (php.ini)\n"
|
181 |
+
"La direttiva PHP upload_max_filesize è:"
|
182 |
+
|
183 |
+
#: lib/wfu_constants.php:50
|
184 |
+
msgid ""
|
185 |
+
"The upload time limit of PHP directive max_input_time is preventing the "
|
186 |
+
"upload of big files.\n"
|
187 |
+
"PHP directive max_input_time limit is: "
|
188 |
+
msgstr ""
|
189 |
+
"Errore. Il lungo tempo di caricamento per i file di grandi dimensioni è "
|
190 |
+
"impedito dalla direttiva PHP max_input_time (php.ini)\n"
|
191 |
+
"La direttiva PHP max_input_time è:"
|
192 |
+
|
193 |
+
#: lib/wfu_constants.php:51
|
194 |
+
msgid ""
|
195 |
+
"Error. Permission denied to write to target folder.\n"
|
196 |
+
"Check and correct read/write permissions of target folder."
|
197 |
+
msgstr ""
|
198 |
+
"Errore. Permesso di scrittura negato nella cartella di destinazione.\n"
|
199 |
+
"Controlla e correggi i permessi di lettura e scrittura della cartella di "
|
200 |
+
"destinazione."
|
201 |
+
|
202 |
+
#: lib/wfu_constants.php:52
|
203 |
+
msgid ""
|
204 |
+
"Error. This file was rejected because its extension is not correct. Its "
|
205 |
+
"proper filename is: "
|
206 |
+
msgstr ""
|
207 |
+
"Errore. Questo file è stato rifiutato perchè l'estensione non è corretta. Il "
|
208 |
+
"nome del file giusto è: "
|
209 |
+
|
210 |
+
#: lib/wfu_constants.php:53
|
211 |
+
msgid ""
|
212 |
+
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
213 |
+
"Of-Service attack, so file was rejected. Please check the upload log for "
|
214 |
+
"suspicious behaviour."
|
215 |
+
msgstr ""
|
216 |
+
"Sono stati caricati troppi file in un breve periodo di tempo. Questo "
|
217 |
+
"potrebbe essere un attacco Denial-Of-Service, quindi il file è stato "
|
218 |
+
"rifiutato. Cortesemente controlla il log di caricamento dei file per "
|
219 |
+
"verificare comportamenti sospetti."
|
220 |
+
|
221 |
+
#: lib/wfu_constants.php:54
|
222 |
+
msgid ""
|
223 |
+
"File not uploaded in order to prevent overflow of the website. Please "
|
224 |
+
"contact administrator."
|
225 |
+
msgstr ""
|
226 |
+
"File non caricato per evitare un sovraccarico del sito web. Cortesemenete "
|
227 |
+
"contatta l'amministratore."
|
228 |
+
|
229 |
+
#: lib/wfu_constants.php:55
|
230 |
+
msgid "Targer folder doesn't exist."
|
231 |
+
msgstr "La cartella di destinazione non esiste."
|
232 |
+
|
233 |
+
#: lib/wfu_constants.php:56
|
234 |
+
msgid "Upload failed! Missing a temporary folder."
|
235 |
+
msgstr "Caricamento fallito! Non trovo la cartella temporanea."
|
236 |
+
|
237 |
+
#: lib/wfu_constants.php:57
|
238 |
+
msgid "Upload failed! Permission denied to write to target folder."
|
239 |
+
msgstr ""
|
240 |
+
"Caricamento fallito! Permesso di scrittura negato nella cartella di "
|
241 |
+
"destinazione."
|
242 |
+
|
243 |
+
#: lib/wfu_constants.php:58
|
244 |
+
msgid "File not allowed."
|
245 |
+
msgstr "File non consentito."
|
246 |
+
|
247 |
+
#: lib/wfu_constants.php:59
|
248 |
+
msgid "File is suspicious and was rejected."
|
249 |
+
msgstr "Il file è sospetto ed è stato rifiutato."
|
250 |
+
|
251 |
+
#: lib/wfu_constants.php:60
|
252 |
+
msgid "The uploaded file exceeds the file size limit."
|
253 |
+
msgstr "Il file caricato supera il limite di dimensione dei file."
|
254 |
+
|
255 |
+
#: lib/wfu_constants.php:61
|
256 |
+
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
257 |
+
msgstr "Il file caricato supera i 2GB e non è supportato da questo server."
|
258 |
+
|
259 |
+
#: lib/wfu_constants.php:62
|
260 |
+
msgid ""
|
261 |
+
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
262 |
+
"Please contact the administrator."
|
263 |
+
msgstr ""
|
264 |
+
"Caricamento fallito! Il file caricato supera il limite di dimensione dei "
|
265 |
+
"file del server. Cortesemente contatta l'amministratore."
|
266 |
+
|
267 |
+
#: lib/wfu_constants.php:63
|
268 |
+
msgid ""
|
269 |
+
"Upload failed! The duration of the upload exceeded the time limit of the "
|
270 |
+
"server. Please contact the administrator."
|
271 |
+
msgstr ""
|
272 |
+
"Caricamento fallito! La durata del caricamento ha superato il limite "
|
273 |
+
"temporale del server. Cortesemente contatta l'amministratore."
|
274 |
+
|
275 |
+
#: lib/wfu_constants.php:64
|
276 |
+
msgid ""
|
277 |
+
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
278 |
+
"was specified in the HTML form."
|
279 |
+
msgstr ""
|
280 |
+
"Caricamento fallito! Il file caricato supera la direttiva MAX_FILE_SIZE che "
|
281 |
+
"è stata specificata nel form HTML."
|
282 |
+
|
283 |
+
#: lib/wfu_constants.php:65
|
284 |
+
msgid "Upload failed! The uploaded file was only partially uploaded."
|
285 |
+
msgstr "Caricamento fallito! Il file è stato caricato solo parzialmente."
|
286 |
+
|
287 |
+
#: lib/wfu_constants.php:66
|
288 |
+
msgid "Upload failed! No file was uploaded."
|
289 |
+
msgstr "Caricamento fallito! Nessun file caricato."
|
290 |
+
|
291 |
+
#: lib/wfu_constants.php:67
|
292 |
+
msgid "Upload failed! Failed to write file to disk."
|
293 |
+
msgstr "Caricamento fallito! Scrittura sul disco fallita."
|
294 |
+
|
295 |
+
#: lib/wfu_constants.php:68
|
296 |
+
msgid ""
|
297 |
+
"Upload failed! Error occured while moving temporary file. Please contact "
|
298 |
+
"administrator."
|
299 |
+
msgstr ""
|
300 |
+
"Caricamento fallito! E' stato generato un erroe nello spostamento del file "
|
301 |
+
"temporaneo. Cortesemente contatta l'amministratore di sistema."
|
302 |
+
|
303 |
+
#: lib/wfu_constants.php:69
|
304 |
+
msgid "Upload cancelled!"
|
305 |
+
msgstr "Caricamento cancellato! "
|
306 |
+
|
307 |
+
#: lib/wfu_constants.php:70
|
308 |
+
msgid ""
|
309 |
+
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
310 |
+
"a way to ascertain which extension caused the file upload to stop; examining "
|
311 |
+
"the list of loaded extensions with phpinfo() may help."
|
312 |
+
msgstr ""
|
313 |
+
"Caricamento fallito! Un'estensione PHP ha interrotto il caricamento del "
|
314 |
+
"file. PHP non specificato un modo per scoprire quale estensione abbia "
|
315 |
+
"causato questa interruzione; esaminare la lista delle estensioni caricate "
|
316 |
+
"con phpinfo() potrebbe essere d'aiuto."
|
317 |
+
|
318 |
+
#: lib/wfu_constants.php:71
|
319 |
+
msgid "Upload failed! Error occured while attemting to upload the file."
|
320 |
+
msgstr ""
|
321 |
+
"Caricamento fallito! Un errore è stato generato durante il caricamento del "
|
322 |
+
"file."
|
323 |
+
|
324 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
325 |
+
msgid "Upload failed!"
|
326 |
+
msgstr "Caricamento fallito! "
|
327 |
+
|
328 |
+
#: lib/wfu_constants.php:73
|
329 |
+
msgid "No file!"
|
330 |
+
msgstr "Nessun file!"
|
331 |
+
|
332 |
+
#: lib/wfu_constants.php:74
|
333 |
+
msgid ""
|
334 |
+
"Upload failed! The upload has been canceled by the user or the browser "
|
335 |
+
"dropped the connection."
|
336 |
+
msgstr ""
|
337 |
+
"Caricamento fallito! Il caricamento è stato interrotto dall'utente o il "
|
338 |
+
"browser ha interrotto la connessione."
|
339 |
+
|
340 |
+
#: lib/wfu_constants.php:75
|
341 |
+
msgid "Upload failed! Unknown error."
|
342 |
+
msgstr "Caricamento fallito! Errore sconosciuto."
|
343 |
+
|
344 |
+
#: lib/wfu_constants.php:76
|
345 |
+
msgid "Please contact the administrator."
|
346 |
+
msgstr "Cortesemente contatta l'amministratore."
|
347 |
+
|
348 |
+
#: lib/wfu_constants.php:77
|
349 |
+
msgid "No result from remote server!"
|
350 |
+
msgstr "Nessuna risposta dal server remoto!"
|
351 |
+
|
352 |
+
#: lib/wfu_constants.php:78
|
353 |
+
msgid " but with warnings"
|
354 |
+
msgstr "ma con avvertimenti"
|
355 |
+
|
356 |
+
#: lib/wfu_constants.php:79 lib/wfu_constants.php:81
|
357 |
+
msgid "Warning: JSON parse error."
|
358 |
+
msgstr "Attenzione: errore durante l'analisi del JSON"
|
359 |
+
|
360 |
+
#: lib/wfu_constants.php:80
|
361 |
+
msgid ""
|
362 |
+
"Upload parameters of this file, passed as JSON string to the handler, could "
|
363 |
+
"not be parsed."
|
364 |
+
msgstr ""
|
365 |
+
"I parametri di caricamento di questo file, passati come stringa JSON "
|
366 |
+
"all'handler, non sono analizzabili."
|
367 |
+
|
368 |
+
#: lib/wfu_constants.php:82
|
369 |
+
msgid ""
|
370 |
+
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
371 |
+
msgstr ""
|
372 |
+
"UploadStates, passato come stringa JSON all'handler, non sono analizzabili."
|
373 |
+
|
374 |
+
#: lib/wfu_constants.php:83
|
375 |
+
msgid ""
|
376 |
+
"Redirection to classic form functionality occurred due to unknown error."
|
377 |
+
msgstr ""
|
378 |
+
"Reindirizzamento alle funzionalità classiche del form per un errore "
|
379 |
+
"sconosciuto."
|
380 |
+
|
381 |
+
#: lib/wfu_constants.php:84
|
382 |
+
msgid ""
|
383 |
+
"Redirection to classic form functionality occurred because AJAX is not "
|
384 |
+
"supported."
|
385 |
+
msgstr ""
|
386 |
+
"Reindirizzamento alle funzionalità classiche del form perchè AJAX non è "
|
387 |
+
"supportato."
|
388 |
+
|
389 |
+
#: lib/wfu_constants.php:85
|
390 |
+
msgid ""
|
391 |
+
"Redirection to classic form functionality occurred because HTML5 is not "
|
392 |
+
"supported."
|
393 |
+
msgstr ""
|
394 |
+
"Reindirizzamento alle funzionalità classiche del form percheè HTML5 non è "
|
395 |
+
"supportato."
|
396 |
+
|
397 |
+
#: lib/wfu_constants.php:86
|
398 |
+
msgid ""
|
399 |
+
"Redirection to classic form functionality occurred due to JSON parse error."
|
400 |
+
msgstr "Reindirizzamento alle funzionalità classiche del form "
|
401 |
+
|
402 |
+
#: lib/wfu_constants.php:87
|
403 |
+
msgid "Please enable popup windows from the browser's settings!"
|
404 |
+
msgstr ""
|
405 |
+
"Cortesemente abilita le finestre popup dalle impostazioni del tuo browser!"
|
406 |
+
|
407 |
+
#: lib/wfu_constants.php:88
|
408 |
+
msgid "cannot be empty!"
|
409 |
+
msgstr "non può essere vuoto!"
|
410 |
+
|
411 |
+
#: lib/wfu_constants.php:89
|
412 |
+
msgid "number not valid!"
|
413 |
+
msgstr "numero non valido!"
|
414 |
+
|
415 |
+
#: lib/wfu_constants.php:90
|
416 |
+
msgid "email not valid!"
|
417 |
+
msgstr "email non valida!"
|
418 |
+
|
419 |
+
#: lib/wfu_constants.php:91
|
420 |
+
msgid "emails do not match!"
|
421 |
+
msgstr "gli indirizzi email non combaciano!"
|
422 |
+
|
423 |
+
#: lib/wfu_constants.php:92
|
424 |
+
msgid "no base email field in group!"
|
425 |
+
msgstr "nessun campo email nel gruppo!"
|
426 |
+
|
427 |
+
#: lib/wfu_constants.php:93
|
428 |
+
msgid "passwords do not match!"
|
429 |
+
msgstr "le password non combaciano!"
|
430 |
+
|
431 |
+
#: lib/wfu_constants.php:94
|
432 |
+
msgid "no base password field in group!"
|
433 |
+
msgstr "nessun campo base per la password nel gruppo!"
|
434 |
+
|
435 |
+
#: lib/wfu_constants.php:95
|
436 |
+
msgid "checkbox unchecked!"
|
437 |
+
msgstr "casella di controllo non spuntata!"
|
438 |
+
|
439 |
+
#: lib/wfu_constants.php:96
|
440 |
+
msgid "no option selected!"
|
441 |
+
msgstr "nessuna opzione selezionata!"
|
442 |
+
|
443 |
+
#: lib/wfu_constants.php:97
|
444 |
+
msgid "no item selected!"
|
445 |
+
msgstr "nessun oggetto selezionato!"
|
446 |
+
|
447 |
+
#: lib/wfu_constants.php:98
|
448 |
+
msgid ""
|
449 |
+
"There are more than one instances of the plugin in this page with the same "
|
450 |
+
"id. Please change it."
|
451 |
+
msgstr ""
|
452 |
+
"Ci sono più istanze di questo plugin su questa pagina con lo stesso id. "
|
453 |
+
"Cambia l'id, grazie."
|
454 |
+
|
455 |
+
#: lib/wfu_constants.php:99
|
456 |
+
msgid ""
|
457 |
+
"Cannot edit the shortcode because the page has been modified. Please reload "
|
458 |
+
"the page."
|
459 |
+
msgstr ""
|
460 |
+
"Non posso modificare il codice breve perchè la pagina è stata modificata. "
|
461 |
+
"Ricarica la pagina, grazie."
|
462 |
+
|
463 |
+
#: lib/wfu_constants.php:100
|
464 |
+
msgid "Your browser does not support webcam capture!"
|
465 |
+
msgstr "Il tuo browser non supporta il flusso da webcam!"
|
466 |
+
|
467 |
+
#: lib/wfu_constants.php:101
|
468 |
+
msgid "Your browser does not support video recording from the webcam!"
|
469 |
+
msgstr "Il tuo browser non supporta la registrazione dei video dalla webcam!"
|
470 |
+
|
471 |
+
#: lib/wfu_constants.php:102
|
472 |
+
msgid "No video was recorded!"
|
473 |
+
msgstr "Nessun video registrato!"
|
474 |
+
|
475 |
+
#: lib/wfu_constants.php:103
|
476 |
+
msgid ""
|
477 |
+
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
478 |
+
"or use RecaptchaV2 (no account)."
|
479 |
+
msgstr ""
|
480 |
+
"ERRORE: Captcha non supportato! Hai una versione di PHP vecchia. Aggiornata "
|
481 |
+
"PHP o use RecaptchaV2 (no account)."
|
482 |
+
|
483 |
+
#: lib/wfu_constants.php:104
|
484 |
+
msgid ""
|
485 |
+
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
486 |
+
"notify administrator."
|
487 |
+
msgstr ""
|
488 |
+
"ERRORE: Solo un'istanza di RecaptchaV1 può esistere su una pagina. "
|
489 |
+
"Cortesemente avvisa l'amministratore."
|
490 |
+
|
491 |
+
#: lib/wfu_constants.php:105
|
492 |
+
msgid ""
|
493 |
+
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
494 |
+
"use RecaptchaV1 (no account)."
|
495 |
+
msgstr ""
|
496 |
+
"ERRORE: Solo un'istanza di RecaptchaV1 può esistere su una pagina. "
|
497 |
+
"Cortesemente usa RecaptchaV1 (no account)."
|
498 |
+
|
499 |
+
#: lib/wfu_constants.php:106
|
500 |
+
msgid "ERROR: No site key. Please contact administrator!"
|
501 |
+
msgstr "ERRORE: nessuna chiave sito. Cortesemente contatta l'amministratore!"
|
502 |
+
|
503 |
+
#: lib/wfu_constants.php:107
|
504 |
+
msgid ""
|
505 |
+
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
506 |
+
"define Google Recaptcha keys."
|
507 |
+
msgstr ""
|
508 |
+
"ERRORE: nessuna chiave sito è stata definita. Cortesemente definisci le "
|
509 |
+
"chiavi di Google Recaptcha nelle impostazioni del plugin, nella Dashboard."
|
510 |
+
|
511 |
+
#: lib/wfu_constants.php:108
|
512 |
+
msgid "Bad captcha image!"
|
513 |
+
msgstr "Immagine captcha sbagliata!"
|
514 |
+
|
515 |
+
#: lib/wfu_constants.php:109
|
516 |
+
msgid "No input!"
|
517 |
+
msgstr "Nessun input!"
|
518 |
+
|
519 |
+
#: lib/wfu_constants.php:110
|
520 |
+
msgid "Captcha not completed!"
|
521 |
+
msgstr "Captcha non completato!"
|
522 |
+
|
523 |
+
#: lib/wfu_constants.php:111
|
524 |
+
msgid "Wrong captcha!"
|
525 |
+
msgstr "Captcha sbagliato!"
|
526 |
+
|
527 |
+
#: lib/wfu_constants.php:112
|
528 |
+
msgid "Error refreshing captcha!"
|
529 |
+
msgstr "Errore nel ricaricamento del captcha!"
|
530 |
+
|
531 |
+
#: lib/wfu_constants.php:113
|
532 |
+
msgid "Unknown captcha error!"
|
533 |
+
msgstr "Errore captcha sconosciuto!"
|
534 |
+
|
535 |
+
#: lib/wfu_constants.php:114
|
536 |
+
msgid "Captcha not supported by your browser!"
|
537 |
+
msgstr "Captcha non supportato dal tuo browser!"
|
538 |
+
|
539 |
+
#: lib/wfu_constants.php:115
|
540 |
+
msgid "the secret parameter is missing"
|
541 |
+
msgstr "manca il parametro segreto"
|
542 |
+
|
543 |
+
#: lib/wfu_constants.php:116
|
544 |
+
msgid "the secret parameter is invalid or malformed"
|
545 |
+
msgstr "il parametro segreto non è valido o è malformato"
|
546 |
+
|
547 |
+
#: lib/wfu_constants.php:117
|
548 |
+
msgid "the response parameter is missing"
|
549 |
+
msgstr "manca il parametro di risposta"
|
550 |
+
|
551 |
+
#: lib/wfu_constants.php:118
|
552 |
+
msgid "the response parameter is invalid or malformed"
|
553 |
+
msgstr "il paramentro di risposta manca o è malformato"
|
554 |
+
|
555 |
+
#: lib/wfu_constants.php:119
|
556 |
+
msgid "Please do not use drag drop due to an internal problem."
|
557 |
+
msgstr ""
|
558 |
+
"Cortesemente non usare il trascinamento, è presente un problema interno."
|
559 |
+
|
560 |
+
#: lib/wfu_constants.php:120
|
561 |
+
#, php-format
|
562 |
+
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
563 |
+
msgstr ""
|
564 |
+
"Erroe durante il caricamento a blocchi. Un blocco vuoto con ID unico è %d"
|
565 |
+
|
566 |
+
#: lib/wfu_constants.php:121
|
567 |
+
msgid "Chunked upload is not allowed!"
|
568 |
+
msgstr "Il caricamento a blocchi non è consentito!"
|
569 |
+
|
570 |
+
#: lib/wfu_constants.php:122
|
571 |
+
msgid "Chunked upload aborted due to error in previous chunk!"
|
572 |
+
msgstr "Caricamento a blocchi interrotto per un errore nel blocco precedente!"
|
573 |
+
|
574 |
+
#: lib/wfu_constants.php:123
|
575 |
+
msgid "Chunked upload failed, final file could not be created!"
|
576 |
+
msgstr "Caricamento a blocchi fallito, il file finale non può essere creato!"
|
577 |
+
|
578 |
+
#: lib/wfu_constants.php:124
|
579 |
+
#, php-format
|
580 |
+
msgid "Could not write file chuck to destination on chunk %d"
|
581 |
+
msgstr ""
|
582 |
+
"Non riesco a scrivere il blocco del file nella destinazione nel blocco %d"
|
583 |
+
|
584 |
+
#: lib/wfu_constants.php:125
|
585 |
+
#, php-format
|
586 |
+
msgid "Could not enlarge destination file on chunk %d"
|
587 |
+
msgstr "Non posso allargare il file di destinazione nel blocco %d"
|
588 |
+
|
589 |
+
#: lib/wfu_constants.php:126
|
590 |
+
#, php-format
|
591 |
+
msgid "Could not open file handles on chunk %d"
|
592 |
+
msgstr "Non riesco ad a maneggiare i file nel chunk %d"
|
593 |
+
|
594 |
+
#: lib/wfu_constants.php:127
|
595 |
+
msgid "You are not allowed to download this file!"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: lib/wfu_constants.php:128
|
599 |
+
msgid "File does not exist!"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: lib/wfu_constants.php:129
|
603 |
+
msgid "Could not download file!"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: lib/wfu_constants.php:130
|
607 |
+
msgid "You are not allowed to delete this file!"
|
608 |
+
msgstr "Non hai il permesso di cancellare questo file!"
|
609 |
+
|
610 |
+
#: lib/wfu_constants.php:131
|
611 |
+
msgid "File was not deleted!"
|
612 |
+
msgstr "Il file non è stato cancellato!"
|
613 |
+
|
614 |
+
#: lib/wfu_constants.php:132
|
615 |
+
msgid "No file was deleted!"
|
616 |
+
msgstr "Nessun file cancellato!"
|
617 |
+
|
618 |
+
#: lib/wfu_constants.php:133
|
619 |
+
msgid "Some files were not deleted!"
|
620 |
+
msgstr "Alcuni file non sono stati cancellati!"
|
621 |
+
|
622 |
+
#: lib/wfu_constants.php:135
|
623 |
+
msgid "Upload skipped! File already exists."
|
624 |
+
msgstr "Caricamento saltato! Il file esiste già."
|
625 |
+
|
626 |
+
#: lib/wfu_constants.php:136
|
627 |
+
msgid "The extension of the file does not match its contents."
|
628 |
+
msgstr "L'estensione del file non corrisponde al contenuto del file."
|
629 |
+
|
630 |
+
#: lib/wfu_constants.php:137
|
631 |
+
msgid ""
|
632 |
+
"Upload succeeded but the file is suspicious because its contents do not "
|
633 |
+
"match its extension. Its proper filename is: "
|
634 |
+
msgstr ""
|
635 |
+
"Caricamento avvenuto con successo ma il file è sospetto perche il contenuto "
|
636 |
+
"non corrisponde alla sua estensione. Il nome del file corretto dovrebbe "
|
637 |
+
"essere: "
|
638 |
+
|
639 |
+
#: lib/wfu_constants.php:138
|
640 |
+
msgid "No files have been selected!"
|
641 |
+
msgstr "Nessun file selezionato!"
|
642 |
+
|
643 |
+
#: lib/wfu_constants.php:139
|
644 |
+
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
645 |
+
msgstr "WPFilebase Plugin non aggiornato perchè nessun file è stato caricato."
|
646 |
+
|
647 |
+
#: lib/wfu_constants.php:140
|
648 |
+
msgid "Notification email was not sent because there were no files uploaded."
|
649 |
+
msgstr ""
|
650 |
+
"L'email di notifica non è stata inviata perchè nessun file è stato caricato."
|
651 |
+
|
652 |
+
#: lib/wfu_constants.php:141
|
653 |
+
msgid ""
|
654 |
+
"Notification email was not sent because no recipients were defined. Please "
|
655 |
+
"check notifyrecipients attribute in the shortcode."
|
656 |
+
msgstr ""
|
657 |
+
"L'email di notifica non è stata inviata perchè non è stato specificato alcun "
|
658 |
+
"destinatario. Cortesemente controlla l'attributo notifyrecipients nei codici "
|
659 |
+
"brevi."
|
660 |
+
|
661 |
+
#: lib/wfu_constants.php:142
|
662 |
+
msgid ""
|
663 |
+
"Notification email was not sent due to an error. Please check "
|
664 |
+
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
665 |
+
msgstr ""
|
666 |
+
"L'email di notifica non è stata inviata a causa di un errore. Cortesemente "
|
667 |
+
"controlla gli attributi notifyrecipients,notifysubject e notifymessage."
|
668 |
+
|
669 |
+
#: lib/wfu_constants.php:143
|
670 |
+
msgid ""
|
671 |
+
"Redirection not executed because redirection link is empty. Please check "
|
672 |
+
"redirectlink attribute."
|
673 |
+
msgstr ""
|
674 |
+
"Reindirizzamento non avvenuto perchè il link di destinazione è vuoto. "
|
675 |
+
"Cortesemente controlla l'attributo redirectlink."
|
676 |
+
|
677 |
+
#: lib/wfu_constants.php:144
|
678 |
+
msgid ""
|
679 |
+
"Redirection not executed because not all files were successfully uploaded."
|
680 |
+
msgstr ""
|
681 |
+
"Reindirizzamento non avvenuto perchè non tutti i file sono stati caricati "
|
682 |
+
"correttamente."
|
683 |
+
|
684 |
+
#: lib/wfu_constants.php:145
|
685 |
+
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
686 |
+
msgstr "Possibile attacco Denial-Of-Service su {SITE}"
|
687 |
+
|
688 |
+
#: lib/wfu_constants.php:146
|
689 |
+
msgid ""
|
690 |
+
"Hello admin\n"
|
691 |
+
"\n"
|
692 |
+
"This is a message from Wordpress File Upload Plugin to notify you that a "
|
693 |
+
"potential Denial-Of-Service attack has been detected on {SITE}.\n"
|
694 |
+
"\n"
|
695 |
+
"The plugin detected more than {FILENUM} uploads within {INTERVAL} seconds.\n"
|
696 |
+
"\n"
|
697 |
+
"All file uploads that exceed this limit are rejected to protect the website "
|
698 |
+
"from overflowing.\n"
|
699 |
+
"\n"
|
700 |
+
"Please check the upload history log in the plugin's area in Dashboard for "
|
701 |
+
"any suspicious behaviour.\n"
|
702 |
+
"\n"
|
703 |
+
"A new message will follow if the situation remains.\n"
|
704 |
+
"\n"
|
705 |
+
"Thanks"
|
706 |
+
msgstr ""
|
707 |
+
"Ciao admin\n"
|
708 |
+
"\n"
|
709 |
+
"Questo è un messaggio da Wordpress File Upload Plugin per avvisarti che un "
|
710 |
+
"potenziale attacco Denial-Of-Service è stato rilevato su {SITE}.\n"
|
711 |
+
"\n"
|
712 |
+
"Il plugin ha rilevato che sono avvenuti più di {FILENUM} caricamenti in "
|
713 |
+
"{INTERVAL} secondi.\n"
|
714 |
+
"\n"
|
715 |
+
"Tutti i file caricati che hanno superato questo limite sono stati rfiutiati "
|
716 |
+
"per proteggere il sito da un sovraccarico .\n"
|
717 |
+
"\n"
|
718 |
+
"Cortesemente controlla il log di caricamento nella Dashboard del plugin per "
|
719 |
+
"eventuali comportamenti sospetti.\n"
|
720 |
+
"\n"
|
721 |
+
"Un nuovo messaggio come questo verrà inviato se la situazione sarà ancora "
|
722 |
+
"presente.\n"
|
723 |
+
"\n"
|
724 |
+
"Grazie"
|
725 |
+
|
726 |
+
#: lib/wfu_constants.php:148
|
727 |
+
msgid ""
|
728 |
+
"Failed to add the shortcode to the page/post. Please try again. If the "
|
729 |
+
"message persists, contact administrator."
|
730 |
+
msgstr ""
|
731 |
+
"Aggiuta del codice breve nella pagina/post fallita. Prova ancora. Se il "
|
732 |
+
"messaggio persiste contatta l'amministratore."
|
733 |
+
|
734 |
+
#: lib/wfu_constants.php:149
|
735 |
+
msgid ""
|
736 |
+
"Failed to edit the shortcode because the contents of the page changed. Try "
|
737 |
+
"again to edit the shortcode."
|
738 |
+
msgstr ""
|
739 |
+
"Modifica del codice breve fallita perchè il contenuto della pagina è "
|
740 |
+
"cambiato. Prova a modificare ancora il codice breve."
|
741 |
+
|
742 |
+
#: lib/wfu_constants.php:150
|
743 |
+
msgid ""
|
744 |
+
"Failed to delete the shortcode because the contents of the page changed. Try "
|
745 |
+
"again to delete it."
|
746 |
+
msgstr ""
|
747 |
+
"Eliminazione del codice breve fallita perchè il contenuto della pagina è "
|
748 |
+
"cambiato. Prova ad eliminare ancora il codice breve."
|
749 |
+
|
750 |
+
#: lib/wfu_constants.php:151
|
751 |
+
msgid ""
|
752 |
+
"The page containing the shortcode has been modified and it is no longer "
|
753 |
+
"valid. Please go back to reload the shortcode."
|
754 |
+
msgstr ""
|
755 |
+
"La pagina contenente il codice breve è stata modificata e non è più valida. "
|
756 |
+
"Cortesemente torna indietro e ricarica il codice breve."
|
757 |
+
|
758 |
+
#: lib/wfu_constants.php:152
|
759 |
+
msgid ""
|
760 |
+
"Failed to update the shortcode because the contents of the page changed. Go "
|
761 |
+
"back to reload the shortcode."
|
762 |
+
msgstr ""
|
763 |
+
"Ricaricamento del codice breve fallita perchè il contenuto della pagina è "
|
764 |
+
"cambiato. Prova a ricaricare ancora il codice breve."
|
765 |
+
|
766 |
+
#: lib/wfu_constants.php:153
|
767 |
+
msgid ""
|
768 |
+
"Failed to update the shortcode. Please try again. If the problem persists, "
|
769 |
+
"go back and reload the shortcode."
|
770 |
+
msgstr ""
|
771 |
+
"Ricaricamento del codice breve fallita. Prova ancora. Se il problema "
|
772 |
+
"persiste, prova a ricaricare ancora il codice breve."
|
773 |
+
|
774 |
+
#: lib/wfu_constants.php:155
|
775 |
+
msgid "This is a test message"
|
776 |
+
msgstr "Questo è un messaggio di prova"
|
777 |
+
|
778 |
+
#: lib/wfu_constants.php:156
|
779 |
+
msgid "This is a test administrator message"
|
780 |
+
msgstr "Questo è un messaggio di prova dell'amministratore"
|
781 |
+
|
782 |
+
#: lib/wfu_constants.php:157
|
783 |
+
msgid "File testfile 1 under test"
|
784 |
+
msgstr "File testfile1 in fase di test"
|
785 |
+
|
786 |
+
#: lib/wfu_constants.php:158
|
787 |
+
msgid "File testfile 1 message"
|
788 |
+
msgstr "File testfile 1 messaggio"
|
789 |
+
|
790 |
+
#: lib/wfu_constants.php:159
|
791 |
+
msgid "File testfile 1 administrator message"
|
792 |
+
msgstr "File testfile 1 messaggio amministratore"
|
793 |
+
|
794 |
+
#: lib/wfu_constants.php:160
|
795 |
+
msgid "File testfile 2 under test"
|
796 |
+
msgstr "File testfile 2 in fase di test"
|
797 |
+
|
798 |
+
#: lib/wfu_constants.php:161
|
799 |
+
msgid "File testfile 2 message"
|
800 |
+
msgstr "File testfile 2 messaggio"
|
801 |
+
|
802 |
+
#: lib/wfu_constants.php:162
|
803 |
+
msgid "File testfile 2 administrator message"
|
804 |
+
msgstr "File testfile 2 messaggio amministratore"
|
805 |
+
|
806 |
+
#: lib/wfu_constants.php:164
|
807 |
+
msgid ""
|
808 |
+
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
809 |
+
"current user."
|
810 |
+
msgstr ""
|
811 |
+
"Inserisci la variabile %userid% nel testo. Verrà sostituita dall'id "
|
812 |
+
"dell'utente corrente."
|
813 |
+
|
814 |
+
#: lib/wfu_constants.php:165
|
815 |
+
msgid ""
|
816 |
+
"Insert variable %username% inside text. It will be replaced by the username "
|
817 |
+
"of the current user."
|
818 |
+
msgstr ""
|
819 |
+
"Inserisci la variabile %username% nel testo. Verrà sostituita dal nome "
|
820 |
+
"utente dell'utente corrente."
|
821 |
+
|
822 |
+
#: lib/wfu_constants.php:166
|
823 |
+
msgid ""
|
824 |
+
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
825 |
+
"the current user."
|
826 |
+
msgstr ""
|
827 |
+
"Inserisci la variabile %useremail% nel testo. Verrà sostituita dall'email "
|
828 |
+
"dell'utente corrente."
|
829 |
+
|
830 |
+
#: lib/wfu_constants.php:167
|
831 |
+
msgid ""
|
832 |
+
"Insert variable %filename% inside text. It will be replaced by the filename "
|
833 |
+
"of the uploaded file."
|
834 |
+
msgstr ""
|
835 |
+
"Inserisci la variabile %filename% nel testo. Verrà sostituita dal nome del "
|
836 |
+
"file caricato."
|
837 |
+
|
838 |
+
#: lib/wfu_constants.php:168
|
839 |
+
msgid ""
|
840 |
+
"Insert variable %filepath% inside text. It will be replaced by the full "
|
841 |
+
"filepath of the uploaded file."
|
842 |
+
msgstr ""
|
843 |
+
"Inserisci la variabile %filepath% nel testo. Verrà sostituita dal percorso "
|
844 |
+
"completo del file caricato."
|
845 |
+
|
846 |
+
#: lib/wfu_constants.php:169
|
847 |
+
msgid ""
|
848 |
+
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
849 |
+
"the website."
|
850 |
+
msgstr ""
|
851 |
+
"Inserisci la variabile %blogid% nel testo. Verrà sostituita dall'id "
|
852 |
+
"dell'articolo del sito."
|
853 |
+
|
854 |
+
#: lib/wfu_constants.php:170
|
855 |
+
msgid ""
|
856 |
+
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
857 |
+
"current page."
|
858 |
+
msgstr ""
|
859 |
+
"Inserisci la variabile %pageid% nel testo. Verrà sostituita dall'id della "
|
860 |
+
"pagina corrente."
|
861 |
+
|
862 |
+
#: lib/wfu_constants.php:171
|
863 |
+
msgid ""
|
864 |
+
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
865 |
+
"the current page."
|
866 |
+
msgstr ""
|
867 |
+
"Inserisci la variabile %pagetitle% nel testo. Verrà sostituita dall titolo "
|
868 |
+
"della pagina corrente."
|
869 |
+
|
870 |
+
#: lib/wfu_constants.php:172
|
871 |
+
msgid ""
|
872 |
+
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
873 |
+
"drop-down list. It will be replaced by the value that the user entered in "
|
874 |
+
"this field."
|
875 |
+
msgstr ""
|
876 |
+
"Inserisci la variabile %userdataXXX% nel testo. Scegli il campo utente dal "
|
877 |
+
"menu a tendina. Verrà sostituita dal valore inserito dalll'utente nel campo."
|
878 |
+
|
879 |
+
#: lib/wfu_constants.php:173
|
880 |
+
msgid "Insert variable %n% inside text to denote a line change."
|
881 |
+
msgstr ""
|
882 |
+
"Inserisci la varibaile %n% nel testo per avere una nuova linea (newline)"
|
883 |
+
|
884 |
+
#: lib/wfu_constants.php:175
|
885 |
+
msgid "Test Mode"
|
886 |
+
msgstr "Modalità di test"
|
887 |
+
|
888 |
+
#: lib/wfu_constants.php:176
|
889 |
+
msgid "select dir..."
|
890 |
+
msgstr "scegli cartella..."
|
891 |
+
|
892 |
+
#: lib/wfu_constants.php:177
|
893 |
+
msgid "type dir"
|
894 |
+
msgstr "digita cartella..."
|
895 |
+
|
896 |
+
#: lib/wfu_constants.php:178
|
897 |
+
msgid "Upload path: %filepath%"
|
898 |
+
msgstr "Percorso di caricamento: %filepath%"
|
899 |
+
|
900 |
+
#: lib/wfu_constants.php:179
|
901 |
+
msgid "Failed upload path: %filepath%"
|
902 |
+
msgstr "Fallimento nel percorso di caricamento: %filepath%"
|
903 |
+
|
904 |
+
#: lib/wfu_constants.php:180
|
905 |
+
msgid " (required)"
|
906 |
+
msgstr " (richiesto)"
|
907 |
+
|
908 |
+
#: lib/wfu_constants.php:181
|
909 |
+
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
910 |
+
msgstr ""
|
911 |
+
"I file sono in fase di caricamento. Sei sicuro di volere uscire da questa "
|
912 |
+
"pagina?"
|
913 |
+
|
914 |
+
#: lib/wfu_constants.php:182
|
915 |
+
msgid "checking captcha..."
|
916 |
+
msgstr "controllo il captcha..."
|
917 |
+
|
918 |
+
#: lib/wfu_constants.php:183
|
919 |
+
msgid "refreshing..."
|
920 |
+
msgstr "aggiornamento..."
|
921 |
+
|
922 |
+
#: lib/wfu_constants.php:184
|
923 |
+
msgid "correct captcha"
|
924 |
+
msgstr "captcha corretto"
|
925 |
+
|
926 |
+
#: lib/wfu_constants.php:185
|
927 |
+
msgid "click to continue the upload"
|
928 |
+
msgstr "clicca per continuare il caricamento"
|
929 |
+
|
930 |
+
#: lib/wfu_constants.php:186
|
931 |
+
msgid "Are you sure you want to delete this file?"
|
932 |
+
msgstr "Sei sicuro che vuoi cancellare questo file?"
|
933 |
+
|
934 |
+
#: lib/wfu_constants.php:187
|
935 |
+
msgid "Are you sure you want to delete these files?"
|
936 |
+
msgstr "Sei sicuro che vuoi cancellare questi file?"
|
937 |
+
|
938 |
+
#: lib/wfu_constants.php:188
|
939 |
+
msgid "Bulk Actions"
|
940 |
+
msgstr "Azioni in massa (bulk)"
|
941 |
+
|
942 |
+
#: lib/wfu_constants.php:189
|
943 |
+
msgid "Apply"
|
944 |
+
msgstr "Applica"
|
945 |
+
|
946 |
+
#: lib/wfu_constants.php:190
|
947 |
+
msgid "Are you sure that you want to cancel the upload?"
|
948 |
+
msgstr "Sei sicuro di voler cancellare il caricamento?"
|
949 |
+
|
950 |
+
#: lib/wfu_constants.php:191
|
951 |
+
msgid "cancel upload of this file"
|
952 |
+
msgstr "cancella il caricamento di questo file"
|
953 |
+
|
954 |
+
#: lib/wfu_constants.php:192
|
955 |
+
msgid "Upload in progress"
|
956 |
+
msgstr "Caricamento in corso"
|
957 |
+
|
958 |
+
#: lib/wfu_constants.php:193
|
959 |
+
msgid "Upload in progress with warnings!"
|
960 |
+
msgstr "Caricamento in corso con avvertimenti!"
|
961 |
+
|
962 |
+
#: lib/wfu_constants.php:194
|
963 |
+
msgid "Upload in progress but some files already failed!"
|
964 |
+
msgstr "Caricamento in corso ma alcuni file hanno già fallito!"
|
965 |
+
|
966 |
+
#: lib/wfu_constants.php:195
|
967 |
+
msgid "Upload in progress but no files uploaded so far!"
|
968 |
+
msgstr "Caricamento in corso ma nessun file è stato caricato per ora!"
|
969 |
+
|
970 |
+
#: lib/wfu_constants.php:196
|
971 |
+
msgid "All files uploaded successfully"
|
972 |
+
msgstr "Tutti i file sono stati caricati correttamente"
|
973 |
+
|
974 |
+
#: lib/wfu_constants.php:197
|
975 |
+
msgid "All files uploaded successfully but there are warnings!"
|
976 |
+
msgstr ""
|
977 |
+
"Tutti i file sono stati caricati correttamente ma ci sono degli avvertimenti"
|
978 |
+
|
979 |
+
#: lib/wfu_constants.php:198
|
980 |
+
msgid "File uploaded successfully but there are warnings!"
|
981 |
+
msgstr "File caricato correttamente ma con degli avvertimenti!"
|
982 |
+
|
983 |
+
#: lib/wfu_constants.php:199
|
984 |
+
msgid "Some files failed to upload!"
|
985 |
+
msgstr "Alcuni file non sono stati caricati!"
|
986 |
+
|
987 |
+
#: lib/wfu_constants.php:200
|
988 |
+
msgid "All files failed to upload"
|
989 |
+
msgstr "Tutti i file hanno fallito il caricamento"
|
990 |
+
|
991 |
+
#: lib/wfu_constants.php:201
|
992 |
+
msgid "File failed to upload"
|
993 |
+
msgstr "Il file ha fallito il caricamento"
|
994 |
+
|
995 |
+
#: lib/wfu_constants.php:202
|
996 |
+
msgid "There are no files to upload!"
|
997 |
+
msgstr "Non ci sono file da caricare!"
|
998 |
+
|
999 |
+
#: lib/wfu_constants.php:203
|
1000 |
+
msgid "Test upload message"
|
1001 |
+
msgstr "Prova il messaggio di caricamento"
|
1002 |
+
|
1003 |
+
#: lib/wfu_constants.php:204
|
1004 |
+
msgid "JSON parse warning!"
|
1005 |
+
msgstr "Avvertimento nell'analisi del JSON!"
|
1006 |
+
|
1007 |
+
#: lib/wfu_constants.php:205
|
1008 |
+
msgid "please wait while redirecting..."
|
1009 |
+
msgstr "Un attimo ancora, grazie..."
|
1010 |
+
|
1011 |
+
#: lib/wfu_constants.php:207
|
1012 |
+
msgid "Open visual shortcode editor in new window"
|
1013 |
+
msgstr "Apri l'editor visuale per i codici brevi in una nuova finestra"
|
1014 |
+
|
1015 |
+
#: lib/wfu_constants.php:208
|
1016 |
+
msgid "loading visual editor"
|
1017 |
+
msgstr "Caricamento dell'editor visuale"
|
1018 |
+
|
1019 |
+
#: lib/wfu_constants.php:209
|
1020 |
+
msgid "Clear file list?"
|
1021 |
+
msgstr "Pulire la lista dei file?"
|
1022 |
+
|
1023 |
+
#: lib/wfu_constants.php:210
|
1024 |
+
msgid "DROP HERE"
|
1025 |
+
msgstr "TRASCINA QUI"
|
1026 |
+
|
1027 |
+
#: lib/wfu_constants.php:212
|
1028 |
+
msgid "record video"
|
1029 |
+
msgstr "registra video"
|
1030 |
+
|
1031 |
+
#: lib/wfu_constants.php:213
|
1032 |
+
msgid "take a picture"
|
1033 |
+
msgstr "scatta una foto"
|
1034 |
+
|
1035 |
+
#: lib/wfu_constants.php:214
|
1036 |
+
msgid "turn webcam on/off"
|
1037 |
+
msgstr "accendi o spegni la webcam"
|
1038 |
+
|
1039 |
+
#: lib/wfu_constants.php:215
|
1040 |
+
msgid "go live again"
|
1041 |
+
msgstr "torna in diretta"
|
1042 |
+
|
1043 |
+
#: lib/wfu_constants.php:216
|
1044 |
+
msgid "end recording"
|
1045 |
+
msgstr "termina registrazione"
|
1046 |
+
|
1047 |
+
#: lib/wfu_constants.php:217
|
1048 |
+
msgid "play"
|
1049 |
+
msgstr "riproduci"
|
1050 |
+
|
1051 |
+
#: lib/wfu_constants.php:218
|
1052 |
+
msgid "pause"
|
1053 |
+
msgstr "pausa"
|
1054 |
+
|
1055 |
+
#: lib/wfu_constants.php:219
|
1056 |
+
msgid "go to the beginning"
|
1057 |
+
msgstr "vai all'inizio"
|
1058 |
+
|
1059 |
+
#: lib/wfu_constants.php:220
|
1060 |
+
msgid "go to the end"
|
1061 |
+
msgstr "vai alla fine"
|
1062 |
+
|
1063 |
+
#: lib/wfu_constants.php:222
|
1064 |
+
msgid "Wordpress File Upload Form"
|
1065 |
+
msgstr "Wordpress File Upload Form"
|
1066 |
+
|
1067 |
+
#: lib/wfu_constants.php:223
|
1068 |
+
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1069 |
+
msgstr "Wordpress File Upload plugin per barre laterali"
|
1070 |
+
|
1071 |
+
#: lib/wfu_constants.php:224
|
1072 |
+
msgid "Upload Files"
|
1073 |
+
msgstr "Carica Files"
|
languages/wp-file-upload-nl_NL.mo
CHANGED
Binary file
|
languages/wp-file-upload-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -311,7 +311,7 @@ msgstr ""
|
|
311 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
312 |
msgstr "Upload mislukt! Een fout is opgetreden tijdens het uploaden."
|
313 |
|
314 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
315 |
msgid "Upload failed!"
|
316 |
msgstr "Upload mislukt!"
|
317 |
|
@@ -579,30 +579,42 @@ msgid "Could not open file handles on chunk %d"
|
|
579 |
msgstr "Kon het bestand op blok %d niet openen"
|
580 |
|
581 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
msgid "You are not allowed to delete this file!"
|
583 |
msgstr "Je hebt geen toestemming om dit bestand te verwijderen!"
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid "File was not deleted!"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: lib/wfu_constants.php:
|
590 |
msgid "No file was deleted!"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: lib/wfu_constants.php:
|
594 |
msgid "Some files were not deleted!"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: lib/wfu_constants.php:
|
598 |
msgid "Upload skipped! File already exists."
|
599 |
msgstr "Upload overgeslagen! Bestand bestaat al."
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "The extension of the file does not match its contents."
|
603 |
msgstr "De extensie van het bestand komt niet overeen met zijn inhoud."
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid ""
|
607 |
"Upload succeeded but the file is suspicious because its contents do not "
|
608 |
"match its extension. Its proper filename is: "
|
@@ -610,22 +622,22 @@ msgstr ""
|
|
610 |
"Upload is gelukt maar het bestand is dubieus omdat zijn inhoud niet overeen "
|
611 |
"komt met de extensie. De correcte bestandsnaam is "
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
msgid "No files have been selected!"
|
615 |
msgstr "Er werden geen bestanden geselecteerd!"
|
616 |
|
617 |
-
#: lib/wfu_constants.php:
|
618 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
619 |
msgstr ""
|
620 |
"WPFilebase Plugin werd niet geüpdatet omdat er geen bestanden werden "
|
621 |
"geüpload."
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid "Notification email was not sent because there were no files uploaded."
|
625 |
msgstr ""
|
626 |
"Er werd geen meldingsmail verstuurd omdat er geen bestanden werden geüpload."
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
msgid ""
|
630 |
"Notification email was not sent because no recipients were defined. Please "
|
631 |
"check notifyrecipients attribute in the shortcode."
|
@@ -633,7 +645,7 @@ msgstr ""
|
|
633 |
"Er werd geen meldingsmail verstuurd omdat er geen ontvangers werden "
|
634 |
"toegekend. Controleer de notifyrecipients attribuut in de shortcode."
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
msgid ""
|
638 |
"Notification email was not sent due to an error. Please check "
|
639 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -641,7 +653,7 @@ msgstr ""
|
|
641 |
"Meldingsmail werd niet verstuurd wegens een fout. Controleer "
|
642 |
"notifyrecipients, notifysubject en notifymessage attributen op fouten."
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid ""
|
646 |
"Redirection not executed because redirection link is empty. Please check "
|
647 |
"redirectlink attribute."
|
@@ -649,18 +661,18 @@ msgstr ""
|
|
649 |
"Omleiding niet uitgevoerd omdat de omleidingslink ontbreekt. Controleer het "
|
650 |
"omleidingslink attribuut."
|
651 |
|
652 |
-
#: lib/wfu_constants.php:
|
653 |
msgid ""
|
654 |
"Redirection not executed because not all files were successfully uploaded."
|
655 |
msgstr ""
|
656 |
"Omleiding werd niet uitgevoerd omdat niet alle bestanden correct werden "
|
657 |
"geüpload."
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid ""
|
665 |
"Hello admin\n"
|
666 |
"\n"
|
@@ -680,7 +692,7 @@ msgid ""
|
|
680 |
"Thanks"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid ""
|
685 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
686 |
"message persists, contact administrator."
|
@@ -688,7 +700,7 @@ msgstr ""
|
|
688 |
"De shortcode toevoegen aan de pagina/post is mislukt. Probeer opnieuw. "
|
689 |
"Contacteer de beheerder wanneer dit bericht blijft verschijnen."
|
690 |
|
691 |
-
#: lib/wfu_constants.php:
|
692 |
msgid ""
|
693 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
694 |
"again to edit the shortcode."
|
@@ -696,7 +708,7 @@ msgstr ""
|
|
696 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
697 |
"veranderd. Probeer de shortcode opnieuw aan te passen."
|
698 |
|
699 |
-
#: lib/wfu_constants.php:
|
700 |
msgid ""
|
701 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
702 |
"again to delete it."
|
@@ -704,7 +716,7 @@ msgstr ""
|
|
704 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
705 |
"veranderd. Probeer opnieuw te verwijderen."
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"The page containing the shortcode has been modified and it is no longer "
|
710 |
"valid. Please go back to reload the shortcode."
|
@@ -712,7 +724,7 @@ msgstr ""
|
|
712 |
"De pagina die de shortcode bevat werd aangepast en is daardoor niet langer "
|
713 |
"geldig. Ga terug om de shortcode te herladen."
|
714 |
|
715 |
-
#: lib/wfu_constants.php:
|
716 |
msgid ""
|
717 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
718 |
"back to reload the shortcode."
|
@@ -720,7 +732,7 @@ msgstr ""
|
|
720 |
"Het updaten van de shortcode is mislukt omdat de inhoud van de pagina werd "
|
721 |
"gewijzigd. Ga terug om de shortcode te herladen."
|
722 |
|
723 |
-
#: lib/wfu_constants.php:
|
724 |
msgid ""
|
725 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
726 |
"go back and reload the shortcode."
|
@@ -728,39 +740,39 @@ msgstr ""
|
|
728 |
"Updaten van de shortcode is mislukt. Probeer opnieuw. Als het probleem zich "
|
729 |
"blijft voordoen, ga dan terug en herlaadt de shortcode."
|
730 |
|
731 |
-
#: lib/wfu_constants.php:
|
732 |
msgid "This is a test message"
|
733 |
msgstr "Dit is een testbericht"
|
734 |
|
735 |
-
#: lib/wfu_constants.php:
|
736 |
msgid "This is a test administrator message"
|
737 |
msgstr "Dit is een test beheerdersbericht"
|
738 |
|
739 |
-
#: lib/wfu_constants.php:
|
740 |
msgid "File testfile 1 under test"
|
741 |
msgstr "Bestand testfile 1 onder test"
|
742 |
|
743 |
-
#: lib/wfu_constants.php:
|
744 |
msgid "File testfile 1 message"
|
745 |
msgstr "Bestand testfile 1 bericht"
|
746 |
|
747 |
-
#: lib/wfu_constants.php:
|
748 |
msgid "File testfile 1 administrator message"
|
749 |
msgstr "Bestand testfile 1 beheerdersbericht"
|
750 |
|
751 |
-
#: lib/wfu_constants.php:
|
752 |
msgid "File testfile 2 under test"
|
753 |
msgstr "Bestand tesfile 2 onder test"
|
754 |
|
755 |
-
#: lib/wfu_constants.php:
|
756 |
msgid "File testfile 2 message"
|
757 |
msgstr "Bestand testfile 2 bericht"
|
758 |
|
759 |
-
#: lib/wfu_constants.php:
|
760 |
msgid "File testfile 2 administrator message"
|
761 |
msgstr "Bestand testfile 2 beheerdersbericht"
|
762 |
|
763 |
-
#: lib/wfu_constants.php:
|
764 |
msgid ""
|
765 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
766 |
"current user."
|
@@ -768,7 +780,7 @@ msgstr ""
|
|
768 |
"Plaats de variabele %userid% in de tekst. Het zal worden vervangen door de "
|
769 |
"id van de huidige gebruiker."
|
770 |
|
771 |
-
#: lib/wfu_constants.php:
|
772 |
msgid ""
|
773 |
"Insert variable %username% inside text. It will be replaced by the username "
|
774 |
"of the current user."
|
@@ -776,7 +788,7 @@ msgstr ""
|
|
776 |
"Plaats de variabele %username% in de tekst. Het zal worden vervangen door de "
|
777 |
"gebruikersnaam van de huidige gebruiker."
|
778 |
|
779 |
-
#: lib/wfu_constants.php:
|
780 |
msgid ""
|
781 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
782 |
"the current user."
|
@@ -784,7 +796,7 @@ msgstr ""
|
|
784 |
"Plaats de variabele %usermail% in de tekst. Het zal worden vervangen door "
|
785 |
"het e-mailadres van de huidige gebruiker."
|
786 |
|
787 |
-
#: lib/wfu_constants.php:
|
788 |
msgid ""
|
789 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
790 |
"of the uploaded file."
|
@@ -792,7 +804,7 @@ msgstr ""
|
|
792 |
"Plaats de variabele %filename% in de tekst. Het zal worden vervangen door de "
|
793 |
"bestandsnaam van het geüploade bestand."
|
794 |
|
795 |
-
#: lib/wfu_constants.php:
|
796 |
msgid ""
|
797 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
798 |
"filepath of the uploaded file."
|
@@ -800,7 +812,7 @@ msgstr ""
|
|
800 |
"Plaats de variabele %filepath% in de tekst. Het zal worden vervangen door "
|
801 |
"het volledige bestandspad van het geüploade bestand."
|
802 |
|
803 |
-
#: lib/wfu_constants.php:
|
804 |
msgid ""
|
805 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
806 |
"the website."
|
@@ -808,7 +820,7 @@ msgstr ""
|
|
808 |
"Plaats de variabele %blogid% in de tekst. Het zal worden vervangen door de "
|
809 |
"blog id van de website."
|
810 |
|
811 |
-
#: lib/wfu_constants.php:
|
812 |
msgid ""
|
813 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
814 |
"current page."
|
@@ -816,7 +828,7 @@ msgstr ""
|
|
816 |
"Plaats de variabele %pageid% in de tekst. Het zal worden vervangen door de "
|
817 |
"id van de huidige pagina."
|
818 |
|
819 |
-
#: lib/wfu_constants.php:
|
820 |
msgid ""
|
821 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
822 |
"the current page."
|
@@ -824,7 +836,7 @@ msgstr ""
|
|
824 |
"Plaats de variabele %pagetitle% in de tekst. Het zal worden vervangen door "
|
825 |
"de titel van de huidige pagina."
|
826 |
|
827 |
-
#: lib/wfu_constants.php:
|
828 |
msgid ""
|
829 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
830 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -834,196 +846,196 @@ msgstr ""
|
|
834 |
"via het uitklaplijst. Het zal worden vervangen door de data die de gebruiker "
|
835 |
"in dit veld heeft ingevuld."
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "Insert variable %n% inside text to denote a line change."
|
839 |
msgstr ""
|
840 |
"Plaats de variabele %n% in de tekst om verder te gaan naar de volgende regel."
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "Test Mode"
|
844 |
msgstr "Test Modus"
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "select dir..."
|
848 |
msgstr "selecteer dir..."
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "type dir"
|
852 |
msgstr "type dir"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "Upload path: %filepath%"
|
856 |
msgstr "Uploadpad: %filepath%"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "Failed upload path: %filepath%"
|
860 |
msgstr "Foutief uploadpad: %filepath%"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid " (required)"
|
864 |
msgstr "(verplicht)"
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
868 |
msgstr ""
|
869 |
"Bestanden worden geüpload. Ben je zeker dat je de pagina wilt verlaten?"
|
870 |
|
871 |
-
#: lib/wfu_constants.php:
|
872 |
msgid "checking captcha..."
|
873 |
msgstr "captcha controleren..."
|
874 |
|
875 |
-
#: lib/wfu_constants.php:
|
876 |
msgid "refreshing..."
|
877 |
msgstr "verversen..."
|
878 |
|
879 |
-
#: lib/wfu_constants.php:
|
880 |
msgid "correct captcha"
|
881 |
msgstr "correcte captcha"
|
882 |
|
883 |
-
#: lib/wfu_constants.php:
|
884 |
msgid "click to continue the upload"
|
885 |
msgstr "Klik om door te gaan met uploaden"
|
886 |
|
887 |
-
#: lib/wfu_constants.php:
|
888 |
msgid "Are you sure you want to delete this file?"
|
889 |
msgstr "Ben je zeker dat je dit bestand wilt verwijderen?"
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid "Are you sure you want to delete these files?"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
896 |
msgid "Bulk Actions"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: lib/wfu_constants.php:
|
900 |
msgid "Apply"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid "Are you sure that you want to cancel the upload?"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "cancel upload of this file"
|
909 |
msgstr "uploaden van dit bestand annuleren"
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid "Upload in progress"
|
913 |
msgstr "Upload is bezig"
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid "Upload in progress with warnings!"
|
917 |
msgstr "Upload is bezig met waarschuwingen!"
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "Upload in progress but some files already failed!"
|
921 |
msgstr "Upload is bezig maar sommige bestanden zijn reeds mislukt!"
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "Upload in progress but no files uploaded so far!"
|
925 |
msgstr "Upload is bezig maar er werden tot nu toe nog geen bestanden geüpload!"
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "All files uploaded successfully"
|
929 |
msgstr "Alle bestanden met succes geüpload"
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid "All files uploaded successfully but there are warnings!"
|
933 |
msgstr "Alle bestanden zijn succesvol geüpload maar er zijn waarschuwingen!"
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "File uploaded successfully but there are warnings!"
|
937 |
msgstr "Bestand werd succesvol geüpload maar er zijn waarschuwingen!"
|
938 |
|
939 |
-
#: lib/wfu_constants.php:
|
940 |
msgid "Some files failed to upload!"
|
941 |
msgstr "Sommige bestanden werden niet geüpload!"
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid "All files failed to upload"
|
945 |
msgstr "Upload mislukt voor alle bestanden"
|
946 |
|
947 |
-
#: lib/wfu_constants.php:
|
948 |
msgid "File failed to upload"
|
949 |
msgstr "Upload mislukt voor bestand"
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid "There are no files to upload!"
|
953 |
msgstr "Er zijn geen bestanden om te uploaden!"
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "Test upload message"
|
957 |
msgstr "Test upload berciht"
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "JSON parse warning!"
|
961 |
msgstr "JSON parseer waarschuwing!"
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "please wait while redirecting..."
|
965 |
msgstr "wacht a.u.b. terwijl je wordt doorverwezen..."
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "Open visual shortcode editor in new window"
|
969 |
msgstr "Open de visuele shortcode editor in een nieuw venster"
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "loading visual editor"
|
973 |
msgstr "laden visuele editor"
|
974 |
|
975 |
-
#: lib/wfu_constants.php:
|
976 |
msgid "Clear file list?"
|
977 |
msgstr "Bestandenlijst wissen?"
|
978 |
|
979 |
-
#: lib/wfu_constants.php:
|
980 |
msgid "DROP HERE"
|
981 |
msgstr "PLAATS HIER"
|
982 |
|
983 |
-
#: lib/wfu_constants.php:
|
984 |
msgid "record video"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: lib/wfu_constants.php:
|
988 |
msgid "take a picture"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: lib/wfu_constants.php:
|
992 |
msgid "turn webcam on/off"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: lib/wfu_constants.php:
|
996 |
msgid "go live again"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: lib/wfu_constants.php:
|
1000 |
msgid "end recording"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: lib/wfu_constants.php:
|
1004 |
msgid "play"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: lib/wfu_constants.php:
|
1008 |
msgid "pause"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: lib/wfu_constants.php:
|
1012 |
msgid "go to the beginning"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: lib/wfu_constants.php:
|
1016 |
msgid "go to the end"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "Wordpress File Upload Form"
|
1021 |
msgstr "Wordpress File Upload Formulier"
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1025 |
msgstr "Wordpress File Upload plugin uploader voor zijbalken"
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "Upload Files"
|
1029 |
msgstr "Upload Bestanden"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:33+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: nl_NL\n"
|
311 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
312 |
msgstr "Upload mislukt! Een fout is opgetreden tijdens het uploaden."
|
313 |
|
314 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
315 |
msgid "Upload failed!"
|
316 |
msgstr "Upload mislukt!"
|
317 |
|
579 |
msgstr "Kon het bestand op blok %d niet openen"
|
580 |
|
581 |
#: lib/wfu_constants.php:127
|
582 |
+
msgid "You are not allowed to download this file!"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: lib/wfu_constants.php:128
|
586 |
+
msgid "File does not exist!"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: lib/wfu_constants.php:129
|
590 |
+
msgid "Could not download file!"
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: lib/wfu_constants.php:130
|
594 |
msgid "You are not allowed to delete this file!"
|
595 |
msgstr "Je hebt geen toestemming om dit bestand te verwijderen!"
|
596 |
|
597 |
+
#: lib/wfu_constants.php:131
|
598 |
msgid "File was not deleted!"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: lib/wfu_constants.php:132
|
602 |
msgid "No file was deleted!"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: lib/wfu_constants.php:133
|
606 |
msgid "Some files were not deleted!"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: lib/wfu_constants.php:135
|
610 |
msgid "Upload skipped! File already exists."
|
611 |
msgstr "Upload overgeslagen! Bestand bestaat al."
|
612 |
|
613 |
+
#: lib/wfu_constants.php:136
|
614 |
msgid "The extension of the file does not match its contents."
|
615 |
msgstr "De extensie van het bestand komt niet overeen met zijn inhoud."
|
616 |
|
617 |
+
#: lib/wfu_constants.php:137
|
618 |
msgid ""
|
619 |
"Upload succeeded but the file is suspicious because its contents do not "
|
620 |
"match its extension. Its proper filename is: "
|
622 |
"Upload is gelukt maar het bestand is dubieus omdat zijn inhoud niet overeen "
|
623 |
"komt met de extensie. De correcte bestandsnaam is "
|
624 |
|
625 |
+
#: lib/wfu_constants.php:138
|
626 |
msgid "No files have been selected!"
|
627 |
msgstr "Er werden geen bestanden geselecteerd!"
|
628 |
|
629 |
+
#: lib/wfu_constants.php:139
|
630 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
631 |
msgstr ""
|
632 |
"WPFilebase Plugin werd niet geüpdatet omdat er geen bestanden werden "
|
633 |
"geüpload."
|
634 |
|
635 |
+
#: lib/wfu_constants.php:140
|
636 |
msgid "Notification email was not sent because there were no files uploaded."
|
637 |
msgstr ""
|
638 |
"Er werd geen meldingsmail verstuurd omdat er geen bestanden werden geüpload."
|
639 |
|
640 |
+
#: lib/wfu_constants.php:141
|
641 |
msgid ""
|
642 |
"Notification email was not sent because no recipients were defined. Please "
|
643 |
"check notifyrecipients attribute in the shortcode."
|
645 |
"Er werd geen meldingsmail verstuurd omdat er geen ontvangers werden "
|
646 |
"toegekend. Controleer de notifyrecipients attribuut in de shortcode."
|
647 |
|
648 |
+
#: lib/wfu_constants.php:142
|
649 |
msgid ""
|
650 |
"Notification email was not sent due to an error. Please check "
|
651 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
653 |
"Meldingsmail werd niet verstuurd wegens een fout. Controleer "
|
654 |
"notifyrecipients, notifysubject en notifymessage attributen op fouten."
|
655 |
|
656 |
+
#: lib/wfu_constants.php:143
|
657 |
msgid ""
|
658 |
"Redirection not executed because redirection link is empty. Please check "
|
659 |
"redirectlink attribute."
|
661 |
"Omleiding niet uitgevoerd omdat de omleidingslink ontbreekt. Controleer het "
|
662 |
"omleidingslink attribuut."
|
663 |
|
664 |
+
#: lib/wfu_constants.php:144
|
665 |
msgid ""
|
666 |
"Redirection not executed because not all files were successfully uploaded."
|
667 |
msgstr ""
|
668 |
"Omleiding werd niet uitgevoerd omdat niet alle bestanden correct werden "
|
669 |
"geüpload."
|
670 |
|
671 |
+
#: lib/wfu_constants.php:145
|
672 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: lib/wfu_constants.php:146
|
676 |
msgid ""
|
677 |
"Hello admin\n"
|
678 |
"\n"
|
692 |
"Thanks"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: lib/wfu_constants.php:148
|
696 |
msgid ""
|
697 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
698 |
"message persists, contact administrator."
|
700 |
"De shortcode toevoegen aan de pagina/post is mislukt. Probeer opnieuw. "
|
701 |
"Contacteer de beheerder wanneer dit bericht blijft verschijnen."
|
702 |
|
703 |
+
#: lib/wfu_constants.php:149
|
704 |
msgid ""
|
705 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
706 |
"again to edit the shortcode."
|
708 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
709 |
"veranderd. Probeer de shortcode opnieuw aan te passen."
|
710 |
|
711 |
+
#: lib/wfu_constants.php:150
|
712 |
msgid ""
|
713 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
714 |
"again to delete it."
|
716 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
717 |
"veranderd. Probeer opnieuw te verwijderen."
|
718 |
|
719 |
+
#: lib/wfu_constants.php:151
|
720 |
msgid ""
|
721 |
"The page containing the shortcode has been modified and it is no longer "
|
722 |
"valid. Please go back to reload the shortcode."
|
724 |
"De pagina die de shortcode bevat werd aangepast en is daardoor niet langer "
|
725 |
"geldig. Ga terug om de shortcode te herladen."
|
726 |
|
727 |
+
#: lib/wfu_constants.php:152
|
728 |
msgid ""
|
729 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
730 |
"back to reload the shortcode."
|
732 |
"Het updaten van de shortcode is mislukt omdat de inhoud van de pagina werd "
|
733 |
"gewijzigd. Ga terug om de shortcode te herladen."
|
734 |
|
735 |
+
#: lib/wfu_constants.php:153
|
736 |
msgid ""
|
737 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
738 |
"go back and reload the shortcode."
|
740 |
"Updaten van de shortcode is mislukt. Probeer opnieuw. Als het probleem zich "
|
741 |
"blijft voordoen, ga dan terug en herlaadt de shortcode."
|
742 |
|
743 |
+
#: lib/wfu_constants.php:155
|
744 |
msgid "This is a test message"
|
745 |
msgstr "Dit is een testbericht"
|
746 |
|
747 |
+
#: lib/wfu_constants.php:156
|
748 |
msgid "This is a test administrator message"
|
749 |
msgstr "Dit is een test beheerdersbericht"
|
750 |
|
751 |
+
#: lib/wfu_constants.php:157
|
752 |
msgid "File testfile 1 under test"
|
753 |
msgstr "Bestand testfile 1 onder test"
|
754 |
|
755 |
+
#: lib/wfu_constants.php:158
|
756 |
msgid "File testfile 1 message"
|
757 |
msgstr "Bestand testfile 1 bericht"
|
758 |
|
759 |
+
#: lib/wfu_constants.php:159
|
760 |
msgid "File testfile 1 administrator message"
|
761 |
msgstr "Bestand testfile 1 beheerdersbericht"
|
762 |
|
763 |
+
#: lib/wfu_constants.php:160
|
764 |
msgid "File testfile 2 under test"
|
765 |
msgstr "Bestand tesfile 2 onder test"
|
766 |
|
767 |
+
#: lib/wfu_constants.php:161
|
768 |
msgid "File testfile 2 message"
|
769 |
msgstr "Bestand testfile 2 bericht"
|
770 |
|
771 |
+
#: lib/wfu_constants.php:162
|
772 |
msgid "File testfile 2 administrator message"
|
773 |
msgstr "Bestand testfile 2 beheerdersbericht"
|
774 |
|
775 |
+
#: lib/wfu_constants.php:164
|
776 |
msgid ""
|
777 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
778 |
"current user."
|
780 |
"Plaats de variabele %userid% in de tekst. Het zal worden vervangen door de "
|
781 |
"id van de huidige gebruiker."
|
782 |
|
783 |
+
#: lib/wfu_constants.php:165
|
784 |
msgid ""
|
785 |
"Insert variable %username% inside text. It will be replaced by the username "
|
786 |
"of the current user."
|
788 |
"Plaats de variabele %username% in de tekst. Het zal worden vervangen door de "
|
789 |
"gebruikersnaam van de huidige gebruiker."
|
790 |
|
791 |
+
#: lib/wfu_constants.php:166
|
792 |
msgid ""
|
793 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
794 |
"the current user."
|
796 |
"Plaats de variabele %usermail% in de tekst. Het zal worden vervangen door "
|
797 |
"het e-mailadres van de huidige gebruiker."
|
798 |
|
799 |
+
#: lib/wfu_constants.php:167
|
800 |
msgid ""
|
801 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
802 |
"of the uploaded file."
|
804 |
"Plaats de variabele %filename% in de tekst. Het zal worden vervangen door de "
|
805 |
"bestandsnaam van het geüploade bestand."
|
806 |
|
807 |
+
#: lib/wfu_constants.php:168
|
808 |
msgid ""
|
809 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
810 |
"filepath of the uploaded file."
|
812 |
"Plaats de variabele %filepath% in de tekst. Het zal worden vervangen door "
|
813 |
"het volledige bestandspad van het geüploade bestand."
|
814 |
|
815 |
+
#: lib/wfu_constants.php:169
|
816 |
msgid ""
|
817 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
818 |
"the website."
|
820 |
"Plaats de variabele %blogid% in de tekst. Het zal worden vervangen door de "
|
821 |
"blog id van de website."
|
822 |
|
823 |
+
#: lib/wfu_constants.php:170
|
824 |
msgid ""
|
825 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
826 |
"current page."
|
828 |
"Plaats de variabele %pageid% in de tekst. Het zal worden vervangen door de "
|
829 |
"id van de huidige pagina."
|
830 |
|
831 |
+
#: lib/wfu_constants.php:171
|
832 |
msgid ""
|
833 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
834 |
"the current page."
|
836 |
"Plaats de variabele %pagetitle% in de tekst. Het zal worden vervangen door "
|
837 |
"de titel van de huidige pagina."
|
838 |
|
839 |
+
#: lib/wfu_constants.php:172
|
840 |
msgid ""
|
841 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
842 |
"drop-down list. It will be replaced by the value that the user entered in "
|
846 |
"via het uitklaplijst. Het zal worden vervangen door de data die de gebruiker "
|
847 |
"in dit veld heeft ingevuld."
|
848 |
|
849 |
+
#: lib/wfu_constants.php:173
|
850 |
msgid "Insert variable %n% inside text to denote a line change."
|
851 |
msgstr ""
|
852 |
"Plaats de variabele %n% in de tekst om verder te gaan naar de volgende regel."
|
853 |
|
854 |
+
#: lib/wfu_constants.php:175
|
855 |
msgid "Test Mode"
|
856 |
msgstr "Test Modus"
|
857 |
|
858 |
+
#: lib/wfu_constants.php:176
|
859 |
msgid "select dir..."
|
860 |
msgstr "selecteer dir..."
|
861 |
|
862 |
+
#: lib/wfu_constants.php:177
|
863 |
msgid "type dir"
|
864 |
msgstr "type dir"
|
865 |
|
866 |
+
#: lib/wfu_constants.php:178
|
867 |
msgid "Upload path: %filepath%"
|
868 |
msgstr "Uploadpad: %filepath%"
|
869 |
|
870 |
+
#: lib/wfu_constants.php:179
|
871 |
msgid "Failed upload path: %filepath%"
|
872 |
msgstr "Foutief uploadpad: %filepath%"
|
873 |
|
874 |
+
#: lib/wfu_constants.php:180
|
875 |
msgid " (required)"
|
876 |
msgstr "(verplicht)"
|
877 |
|
878 |
+
#: lib/wfu_constants.php:181
|
879 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
880 |
msgstr ""
|
881 |
"Bestanden worden geüpload. Ben je zeker dat je de pagina wilt verlaten?"
|
882 |
|
883 |
+
#: lib/wfu_constants.php:182
|
884 |
msgid "checking captcha..."
|
885 |
msgstr "captcha controleren..."
|
886 |
|
887 |
+
#: lib/wfu_constants.php:183
|
888 |
msgid "refreshing..."
|
889 |
msgstr "verversen..."
|
890 |
|
891 |
+
#: lib/wfu_constants.php:184
|
892 |
msgid "correct captcha"
|
893 |
msgstr "correcte captcha"
|
894 |
|
895 |
+
#: lib/wfu_constants.php:185
|
896 |
msgid "click to continue the upload"
|
897 |
msgstr "Klik om door te gaan met uploaden"
|
898 |
|
899 |
+
#: lib/wfu_constants.php:186
|
900 |
msgid "Are you sure you want to delete this file?"
|
901 |
msgstr "Ben je zeker dat je dit bestand wilt verwijderen?"
|
902 |
|
903 |
+
#: lib/wfu_constants.php:187
|
904 |
msgid "Are you sure you want to delete these files?"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: lib/wfu_constants.php:188
|
908 |
msgid "Bulk Actions"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: lib/wfu_constants.php:189
|
912 |
msgid "Apply"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: lib/wfu_constants.php:190
|
916 |
msgid "Are you sure that you want to cancel the upload?"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: lib/wfu_constants.php:191
|
920 |
msgid "cancel upload of this file"
|
921 |
msgstr "uploaden van dit bestand annuleren"
|
922 |
|
923 |
+
#: lib/wfu_constants.php:192
|
924 |
msgid "Upload in progress"
|
925 |
msgstr "Upload is bezig"
|
926 |
|
927 |
+
#: lib/wfu_constants.php:193
|
928 |
msgid "Upload in progress with warnings!"
|
929 |
msgstr "Upload is bezig met waarschuwingen!"
|
930 |
|
931 |
+
#: lib/wfu_constants.php:194
|
932 |
msgid "Upload in progress but some files already failed!"
|
933 |
msgstr "Upload is bezig maar sommige bestanden zijn reeds mislukt!"
|
934 |
|
935 |
+
#: lib/wfu_constants.php:195
|
936 |
msgid "Upload in progress but no files uploaded so far!"
|
937 |
msgstr "Upload is bezig maar er werden tot nu toe nog geen bestanden geüpload!"
|
938 |
|
939 |
+
#: lib/wfu_constants.php:196
|
940 |
msgid "All files uploaded successfully"
|
941 |
msgstr "Alle bestanden met succes geüpload"
|
942 |
|
943 |
+
#: lib/wfu_constants.php:197
|
944 |
msgid "All files uploaded successfully but there are warnings!"
|
945 |
msgstr "Alle bestanden zijn succesvol geüpload maar er zijn waarschuwingen!"
|
946 |
|
947 |
+
#: lib/wfu_constants.php:198
|
948 |
msgid "File uploaded successfully but there are warnings!"
|
949 |
msgstr "Bestand werd succesvol geüpload maar er zijn waarschuwingen!"
|
950 |
|
951 |
+
#: lib/wfu_constants.php:199
|
952 |
msgid "Some files failed to upload!"
|
953 |
msgstr "Sommige bestanden werden niet geüpload!"
|
954 |
|
955 |
+
#: lib/wfu_constants.php:200
|
956 |
msgid "All files failed to upload"
|
957 |
msgstr "Upload mislukt voor alle bestanden"
|
958 |
|
959 |
+
#: lib/wfu_constants.php:201
|
960 |
msgid "File failed to upload"
|
961 |
msgstr "Upload mislukt voor bestand"
|
962 |
|
963 |
+
#: lib/wfu_constants.php:202
|
964 |
msgid "There are no files to upload!"
|
965 |
msgstr "Er zijn geen bestanden om te uploaden!"
|
966 |
|
967 |
+
#: lib/wfu_constants.php:203
|
968 |
msgid "Test upload message"
|
969 |
msgstr "Test upload berciht"
|
970 |
|
971 |
+
#: lib/wfu_constants.php:204
|
972 |
msgid "JSON parse warning!"
|
973 |
msgstr "JSON parseer waarschuwing!"
|
974 |
|
975 |
+
#: lib/wfu_constants.php:205
|
976 |
msgid "please wait while redirecting..."
|
977 |
msgstr "wacht a.u.b. terwijl je wordt doorverwezen..."
|
978 |
|
979 |
+
#: lib/wfu_constants.php:207
|
980 |
msgid "Open visual shortcode editor in new window"
|
981 |
msgstr "Open de visuele shortcode editor in een nieuw venster"
|
982 |
|
983 |
+
#: lib/wfu_constants.php:208
|
984 |
msgid "loading visual editor"
|
985 |
msgstr "laden visuele editor"
|
986 |
|
987 |
+
#: lib/wfu_constants.php:209
|
988 |
msgid "Clear file list?"
|
989 |
msgstr "Bestandenlijst wissen?"
|
990 |
|
991 |
+
#: lib/wfu_constants.php:210
|
992 |
msgid "DROP HERE"
|
993 |
msgstr "PLAATS HIER"
|
994 |
|
995 |
+
#: lib/wfu_constants.php:212
|
996 |
msgid "record video"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: lib/wfu_constants.php:213
|
1000 |
msgid "take a picture"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:214
|
1004 |
msgid "turn webcam on/off"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:215
|
1008 |
msgid "go live again"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:216
|
1012 |
msgid "end recording"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:217
|
1016 |
msgid "play"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:218
|
1020 |
msgid "pause"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:219
|
1024 |
msgid "go to the beginning"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:220
|
1028 |
msgid "go to the end"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:222
|
1032 |
msgid "Wordpress File Upload Form"
|
1033 |
msgstr "Wordpress File Upload Formulier"
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:223
|
1036 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1037 |
msgstr "Wordpress File Upload plugin uploader voor zijbalken"
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:224
|
1040 |
msgid "Upload Files"
|
1041 |
msgstr "Upload Bestanden"
|
languages/wp-file-upload-pl_PL.mo
CHANGED
Binary file
|
languages/wp-file-upload-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -302,7 +302,7 @@ msgid "Upload failed! Error occured while attemting to upload the file."
|
|
302 |
msgstr ""
|
303 |
"Wysyłanie nie powiodło się! Wystąpił błąd podczas attemting wgrać plik."
|
304 |
|
305 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
306 |
msgid "Upload failed!"
|
307 |
msgstr "BŁĄD PRZESYŁANIA!!!"
|
308 |
|
@@ -562,51 +562,63 @@ msgid "Could not open file handles on chunk %d"
|
|
562 |
msgstr ""
|
563 |
|
564 |
#: lib/wfu_constants.php:127
|
565 |
-
msgid "You are not allowed to
|
566 |
msgstr ""
|
567 |
|
568 |
#: lib/wfu_constants.php:128
|
569 |
-
msgid "File
|
570 |
msgstr ""
|
571 |
|
572 |
#: lib/wfu_constants.php:129
|
573 |
-
msgid "
|
574 |
msgstr ""
|
575 |
|
576 |
#: lib/wfu_constants.php:130
|
577 |
-
msgid "
|
|
|
|
|
|
|
|
|
578 |
msgstr ""
|
579 |
|
580 |
#: lib/wfu_constants.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
msgid "Upload skipped! File already exists."
|
582 |
msgstr "Przepraszamy, ten plik już istnieje!"
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "The extension of the file does not match its contents."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid ""
|
590 |
"Upload succeeded but the file is suspicious because its contents do not "
|
591 |
"match its extension. Its proper filename is: "
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid "No files have been selected!"
|
596 |
msgstr "Nie wybrano żadnych plików"
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
600 |
msgstr ""
|
601 |
"WPFilebase Plugin nie aktualizowane, ponieważ nie było tam plików przesłane."
|
602 |
|
603 |
-
#: lib/wfu_constants.php:
|
604 |
msgid "Notification email was not sent because there were no files uploaded."
|
605 |
msgstr ""
|
606 |
"Powiadomienia e-mail nie została wysłana, ponieważ nie zostały przesłane "
|
607 |
"pliki."
|
608 |
|
609 |
-
#: lib/wfu_constants.php:
|
610 |
msgid ""
|
611 |
"Notification email was not sent because no recipients were defined. Please "
|
612 |
"check notifyrecipients attribute in the shortcode."
|
@@ -614,7 +626,7 @@ msgstr ""
|
|
614 |
"Powiadomienia e-mail nie zostały wysłane, ponieważ nie ma odbiorców "
|
615 |
"zdefiniowanych. Sprawdź atrybut notifyrecipients w kodzie."
|
616 |
|
617 |
-
#: lib/wfu_constants.php:
|
618 |
msgid ""
|
619 |
"Notification email was not sent due to an error. Please check "
|
620 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -622,7 +634,7 @@ msgstr ""
|
|
622 |
"Powiadomienia e-mail nie został wysłany z powodu błędu. Proszę sprawdzić "
|
623 |
"notifyrecipients, notifysubject i notifymessage atrybuty dla błędów."
|
624 |
|
625 |
-
#: lib/wfu_constants.php:
|
626 |
msgid ""
|
627 |
"Redirection not executed because redirection link is empty. Please check "
|
628 |
"redirectlink attribute."
|
@@ -630,18 +642,18 @@ msgstr ""
|
|
630 |
"Przekierowania nie wykonany, ponieważ link przekierowania jest pusty. "
|
631 |
"Sprawdź atrybut redirectlink."
|
632 |
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
msgid ""
|
635 |
"Redirection not executed because not all files were successfully uploaded."
|
636 |
msgstr ""
|
637 |
"Przekierowania nie wykonany, ponieważ nie wszystkie pliki zostały pomyślnie "
|
638 |
"załadowane."
|
639 |
|
640 |
-
#: lib/wfu_constants.php:
|
641 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid ""
|
646 |
"Hello admin\n"
|
647 |
"\n"
|
@@ -661,7 +673,7 @@ msgid ""
|
|
661 |
"Thanks"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: lib/wfu_constants.php:
|
665 |
msgid ""
|
666 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
667 |
"message persists, contact administrator."
|
@@ -669,7 +681,7 @@ msgstr ""
|
|
669 |
"Nie można dodać shortcode do strony/post. Proszę spróbować ponownie. Jeśli "
|
670 |
"komunikat będzie się powtarzał, skontaktuj się z administratorem."
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid ""
|
674 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
675 |
"again to edit the shortcode."
|
@@ -677,7 +689,7 @@ msgstr ""
|
|
677 |
"Nie można edytować shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
678 |
"ponownie."
|
679 |
|
680 |
-
#: lib/wfu_constants.php:
|
681 |
msgid ""
|
682 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
683 |
"again to delete it."
|
@@ -685,7 +697,7 @@ msgstr ""
|
|
685 |
"Nie można usunąć shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
686 |
"ponownie."
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid ""
|
690 |
"The page containing the shortcode has been modified and it is no longer "
|
691 |
"valid. Please go back to reload the shortcode."
|
@@ -693,7 +705,7 @@ msgstr ""
|
|
693 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
694 |
"przeładować shortcode."
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid ""
|
698 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
699 |
"back to reload the shortcode."
|
@@ -701,7 +713,7 @@ msgstr ""
|
|
701 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
702 |
"przeładować shortcode."
|
703 |
|
704 |
-
#: lib/wfu_constants.php:
|
705 |
msgid ""
|
706 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
707 |
"go back and reload the shortcode."
|
@@ -709,39 +721,39 @@ msgstr ""
|
|
709 |
"Nie można zaktualizować shortcode. Proszę spróbować ponownie. Jeśli problem "
|
710 |
"nie ustąpi, wrócić i ponownie załadować shortcode."
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid "This is a test message"
|
714 |
msgstr "To jest wiadomość testowa"
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid "This is a test administrator message"
|
718 |
msgstr "To jest wiadomość testowa administratora"
|
719 |
|
720 |
-
#: lib/wfu_constants.php:
|
721 |
msgid "File testfile 1 under test"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: lib/wfu_constants.php:
|
725 |
msgid "File testfile 1 message"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: lib/wfu_constants.php:
|
729 |
msgid "File testfile 1 administrator message"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: lib/wfu_constants.php:
|
733 |
msgid "File testfile 2 under test"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: lib/wfu_constants.php:
|
737 |
msgid "File testfile 2 message"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: lib/wfu_constants.php:
|
741 |
msgid "File testfile 2 administrator message"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: lib/wfu_constants.php:
|
745 |
msgid ""
|
746 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
747 |
"current user."
|
@@ -749,7 +761,7 @@ msgstr ""
|
|
749 |
"Wstaw zmienną % userid % wewnątrz tekstu. Zostanie on zastąpiony przez "
|
750 |
"identyfikator bieżącego użytkownika."
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid ""
|
754 |
"Insert variable %username% inside text. It will be replaced by the username "
|
755 |
"of the current user."
|
@@ -757,7 +769,7 @@ msgstr ""
|
|
757 |
"Wstaw zmiennej % username % wewnątrz tekstu. To będzie brzmienie nazwy "
|
758 |
"użytkownika bieżącego użytkownika."
|
759 |
|
760 |
-
#: lib/wfu_constants.php:
|
761 |
msgid ""
|
762 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
763 |
"the current user."
|
@@ -765,7 +777,7 @@ msgstr ""
|
|
765 |
"Wstaw zmiennej % useremail % wewnątrz tekstu. To zostanie zastąpiony przez e-"
|
766 |
"mail bieżącego użytkownika."
|
767 |
|
768 |
-
#: lib/wfu_constants.php:
|
769 |
msgid ""
|
770 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
771 |
"of the uploaded file."
|
@@ -773,7 +785,7 @@ msgstr ""
|
|
773 |
"Wstaw nazwę zmiennej % wewnątrz tekstu. To zostanie zastąpiony przez nazwę "
|
774 |
"pliku przesłane."
|
775 |
|
776 |
-
#: lib/wfu_constants.php:
|
777 |
msgid ""
|
778 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
779 |
"filepath of the uploaded file."
|
@@ -781,7 +793,7 @@ msgstr ""
|
|
781 |
"Wstaw zmienną % filepath wewnątrz tekstu. To zostanie zastąpiony przez pełną "
|
782 |
"filepath przesyłanego pliku."
|
783 |
|
784 |
-
#: lib/wfu_constants.php:
|
785 |
msgid ""
|
786 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
787 |
"the website."
|
@@ -789,13 +801,13 @@ msgstr ""
|
|
789 |
"Wstaw zmiennej % blogid % wewnątrz tekstu. To zostanie zastąpiony przez "
|
790 |
"identyfikator blog strony internetowej."
|
791 |
|
792 |
-
#: lib/wfu_constants.php:
|
793 |
msgid ""
|
794 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
795 |
"current page."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid ""
|
800 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
801 |
"the current page."
|
@@ -803,7 +815,7 @@ msgstr ""
|
|
803 |
"Wstaw zmienną % pagetitle wewnątrz tekstu. To będzie brzmienie tytułu "
|
804 |
"bieżącej strony."
|
805 |
|
806 |
-
#: lib/wfu_constants.php:
|
807 |
msgid ""
|
808 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
809 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -813,195 +825,195 @@ msgstr ""
|
|
813 |
"listy rozwijanej. To zostaną zastąpione przez wartości, które użytkownik "
|
814 |
"wpisuje w tej dziedzinie."
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid "Insert variable %n% inside text to denote a line change."
|
818 |
msgstr "Wstaw zmienną %n % wewnątrz tekstu do oznaczenia linii zmiany."
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "Test Mode"
|
822 |
msgstr "Tryb testowy"
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "select dir..."
|
826 |
msgstr "Wybierz dir..."
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "type dir"
|
830 |
msgstr "Typ dir"
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid "Upload path: %filepath%"
|
834 |
msgstr "Wgraj %filepath%"
|
835 |
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
msgid "Failed upload path: %filepath%"
|
838 |
msgstr "Nieudane przesyłanie: %filepath%"
|
839 |
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
msgid " (required)"
|
842 |
msgstr "*"
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
846 |
msgstr "Obecnie wysyłane są pliki. Czy na pewno chcesz zamknąć stronę?"
|
847 |
|
848 |
-
#: lib/wfu_constants.php:
|
849 |
msgid "checking captcha..."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: lib/wfu_constants.php:
|
853 |
msgid "refreshing..."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
msgid "correct captcha"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
msgid "click to continue the upload"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
msgid "Are you sure you want to delete this file?"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: lib/wfu_constants.php:
|
869 |
msgid "Are you sure you want to delete these files?"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: lib/wfu_constants.php:
|
873 |
msgid "Bulk Actions"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: lib/wfu_constants.php:
|
877 |
msgid "Apply"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: lib/wfu_constants.php:
|
881 |
msgid "Are you sure that you want to cancel the upload?"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: lib/wfu_constants.php:
|
885 |
msgid "cancel upload of this file"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: lib/wfu_constants.php:
|
889 |
msgid "Upload in progress"
|
890 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
891 |
|
892 |
-
#: lib/wfu_constants.php:
|
893 |
msgid "Upload in progress with warnings!"
|
894 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
895 |
|
896 |
-
#: lib/wfu_constants.php:
|
897 |
msgid "Upload in progress but some files already failed!"
|
898 |
msgstr "Przesyłanie w toku, ale niektóre pliki zostały anulowane!"
|
899 |
|
900 |
-
#: lib/wfu_constants.php:
|
901 |
msgid "Upload in progress but no files uploaded so far!"
|
902 |
msgstr "Przesyłanie w toku, ale jeszcze nie przesłano żadnego pliku!"
|
903 |
|
904 |
-
#: lib/wfu_constants.php:
|
905 |
msgid "All files uploaded successfully"
|
906 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
907 |
|
908 |
-
#: lib/wfu_constants.php:
|
909 |
msgid "All files uploaded successfully but there are warnings!"
|
910 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
911 |
|
912 |
-
#: lib/wfu_constants.php:
|
913 |
msgid "File uploaded successfully but there are warnings!"
|
914 |
msgstr "Plik został pomyślnie przesłany, ale z ostrzeżeniem!"
|
915 |
|
916 |
-
#: lib/wfu_constants.php:
|
917 |
msgid "Some files failed to upload!"
|
918 |
msgstr "Niektóre pliki zostały anulowane!"
|
919 |
|
920 |
-
#: lib/wfu_constants.php:
|
921 |
msgid "All files failed to upload"
|
922 |
msgstr "Wszystkie pliki zostały anulowane"
|
923 |
|
924 |
-
#: lib/wfu_constants.php:
|
925 |
msgid "File failed to upload"
|
926 |
msgstr "Nie udało się przesłać pliku"
|
927 |
|
928 |
-
#: lib/wfu_constants.php:
|
929 |
msgid "There are no files to upload!"
|
930 |
msgstr "Brak plików do wysłania"
|
931 |
|
932 |
-
#: lib/wfu_constants.php:
|
933 |
msgid "Test upload message"
|
934 |
msgstr "To jest wiadomość testowa"
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid "JSON parse warning!"
|
938 |
msgstr "JSON analizować ostrzeżenie!"
|
939 |
|
940 |
-
#: lib/wfu_constants.php:
|
941 |
msgid "please wait while redirecting..."
|
942 |
msgstr "Proszę czekać, za chwilę zostaniesz przekierowany..."
|
943 |
|
944 |
-
#: lib/wfu_constants.php:
|
945 |
msgid "Open visual shortcode editor in new window"
|
946 |
msgstr "Otwórz edytor w nowym oknie"
|
947 |
|
948 |
-
#: lib/wfu_constants.php:
|
949 |
msgid "loading visual editor"
|
950 |
msgstr "Ładowanie wizualnego edytora"
|
951 |
|
952 |
-
#: lib/wfu_constants.php:
|
953 |
msgid "Clear file list?"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: lib/wfu_constants.php:
|
957 |
msgid "DROP HERE"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: lib/wfu_constants.php:
|
961 |
msgid "record video"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: lib/wfu_constants.php:
|
965 |
msgid "take a picture"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: lib/wfu_constants.php:
|
969 |
msgid "turn webcam on/off"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: lib/wfu_constants.php:
|
973 |
msgid "go live again"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: lib/wfu_constants.php:
|
977 |
msgid "end recording"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: lib/wfu_constants.php:
|
981 |
msgid "play"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: lib/wfu_constants.php:
|
985 |
msgid "pause"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: lib/wfu_constants.php:
|
989 |
msgid "go to the beginning"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: lib/wfu_constants.php:
|
993 |
msgid "go to the end"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: lib/wfu_constants.php:
|
997 |
msgid "Wordpress File Upload Form"
|
998 |
msgstr "Formularz przesyłania plików WPFU"
|
999 |
|
1000 |
-
#: lib/wfu_constants.php:
|
1001 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: lib/wfu_constants.php:
|
1005 |
msgid "Upload Files"
|
1006 |
msgstr ""
|
1007 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:33+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pl_PL\n"
|
302 |
msgstr ""
|
303 |
"Wysyłanie nie powiodło się! Wystąpił błąd podczas attemting wgrać plik."
|
304 |
|
305 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
306 |
msgid "Upload failed!"
|
307 |
msgstr "BŁĄD PRZESYŁANIA!!!"
|
308 |
|
562 |
msgstr ""
|
563 |
|
564 |
#: lib/wfu_constants.php:127
|
565 |
+
msgid "You are not allowed to download this file!"
|
566 |
msgstr ""
|
567 |
|
568 |
#: lib/wfu_constants.php:128
|
569 |
+
msgid "File does not exist!"
|
570 |
msgstr ""
|
571 |
|
572 |
#: lib/wfu_constants.php:129
|
573 |
+
msgid "Could not download file!"
|
574 |
msgstr ""
|
575 |
|
576 |
#: lib/wfu_constants.php:130
|
577 |
+
msgid "You are not allowed to delete this file!"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: lib/wfu_constants.php:131
|
581 |
+
msgid "File was not deleted!"
|
582 |
msgstr ""
|
583 |
|
584 |
#: lib/wfu_constants.php:132
|
585 |
+
msgid "No file was deleted!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: lib/wfu_constants.php:133
|
589 |
+
msgid "Some files were not deleted!"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: lib/wfu_constants.php:135
|
593 |
msgid "Upload skipped! File already exists."
|
594 |
msgstr "Przepraszamy, ten plik już istnieje!"
|
595 |
|
596 |
+
#: lib/wfu_constants.php:136
|
597 |
msgid "The extension of the file does not match its contents."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: lib/wfu_constants.php:137
|
601 |
msgid ""
|
602 |
"Upload succeeded but the file is suspicious because its contents do not "
|
603 |
"match its extension. Its proper filename is: "
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: lib/wfu_constants.php:138
|
607 |
msgid "No files have been selected!"
|
608 |
msgstr "Nie wybrano żadnych plików"
|
609 |
|
610 |
+
#: lib/wfu_constants.php:139
|
611 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
612 |
msgstr ""
|
613 |
"WPFilebase Plugin nie aktualizowane, ponieważ nie było tam plików przesłane."
|
614 |
|
615 |
+
#: lib/wfu_constants.php:140
|
616 |
msgid "Notification email was not sent because there were no files uploaded."
|
617 |
msgstr ""
|
618 |
"Powiadomienia e-mail nie została wysłana, ponieważ nie zostały przesłane "
|
619 |
"pliki."
|
620 |
|
621 |
+
#: lib/wfu_constants.php:141
|
622 |
msgid ""
|
623 |
"Notification email was not sent because no recipients were defined. Please "
|
624 |
"check notifyrecipients attribute in the shortcode."
|
626 |
"Powiadomienia e-mail nie zostały wysłane, ponieważ nie ma odbiorców "
|
627 |
"zdefiniowanych. Sprawdź atrybut notifyrecipients w kodzie."
|
628 |
|
629 |
+
#: lib/wfu_constants.php:142
|
630 |
msgid ""
|
631 |
"Notification email was not sent due to an error. Please check "
|
632 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
634 |
"Powiadomienia e-mail nie został wysłany z powodu błędu. Proszę sprawdzić "
|
635 |
"notifyrecipients, notifysubject i notifymessage atrybuty dla błędów."
|
636 |
|
637 |
+
#: lib/wfu_constants.php:143
|
638 |
msgid ""
|
639 |
"Redirection not executed because redirection link is empty. Please check "
|
640 |
"redirectlink attribute."
|
642 |
"Przekierowania nie wykonany, ponieważ link przekierowania jest pusty. "
|
643 |
"Sprawdź atrybut redirectlink."
|
644 |
|
645 |
+
#: lib/wfu_constants.php:144
|
646 |
msgid ""
|
647 |
"Redirection not executed because not all files were successfully uploaded."
|
648 |
msgstr ""
|
649 |
"Przekierowania nie wykonany, ponieważ nie wszystkie pliki zostały pomyślnie "
|
650 |
"załadowane."
|
651 |
|
652 |
+
#: lib/wfu_constants.php:145
|
653 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: lib/wfu_constants.php:146
|
657 |
msgid ""
|
658 |
"Hello admin\n"
|
659 |
"\n"
|
673 |
"Thanks"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: lib/wfu_constants.php:148
|
677 |
msgid ""
|
678 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
679 |
"message persists, contact administrator."
|
681 |
"Nie można dodać shortcode do strony/post. Proszę spróbować ponownie. Jeśli "
|
682 |
"komunikat będzie się powtarzał, skontaktuj się z administratorem."
|
683 |
|
684 |
+
#: lib/wfu_constants.php:149
|
685 |
msgid ""
|
686 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
687 |
"again to edit the shortcode."
|
689 |
"Nie można edytować shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
690 |
"ponownie."
|
691 |
|
692 |
+
#: lib/wfu_constants.php:150
|
693 |
msgid ""
|
694 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
695 |
"again to delete it."
|
697 |
"Nie można usunąć shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
698 |
"ponownie."
|
699 |
|
700 |
+
#: lib/wfu_constants.php:151
|
701 |
msgid ""
|
702 |
"The page containing the shortcode has been modified and it is no longer "
|
703 |
"valid. Please go back to reload the shortcode."
|
705 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
706 |
"przeładować shortcode."
|
707 |
|
708 |
+
#: lib/wfu_constants.php:152
|
709 |
msgid ""
|
710 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
711 |
"back to reload the shortcode."
|
713 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
714 |
"przeładować shortcode."
|
715 |
|
716 |
+
#: lib/wfu_constants.php:153
|
717 |
msgid ""
|
718 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
719 |
"go back and reload the shortcode."
|
721 |
"Nie można zaktualizować shortcode. Proszę spróbować ponownie. Jeśli problem "
|
722 |
"nie ustąpi, wrócić i ponownie załadować shortcode."
|
723 |
|
724 |
+
#: lib/wfu_constants.php:155
|
725 |
msgid "This is a test message"
|
726 |
msgstr "To jest wiadomość testowa"
|
727 |
|
728 |
+
#: lib/wfu_constants.php:156
|
729 |
msgid "This is a test administrator message"
|
730 |
msgstr "To jest wiadomość testowa administratora"
|
731 |
|
732 |
+
#: lib/wfu_constants.php:157
|
733 |
msgid "File testfile 1 under test"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: lib/wfu_constants.php:158
|
737 |
msgid "File testfile 1 message"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: lib/wfu_constants.php:159
|
741 |
msgid "File testfile 1 administrator message"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: lib/wfu_constants.php:160
|
745 |
msgid "File testfile 2 under test"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: lib/wfu_constants.php:161
|
749 |
msgid "File testfile 2 message"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: lib/wfu_constants.php:162
|
753 |
msgid "File testfile 2 administrator message"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: lib/wfu_constants.php:164
|
757 |
msgid ""
|
758 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
759 |
"current user."
|
761 |
"Wstaw zmienną % userid % wewnątrz tekstu. Zostanie on zastąpiony przez "
|
762 |
"identyfikator bieżącego użytkownika."
|
763 |
|
764 |
+
#: lib/wfu_constants.php:165
|
765 |
msgid ""
|
766 |
"Insert variable %username% inside text. It will be replaced by the username "
|
767 |
"of the current user."
|
769 |
"Wstaw zmiennej % username % wewnątrz tekstu. To będzie brzmienie nazwy "
|
770 |
"użytkownika bieżącego użytkownika."
|
771 |
|
772 |
+
#: lib/wfu_constants.php:166
|
773 |
msgid ""
|
774 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
775 |
"the current user."
|
777 |
"Wstaw zmiennej % useremail % wewnątrz tekstu. To zostanie zastąpiony przez e-"
|
778 |
"mail bieżącego użytkownika."
|
779 |
|
780 |
+
#: lib/wfu_constants.php:167
|
781 |
msgid ""
|
782 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
783 |
"of the uploaded file."
|
785 |
"Wstaw nazwę zmiennej % wewnątrz tekstu. To zostanie zastąpiony przez nazwę "
|
786 |
"pliku przesłane."
|
787 |
|
788 |
+
#: lib/wfu_constants.php:168
|
789 |
msgid ""
|
790 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
791 |
"filepath of the uploaded file."
|
793 |
"Wstaw zmienną % filepath wewnątrz tekstu. To zostanie zastąpiony przez pełną "
|
794 |
"filepath przesyłanego pliku."
|
795 |
|
796 |
+
#: lib/wfu_constants.php:169
|
797 |
msgid ""
|
798 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
799 |
"the website."
|
801 |
"Wstaw zmiennej % blogid % wewnątrz tekstu. To zostanie zastąpiony przez "
|
802 |
"identyfikator blog strony internetowej."
|
803 |
|
804 |
+
#: lib/wfu_constants.php:170
|
805 |
msgid ""
|
806 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
807 |
"current page."
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: lib/wfu_constants.php:171
|
811 |
msgid ""
|
812 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
813 |
"the current page."
|
815 |
"Wstaw zmienną % pagetitle wewnątrz tekstu. To będzie brzmienie tytułu "
|
816 |
"bieżącej strony."
|
817 |
|
818 |
+
#: lib/wfu_constants.php:172
|
819 |
msgid ""
|
820 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
821 |
"drop-down list. It will be replaced by the value that the user entered in "
|
825 |
"listy rozwijanej. To zostaną zastąpione przez wartości, które użytkownik "
|
826 |
"wpisuje w tej dziedzinie."
|
827 |
|
828 |
+
#: lib/wfu_constants.php:173
|
829 |
msgid "Insert variable %n% inside text to denote a line change."
|
830 |
msgstr "Wstaw zmienną %n % wewnątrz tekstu do oznaczenia linii zmiany."
|
831 |
|
832 |
+
#: lib/wfu_constants.php:175
|
833 |
msgid "Test Mode"
|
834 |
msgstr "Tryb testowy"
|
835 |
|
836 |
+
#: lib/wfu_constants.php:176
|
837 |
msgid "select dir..."
|
838 |
msgstr "Wybierz dir..."
|
839 |
|
840 |
+
#: lib/wfu_constants.php:177
|
841 |
msgid "type dir"
|
842 |
msgstr "Typ dir"
|
843 |
|
844 |
+
#: lib/wfu_constants.php:178
|
845 |
msgid "Upload path: %filepath%"
|
846 |
msgstr "Wgraj %filepath%"
|
847 |
|
848 |
+
#: lib/wfu_constants.php:179
|
849 |
msgid "Failed upload path: %filepath%"
|
850 |
msgstr "Nieudane przesyłanie: %filepath%"
|
851 |
|
852 |
+
#: lib/wfu_constants.php:180
|
853 |
msgid " (required)"
|
854 |
msgstr "*"
|
855 |
|
856 |
+
#: lib/wfu_constants.php:181
|
857 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
858 |
msgstr "Obecnie wysyłane są pliki. Czy na pewno chcesz zamknąć stronę?"
|
859 |
|
860 |
+
#: lib/wfu_constants.php:182
|
861 |
msgid "checking captcha..."
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: lib/wfu_constants.php:183
|
865 |
msgid "refreshing..."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: lib/wfu_constants.php:184
|
869 |
msgid "correct captcha"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: lib/wfu_constants.php:185
|
873 |
msgid "click to continue the upload"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: lib/wfu_constants.php:186
|
877 |
msgid "Are you sure you want to delete this file?"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: lib/wfu_constants.php:187
|
881 |
msgid "Are you sure you want to delete these files?"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: lib/wfu_constants.php:188
|
885 |
msgid "Bulk Actions"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: lib/wfu_constants.php:189
|
889 |
msgid "Apply"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: lib/wfu_constants.php:190
|
893 |
msgid "Are you sure that you want to cancel the upload?"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: lib/wfu_constants.php:191
|
897 |
msgid "cancel upload of this file"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: lib/wfu_constants.php:192
|
901 |
msgid "Upload in progress"
|
902 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
903 |
|
904 |
+
#: lib/wfu_constants.php:193
|
905 |
msgid "Upload in progress with warnings!"
|
906 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
907 |
|
908 |
+
#: lib/wfu_constants.php:194
|
909 |
msgid "Upload in progress but some files already failed!"
|
910 |
msgstr "Przesyłanie w toku, ale niektóre pliki zostały anulowane!"
|
911 |
|
912 |
+
#: lib/wfu_constants.php:195
|
913 |
msgid "Upload in progress but no files uploaded so far!"
|
914 |
msgstr "Przesyłanie w toku, ale jeszcze nie przesłano żadnego pliku!"
|
915 |
|
916 |
+
#: lib/wfu_constants.php:196
|
917 |
msgid "All files uploaded successfully"
|
918 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
919 |
|
920 |
+
#: lib/wfu_constants.php:197
|
921 |
msgid "All files uploaded successfully but there are warnings!"
|
922 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
923 |
|
924 |
+
#: lib/wfu_constants.php:198
|
925 |
msgid "File uploaded successfully but there are warnings!"
|
926 |
msgstr "Plik został pomyślnie przesłany, ale z ostrzeżeniem!"
|
927 |
|
928 |
+
#: lib/wfu_constants.php:199
|
929 |
msgid "Some files failed to upload!"
|
930 |
msgstr "Niektóre pliki zostały anulowane!"
|
931 |
|
932 |
+
#: lib/wfu_constants.php:200
|
933 |
msgid "All files failed to upload"
|
934 |
msgstr "Wszystkie pliki zostały anulowane"
|
935 |
|
936 |
+
#: lib/wfu_constants.php:201
|
937 |
msgid "File failed to upload"
|
938 |
msgstr "Nie udało się przesłać pliku"
|
939 |
|
940 |
+
#: lib/wfu_constants.php:202
|
941 |
msgid "There are no files to upload!"
|
942 |
msgstr "Brak plików do wysłania"
|
943 |
|
944 |
+
#: lib/wfu_constants.php:203
|
945 |
msgid "Test upload message"
|
946 |
msgstr "To jest wiadomość testowa"
|
947 |
|
948 |
+
#: lib/wfu_constants.php:204
|
949 |
msgid "JSON parse warning!"
|
950 |
msgstr "JSON analizować ostrzeżenie!"
|
951 |
|
952 |
+
#: lib/wfu_constants.php:205
|
953 |
msgid "please wait while redirecting..."
|
954 |
msgstr "Proszę czekać, za chwilę zostaniesz przekierowany..."
|
955 |
|
956 |
+
#: lib/wfu_constants.php:207
|
957 |
msgid "Open visual shortcode editor in new window"
|
958 |
msgstr "Otwórz edytor w nowym oknie"
|
959 |
|
960 |
+
#: lib/wfu_constants.php:208
|
961 |
msgid "loading visual editor"
|
962 |
msgstr "Ładowanie wizualnego edytora"
|
963 |
|
964 |
+
#: lib/wfu_constants.php:209
|
965 |
msgid "Clear file list?"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: lib/wfu_constants.php:210
|
969 |
msgid "DROP HERE"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: lib/wfu_constants.php:212
|
973 |
msgid "record video"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: lib/wfu_constants.php:213
|
977 |
msgid "take a picture"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: lib/wfu_constants.php:214
|
981 |
msgid "turn webcam on/off"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: lib/wfu_constants.php:215
|
985 |
msgid "go live again"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: lib/wfu_constants.php:216
|
989 |
msgid "end recording"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: lib/wfu_constants.php:217
|
993 |
msgid "play"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: lib/wfu_constants.php:218
|
997 |
msgid "pause"
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: lib/wfu_constants.php:219
|
1001 |
msgid "go to the beginning"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: lib/wfu_constants.php:220
|
1005 |
msgid "go to the end"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:222
|
1009 |
msgid "Wordpress File Upload Form"
|
1010 |
msgstr "Formularz przesyłania plików WPFU"
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:223
|
1013 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:224
|
1017 |
msgid "Upload Files"
|
1018 |
msgstr ""
|
1019 |
|
languages/wp-file-upload-sr_RS.mo
CHANGED
Binary file
|
languages/wp-file-upload-sr_RS.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sr\n"
|
@@ -310,7 +310,7 @@ msgstr ""
|
|
310 |
"Otpremanje neuspešno! Došlo je do greške prilikom pokušaja da se otpremi "
|
311 |
"datoteka."
|
312 |
|
313 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
314 |
msgid "Upload failed!"
|
315 |
msgstr "Otpremanje neuspešno! "
|
316 |
|
@@ -584,49 +584,61 @@ msgid "Could not open file handles on chunk %d"
|
|
584 |
msgstr "Ne mogu se otvoriti opisi datoteke u jedinici memorije %d"
|
585 |
|
586 |
#: lib/wfu_constants.php:127
|
587 |
-
msgid "You are not allowed to
|
588 |
msgstr ""
|
589 |
|
590 |
#: lib/wfu_constants.php:128
|
591 |
-
msgid "File
|
592 |
msgstr ""
|
593 |
|
594 |
#: lib/wfu_constants.php:129
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
#: lib/wfu_constants.php:130
|
599 |
-
msgid "
|
|
|
|
|
|
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
#: lib/wfu_constants.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
603 |
msgid "Upload skipped! File already exists."
|
604 |
msgstr "Otpremanje preskočeno! Datoteka već postoji."
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
msgid "The extension of the file does not match its contents."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid ""
|
612 |
"Upload succeeded but the file is suspicious because its contents do not "
|
613 |
"match its extension. Its proper filename is: "
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: lib/wfu_constants.php:
|
617 |
msgid "No files have been selected!"
|
618 |
msgstr "Datoteke nisu odabrane!"
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
622 |
msgstr ""
|
623 |
"WPFilebase Plugin nije ažuriran zato što nije bilo otpremljenih datoteka."
|
624 |
|
625 |
-
#: lib/wfu_constants.php:
|
626 |
msgid "Notification email was not sent because there were no files uploaded."
|
627 |
msgstr "Mail obaveštenja nije poslat jer nije bilo otpremljenih datoteka."
|
628 |
|
629 |
-
#: lib/wfu_constants.php:
|
630 |
msgid ""
|
631 |
"Notification email was not sent because no recipients were defined. Please "
|
632 |
"check notifyrecipients attribute in the shortcode."
|
@@ -634,7 +646,7 @@ msgstr ""
|
|
634 |
"Mail obaveštenja nije poslat jer nije bilo navedenih primalaca. Proverite "
|
635 |
"notifyrecipients atribut u shortcode-u."
|
636 |
|
637 |
-
#: lib/wfu_constants.php:
|
638 |
msgid ""
|
639 |
"Notification email was not sent due to an error. Please check "
|
640 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -642,7 +654,7 @@ msgstr ""
|
|
642 |
"Mail obaveštenja nije poslat zbog greške. Proverite notifyrecipients, "
|
643 |
"notifysubject i notifymessage atribute da biste našli greške."
|
644 |
|
645 |
-
#: lib/wfu_constants.php:
|
646 |
msgid ""
|
647 |
"Redirection not executed because redirection link is empty. Please check "
|
648 |
"redirectlink attribute."
|
@@ -650,17 +662,17 @@ msgstr ""
|
|
650 |
"Preusmeravanje nije izvršeno zato što je link za preusmeravanje prazan. "
|
651 |
"Proverite redirectlink atribut."
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid ""
|
655 |
"Redirection not executed because not all files were successfully uploaded."
|
656 |
msgstr ""
|
657 |
"Preusmeravanje nije izvršeno zato što nisu sve datoteke uspešno otpremljene."
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid ""
|
665 |
"Hello admin\n"
|
666 |
"\n"
|
@@ -680,13 +692,13 @@ msgid ""
|
|
680 |
"Thanks"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid ""
|
685 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
686 |
"message persists, contact administrator."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: lib/wfu_constants.php:
|
690 |
msgid ""
|
691 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
692 |
"again to edit the shortcode."
|
@@ -694,7 +706,7 @@ msgstr ""
|
|
694 |
"Neuspešno uređivanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
695 |
"ponovo da uredite shortcode."
|
696 |
|
697 |
-
#: lib/wfu_constants.php:
|
698 |
msgid ""
|
699 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
700 |
"again to delete it."
|
@@ -702,7 +714,7 @@ msgstr ""
|
|
702 |
"Neuspešno brisanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
703 |
"ponovo da ga obrišete."
|
704 |
|
705 |
-
#: lib/wfu_constants.php:
|
706 |
msgid ""
|
707 |
"The page containing the shortcode has been modified and it is no longer "
|
708 |
"valid. Please go back to reload the shortcode."
|
@@ -710,7 +722,7 @@ msgstr ""
|
|
710 |
"Stranica koja sadrži shortcode je izmenjena i više nije validna. Vratite se "
|
711 |
"da ponovo učitate shortcode."
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid ""
|
715 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
716 |
"back to reload the shortcode."
|
@@ -718,7 +730,7 @@ msgstr ""
|
|
718 |
"Neuspešno ažuriranje shortcode-a zbog izmene sadržaja stranice. Vratite se "
|
719 |
"da ponovo učitate shortcode."
|
720 |
|
721 |
-
#: lib/wfu_constants.php:
|
722 |
msgid ""
|
723 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
724 |
"go back and reload the shortcode."
|
@@ -726,39 +738,39 @@ msgstr ""
|
|
726 |
"Neuspešno ažuriranje shortcode-a. Pokušajte ponovo. Ako se problem ne reši, "
|
727 |
"vratite se i opet učitajte shortcode."
|
728 |
|
729 |
-
#: lib/wfu_constants.php:
|
730 |
msgid "This is a test message"
|
731 |
msgstr "Ovo je poruka testa"
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid "This is a test administrator message"
|
735 |
msgstr "Ovo je poruka testa administratora "
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "File testfile 1 under test"
|
739 |
msgstr "Datoteka testfile 1 na testiranju"
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "File testfile 1 message"
|
743 |
msgstr "Datoteka testfile 1 poruka"
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "File testfile 1 administrator message"
|
747 |
msgstr "Datoteka testfile 1 poruka administratora"
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "File testfile 2 under test"
|
751 |
msgstr "Datoteka testfile 2 na testiranju"
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "File testfile 2 message"
|
755 |
msgstr "Datoteka testfile 2 poruka"
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
758 |
msgid "File testfile 2 administrator message"
|
759 |
msgstr "Datoteka testfile 2 poruka administratora"
|
760 |
|
761 |
-
#: lib/wfu_constants.php:
|
762 |
msgid ""
|
763 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
764 |
"current user."
|
@@ -766,7 +778,7 @@ msgstr ""
|
|
766 |
"Unesite promenljivu %idkorisnika% u tekst. Biće zamenjena id-jem tekućeg "
|
767 |
"korisnika."
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid ""
|
771 |
"Insert variable %username% inside text. It will be replaced by the username "
|
772 |
"of the current user."
|
@@ -774,7 +786,7 @@ msgstr ""
|
|
774 |
"Unesite promenljivu %korisničko ime% u tekst. Biće zamenjena korisničkim "
|
775 |
"imenom tekućeg korisnika."
|
776 |
|
777 |
-
#: lib/wfu_constants.php:
|
778 |
msgid ""
|
779 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
780 |
"the current user."
|
@@ -782,7 +794,7 @@ msgstr ""
|
|
782 |
"Unesite promenljivu %mailkorisnika% u tekst. Biće zamenjena mail-om tekućeg "
|
783 |
"korisnika."
|
784 |
|
785 |
-
#: lib/wfu_constants.php:
|
786 |
msgid ""
|
787 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
788 |
"of the uploaded file."
|
@@ -790,7 +802,7 @@ msgstr ""
|
|
790 |
"Unesite promenljivu %nazivdatoteke% u tekst. Biće zamenjena nazivom "
|
791 |
"otpremljene datoteke."
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid ""
|
795 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
796 |
"filepath of the uploaded file."
|
@@ -798,7 +810,7 @@ msgstr ""
|
|
798 |
"Unesite promenljivu %putanjadatoteke% u tekst. Biće zamenjena celom putanjom "
|
799 |
"otpremljene datoteke."
|
800 |
|
801 |
-
#: lib/wfu_constants.php:
|
802 |
msgid ""
|
803 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
804 |
"the website."
|
@@ -806,7 +818,7 @@ msgstr ""
|
|
806 |
"Unesite promenljivu %idbloga% u tekst. Biće zamenjena id-jem bloga web site-"
|
807 |
"a."
|
808 |
|
809 |
-
#: lib/wfu_constants.php:
|
810 |
msgid ""
|
811 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
812 |
"current page."
|
@@ -814,7 +826,7 @@ msgstr ""
|
|
814 |
"Unesite promenljivu %idstranice% u tekst. Biće zamenjena id-jem tekuće "
|
815 |
"stranice."
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid ""
|
819 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
820 |
"the current page."
|
@@ -822,7 +834,7 @@ msgstr ""
|
|
822 |
"Unesite promenljivu %naslovstranice% u tekst. Biće zamenjena naslovom tekuće "
|
823 |
"stranice."
|
824 |
|
825 |
-
#: lib/wfu_constants.php:
|
826 |
msgid ""
|
827 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
828 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -831,195 +843,195 @@ msgstr ""
|
|
831 |
"Unesite promenljivu %korisnički podaciXXX%. Odaberite korisničko polje iz "
|
832 |
"opadajuće liste. Biće zamenjena vrednošću koju je korisnik uneo u ovo polje."
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "Insert variable %n% inside text to denote a line change."
|
836 |
msgstr "Unesite promenljivu %n% u tekst kako biste označili promenu reda."
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "Test Mode"
|
840 |
msgstr "Režim testiranja"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "select dir..."
|
844 |
msgstr "odaberite dir..."
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "type dir"
|
848 |
msgstr "vrsta direktorijuma "
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "Upload path: %filepath%"
|
852 |
msgstr "Putanja otpremanja: %filepath%"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "Failed upload path: %filepath%"
|
856 |
msgstr "Putanja otpremanja neuspešna: %filepath%"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid " (required)"
|
860 |
msgstr "(obavezna)"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
864 |
msgstr "Datoteke su otpremljene. Da li sigurno želite da napustite stranicu?"
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "checking captcha..."
|
868 |
msgstr "captcha se proverava..."
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid "refreshing..."
|
872 |
msgstr "osvežava se..."
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid "correct captcha"
|
876 |
msgstr "ispravi captcha"
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid "click to continue the upload"
|
880 |
msgstr "kliknite da biste nastavili otpremanje"
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid "Are you sure you want to delete this file?"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid "Are you sure you want to delete these files?"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid "Bulk Actions"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid "Apply"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid "Are you sure that you want to cancel the upload?"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid "cancel upload of this file"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid "Upload in progress"
|
908 |
msgstr "Otpremanje u toku"
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid "Upload in progress with warnings!"
|
912 |
msgstr "Otpremanje sa upozorenjima u toku!"
|
913 |
|
914 |
-
#: lib/wfu_constants.php:
|
915 |
msgid "Upload in progress but some files already failed!"
|
916 |
msgstr "Otpremanje u toku, ali neke datoteke već nisu uspešno otpremljene!"
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid "Upload in progress but no files uploaded so far!"
|
920 |
msgstr "Otpremanje u toku, ali do sada nisu otpremljene nikakve datoteke!"
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "All files uploaded successfully"
|
924 |
msgstr "Sve datoteke uspešno su otpremljene"
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "All files uploaded successfully but there are warnings!"
|
928 |
msgstr "Sve datoteke uspešno su otpremljene, ali postoje upozorenja!"
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "File uploaded successfully but there are warnings!"
|
932 |
msgstr "Datoteka je uspešno otpremljena, ali postoje upozorenja!"
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "Some files failed to upload!"
|
936 |
msgstr "Neke datoteke nisu otpremljene!"
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "All files failed to upload"
|
940 |
msgstr "Nijedna datoteka nije otpremljena"
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "File failed to upload"
|
944 |
msgstr "Datoteka nije uspešno otpremljena"
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "There are no files to upload!"
|
948 |
msgstr "Nema datoteka za otpremanje"
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "Test upload message"
|
952 |
msgstr "Testiraj poruku za otpremanje"
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "JSON parse warning!"
|
956 |
msgstr "Upozorenje za JSON parsiranje!"
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "please wait while redirecting..."
|
960 |
msgstr "Molimo sačekajte preusmeravanje..."
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "Open visual shortcode editor in new window"
|
964 |
msgstr "Otvori vizuelni shortcode uređivač u novom prozoru"
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "loading visual editor"
|
968 |
msgstr "učitavanje vizuelnog uređivača"
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "Clear file list?"
|
972 |
msgstr "Obriši listu datoteke?"
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "DROP HERE"
|
976 |
msgstr "POZICIONIRAJ OVDE"
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "record video"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: lib/wfu_constants.php:
|
983 |
msgid "take a picture"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: lib/wfu_constants.php:
|
987 |
msgid "turn webcam on/off"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: lib/wfu_constants.php:
|
991 |
msgid "go live again"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: lib/wfu_constants.php:
|
995 |
msgid "end recording"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: lib/wfu_constants.php:
|
999 |
msgid "play"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: lib/wfu_constants.php:
|
1003 |
msgid "pause"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: lib/wfu_constants.php:
|
1007 |
msgid "go to the beginning"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: lib/wfu_constants.php:
|
1011 |
msgid "go to the end"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: lib/wfu_constants.php:
|
1015 |
msgid "Wordpress File Upload Form"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: lib/wfu_constants.php:
|
1019 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: lib/wfu_constants.php:
|
1023 |
msgid "Upload Files"
|
1024 |
msgstr ""
|
1025 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:33+0200\n"
|
7 |
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sr\n"
|
310 |
"Otpremanje neuspešno! Došlo je do greške prilikom pokušaja da se otpremi "
|
311 |
"datoteka."
|
312 |
|
313 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
314 |
msgid "Upload failed!"
|
315 |
msgstr "Otpremanje neuspešno! "
|
316 |
|
584 |
msgstr "Ne mogu se otvoriti opisi datoteke u jedinici memorije %d"
|
585 |
|
586 |
#: lib/wfu_constants.php:127
|
587 |
+
msgid "You are not allowed to download this file!"
|
588 |
msgstr ""
|
589 |
|
590 |
#: lib/wfu_constants.php:128
|
591 |
+
msgid "File does not exist!"
|
592 |
msgstr ""
|
593 |
|
594 |
#: lib/wfu_constants.php:129
|
595 |
+
msgid "Could not download file!"
|
596 |
msgstr ""
|
597 |
|
598 |
#: lib/wfu_constants.php:130
|
599 |
+
msgid "You are not allowed to delete this file!"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: lib/wfu_constants.php:131
|
603 |
+
msgid "File was not deleted!"
|
604 |
msgstr ""
|
605 |
|
606 |
#: lib/wfu_constants.php:132
|
607 |
+
msgid "No file was deleted!"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: lib/wfu_constants.php:133
|
611 |
+
msgid "Some files were not deleted!"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: lib/wfu_constants.php:135
|
615 |
msgid "Upload skipped! File already exists."
|
616 |
msgstr "Otpremanje preskočeno! Datoteka već postoji."
|
617 |
|
618 |
+
#: lib/wfu_constants.php:136
|
619 |
msgid "The extension of the file does not match its contents."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: lib/wfu_constants.php:137
|
623 |
msgid ""
|
624 |
"Upload succeeded but the file is suspicious because its contents do not "
|
625 |
"match its extension. Its proper filename is: "
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: lib/wfu_constants.php:138
|
629 |
msgid "No files have been selected!"
|
630 |
msgstr "Datoteke nisu odabrane!"
|
631 |
|
632 |
+
#: lib/wfu_constants.php:139
|
633 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
634 |
msgstr ""
|
635 |
"WPFilebase Plugin nije ažuriran zato što nije bilo otpremljenih datoteka."
|
636 |
|
637 |
+
#: lib/wfu_constants.php:140
|
638 |
msgid "Notification email was not sent because there were no files uploaded."
|
639 |
msgstr "Mail obaveštenja nije poslat jer nije bilo otpremljenih datoteka."
|
640 |
|
641 |
+
#: lib/wfu_constants.php:141
|
642 |
msgid ""
|
643 |
"Notification email was not sent because no recipients were defined. Please "
|
644 |
"check notifyrecipients attribute in the shortcode."
|
646 |
"Mail obaveštenja nije poslat jer nije bilo navedenih primalaca. Proverite "
|
647 |
"notifyrecipients atribut u shortcode-u."
|
648 |
|
649 |
+
#: lib/wfu_constants.php:142
|
650 |
msgid ""
|
651 |
"Notification email was not sent due to an error. Please check "
|
652 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
654 |
"Mail obaveštenja nije poslat zbog greške. Proverite notifyrecipients, "
|
655 |
"notifysubject i notifymessage atribute da biste našli greške."
|
656 |
|
657 |
+
#: lib/wfu_constants.php:143
|
658 |
msgid ""
|
659 |
"Redirection not executed because redirection link is empty. Please check "
|
660 |
"redirectlink attribute."
|
662 |
"Preusmeravanje nije izvršeno zato što je link za preusmeravanje prazan. "
|
663 |
"Proverite redirectlink atribut."
|
664 |
|
665 |
+
#: lib/wfu_constants.php:144
|
666 |
msgid ""
|
667 |
"Redirection not executed because not all files were successfully uploaded."
|
668 |
msgstr ""
|
669 |
"Preusmeravanje nije izvršeno zato što nisu sve datoteke uspešno otpremljene."
|
670 |
|
671 |
+
#: lib/wfu_constants.php:145
|
672 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: lib/wfu_constants.php:146
|
676 |
msgid ""
|
677 |
"Hello admin\n"
|
678 |
"\n"
|
692 |
"Thanks"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: lib/wfu_constants.php:148
|
696 |
msgid ""
|
697 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
698 |
"message persists, contact administrator."
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: lib/wfu_constants.php:149
|
702 |
msgid ""
|
703 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
704 |
"again to edit the shortcode."
|
706 |
"Neuspešno uređivanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
707 |
"ponovo da uredite shortcode."
|
708 |
|
709 |
+
#: lib/wfu_constants.php:150
|
710 |
msgid ""
|
711 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
712 |
"again to delete it."
|
714 |
"Neuspešno brisanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
715 |
"ponovo da ga obrišete."
|
716 |
|
717 |
+
#: lib/wfu_constants.php:151
|
718 |
msgid ""
|
719 |
"The page containing the shortcode has been modified and it is no longer "
|
720 |
"valid. Please go back to reload the shortcode."
|
722 |
"Stranica koja sadrži shortcode je izmenjena i više nije validna. Vratite se "
|
723 |
"da ponovo učitate shortcode."
|
724 |
|
725 |
+
#: lib/wfu_constants.php:152
|
726 |
msgid ""
|
727 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
728 |
"back to reload the shortcode."
|
730 |
"Neuspešno ažuriranje shortcode-a zbog izmene sadržaja stranice. Vratite se "
|
731 |
"da ponovo učitate shortcode."
|
732 |
|
733 |
+
#: lib/wfu_constants.php:153
|
734 |
msgid ""
|
735 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
736 |
"go back and reload the shortcode."
|
738 |
"Neuspešno ažuriranje shortcode-a. Pokušajte ponovo. Ako se problem ne reši, "
|
739 |
"vratite se i opet učitajte shortcode."
|
740 |
|
741 |
+
#: lib/wfu_constants.php:155
|
742 |
msgid "This is a test message"
|
743 |
msgstr "Ovo je poruka testa"
|
744 |
|
745 |
+
#: lib/wfu_constants.php:156
|
746 |
msgid "This is a test administrator message"
|
747 |
msgstr "Ovo je poruka testa administratora "
|
748 |
|
749 |
+
#: lib/wfu_constants.php:157
|
750 |
msgid "File testfile 1 under test"
|
751 |
msgstr "Datoteka testfile 1 na testiranju"
|
752 |
|
753 |
+
#: lib/wfu_constants.php:158
|
754 |
msgid "File testfile 1 message"
|
755 |
msgstr "Datoteka testfile 1 poruka"
|
756 |
|
757 |
+
#: lib/wfu_constants.php:159
|
758 |
msgid "File testfile 1 administrator message"
|
759 |
msgstr "Datoteka testfile 1 poruka administratora"
|
760 |
|
761 |
+
#: lib/wfu_constants.php:160
|
762 |
msgid "File testfile 2 under test"
|
763 |
msgstr "Datoteka testfile 2 na testiranju"
|
764 |
|
765 |
+
#: lib/wfu_constants.php:161
|
766 |
msgid "File testfile 2 message"
|
767 |
msgstr "Datoteka testfile 2 poruka"
|
768 |
|
769 |
+
#: lib/wfu_constants.php:162
|
770 |
msgid "File testfile 2 administrator message"
|
771 |
msgstr "Datoteka testfile 2 poruka administratora"
|
772 |
|
773 |
+
#: lib/wfu_constants.php:164
|
774 |
msgid ""
|
775 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
776 |
"current user."
|
778 |
"Unesite promenljivu %idkorisnika% u tekst. Biće zamenjena id-jem tekućeg "
|
779 |
"korisnika."
|
780 |
|
781 |
+
#: lib/wfu_constants.php:165
|
782 |
msgid ""
|
783 |
"Insert variable %username% inside text. It will be replaced by the username "
|
784 |
"of the current user."
|
786 |
"Unesite promenljivu %korisničko ime% u tekst. Biće zamenjena korisničkim "
|
787 |
"imenom tekućeg korisnika."
|
788 |
|
789 |
+
#: lib/wfu_constants.php:166
|
790 |
msgid ""
|
791 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
792 |
"the current user."
|
794 |
"Unesite promenljivu %mailkorisnika% u tekst. Biće zamenjena mail-om tekućeg "
|
795 |
"korisnika."
|
796 |
|
797 |
+
#: lib/wfu_constants.php:167
|
798 |
msgid ""
|
799 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
800 |
"of the uploaded file."
|
802 |
"Unesite promenljivu %nazivdatoteke% u tekst. Biće zamenjena nazivom "
|
803 |
"otpremljene datoteke."
|
804 |
|
805 |
+
#: lib/wfu_constants.php:168
|
806 |
msgid ""
|
807 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
808 |
"filepath of the uploaded file."
|
810 |
"Unesite promenljivu %putanjadatoteke% u tekst. Biće zamenjena celom putanjom "
|
811 |
"otpremljene datoteke."
|
812 |
|
813 |
+
#: lib/wfu_constants.php:169
|
814 |
msgid ""
|
815 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
816 |
"the website."
|
818 |
"Unesite promenljivu %idbloga% u tekst. Biće zamenjena id-jem bloga web site-"
|
819 |
"a."
|
820 |
|
821 |
+
#: lib/wfu_constants.php:170
|
822 |
msgid ""
|
823 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
824 |
"current page."
|
826 |
"Unesite promenljivu %idstranice% u tekst. Biće zamenjena id-jem tekuće "
|
827 |
"stranice."
|
828 |
|
829 |
+
#: lib/wfu_constants.php:171
|
830 |
msgid ""
|
831 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
832 |
"the current page."
|
834 |
"Unesite promenljivu %naslovstranice% u tekst. Biće zamenjena naslovom tekuće "
|
835 |
"stranice."
|
836 |
|
837 |
+
#: lib/wfu_constants.php:172
|
838 |
msgid ""
|
839 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
840 |
"drop-down list. It will be replaced by the value that the user entered in "
|
843 |
"Unesite promenljivu %korisnički podaciXXX%. Odaberite korisničko polje iz "
|
844 |
"opadajuće liste. Biće zamenjena vrednošću koju je korisnik uneo u ovo polje."
|
845 |
|
846 |
+
#: lib/wfu_constants.php:173
|
847 |
msgid "Insert variable %n% inside text to denote a line change."
|
848 |
msgstr "Unesite promenljivu %n% u tekst kako biste označili promenu reda."
|
849 |
|
850 |
+
#: lib/wfu_constants.php:175
|
851 |
msgid "Test Mode"
|
852 |
msgstr "Režim testiranja"
|
853 |
|
854 |
+
#: lib/wfu_constants.php:176
|
855 |
msgid "select dir..."
|
856 |
msgstr "odaberite dir..."
|
857 |
|
858 |
+
#: lib/wfu_constants.php:177
|
859 |
msgid "type dir"
|
860 |
msgstr "vrsta direktorijuma "
|
861 |
|
862 |
+
#: lib/wfu_constants.php:178
|
863 |
msgid "Upload path: %filepath%"
|
864 |
msgstr "Putanja otpremanja: %filepath%"
|
865 |
|
866 |
+
#: lib/wfu_constants.php:179
|
867 |
msgid "Failed upload path: %filepath%"
|
868 |
msgstr "Putanja otpremanja neuspešna: %filepath%"
|
869 |
|
870 |
+
#: lib/wfu_constants.php:180
|
871 |
msgid " (required)"
|
872 |
msgstr "(obavezna)"
|
873 |
|
874 |
+
#: lib/wfu_constants.php:181
|
875 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
876 |
msgstr "Datoteke su otpremljene. Da li sigurno želite da napustite stranicu?"
|
877 |
|
878 |
+
#: lib/wfu_constants.php:182
|
879 |
msgid "checking captcha..."
|
880 |
msgstr "captcha se proverava..."
|
881 |
|
882 |
+
#: lib/wfu_constants.php:183
|
883 |
msgid "refreshing..."
|
884 |
msgstr "osvežava se..."
|
885 |
|
886 |
+
#: lib/wfu_constants.php:184
|
887 |
msgid "correct captcha"
|
888 |
msgstr "ispravi captcha"
|
889 |
|
890 |
+
#: lib/wfu_constants.php:185
|
891 |
msgid "click to continue the upload"
|
892 |
msgstr "kliknite da biste nastavili otpremanje"
|
893 |
|
894 |
+
#: lib/wfu_constants.php:186
|
895 |
msgid "Are you sure you want to delete this file?"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: lib/wfu_constants.php:187
|
899 |
msgid "Are you sure you want to delete these files?"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: lib/wfu_constants.php:188
|
903 |
msgid "Bulk Actions"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: lib/wfu_constants.php:189
|
907 |
msgid "Apply"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: lib/wfu_constants.php:190
|
911 |
msgid "Are you sure that you want to cancel the upload?"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: lib/wfu_constants.php:191
|
915 |
msgid "cancel upload of this file"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: lib/wfu_constants.php:192
|
919 |
msgid "Upload in progress"
|
920 |
msgstr "Otpremanje u toku"
|
921 |
|
922 |
+
#: lib/wfu_constants.php:193
|
923 |
msgid "Upload in progress with warnings!"
|
924 |
msgstr "Otpremanje sa upozorenjima u toku!"
|
925 |
|
926 |
+
#: lib/wfu_constants.php:194
|
927 |
msgid "Upload in progress but some files already failed!"
|
928 |
msgstr "Otpremanje u toku, ali neke datoteke već nisu uspešno otpremljene!"
|
929 |
|
930 |
+
#: lib/wfu_constants.php:195
|
931 |
msgid "Upload in progress but no files uploaded so far!"
|
932 |
msgstr "Otpremanje u toku, ali do sada nisu otpremljene nikakve datoteke!"
|
933 |
|
934 |
+
#: lib/wfu_constants.php:196
|
935 |
msgid "All files uploaded successfully"
|
936 |
msgstr "Sve datoteke uspešno su otpremljene"
|
937 |
|
938 |
+
#: lib/wfu_constants.php:197
|
939 |
msgid "All files uploaded successfully but there are warnings!"
|
940 |
msgstr "Sve datoteke uspešno su otpremljene, ali postoje upozorenja!"
|
941 |
|
942 |
+
#: lib/wfu_constants.php:198
|
943 |
msgid "File uploaded successfully but there are warnings!"
|
944 |
msgstr "Datoteka je uspešno otpremljena, ali postoje upozorenja!"
|
945 |
|
946 |
+
#: lib/wfu_constants.php:199
|
947 |
msgid "Some files failed to upload!"
|
948 |
msgstr "Neke datoteke nisu otpremljene!"
|
949 |
|
950 |
+
#: lib/wfu_constants.php:200
|
951 |
msgid "All files failed to upload"
|
952 |
msgstr "Nijedna datoteka nije otpremljena"
|
953 |
|
954 |
+
#: lib/wfu_constants.php:201
|
955 |
msgid "File failed to upload"
|
956 |
msgstr "Datoteka nije uspešno otpremljena"
|
957 |
|
958 |
+
#: lib/wfu_constants.php:202
|
959 |
msgid "There are no files to upload!"
|
960 |
msgstr "Nema datoteka za otpremanje"
|
961 |
|
962 |
+
#: lib/wfu_constants.php:203
|
963 |
msgid "Test upload message"
|
964 |
msgstr "Testiraj poruku za otpremanje"
|
965 |
|
966 |
+
#: lib/wfu_constants.php:204
|
967 |
msgid "JSON parse warning!"
|
968 |
msgstr "Upozorenje za JSON parsiranje!"
|
969 |
|
970 |
+
#: lib/wfu_constants.php:205
|
971 |
msgid "please wait while redirecting..."
|
972 |
msgstr "Molimo sačekajte preusmeravanje..."
|
973 |
|
974 |
+
#: lib/wfu_constants.php:207
|
975 |
msgid "Open visual shortcode editor in new window"
|
976 |
msgstr "Otvori vizuelni shortcode uređivač u novom prozoru"
|
977 |
|
978 |
+
#: lib/wfu_constants.php:208
|
979 |
msgid "loading visual editor"
|
980 |
msgstr "učitavanje vizuelnog uređivača"
|
981 |
|
982 |
+
#: lib/wfu_constants.php:209
|
983 |
msgid "Clear file list?"
|
984 |
msgstr "Obriši listu datoteke?"
|
985 |
|
986 |
+
#: lib/wfu_constants.php:210
|
987 |
msgid "DROP HERE"
|
988 |
msgstr "POZICIONIRAJ OVDE"
|
989 |
|
990 |
+
#: lib/wfu_constants.php:212
|
991 |
msgid "record video"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: lib/wfu_constants.php:213
|
995 |
msgid "take a picture"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: lib/wfu_constants.php:214
|
999 |
msgid "turn webcam on/off"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: lib/wfu_constants.php:215
|
1003 |
msgid "go live again"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: lib/wfu_constants.php:216
|
1007 |
msgid "end recording"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: lib/wfu_constants.php:217
|
1011 |
msgid "play"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: lib/wfu_constants.php:218
|
1015 |
msgid "pause"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: lib/wfu_constants.php:219
|
1019 |
msgid "go to the beginning"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: lib/wfu_constants.php:220
|
1023 |
msgid "go to the end"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: lib/wfu_constants.php:222
|
1027 |
msgid "Wordpress File Upload Form"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: lib/wfu_constants.php:223
|
1031 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: lib/wfu_constants.php:224
|
1035 |
msgid "Upload Files"
|
1036 |
msgstr ""
|
1037 |
|
languages/wp-file-upload-zh_CN.mo
CHANGED
Binary file
|
languages/wp-file-upload-zh_CN.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -287,7 +287,7 @@ msgstr ""
|
|
287 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
288 |
msgstr "上传失败!试图加载文件时出现错误。"
|
289 |
|
290 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
291 |
msgid "Upload failed!"
|
292 |
msgstr "上传失败!"
|
293 |
|
@@ -535,55 +535,67 @@ msgid "Could not open file handles on chunk %d"
|
|
535 |
msgstr "不能打开分片 %d 上的文件 handles"
|
536 |
|
537 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
538 |
msgid "You are not allowed to delete this file!"
|
539 |
msgstr "不允许删除该文件!"
|
540 |
|
541 |
-
#: lib/wfu_constants.php:
|
542 |
msgid "File was not deleted!"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: lib/wfu_constants.php:
|
546 |
msgid "No file was deleted!"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: lib/wfu_constants.php:
|
550 |
msgid "Some files were not deleted!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: lib/wfu_constants.php:
|
554 |
msgid "Upload skipped! File already exists."
|
555 |
msgstr "跳过加载!文件已经存在。"
|
556 |
|
557 |
-
#: lib/wfu_constants.php:
|
558 |
msgid "The extension of the file does not match its contents."
|
559 |
msgstr "该文件的扩展名与其内容不符。"
|
560 |
|
561 |
-
#: lib/wfu_constants.php:
|
562 |
msgid ""
|
563 |
"Upload succeeded but the file is suspicious because its contents do not "
|
564 |
"match its extension. Its proper filename is: "
|
565 |
msgstr "上传成功,但因为他的内容与其扩展名不符,文件可疑。正确的文件名是:"
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid "No files have been selected!"
|
569 |
msgstr "没有选择文件!"
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
573 |
msgstr "因为没有加载的文件,WPFilebase 插件没更新"
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid "Notification email was not sent because there were no files uploaded."
|
577 |
msgstr "因为没有加载文件,通知邮件没发出。"
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid ""
|
581 |
"Notification email was not sent because no recipients were defined. Please "
|
582 |
"check notifyrecipients attribute in the shortcode."
|
583 |
msgstr ""
|
584 |
"因为没有定义收件人,通知邮件没发出。请检查 短码中的 notifyrecipients 属性"
|
585 |
|
586 |
-
#: lib/wfu_constants.php:
|
587 |
msgid ""
|
588 |
"Notification email was not sent due to an error. Please check "
|
589 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -591,22 +603,22 @@ msgstr ""
|
|
591 |
"由于出错,通知邮件没发出。请检查 notifyrecipients, notifysubject 和 "
|
592 |
"notifymessage 属性"
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid ""
|
596 |
"Redirection not executed because redirection link is empty. Please check "
|
597 |
"redirectlink attribute."
|
598 |
msgstr "因为重新定位链接空白,重新定位不执行。请检查 redirectlink 属性。"
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid ""
|
602 |
"Redirection not executed because not all files were successfully uploaded."
|
603 |
msgstr "因为不是所有的文件都成功加载,重新定位不执行。"
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: lib/wfu_constants.php:
|
610 |
msgid ""
|
611 |
"Hello admin\n"
|
612 |
"\n"
|
@@ -626,123 +638,123 @@ msgid ""
|
|
626 |
"Thanks"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: lib/wfu_constants.php:
|
630 |
msgid ""
|
631 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
632 |
"message persists, contact administrator."
|
633 |
msgstr "添加短码到 page/post 失败。请重新试一下。 如果仍有错误, 联系管理员。"
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid ""
|
637 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
638 |
"again to edit the shortcode."
|
639 |
msgstr "因为页面内容改变,编辑短码失败。再重新编辑该短码。"
|
640 |
|
641 |
-
#: lib/wfu_constants.php:
|
642 |
msgid ""
|
643 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
644 |
"again to delete it."
|
645 |
msgstr "因为页面内容改变,删除短码失败。再重新删除。"
|
646 |
|
647 |
-
#: lib/wfu_constants.php:
|
648 |
msgid ""
|
649 |
"The page containing the shortcode has been modified and it is no longer "
|
650 |
"valid. Please go back to reload the shortcode."
|
651 |
msgstr "含有短码的页面已经被修改,它不再有效。请回到重新加载该短码。"
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid ""
|
655 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
656 |
"back to reload the shortcode."
|
657 |
msgstr "因为页面内容被修改,更新短码失败。回到重新加载该短码。"
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid ""
|
661 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
662 |
"go back and reload the shortcode."
|
663 |
msgstr "更新短码失败。请重新再试。如果问题仍存在,返回查询加载该短码。"
|
664 |
|
665 |
-
#: lib/wfu_constants.php:
|
666 |
msgid "This is a test message"
|
667 |
msgstr "这是一个测试信息"
|
668 |
|
669 |
-
#: lib/wfu_constants.php:
|
670 |
msgid "This is a test administrator message"
|
671 |
msgstr "这是一个测试管理员信息"
|
672 |
|
673 |
-
#: lib/wfu_constants.php:
|
674 |
msgid "File testfile 1 under test"
|
675 |
msgstr "测试中的文件 testfile 1"
|
676 |
|
677 |
-
#: lib/wfu_constants.php:
|
678 |
msgid "File testfile 1 message"
|
679 |
msgstr "文件 testfile 1 信息"
|
680 |
|
681 |
-
#: lib/wfu_constants.php:
|
682 |
msgid "File testfile 1 administrator message"
|
683 |
msgstr "文件 testfile 1 管理员信息"
|
684 |
|
685 |
-
#: lib/wfu_constants.php:
|
686 |
msgid "File testfile 2 under test"
|
687 |
msgstr "测试中的文件 testfile 2"
|
688 |
|
689 |
-
#: lib/wfu_constants.php:
|
690 |
msgid "File testfile 2 message"
|
691 |
msgstr "文件 testfile 2 信息"
|
692 |
|
693 |
-
#: lib/wfu_constants.php:
|
694 |
msgid "File testfile 2 administrator message"
|
695 |
msgstr "文件 testfile 2 管理员信息"
|
696 |
|
697 |
-
#: lib/wfu_constants.php:
|
698 |
msgid ""
|
699 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
700 |
"current user."
|
701 |
msgstr "在文本中插入变量 %userid%。 它将被当前用户的 ID 替换。"
|
702 |
|
703 |
-
#: lib/wfu_constants.php:
|
704 |
msgid ""
|
705 |
"Insert variable %username% inside text. It will be replaced by the username "
|
706 |
"of the current user."
|
707 |
msgstr "在文本中插入变量 %username%。 它将被当前用户的用户名替换。"
|
708 |
|
709 |
-
#: lib/wfu_constants.php:
|
710 |
msgid ""
|
711 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
712 |
"the current user."
|
713 |
msgstr "在文本中插入变量 %useremail%。 它将被当前用户的邮替换。"
|
714 |
|
715 |
-
#: lib/wfu_constants.php:
|
716 |
msgid ""
|
717 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
718 |
"of the uploaded file."
|
719 |
msgstr "在文本中插入变量 %filename%。 它将被上传文件的文件名替换。"
|
720 |
|
721 |
-
#: lib/wfu_constants.php:
|
722 |
msgid ""
|
723 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
724 |
"filepath of the uploaded file."
|
725 |
msgstr "在文本中插入变量 %filepath%。 它将被上传文件的文件路径替换。"
|
726 |
|
727 |
-
#: lib/wfu_constants.php:
|
728 |
msgid ""
|
729 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
730 |
"the website."
|
731 |
msgstr "在文本中插入变量 %blogid%。 它将被该网站的blog ID替换。"
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid ""
|
735 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
736 |
"current page."
|
737 |
msgstr "在文本中插入变量 %pageid%。 它将被当前页面的 ID 替换。"
|
738 |
|
739 |
-
#: lib/wfu_constants.php:
|
740 |
msgid ""
|
741 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
742 |
"the current page."
|
743 |
msgstr "在文本中插入变量 %pagetitle%。 它将被上传文件的名称替换。"
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid ""
|
747 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
748 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -751,194 +763,194 @@ msgstr ""
|
|
751 |
"在文本中插入变量 %userdataXXX%。从下拉表中选择该用户区域。它将被用户在此区域"
|
752 |
"输入的值替换。"
|
753 |
|
754 |
-
#: lib/wfu_constants.php:
|
755 |
msgid "Insert variable %n% inside text to denote a line change."
|
756 |
msgstr "在文本中插入变量 %n%。表明一行变化。"
|
757 |
|
758 |
-
#: lib/wfu_constants.php:
|
759 |
msgid "Test Mode"
|
760 |
msgstr "测试模式"
|
761 |
|
762 |
-
#: lib/wfu_constants.php:
|
763 |
msgid "select dir..."
|
764 |
msgstr "选择 dir ..."
|
765 |
|
766 |
-
#: lib/wfu_constants.php:
|
767 |
msgid "type dir"
|
768 |
msgstr "键入 dir"
|
769 |
|
770 |
-
#: lib/wfu_constants.php:
|
771 |
msgid "Upload path: %filepath%"
|
772 |
msgstr "加载路径:%filepath%"
|
773 |
|
774 |
-
#: lib/wfu_constants.php:
|
775 |
msgid "Failed upload path: %filepath%"
|
776 |
msgstr "加载路径失败: %filepath%"
|
777 |
|
778 |
-
#: lib/wfu_constants.php:
|
779 |
msgid " (required)"
|
780 |
msgstr "(必需)"
|
781 |
|
782 |
-
#: lib/wfu_constants.php:
|
783 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
784 |
msgstr "文件正在加载中,你确定要退出这个页面吗?"
|
785 |
|
786 |
-
#: lib/wfu_constants.php:
|
787 |
msgid "checking captcha..."
|
788 |
msgstr "正在检查 captcha ..."
|
789 |
|
790 |
-
#: lib/wfu_constants.php:
|
791 |
msgid "refreshing..."
|
792 |
msgstr "正在更新 ..."
|
793 |
|
794 |
-
#: lib/wfu_constants.php:
|
795 |
msgid "correct captcha"
|
796 |
msgstr "正确的 captcha"
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid "click to continue the upload"
|
800 |
msgstr "点击继续上传"
|
801 |
|
802 |
-
#: lib/wfu_constants.php:
|
803 |
msgid "Are you sure you want to delete this file?"
|
804 |
msgstr "确定要删除这个文件吗?"
|
805 |
|
806 |
-
#: lib/wfu_constants.php:
|
807 |
msgid "Are you sure you want to delete these files?"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: lib/wfu_constants.php:
|
811 |
msgid "Bulk Actions"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid "Apply"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: lib/wfu_constants.php:
|
819 |
msgid "Are you sure that you want to cancel the upload?"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid "cancel upload of this file"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: lib/wfu_constants.php:
|
827 |
msgid "Upload in progress"
|
828 |
msgstr "上传正在进行中"
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "Upload in progress with warnings!"
|
832 |
msgstr "上传正在进行中,有警告提示!"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "Upload in progress but some files already failed!"
|
836 |
msgstr "上传正在进行中,有些文件已经加载失败!"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "Upload in progress but no files uploaded so far!"
|
840 |
msgstr "上传正在进行中,还没有文件载入!"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "All files uploaded successfully"
|
844 |
msgstr "所有危机上传成功"
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "All files uploaded successfully but there are warnings!"
|
848 |
msgstr "所有文件上传成功,但有警告提示!"
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "File uploaded successfully but there are warnings!"
|
852 |
msgstr "文件上传成功,但有警告提示!"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "Some files failed to upload!"
|
856 |
msgstr "部分文件上传失败!"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "All files failed to upload"
|
860 |
msgstr "所以我就上传失败"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid "File failed to upload"
|
864 |
msgstr "文件上传失败"
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "There are no files to upload!"
|
868 |
msgstr "没有要上传的文件!"
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid "Test upload message"
|
872 |
msgstr "测试上传信息"
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid "JSON parse warning!"
|
876 |
msgstr "JSON语法分析警告!"
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid "please wait while redirecting..."
|
880 |
msgstr "请等候,正在重新定位 ..."
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid "Open visual shortcode editor in new window"
|
884 |
msgstr "在新窗口打开视频 shortcode 编辑器"
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid "loading visual editor"
|
888 |
msgstr "加载视频编辑器"
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid "Clear file list?"
|
892 |
msgstr "清除文件列表?"
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid "DROP HERE"
|
896 |
msgstr "放在这里"
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid "record video"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid "take a picture"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid "turn webcam on/off"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid "go live again"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: lib/wfu_constants.php:
|
915 |
msgid "end recording"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid "play"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "pause"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "go to the beginning"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "go to the end"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "Wordpress File Upload Form"
|
936 |
msgstr "Wordpress 文件上传格式"
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
940 |
msgstr "针对sidebars 的 Wordpress 文件上传插件工具"
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "Upload Files"
|
944 |
msgstr "上传文件"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:33+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: zh_CN\n"
|
287 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
288 |
msgstr "上传失败!试图加载文件时出现错误。"
|
289 |
|
290 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
291 |
msgid "Upload failed!"
|
292 |
msgstr "上传失败!"
|
293 |
|
535 |
msgstr "不能打开分片 %d 上的文件 handles"
|
536 |
|
537 |
#: lib/wfu_constants.php:127
|
538 |
+
msgid "You are not allowed to download this file!"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: lib/wfu_constants.php:128
|
542 |
+
msgid "File does not exist!"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: lib/wfu_constants.php:129
|
546 |
+
msgid "Could not download file!"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: lib/wfu_constants.php:130
|
550 |
msgid "You are not allowed to delete this file!"
|
551 |
msgstr "不允许删除该文件!"
|
552 |
|
553 |
+
#: lib/wfu_constants.php:131
|
554 |
msgid "File was not deleted!"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: lib/wfu_constants.php:132
|
558 |
msgid "No file was deleted!"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: lib/wfu_constants.php:133
|
562 |
msgid "Some files were not deleted!"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: lib/wfu_constants.php:135
|
566 |
msgid "Upload skipped! File already exists."
|
567 |
msgstr "跳过加载!文件已经存在。"
|
568 |
|
569 |
+
#: lib/wfu_constants.php:136
|
570 |
msgid "The extension of the file does not match its contents."
|
571 |
msgstr "该文件的扩展名与其内容不符。"
|
572 |
|
573 |
+
#: lib/wfu_constants.php:137
|
574 |
msgid ""
|
575 |
"Upload succeeded but the file is suspicious because its contents do not "
|
576 |
"match its extension. Its proper filename is: "
|
577 |
msgstr "上传成功,但因为他的内容与其扩展名不符,文件可疑。正确的文件名是:"
|
578 |
|
579 |
+
#: lib/wfu_constants.php:138
|
580 |
msgid "No files have been selected!"
|
581 |
msgstr "没有选择文件!"
|
582 |
|
583 |
+
#: lib/wfu_constants.php:139
|
584 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
585 |
msgstr "因为没有加载的文件,WPFilebase 插件没更新"
|
586 |
|
587 |
+
#: lib/wfu_constants.php:140
|
588 |
msgid "Notification email was not sent because there were no files uploaded."
|
589 |
msgstr "因为没有加载文件,通知邮件没发出。"
|
590 |
|
591 |
+
#: lib/wfu_constants.php:141
|
592 |
msgid ""
|
593 |
"Notification email was not sent because no recipients were defined. Please "
|
594 |
"check notifyrecipients attribute in the shortcode."
|
595 |
msgstr ""
|
596 |
"因为没有定义收件人,通知邮件没发出。请检查 短码中的 notifyrecipients 属性"
|
597 |
|
598 |
+
#: lib/wfu_constants.php:142
|
599 |
msgid ""
|
600 |
"Notification email was not sent due to an error. Please check "
|
601 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
603 |
"由于出错,通知邮件没发出。请检查 notifyrecipients, notifysubject 和 "
|
604 |
"notifymessage 属性"
|
605 |
|
606 |
+
#: lib/wfu_constants.php:143
|
607 |
msgid ""
|
608 |
"Redirection not executed because redirection link is empty. Please check "
|
609 |
"redirectlink attribute."
|
610 |
msgstr "因为重新定位链接空白,重新定位不执行。请检查 redirectlink 属性。"
|
611 |
|
612 |
+
#: lib/wfu_constants.php:144
|
613 |
msgid ""
|
614 |
"Redirection not executed because not all files were successfully uploaded."
|
615 |
msgstr "因为不是所有的文件都成功加载,重新定位不执行。"
|
616 |
|
617 |
+
#: lib/wfu_constants.php:145
|
618 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: lib/wfu_constants.php:146
|
622 |
msgid ""
|
623 |
"Hello admin\n"
|
624 |
"\n"
|
638 |
"Thanks"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: lib/wfu_constants.php:148
|
642 |
msgid ""
|
643 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
644 |
"message persists, contact administrator."
|
645 |
msgstr "添加短码到 page/post 失败。请重新试一下。 如果仍有错误, 联系管理员。"
|
646 |
|
647 |
+
#: lib/wfu_constants.php:149
|
648 |
msgid ""
|
649 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
650 |
"again to edit the shortcode."
|
651 |
msgstr "因为页面内容改变,编辑短码失败。再重新编辑该短码。"
|
652 |
|
653 |
+
#: lib/wfu_constants.php:150
|
654 |
msgid ""
|
655 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
656 |
"again to delete it."
|
657 |
msgstr "因为页面内容改变,删除短码失败。再重新删除。"
|
658 |
|
659 |
+
#: lib/wfu_constants.php:151
|
660 |
msgid ""
|
661 |
"The page containing the shortcode has been modified and it is no longer "
|
662 |
"valid. Please go back to reload the shortcode."
|
663 |
msgstr "含有短码的页面已经被修改,它不再有效。请回到重新加载该短码。"
|
664 |
|
665 |
+
#: lib/wfu_constants.php:152
|
666 |
msgid ""
|
667 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
668 |
"back to reload the shortcode."
|
669 |
msgstr "因为页面内容被修改,更新短码失败。回到重新加载该短码。"
|
670 |
|
671 |
+
#: lib/wfu_constants.php:153
|
672 |
msgid ""
|
673 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
674 |
"go back and reload the shortcode."
|
675 |
msgstr "更新短码失败。请重新再试。如果问题仍存在,返回查询加载该短码。"
|
676 |
|
677 |
+
#: lib/wfu_constants.php:155
|
678 |
msgid "This is a test message"
|
679 |
msgstr "这是一个测试信息"
|
680 |
|
681 |
+
#: lib/wfu_constants.php:156
|
682 |
msgid "This is a test administrator message"
|
683 |
msgstr "这是一个测试管理员信息"
|
684 |
|
685 |
+
#: lib/wfu_constants.php:157
|
686 |
msgid "File testfile 1 under test"
|
687 |
msgstr "测试中的文件 testfile 1"
|
688 |
|
689 |
+
#: lib/wfu_constants.php:158
|
690 |
msgid "File testfile 1 message"
|
691 |
msgstr "文件 testfile 1 信息"
|
692 |
|
693 |
+
#: lib/wfu_constants.php:159
|
694 |
msgid "File testfile 1 administrator message"
|
695 |
msgstr "文件 testfile 1 管理员信息"
|
696 |
|
697 |
+
#: lib/wfu_constants.php:160
|
698 |
msgid "File testfile 2 under test"
|
699 |
msgstr "测试中的文件 testfile 2"
|
700 |
|
701 |
+
#: lib/wfu_constants.php:161
|
702 |
msgid "File testfile 2 message"
|
703 |
msgstr "文件 testfile 2 信息"
|
704 |
|
705 |
+
#: lib/wfu_constants.php:162
|
706 |
msgid "File testfile 2 administrator message"
|
707 |
msgstr "文件 testfile 2 管理员信息"
|
708 |
|
709 |
+
#: lib/wfu_constants.php:164
|
710 |
msgid ""
|
711 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
712 |
"current user."
|
713 |
msgstr "在文本中插入变量 %userid%。 它将被当前用户的 ID 替换。"
|
714 |
|
715 |
+
#: lib/wfu_constants.php:165
|
716 |
msgid ""
|
717 |
"Insert variable %username% inside text. It will be replaced by the username "
|
718 |
"of the current user."
|
719 |
msgstr "在文本中插入变量 %username%。 它将被当前用户的用户名替换。"
|
720 |
|
721 |
+
#: lib/wfu_constants.php:166
|
722 |
msgid ""
|
723 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
724 |
"the current user."
|
725 |
msgstr "在文本中插入变量 %useremail%。 它将被当前用户的邮替换。"
|
726 |
|
727 |
+
#: lib/wfu_constants.php:167
|
728 |
msgid ""
|
729 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
730 |
"of the uploaded file."
|
731 |
msgstr "在文本中插入变量 %filename%。 它将被上传文件的文件名替换。"
|
732 |
|
733 |
+
#: lib/wfu_constants.php:168
|
734 |
msgid ""
|
735 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
736 |
"filepath of the uploaded file."
|
737 |
msgstr "在文本中插入变量 %filepath%。 它将被上传文件的文件路径替换。"
|
738 |
|
739 |
+
#: lib/wfu_constants.php:169
|
740 |
msgid ""
|
741 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
742 |
"the website."
|
743 |
msgstr "在文本中插入变量 %blogid%。 它将被该网站的blog ID替换。"
|
744 |
|
745 |
+
#: lib/wfu_constants.php:170
|
746 |
msgid ""
|
747 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
748 |
"current page."
|
749 |
msgstr "在文本中插入变量 %pageid%。 它将被当前页面的 ID 替换。"
|
750 |
|
751 |
+
#: lib/wfu_constants.php:171
|
752 |
msgid ""
|
753 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
754 |
"the current page."
|
755 |
msgstr "在文本中插入变量 %pagetitle%。 它将被上传文件的名称替换。"
|
756 |
|
757 |
+
#: lib/wfu_constants.php:172
|
758 |
msgid ""
|
759 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
760 |
"drop-down list. It will be replaced by the value that the user entered in "
|
763 |
"在文本中插入变量 %userdataXXX%。从下拉表中选择该用户区域。它将被用户在此区域"
|
764 |
"输入的值替换。"
|
765 |
|
766 |
+
#: lib/wfu_constants.php:173
|
767 |
msgid "Insert variable %n% inside text to denote a line change."
|
768 |
msgstr "在文本中插入变量 %n%。表明一行变化。"
|
769 |
|
770 |
+
#: lib/wfu_constants.php:175
|
771 |
msgid "Test Mode"
|
772 |
msgstr "测试模式"
|
773 |
|
774 |
+
#: lib/wfu_constants.php:176
|
775 |
msgid "select dir..."
|
776 |
msgstr "选择 dir ..."
|
777 |
|
778 |
+
#: lib/wfu_constants.php:177
|
779 |
msgid "type dir"
|
780 |
msgstr "键入 dir"
|
781 |
|
782 |
+
#: lib/wfu_constants.php:178
|
783 |
msgid "Upload path: %filepath%"
|
784 |
msgstr "加载路径:%filepath%"
|
785 |
|
786 |
+
#: lib/wfu_constants.php:179
|
787 |
msgid "Failed upload path: %filepath%"
|
788 |
msgstr "加载路径失败: %filepath%"
|
789 |
|
790 |
+
#: lib/wfu_constants.php:180
|
791 |
msgid " (required)"
|
792 |
msgstr "(必需)"
|
793 |
|
794 |
+
#: lib/wfu_constants.php:181
|
795 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
796 |
msgstr "文件正在加载中,你确定要退出这个页面吗?"
|
797 |
|
798 |
+
#: lib/wfu_constants.php:182
|
799 |
msgid "checking captcha..."
|
800 |
msgstr "正在检查 captcha ..."
|
801 |
|
802 |
+
#: lib/wfu_constants.php:183
|
803 |
msgid "refreshing..."
|
804 |
msgstr "正在更新 ..."
|
805 |
|
806 |
+
#: lib/wfu_constants.php:184
|
807 |
msgid "correct captcha"
|
808 |
msgstr "正确的 captcha"
|
809 |
|
810 |
+
#: lib/wfu_constants.php:185
|
811 |
msgid "click to continue the upload"
|
812 |
msgstr "点击继续上传"
|
813 |
|
814 |
+
#: lib/wfu_constants.php:186
|
815 |
msgid "Are you sure you want to delete this file?"
|
816 |
msgstr "确定要删除这个文件吗?"
|
817 |
|
818 |
+
#: lib/wfu_constants.php:187
|
819 |
msgid "Are you sure you want to delete these files?"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: lib/wfu_constants.php:188
|
823 |
msgid "Bulk Actions"
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: lib/wfu_constants.php:189
|
827 |
msgid "Apply"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: lib/wfu_constants.php:190
|
831 |
msgid "Are you sure that you want to cancel the upload?"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: lib/wfu_constants.php:191
|
835 |
msgid "cancel upload of this file"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: lib/wfu_constants.php:192
|
839 |
msgid "Upload in progress"
|
840 |
msgstr "上传正在进行中"
|
841 |
|
842 |
+
#: lib/wfu_constants.php:193
|
843 |
msgid "Upload in progress with warnings!"
|
844 |
msgstr "上传正在进行中,有警告提示!"
|
845 |
|
846 |
+
#: lib/wfu_constants.php:194
|
847 |
msgid "Upload in progress but some files already failed!"
|
848 |
msgstr "上传正在进行中,有些文件已经加载失败!"
|
849 |
|
850 |
+
#: lib/wfu_constants.php:195
|
851 |
msgid "Upload in progress but no files uploaded so far!"
|
852 |
msgstr "上传正在进行中,还没有文件载入!"
|
853 |
|
854 |
+
#: lib/wfu_constants.php:196
|
855 |
msgid "All files uploaded successfully"
|
856 |
msgstr "所有危机上传成功"
|
857 |
|
858 |
+
#: lib/wfu_constants.php:197
|
859 |
msgid "All files uploaded successfully but there are warnings!"
|
860 |
msgstr "所有文件上传成功,但有警告提示!"
|
861 |
|
862 |
+
#: lib/wfu_constants.php:198
|
863 |
msgid "File uploaded successfully but there are warnings!"
|
864 |
msgstr "文件上传成功,但有警告提示!"
|
865 |
|
866 |
+
#: lib/wfu_constants.php:199
|
867 |
msgid "Some files failed to upload!"
|
868 |
msgstr "部分文件上传失败!"
|
869 |
|
870 |
+
#: lib/wfu_constants.php:200
|
871 |
msgid "All files failed to upload"
|
872 |
msgstr "所以我就上传失败"
|
873 |
|
874 |
+
#: lib/wfu_constants.php:201
|
875 |
msgid "File failed to upload"
|
876 |
msgstr "文件上传失败"
|
877 |
|
878 |
+
#: lib/wfu_constants.php:202
|
879 |
msgid "There are no files to upload!"
|
880 |
msgstr "没有要上传的文件!"
|
881 |
|
882 |
+
#: lib/wfu_constants.php:203
|
883 |
msgid "Test upload message"
|
884 |
msgstr "测试上传信息"
|
885 |
|
886 |
+
#: lib/wfu_constants.php:204
|
887 |
msgid "JSON parse warning!"
|
888 |
msgstr "JSON语法分析警告!"
|
889 |
|
890 |
+
#: lib/wfu_constants.php:205
|
891 |
msgid "please wait while redirecting..."
|
892 |
msgstr "请等候,正在重新定位 ..."
|
893 |
|
894 |
+
#: lib/wfu_constants.php:207
|
895 |
msgid "Open visual shortcode editor in new window"
|
896 |
msgstr "在新窗口打开视频 shortcode 编辑器"
|
897 |
|
898 |
+
#: lib/wfu_constants.php:208
|
899 |
msgid "loading visual editor"
|
900 |
msgstr "加载视频编辑器"
|
901 |
|
902 |
+
#: lib/wfu_constants.php:209
|
903 |
msgid "Clear file list?"
|
904 |
msgstr "清除文件列表?"
|
905 |
|
906 |
+
#: lib/wfu_constants.php:210
|
907 |
msgid "DROP HERE"
|
908 |
msgstr "放在这里"
|
909 |
|
910 |
+
#: lib/wfu_constants.php:212
|
911 |
msgid "record video"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: lib/wfu_constants.php:213
|
915 |
msgid "take a picture"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: lib/wfu_constants.php:214
|
919 |
msgid "turn webcam on/off"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: lib/wfu_constants.php:215
|
923 |
msgid "go live again"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: lib/wfu_constants.php:216
|
927 |
msgid "end recording"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: lib/wfu_constants.php:217
|
931 |
msgid "play"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: lib/wfu_constants.php:218
|
935 |
msgid "pause"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: lib/wfu_constants.php:219
|
939 |
msgid "go to the beginning"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: lib/wfu_constants.php:220
|
943 |
msgid "go to the end"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: lib/wfu_constants.php:222
|
947 |
msgid "Wordpress File Upload Form"
|
948 |
msgstr "Wordpress 文件上传格式"
|
949 |
|
950 |
+
#: lib/wfu_constants.php:223
|
951 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
952 |
msgstr "针对sidebars 的 Wordpress 文件上传插件工具"
|
953 |
|
954 |
+
#: lib/wfu_constants.php:224
|
955 |
msgid "Upload Files"
|
956 |
msgstr "上传文件"
|
languages/wp-file-upload.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-
|
6 |
-
"PO-Revision-Date: 2016-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
@@ -279,7 +279,7 @@ msgstr ""
|
|
279 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: lib/wfu_constants.php:72 lib/wfu_constants.php:
|
283 |
msgid "Upload failed!"
|
284 |
msgstr ""
|
285 |
|
@@ -523,75 +523,87 @@ msgid "Could not open file handles on chunk %d"
|
|
523 |
msgstr ""
|
524 |
|
525 |
#: lib/wfu_constants.php:127
|
526 |
-
msgid "You are not allowed to
|
527 |
msgstr ""
|
528 |
|
529 |
#: lib/wfu_constants.php:128
|
530 |
-
msgid "File
|
531 |
msgstr ""
|
532 |
|
533 |
#: lib/wfu_constants.php:129
|
534 |
-
msgid "
|
535 |
msgstr ""
|
536 |
|
537 |
#: lib/wfu_constants.php:130
|
538 |
-
msgid "
|
|
|
|
|
|
|
|
|
539 |
msgstr ""
|
540 |
|
541 |
#: lib/wfu_constants.php:132
|
542 |
-
msgid "
|
543 |
msgstr ""
|
544 |
|
545 |
#: lib/wfu_constants.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
msgid "The extension of the file does not match its contents."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: lib/wfu_constants.php:
|
550 |
msgid ""
|
551 |
"Upload succeeded but the file is suspicious because its contents do not "
|
552 |
"match its extension. Its proper filename is: "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: lib/wfu_constants.php:
|
556 |
msgid "No files have been selected!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid "Notification email was not sent because there were no files uploaded."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid ""
|
569 |
"Notification email was not sent because no recipients were defined. Please "
|
570 |
"check notifyrecipients attribute in the shortcode."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: lib/wfu_constants.php:
|
574 |
msgid ""
|
575 |
"Notification email was not sent due to an error. Please check "
|
576 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid ""
|
581 |
"Redirection not executed because redirection link is empty. Please check "
|
582 |
"redirectlink attribute."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid ""
|
587 |
"Redirection not executed because not all files were successfully uploaded."
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: lib/wfu_constants.php:
|
591 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid ""
|
596 |
"Hello admin\n"
|
597 |
"\n"
|
@@ -611,317 +623,317 @@ msgid ""
|
|
611 |
"Thanks"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: lib/wfu_constants.php:
|
615 |
msgid ""
|
616 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
617 |
"message persists, contact administrator."
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid ""
|
622 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
623 |
"again to edit the shortcode."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid ""
|
628 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
629 |
"again to delete it."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: lib/wfu_constants.php:
|
633 |
msgid ""
|
634 |
"The page containing the shortcode has been modified and it is no longer "
|
635 |
"valid. Please go back to reload the shortcode."
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: lib/wfu_constants.php:
|
639 |
msgid ""
|
640 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
641 |
"back to reload the shortcode."
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid ""
|
646 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
647 |
"go back and reload the shortcode."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: lib/wfu_constants.php:
|
651 |
msgid "This is a test message"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: lib/wfu_constants.php:
|
655 |
msgid "This is a test administrator message"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: lib/wfu_constants.php:
|
659 |
msgid "File testfile 1 under test"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: lib/wfu_constants.php:
|
663 |
msgid "File testfile 1 message"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid "File testfile 1 administrator message"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: lib/wfu_constants.php:
|
671 |
msgid "File testfile 2 under test"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: lib/wfu_constants.php:
|
675 |
msgid "File testfile 2 message"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: lib/wfu_constants.php:
|
679 |
msgid "File testfile 2 administrator message"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: lib/wfu_constants.php:
|
683 |
msgid ""
|
684 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
685 |
"current user."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid ""
|
690 |
"Insert variable %username% inside text. It will be replaced by the username "
|
691 |
"of the current user."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: lib/wfu_constants.php:
|
695 |
msgid ""
|
696 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
697 |
"the current user."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid ""
|
702 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
703 |
"of the uploaded file."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: lib/wfu_constants.php:
|
707 |
msgid ""
|
708 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
709 |
"filepath of the uploaded file."
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid ""
|
714 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
715 |
"the website."
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: lib/wfu_constants.php:
|
719 |
msgid ""
|
720 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
721 |
"current page."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: lib/wfu_constants.php:
|
725 |
msgid ""
|
726 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
727 |
"the current page."
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid ""
|
732 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
733 |
"drop-down list. It will be replaced by the value that the user entered in "
|
734 |
"this field."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "Insert variable %n% inside text to denote a line change."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "Test Mode"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "select dir..."
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "type dir"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "Upload path: %filepath%"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
758 |
msgid "Failed upload path: %filepath%"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: lib/wfu_constants.php:
|
762 |
msgid " (required)"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: lib/wfu_constants.php:
|
766 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid "checking captcha..."
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: lib/wfu_constants.php:
|
774 |
msgid "refreshing..."
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: lib/wfu_constants.php:
|
778 |
msgid "correct captcha"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: lib/wfu_constants.php:
|
782 |
msgid "click to continue the upload"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: lib/wfu_constants.php:
|
786 |
msgid "Are you sure you want to delete this file?"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid "Are you sure you want to delete these files?"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid "Bulk Actions"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid "Apply"
|
799 |
msgstr ""
|
800 |
|
801 |
-
#: lib/wfu_constants.php:
|
802 |
msgid "Are you sure that you want to cancel the upload?"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid "cancel upload of this file"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: lib/wfu_constants.php:
|
810 |
msgid "Upload in progress"
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid "Upload in progress with warnings!"
|
815 |
msgstr ""
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid "Upload in progress but some files already failed!"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid "Upload in progress but no files uploaded so far!"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: lib/wfu_constants.php:
|
826 |
msgid "All files uploaded successfully"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "All files uploaded successfully but there are warnings!"
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
834 |
msgid "File uploaded successfully but there are warnings!"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "Some files failed to upload!"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "All files failed to upload"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "File failed to upload"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "There are no files to upload!"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "Test upload message"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "JSON parse warning!"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "please wait while redirecting..."
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "Open visual shortcode editor in new window"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "loading visual editor"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "Clear file list?"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "DROP HERE"
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid "record video"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid "take a picture"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: lib/wfu_constants.php:
|
890 |
msgid "turn webcam on/off"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: lib/wfu_constants.php:
|
894 |
msgid "go live again"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: lib/wfu_constants.php:
|
898 |
msgid "end recording"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: lib/wfu_constants.php:
|
902 |
msgid "play"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: lib/wfu_constants.php:
|
906 |
msgid "pause"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid "go to the beginning"
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: lib/wfu_constants.php:
|
914 |
msgid "go to the end"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid "Wordpress File Upload Form"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "Upload Files"
|
927 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-10-27 23:19+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-10-27 23:19+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
279 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: lib/wfu_constants.php:72 lib/wfu_constants.php:206
|
283 |
msgid "Upload failed!"
|
284 |
msgstr ""
|
285 |
|
523 |
msgstr ""
|
524 |
|
525 |
#: lib/wfu_constants.php:127
|
526 |
+
msgid "You are not allowed to download this file!"
|
527 |
msgstr ""
|
528 |
|
529 |
#: lib/wfu_constants.php:128
|
530 |
+
msgid "File does not exist!"
|
531 |
msgstr ""
|
532 |
|
533 |
#: lib/wfu_constants.php:129
|
534 |
+
msgid "Could not download file!"
|
535 |
msgstr ""
|
536 |
|
537 |
#: lib/wfu_constants.php:130
|
538 |
+
msgid "You are not allowed to delete this file!"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: lib/wfu_constants.php:131
|
542 |
+
msgid "File was not deleted!"
|
543 |
msgstr ""
|
544 |
|
545 |
#: lib/wfu_constants.php:132
|
546 |
+
msgid "No file was deleted!"
|
547 |
msgstr ""
|
548 |
|
549 |
#: lib/wfu_constants.php:133
|
550 |
+
msgid "Some files were not deleted!"
|
551 |
+
msgstr ""
|
552 |
+
|
553 |
+
#: lib/wfu_constants.php:135
|
554 |
+
msgid "Upload skipped! File already exists."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: lib/wfu_constants.php:136
|
558 |
msgid "The extension of the file does not match its contents."
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: lib/wfu_constants.php:137
|
562 |
msgid ""
|
563 |
"Upload succeeded but the file is suspicious because its contents do not "
|
564 |
"match its extension. Its proper filename is: "
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: lib/wfu_constants.php:138
|
568 |
msgid "No files have been selected!"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: lib/wfu_constants.php:139
|
572 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: lib/wfu_constants.php:140
|
576 |
msgid "Notification email was not sent because there were no files uploaded."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: lib/wfu_constants.php:141
|
580 |
msgid ""
|
581 |
"Notification email was not sent because no recipients were defined. Please "
|
582 |
"check notifyrecipients attribute in the shortcode."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: lib/wfu_constants.php:142
|
586 |
msgid ""
|
587 |
"Notification email was not sent due to an error. Please check "
|
588 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: lib/wfu_constants.php:143
|
592 |
msgid ""
|
593 |
"Redirection not executed because redirection link is empty. Please check "
|
594 |
"redirectlink attribute."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: lib/wfu_constants.php:144
|
598 |
msgid ""
|
599 |
"Redirection not executed because not all files were successfully uploaded."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: lib/wfu_constants.php:145
|
603 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: lib/wfu_constants.php:146
|
607 |
msgid ""
|
608 |
"Hello admin\n"
|
609 |
"\n"
|
623 |
"Thanks"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: lib/wfu_constants.php:148
|
627 |
msgid ""
|
628 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
629 |
"message persists, contact administrator."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: lib/wfu_constants.php:149
|
633 |
msgid ""
|
634 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
635 |
"again to edit the shortcode."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: lib/wfu_constants.php:150
|
639 |
msgid ""
|
640 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
641 |
"again to delete it."
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: lib/wfu_constants.php:151
|
645 |
msgid ""
|
646 |
"The page containing the shortcode has been modified and it is no longer "
|
647 |
"valid. Please go back to reload the shortcode."
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: lib/wfu_constants.php:152
|
651 |
msgid ""
|
652 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
653 |
"back to reload the shortcode."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: lib/wfu_constants.php:153
|
657 |
msgid ""
|
658 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
659 |
"go back and reload the shortcode."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: lib/wfu_constants.php:155
|
663 |
msgid "This is a test message"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: lib/wfu_constants.php:156
|
667 |
msgid "This is a test administrator message"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: lib/wfu_constants.php:157
|
671 |
msgid "File testfile 1 under test"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: lib/wfu_constants.php:158
|
675 |
msgid "File testfile 1 message"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: lib/wfu_constants.php:159
|
679 |
msgid "File testfile 1 administrator message"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: lib/wfu_constants.php:160
|
683 |
msgid "File testfile 2 under test"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: lib/wfu_constants.php:161
|
687 |
msgid "File testfile 2 message"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: lib/wfu_constants.php:162
|
691 |
msgid "File testfile 2 administrator message"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: lib/wfu_constants.php:164
|
695 |
msgid ""
|
696 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
697 |
"current user."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: lib/wfu_constants.php:165
|
701 |
msgid ""
|
702 |
"Insert variable %username% inside text. It will be replaced by the username "
|
703 |
"of the current user."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: lib/wfu_constants.php:166
|
707 |
msgid ""
|
708 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
709 |
"the current user."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: lib/wfu_constants.php:167
|
713 |
msgid ""
|
714 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
715 |
"of the uploaded file."
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: lib/wfu_constants.php:168
|
719 |
msgid ""
|
720 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
721 |
"filepath of the uploaded file."
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: lib/wfu_constants.php:169
|
725 |
msgid ""
|
726 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
727 |
"the website."
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: lib/wfu_constants.php:170
|
731 |
msgid ""
|
732 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
733 |
"current page."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: lib/wfu_constants.php:171
|
737 |
msgid ""
|
738 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
739 |
"the current page."
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: lib/wfu_constants.php:172
|
743 |
msgid ""
|
744 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
745 |
"drop-down list. It will be replaced by the value that the user entered in "
|
746 |
"this field."
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: lib/wfu_constants.php:173
|
750 |
msgid "Insert variable %n% inside text to denote a line change."
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: lib/wfu_constants.php:175
|
754 |
msgid "Test Mode"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: lib/wfu_constants.php:176
|
758 |
msgid "select dir..."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: lib/wfu_constants.php:177
|
762 |
msgid "type dir"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: lib/wfu_constants.php:178
|
766 |
msgid "Upload path: %filepath%"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: lib/wfu_constants.php:179
|
770 |
msgid "Failed upload path: %filepath%"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: lib/wfu_constants.php:180
|
774 |
msgid " (required)"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: lib/wfu_constants.php:181
|
778 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: lib/wfu_constants.php:182
|
782 |
msgid "checking captcha..."
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: lib/wfu_constants.php:183
|
786 |
msgid "refreshing..."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: lib/wfu_constants.php:184
|
790 |
msgid "correct captcha"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: lib/wfu_constants.php:185
|
794 |
msgid "click to continue the upload"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: lib/wfu_constants.php:186
|
798 |
msgid "Are you sure you want to delete this file?"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: lib/wfu_constants.php:187
|
802 |
msgid "Are you sure you want to delete these files?"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: lib/wfu_constants.php:188
|
806 |
msgid "Bulk Actions"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: lib/wfu_constants.php:189
|
810 |
msgid "Apply"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: lib/wfu_constants.php:190
|
814 |
msgid "Are you sure that you want to cancel the upload?"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: lib/wfu_constants.php:191
|
818 |
msgid "cancel upload of this file"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: lib/wfu_constants.php:192
|
822 |
msgid "Upload in progress"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: lib/wfu_constants.php:193
|
826 |
msgid "Upload in progress with warnings!"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: lib/wfu_constants.php:194
|
830 |
msgid "Upload in progress but some files already failed!"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: lib/wfu_constants.php:195
|
834 |
msgid "Upload in progress but no files uploaded so far!"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: lib/wfu_constants.php:196
|
838 |
msgid "All files uploaded successfully"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: lib/wfu_constants.php:197
|
842 |
msgid "All files uploaded successfully but there are warnings!"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: lib/wfu_constants.php:198
|
846 |
msgid "File uploaded successfully but there are warnings!"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: lib/wfu_constants.php:199
|
850 |
msgid "Some files failed to upload!"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: lib/wfu_constants.php:200
|
854 |
msgid "All files failed to upload"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: lib/wfu_constants.php:201
|
858 |
msgid "File failed to upload"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: lib/wfu_constants.php:202
|
862 |
msgid "There are no files to upload!"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: lib/wfu_constants.php:203
|
866 |
msgid "Test upload message"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: lib/wfu_constants.php:204
|
870 |
msgid "JSON parse warning!"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: lib/wfu_constants.php:205
|
874 |
msgid "please wait while redirecting..."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: lib/wfu_constants.php:207
|
878 |
msgid "Open visual shortcode editor in new window"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: lib/wfu_constants.php:208
|
882 |
msgid "loading visual editor"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: lib/wfu_constants.php:209
|
886 |
msgid "Clear file list?"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: lib/wfu_constants.php:210
|
890 |
msgid "DROP HERE"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: lib/wfu_constants.php:212
|
894 |
msgid "record video"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: lib/wfu_constants.php:213
|
898 |
msgid "take a picture"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: lib/wfu_constants.php:214
|
902 |
msgid "turn webcam on/off"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: lib/wfu_constants.php:215
|
906 |
msgid "go live again"
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: lib/wfu_constants.php:216
|
910 |
msgid "end recording"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: lib/wfu_constants.php:217
|
914 |
msgid "play"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: lib/wfu_constants.php:218
|
918 |
msgid "pause"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: lib/wfu_constants.php:219
|
922 |
msgid "go to the beginning"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: lib/wfu_constants.php:220
|
926 |
msgid "go to the end"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: lib/wfu_constants.php:222
|
930 |
msgid "Wordpress File Upload Form"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: lib/wfu_constants.php:223
|
934 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: lib/wfu_constants.php:224
|
938 |
msgid "Upload Files"
|
939 |
msgstr ""
|
lib/wfu_admin_browser.php
CHANGED
@@ -301,7 +301,6 @@ function wfu_current_user_owes_file($filepath) {
|
|
301 |
return wfu_user_owns_file($user->ID, $filerec);
|
302 |
}
|
303 |
|
304 |
-
|
305 |
function wfu_current_user_allowed_action($action, $filepath) {
|
306 |
//first get file data from database, if exist
|
307 |
$filerec = wfu_get_file_rec($filepath, false);
|
@@ -708,8 +707,8 @@ function wfu_file_details($file_code, $errorstatus) {
|
|
708 |
$filedata = wfu_get_file_rec($filepath, true);
|
709 |
if ( $filedata == null ) return;
|
710 |
|
711 |
-
//get
|
712 |
-
$
|
713 |
|
714 |
//extract sort info and construct contained dir
|
715 |
$parts = pathinfo($filepath);
|
@@ -750,7 +749,15 @@ function wfu_file_details($file_code, $errorstatus) {
|
|
750 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<label>Uploaded By User</label>';
|
751 |
$echo_str .= "\n\t\t\t\t\t\t".'</th>';
|
752 |
$echo_str .= "\n\t\t\t\t\t\t".'<td>';
|
753 |
-
$echo_str .= "\n\t\t\t\t\t\t\t".'<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
$echo_str .= "\n\t\t\t\t\t\t".'</td>';
|
755 |
$echo_str .= "\n\t\t\t\t\t".'</tr>';
|
756 |
}
|
@@ -828,6 +835,8 @@ function wfu_file_details($file_code, $errorstatus) {
|
|
828 |
$rep .= 'File deleted by user <strong>'.$username.'</strong>';
|
829 |
elseif ( $filerec->action == 'modify' )
|
830 |
$rep .= 'File userdata modified by user <strong>'.$username.'</strong>';
|
|
|
|
|
831 |
}
|
832 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<div style="border:1px solid #dfdfdf; border-radius:3px; width:50%; overflow:scroll; padding:6px; height:100px; background-color:#eee;">';
|
833 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<span style="white-space:nowrap;">'.$rep.'</span>';
|
@@ -947,6 +956,9 @@ function wfu_edit_filedetails($file_code) {
|
|
947 |
}
|
948 |
if ( $userdata_count > 0 ) wfu_log_action('modify:'.$now_date, $dec_file, $user->ID, '', 0, 0, '', null);
|
949 |
}
|
|
|
|
|
|
|
950 |
}
|
951 |
}
|
952 |
return true;
|
301 |
return wfu_user_owns_file($user->ID, $filerec);
|
302 |
}
|
303 |
|
|
|
304 |
function wfu_current_user_allowed_action($action, $filepath) {
|
305 |
//first get file data from database, if exist
|
306 |
$filerec = wfu_get_file_rec($filepath, false);
|
707 |
$filedata = wfu_get_file_rec($filepath, true);
|
708 |
if ( $filedata == null ) return;
|
709 |
|
710 |
+
//get all users
|
711 |
+
$users = get_users();
|
712 |
|
713 |
//extract sort info and construct contained dir
|
714 |
$parts = pathinfo($filepath);
|
749 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<label>Uploaded By User</label>';
|
750 |
$echo_str .= "\n\t\t\t\t\t\t".'</th>';
|
751 |
$echo_str .= "\n\t\t\t\t\t\t".'<td>';
|
752 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'<select id="wfu_filedetails_users" disabled="disabled">';
|
753 |
+
foreach ( $users as $userid => $user )
|
754 |
+
$echo_str .= "\n\t\t\t\t\t\t\t\t".'<option value="'.$user->ID.'"'.( $filedata->uploaduserid == $user->ID ? ' selected="selected"' : '' ).'>'.$user->display_name.' ('.$user->user_login.')</option>';
|
755 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'</select>';
|
756 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'<a class="button" id="btn_change" href="" onclick="document.getElementById(\'wfu_filedetails_users\').disabled = false; this.style.display = \'none\'; document.getElementById(\'btn_ok\').style.display = \'inline-block\'; document.getElementById(\'btn_cancel\').style.display = \'inline-block\'; return false;"'.( $is_admin ? '' : ' style="display:none;"' ).'>Change User</a>';
|
757 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'<a class="button" id="btn_ok" href="" onclick="document.getElementById(\'wfu_filedetails_users\').disabled = true; document.getElementById(\'btn_change\').style.display = \'inline-block\'; this.style.display=\'none\'; document.getElementById(\'btn_cancel\').style.display = \'none\'; document.getElementById(\'wfu_filedetails_userid\').value = document.getElementById(\'wfu_filedetails_users\').value; wfu_filedetails_changed(); return false;" style="display:none;">Ok</a>';
|
758 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'<a class="button" id="btn_cancel" href="" onclick="document.getElementById(\'wfu_filedetails_users\').disabled = true; document.getElementById(\'btn_change\').style.display = \'inline-block\'; this.style.display=\'none\'; document.getElementById(\'btn_ok\').style.display = \'none\'; document.getElementById(\'wfu_filedetails_users\').value = document.getElementById(\'wfu_filedetails_userid\').value; return false;" style="display:none;">Cancel</a>';
|
759 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'<input type="hidden" id="wfu_filedetails_userid" name="wfu_filedetails_userid" value="'.$filedata->uploaduserid.'" />';
|
760 |
+
$echo_str .= "\n\t\t\t\t\t\t\t".'<input type="hidden" id="wfu_filedetails_userid_default" value="'.$filedata->uploaduserid.'" />';
|
761 |
$echo_str .= "\n\t\t\t\t\t\t".'</td>';
|
762 |
$echo_str .= "\n\t\t\t\t\t".'</tr>';
|
763 |
}
|
835 |
$rep .= 'File deleted by user <strong>'.$username.'</strong>';
|
836 |
elseif ( $filerec->action == 'modify' )
|
837 |
$rep .= 'File userdata modified by user <strong>'.$username.'</strong>';
|
838 |
+
elseif ( $filerec->action == 'changeuser' )
|
839 |
+
$rep .= 'File upload user modified by user <strong>'.$username.'</strong>';
|
840 |
}
|
841 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<div style="border:1px solid #dfdfdf; border-radius:3px; width:50%; overflow:scroll; padding:6px; height:100px; background-color:#eee;">';
|
842 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<span style="white-space:nowrap;">'.$rep.'</span>';
|
956 |
}
|
957 |
if ( $userdata_count > 0 ) wfu_log_action('modify:'.$now_date, $dec_file, $user->ID, '', 0, 0, '', null);
|
958 |
}
|
959 |
+
if ( $_POST['wfu_filedetails_userid'] != $filedata->uploaduserid ) {
|
960 |
+
wfu_log_action('changeuser:'.$_POST['wfu_filedetails_userid'], $dec_file, $user->ID, '', 0, 0, '', null);
|
961 |
+
}
|
962 |
}
|
963 |
}
|
964 |
return true;
|
lib/wfu_admin_log.php
CHANGED
@@ -66,12 +66,8 @@ function wfu_view_log($page = 1, $only_table_rows = false) {
|
|
66 |
if ( $filerec->action == 'delete' ) array_push($deletedfiles, $filerec->linkedto);
|
67 |
elseif ( $filerec->action == 'rename' ) {
|
68 |
$prevfilepath = '';
|
69 |
-
|
70 |
-
|
71 |
-
$prevfilepath = $prevfilerec->filepath;
|
72 |
-
break;
|
73 |
-
}
|
74 |
-
}
|
75 |
if ( $prevfilepath != '' )
|
76 |
$remarks = "\n\t\t\t\t\t\t".'<label>Previous filepath: '.$prevfilepath.'</label>';
|
77 |
}
|
@@ -90,6 +86,15 @@ function wfu_view_log($page = 1, $only_table_rows = false) {
|
|
90 |
$remarks .= "\n\t\t\t\t\t\t".'</select>';
|
91 |
}
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
elseif ( $filerec->action == 'other' ) {
|
94 |
$info = $filerec->filepath;
|
95 |
$filerec->filepath = '';
|
66 |
if ( $filerec->action == 'delete' ) array_push($deletedfiles, $filerec->linkedto);
|
67 |
elseif ( $filerec->action == 'rename' ) {
|
68 |
$prevfilepath = '';
|
69 |
+
$prevfilerec = wfu_get_file_rec_from_id($filerec->linkedto);
|
70 |
+
if ( $prevfilerec != null ) $prevfilepath = $prevfilerec->filepath;
|
|
|
|
|
|
|
|
|
71 |
if ( $prevfilepath != '' )
|
72 |
$remarks = "\n\t\t\t\t\t\t".'<label>Previous filepath: '.$prevfilepath.'</label>';
|
73 |
}
|
86 |
$remarks .= "\n\t\t\t\t\t\t".'</select>';
|
87 |
}
|
88 |
}
|
89 |
+
elseif ( $filerec->action == 'changeuser' ) {
|
90 |
+
$prevuploaduserid = '';
|
91 |
+
$prevfilerec = wfu_get_file_rec_from_id($filerec->linkedto);
|
92 |
+
if ( $prevfilerec != null ) $prevuploaduserid = $prevfilerec->uploaduserid;
|
93 |
+
if ( $prevuploaduserid != '' ) {
|
94 |
+
$prevuploaduser = wfu_get_username_by_id($prevuploaduserid);
|
95 |
+
$remarks = "\n\t\t\t\t\t\t".'<label>Previous upload user: '.$prevuploaduser.'</label>';
|
96 |
+
}
|
97 |
+
}
|
98 |
elseif ( $filerec->action == 'other' ) {
|
99 |
$info = $filerec->filepath;
|
100 |
$filerec->filepath = '';
|
lib/wfu_admin_maintenance.php
CHANGED
@@ -94,9 +94,11 @@ function wfu_clean_log() {
|
|
94 |
if ( isset($_POST['submit']) && $_POST['submit'] == "Yes" ) {
|
95 |
$table_name1 = $wpdb->prefix . "wfu_log";
|
96 |
$table_name2 = $wpdb->prefix . "wfu_userdata";
|
|
|
97 |
|
98 |
$count = $wpdb->query($wpdb->prepare("DELETE FROM ".$table_name1));
|
99 |
$count += $wpdb->query($wpdb->prepare("DELETE FROM ".$table_name2));
|
|
|
100 |
}
|
101 |
|
102 |
return $count;
|
94 |
if ( isset($_POST['submit']) && $_POST['submit'] == "Yes" ) {
|
95 |
$table_name1 = $wpdb->prefix . "wfu_log";
|
96 |
$table_name2 = $wpdb->prefix . "wfu_userdata";
|
97 |
+
$table_name3 = $wpdb->prefix . "wfu_dbxqueue";
|
98 |
|
99 |
$count = $wpdb->query($wpdb->prepare("DELETE FROM ".$table_name1));
|
100 |
$count += $wpdb->query($wpdb->prepare("DELETE FROM ".$table_name2));
|
101 |
+
$count += $wpdb->query($wpdb->prepare("DELETE FROM ".$table_name3));
|
102 |
}
|
103 |
|
104 |
return $count;
|
lib/wfu_ajaxactions.php
CHANGED
@@ -398,6 +398,10 @@ function wfu_ajax_action_download_file_invoker() {
|
|
398 |
$filepath = wfu_get_filepath_from_safe($file_code);
|
399 |
if ( $filepath === false ) die();
|
400 |
$filepath = wfu_path_rel2abs(wfu_flatten_path($filepath));
|
|
|
|
|
|
|
|
|
401 |
//for front-end browser apply wfu_browser_check_file_action filter to allow or restrict the download
|
402 |
if ( isset($_POST['browser']) ) {
|
403 |
$changable_data["error_message"] = "";
|
@@ -430,6 +434,11 @@ function wfu_ajax_action_download_file_invoker() {
|
|
430 |
//it will be used as security measure for the monitor script that will check download status
|
431 |
$_SESSION['wfu_download_monitor_ticket_'.$download_id] = time() + 30;
|
432 |
|
|
|
|
|
|
|
|
|
|
|
433 |
//this routine returns a dynamically created iframe element, that will call the actual download script;
|
434 |
//the actual download script runs outside Wordpress environment in order to ensure that no php warnings
|
435 |
//or echo from other plugins is generated, that could scramble the downloaded file;
|
398 |
$filepath = wfu_get_filepath_from_safe($file_code);
|
399 |
if ( $filepath === false ) die();
|
400 |
$filepath = wfu_path_rel2abs(wfu_flatten_path($filepath));
|
401 |
+
//reject download of blacklisted file types for security reasons
|
402 |
+
if ( wfu_file_extension_blacklisted($filepath) ) {
|
403 |
+
die('wfu_ajax_action_download_file_invoker:not_allowed:'.( isset($_POST['browser']) ? WFU_BROWSER_DOWNLOADFILE_NOTALLOWED : 'You are not allowed to download this file!' ));
|
404 |
+
}
|
405 |
//for front-end browser apply wfu_browser_check_file_action filter to allow or restrict the download
|
406 |
if ( isset($_POST['browser']) ) {
|
407 |
$changable_data["error_message"] = "";
|
434 |
//it will be used as security measure for the monitor script that will check download status
|
435 |
$_SESSION['wfu_download_monitor_ticket_'.$download_id] = time() + 30;
|
436 |
|
437 |
+
//store translatable strings to session so that they can be used by a script
|
438 |
+
//that runs outside Wordpress environment
|
439 |
+
$_SESSION['wfu_browser_downloadfile_notexist'] = ( isset($_POST['browser']) ? WFU_BROWSER_DOWNLOADFILE_NOTEXIST : 'File does not exist!' );
|
440 |
+
$_SESSION['wfu_browser_downloadfile_failed'] = ( isset($_POST['browser']) ? WFU_BROWSER_DOWNLOADFILE_FAILED : 'Could not download file!' );
|
441 |
+
|
442 |
//this routine returns a dynamically created iframe element, that will call the actual download script;
|
443 |
//the actual download script runs outside Wordpress environment in order to ensure that no php warnings
|
444 |
//or echo from other plugins is generated, that could scramble the downloaded file;
|
lib/wfu_constants.php
CHANGED
@@ -115,6 +115,9 @@ DEFINE("WFU_ERROR_CHUNKEDUPLOAD_CONCATFAILED", __("Chunked upload failed, final
|
|
115 |
DEFINE("WFU_ERROR_ADMIN_CHUNKWRITEFAILED", __("Could not write file chuck to destination on chunk %d", "wp-file-upload"));
|
116 |
DEFINE("WFU_ERROR_ADMIN_CHUNKENLARGEFAILED", __("Could not enlarge destination file on chunk %d", "wp-file-upload"));
|
117 |
DEFINE("WFU_ERROR_ADMIN_CHUNKHANDLEFAILED", __("Could not open file handles on chunk %d", "wp-file-upload"));
|
|
|
|
|
|
|
118 |
DEFINE("WFU_BROWSER_DELETEFILE_NOTALLOWED", __("You are not allowed to delete this file!", "wp-file-upload"));
|
119 |
DEFINE("WFU_BROWSER_DELETEFILE_FAILED", __("File was not deleted!", "wp-file-upload"));
|
120 |
DEFINE("WFU_BROWSER_DELETEFILES_ALLFAILED", __("No file was deleted!", "wp-file-upload"));
|
115 |
DEFINE("WFU_ERROR_ADMIN_CHUNKWRITEFAILED", __("Could not write file chuck to destination on chunk %d", "wp-file-upload"));
|
116 |
DEFINE("WFU_ERROR_ADMIN_CHUNKENLARGEFAILED", __("Could not enlarge destination file on chunk %d", "wp-file-upload"));
|
117 |
DEFINE("WFU_ERROR_ADMIN_CHUNKHANDLEFAILED", __("Could not open file handles on chunk %d", "wp-file-upload"));
|
118 |
+
DEFINE("WFU_BROWSER_DOWNLOADFILE_NOTALLOWED", __("You are not allowed to download this file!", "wp-file-upload"));
|
119 |
+
DEFINE("WFU_BROWSER_DOWNLOADFILE_NOTEXIST", __("File does not exist!", "wp-file-upload"));
|
120 |
+
DEFINE("WFU_BROWSER_DOWNLOADFILE_FAILED", __("Could not download file!", "wp-file-upload"));
|
121 |
DEFINE("WFU_BROWSER_DELETEFILE_NOTALLOWED", __("You are not allowed to delete this file!", "wp-file-upload"));
|
122 |
DEFINE("WFU_BROWSER_DELETEFILE_FAILED", __("File was not deleted!", "wp-file-upload"));
|
123 |
DEFINE("WFU_BROWSER_DELETEFILES_ALLFAILED", __("No file was deleted!", "wp-file-upload"));
|
lib/wfu_functions.php
CHANGED
@@ -1080,6 +1080,43 @@ function wfu_log_action($action, $filepath, $userid, $uploadid, $pageid, $blogid
|
|
1080 |
$retid = $wpdb->insert_id;
|
1081 |
}
|
1082 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1083 |
elseif ( substr($action, 0, 5) == 'other' ) {
|
1084 |
$info = substr($action, 6);
|
1085 |
$now_date = date('Y-m-d H:i:s');
|
@@ -1173,6 +1210,15 @@ function wfu_get_file_rec($filepath, $include_userdata) {
|
|
1173 |
return $filerec;
|
1174 |
}
|
1175 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1176 |
//reassign file hashes for all valid files in the database
|
1177 |
function wfu_reassign_hashes() {
|
1178 |
global $wpdb;
|
1080 |
$retid = $wpdb->insert_id;
|
1081 |
}
|
1082 |
}
|
1083 |
+
elseif ( substr($action, 0, 10) == 'changeuser' ) {
|
1084 |
+
$new_user = substr($action, 11);
|
1085 |
+
//get stored file data from database without user data
|
1086 |
+
$filerec = wfu_get_file_rec($filepath, false);
|
1087 |
+
//log action only if there are previous stored file data
|
1088 |
+
if ( $filerec != null ) {
|
1089 |
+
$now_date = date('Y-m-d H:i:s');
|
1090 |
+
//make previous record obsolete
|
1091 |
+
$wpdb->update($table_name1,
|
1092 |
+
array( 'date_to' => $now_date ),
|
1093 |
+
array( 'idlog' => $filerec->idlog ),
|
1094 |
+
array( '%s' ),
|
1095 |
+
array( '%d' )
|
1096 |
+
);
|
1097 |
+
//insert new modify record
|
1098 |
+
if ( $wpdb->insert($table_name1,
|
1099 |
+
array(
|
1100 |
+
'userid' => $userid,
|
1101 |
+
'uploaduserid' => $new_user,
|
1102 |
+
'uploadtime' => $filerec->uploadtime,
|
1103 |
+
'sessionid' => $filerec->sessionid,
|
1104 |
+
'filepath' => $filerec->filepath,
|
1105 |
+
'filehash' => $filerec->filehash,
|
1106 |
+
'filesize' => $filerec->filesize,
|
1107 |
+
'uploadid' => $filerec->uploadid,
|
1108 |
+
'pageid' => $filerec->pageid,
|
1109 |
+
'blogid' => $filerec->blogid,
|
1110 |
+
'sid' => $filerec->sid,
|
1111 |
+
'date_from' => $now_date,
|
1112 |
+
'date_to' => 0,
|
1113 |
+
'action' => 'changeuser',
|
1114 |
+
'linkedto' => $filerec->idlog
|
1115 |
+
),
|
1116 |
+
array( '%d', '%d', '%d', '%s', '%s', '%s', '%d', '%s', '%d', '%d', '%s', '%s', '%s', '%s', '%d' )) != false )
|
1117 |
+
$retid = $wpdb->insert_id;
|
1118 |
+
}
|
1119 |
+
}
|
1120 |
elseif ( substr($action, 0, 5) == 'other' ) {
|
1121 |
$info = substr($action, 6);
|
1122 |
$now_date = date('Y-m-d H:i:s');
|
1210 |
return $filerec;
|
1211 |
}
|
1212 |
|
1213 |
+
//get database record for id
|
1214 |
+
function wfu_get_file_rec_from_id($idlog) {
|
1215 |
+
global $wpdb;
|
1216 |
+
$table_name1 = $wpdb->prefix . "wfu_log";
|
1217 |
+
$filerec = $wpdb->get_row('SELECT * FROM '.$table_name1.' WHERE idlog = '.$idlog);
|
1218 |
+
|
1219 |
+
return $filerec;
|
1220 |
+
}
|
1221 |
+
|
1222 |
//reassign file hashes for all valid files in the database
|
1223 |
function wfu_reassign_hashes() {
|
1224 |
global $wpdb;
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: nickboss
|
|
3 |
Donate link: http://www.iptanus.com/support/wordpress-file-upload
|
4 |
Tags: ajax, captcha, filter, form, html5, notification, page, plugin, post, redirect, responsive, shortcode, sidebar, upload, widget
|
5 |
Requires at least: 2.9.2
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: "trunk"
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -48,11 +48,12 @@ The plugin is translated in the following languages:
|
|
48 |
* German
|
49 |
* French, kindly provided by Thomas Bastide of http://www.omicronn.fr/ and improved by other contributors
|
50 |
* Serbian, kindly provided by Andrijana Nikolic of http://webhostinggeeks.com/
|
51 |
-
* Polish
|
52 |
-
* Greek
|
53 |
* Dutch, kindly provided by Ruben Heynderycx
|
54 |
* Chinese, kindly provided by Yingjun Li
|
55 |
* Spanish, kindly provided by Marton
|
|
|
|
|
|
|
56 |
|
57 |
Please note that old desktop browsers or mobile browsers may not support all of the above functionalities. In order to get full functionality use the latest versions browsers, supporting HTML5, AJAX and CSS3.
|
58 |
|
@@ -138,6 +139,12 @@ There is an option in plugin's settings in Dashboard to relax the CSS rules, so
|
|
138 |
|
139 |
== Changelog ==
|
140 |
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
= 3.9.3 =
|
142 |
* added option to allow loading of plugin's styles and scripts on the front-end only for specific posts/pages through wfu_before_frontpage_scripts filter
|
143 |
* fixed bug where when uploading big files with identical filenames and 'maintain both' option, not all would be saved separately
|
@@ -623,6 +630,9 @@ Initial version.
|
|
623 |
|
624 |
== Upgrade Notice ==
|
625 |
|
|
|
|
|
|
|
626 |
= 3.9.3 =
|
627 |
Update to introduce some new features and fix some bugs.
|
628 |
|
3 |
Donate link: http://www.iptanus.com/support/wordpress-file-upload
|
4 |
Tags: ajax, captcha, filter, form, html5, notification, page, plugin, post, redirect, responsive, shortcode, sidebar, upload, widget
|
5 |
Requires at least: 2.9.2
|
6 |
+
Tested up to: 4.6.1
|
7 |
Stable tag: "trunk"
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
48 |
* German
|
49 |
* French, kindly provided by Thomas Bastide of http://www.omicronn.fr/ and improved by other contributors
|
50 |
* Serbian, kindly provided by Andrijana Nikolic of http://webhostinggeeks.com/
|
|
|
|
|
51 |
* Dutch, kindly provided by Ruben Heynderycx
|
52 |
* Chinese, kindly provided by Yingjun Li
|
53 |
* Spanish, kindly provided by Marton
|
54 |
+
* Italian, kindly provided by Enrico Marcolini https://www.marcuz.it/
|
55 |
+
* Polish
|
56 |
+
* Greek
|
57 |
|
58 |
Please note that old desktop browsers or mobile browsers may not support all of the above functionalities. In order to get full functionality use the latest versions browsers, supporting HTML5, AJAX and CSS3.
|
59 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 3.9.4 =
|
143 |
+
* added option to enable admin to change the upload user of a file
|
144 |
+
* code improvements and bug fixes related to file download feature
|
145 |
+
* code improvements related to clean database function
|
146 |
+
* added Italian translation
|
147 |
+
|
148 |
= 3.9.3 =
|
149 |
* added option to allow loading of plugin's styles and scripts on the front-end only for specific posts/pages through wfu_before_frontpage_scripts filter
|
150 |
* fixed bug where when uploading big files with identical filenames and 'maintain both' option, not all would be saved separately
|
630 |
|
631 |
== Upgrade Notice ==
|
632 |
|
633 |
+
= 3.9.4 =
|
634 |
+
Update to introduce some new features and fix some bugs.
|
635 |
+
|
636 |
= 3.9.3 =
|
637 |
Update to introduce some new features and fix some bugs.
|
638 |
|
release_notes.txt
CHANGED
@@ -1,3 +1 @@
|
|
1 |
-
<span><strong>Latest release notes: </strong>This is a regular release that introduces some new features and fixes some bugs. The
|
2 |
-
|
3 |
-
For more details about this version's changes please visit the Release Notes of the plugin's </span><a href="http://www.iptanus.com/wordpress-plugins/wordpress-file-upload/">support page</a><span>.</span>
|
1 |
+
<span><strong>Latest release notes: </strong>This is a regular release that introduces some new features and fixes some minor bugs. The most important new feature is that administrators can now change the upload user of a file. Furthermore, Italian translation was added, kindly provided by </span><a href="https://www.marcuz.it/">Enrico Marcolini</a><span>.</span><br /><br /><span>For more details about this version's changes please visit the Release Notes of the plugin's </span><a href="http://www.iptanus.com/wordpress-plugins/wordpress-file-upload/">support page</a><span>.</span>
|
|
|
|
wfu_file_downloader.php
CHANGED
@@ -34,15 +34,10 @@ function wfu_download_file() {
|
|
34 |
$disposition_name = wfu_basename($filepath);
|
35 |
$delete_file = false;
|
36 |
}
|
37 |
-
//reject download of php files for security reasons
|
38 |
-
if ( wfu_file_extension_blacklisted($filepath) ) {
|
39 |
-
$_SESSION['wfu_download_status_'.$ticket] = 'failed';
|
40 |
-
die('<script language="javascript">alert("Error! File is forbidden for security reasons.");</script>');
|
41 |
-
}
|
42 |
//check that file exists
|
43 |
if ( !file_exists($filepath) ) {
|
44 |
$_SESSION['wfu_download_status_'.$ticket] = 'failed';
|
45 |
-
die('<script language="javascript">alert("
|
46 |
}
|
47 |
//get mime type
|
48 |
|
@@ -80,7 +75,7 @@ function wfu_download_file() {
|
|
80 |
}
|
81 |
else {
|
82 |
$_SESSION['wfu_download_status_'.$ticket] = 'failed';
|
83 |
-
die('<script language="javascript">alert("
|
84 |
}
|
85 |
}
|
86 |
|
34 |
$disposition_name = wfu_basename($filepath);
|
35 |
$delete_file = false;
|
36 |
}
|
|
|
|
|
|
|
|
|
|
|
37 |
//check that file exists
|
38 |
if ( !file_exists($filepath) ) {
|
39 |
$_SESSION['wfu_download_status_'.$ticket] = 'failed';
|
40 |
+
die('<script language="javascript">alert("'.( isset($_SESSION['wfu_browser_downloadfile_notexist']) ? $_SESSION['wfu_browser_downloadfile_notexist'] : 'File does not exist!' ).'");</script>');
|
41 |
}
|
42 |
//get mime type
|
43 |
|
75 |
}
|
76 |
else {
|
77 |
$_SESSION['wfu_download_status_'.$ticket] = 'failed';
|
78 |
+
die('<script language="javascript">alert("'.( isset($_SESSION['wfu_browser_downloadfile_failed']) ? $_SESSION['wfu_browser_downloadfile_failed'] : 'Could not download file!' ).'");</script>');
|
79 |
}
|
80 |
}
|
81 |
|
wordpress_file_upload.php
CHANGED
@@ -4,7 +4,7 @@ if( !session_id() ) { session_start(); }
|
|
4 |
/*
|
5 |
Plugin URI: http://www.iptanus.com/support/wordpress-file-upload
|
6 |
Description: Simple interface to upload files from a page.
|
7 |
-
Version: 3.9.
|
8 |
Author: Nickolas Bossinas
|
9 |
Author URI: http://www.iptanus.com
|
10 |
*/
|
4 |
/*
|
5 |
Plugin URI: http://www.iptanus.com/support/wordpress-file-upload
|
6 |
Description: Simple interface to upload files from a page.
|
7 |
+
Version: 3.9.4
|
8 |
Author: Nickolas Bossinas
|
9 |
Author URI: http://www.iptanus.com
|
10 |
*/
|