Version Description
- added bulk actions feature in File Browser in Dashboard for admins
- added delete and include bulk actions in File Browser
- improvement of column sort functionality of File Browser
- added environment variable 'Use Alternative Randomizer' in order to make string randomizer function work for fast browsers
- uploadedbyuser and userid fields became int to cope with large user ID numbers on some Wordpress environments
Download this release
Release Info
Developer | nickboss |
Plugin | WordPress File Upload |
Version | 3.8.5 |
Comparing to | |
See all releases |
Code changes from version 3.8.4 to 3.8.5
- js/wordpress_file_upload_adminfunctions.js +3 -3
- languages/wp-file-upload-de_DE.mo +0 -0
- languages/wp-file-upload-de_DE.po +104 -80
- languages/wp-file-upload-el_GR.mo +0 -0
- languages/wp-file-upload-el_GR.po +104 -80
- languages/wp-file-upload-en_US.mo +0 -0
- languages/wp-file-upload-en_US.po +890 -866
- languages/wp-file-upload-fr_FR.mo +0 -0
- languages/wp-file-upload-fr_FR.po +104 -80
- languages/wp-file-upload-nl_NL.mo +0 -0
- languages/wp-file-upload-nl_NL.po +104 -80
- languages/wp-file-upload-pl_PL.mo +0 -0
- languages/wp-file-upload-pl_PL.po +104 -80
- languages/wp-file-upload-sr_RS.mo +0 -0
- languages/wp-file-upload-sr_RS.po +104 -80
- languages/wp-file-upload-zh_CN.mo +0 -0
- languages/wp-file-upload-zh_CN.po +104 -80
- languages/wp-file-upload.pot +104 -80
- lib/wfu_admin.php +35 -8
- lib/wfu_admin_browser.php +189 -43
- lib/wfu_admin_log.php +3 -1
- lib/wfu_ajaxactions.php +1 -1
- lib/wfu_constants.php +7 -0
- lib/wfu_functions.php +85 -13
- readme.txt +10 -0
- release_notes.txt +1 -1
- 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(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 i=document.querySelectorAll("div.wfu_component_box_container"),c={},s=0;s<i.length;s++)_=i[s].id.replace("wfu_component_box_container_",""),c[_]=0,o=document.querySelector("div#"+i[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):(c[_]++,t.id="wfu_component_box_"+_+"_"+(c[_]+1).toString(),t.style.display="block",o=document.querySelector("div#"+t.id+" div.wfu_component_box_index"),o.innerHTML=(c[_]+1).toString(),t=t.cloneNode(!0),r.appendChild(t),t.id="wfu_component_box_"+_+"_"+c[_].toString(),o=document.querySelector("div#"+t.id+" div.wfu_component_box_index"),o.innerHTML=c[_].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 i=document.getElementById("wfu_attribute_value_"+r);i||(i=document.createElement("INPUT"),i.id="wfu_attribute_value_"+r,i.type="hidden",i.value=s.value,document.getElementById("wfu_attribute_values").appendChild(i)),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",i.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 i=document.getElementsByName("wfu_subfolder_nav_"+a),c=0;c<i.length;c++)i[c].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 i=document.getElementsByName("wfu_subfolder_nav_"+e),c=0;c<i.length;c++)i[c].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),i=document.getElementById("wfu_subfolders_browser_ok_"+e),c=document.getElementById("wfu_subfolders_browser_list_"+e);c.options.length>0;)c.options.remove(0);i.disabled=!0,i.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:",i=e.target.responseText.indexOf(s);-1==i&&(i=e.target.responseText.length);var c=(e.target.responseText.substr(0,i),e.target.responseText.substr(i+s.length,e.target.responseText.length-i-s.length));i=c.indexOf(":");var f=c.substr(0,i);if(txt_value=c.substr(i+1,c.length-i-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 i=document.getElementsByName("wfu_subfolder_nav_"+e);if(l.selectedIndex<0||l.selectedIndex>=l.options.length-1)for(var c=0;c<i.length;c++)i[c].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 i=document.querySelectorAll("div#wfu_attribute_"+a+" .wfu_formdata_action_remove"),s=0;s<i.length;s++)i[s].className="wfu_formdata_action wfu_formdata_action_remove"+(i.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,i=window["wfu_attribute_"+a+"_typeprops"];u+="|t:"+s,u+="|s:"+document.getElementById("wfu_formfield_"+r+"_labelposition").value,"show"==i[s].required.substr(0,4)&&(u+="|r:"+(document.getElementById("wfu_formfield_"+r+"_required").checked?"1":"0")),"show"==i[s].donotautocomplete.substr(0,4)&&(u+="|a:"+(document.getElementById("wfu_formfield_"+r+"_donotautocomplete").checked?"1":"0")),"show"==i[s].validate.substr(0,4)&&(u+="|v:"+(document.getElementById("wfu_formfield_"+r+"_validate").checked?"1":"0")),"show"==i[s].typehook.substr(0,4)&&(u+="|h:"+(document.getElementById("wfu_formfield_"+r+"_typehook").checked?"1":"0")),"show"==i[s].hintposition.substr(0,4)&&(u+="|p:"+document.getElementById("wfu_formfield_"+r+"_hintposition").value),"show"==i[s]["default"].substr(0,4)&&(u+="|d:"+document.getElementById("wfu_formfield_"+r+"_default").value),"show"==i[s].data.substr(0,4)&&(u+="|l:"+document.getElementById("wfu_formfield_"+r+"_data").value),"show"==i[s].group.substr(0,4)&&(u+="|g:"+document.getElementById("wfu_formfield_"+r+"_group").value),"show"==i[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],i="custom"==s?"+-"+(""==_[2]?"s":_[2]):""!=_[2]?"-+"+_[2]:"",c=_[3];"custom"==s&&(s="custom1");var f=document.createElement("OPTION");f.value=s+":"+i+"/"+a.options[n].innerHTML+"/"+c,f.innerHTML=a.options[n].innerHTML+(""!=c&&c!=a.options[n].innerHTML?" ("+c+")":""),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 i=t.options[s].value.match(/(.*?):(.*?)\/(.*?)\/(.*)/),c=i[1],f="custom"==c.substr(0,6),m=f?c.substr(6):"",p=""!=i[2],w=p&&"+"==i[2].substr(1,1),g=w&&"+"==i[2].substr(0,1),v=w?i[2].substr(2):"",b=i[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],i="custom"==s.substr(0,6)?"custom":s,c="custom"==i,f=c?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=i+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 i=document.getElementById("wfu_attribute_p_"+e);i.value=_,wfu_update_ptext_value({target:s}),wfu_update_ptext_value({target:i})}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 c=a.split(","),u=0;u<c.length;u++)c[u]=c[u].trim();jQuery("#wfu_attribute_"+e+" input").each(function(){jQuery(this).prop("checked",c.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 L=document.createElement("OPTION");L.value=S+":"+q+"/"+T.options[u].innerHTML+"/"+O,L.innerHTML=T.options[u].innerHTML+(""!=O&&O!=T.options[u].innerHTML?" ("+O+")":""),L.className=T.options[u].className,L.onclick=T.options[u].onclick,A.appendChild(L)}}for(var C=a.split(","),u=0;u<C.length;u++){var M=C[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"),V=-1,y=0;y<T.options.length;y++){var P=T.options[y].value.replace(/:.*/,"");if(P==D){V=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&&V>-1&&!R){var o=T.options[V].value.match(/(.*?):(.*?)\/(.*)/),U="custom"==D||""!=o[2],q=o[2],Q=T.options[V].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 L=document.createElement("OPTION");L.value=S+":"+G+"/"+Q+"/"+j,L.innerHTML=Q+(O!=Q?" ("+O+")":""),L.className=T.options[V].className,L.onclick=T.options[u].onclick,A.appendChild(L)}}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(),ie={};for(prop in oe.text)ie[prop]=oe.text[prop];"*"==se.substr(0,1)&&(ie.required=!0,se=se.substr(1));var ce=se.split("|");if(""!=ce[0].trim()){for(var fe=-1,me="",y=0;y<ce.length;y++){var pe=ce[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])ie[prop]=oe[me][prop];ce.splice(fe,1)}ie.label=ce[0].trim(),ce.splice(0,1);for(var y=0;y<ce.length;y++){var pe=ce[y].replace(/^\s+/gm,""),we=pe.substr(0,2),$=pe.substr(2);"s:"==we?ie.labelposition=$:"r:"==we?ie.required="1"==$:"a:"==we?ie.donotautocomplete="1"==$:"v:"==we?ie.validate="1"==$:"d:"==we?ie["default"]=$:"l:"==we?ie.data=$:"g:"==we?ie.group=$:"f:"==we?ie.format=$:"p:"==we?ie.hintposition=$:"h:"==we&&(ie.typehook="1"==$)}Y.push(ie)}}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 c=wfu_parse_folderlist_js(a),Be=document.getElementById("wfu_attribute_"+e).options;Be.length>0;)Be.remove(0);for(var L,ke,xe,Ne,Te,Ae,u=0;u<c.path.length;u++){ke=c.path[u],"/"==ke.substr(ke.length,1)&&(ke=ke.substr(0,ke.length-1)),xe=ke.split("/"),ke=xe[xe.length-1],Te=parseInt(c.level[u]),Ne="",Ae="";for(var y=0;Te>y;y++)Ne+=" ",Ae+="*";Ne+=c.label[u],c["default"][u]&&(Ae+="&"),Ae+=""==ke?"{root}/"+c.label[u]:ke+c.label[u],L=document.createElement("option"),c["default"][u]?L.className="wfu_select_folders_option_default":L.className="",L.value=wfu_plugin_encode_string(Ae),L.innerHTML=Ne,Be.add(L)}L=document.createElement("option"),L.value="",L.innerHTML="",Be.add(L);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"],i=0,c=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-i&&(n>0||0==c)&&(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&&(c=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),i=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_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"),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 i=_[s].id.substr(16,_[s].id.length-20);wfu_update_browserpermission_option("role",i,!1)}if(a){var c=(d.checked?"v":"")+(u.checked?"d":"")+(o.checked?"e":"")+(r.checked?"l":"");n.value=n.value.replace(/^0\[\w*\]/,"0["+c+"]")}}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 c=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+"["+c+"]")}}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 c=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["+c+"]"+(""==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 c=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+"["+c+"]"}}}}}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)}}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(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)}})});
|
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"
|
@@ -304,7 +304,7 @@ msgstr ""
|
|
304 |
"Hochladen fehlgeschlagen! Es sind Fehler beim Versuch, die Datei hochzuladen "
|
305 |
"aufgetreten."
|
306 |
|
307 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
308 |
msgid "Upload failed!"
|
309 |
msgstr "Hochladen fehlgeschlagen!"
|
310 |
|
@@ -577,37 +577,49 @@ msgstr "Dateihandles konnte nicht geöffnet werden am chunk %d"
|
|
577 |
msgid "You are not allowed to delete this file!"
|
578 |
msgstr "Sie sind nicht berechtigt, diese Datei zu löschen!"
|
579 |
|
|
|
|
|
|
|
|
|
580 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
msgid "Upload skipped! File already exists."
|
582 |
msgstr "Hochladen abgebrochen! Datei ist bereits vorhanden."
|
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 "Keine Dateien ausgewählt!"
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
600 |
msgstr ""
|
601 |
"WPFilebase Plugin konnte nicht aktualisiert werden, da keine Dateien "
|
602 |
"hochgeladen wurden."
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "Notification email was not sent because there were no files uploaded."
|
606 |
msgstr ""
|
607 |
"Benachrichtigung per E-Mail wurde nicht gesendet, weil keine Dateien "
|
608 |
"hochgeladen worden sind."
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid ""
|
612 |
"Notification email was not sent because no recipients were defined. Please "
|
613 |
"check notifyrecipients attribute in the shortcode."
|
@@ -616,7 +628,7 @@ msgstr ""
|
|
616 |
"definiert wurde. Bitte überprüfen Sie das notifyrecipients-Attribut im "
|
617 |
"Shortcode."
|
618 |
|
619 |
-
#: lib/wfu_constants.php:
|
620 |
msgid ""
|
621 |
"Notification email was not sent due to an error. Please check "
|
622 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -624,7 +636,7 @@ msgstr ""
|
|
624 |
"E-Mail-Benachrichtigung wurde wegen eines Fehlers nicht gesendet. Bitte "
|
625 |
"überprüfen Sie das notifysubject und das notifymessage Attribut auf Fehler."
|
626 |
|
627 |
-
#: lib/wfu_constants.php:
|
628 |
msgid ""
|
629 |
"Redirection not executed because redirection link is empty. Please check "
|
630 |
"redirectlink attribute."
|
@@ -632,14 +644,14 @@ msgstr ""
|
|
632 |
"Umleitung nicht ausgeführt, da der Umleitungs-Link leer ist. Bitte "
|
633 |
"überprüfen Sie das redirectlink Attribut."
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid ""
|
637 |
"Redirection not executed because not all files were successfully uploaded."
|
638 |
msgstr ""
|
639 |
"Umleitung nicht ausgeführt, da nicht alle Dateien erfolgreich hochgeladen "
|
640 |
"wurden."
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid ""
|
644 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
645 |
"message persists, contact administrator."
|
@@ -648,7 +660,7 @@ msgstr ""
|
|
648 |
"versuche es erneut. Wenn die Meldung weiterhin, wenden Sie sich "
|
649 |
"Administrator."
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid ""
|
653 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
654 |
"again to edit the shortcode."
|
@@ -656,7 +668,7 @@ msgstr ""
|
|
656 |
"Der Shortcode konnte nicht bearbeitet, da sich der Inhalt der Seite geändert "
|
657 |
"hat. Versuchen Sie erneut den Shortcode zu bearbeiten."
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid ""
|
661 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
662 |
"again to delete it."
|
@@ -664,7 +676,7 @@ msgstr ""
|
|
664 |
"Der Shortcode konnte nicht gelöscht werden, da sich der Inhalt der Seite "
|
665 |
"geändert hat. Versuchen Sie erneut den Shortcode zu löschen."
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid ""
|
669 |
"The page containing the shortcode has been modified and it is no longer "
|
670 |
"valid. Please go back to reload the shortcode."
|
@@ -672,7 +684,7 @@ msgstr ""
|
|
672 |
"Die Seite mit dem Shortcode wurde modifiziert und ist nicht mehr gültig. "
|
673 |
"Bitte gehen Sie zurück um zu den Shortcode zu laden."
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid ""
|
677 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
678 |
"back to reload the shortcode."
|
@@ -680,7 +692,7 @@ msgstr ""
|
|
680 |
"Der Shortcode konnte nicht aktualisiert werden, da sich der Inhalt der Seite "
|
681 |
"geändert geändert hat. Gehen Sie zurück um zu den Shortcode neu zu laden."
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid ""
|
685 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
686 |
"go back and reload the shortcode."
|
@@ -689,39 +701,39 @@ msgstr ""
|
|
689 |
"Wenn das Problem weiterhin besteht, gehen Sie zurück und laden Sie den "
|
690 |
"Shortcode neu."
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid "This is a test message"
|
694 |
msgstr "This is a test message"
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid "This is a test administrator message"
|
698 |
msgstr "Dies ist eine Test-Admin-Nachricht"
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid "File testfile 1 under test"
|
702 |
msgstr "Datei testfile 1 wird getestet"
|
703 |
|
704 |
-
#: lib/wfu_constants.php:
|
705 |
msgid "File testfile 1 message"
|
706 |
msgstr "Datei testfile 1 Nachricht"
|
707 |
|
708 |
-
#: lib/wfu_constants.php:
|
709 |
msgid "File testfile 1 administrator message"
|
710 |
msgstr "Datei testfile 1 Admin-Nachricht"
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid "File testfile 2 under test"
|
714 |
msgstr "File testfile 2 wird getestet"
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid "File testfile 2 message"
|
718 |
msgstr "Datei testfile 2 Nachricht"
|
719 |
|
720 |
-
#: lib/wfu_constants.php:
|
721 |
msgid "File testfile 2 administrator message"
|
722 |
msgstr "Datei testfile 2 Admin-Nachricht"
|
723 |
|
724 |
-
#: lib/wfu_constants.php:
|
725 |
msgid ""
|
726 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
727 |
"current user."
|
@@ -729,7 +741,7 @@ msgstr ""
|
|
729 |
"Fügen Sie die Variable %userid% in den Text ein. Sie wird durch die ID des "
|
730 |
"aktuellen Benutzers ersetzt."
|
731 |
|
732 |
-
#: lib/wfu_constants.php:
|
733 |
msgid ""
|
734 |
"Insert variable %username% inside text. It will be replaced by the username "
|
735 |
"of the current user."
|
@@ -737,7 +749,7 @@ msgstr ""
|
|
737 |
"Fügen Sie die Variable %username% in den Text ein. Sie wird durch den "
|
738 |
"Benutzernamen des aktuellen Benutzers ersetzt."
|
739 |
|
740 |
-
#: lib/wfu_constants.php:
|
741 |
msgid ""
|
742 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
743 |
"the current user."
|
@@ -745,7 +757,7 @@ msgstr ""
|
|
745 |
"Fügen Sie die Variable %useremail% in den Text ein. Sie wird durch die E-"
|
746 |
"Mail-Adresse des aktuellen Benutzers ersetzt."
|
747 |
|
748 |
-
#: lib/wfu_constants.php:
|
749 |
msgid ""
|
750 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
751 |
"of the uploaded file."
|
@@ -753,7 +765,7 @@ msgstr ""
|
|
753 |
"Fügen Sie die Variable %filename% in den Text. Sie wird durch den Dateinamen "
|
754 |
"der hochgeladenen Dateien ersetzt."
|
755 |
|
756 |
-
#: lib/wfu_constants.php:
|
757 |
msgid ""
|
758 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
759 |
"filepath of the uploaded file."
|
@@ -761,7 +773,7 @@ msgstr ""
|
|
761 |
"Fügen Sie die Variable %filepath% in den Text ein. Sie wird durch die "
|
762 |
"vollständige Dateipfad der hochgeladenen Dateien ersetzt."
|
763 |
|
764 |
-
#: lib/wfu_constants.php:
|
765 |
msgid ""
|
766 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
767 |
"the website."
|
@@ -769,7 +781,7 @@ msgstr ""
|
|
769 |
"Fügen Sie die Variable %blogid% in den Text ein. Sie wird durch die Blog-ID "
|
770 |
"der Website ersetzt werden."
|
771 |
|
772 |
-
#: lib/wfu_constants.php:
|
773 |
msgid ""
|
774 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
775 |
"current page."
|
@@ -777,7 +789,7 @@ msgstr ""
|
|
777 |
"Fügen Sie die Variable %pageid% in den Text ein. Sie wird durch die ID der "
|
778 |
"aktuellen Seite ersetzt."
|
779 |
|
780 |
-
#: lib/wfu_constants.php:
|
781 |
msgid ""
|
782 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
783 |
"the current page."
|
@@ -785,7 +797,7 @@ msgstr ""
|
|
785 |
"Fügen Sie die Variable %pagetitle% in den Text ein. Sie wird durch dden "
|
786 |
"Title des aktuellen Benutzers ersetzt."
|
787 |
|
788 |
-
#: lib/wfu_constants.php:
|
789 |
msgid ""
|
790 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
791 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -795,187 +807,199 @@ msgstr ""
|
|
795 |
"Feld \"Benutzer\" aus der Dropdown Liste. Die Variable wird durch den Wert "
|
796 |
"ersetzt, die der Benutzer in dieses Feld eingetragen hat."
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid "Insert variable %n% inside text to denote a line change."
|
800 |
msgstr ""
|
801 |
"Fügen Sie die Variable %n% in den Text ein, um eine Änderung der Zeile zu "
|
802 |
"kennzeichnen."
|
803 |
|
804 |
-
#: lib/wfu_constants.php:
|
805 |
msgid "Test Mode"
|
806 |
msgstr "Test Modus"
|
807 |
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
msgid "select dir..."
|
810 |
msgstr "Wählen Sie das Verzeichnis ..."
|
811 |
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
msgid "type dir"
|
814 |
msgstr "Geben Sie das Verzeichnis ein"
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid "Upload path: %filepath%"
|
818 |
msgstr "Upload-Pfad: %filepath%"
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "Failed upload path: %filepath%"
|
822 |
msgstr "Fehlerhafter Upload-Pfad: %filepath%"
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid " (required)"
|
826 |
msgstr "(erforderlich)"
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
830 |
msgstr ""
|
831 |
"Dateien werden hochgeladen wird. Sind Sie sicher, dass Sie die Seite "
|
832 |
"verlassen wollen?"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "checking captcha..."
|
836 |
msgstr "Prüfung captcha..."
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "refreshing..."
|
840 |
msgstr "erfrischend..."
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "correct captcha"
|
844 |
msgstr "korrekte captcha"
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "click to continue the upload"
|
848 |
msgstr "Klicken Sie, um das Hochladen fortsetzen"
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "Are you sure you want to delete this file?"
|
852 |
msgstr "Sind sie sicher, das sie diese datei löschen wollen?"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
855 |
msgid "Are you sure that you want to cancel the upload?"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "cancel upload of this file"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid "Upload in progress"
|
864 |
msgstr "Upload läuft"
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "Upload in progress with warnings!"
|
868 |
msgstr "Upload läuft mit Warnhinweisen!"
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid "Upload in progress but some files already failed!"
|
872 |
msgstr "Upload läuft, aber einige Dateien bereits gescheitert!"
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid "Upload in progress but no files uploaded so far!"
|
876 |
msgstr "Upload läuft aber keine Dateien hochgeladen bis jetzt!"
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid "All files uploaded successfully"
|
880 |
msgstr "Alle Dateien erfolgreich hochgeladen"
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid "All files uploaded successfully but there are warnings!"
|
884 |
msgstr "Alle Dateien erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid "File uploaded successfully but there are warnings!"
|
888 |
msgstr "Datei erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid "Some files failed to upload!"
|
892 |
msgstr "Einige Dateien konnten nicht hochgeladen werden!"
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid "All files failed to upload"
|
896 |
msgstr "Alle Dateien konnten nicht hochgeladen werden"
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid "File failed to upload"
|
900 |
msgstr "Datei konnte nicht hochgeladen werden"
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid "There are no files to upload!"
|
904 |
msgstr "Es gibt keine Dateien zum Hochladen!"
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid "Test upload message"
|
908 |
msgstr "Test-Upload-Nachricht"
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid "JSON parse warning!"
|
912 |
msgstr "JSON parse Warnung!"
|
913 |
|
914 |
-
#: lib/wfu_constants.php:
|
915 |
msgid "please wait while redirecting..."
|
916 |
msgstr "Bitte warten Sie, Sie werden umgeleitet ..."
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid "Open visual shortcode editor in new window"
|
920 |
msgstr "Offenen des visuellen Shortcode-Editor in neuem Fenster"
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "loading visual editor"
|
924 |
msgstr "visueller Editor laden"
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "Clear file list?"
|
928 |
msgstr "Klar Dateiliste?"
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "DROP HERE"
|
932 |
msgstr "HIER ABLEGEN"
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "record video"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "take a picture"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "turn webcam on/off"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "go live again"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "end recording"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "play"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "pause"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "go to the beginning"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "go to the end"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "Wordpress File Upload Form"
|
972 |
msgstr "Wordpress Datei Upload Formular"
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
976 |
msgstr "Wordpress Datei Upload Plugin Uploader für Seitenleisten"
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "Upload Files"
|
980 |
msgstr "Dateien hochladen"
|
981 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-05 23:57+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-05 23:58+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: de_DE\n"
|
304 |
"Hochladen fehlgeschlagen! Es sind Fehler beim Versuch, die Datei hochzuladen "
|
305 |
"aufgetreten."
|
306 |
|
307 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
308 |
msgid "Upload failed!"
|
309 |
msgstr "Hochladen fehlgeschlagen!"
|
310 |
|
577 |
msgid "You are not allowed to delete this file!"
|
578 |
msgstr "Sie sind nicht berechtigt, diese Datei zu löschen!"
|
579 |
|
580 |
+
#: lib/wfu_constants.php:126
|
581 |
+
msgid "File was not deleted!"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
#: lib/wfu_constants.php:127
|
585 |
+
msgid "No file was deleted!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: lib/wfu_constants.php:128
|
589 |
+
msgid "Some files were not deleted!"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: lib/wfu_constants.php:130
|
593 |
msgid "Upload skipped! File already exists."
|
594 |
msgstr "Hochladen abgebrochen! Datei ist bereits vorhanden."
|
595 |
|
596 |
+
#: lib/wfu_constants.php:131
|
597 |
msgid "The extension of the file does not match its contents."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: lib/wfu_constants.php:132
|
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:133
|
607 |
msgid "No files have been selected!"
|
608 |
msgstr "Keine Dateien ausgewählt!"
|
609 |
|
610 |
+
#: lib/wfu_constants.php:134
|
611 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
612 |
msgstr ""
|
613 |
"WPFilebase Plugin konnte nicht aktualisiert werden, da keine Dateien "
|
614 |
"hochgeladen wurden."
|
615 |
|
616 |
+
#: lib/wfu_constants.php:135
|
617 |
msgid "Notification email was not sent because there were no files uploaded."
|
618 |
msgstr ""
|
619 |
"Benachrichtigung per E-Mail wurde nicht gesendet, weil keine Dateien "
|
620 |
"hochgeladen worden sind."
|
621 |
|
622 |
+
#: lib/wfu_constants.php:136
|
623 |
msgid ""
|
624 |
"Notification email was not sent because no recipients were defined. Please "
|
625 |
"check notifyrecipients attribute in the shortcode."
|
628 |
"definiert wurde. Bitte überprüfen Sie das notifyrecipients-Attribut im "
|
629 |
"Shortcode."
|
630 |
|
631 |
+
#: lib/wfu_constants.php:137
|
632 |
msgid ""
|
633 |
"Notification email was not sent due to an error. Please check "
|
634 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
636 |
"E-Mail-Benachrichtigung wurde wegen eines Fehlers nicht gesendet. Bitte "
|
637 |
"überprüfen Sie das notifysubject und das notifymessage Attribut auf Fehler."
|
638 |
|
639 |
+
#: lib/wfu_constants.php:138
|
640 |
msgid ""
|
641 |
"Redirection not executed because redirection link is empty. Please check "
|
642 |
"redirectlink attribute."
|
644 |
"Umleitung nicht ausgeführt, da der Umleitungs-Link leer ist. Bitte "
|
645 |
"überprüfen Sie das redirectlink Attribut."
|
646 |
|
647 |
+
#: lib/wfu_constants.php:139
|
648 |
msgid ""
|
649 |
"Redirection not executed because not all files were successfully uploaded."
|
650 |
msgstr ""
|
651 |
"Umleitung nicht ausgeführt, da nicht alle Dateien erfolgreich hochgeladen "
|
652 |
"wurden."
|
653 |
|
654 |
+
#: lib/wfu_constants.php:141
|
655 |
msgid ""
|
656 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
657 |
"message persists, contact administrator."
|
660 |
"versuche es erneut. Wenn die Meldung weiterhin, wenden Sie sich "
|
661 |
"Administrator."
|
662 |
|
663 |
+
#: lib/wfu_constants.php:142
|
664 |
msgid ""
|
665 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
666 |
"again to edit the shortcode."
|
668 |
"Der Shortcode konnte nicht bearbeitet, da sich der Inhalt der Seite geändert "
|
669 |
"hat. Versuchen Sie erneut den Shortcode zu bearbeiten."
|
670 |
|
671 |
+
#: lib/wfu_constants.php:143
|
672 |
msgid ""
|
673 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
674 |
"again to delete it."
|
676 |
"Der Shortcode konnte nicht gelöscht werden, da sich der Inhalt der Seite "
|
677 |
"geändert hat. Versuchen Sie erneut den Shortcode zu löschen."
|
678 |
|
679 |
+
#: lib/wfu_constants.php:144
|
680 |
msgid ""
|
681 |
"The page containing the shortcode has been modified and it is no longer "
|
682 |
"valid. Please go back to reload the shortcode."
|
684 |
"Die Seite mit dem Shortcode wurde modifiziert und ist nicht mehr gültig. "
|
685 |
"Bitte gehen Sie zurück um zu den Shortcode zu laden."
|
686 |
|
687 |
+
#: lib/wfu_constants.php:145
|
688 |
msgid ""
|
689 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
690 |
"back to reload the shortcode."
|
692 |
"Der Shortcode konnte nicht aktualisiert werden, da sich der Inhalt der Seite "
|
693 |
"geändert geändert hat. Gehen Sie zurück um zu den Shortcode neu zu laden."
|
694 |
|
695 |
+
#: lib/wfu_constants.php:146
|
696 |
msgid ""
|
697 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
698 |
"go back and reload the shortcode."
|
701 |
"Wenn das Problem weiterhin besteht, gehen Sie zurück und laden Sie den "
|
702 |
"Shortcode neu."
|
703 |
|
704 |
+
#: lib/wfu_constants.php:148
|
705 |
msgid "This is a test message"
|
706 |
msgstr "This is a test message"
|
707 |
|
708 |
+
#: lib/wfu_constants.php:149
|
709 |
msgid "This is a test administrator message"
|
710 |
msgstr "Dies ist eine Test-Admin-Nachricht"
|
711 |
|
712 |
+
#: lib/wfu_constants.php:150
|
713 |
msgid "File testfile 1 under test"
|
714 |
msgstr "Datei testfile 1 wird getestet"
|
715 |
|
716 |
+
#: lib/wfu_constants.php:151
|
717 |
msgid "File testfile 1 message"
|
718 |
msgstr "Datei testfile 1 Nachricht"
|
719 |
|
720 |
+
#: lib/wfu_constants.php:152
|
721 |
msgid "File testfile 1 administrator message"
|
722 |
msgstr "Datei testfile 1 Admin-Nachricht"
|
723 |
|
724 |
+
#: lib/wfu_constants.php:153
|
725 |
msgid "File testfile 2 under test"
|
726 |
msgstr "File testfile 2 wird getestet"
|
727 |
|
728 |
+
#: lib/wfu_constants.php:154
|
729 |
msgid "File testfile 2 message"
|
730 |
msgstr "Datei testfile 2 Nachricht"
|
731 |
|
732 |
+
#: lib/wfu_constants.php:155
|
733 |
msgid "File testfile 2 administrator message"
|
734 |
msgstr "Datei testfile 2 Admin-Nachricht"
|
735 |
|
736 |
+
#: lib/wfu_constants.php:157
|
737 |
msgid ""
|
738 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
739 |
"current user."
|
741 |
"Fügen Sie die Variable %userid% in den Text ein. Sie wird durch die ID des "
|
742 |
"aktuellen Benutzers ersetzt."
|
743 |
|
744 |
+
#: lib/wfu_constants.php:158
|
745 |
msgid ""
|
746 |
"Insert variable %username% inside text. It will be replaced by the username "
|
747 |
"of the current user."
|
749 |
"Fügen Sie die Variable %username% in den Text ein. Sie wird durch den "
|
750 |
"Benutzernamen des aktuellen Benutzers ersetzt."
|
751 |
|
752 |
+
#: lib/wfu_constants.php:159
|
753 |
msgid ""
|
754 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
755 |
"the current user."
|
757 |
"Fügen Sie die Variable %useremail% in den Text ein. Sie wird durch die E-"
|
758 |
"Mail-Adresse des aktuellen Benutzers ersetzt."
|
759 |
|
760 |
+
#: lib/wfu_constants.php:160
|
761 |
msgid ""
|
762 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
763 |
"of the uploaded file."
|
765 |
"Fügen Sie die Variable %filename% in den Text. Sie wird durch den Dateinamen "
|
766 |
"der hochgeladenen Dateien ersetzt."
|
767 |
|
768 |
+
#: lib/wfu_constants.php:161
|
769 |
msgid ""
|
770 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
771 |
"filepath of the uploaded file."
|
773 |
"Fügen Sie die Variable %filepath% in den Text ein. Sie wird durch die "
|
774 |
"vollständige Dateipfad der hochgeladenen Dateien ersetzt."
|
775 |
|
776 |
+
#: lib/wfu_constants.php:162
|
777 |
msgid ""
|
778 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
779 |
"the website."
|
781 |
"Fügen Sie die Variable %blogid% in den Text ein. Sie wird durch die Blog-ID "
|
782 |
"der Website ersetzt werden."
|
783 |
|
784 |
+
#: lib/wfu_constants.php:163
|
785 |
msgid ""
|
786 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
787 |
"current page."
|
789 |
"Fügen Sie die Variable %pageid% in den Text ein. Sie wird durch die ID der "
|
790 |
"aktuellen Seite ersetzt."
|
791 |
|
792 |
+
#: lib/wfu_constants.php:164
|
793 |
msgid ""
|
794 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
795 |
"the current page."
|
797 |
"Fügen Sie die Variable %pagetitle% in den Text ein. Sie wird durch dden "
|
798 |
"Title des aktuellen Benutzers ersetzt."
|
799 |
|
800 |
+
#: lib/wfu_constants.php:165
|
801 |
msgid ""
|
802 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
803 |
"drop-down list. It will be replaced by the value that the user entered in "
|
807 |
"Feld \"Benutzer\" aus der Dropdown Liste. Die Variable wird durch den Wert "
|
808 |
"ersetzt, die der Benutzer in dieses Feld eingetragen hat."
|
809 |
|
810 |
+
#: lib/wfu_constants.php:166
|
811 |
msgid "Insert variable %n% inside text to denote a line change."
|
812 |
msgstr ""
|
813 |
"Fügen Sie die Variable %n% in den Text ein, um eine Änderung der Zeile zu "
|
814 |
"kennzeichnen."
|
815 |
|
816 |
+
#: lib/wfu_constants.php:168
|
817 |
msgid "Test Mode"
|
818 |
msgstr "Test Modus"
|
819 |
|
820 |
+
#: lib/wfu_constants.php:169
|
821 |
msgid "select dir..."
|
822 |
msgstr "Wählen Sie das Verzeichnis ..."
|
823 |
|
824 |
+
#: lib/wfu_constants.php:170
|
825 |
msgid "type dir"
|
826 |
msgstr "Geben Sie das Verzeichnis ein"
|
827 |
|
828 |
+
#: lib/wfu_constants.php:171
|
829 |
msgid "Upload path: %filepath%"
|
830 |
msgstr "Upload-Pfad: %filepath%"
|
831 |
|
832 |
+
#: lib/wfu_constants.php:172
|
833 |
msgid "Failed upload path: %filepath%"
|
834 |
msgstr "Fehlerhafter Upload-Pfad: %filepath%"
|
835 |
|
836 |
+
#: lib/wfu_constants.php:173
|
837 |
msgid " (required)"
|
838 |
msgstr "(erforderlich)"
|
839 |
|
840 |
+
#: lib/wfu_constants.php:174
|
841 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
842 |
msgstr ""
|
843 |
"Dateien werden hochgeladen wird. Sind Sie sicher, dass Sie die Seite "
|
844 |
"verlassen wollen?"
|
845 |
|
846 |
+
#: lib/wfu_constants.php:175
|
847 |
msgid "checking captcha..."
|
848 |
msgstr "Prüfung captcha..."
|
849 |
|
850 |
+
#: lib/wfu_constants.php:176
|
851 |
msgid "refreshing..."
|
852 |
msgstr "erfrischend..."
|
853 |
|
854 |
+
#: lib/wfu_constants.php:177
|
855 |
msgid "correct captcha"
|
856 |
msgstr "korrekte captcha"
|
857 |
|
858 |
+
#: lib/wfu_constants.php:178
|
859 |
msgid "click to continue the upload"
|
860 |
msgstr "Klicken Sie, um das Hochladen fortsetzen"
|
861 |
|
862 |
+
#: lib/wfu_constants.php:179
|
863 |
msgid "Are you sure you want to delete this file?"
|
864 |
msgstr "Sind sie sicher, das sie diese datei löschen wollen?"
|
865 |
|
866 |
+
#: lib/wfu_constants.php:180
|
867 |
+
msgid "Are you sure you want to delete these files?"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: lib/wfu_constants.php:181
|
871 |
+
msgid "Bulk Actions"
|
872 |
+
msgstr ""
|
873 |
+
|
874 |
+
#: lib/wfu_constants.php:182
|
875 |
+
msgid "Apply"
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: lib/wfu_constants.php:183
|
879 |
msgid "Are you sure that you want to cancel the upload?"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: lib/wfu_constants.php:184
|
883 |
msgid "cancel upload of this file"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: lib/wfu_constants.php:185
|
887 |
msgid "Upload in progress"
|
888 |
msgstr "Upload läuft"
|
889 |
|
890 |
+
#: lib/wfu_constants.php:186
|
891 |
msgid "Upload in progress with warnings!"
|
892 |
msgstr "Upload läuft mit Warnhinweisen!"
|
893 |
|
894 |
+
#: lib/wfu_constants.php:187
|
895 |
msgid "Upload in progress but some files already failed!"
|
896 |
msgstr "Upload läuft, aber einige Dateien bereits gescheitert!"
|
897 |
|
898 |
+
#: lib/wfu_constants.php:188
|
899 |
msgid "Upload in progress but no files uploaded so far!"
|
900 |
msgstr "Upload läuft aber keine Dateien hochgeladen bis jetzt!"
|
901 |
|
902 |
+
#: lib/wfu_constants.php:189
|
903 |
msgid "All files uploaded successfully"
|
904 |
msgstr "Alle Dateien erfolgreich hochgeladen"
|
905 |
|
906 |
+
#: lib/wfu_constants.php:190
|
907 |
msgid "All files uploaded successfully but there are warnings!"
|
908 |
msgstr "Alle Dateien erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
909 |
|
910 |
+
#: lib/wfu_constants.php:191
|
911 |
msgid "File uploaded successfully but there are warnings!"
|
912 |
msgstr "Datei erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
913 |
|
914 |
+
#: lib/wfu_constants.php:192
|
915 |
msgid "Some files failed to upload!"
|
916 |
msgstr "Einige Dateien konnten nicht hochgeladen werden!"
|
917 |
|
918 |
+
#: lib/wfu_constants.php:193
|
919 |
msgid "All files failed to upload"
|
920 |
msgstr "Alle Dateien konnten nicht hochgeladen werden"
|
921 |
|
922 |
+
#: lib/wfu_constants.php:194
|
923 |
msgid "File failed to upload"
|
924 |
msgstr "Datei konnte nicht hochgeladen werden"
|
925 |
|
926 |
+
#: lib/wfu_constants.php:195
|
927 |
msgid "There are no files to upload!"
|
928 |
msgstr "Es gibt keine Dateien zum Hochladen!"
|
929 |
|
930 |
+
#: lib/wfu_constants.php:196
|
931 |
msgid "Test upload message"
|
932 |
msgstr "Test-Upload-Nachricht"
|
933 |
|
934 |
+
#: lib/wfu_constants.php:197
|
935 |
msgid "JSON parse warning!"
|
936 |
msgstr "JSON parse Warnung!"
|
937 |
|
938 |
+
#: lib/wfu_constants.php:198
|
939 |
msgid "please wait while redirecting..."
|
940 |
msgstr "Bitte warten Sie, Sie werden umgeleitet ..."
|
941 |
|
942 |
+
#: lib/wfu_constants.php:200
|
943 |
msgid "Open visual shortcode editor in new window"
|
944 |
msgstr "Offenen des visuellen Shortcode-Editor in neuem Fenster"
|
945 |
|
946 |
+
#: lib/wfu_constants.php:201
|
947 |
msgid "loading visual editor"
|
948 |
msgstr "visueller Editor laden"
|
949 |
|
950 |
+
#: lib/wfu_constants.php:202
|
951 |
msgid "Clear file list?"
|
952 |
msgstr "Klar Dateiliste?"
|
953 |
|
954 |
+
#: lib/wfu_constants.php:203
|
955 |
msgid "DROP HERE"
|
956 |
msgstr "HIER ABLEGEN"
|
957 |
|
958 |
+
#: lib/wfu_constants.php:205
|
959 |
msgid "record video"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: lib/wfu_constants.php:206
|
963 |
msgid "take a picture"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: lib/wfu_constants.php:207
|
967 |
msgid "turn webcam on/off"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: lib/wfu_constants.php:208
|
971 |
msgid "go live again"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: lib/wfu_constants.php:209
|
975 |
msgid "end recording"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: lib/wfu_constants.php:210
|
979 |
msgid "play"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: lib/wfu_constants.php:211
|
983 |
msgid "pause"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: lib/wfu_constants.php:212
|
987 |
msgid "go to the beginning"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: lib/wfu_constants.php:213
|
991 |
msgid "go to the end"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: lib/wfu_constants.php:215
|
995 |
msgid "Wordpress File Upload Form"
|
996 |
msgstr "Wordpress Datei Upload Formular"
|
997 |
|
998 |
+
#: lib/wfu_constants.php:216
|
999 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1000 |
msgstr "Wordpress Datei Upload Plugin Uploader für Seitenleisten"
|
1001 |
|
1002 |
+
#: lib/wfu_constants.php:217
|
1003 |
msgid "Upload Files"
|
1004 |
msgstr "Dateien hochladen"
|
1005 |
|
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"
|
@@ -299,7 +299,7 @@ msgid "Upload failed! Error occured while attemting to upload the file."
|
|
299 |
msgstr ""
|
300 |
"Η αποστολή απέτυχε! Συνέβη κάποιο σφάλμα κατά την αποστολή του αρχείου."
|
301 |
|
302 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
303 |
msgid "Upload failed!"
|
304 |
msgstr "Η αποστολή απέτυχε!"
|
305 |
|
@@ -578,15 +578,27 @@ msgstr "Δεν ήταν δυνατό το άνοιγμα χειριστών αρ
|
|
578 |
msgid "You are not allowed to delete this file!"
|
579 |
msgstr "Δεν επιτρέπεται η διαγραφή αυτού του αρχείου!"
|
580 |
|
|
|
|
|
|
|
|
|
581 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
msgid "Upload skipped! File already exists."
|
583 |
msgstr "Η αποστολή παραβλέφθηκε! Το αρχείο υπάρχει ήδη."
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid "The extension of the file does not match its contents."
|
587 |
msgstr "Η επέκταση του αρχείου δεν ταιριάζει με τα περιεχόμενά του."
|
588 |
|
589 |
-
#: lib/wfu_constants.php:
|
590 |
msgid ""
|
591 |
"Upload succeeded but the file is suspicious because its contents do not "
|
592 |
"match its extension. Its proper filename is: "
|
@@ -594,20 +606,20 @@ msgstr ""
|
|
594 |
"Η αποστολή ήταν επιτυχής αλλά το αρχείο είναι ύποπτο διότι τα περιεχόμενά "
|
595 |
"του δεν ταιριάζουν με την επέκτασή του. Το σωστό του όνομα είναι: "
|
596 |
|
597 |
-
#: lib/wfu_constants.php:
|
598 |
msgid "No files have been selected!"
|
599 |
msgstr "Δεν επιλέχθηκαν αρχεία!"
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
603 |
msgstr "Το plugin WPFilebase δεν ενημερώθηκε διότι δεν απεστάλη κανένα αρχείο."
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid "Notification email was not sent because there were no files uploaded."
|
607 |
msgstr ""
|
608 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν απεστάλη κανένα αρχείο."
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid ""
|
612 |
"Notification email was not sent because no recipients were defined. Please "
|
613 |
"check notifyrecipients attribute in the shortcode."
|
@@ -615,7 +627,7 @@ msgstr ""
|
|
615 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν ορίστηκαν παραλήπτες. "
|
616 |
"Παρακαλούμε ελέγξτε την ιδιότητα notifyrecipients στο shortcode."
|
617 |
|
618 |
-
#: lib/wfu_constants.php:
|
619 |
msgid ""
|
620 |
"Notification email was not sent due to an error. Please check "
|
621 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -623,7 +635,7 @@ msgstr ""
|
|
623 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email λόγω σφάλματος. Παρακαλούμε ελέγξτε "
|
624 |
"τις ιδιότητες notifyrecipients, notifysubject και notifymessage για σφάλματα."
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid ""
|
628 |
"Redirection not executed because redirection link is empty. Please check "
|
629 |
"redirectlink attribute."
|
@@ -631,14 +643,14 @@ msgstr ""
|
|
631 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι ο σύνδεσμος αναδρομολόγησης είναι "
|
632 |
"κενός. Παρακαλούμε ελέγξτε την ιδιότητα redirectlink."
|
633 |
|
634 |
-
#: lib/wfu_constants.php:
|
635 |
msgid ""
|
636 |
"Redirection not executed because not all files were successfully uploaded."
|
637 |
msgstr ""
|
638 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι δεν αποεστάλησαν όλα τα αρχεία "
|
639 |
"επιτυχώς."
|
640 |
|
641 |
-
#: lib/wfu_constants.php:
|
642 |
msgid ""
|
643 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
644 |
"message persists, contact administrator."
|
@@ -646,7 +658,7 @@ msgstr ""
|
|
646 |
"Δεν κατέστη δυνατή η προσθήκη του shortcode στη σελίδα / άρθρο. Παρακαλώ "
|
647 |
"προσπάθησε ξανά. Αν το μήνυμα συνεχίζει, επικοινωνήστε με το διαχειριστή."
|
648 |
|
649 |
-
#: lib/wfu_constants.php:
|
650 |
msgid ""
|
651 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
652 |
"again to edit the shortcode."
|
@@ -654,7 +666,7 @@ msgstr ""
|
|
654 |
"Δεν ήταν δυνατή η επεξεργασία του shortcode διότι τα περιεχόμενα της σελίδας "
|
655 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να επεξεργαστείτε το shortcode."
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid ""
|
659 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
660 |
"again to delete it."
|
@@ -662,7 +674,7 @@ msgstr ""
|
|
662 |
"Δεν ήταν δυνατή η διαγραφή του shortcode διότι τα περιεχόμενα της σελίδας "
|
663 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να διαγράψετε το shortcode."
|
664 |
|
665 |
-
#: lib/wfu_constants.php:
|
666 |
msgid ""
|
667 |
"The page containing the shortcode has been modified and it is no longer "
|
668 |
"valid. Please go back to reload the shortcode."
|
@@ -670,7 +682,7 @@ msgstr ""
|
|
670 |
"Η σελίδα που περιέχει το shortcode τροποποιήθηκε και δεν είναι πλέον σε "
|
671 |
"ισχύ. Παρακαλούμε πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
672 |
|
673 |
-
#: lib/wfu_constants.php:
|
674 |
msgid ""
|
675 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
676 |
"back to reload the shortcode."
|
@@ -678,7 +690,7 @@ msgstr ""
|
|
678 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode διότι τα περιεχόμενα της σελίδας "
|
679 |
"άλλαξαν. Πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
680 |
|
681 |
-
#: lib/wfu_constants.php:
|
682 |
msgid ""
|
683 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
684 |
"go back and reload the shortcode."
|
@@ -686,39 +698,39 @@ msgstr ""
|
|
686 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode. Παρακαλούμε ξαναδοκιμάστε. Αν το "
|
687 |
"πρόβλημα παραμείνει, πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
688 |
|
689 |
-
#: lib/wfu_constants.php:
|
690 |
msgid "This is a test message"
|
691 |
msgstr "Αυτό είναι ένα μήνυμα ελέγχου"
|
692 |
|
693 |
-
#: lib/wfu_constants.php:
|
694 |
msgid "This is a test administrator message"
|
695 |
msgstr "Αυτό είναι ένα μήνυμα διαχειριστή ελέγχου"
|
696 |
|
697 |
-
#: lib/wfu_constants.php:
|
698 |
msgid "File testfile 1 under test"
|
699 |
msgstr "Αρχείο testfile 1 υπό έλεγχο"
|
700 |
|
701 |
-
#: lib/wfu_constants.php:
|
702 |
msgid "File testfile 1 message"
|
703 |
msgstr "Μήνυμα αρχείου testfile 1"
|
704 |
|
705 |
-
#: lib/wfu_constants.php:
|
706 |
msgid "File testfile 1 administrator message"
|
707 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 1"
|
708 |
|
709 |
-
#: lib/wfu_constants.php:
|
710 |
msgid "File testfile 2 under test"
|
711 |
msgstr "Αρχείο testfile 2 υπό έλεγχο"
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid "File testfile 2 message"
|
715 |
msgstr "Μήνυμα αρχείου testfile 2"
|
716 |
|
717 |
-
#: lib/wfu_constants.php:
|
718 |
msgid "File testfile 2 administrator message"
|
719 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 2"
|
720 |
|
721 |
-
#: lib/wfu_constants.php:
|
722 |
msgid ""
|
723 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
724 |
"current user."
|
@@ -726,7 +738,7 @@ msgstr ""
|
|
726 |
"Εισάγετε τη μεταβλητή %userid% στο κείμενο. Θα αντικατασταθεί από το id του "
|
727 |
"τρέχοντος χρήστη."
|
728 |
|
729 |
-
#: lib/wfu_constants.php:
|
730 |
msgid ""
|
731 |
"Insert variable %username% inside text. It will be replaced by the username "
|
732 |
"of the current user."
|
@@ -734,7 +746,7 @@ msgstr ""
|
|
734 |
"Εισάγετε τη μεταβλητή %username% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
735 |
"του τρέχοντος χρήστη."
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid ""
|
739 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
740 |
"the current user."
|
@@ -742,7 +754,7 @@ msgstr ""
|
|
742 |
"Εισάγετε τη μεταβλητή %useremail% στο κείμενο. Θα αντικατασταθεί από το "
|
743 |
"email του τρέχοντος χρήστη."
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid ""
|
747 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
748 |
"of the uploaded file."
|
@@ -750,7 +762,7 @@ msgstr ""
|
|
750 |
"Εισάγετε τη μεταβλητή %filename% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
751 |
"του αποστελλομένου αρχείου."
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid ""
|
755 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
756 |
"filepath of the uploaded file."
|
@@ -758,7 +770,7 @@ msgstr ""
|
|
758 |
"Εισάγετε τη μεταβλητή %filepath% στο κείμενο. Θα αντικατασταθεί από την "
|
759 |
"πλήρη διαδρομή του αποστελλομένου αρχείου."
|
760 |
|
761 |
-
#: lib/wfu_constants.php:
|
762 |
msgid ""
|
763 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
764 |
"the website."
|
@@ -766,7 +778,7 @@ msgstr ""
|
|
766 |
"Εισάγετε τη μεταβλητή %blogid% στο κείμενο. Θα αντικατασταθεί από το blog id "
|
767 |
"της ιστοσελίδας."
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid ""
|
771 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
772 |
"current page."
|
@@ -774,7 +786,7 @@ msgstr ""
|
|
774 |
"Εισάγετε τη μεταβλητή %pageid% στο κείμενο. Θα αντικατασταθεί από το id της "
|
775 |
"τρέχουσας σελίδας."
|
776 |
|
777 |
-
#: lib/wfu_constants.php:
|
778 |
msgid ""
|
779 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
780 |
"the current page."
|
@@ -782,7 +794,7 @@ msgstr ""
|
|
782 |
"Εισάγετε τη μεταβλητή %pagetitle% στο κείμενο. Θα αντικατασταθεί από τον "
|
783 |
"τίτλο της τρέχουσας σελίδας."
|
784 |
|
785 |
-
#: lib/wfu_constants.php:
|
786 |
msgid ""
|
787 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
788 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -792,185 +804,197 @@ msgstr ""
|
|
792 |
"από την εμφανιζόμενη dropdown λίστα. Θα αντικατασταθεί από την τιμή που "
|
793 |
"εισήγαγε ο χρήστης σε αυτό το πεδίο."
|
794 |
|
795 |
-
#: lib/wfu_constants.php:
|
796 |
msgid "Insert variable %n% inside text to denote a line change."
|
797 |
msgstr ""
|
798 |
"Εισάγετε τη μεταβλητή %n% στο κείμενο για να υποδείξετε αλλαγή γραμμής."
|
799 |
|
800 |
-
#: lib/wfu_constants.php:
|
801 |
msgid "Test Mode"
|
802 |
msgstr "Κατάσταση Ελέγχου"
|
803 |
|
804 |
-
#: lib/wfu_constants.php:
|
805 |
msgid "select dir..."
|
806 |
msgstr "επιλογή καταλόγου..."
|
807 |
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
msgid "type dir"
|
810 |
msgstr "εισάγετε κατάλογο"
|
811 |
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
msgid "Upload path: %filepath%"
|
814 |
msgstr "Διαδρομή προορισμού: %filepath%"
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid "Failed upload path: %filepath%"
|
818 |
msgstr "Εσφαλμένη διαδρομή προορισμού: %filepath%"
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid " (required)"
|
822 |
msgstr " (απαραίτητο)"
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
826 |
msgstr ""
|
827 |
"Υπάρχουν αρχεία που αποστέλλονται. Σίγουρα θέλετε να φύγετε από τη σελίδα;"
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "checking captcha..."
|
831 |
msgstr "έλεγχος captcha..."
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
834 |
msgid "refreshing..."
|
835 |
msgstr "ανανέωση..."
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "correct captcha"
|
839 |
msgstr "σωστό captcha"
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "click to continue the upload"
|
843 |
msgstr "πατήστε click για να συνεχίσει η αποστολή"
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "Are you sure you want to delete this file?"
|
847 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο;"
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
msgid "Are you sure that you want to cancel the upload?"
|
851 |
msgstr "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την αποστολή;"
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "cancel upload of this file"
|
855 |
msgstr "ακυρώστε την αποστολή αυτού του αρχείου"
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "Upload in progress"
|
859 |
msgstr "Αποστολή σε εξέλιξη"
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "Upload in progress with warnings!"
|
863 |
msgstr "Αποστολή σε εξέλιξη με προειδοποιήσεις!"
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "Upload in progress but some files already failed!"
|
867 |
msgstr "Αποστολή σε εξέλιξη αλλά κάποια αρχεία ήδη απέτυχαν!"
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "Upload in progress but no files uploaded so far!"
|
871 |
msgstr "Αποστολή σε εξέλιξη αλλά δεν απεστάλη κανένα αρχείο μέχρι τώρα!"
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "All files uploaded successfully"
|
875 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς"
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "All files uploaded successfully but there are warnings!"
|
879 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid "File uploaded successfully but there are warnings!"
|
883 |
msgstr "Το αρχείο απεστάλη επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid "Some files failed to upload!"
|
887 |
msgstr "Μερικά αρχεία απέτυχαν να αποσταλούν!"
|
888 |
|
889 |
-
#: lib/wfu_constants.php:
|
890 |
msgid "All files failed to upload"
|
891 |
msgstr "Όλα τα αρχεία απέτυχαν να αποσταλούν"
|
892 |
|
893 |
-
#: lib/wfu_constants.php:
|
894 |
msgid "File failed to upload"
|
895 |
msgstr "Το αρχείο απέτυχε να αποσταλεί"
|
896 |
|
897 |
-
#: lib/wfu_constants.php:
|
898 |
msgid "There are no files to upload!"
|
899 |
msgstr "Δεν υπάρχουν αρχεία για αποστολή!"
|
900 |
|
901 |
-
#: lib/wfu_constants.php:
|
902 |
msgid "Test upload message"
|
903 |
msgstr "Μήνυμα αποστολής ελέγχου"
|
904 |
|
905 |
-
#: lib/wfu_constants.php:
|
906 |
msgid "JSON parse warning!"
|
907 |
msgstr "Προειδοποίηση μετατροπής JSON!"
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid "please wait while redirecting..."
|
911 |
msgstr "παρακαλούμε περιμένετε ενώ γίνεται αναδρομολόγηση..."
|
912 |
|
913 |
-
#: lib/wfu_constants.php:
|
914 |
msgid "Open visual shortcode editor in new window"
|
915 |
msgstr "Ανοίξτε τη γραφική επεξεργασία του shortcode σε νέο παράθυρο"
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid "loading visual editor"
|
919 |
msgstr "φόρτωση του γραφικού επεξεργαστή"
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "Clear file list?"
|
923 |
msgstr "Να γίνει καθαρισμός της λίστας αρχείων;"
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "DROP HERE"
|
927 |
msgstr "ΑΦΗΣΤΕ ΕΔΩ"
|
928 |
|
929 |
-
#: lib/wfu_constants.php:
|
930 |
msgid "record video"
|
931 |
msgstr "εγγραφή video"
|
932 |
|
933 |
-
#: lib/wfu_constants.php:
|
934 |
msgid "take a picture"
|
935 |
msgstr "φωτογραφία"
|
936 |
|
937 |
-
#: lib/wfu_constants.php:
|
938 |
msgid "turn webcam on/off"
|
939 |
msgstr "ενεργοποίηση/απενεργοποίηση κάμερας"
|
940 |
|
941 |
-
#: lib/wfu_constants.php:
|
942 |
msgid "go live again"
|
943 |
msgstr "επιστροφή σε ζωντανή λήψη"
|
944 |
|
945 |
-
#: lib/wfu_constants.php:
|
946 |
msgid "end recording"
|
947 |
msgstr "τέλος εγγραφής"
|
948 |
|
949 |
-
#: lib/wfu_constants.php:
|
950 |
msgid "play"
|
951 |
msgstr "αναπαραγωγή"
|
952 |
|
953 |
-
#: lib/wfu_constants.php:
|
954 |
msgid "pause"
|
955 |
msgstr "παύση"
|
956 |
|
957 |
-
#: lib/wfu_constants.php:
|
958 |
msgid "go to the beginning"
|
959 |
msgstr "μετάβαση στην αρχή"
|
960 |
|
961 |
-
#: lib/wfu_constants.php:
|
962 |
msgid "go to the end"
|
963 |
msgstr "μετάβαση στο τέλος"
|
964 |
|
965 |
-
#: lib/wfu_constants.php:
|
966 |
msgid "Wordpress File Upload Form"
|
967 |
msgstr "Φόρμα του Wordpress File Upload"
|
968 |
|
969 |
-
#: lib/wfu_constants.php:
|
970 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
971 |
msgstr "Αποστολή αρχείων με το Wordpress File Upload plugin για sidebars"
|
972 |
|
973 |
-
#: lib/wfu_constants.php:
|
974 |
msgid "Upload Files"
|
975 |
msgstr "Αποστολή αρχείων"
|
976 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-05 23:58+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-05 23:59+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: el\n"
|
299 |
msgstr ""
|
300 |
"Η αποστολή απέτυχε! Συνέβη κάποιο σφάλμα κατά την αποστολή του αρχείου."
|
301 |
|
302 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
303 |
msgid "Upload failed!"
|
304 |
msgstr "Η αποστολή απέτυχε!"
|
305 |
|
578 |
msgid "You are not allowed to delete this file!"
|
579 |
msgstr "Δεν επιτρέπεται η διαγραφή αυτού του αρχείου!"
|
580 |
|
581 |
+
#: lib/wfu_constants.php:126
|
582 |
+
msgid "File was not deleted!"
|
583 |
+
msgstr "Το αρχείο δε διαγράφηκε!"
|
584 |
+
|
585 |
#: lib/wfu_constants.php:127
|
586 |
+
msgid "No file was deleted!"
|
587 |
+
msgstr "Δε διαγράφηκε κανένα αρχείο!"
|
588 |
+
|
589 |
+
#: lib/wfu_constants.php:128
|
590 |
+
msgid "Some files were not deleted!"
|
591 |
+
msgstr "Μερικά αρχεία δε διαγράφηκαν!"
|
592 |
+
|
593 |
+
#: lib/wfu_constants.php:130
|
594 |
msgid "Upload skipped! File already exists."
|
595 |
msgstr "Η αποστολή παραβλέφθηκε! Το αρχείο υπάρχει ήδη."
|
596 |
|
597 |
+
#: lib/wfu_constants.php:131
|
598 |
msgid "The extension of the file does not match its contents."
|
599 |
msgstr "Η επέκταση του αρχείου δεν ταιριάζει με τα περιεχόμενά του."
|
600 |
|
601 |
+
#: lib/wfu_constants.php:132
|
602 |
msgid ""
|
603 |
"Upload succeeded but the file is suspicious because its contents do not "
|
604 |
"match its extension. Its proper filename is: "
|
606 |
"Η αποστολή ήταν επιτυχής αλλά το αρχείο είναι ύποπτο διότι τα περιεχόμενά "
|
607 |
"του δεν ταιριάζουν με την επέκτασή του. Το σωστό του όνομα είναι: "
|
608 |
|
609 |
+
#: lib/wfu_constants.php:133
|
610 |
msgid "No files have been selected!"
|
611 |
msgstr "Δεν επιλέχθηκαν αρχεία!"
|
612 |
|
613 |
+
#: lib/wfu_constants.php:134
|
614 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
615 |
msgstr "Το plugin WPFilebase δεν ενημερώθηκε διότι δεν απεστάλη κανένα αρχείο."
|
616 |
|
617 |
+
#: lib/wfu_constants.php:135
|
618 |
msgid "Notification email was not sent because there were no files uploaded."
|
619 |
msgstr ""
|
620 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν απεστάλη κανένα αρχείο."
|
621 |
|
622 |
+
#: lib/wfu_constants.php:136
|
623 |
msgid ""
|
624 |
"Notification email was not sent because no recipients were defined. Please "
|
625 |
"check notifyrecipients attribute in the shortcode."
|
627 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν ορίστηκαν παραλήπτες. "
|
628 |
"Παρακαλούμε ελέγξτε την ιδιότητα notifyrecipients στο shortcode."
|
629 |
|
630 |
+
#: lib/wfu_constants.php:137
|
631 |
msgid ""
|
632 |
"Notification email was not sent due to an error. Please check "
|
633 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
635 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email λόγω σφάλματος. Παρακαλούμε ελέγξτε "
|
636 |
"τις ιδιότητες notifyrecipients, notifysubject και notifymessage για σφάλματα."
|
637 |
|
638 |
+
#: lib/wfu_constants.php:138
|
639 |
msgid ""
|
640 |
"Redirection not executed because redirection link is empty. Please check "
|
641 |
"redirectlink attribute."
|
643 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι ο σύνδεσμος αναδρομολόγησης είναι "
|
644 |
"κενός. Παρακαλούμε ελέγξτε την ιδιότητα redirectlink."
|
645 |
|
646 |
+
#: lib/wfu_constants.php:139
|
647 |
msgid ""
|
648 |
"Redirection not executed because not all files were successfully uploaded."
|
649 |
msgstr ""
|
650 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι δεν αποεστάλησαν όλα τα αρχεία "
|
651 |
"επιτυχώς."
|
652 |
|
653 |
+
#: lib/wfu_constants.php:141
|
654 |
msgid ""
|
655 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
656 |
"message persists, contact administrator."
|
658 |
"Δεν κατέστη δυνατή η προσθήκη του shortcode στη σελίδα / άρθρο. Παρακαλώ "
|
659 |
"προσπάθησε ξανά. Αν το μήνυμα συνεχίζει, επικοινωνήστε με το διαχειριστή."
|
660 |
|
661 |
+
#: lib/wfu_constants.php:142
|
662 |
msgid ""
|
663 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
664 |
"again to edit the shortcode."
|
666 |
"Δεν ήταν δυνατή η επεξεργασία του shortcode διότι τα περιεχόμενα της σελίδας "
|
667 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να επεξεργαστείτε το shortcode."
|
668 |
|
669 |
+
#: lib/wfu_constants.php:143
|
670 |
msgid ""
|
671 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
672 |
"again to delete it."
|
674 |
"Δεν ήταν δυνατή η διαγραφή του shortcode διότι τα περιεχόμενα της σελίδας "
|
675 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να διαγράψετε το shortcode."
|
676 |
|
677 |
+
#: lib/wfu_constants.php:144
|
678 |
msgid ""
|
679 |
"The page containing the shortcode has been modified and it is no longer "
|
680 |
"valid. Please go back to reload the shortcode."
|
682 |
"Η σελίδα που περιέχει το shortcode τροποποιήθηκε και δεν είναι πλέον σε "
|
683 |
"ισχύ. Παρακαλούμε πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
684 |
|
685 |
+
#: lib/wfu_constants.php:145
|
686 |
msgid ""
|
687 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
688 |
"back to reload the shortcode."
|
690 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode διότι τα περιεχόμενα της σελίδας "
|
691 |
"άλλαξαν. Πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
692 |
|
693 |
+
#: lib/wfu_constants.php:146
|
694 |
msgid ""
|
695 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
696 |
"go back and reload the shortcode."
|
698 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode. Παρακαλούμε ξαναδοκιμάστε. Αν το "
|
699 |
"πρόβλημα παραμείνει, πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
700 |
|
701 |
+
#: lib/wfu_constants.php:148
|
702 |
msgid "This is a test message"
|
703 |
msgstr "Αυτό είναι ένα μήνυμα ελέγχου"
|
704 |
|
705 |
+
#: lib/wfu_constants.php:149
|
706 |
msgid "This is a test administrator message"
|
707 |
msgstr "Αυτό είναι ένα μήνυμα διαχειριστή ελέγχου"
|
708 |
|
709 |
+
#: lib/wfu_constants.php:150
|
710 |
msgid "File testfile 1 under test"
|
711 |
msgstr "Αρχείο testfile 1 υπό έλεγχο"
|
712 |
|
713 |
+
#: lib/wfu_constants.php:151
|
714 |
msgid "File testfile 1 message"
|
715 |
msgstr "Μήνυμα αρχείου testfile 1"
|
716 |
|
717 |
+
#: lib/wfu_constants.php:152
|
718 |
msgid "File testfile 1 administrator message"
|
719 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 1"
|
720 |
|
721 |
+
#: lib/wfu_constants.php:153
|
722 |
msgid "File testfile 2 under test"
|
723 |
msgstr "Αρχείο testfile 2 υπό έλεγχο"
|
724 |
|
725 |
+
#: lib/wfu_constants.php:154
|
726 |
msgid "File testfile 2 message"
|
727 |
msgstr "Μήνυμα αρχείου testfile 2"
|
728 |
|
729 |
+
#: lib/wfu_constants.php:155
|
730 |
msgid "File testfile 2 administrator message"
|
731 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 2"
|
732 |
|
733 |
+
#: lib/wfu_constants.php:157
|
734 |
msgid ""
|
735 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
736 |
"current user."
|
738 |
"Εισάγετε τη μεταβλητή %userid% στο κείμενο. Θα αντικατασταθεί από το id του "
|
739 |
"τρέχοντος χρήστη."
|
740 |
|
741 |
+
#: lib/wfu_constants.php:158
|
742 |
msgid ""
|
743 |
"Insert variable %username% inside text. It will be replaced by the username "
|
744 |
"of the current user."
|
746 |
"Εισάγετε τη μεταβλητή %username% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
747 |
"του τρέχοντος χρήστη."
|
748 |
|
749 |
+
#: lib/wfu_constants.php:159
|
750 |
msgid ""
|
751 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
752 |
"the current user."
|
754 |
"Εισάγετε τη μεταβλητή %useremail% στο κείμενο. Θα αντικατασταθεί από το "
|
755 |
"email του τρέχοντος χρήστη."
|
756 |
|
757 |
+
#: lib/wfu_constants.php:160
|
758 |
msgid ""
|
759 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
760 |
"of the uploaded file."
|
762 |
"Εισάγετε τη μεταβλητή %filename% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
763 |
"του αποστελλομένου αρχείου."
|
764 |
|
765 |
+
#: lib/wfu_constants.php:161
|
766 |
msgid ""
|
767 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
768 |
"filepath of the uploaded file."
|
770 |
"Εισάγετε τη μεταβλητή %filepath% στο κείμενο. Θα αντικατασταθεί από την "
|
771 |
"πλήρη διαδρομή του αποστελλομένου αρχείου."
|
772 |
|
773 |
+
#: lib/wfu_constants.php:162
|
774 |
msgid ""
|
775 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
776 |
"the website."
|
778 |
"Εισάγετε τη μεταβλητή %blogid% στο κείμενο. Θα αντικατασταθεί από το blog id "
|
779 |
"της ιστοσελίδας."
|
780 |
|
781 |
+
#: lib/wfu_constants.php:163
|
782 |
msgid ""
|
783 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
784 |
"current page."
|
786 |
"Εισάγετε τη μεταβλητή %pageid% στο κείμενο. Θα αντικατασταθεί από το id της "
|
787 |
"τρέχουσας σελίδας."
|
788 |
|
789 |
+
#: lib/wfu_constants.php:164
|
790 |
msgid ""
|
791 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
792 |
"the current page."
|
794 |
"Εισάγετε τη μεταβλητή %pagetitle% στο κείμενο. Θα αντικατασταθεί από τον "
|
795 |
"τίτλο της τρέχουσας σελίδας."
|
796 |
|
797 |
+
#: lib/wfu_constants.php:165
|
798 |
msgid ""
|
799 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
800 |
"drop-down list. It will be replaced by the value that the user entered in "
|
804 |
"από την εμφανιζόμενη dropdown λίστα. Θα αντικατασταθεί από την τιμή που "
|
805 |
"εισήγαγε ο χρήστης σε αυτό το πεδίο."
|
806 |
|
807 |
+
#: lib/wfu_constants.php:166
|
808 |
msgid "Insert variable %n% inside text to denote a line change."
|
809 |
msgstr ""
|
810 |
"Εισάγετε τη μεταβλητή %n% στο κείμενο για να υποδείξετε αλλαγή γραμμής."
|
811 |
|
812 |
+
#: lib/wfu_constants.php:168
|
813 |
msgid "Test Mode"
|
814 |
msgstr "Κατάσταση Ελέγχου"
|
815 |
|
816 |
+
#: lib/wfu_constants.php:169
|
817 |
msgid "select dir..."
|
818 |
msgstr "επιλογή καταλόγου..."
|
819 |
|
820 |
+
#: lib/wfu_constants.php:170
|
821 |
msgid "type dir"
|
822 |
msgstr "εισάγετε κατάλογο"
|
823 |
|
824 |
+
#: lib/wfu_constants.php:171
|
825 |
msgid "Upload path: %filepath%"
|
826 |
msgstr "Διαδρομή προορισμού: %filepath%"
|
827 |
|
828 |
+
#: lib/wfu_constants.php:172
|
829 |
msgid "Failed upload path: %filepath%"
|
830 |
msgstr "Εσφαλμένη διαδρομή προορισμού: %filepath%"
|
831 |
|
832 |
+
#: lib/wfu_constants.php:173
|
833 |
msgid " (required)"
|
834 |
msgstr " (απαραίτητο)"
|
835 |
|
836 |
+
#: lib/wfu_constants.php:174
|
837 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
838 |
msgstr ""
|
839 |
"Υπάρχουν αρχεία που αποστέλλονται. Σίγουρα θέλετε να φύγετε από τη σελίδα;"
|
840 |
|
841 |
+
#: lib/wfu_constants.php:175
|
842 |
msgid "checking captcha..."
|
843 |
msgstr "έλεγχος captcha..."
|
844 |
|
845 |
+
#: lib/wfu_constants.php:176
|
846 |
msgid "refreshing..."
|
847 |
msgstr "ανανέωση..."
|
848 |
|
849 |
+
#: lib/wfu_constants.php:177
|
850 |
msgid "correct captcha"
|
851 |
msgstr "σωστό captcha"
|
852 |
|
853 |
+
#: lib/wfu_constants.php:178
|
854 |
msgid "click to continue the upload"
|
855 |
msgstr "πατήστε click για να συνεχίσει η αποστολή"
|
856 |
|
857 |
+
#: lib/wfu_constants.php:179
|
858 |
msgid "Are you sure you want to delete this file?"
|
859 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο;"
|
860 |
|
861 |
+
#: lib/wfu_constants.php:180
|
862 |
+
msgid "Are you sure you want to delete these files?"
|
863 |
+
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτά τα αρχεία;"
|
864 |
+
|
865 |
+
#: lib/wfu_constants.php:181
|
866 |
+
msgid "Bulk Actions"
|
867 |
+
msgstr "Μαζικές Ενέργειες"
|
868 |
+
|
869 |
+
#: lib/wfu_constants.php:182
|
870 |
+
msgid "Apply"
|
871 |
+
msgstr "Εκτέλεση"
|
872 |
+
|
873 |
+
#: lib/wfu_constants.php:183
|
874 |
msgid "Are you sure that you want to cancel the upload?"
|
875 |
msgstr "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την αποστολή;"
|
876 |
|
877 |
+
#: lib/wfu_constants.php:184
|
878 |
msgid "cancel upload of this file"
|
879 |
msgstr "ακυρώστε την αποστολή αυτού του αρχείου"
|
880 |
|
881 |
+
#: lib/wfu_constants.php:185
|
882 |
msgid "Upload in progress"
|
883 |
msgstr "Αποστολή σε εξέλιξη"
|
884 |
|
885 |
+
#: lib/wfu_constants.php:186
|
886 |
msgid "Upload in progress with warnings!"
|
887 |
msgstr "Αποστολή σε εξέλιξη με προειδοποιήσεις!"
|
888 |
|
889 |
+
#: lib/wfu_constants.php:187
|
890 |
msgid "Upload in progress but some files already failed!"
|
891 |
msgstr "Αποστολή σε εξέλιξη αλλά κάποια αρχεία ήδη απέτυχαν!"
|
892 |
|
893 |
+
#: lib/wfu_constants.php:188
|
894 |
msgid "Upload in progress but no files uploaded so far!"
|
895 |
msgstr "Αποστολή σε εξέλιξη αλλά δεν απεστάλη κανένα αρχείο μέχρι τώρα!"
|
896 |
|
897 |
+
#: lib/wfu_constants.php:189
|
898 |
msgid "All files uploaded successfully"
|
899 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς"
|
900 |
|
901 |
+
#: lib/wfu_constants.php:190
|
902 |
msgid "All files uploaded successfully but there are warnings!"
|
903 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
904 |
|
905 |
+
#: lib/wfu_constants.php:191
|
906 |
msgid "File uploaded successfully but there are warnings!"
|
907 |
msgstr "Το αρχείο απεστάλη επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
908 |
|
909 |
+
#: lib/wfu_constants.php:192
|
910 |
msgid "Some files failed to upload!"
|
911 |
msgstr "Μερικά αρχεία απέτυχαν να αποσταλούν!"
|
912 |
|
913 |
+
#: lib/wfu_constants.php:193
|
914 |
msgid "All files failed to upload"
|
915 |
msgstr "Όλα τα αρχεία απέτυχαν να αποσταλούν"
|
916 |
|
917 |
+
#: lib/wfu_constants.php:194
|
918 |
msgid "File failed to upload"
|
919 |
msgstr "Το αρχείο απέτυχε να αποσταλεί"
|
920 |
|
921 |
+
#: lib/wfu_constants.php:195
|
922 |
msgid "There are no files to upload!"
|
923 |
msgstr "Δεν υπάρχουν αρχεία για αποστολή!"
|
924 |
|
925 |
+
#: lib/wfu_constants.php:196
|
926 |
msgid "Test upload message"
|
927 |
msgstr "Μήνυμα αποστολής ελέγχου"
|
928 |
|
929 |
+
#: lib/wfu_constants.php:197
|
930 |
msgid "JSON parse warning!"
|
931 |
msgstr "Προειδοποίηση μετατροπής JSON!"
|
932 |
|
933 |
+
#: lib/wfu_constants.php:198
|
934 |
msgid "please wait while redirecting..."
|
935 |
msgstr "παρακαλούμε περιμένετε ενώ γίνεται αναδρομολόγηση..."
|
936 |
|
937 |
+
#: lib/wfu_constants.php:200
|
938 |
msgid "Open visual shortcode editor in new window"
|
939 |
msgstr "Ανοίξτε τη γραφική επεξεργασία του shortcode σε νέο παράθυρο"
|
940 |
|
941 |
+
#: lib/wfu_constants.php:201
|
942 |
msgid "loading visual editor"
|
943 |
msgstr "φόρτωση του γραφικού επεξεργαστή"
|
944 |
|
945 |
+
#: lib/wfu_constants.php:202
|
946 |
msgid "Clear file list?"
|
947 |
msgstr "Να γίνει καθαρισμός της λίστας αρχείων;"
|
948 |
|
949 |
+
#: lib/wfu_constants.php:203
|
950 |
msgid "DROP HERE"
|
951 |
msgstr "ΑΦΗΣΤΕ ΕΔΩ"
|
952 |
|
953 |
+
#: lib/wfu_constants.php:205
|
954 |
msgid "record video"
|
955 |
msgstr "εγγραφή video"
|
956 |
|
957 |
+
#: lib/wfu_constants.php:206
|
958 |
msgid "take a picture"
|
959 |
msgstr "φωτογραφία"
|
960 |
|
961 |
+
#: lib/wfu_constants.php:207
|
962 |
msgid "turn webcam on/off"
|
963 |
msgstr "ενεργοποίηση/απενεργοποίηση κάμερας"
|
964 |
|
965 |
+
#: lib/wfu_constants.php:208
|
966 |
msgid "go live again"
|
967 |
msgstr "επιστροφή σε ζωντανή λήψη"
|
968 |
|
969 |
+
#: lib/wfu_constants.php:209
|
970 |
msgid "end recording"
|
971 |
msgstr "τέλος εγγραφής"
|
972 |
|
973 |
+
#: lib/wfu_constants.php:210
|
974 |
msgid "play"
|
975 |
msgstr "αναπαραγωγή"
|
976 |
|
977 |
+
#: lib/wfu_constants.php:211
|
978 |
msgid "pause"
|
979 |
msgstr "παύση"
|
980 |
|
981 |
+
#: lib/wfu_constants.php:212
|
982 |
msgid "go to the beginning"
|
983 |
msgstr "μετάβαση στην αρχή"
|
984 |
|
985 |
+
#: lib/wfu_constants.php:213
|
986 |
msgid "go to the end"
|
987 |
msgstr "μετάβαση στο τέλος"
|
988 |
|
989 |
+
#: lib/wfu_constants.php:215
|
990 |
msgid "Wordpress File Upload Form"
|
991 |
msgstr "Φόρμα του Wordpress File Upload"
|
992 |
|
993 |
+
#: lib/wfu_constants.php:216
|
994 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
995 |
msgstr "Αποστολή αρχείων με το Wordpress File Upload plugin για sidebars"
|
996 |
|
997 |
+
#: lib/wfu_constants.php:217
|
998 |
msgid "Upload Files"
|
999 |
msgstr "Αποστολή αρχείων"
|
1000 |
|
languages/wp-file-upload-en_US.mo
CHANGED
Binary file
|
languages/wp-file-upload-en_US.po
CHANGED
@@ -1,866 +1,890 @@
|
|
1 |
-
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"
|
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 ""
|
25 |
-
|
26 |
-
#: lib/wfu_constants.php:10
|
27 |
-
msgid "Select File/Select Files"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: lib/wfu_constants.php:11
|
31 |
-
msgid "Upload File/Upload Files"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: lib/wfu_constants.php:15
|
35 |
-
msgid "Select File"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: lib/wfu_constants.php:16
|
39 |
-
msgid "Upload File"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
#: lib/wfu_constants.php:19
|
43 |
-
msgid "File Upload Notification"
|
44 |
-
msgstr ""
|
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 |
-
|
52 |
-
#: lib/wfu_constants.php:21
|
53 |
-
#, php-format
|
54 |
-
msgid "File %filename% uploaded successfully"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: lib/wfu_constants.php:22
|
58 |
-
#, php-format
|
59 |
-
msgid "File %filename% uploaded successfully but with warnings"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: lib/wfu_constants.php:23
|
63 |
-
msgid "File %filename% not uploaded"
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
#: lib/wfu_constants.php:24
|
67 |
-
msgid "File %filename% is being uploaded"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: lib/wfu_constants.php:25
|
71 |
-
msgid "Your message"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: lib/wfu_constants.php:26
|
75 |
-
msgid "Please fill in the above words: "
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: lib/wfu_constants.php:27
|
79 |
-
msgid "Upload Media"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: lib/wfu_constants.php:28
|
83 |
-
msgid "videostream"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: lib/wfu_constants.php:29
|
87 |
-
msgid "screenshot"
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: lib/wfu_constants.php:31
|
91 |
-
msgid "File"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: lib/wfu_constants.php:32
|
95 |
-
msgid "Date"
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: lib/wfu_constants.php:33
|
99 |
-
msgid "Size"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: lib/wfu_constants.php:34
|
103 |
-
msgid "User"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: lib/wfu_constants.php:35
|
107 |
-
msgid "Page"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: lib/wfu_constants.php:36
|
111 |
-
msgid "User Fields"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: lib/wfu_constants.php:37
|
115 |
-
msgid "Download"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: lib/wfu_constants.php:38
|
119 |
-
msgid "Download this file"
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: lib/wfu_constants.php:39
|
123 |
-
msgid "Delete"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: lib/wfu_constants.php:40
|
127 |
-
msgid "Delete this file"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: lib/wfu_constants.php:41
|
131 |
-
msgid "Sort list based on this column"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: lib/wfu_constants.php:42
|
135 |
-
msgid "guest"
|
136 |
-
msgstr ""
|
137 |
-
|
138 |
-
#: lib/wfu_constants.php:43
|
139 |
-
msgid "unknown"
|
140 |
-
msgstr ""
|
141 |
-
|
142 |
-
#: lib/wfu_constants.php:45
|
143 |
-
msgid ""
|
144 |
-
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
145 |
-
"attribute."
|
146 |
-
msgstr ""
|
147 |
-
|
148 |
-
#: lib/wfu_constants.php:46
|
149 |
-
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
150 |
-
msgstr ""
|
151 |
-
|
152 |
-
#: lib/wfu_constants.php:47
|
153 |
-
msgid ""
|
154 |
-
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
155 |
-
"syntax."
|
156 |
-
msgstr ""
|
157 |
-
|
158 |
-
#: lib/wfu_constants.php:48
|
159 |
-
msgid ""
|
160 |
-
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
161 |
-
"attribute."
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
#: lib/wfu_constants.php:49
|
165 |
-
msgid ""
|
166 |
-
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
167 |
-
"preventing the upload of big files.\n"
|
168 |
-
"PHP directive upload_max_filesize limit is: "
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: lib/wfu_constants.php:50
|
172 |
-
msgid ""
|
173 |
-
"The upload time limit of PHP directive max_input_time is preventing the "
|
174 |
-
"upload of big files.\n"
|
175 |
-
"PHP directive max_input_time limit is: "
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: lib/wfu_constants.php:51
|
179 |
-
msgid ""
|
180 |
-
"Error. Permission denied to write to target folder.\n"
|
181 |
-
"Check and correct read/write permissions of target folder."
|
182 |
-
msgstr ""
|
183 |
-
|
184 |
-
#: lib/wfu_constants.php:52
|
185 |
-
msgid ""
|
186 |
-
"Error. This file was rejected because its extension is not correct. Its "
|
187 |
-
"proper filename is: "
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: lib/wfu_constants.php:53
|
191 |
-
msgid "Targer folder doesn't exist."
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: lib/wfu_constants.php:54
|
195 |
-
msgid "Upload failed! Missing a temporary folder."
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: lib/wfu_constants.php:55
|
199 |
-
msgid "Upload failed! Permission denied to write to target folder."
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#: lib/wfu_constants.php:56
|
203 |
-
msgid "File not allowed."
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#: lib/wfu_constants.php:57
|
207 |
-
msgid "File is suspicious and was rejected."
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#: lib/wfu_constants.php:58
|
211 |
-
msgid "The uploaded file exceeds the file size limit."
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: lib/wfu_constants.php:59
|
215 |
-
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: lib/wfu_constants.php:60
|
219 |
-
msgid ""
|
220 |
-
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
221 |
-
"Please contact the administrator."
|
222 |
-
msgstr ""
|
223 |
-
|
224 |
-
#: lib/wfu_constants.php:61
|
225 |
-
msgid ""
|
226 |
-
"Upload failed! The duration of the upload exceeded the time limit of the "
|
227 |
-
"server. Please contact the administrator."
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: lib/wfu_constants.php:62
|
231 |
-
msgid ""
|
232 |
-
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
233 |
-
"was specified in the HTML form."
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: lib/wfu_constants.php:63
|
237 |
-
msgid "Upload failed! The uploaded file was only partially uploaded."
|
238 |
-
msgstr ""
|
239 |
-
|
240 |
-
#: lib/wfu_constants.php:64
|
241 |
-
msgid "Upload failed! No file was uploaded."
|
242 |
-
msgstr ""
|
243 |
-
|
244 |
-
#: lib/wfu_constants.php:65
|
245 |
-
msgid "Upload failed! Failed to write file to disk."
|
246 |
-
msgstr ""
|
247 |
-
|
248 |
-
#: lib/wfu_constants.php:66
|
249 |
-
msgid ""
|
250 |
-
"Upload failed! Error occured while moving temporary file. Please contact "
|
251 |
-
"administrator."
|
252 |
-
msgstr ""
|
253 |
-
|
254 |
-
#: lib/wfu_constants.php:67
|
255 |
-
msgid "Upload cancelled!"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: lib/wfu_constants.php:68
|
259 |
-
msgid ""
|
260 |
-
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
261 |
-
"a way to ascertain which extension caused the file upload to stop; examining "
|
262 |
-
"the list of loaded extensions with phpinfo() may help."
|
263 |
-
msgstr ""
|
264 |
-
|
265 |
-
#: lib/wfu_constants.php:69
|
266 |
-
msgid "Upload failed! Error occured while attemting to upload the file."
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
270 |
-
msgid "Upload failed!"
|
271 |
-
msgstr ""
|
272 |
-
|
273 |
-
#: lib/wfu_constants.php:71
|
274 |
-
msgid "No file!"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: lib/wfu_constants.php:72
|
278 |
-
msgid ""
|
279 |
-
"Upload failed! The upload has been canceled by the user or the browser "
|
280 |
-
"dropped the connection."
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: lib/wfu_constants.php:73
|
284 |
-
msgid "Upload failed! Unknown error."
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: lib/wfu_constants.php:74
|
288 |
-
msgid "Please contact the administrator."
|
289 |
-
msgstr ""
|
290 |
-
|
291 |
-
#: lib/wfu_constants.php:75
|
292 |
-
msgid "No result from remote server!"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: lib/wfu_constants.php:76
|
296 |
-
msgid " but with warnings"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: lib/wfu_constants.php:77 lib/wfu_constants.php:79
|
300 |
-
msgid "Warning: JSON parse error."
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: lib/wfu_constants.php:78
|
304 |
-
msgid ""
|
305 |
-
"Upload parameters of this file, passed as JSON string to the handler, could "
|
306 |
-
"not be parsed."
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: lib/wfu_constants.php:80
|
310 |
-
msgid ""
|
311 |
-
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: lib/wfu_constants.php:81
|
315 |
-
msgid ""
|
316 |
-
"Redirection to classic form functionality occurred due to unknown error."
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
#: lib/wfu_constants.php:82
|
320 |
-
msgid ""
|
321 |
-
"Redirection to classic form functionality occurred because AJAX is not "
|
322 |
-
"supported."
|
323 |
-
msgstr ""
|
324 |
-
|
325 |
-
#: lib/wfu_constants.php:83
|
326 |
-
msgid ""
|
327 |
-
"Redirection to classic form functionality occurred because HTML5 is not "
|
328 |
-
"supported."
|
329 |
-
msgstr ""
|
330 |
-
|
331 |
-
#: lib/wfu_constants.php:84
|
332 |
-
msgid ""
|
333 |
-
"Redirection to classic form functionality occurred due to JSON parse error."
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: lib/wfu_constants.php:85
|
337 |
-
msgid "Please enable popup windows from the browser's settings!"
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: lib/wfu_constants.php:86
|
341 |
-
msgid "cannot be empty!"
|
342 |
-
msgstr ""
|
343 |
-
|
344 |
-
#: lib/wfu_constants.php:87
|
345 |
-
msgid "number not valid!"
|
346 |
-
msgstr ""
|
347 |
-
|
348 |
-
#: lib/wfu_constants.php:88
|
349 |
-
msgid "email not valid!"
|
350 |
-
msgstr ""
|
351 |
-
|
352 |
-
#: lib/wfu_constants.php:89
|
353 |
-
msgid "emails do not match!"
|
354 |
-
msgstr ""
|
355 |
-
|
356 |
-
#: lib/wfu_constants.php:90
|
357 |
-
msgid "no base email field in group!"
|
358 |
-
msgstr ""
|
359 |
-
|
360 |
-
#: lib/wfu_constants.php:91
|
361 |
-
msgid "passwords do not match!"
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#: lib/wfu_constants.php:92
|
365 |
-
msgid "no base password field in group!"
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: lib/wfu_constants.php:93
|
369 |
-
msgid "checkbox unchecked!"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: lib/wfu_constants.php:94
|
373 |
-
msgid "no option selected!"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: lib/wfu_constants.php:95
|
377 |
-
msgid "no item selected!"
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: lib/wfu_constants.php:96
|
381 |
-
msgid ""
|
382 |
-
"There are more than one instances of the plugin in this page with the same "
|
383 |
-
"id. Please change it."
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: lib/wfu_constants.php:97
|
387 |
-
msgid ""
|
388 |
-
"Cannot edit the shortcode because the page has been modified. Please reload "
|
389 |
-
"the page."
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: lib/wfu_constants.php:98
|
393 |
-
msgid "Your browser does not support webcam capture!"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: lib/wfu_constants.php:99
|
397 |
-
msgid "Your browser does not support video recording from the webcam!"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: lib/wfu_constants.php:100
|
401 |
-
msgid "No video was recorded!"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: lib/wfu_constants.php:101
|
405 |
-
msgid ""
|
406 |
-
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
407 |
-
"or use RecaptchaV2 (no account)."
|
408 |
-
msgstr ""
|
409 |
-
|
410 |
-
#: lib/wfu_constants.php:102
|
411 |
-
msgid ""
|
412 |
-
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
413 |
-
"notify administrator."
|
414 |
-
msgstr ""
|
415 |
-
|
416 |
-
#: lib/wfu_constants.php:103
|
417 |
-
msgid ""
|
418 |
-
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
419 |
-
"use RecaptchaV1 (no account)."
|
420 |
-
msgstr ""
|
421 |
-
|
422 |
-
#: lib/wfu_constants.php:104
|
423 |
-
msgid "ERROR: No site key. Please contact administrator!"
|
424 |
-
msgstr ""
|
425 |
-
|
426 |
-
#: lib/wfu_constants.php:105
|
427 |
-
msgid ""
|
428 |
-
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
429 |
-
"define Google Recaptcha keys."
|
430 |
-
msgstr ""
|
431 |
-
|
432 |
-
#: lib/wfu_constants.php:106
|
433 |
-
msgid "Bad captcha image!"
|
434 |
-
msgstr ""
|
435 |
-
|
436 |
-
#: lib/wfu_constants.php:107
|
437 |
-
msgid "No input!"
|
438 |
-
msgstr ""
|
439 |
-
|
440 |
-
#: lib/wfu_constants.php:108
|
441 |
-
msgid "Captcha not completed!"
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: lib/wfu_constants.php:109
|
445 |
-
msgid "Wrong captcha!"
|
446 |
-
msgstr ""
|
447 |
-
|
448 |
-
#: lib/wfu_constants.php:110
|
449 |
-
msgid "Error refreshing captcha!"
|
450 |
-
msgstr ""
|
451 |
-
|
452 |
-
#: lib/wfu_constants.php:111
|
453 |
-
msgid "Unknown captcha error!"
|
454 |
-
msgstr ""
|
455 |
-
|
456 |
-
#: lib/wfu_constants.php:112
|
457 |
-
msgid "Captcha not supported by your browser!"
|
458 |
-
msgstr ""
|
459 |
-
|
460 |
-
#: lib/wfu_constants.php:113
|
461 |
-
msgid "the secret parameter is missing"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: lib/wfu_constants.php:114
|
465 |
-
msgid "the secret parameter is invalid or malformed"
|
466 |
-
msgstr ""
|
467 |
-
|
468 |
-
#: lib/wfu_constants.php:115
|
469 |
-
msgid "the response parameter is missing"
|
470 |
-
msgstr ""
|
471 |
-
|
472 |
-
#: lib/wfu_constants.php:116
|
473 |
-
msgid "the response parameter is invalid or malformed"
|
474 |
-
msgstr ""
|
475 |
-
|
476 |
-
#: lib/wfu_constants.php:117
|
477 |
-
msgid "Please do not use drag drop due to an internal problem."
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: lib/wfu_constants.php:118
|
481 |
-
#, php-format
|
482 |
-
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: lib/wfu_constants.php:119
|
486 |
-
msgid "Chunked upload is not allowed!"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: lib/wfu_constants.php:120
|
490 |
-
msgid "Chunked upload aborted due to error in previous chunk!"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: lib/wfu_constants.php:121
|
494 |
-
msgid "Chunked upload failed, final file could not be created!"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: lib/wfu_constants.php:122
|
498 |
-
#, php-format
|
499 |
-
msgid "Could not write file chuck to destination on chunk %d"
|
500 |
-
msgstr ""
|
501 |
-
|
502 |
-
#: lib/wfu_constants.php:123
|
503 |
-
#, php-format
|
504 |
-
msgid "Could not enlarge destination file on chunk %d"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: lib/wfu_constants.php:124
|
508 |
-
#, php-format
|
509 |
-
msgid "Could not open file handles on chunk %d"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: lib/wfu_constants.php:125
|
513 |
-
msgid "You are not allowed to delete this file!"
|
514 |
-
msgstr ""
|
515 |
-
|
516 |
-
#: lib/wfu_constants.php:
|
517 |
-
msgid "
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: lib/wfu_constants.php:
|
521 |
-
msgid "
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: lib/wfu_constants.php:
|
525 |
-
msgid ""
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: lib/wfu_constants.php:133
|
543 |
-
msgid ""
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: lib/wfu_constants.php:
|
555 |
-
msgid ""
|
556 |
-
"
|
557 |
-
"
|
558 |
-
msgstr ""
|
559 |
-
|
560 |
-
#: lib/wfu_constants.php:
|
561 |
-
msgid ""
|
562 |
-
"
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
"
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
"
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: lib/wfu_constants.php:
|
578 |
-
msgid ""
|
579 |
-
"Failed to
|
580 |
-
"
|
581 |
-
msgstr ""
|
582 |
-
|
583 |
-
#: lib/wfu_constants.php:
|
584 |
-
msgid ""
|
585 |
-
"
|
586 |
-
"
|
587 |
-
msgstr ""
|
588 |
-
|
589 |
-
#: lib/wfu_constants.php:
|
590 |
-
msgid ""
|
591 |
-
"Failed to
|
592 |
-
"
|
593 |
-
msgstr ""
|
594 |
-
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
-
msgid ""
|
597 |
-
"
|
598 |
-
"go back
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: lib/wfu_constants.php:145
|
602 |
-
msgid "
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
msgstr ""
|
612 |
-
|
613 |
-
#: lib/wfu_constants.php:148
|
614 |
-
msgid "
|
615 |
-
msgstr ""
|
616 |
-
|
617 |
-
#: lib/wfu_constants.php:149
|
618 |
-
msgid "
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: lib/wfu_constants.php:150
|
622 |
-
msgid "File testfile
|
623 |
-
msgstr ""
|
624 |
-
|
625 |
-
#: lib/wfu_constants.php:151
|
626 |
-
msgid "File testfile
|
627 |
-
msgstr ""
|
628 |
-
|
629 |
-
#: lib/wfu_constants.php:152
|
630 |
-
msgid "File testfile
|
631 |
-
msgstr ""
|
632 |
-
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
-
msgid ""
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
"
|
643 |
-
msgstr ""
|
644 |
-
|
645 |
-
#: lib/wfu_constants.php:
|
646 |
-
msgid ""
|
647 |
-
"Insert variable %
|
648 |
-
"
|
649 |
-
msgstr ""
|
650 |
-
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
-
msgid ""
|
653 |
-
"Insert variable %
|
654 |
-
"of the
|
655 |
-
msgstr ""
|
656 |
-
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
-
msgid ""
|
659 |
-
"Insert variable %
|
660 |
-
"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
-
msgid ""
|
665 |
-
"Insert variable %
|
666 |
-
"the
|
667 |
-
msgstr ""
|
668 |
-
|
669 |
-
#: lib/wfu_constants.php:
|
670 |
-
msgid ""
|
671 |
-
"Insert variable %
|
672 |
-
"
|
673 |
-
msgstr ""
|
674 |
-
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
-
msgid ""
|
677 |
-
"Insert variable %
|
678 |
-
"the
|
679 |
-
msgstr ""
|
680 |
-
|
681 |
-
#: lib/wfu_constants.php:
|
682 |
-
msgid ""
|
683 |
-
"Insert variable %
|
684 |
-
"
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
-
msgid "
|
702 |
-
msgstr ""
|
703 |
-
|
704 |
-
#: lib/wfu_constants.php:168
|
705 |
-
msgid "
|
706 |
-
msgstr ""
|
707 |
-
|
708 |
-
#: lib/wfu_constants.php:169
|
709 |
-
msgid "
|
710 |
-
msgstr ""
|
711 |
-
|
712 |
-
#: lib/wfu_constants.php:170
|
713 |
-
msgid "
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: lib/wfu_constants.php:171
|
717 |
-
msgid "
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: lib/wfu_constants.php:172
|
721 |
-
msgid "
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: lib/wfu_constants.php:173
|
725 |
-
msgid "
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: lib/wfu_constants.php:174
|
729 |
-
msgid "
|
730 |
-
msgstr ""
|
731 |
-
|
732 |
-
#: lib/wfu_constants.php:175
|
733 |
-
msgid "
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: lib/wfu_constants.php:176
|
737 |
-
msgid "
|
738 |
-
msgstr ""
|
739 |
-
|
740 |
-
#: lib/wfu_constants.php:177
|
741 |
-
msgid "
|
742 |
-
msgstr ""
|
743 |
-
|
744 |
-
#: lib/wfu_constants.php:178
|
745 |
-
msgid "
|
746 |
-
msgstr ""
|
747 |
-
|
748 |
-
#: lib/wfu_constants.php:179
|
749 |
-
msgid "
|
750 |
-
msgstr "
|
751 |
-
|
752 |
-
#: lib/wfu_constants.php:180
|
753 |
-
msgid "
|
754 |
-
msgstr ""
|
755 |
-
|
756 |
-
#: lib/wfu_constants.php:181
|
757 |
-
msgid "
|
758 |
-
msgstr ""
|
759 |
-
|
760 |
-
#: lib/wfu_constants.php:182
|
761 |
-
msgid "
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: lib/wfu_constants.php:183
|
765 |
-
msgid "
|
766 |
-
msgstr ""
|
767 |
-
|
768 |
-
#: lib/wfu_constants.php:184
|
769 |
-
msgid "
|
770 |
-
msgstr ""
|
771 |
-
|
772 |
-
#: lib/wfu_constants.php:185
|
773 |
-
msgid "
|
774 |
-
msgstr ""
|
775 |
-
|
776 |
-
#: lib/wfu_constants.php:186
|
777 |
-
msgid "
|
778 |
-
msgstr ""
|
779 |
-
|
780 |
-
#: lib/wfu_constants.php:187
|
781 |
-
msgid "
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: lib/wfu_constants.php:188
|
785 |
-
msgid "
|
786 |
-
msgstr ""
|
787 |
-
|
788 |
-
#: lib/wfu_constants.php:189
|
789 |
-
msgid "
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
-
#: lib/wfu_constants.php:190
|
793 |
-
msgid "
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
-
#: lib/wfu_constants.php:191
|
797 |
-
msgid "
|
798 |
-
msgstr ""
|
799 |
-
|
800 |
-
#: lib/wfu_constants.php:192
|
801 |
-
msgid "
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
-
#: lib/wfu_constants.php:
|
805 |
-
msgid "
|
806 |
-
msgstr ""
|
807 |
-
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
-
msgid "
|
810 |
-
msgstr ""
|
811 |
-
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
-
msgid "
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
-
msgid "
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
-
msgid "
|
822 |
-
msgstr ""
|
823 |
-
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
-
msgid "
|
826 |
-
msgstr ""
|
827 |
-
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
-
msgid "
|
830 |
-
msgstr ""
|
831 |
-
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
-
msgid "
|
834 |
-
msgstr ""
|
835 |
-
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
-
msgid "
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
-
msgid "
|
842 |
-
msgstr ""
|
843 |
-
|
844 |
-
#: lib/wfu_constants.php:205
|
845 |
-
msgid "
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: lib/wfu_constants.php:206
|
849 |
-
msgid "
|
850 |
-
msgstr ""
|
851 |
-
|
852 |
-
#: lib/wfu_constants.php:207
|
853 |
-
msgid "
|
854 |
-
msgstr ""
|
855 |
-
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
-
msgid "
|
858 |
-
msgstr ""
|
859 |
-
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
-
msgid "
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
-
msgid "
|
866 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-06 00:00+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-06 00:00+0200\n"
|
7 |
+
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
+
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
+
"Language: en\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 ""
|
25 |
+
|
26 |
+
#: lib/wfu_constants.php:10
|
27 |
+
msgid "Select File/Select Files"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#: lib/wfu_constants.php:11
|
31 |
+
msgid "Upload File/Upload Files"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: lib/wfu_constants.php:15
|
35 |
+
msgid "Select File"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: lib/wfu_constants.php:16
|
39 |
+
msgid "Upload File"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
#: lib/wfu_constants.php:19
|
43 |
+
msgid "File Upload Notification"
|
44 |
+
msgstr ""
|
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 |
+
|
52 |
+
#: lib/wfu_constants.php:21
|
53 |
+
#, php-format
|
54 |
+
msgid "File %filename% uploaded successfully"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: lib/wfu_constants.php:22
|
58 |
+
#, php-format
|
59 |
+
msgid "File %filename% uploaded successfully but with warnings"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: lib/wfu_constants.php:23
|
63 |
+
msgid "File %filename% not uploaded"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
#: lib/wfu_constants.php:24
|
67 |
+
msgid "File %filename% is being uploaded"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
#: lib/wfu_constants.php:25
|
71 |
+
msgid "Your message"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: lib/wfu_constants.php:26
|
75 |
+
msgid "Please fill in the above words: "
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: lib/wfu_constants.php:27
|
79 |
+
msgid "Upload Media"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: lib/wfu_constants.php:28
|
83 |
+
msgid "videostream"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: lib/wfu_constants.php:29
|
87 |
+
msgid "screenshot"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: lib/wfu_constants.php:31
|
91 |
+
msgid "File"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: lib/wfu_constants.php:32
|
95 |
+
msgid "Date"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: lib/wfu_constants.php:33
|
99 |
+
msgid "Size"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: lib/wfu_constants.php:34
|
103 |
+
msgid "User"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: lib/wfu_constants.php:35
|
107 |
+
msgid "Page"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: lib/wfu_constants.php:36
|
111 |
+
msgid "User Fields"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/wfu_constants.php:37
|
115 |
+
msgid "Download"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: lib/wfu_constants.php:38
|
119 |
+
msgid "Download this file"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: lib/wfu_constants.php:39
|
123 |
+
msgid "Delete"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: lib/wfu_constants.php:40
|
127 |
+
msgid "Delete this file"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: lib/wfu_constants.php:41
|
131 |
+
msgid "Sort list based on this column"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: lib/wfu_constants.php:42
|
135 |
+
msgid "guest"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: lib/wfu_constants.php:43
|
139 |
+
msgid "unknown"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: lib/wfu_constants.php:45
|
143 |
+
msgid ""
|
144 |
+
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
145 |
+
"attribute."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: lib/wfu_constants.php:46
|
149 |
+
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
150 |
+
msgstr ""
|
151 |
+
|
152 |
+
#: lib/wfu_constants.php:47
|
153 |
+
msgid ""
|
154 |
+
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
155 |
+
"syntax."
|
156 |
+
msgstr ""
|
157 |
+
|
158 |
+
#: lib/wfu_constants.php:48
|
159 |
+
msgid ""
|
160 |
+
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
161 |
+
"attribute."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: lib/wfu_constants.php:49
|
165 |
+
msgid ""
|
166 |
+
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
167 |
+
"preventing the upload of big files.\n"
|
168 |
+
"PHP directive upload_max_filesize limit is: "
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: lib/wfu_constants.php:50
|
172 |
+
msgid ""
|
173 |
+
"The upload time limit of PHP directive max_input_time is preventing the "
|
174 |
+
"upload of big files.\n"
|
175 |
+
"PHP directive max_input_time limit is: "
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: lib/wfu_constants.php:51
|
179 |
+
msgid ""
|
180 |
+
"Error. Permission denied to write to target folder.\n"
|
181 |
+
"Check and correct read/write permissions of target folder."
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: lib/wfu_constants.php:52
|
185 |
+
msgid ""
|
186 |
+
"Error. This file was rejected because its extension is not correct. Its "
|
187 |
+
"proper filename is: "
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: lib/wfu_constants.php:53
|
191 |
+
msgid "Targer folder doesn't exist."
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: lib/wfu_constants.php:54
|
195 |
+
msgid "Upload failed! Missing a temporary folder."
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: lib/wfu_constants.php:55
|
199 |
+
msgid "Upload failed! Permission denied to write to target folder."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: lib/wfu_constants.php:56
|
203 |
+
msgid "File not allowed."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: lib/wfu_constants.php:57
|
207 |
+
msgid "File is suspicious and was rejected."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: lib/wfu_constants.php:58
|
211 |
+
msgid "The uploaded file exceeds the file size limit."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: lib/wfu_constants.php:59
|
215 |
+
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: lib/wfu_constants.php:60
|
219 |
+
msgid ""
|
220 |
+
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
221 |
+
"Please contact the administrator."
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: lib/wfu_constants.php:61
|
225 |
+
msgid ""
|
226 |
+
"Upload failed! The duration of the upload exceeded the time limit of the "
|
227 |
+
"server. Please contact the administrator."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: lib/wfu_constants.php:62
|
231 |
+
msgid ""
|
232 |
+
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
233 |
+
"was specified in the HTML form."
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: lib/wfu_constants.php:63
|
237 |
+
msgid "Upload failed! The uploaded file was only partially uploaded."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: lib/wfu_constants.php:64
|
241 |
+
msgid "Upload failed! No file was uploaded."
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: lib/wfu_constants.php:65
|
245 |
+
msgid "Upload failed! Failed to write file to disk."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: lib/wfu_constants.php:66
|
249 |
+
msgid ""
|
250 |
+
"Upload failed! Error occured while moving temporary file. Please contact "
|
251 |
+
"administrator."
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: lib/wfu_constants.php:67
|
255 |
+
msgid "Upload cancelled!"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: lib/wfu_constants.php:68
|
259 |
+
msgid ""
|
260 |
+
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
261 |
+
"a way to ascertain which extension caused the file upload to stop; examining "
|
262 |
+
"the list of loaded extensions with phpinfo() may help."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: lib/wfu_constants.php:69
|
266 |
+
msgid "Upload failed! Error occured while attemting to upload the file."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
270 |
+
msgid "Upload failed!"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: lib/wfu_constants.php:71
|
274 |
+
msgid "No file!"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: lib/wfu_constants.php:72
|
278 |
+
msgid ""
|
279 |
+
"Upload failed! The upload has been canceled by the user or the browser "
|
280 |
+
"dropped the connection."
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: lib/wfu_constants.php:73
|
284 |
+
msgid "Upload failed! Unknown error."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: lib/wfu_constants.php:74
|
288 |
+
msgid "Please contact the administrator."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: lib/wfu_constants.php:75
|
292 |
+
msgid "No result from remote server!"
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: lib/wfu_constants.php:76
|
296 |
+
msgid " but with warnings"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: lib/wfu_constants.php:77 lib/wfu_constants.php:79
|
300 |
+
msgid "Warning: JSON parse error."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: lib/wfu_constants.php:78
|
304 |
+
msgid ""
|
305 |
+
"Upload parameters of this file, passed as JSON string to the handler, could "
|
306 |
+
"not be parsed."
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: lib/wfu_constants.php:80
|
310 |
+
msgid ""
|
311 |
+
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: lib/wfu_constants.php:81
|
315 |
+
msgid ""
|
316 |
+
"Redirection to classic form functionality occurred due to unknown error."
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: lib/wfu_constants.php:82
|
320 |
+
msgid ""
|
321 |
+
"Redirection to classic form functionality occurred because AJAX is not "
|
322 |
+
"supported."
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: lib/wfu_constants.php:83
|
326 |
+
msgid ""
|
327 |
+
"Redirection to classic form functionality occurred because HTML5 is not "
|
328 |
+
"supported."
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: lib/wfu_constants.php:84
|
332 |
+
msgid ""
|
333 |
+
"Redirection to classic form functionality occurred due to JSON parse error."
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: lib/wfu_constants.php:85
|
337 |
+
msgid "Please enable popup windows from the browser's settings!"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: lib/wfu_constants.php:86
|
341 |
+
msgid "cannot be empty!"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: lib/wfu_constants.php:87
|
345 |
+
msgid "number not valid!"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: lib/wfu_constants.php:88
|
349 |
+
msgid "email not valid!"
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: lib/wfu_constants.php:89
|
353 |
+
msgid "emails do not match!"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: lib/wfu_constants.php:90
|
357 |
+
msgid "no base email field in group!"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: lib/wfu_constants.php:91
|
361 |
+
msgid "passwords do not match!"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: lib/wfu_constants.php:92
|
365 |
+
msgid "no base password field in group!"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: lib/wfu_constants.php:93
|
369 |
+
msgid "checkbox unchecked!"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: lib/wfu_constants.php:94
|
373 |
+
msgid "no option selected!"
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: lib/wfu_constants.php:95
|
377 |
+
msgid "no item selected!"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: lib/wfu_constants.php:96
|
381 |
+
msgid ""
|
382 |
+
"There are more than one instances of the plugin in this page with the same "
|
383 |
+
"id. Please change it."
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: lib/wfu_constants.php:97
|
387 |
+
msgid ""
|
388 |
+
"Cannot edit the shortcode because the page has been modified. Please reload "
|
389 |
+
"the page."
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: lib/wfu_constants.php:98
|
393 |
+
msgid "Your browser does not support webcam capture!"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: lib/wfu_constants.php:99
|
397 |
+
msgid "Your browser does not support video recording from the webcam!"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: lib/wfu_constants.php:100
|
401 |
+
msgid "No video was recorded!"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: lib/wfu_constants.php:101
|
405 |
+
msgid ""
|
406 |
+
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
407 |
+
"or use RecaptchaV2 (no account)."
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: lib/wfu_constants.php:102
|
411 |
+
msgid ""
|
412 |
+
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
413 |
+
"notify administrator."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: lib/wfu_constants.php:103
|
417 |
+
msgid ""
|
418 |
+
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
419 |
+
"use RecaptchaV1 (no account)."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: lib/wfu_constants.php:104
|
423 |
+
msgid "ERROR: No site key. Please contact administrator!"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: lib/wfu_constants.php:105
|
427 |
+
msgid ""
|
428 |
+
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
429 |
+
"define Google Recaptcha keys."
|
430 |
+
msgstr ""
|
431 |
+
|
432 |
+
#: lib/wfu_constants.php:106
|
433 |
+
msgid "Bad captcha image!"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: lib/wfu_constants.php:107
|
437 |
+
msgid "No input!"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: lib/wfu_constants.php:108
|
441 |
+
msgid "Captcha not completed!"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: lib/wfu_constants.php:109
|
445 |
+
msgid "Wrong captcha!"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: lib/wfu_constants.php:110
|
449 |
+
msgid "Error refreshing captcha!"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: lib/wfu_constants.php:111
|
453 |
+
msgid "Unknown captcha error!"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: lib/wfu_constants.php:112
|
457 |
+
msgid "Captcha not supported by your browser!"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: lib/wfu_constants.php:113
|
461 |
+
msgid "the secret parameter is missing"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: lib/wfu_constants.php:114
|
465 |
+
msgid "the secret parameter is invalid or malformed"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: lib/wfu_constants.php:115
|
469 |
+
msgid "the response parameter is missing"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: lib/wfu_constants.php:116
|
473 |
+
msgid "the response parameter is invalid or malformed"
|
474 |
+
msgstr ""
|
475 |
+
|
476 |
+
#: lib/wfu_constants.php:117
|
477 |
+
msgid "Please do not use drag drop due to an internal problem."
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: lib/wfu_constants.php:118
|
481 |
+
#, php-format
|
482 |
+
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: lib/wfu_constants.php:119
|
486 |
+
msgid "Chunked upload is not allowed!"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: lib/wfu_constants.php:120
|
490 |
+
msgid "Chunked upload aborted due to error in previous chunk!"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: lib/wfu_constants.php:121
|
494 |
+
msgid "Chunked upload failed, final file could not be created!"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: lib/wfu_constants.php:122
|
498 |
+
#, php-format
|
499 |
+
msgid "Could not write file chuck to destination on chunk %d"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: lib/wfu_constants.php:123
|
503 |
+
#, php-format
|
504 |
+
msgid "Could not enlarge destination file on chunk %d"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: lib/wfu_constants.php:124
|
508 |
+
#, php-format
|
509 |
+
msgid "Could not open file handles on chunk %d"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: lib/wfu_constants.php:125
|
513 |
+
msgid "You are not allowed to delete this file!"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: lib/wfu_constants.php:126
|
517 |
+
msgid "File was not deleted!"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: lib/wfu_constants.php:127
|
521 |
+
msgid "No file was deleted!"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: lib/wfu_constants.php:128
|
525 |
+
msgid "Some files were not deleted!"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: lib/wfu_constants.php:130
|
529 |
+
msgid "Upload skipped! File already exists."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: lib/wfu_constants.php:131
|
533 |
+
msgid "The extension of the file does not match its contents."
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: lib/wfu_constants.php:132
|
537 |
+
msgid ""
|
538 |
+
"Upload succeeded but the file is suspicious because its contents do not "
|
539 |
+
"match its extension. Its proper filename is: "
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: lib/wfu_constants.php:133
|
543 |
+
msgid "No files have been selected!"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: lib/wfu_constants.php:134
|
547 |
+
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: lib/wfu_constants.php:135
|
551 |
+
msgid "Notification email was not sent because there were no files uploaded."
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
#: lib/wfu_constants.php:136
|
555 |
+
msgid ""
|
556 |
+
"Notification email was not sent because no recipients were defined. Please "
|
557 |
+
"check notifyrecipients attribute in the shortcode."
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: lib/wfu_constants.php:137
|
561 |
+
msgid ""
|
562 |
+
"Notification email was not sent due to an error. Please check "
|
563 |
+
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: lib/wfu_constants.php:138
|
567 |
+
msgid ""
|
568 |
+
"Redirection not executed because redirection link is empty. Please check "
|
569 |
+
"redirectlink attribute."
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: lib/wfu_constants.php:139
|
573 |
+
msgid ""
|
574 |
+
"Redirection not executed because not all files were successfully uploaded."
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: lib/wfu_constants.php:141
|
578 |
+
msgid ""
|
579 |
+
"Failed to add the shortcode to the page/post. Please try again. If the "
|
580 |
+
"message persists, contact administrator."
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: lib/wfu_constants.php:142
|
584 |
+
msgid ""
|
585 |
+
"Failed to edit the shortcode because the contents of the page changed. Try "
|
586 |
+
"again to edit the shortcode."
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: lib/wfu_constants.php:143
|
590 |
+
msgid ""
|
591 |
+
"Failed to delete the shortcode because the contents of the page changed. Try "
|
592 |
+
"again to delete it."
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: lib/wfu_constants.php:144
|
596 |
+
msgid ""
|
597 |
+
"The page containing the shortcode has been modified and it is no longer "
|
598 |
+
"valid. Please go back to reload the shortcode."
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: lib/wfu_constants.php:145
|
602 |
+
msgid ""
|
603 |
+
"Failed to update the shortcode because the contents of the page changed. Go "
|
604 |
+
"back to reload the shortcode."
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: lib/wfu_constants.php:146
|
608 |
+
msgid ""
|
609 |
+
"Failed to update the shortcode. Please try again. If the problem persists, "
|
610 |
+
"go back and reload the shortcode."
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: lib/wfu_constants.php:148
|
614 |
+
msgid "This is a test message"
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: lib/wfu_constants.php:149
|
618 |
+
msgid "This is a test administrator message"
|
619 |
+
msgstr ""
|
620 |
+
|
621 |
+
#: lib/wfu_constants.php:150
|
622 |
+
msgid "File testfile 1 under test"
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: lib/wfu_constants.php:151
|
626 |
+
msgid "File testfile 1 message"
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: lib/wfu_constants.php:152
|
630 |
+
msgid "File testfile 1 administrator message"
|
631 |
+
msgstr ""
|
632 |
+
|
633 |
+
#: lib/wfu_constants.php:153
|
634 |
+
msgid "File testfile 2 under test"
|
635 |
+
msgstr ""
|
636 |
+
|
637 |
+
#: lib/wfu_constants.php:154
|
638 |
+
msgid "File testfile 2 message"
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: lib/wfu_constants.php:155
|
642 |
+
msgid "File testfile 2 administrator message"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: lib/wfu_constants.php:157
|
646 |
+
msgid ""
|
647 |
+
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
648 |
+
"current user."
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: lib/wfu_constants.php:158
|
652 |
+
msgid ""
|
653 |
+
"Insert variable %username% inside text. It will be replaced by the username "
|
654 |
+
"of the current user."
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: lib/wfu_constants.php:159
|
658 |
+
msgid ""
|
659 |
+
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
660 |
+
"the current user."
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: lib/wfu_constants.php:160
|
664 |
+
msgid ""
|
665 |
+
"Insert variable %filename% inside text. It will be replaced by the filename "
|
666 |
+
"of the uploaded file."
|
667 |
+
msgstr ""
|
668 |
+
|
669 |
+
#: lib/wfu_constants.php:161
|
670 |
+
msgid ""
|
671 |
+
"Insert variable %filepath% inside text. It will be replaced by the full "
|
672 |
+
"filepath of the uploaded file."
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: lib/wfu_constants.php:162
|
676 |
+
msgid ""
|
677 |
+
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
678 |
+
"the website."
|
679 |
+
msgstr ""
|
680 |
+
|
681 |
+
#: lib/wfu_constants.php:163
|
682 |
+
msgid ""
|
683 |
+
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
684 |
+
"current page."
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: lib/wfu_constants.php:164
|
688 |
+
msgid ""
|
689 |
+
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
690 |
+
"the current page."
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: lib/wfu_constants.php:165
|
694 |
+
msgid ""
|
695 |
+
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
696 |
+
"drop-down list. It will be replaced by the value that the user entered in "
|
697 |
+
"this field."
|
698 |
+
msgstr ""
|
699 |
+
|
700 |
+
#: lib/wfu_constants.php:166
|
701 |
+
msgid "Insert variable %n% inside text to denote a line change."
|
702 |
+
msgstr ""
|
703 |
+
|
704 |
+
#: lib/wfu_constants.php:168
|
705 |
+
msgid "Test Mode"
|
706 |
+
msgstr ""
|
707 |
+
|
708 |
+
#: lib/wfu_constants.php:169
|
709 |
+
msgid "select dir..."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: lib/wfu_constants.php:170
|
713 |
+
msgid "type dir"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
#: lib/wfu_constants.php:171
|
717 |
+
msgid "Upload path: %filepath%"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
#: lib/wfu_constants.php:172
|
721 |
+
msgid "Failed upload path: %filepath%"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: lib/wfu_constants.php:173
|
725 |
+
msgid " (required)"
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: lib/wfu_constants.php:174
|
729 |
+
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: lib/wfu_constants.php:175
|
733 |
+
msgid "checking captcha..."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: lib/wfu_constants.php:176
|
737 |
+
msgid "refreshing..."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: lib/wfu_constants.php:177
|
741 |
+
msgid "correct captcha"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: lib/wfu_constants.php:178
|
745 |
+
msgid "click to continue the upload"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: lib/wfu_constants.php:179
|
749 |
+
msgid "Are you sure you want to delete this file?"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: lib/wfu_constants.php:180
|
753 |
+
msgid "Are you sure you want to delete these files?"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: lib/wfu_constants.php:181
|
757 |
+
msgid "Bulk Actions"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: lib/wfu_constants.php:182
|
761 |
+
msgid "Apply"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: lib/wfu_constants.php:183
|
765 |
+
msgid "Are you sure that you want to cancel the upload?"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: lib/wfu_constants.php:184
|
769 |
+
msgid "cancel upload of this file"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: lib/wfu_constants.php:185
|
773 |
+
msgid "Upload in progress"
|
774 |
+
msgstr "Uploading..."
|
775 |
+
|
776 |
+
#: lib/wfu_constants.php:186
|
777 |
+
msgid "Upload in progress with warnings!"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: lib/wfu_constants.php:187
|
781 |
+
msgid "Upload in progress but some files already failed!"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: lib/wfu_constants.php:188
|
785 |
+
msgid "Upload in progress but no files uploaded so far!"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: lib/wfu_constants.php:189
|
789 |
+
msgid "All files uploaded successfully"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: lib/wfu_constants.php:190
|
793 |
+
msgid "All files uploaded successfully but there are warnings!"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: lib/wfu_constants.php:191
|
797 |
+
msgid "File uploaded successfully but there are warnings!"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: lib/wfu_constants.php:192
|
801 |
+
msgid "Some files failed to upload!"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: lib/wfu_constants.php:193
|
805 |
+
msgid "All files failed to upload"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: lib/wfu_constants.php:194
|
809 |
+
msgid "File failed to upload"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: lib/wfu_constants.php:195
|
813 |
+
msgid "There are no files to upload!"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: lib/wfu_constants.php:196
|
817 |
+
msgid "Test upload message"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: lib/wfu_constants.php:197
|
821 |
+
msgid "JSON parse warning!"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: lib/wfu_constants.php:198
|
825 |
+
msgid "please wait while redirecting..."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: lib/wfu_constants.php:200
|
829 |
+
msgid "Open visual shortcode editor in new window"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: lib/wfu_constants.php:201
|
833 |
+
msgid "loading visual editor"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: lib/wfu_constants.php:202
|
837 |
+
msgid "Clear file list?"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: lib/wfu_constants.php:203
|
841 |
+
msgid "DROP HERE"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: lib/wfu_constants.php:205
|
845 |
+
msgid "record video"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: lib/wfu_constants.php:206
|
849 |
+
msgid "take a picture"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: lib/wfu_constants.php:207
|
853 |
+
msgid "turn webcam on/off"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: lib/wfu_constants.php:208
|
857 |
+
msgid "go live again"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: lib/wfu_constants.php:209
|
861 |
+
msgid "end recording"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: lib/wfu_constants.php:210
|
865 |
+
msgid "play"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: lib/wfu_constants.php:211
|
869 |
+
msgid "pause"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: lib/wfu_constants.php:212
|
873 |
+
msgid "go to the beginning"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: lib/wfu_constants.php:213
|
877 |
+
msgid "go to the end"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: lib/wfu_constants.php:215
|
881 |
+
msgid "Wordpress File Upload Form"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: lib/wfu_constants.php:216
|
885 |
+
msgid "Wordpress File Upload plugin uploader for sidebars"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: lib/wfu_constants.php:217
|
889 |
+
msgid "Upload Files"
|
890 |
+
msgstr ""
|
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"
|
@@ -302,7 +302,7 @@ msgstr ""
|
|
302 |
"Envoi impossible ! Une erreur est survenue pendant la tentative d'envoi du "
|
303 |
"fichier."
|
304 |
|
305 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
306 |
msgid "Upload failed!"
|
307 |
msgstr "Envoi impossible !"
|
308 |
|
@@ -574,37 +574,49 @@ msgstr "Impossible d'ouvrir le fichier handles sur bloc %d"
|
|
574 |
msgid "You are not allowed to delete this file!"
|
575 |
msgstr "Vous n' êtes pas autorisé à supprimer ce fichier !"
|
576 |
|
|
|
|
|
|
|
|
|
577 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
msgid "Upload skipped! File already exists."
|
579 |
msgstr "Envoi ignoré ! Le fichier existe déjà."
|
580 |
|
581 |
-
#: lib/wfu_constants.php:
|
582 |
msgid "The extension of the file does not match its contents."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid ""
|
587 |
"Upload succeeded but the file is suspicious because its contents do not "
|
588 |
"match its extension. Its proper filename is: "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: lib/wfu_constants.php:
|
592 |
msgid "No files have been selected!"
|
593 |
msgstr "Aucun fichier n'a été envoyé !"
|
594 |
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
597 |
msgstr ""
|
598 |
"WPFilebase Plugin n'a pas été mis à jour car il n'y a pas de fichiers à "
|
599 |
"envoyer."
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "Notification email was not sent because there were no files uploaded."
|
603 |
msgstr ""
|
604 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de fichiers à "
|
605 |
"envoyer."
|
606 |
|
607 |
-
#: lib/wfu_constants.php:
|
608 |
msgid ""
|
609 |
"Notification email was not sent because no recipients were defined. Please "
|
610 |
"check notifyrecipients attribute in the shortcode."
|
@@ -612,7 +624,7 @@ msgstr ""
|
|
612 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de destinataire. "
|
613 |
"Merci de vérifier l'attribut notifyrecipients dans le shortcode."
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid ""
|
617 |
"Notification email was not sent due to an error. Please check "
|
618 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -620,7 +632,7 @@ msgstr ""
|
|
620 |
"Le mail de notification n'a pas été envoyé car il n'y a une erreur. Merci de "
|
621 |
"vérifier les attributs notifyrecipients, notifysubject et notifymessage."
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid ""
|
625 |
"Redirection not executed because redirection link is empty. Please check "
|
626 |
"redirectlink attribute."
|
@@ -628,14 +640,14 @@ msgstr ""
|
|
628 |
"La redirection n'a pas été effectuée car le lien de redirection est vide. "
|
629 |
"Merci de vérifier l'attribut redirectlink."
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
msgid ""
|
633 |
"Redirection not executed because not all files were successfully uploaded."
|
634 |
msgstr ""
|
635 |
"La redirection n'est pas exécutée car tous les fichiers n'ont pas été "
|
636 |
"envoyés."
|
637 |
|
638 |
-
#: lib/wfu_constants.php:
|
639 |
msgid ""
|
640 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
641 |
"message persists, contact administrator."
|
@@ -643,7 +655,7 @@ msgstr ""
|
|
643 |
"Impossible d' ajouter le shortcode à la page / poste. Essayez à nouveau. Si "
|
644 |
"le message persiste, contactez l' administrateur."
|
645 |
|
646 |
-
#: lib/wfu_constants.php:
|
647 |
msgid ""
|
648 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
649 |
"again to edit the shortcode."
|
@@ -651,7 +663,7 @@ msgstr ""
|
|
651 |
"Impossible de modifier le shortcode parce que le contenu de la page a "
|
652 |
"changé. Essayez à nouveau de modifier le shortcode."
|
653 |
|
654 |
-
#: lib/wfu_constants.php:
|
655 |
msgid ""
|
656 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
657 |
"again to delete it."
|
@@ -659,7 +671,7 @@ msgstr ""
|
|
659 |
"Impossible de supprimer le shortcode parce que le contenu de la page a "
|
660 |
"changé. Essayez à nouveau de le supprimer."
|
661 |
|
662 |
-
#: lib/wfu_constants.php:
|
663 |
msgid ""
|
664 |
"The page containing the shortcode has been modified and it is no longer "
|
665 |
"valid. Please go back to reload the shortcode."
|
@@ -667,7 +679,7 @@ msgstr ""
|
|
667 |
"La page contenant le shortcode a été modifié et il n'est plus valide. "
|
668 |
"Rechargez le shortcode."
|
669 |
|
670 |
-
#: lib/wfu_constants.php:
|
671 |
msgid ""
|
672 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
673 |
"back to reload the shortcode."
|
@@ -675,7 +687,7 @@ msgstr ""
|
|
675 |
"Impossible de mettre à jour le shortcode parce que le contenu de la page a "
|
676 |
"changé. Rechargez le shortcode."
|
677 |
|
678 |
-
#: lib/wfu_constants.php:
|
679 |
msgid ""
|
680 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
681 |
"go back and reload the shortcode."
|
@@ -683,39 +695,39 @@ msgstr ""
|
|
683 |
"Impossible de mettre à jour le shortcode. Essayez à nouveau. Si le problème "
|
684 |
"persiste, rechargez le shortcode."
|
685 |
|
686 |
-
#: lib/wfu_constants.php:
|
687 |
msgid "This is a test message"
|
688 |
msgstr "Ceci est un message de test"
|
689 |
|
690 |
-
#: lib/wfu_constants.php:
|
691 |
msgid "This is a test administrator message"
|
692 |
msgstr "Ceci est un message administrateur de test"
|
693 |
|
694 |
-
#: lib/wfu_constants.php:
|
695 |
msgid "File testfile 1 under test"
|
696 |
msgstr "File testfile 1 under test"
|
697 |
|
698 |
-
#: lib/wfu_constants.php:
|
699 |
msgid "File testfile 1 message"
|
700 |
msgstr "File testfile 1 message"
|
701 |
|
702 |
-
#: lib/wfu_constants.php:
|
703 |
msgid "File testfile 1 administrator message"
|
704 |
msgstr "Message administrateur File testfile"
|
705 |
|
706 |
-
#: lib/wfu_constants.php:
|
707 |
msgid "File testfile 2 under test"
|
708 |
msgstr "En test File testfile"
|
709 |
|
710 |
-
#: lib/wfu_constants.php:
|
711 |
msgid "File testfile 2 message"
|
712 |
msgstr "Message File testfile 2"
|
713 |
|
714 |
-
#: lib/wfu_constants.php:
|
715 |
msgid "File testfile 2 administrator message"
|
716 |
msgstr "Message administrateur File testfile 2"
|
717 |
|
718 |
-
#: lib/wfu_constants.php:
|
719 |
msgid ""
|
720 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
721 |
"current user."
|
@@ -723,7 +735,7 @@ msgstr ""
|
|
723 |
"Insérez %userid% variable dans le texte. Il sera remplacé par l'id de "
|
724 |
"l'utilisateur courant."
|
725 |
|
726 |
-
#: lib/wfu_constants.php:
|
727 |
msgid ""
|
728 |
"Insert variable %username% inside text. It will be replaced by the username "
|
729 |
"of the current user."
|
@@ -731,7 +743,7 @@ msgstr ""
|
|
731 |
"Insérez la variable %username% dans le texte. Il sera remplacé par le "
|
732 |
"username de l'utilisateur courant."
|
733 |
|
734 |
-
#: lib/wfu_constants.php:
|
735 |
msgid ""
|
736 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
737 |
"the current user."
|
@@ -739,7 +751,7 @@ msgstr ""
|
|
739 |
"Insérez la variable %useremail% dans le texte. Il sera remplacé par l'email "
|
740 |
"de l'utilisateur courant."
|
741 |
|
742 |
-
#: lib/wfu_constants.php:
|
743 |
msgid ""
|
744 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
745 |
"of the uploaded file."
|
@@ -747,7 +759,7 @@ msgstr ""
|
|
747 |
"Insérez la variable %filename% dans le texte. Il sera remplacé par le nom du "
|
748 |
"fichier à envoyer."
|
749 |
|
750 |
-
#: lib/wfu_constants.php:
|
751 |
msgid ""
|
752 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
753 |
"filepath of the uploaded file."
|
@@ -755,7 +767,7 @@ msgstr ""
|
|
755 |
"Insérez la variable %filepath% dans le texte. Il sera remplacé par le chemin "
|
756 |
"complet du fichier envoyé."
|
757 |
|
758 |
-
#: lib/wfu_constants.php:
|
759 |
msgid ""
|
760 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
761 |
"the website."
|
@@ -763,7 +775,7 @@ msgstr ""
|
|
763 |
"Insérez la variable %blogid% dans le texte. Il sera remplacé par l'id du "
|
764 |
"blog du site web."
|
765 |
|
766 |
-
#: lib/wfu_constants.php:
|
767 |
msgid ""
|
768 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
769 |
"current page."
|
@@ -771,7 +783,7 @@ msgstr ""
|
|
771 |
"Insérez %pageid% variable dans le texte. Il sera remplacé par l'id de la "
|
772 |
"page en cours."
|
773 |
|
774 |
-
#: lib/wfu_constants.php:
|
775 |
msgid ""
|
776 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
777 |
"the current page."
|
@@ -779,7 +791,7 @@ msgstr ""
|
|
779 |
"Insérez %pagetitle% variable dans le texte. Il sera remplacé par le titre de "
|
780 |
"la page courante."
|
781 |
|
782 |
-
#: lib/wfu_constants.php:
|
783 |
msgid ""
|
784 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
785 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -789,186 +801,198 @@ msgstr ""
|
|
789 |
"l'utilisateur dans la liste déroulante. Il sera remplacé par la valeur que "
|
790 |
"l'utilisateur aura entré dans ce champ."
|
791 |
|
792 |
-
#: lib/wfu_constants.php:
|
793 |
msgid "Insert variable %n% inside text to denote a line change."
|
794 |
msgstr ""
|
795 |
"Insérez la variable %n% à l'intérieur du texte pour indiquer un changement "
|
796 |
"de ligne."
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid "Test Mode"
|
800 |
msgstr "Mode de test"
|
801 |
|
802 |
-
#: lib/wfu_constants.php:
|
803 |
msgid "select dir..."
|
804 |
msgstr "Sélectionnez dir"
|
805 |
|
806 |
-
#: lib/wfu_constants.php:
|
807 |
msgid "type dir"
|
808 |
msgstr "Saisir dir"
|
809 |
|
810 |
-
#: lib/wfu_constants.php:
|
811 |
msgid "Upload path: %filepath%"
|
812 |
msgstr "Chemin d'upload : %filepath%"
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid "Failed upload path: %filepath%"
|
816 |
msgstr "Mauvais répertoire d'envoi : %filepath%"
|
817 |
|
818 |
-
#: lib/wfu_constants.php:
|
819 |
msgid " (required)"
|
820 |
msgstr " (*)"
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
824 |
msgstr "Les fichiers sont envoyés. Êtes-vous sûr de vouloir quitter la page ?"
|
825 |
|
826 |
-
#: lib/wfu_constants.php:
|
827 |
msgid "checking captcha..."
|
828 |
msgstr "Vérifiez captcha..."
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "refreshing..."
|
832 |
msgstr "Mise à jour..."
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "correct captcha"
|
836 |
msgstr "Captcha correctement saisi"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "click to continue the upload"
|
840 |
msgstr "Cliquer pour continuer l'envoi"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "Are you sure you want to delete this file?"
|
844 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier?"
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
847 |
msgid "Are you sure that you want to cancel the upload?"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "cancel upload of this file"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "Upload in progress"
|
856 |
msgstr "Envoi en cours"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "Upload in progress with warnings!"
|
860 |
msgstr "Envoi en cours mais avec des avertissements!"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid "Upload in progress but some files already failed!"
|
864 |
msgstr "Envoi en cours mais certains fichiers ont échoués!"
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "Upload in progress but no files uploaded so far!"
|
868 |
msgstr "Envoi en cours mais aucun fichier n'a été envoyé pour le moment!"
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid "All files uploaded successfully"
|
872 |
msgstr "Tous les fichiers ont été envoyés avec succès"
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid "All files uploaded successfully but there are warnings!"
|
876 |
msgstr ""
|
877 |
"Tous les fichiers ont été envoyés avec succès mais avec des avertissements!"
|
878 |
|
879 |
-
#: lib/wfu_constants.php:
|
880 |
msgid "File uploaded successfully but there are warnings!"
|
881 |
msgstr "Fichiers envoyés avec succès mais certain avec un avertissement."
|
882 |
|
883 |
-
#: lib/wfu_constants.php:
|
884 |
msgid "Some files failed to upload!"
|
885 |
msgstr "Certains fichiers n'ont pas été envoyé"
|
886 |
|
887 |
-
#: lib/wfu_constants.php:
|
888 |
msgid "All files failed to upload"
|
889 |
msgstr "Impossible d'envoyer les fichiers"
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid "File failed to upload"
|
893 |
msgstr "Impossible d'envoyer le fichier"
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
896 |
msgid "There are no files to upload!"
|
897 |
msgstr "Il n'y a pas de fichiers à envoyer"
|
898 |
|
899 |
-
#: lib/wfu_constants.php:
|
900 |
msgid "Test upload message"
|
901 |
msgstr "Message de test d'upload"
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid "JSON parse warning!"
|
905 |
msgstr "Avertissements d'analyse JSON."
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "please wait while redirecting..."
|
909 |
msgstr "Merci de patienter pendant la redirection..."
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid "Open visual shortcode editor in new window"
|
913 |
msgstr "Ouvrez l'éditeur de shortcode visuel dans une nouvelle fenêtre"
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid "loading visual editor"
|
917 |
msgstr "Chargement de l'éditeur visuel"
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "Clear file list?"
|
921 |
msgstr "Effacer la liste des fichiers ?"
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "DROP HERE"
|
925 |
msgstr "Déposer ici"
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "record video"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid "take a picture"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "turn webcam on/off"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: lib/wfu_constants.php:
|
940 |
msgid "go live again"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid "end recording"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: lib/wfu_constants.php:
|
948 |
msgid "play"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid "pause"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "go to the beginning"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "go to the end"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "Wordpress File Upload Form"
|
965 |
msgstr "Wordpress File Upload Formulaire"
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
969 |
msgstr "Wordpress File Upload extension d'upload pour sidebar."
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "Upload Files"
|
973 |
msgstr "Envoyer des fichiers"
|
974 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-06 00:00+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-06 00:00+0200\n"
|
7 |
"Last-Translator: Eric D. Valachs <ericduval@laposte.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr_FR\n"
|
302 |
"Envoi impossible ! Une erreur est survenue pendant la tentative d'envoi du "
|
303 |
"fichier."
|
304 |
|
305 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
306 |
msgid "Upload failed!"
|
307 |
msgstr "Envoi impossible !"
|
308 |
|
574 |
msgid "You are not allowed to delete this file!"
|
575 |
msgstr "Vous n' êtes pas autorisé à supprimer ce fichier !"
|
576 |
|
577 |
+
#: lib/wfu_constants.php:126
|
578 |
+
msgid "File was not deleted!"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
#: lib/wfu_constants.php:127
|
582 |
+
msgid "No file was deleted!"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: lib/wfu_constants.php:128
|
586 |
+
msgid "Some files were not deleted!"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: lib/wfu_constants.php:130
|
590 |
msgid "Upload skipped! File already exists."
|
591 |
msgstr "Envoi ignoré ! Le fichier existe déjà."
|
592 |
|
593 |
+
#: lib/wfu_constants.php:131
|
594 |
msgid "The extension of the file does not match its contents."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: lib/wfu_constants.php:132
|
598 |
msgid ""
|
599 |
"Upload succeeded but the file is suspicious because its contents do not "
|
600 |
"match its extension. Its proper filename is: "
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: lib/wfu_constants.php:133
|
604 |
msgid "No files have been selected!"
|
605 |
msgstr "Aucun fichier n'a été envoyé !"
|
606 |
|
607 |
+
#: lib/wfu_constants.php:134
|
608 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
609 |
msgstr ""
|
610 |
"WPFilebase Plugin n'a pas été mis à jour car il n'y a pas de fichiers à "
|
611 |
"envoyer."
|
612 |
|
613 |
+
#: lib/wfu_constants.php:135
|
614 |
msgid "Notification email was not sent because there were no files uploaded."
|
615 |
msgstr ""
|
616 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de fichiers à "
|
617 |
"envoyer."
|
618 |
|
619 |
+
#: lib/wfu_constants.php:136
|
620 |
msgid ""
|
621 |
"Notification email was not sent because no recipients were defined. Please "
|
622 |
"check notifyrecipients attribute in the shortcode."
|
624 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de destinataire. "
|
625 |
"Merci de vérifier l'attribut notifyrecipients dans le shortcode."
|
626 |
|
627 |
+
#: lib/wfu_constants.php:137
|
628 |
msgid ""
|
629 |
"Notification email was not sent due to an error. Please check "
|
630 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
632 |
"Le mail de notification n'a pas été envoyé car il n'y a une erreur. Merci de "
|
633 |
"vérifier les attributs notifyrecipients, notifysubject et notifymessage."
|
634 |
|
635 |
+
#: lib/wfu_constants.php:138
|
636 |
msgid ""
|
637 |
"Redirection not executed because redirection link is empty. Please check "
|
638 |
"redirectlink attribute."
|
640 |
"La redirection n'a pas été effectuée car le lien de redirection est vide. "
|
641 |
"Merci de vérifier l'attribut redirectlink."
|
642 |
|
643 |
+
#: lib/wfu_constants.php:139
|
644 |
msgid ""
|
645 |
"Redirection not executed because not all files were successfully uploaded."
|
646 |
msgstr ""
|
647 |
"La redirection n'est pas exécutée car tous les fichiers n'ont pas été "
|
648 |
"envoyés."
|
649 |
|
650 |
+
#: lib/wfu_constants.php:141
|
651 |
msgid ""
|
652 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
653 |
"message persists, contact administrator."
|
655 |
"Impossible d' ajouter le shortcode à la page / poste. Essayez à nouveau. Si "
|
656 |
"le message persiste, contactez l' administrateur."
|
657 |
|
658 |
+
#: lib/wfu_constants.php:142
|
659 |
msgid ""
|
660 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
661 |
"again to edit the shortcode."
|
663 |
"Impossible de modifier le shortcode parce que le contenu de la page a "
|
664 |
"changé. Essayez à nouveau de modifier le shortcode."
|
665 |
|
666 |
+
#: lib/wfu_constants.php:143
|
667 |
msgid ""
|
668 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
669 |
"again to delete it."
|
671 |
"Impossible de supprimer le shortcode parce que le contenu de la page a "
|
672 |
"changé. Essayez à nouveau de le supprimer."
|
673 |
|
674 |
+
#: lib/wfu_constants.php:144
|
675 |
msgid ""
|
676 |
"The page containing the shortcode has been modified and it is no longer "
|
677 |
"valid. Please go back to reload the shortcode."
|
679 |
"La page contenant le shortcode a été modifié et il n'est plus valide. "
|
680 |
"Rechargez le shortcode."
|
681 |
|
682 |
+
#: lib/wfu_constants.php:145
|
683 |
msgid ""
|
684 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
685 |
"back to reload the shortcode."
|
687 |
"Impossible de mettre à jour le shortcode parce que le contenu de la page a "
|
688 |
"changé. Rechargez le shortcode."
|
689 |
|
690 |
+
#: lib/wfu_constants.php:146
|
691 |
msgid ""
|
692 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
693 |
"go back and reload the shortcode."
|
695 |
"Impossible de mettre à jour le shortcode. Essayez à nouveau. Si le problème "
|
696 |
"persiste, rechargez le shortcode."
|
697 |
|
698 |
+
#: lib/wfu_constants.php:148
|
699 |
msgid "This is a test message"
|
700 |
msgstr "Ceci est un message de test"
|
701 |
|
702 |
+
#: lib/wfu_constants.php:149
|
703 |
msgid "This is a test administrator message"
|
704 |
msgstr "Ceci est un message administrateur de test"
|
705 |
|
706 |
+
#: lib/wfu_constants.php:150
|
707 |
msgid "File testfile 1 under test"
|
708 |
msgstr "File testfile 1 under test"
|
709 |
|
710 |
+
#: lib/wfu_constants.php:151
|
711 |
msgid "File testfile 1 message"
|
712 |
msgstr "File testfile 1 message"
|
713 |
|
714 |
+
#: lib/wfu_constants.php:152
|
715 |
msgid "File testfile 1 administrator message"
|
716 |
msgstr "Message administrateur File testfile"
|
717 |
|
718 |
+
#: lib/wfu_constants.php:153
|
719 |
msgid "File testfile 2 under test"
|
720 |
msgstr "En test File testfile"
|
721 |
|
722 |
+
#: lib/wfu_constants.php:154
|
723 |
msgid "File testfile 2 message"
|
724 |
msgstr "Message File testfile 2"
|
725 |
|
726 |
+
#: lib/wfu_constants.php:155
|
727 |
msgid "File testfile 2 administrator message"
|
728 |
msgstr "Message administrateur File testfile 2"
|
729 |
|
730 |
+
#: lib/wfu_constants.php:157
|
731 |
msgid ""
|
732 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
733 |
"current user."
|
735 |
"Insérez %userid% variable dans le texte. Il sera remplacé par l'id de "
|
736 |
"l'utilisateur courant."
|
737 |
|
738 |
+
#: lib/wfu_constants.php:158
|
739 |
msgid ""
|
740 |
"Insert variable %username% inside text. It will be replaced by the username "
|
741 |
"of the current user."
|
743 |
"Insérez la variable %username% dans le texte. Il sera remplacé par le "
|
744 |
"username de l'utilisateur courant."
|
745 |
|
746 |
+
#: lib/wfu_constants.php:159
|
747 |
msgid ""
|
748 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
749 |
"the current user."
|
751 |
"Insérez la variable %useremail% dans le texte. Il sera remplacé par l'email "
|
752 |
"de l'utilisateur courant."
|
753 |
|
754 |
+
#: lib/wfu_constants.php:160
|
755 |
msgid ""
|
756 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
757 |
"of the uploaded file."
|
759 |
"Insérez la variable %filename% dans le texte. Il sera remplacé par le nom du "
|
760 |
"fichier à envoyer."
|
761 |
|
762 |
+
#: lib/wfu_constants.php:161
|
763 |
msgid ""
|
764 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
765 |
"filepath of the uploaded file."
|
767 |
"Insérez la variable %filepath% dans le texte. Il sera remplacé par le chemin "
|
768 |
"complet du fichier envoyé."
|
769 |
|
770 |
+
#: lib/wfu_constants.php:162
|
771 |
msgid ""
|
772 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
773 |
"the website."
|
775 |
"Insérez la variable %blogid% dans le texte. Il sera remplacé par l'id du "
|
776 |
"blog du site web."
|
777 |
|
778 |
+
#: lib/wfu_constants.php:163
|
779 |
msgid ""
|
780 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
781 |
"current page."
|
783 |
"Insérez %pageid% variable dans le texte. Il sera remplacé par l'id de la "
|
784 |
"page en cours."
|
785 |
|
786 |
+
#: lib/wfu_constants.php:164
|
787 |
msgid ""
|
788 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
789 |
"the current page."
|
791 |
"Insérez %pagetitle% variable dans le texte. Il sera remplacé par le titre de "
|
792 |
"la page courante."
|
793 |
|
794 |
+
#: lib/wfu_constants.php:165
|
795 |
msgid ""
|
796 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
797 |
"drop-down list. It will be replaced by the value that the user entered in "
|
801 |
"l'utilisateur dans la liste déroulante. Il sera remplacé par la valeur que "
|
802 |
"l'utilisateur aura entré dans ce champ."
|
803 |
|
804 |
+
#: lib/wfu_constants.php:166
|
805 |
msgid "Insert variable %n% inside text to denote a line change."
|
806 |
msgstr ""
|
807 |
"Insérez la variable %n% à l'intérieur du texte pour indiquer un changement "
|
808 |
"de ligne."
|
809 |
|
810 |
+
#: lib/wfu_constants.php:168
|
811 |
msgid "Test Mode"
|
812 |
msgstr "Mode de test"
|
813 |
|
814 |
+
#: lib/wfu_constants.php:169
|
815 |
msgid "select dir..."
|
816 |
msgstr "Sélectionnez dir"
|
817 |
|
818 |
+
#: lib/wfu_constants.php:170
|
819 |
msgid "type dir"
|
820 |
msgstr "Saisir dir"
|
821 |
|
822 |
+
#: lib/wfu_constants.php:171
|
823 |
msgid "Upload path: %filepath%"
|
824 |
msgstr "Chemin d'upload : %filepath%"
|
825 |
|
826 |
+
#: lib/wfu_constants.php:172
|
827 |
msgid "Failed upload path: %filepath%"
|
828 |
msgstr "Mauvais répertoire d'envoi : %filepath%"
|
829 |
|
830 |
+
#: lib/wfu_constants.php:173
|
831 |
msgid " (required)"
|
832 |
msgstr " (*)"
|
833 |
|
834 |
+
#: lib/wfu_constants.php:174
|
835 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
836 |
msgstr "Les fichiers sont envoyés. Êtes-vous sûr de vouloir quitter la page ?"
|
837 |
|
838 |
+
#: lib/wfu_constants.php:175
|
839 |
msgid "checking captcha..."
|
840 |
msgstr "Vérifiez captcha..."
|
841 |
|
842 |
+
#: lib/wfu_constants.php:176
|
843 |
msgid "refreshing..."
|
844 |
msgstr "Mise à jour..."
|
845 |
|
846 |
+
#: lib/wfu_constants.php:177
|
847 |
msgid "correct captcha"
|
848 |
msgstr "Captcha correctement saisi"
|
849 |
|
850 |
+
#: lib/wfu_constants.php:178
|
851 |
msgid "click to continue the upload"
|
852 |
msgstr "Cliquer pour continuer l'envoi"
|
853 |
|
854 |
+
#: lib/wfu_constants.php:179
|
855 |
msgid "Are you sure you want to delete this file?"
|
856 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier?"
|
857 |
|
858 |
+
#: lib/wfu_constants.php:180
|
859 |
+
msgid "Are you sure you want to delete these files?"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: lib/wfu_constants.php:181
|
863 |
+
msgid "Bulk Actions"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: lib/wfu_constants.php:182
|
867 |
+
msgid "Apply"
|
868 |
+
msgstr ""
|
869 |
+
|
870 |
+
#: lib/wfu_constants.php:183
|
871 |
msgid "Are you sure that you want to cancel the upload?"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: lib/wfu_constants.php:184
|
875 |
msgid "cancel upload of this file"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: lib/wfu_constants.php:185
|
879 |
msgid "Upload in progress"
|
880 |
msgstr "Envoi en cours"
|
881 |
|
882 |
+
#: lib/wfu_constants.php:186
|
883 |
msgid "Upload in progress with warnings!"
|
884 |
msgstr "Envoi en cours mais avec des avertissements!"
|
885 |
|
886 |
+
#: lib/wfu_constants.php:187
|
887 |
msgid "Upload in progress but some files already failed!"
|
888 |
msgstr "Envoi en cours mais certains fichiers ont échoués!"
|
889 |
|
890 |
+
#: lib/wfu_constants.php:188
|
891 |
msgid "Upload in progress but no files uploaded so far!"
|
892 |
msgstr "Envoi en cours mais aucun fichier n'a été envoyé pour le moment!"
|
893 |
|
894 |
+
#: lib/wfu_constants.php:189
|
895 |
msgid "All files uploaded successfully"
|
896 |
msgstr "Tous les fichiers ont été envoyés avec succès"
|
897 |
|
898 |
+
#: lib/wfu_constants.php:190
|
899 |
msgid "All files uploaded successfully but there are warnings!"
|
900 |
msgstr ""
|
901 |
"Tous les fichiers ont été envoyés avec succès mais avec des avertissements!"
|
902 |
|
903 |
+
#: lib/wfu_constants.php:191
|
904 |
msgid "File uploaded successfully but there are warnings!"
|
905 |
msgstr "Fichiers envoyés avec succès mais certain avec un avertissement."
|
906 |
|
907 |
+
#: lib/wfu_constants.php:192
|
908 |
msgid "Some files failed to upload!"
|
909 |
msgstr "Certains fichiers n'ont pas été envoyé"
|
910 |
|
911 |
+
#: lib/wfu_constants.php:193
|
912 |
msgid "All files failed to upload"
|
913 |
msgstr "Impossible d'envoyer les fichiers"
|
914 |
|
915 |
+
#: lib/wfu_constants.php:194
|
916 |
msgid "File failed to upload"
|
917 |
msgstr "Impossible d'envoyer le fichier"
|
918 |
|
919 |
+
#: lib/wfu_constants.php:195
|
920 |
msgid "There are no files to upload!"
|
921 |
msgstr "Il n'y a pas de fichiers à envoyer"
|
922 |
|
923 |
+
#: lib/wfu_constants.php:196
|
924 |
msgid "Test upload message"
|
925 |
msgstr "Message de test d'upload"
|
926 |
|
927 |
+
#: lib/wfu_constants.php:197
|
928 |
msgid "JSON parse warning!"
|
929 |
msgstr "Avertissements d'analyse JSON."
|
930 |
|
931 |
+
#: lib/wfu_constants.php:198
|
932 |
msgid "please wait while redirecting..."
|
933 |
msgstr "Merci de patienter pendant la redirection..."
|
934 |
|
935 |
+
#: lib/wfu_constants.php:200
|
936 |
msgid "Open visual shortcode editor in new window"
|
937 |
msgstr "Ouvrez l'éditeur de shortcode visuel dans une nouvelle fenêtre"
|
938 |
|
939 |
+
#: lib/wfu_constants.php:201
|
940 |
msgid "loading visual editor"
|
941 |
msgstr "Chargement de l'éditeur visuel"
|
942 |
|
943 |
+
#: lib/wfu_constants.php:202
|
944 |
msgid "Clear file list?"
|
945 |
msgstr "Effacer la liste des fichiers ?"
|
946 |
|
947 |
+
#: lib/wfu_constants.php:203
|
948 |
msgid "DROP HERE"
|
949 |
msgstr "Déposer ici"
|
950 |
|
951 |
+
#: lib/wfu_constants.php:205
|
952 |
msgid "record video"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: lib/wfu_constants.php:206
|
956 |
msgid "take a picture"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: lib/wfu_constants.php:207
|
960 |
msgid "turn webcam on/off"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: lib/wfu_constants.php:208
|
964 |
msgid "go live again"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: lib/wfu_constants.php:209
|
968 |
msgid "end recording"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: lib/wfu_constants.php:210
|
972 |
msgid "play"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: lib/wfu_constants.php:211
|
976 |
msgid "pause"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: lib/wfu_constants.php:212
|
980 |
msgid "go to the beginning"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: lib/wfu_constants.php:213
|
984 |
msgid "go to the end"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: lib/wfu_constants.php:215
|
988 |
msgid "Wordpress File Upload Form"
|
989 |
msgstr "Wordpress File Upload Formulaire"
|
990 |
|
991 |
+
#: lib/wfu_constants.php:216
|
992 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
993 |
msgstr "Wordpress File Upload extension d'upload pour sidebar."
|
994 |
|
995 |
+
#: lib/wfu_constants.php:217
|
996 |
msgid "Upload Files"
|
997 |
msgstr "Envoyer des fichiers"
|
998 |
|
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"
|
@@ -298,7 +298,7 @@ msgstr ""
|
|
298 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
299 |
msgstr "Upload mislukt! Een fout is opgetreden tijdens het uploaden."
|
300 |
|
301 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
302 |
msgid "Upload failed!"
|
303 |
msgstr "Upload mislukt!"
|
304 |
|
@@ -569,15 +569,27 @@ msgstr "Kon het bestand op blok %d niet openen"
|
|
569 |
msgid "You are not allowed to delete this file!"
|
570 |
msgstr "Je hebt geen toestemming om dit bestand te verwijderen!"
|
571 |
|
|
|
|
|
|
|
|
|
572 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
msgid "Upload skipped! File already exists."
|
574 |
msgstr "Upload overgeslagen! Bestand bestaat al."
|
575 |
|
576 |
-
#: lib/wfu_constants.php:
|
577 |
msgid "The extension of the file does not match its contents."
|
578 |
msgstr "De extensie van het bestand komt niet overeen met zijn inhoud."
|
579 |
|
580 |
-
#: lib/wfu_constants.php:
|
581 |
msgid ""
|
582 |
"Upload succeeded but the file is suspicious because its contents do not "
|
583 |
"match its extension. Its proper filename is: "
|
@@ -585,22 +597,22 @@ msgstr ""
|
|
585 |
"Upload is gelukt maar het bestand is dubieus omdat zijn inhoud niet overeen "
|
586 |
"komt met de extensie. De correcte bestandsnaam is "
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "No files have been selected!"
|
590 |
msgstr "Er werden geen bestanden geselecteerd!"
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
594 |
msgstr ""
|
595 |
"WPFilebase Plugin werd niet geüpdatet omdat er geen bestanden werden "
|
596 |
"geüpload."
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "Notification email was not sent because there were no files uploaded."
|
600 |
msgstr ""
|
601 |
"Er werd geen meldingsmail verstuurd omdat er geen bestanden werden geüpload."
|
602 |
|
603 |
-
#: lib/wfu_constants.php:
|
604 |
msgid ""
|
605 |
"Notification email was not sent because no recipients were defined. Please "
|
606 |
"check notifyrecipients attribute in the shortcode."
|
@@ -608,7 +620,7 @@ msgstr ""
|
|
608 |
"Er werd geen meldingsmail verstuurd omdat er geen ontvangers werden "
|
609 |
"toegekend. Controleer de notifyrecipients attribuut in de shortcode."
|
610 |
|
611 |
-
#: lib/wfu_constants.php:
|
612 |
msgid ""
|
613 |
"Notification email was not sent due to an error. Please check "
|
614 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -616,7 +628,7 @@ msgstr ""
|
|
616 |
"Meldingsmail werd niet verstuurd wegens een fout. Controleer "
|
617 |
"notifyrecipients, notifysubject en notifymessage attributen op fouten."
|
618 |
|
619 |
-
#: lib/wfu_constants.php:
|
620 |
msgid ""
|
621 |
"Redirection not executed because redirection link is empty. Please check "
|
622 |
"redirectlink attribute."
|
@@ -624,14 +636,14 @@ msgstr ""
|
|
624 |
"Omleiding niet uitgevoerd omdat de omleidingslink ontbreekt. Controleer het "
|
625 |
"omleidingslink attribuut."
|
626 |
|
627 |
-
#: lib/wfu_constants.php:
|
628 |
msgid ""
|
629 |
"Redirection not executed because not all files were successfully uploaded."
|
630 |
msgstr ""
|
631 |
"Omleiding werd niet uitgevoerd omdat niet alle bestanden correct werden "
|
632 |
"geüpload."
|
633 |
|
634 |
-
#: lib/wfu_constants.php:
|
635 |
msgid ""
|
636 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
637 |
"message persists, contact administrator."
|
@@ -639,7 +651,7 @@ msgstr ""
|
|
639 |
"De shortcode toevoegen aan de pagina/post is mislukt. Probeer opnieuw. "
|
640 |
"Contacteer de beheerder wanneer dit bericht blijft verschijnen."
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid ""
|
644 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
645 |
"again to edit the shortcode."
|
@@ -647,7 +659,7 @@ msgstr ""
|
|
647 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
648 |
"veranderd. Probeer de shortcode opnieuw aan te passen."
|
649 |
|
650 |
-
#: lib/wfu_constants.php:
|
651 |
msgid ""
|
652 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
653 |
"again to delete it."
|
@@ -655,7 +667,7 @@ msgstr ""
|
|
655 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
656 |
"veranderd. Probeer opnieuw te verwijderen."
|
657 |
|
658 |
-
#: lib/wfu_constants.php:
|
659 |
msgid ""
|
660 |
"The page containing the shortcode has been modified and it is no longer "
|
661 |
"valid. Please go back to reload the shortcode."
|
@@ -663,7 +675,7 @@ msgstr ""
|
|
663 |
"De pagina die de shortcode bevat werd aangepast en is daardoor niet langer "
|
664 |
"geldig. Ga terug om de shortcode te herladen."
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid ""
|
668 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
669 |
"back to reload the shortcode."
|
@@ -671,7 +683,7 @@ msgstr ""
|
|
671 |
"Het updaten van de shortcode is mislukt omdat de inhoud van de pagina werd "
|
672 |
"gewijzigd. Ga terug om de shortcode te herladen."
|
673 |
|
674 |
-
#: lib/wfu_constants.php:
|
675 |
msgid ""
|
676 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
677 |
"go back and reload the shortcode."
|
@@ -679,39 +691,39 @@ msgstr ""
|
|
679 |
"Updaten van de shortcode is mislukt. Probeer opnieuw. Als het probleem zich "
|
680 |
"blijft voordoen, ga dan terug en herlaadt de shortcode."
|
681 |
|
682 |
-
#: lib/wfu_constants.php:
|
683 |
msgid "This is a test message"
|
684 |
msgstr "Dit is een testbericht"
|
685 |
|
686 |
-
#: lib/wfu_constants.php:
|
687 |
msgid "This is a test administrator message"
|
688 |
msgstr "Dit is een test beheerdersbericht"
|
689 |
|
690 |
-
#: lib/wfu_constants.php:
|
691 |
msgid "File testfile 1 under test"
|
692 |
msgstr "Bestand testfile 1 onder test"
|
693 |
|
694 |
-
#: lib/wfu_constants.php:
|
695 |
msgid "File testfile 1 message"
|
696 |
msgstr "Bestand testfile 1 bericht"
|
697 |
|
698 |
-
#: lib/wfu_constants.php:
|
699 |
msgid "File testfile 1 administrator message"
|
700 |
msgstr "Bestand testfile 1 beheerdersbericht"
|
701 |
|
702 |
-
#: lib/wfu_constants.php:
|
703 |
msgid "File testfile 2 under test"
|
704 |
msgstr "Bestand tesfile 2 onder test"
|
705 |
|
706 |
-
#: lib/wfu_constants.php:
|
707 |
msgid "File testfile 2 message"
|
708 |
msgstr "Bestand testfile 2 bericht"
|
709 |
|
710 |
-
#: lib/wfu_constants.php:
|
711 |
msgid "File testfile 2 administrator message"
|
712 |
msgstr "Bestand testfile 2 beheerdersbericht"
|
713 |
|
714 |
-
#: lib/wfu_constants.php:
|
715 |
msgid ""
|
716 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
717 |
"current user."
|
@@ -719,7 +731,7 @@ msgstr ""
|
|
719 |
"Plaats de variabele %userid% in de tekst. Het zal worden vervangen door de "
|
720 |
"id van de huidige gebruiker."
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid ""
|
724 |
"Insert variable %username% inside text. It will be replaced by the username "
|
725 |
"of the current user."
|
@@ -727,7 +739,7 @@ msgstr ""
|
|
727 |
"Plaats de variabele %username% in de tekst. Het zal worden vervangen door de "
|
728 |
"gebruikersnaam van de huidige gebruiker."
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid ""
|
732 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
733 |
"the current user."
|
@@ -735,7 +747,7 @@ msgstr ""
|
|
735 |
"Plaats de variabele %usermail% in de tekst. Het zal worden vervangen door "
|
736 |
"het e-mailadres van de huidige gebruiker."
|
737 |
|
738 |
-
#: lib/wfu_constants.php:
|
739 |
msgid ""
|
740 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
741 |
"of the uploaded file."
|
@@ -743,7 +755,7 @@ msgstr ""
|
|
743 |
"Plaats de variabele %filename% in de tekst. Het zal worden vervangen door de "
|
744 |
"bestandsnaam van het geüploade bestand."
|
745 |
|
746 |
-
#: lib/wfu_constants.php:
|
747 |
msgid ""
|
748 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
749 |
"filepath of the uploaded file."
|
@@ -751,7 +763,7 @@ msgstr ""
|
|
751 |
"Plaats de variabele %filepath% in de tekst. Het zal worden vervangen door "
|
752 |
"het volledige bestandspad van het geüploade bestand."
|
753 |
|
754 |
-
#: lib/wfu_constants.php:
|
755 |
msgid ""
|
756 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
757 |
"the website."
|
@@ -759,7 +771,7 @@ msgstr ""
|
|
759 |
"Plaats de variabele %blogid% in de tekst. Het zal worden vervangen door de "
|
760 |
"blog id van de website."
|
761 |
|
762 |
-
#: lib/wfu_constants.php:
|
763 |
msgid ""
|
764 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
765 |
"current page."
|
@@ -767,7 +779,7 @@ msgstr ""
|
|
767 |
"Plaats de variabele %pageid% in de tekst. Het zal worden vervangen door de "
|
768 |
"id van de huidige pagina."
|
769 |
|
770 |
-
#: lib/wfu_constants.php:
|
771 |
msgid ""
|
772 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
773 |
"the current page."
|
@@ -775,7 +787,7 @@ msgstr ""
|
|
775 |
"Plaats de variabele %pagetitle% in de tekst. Het zal worden vervangen door "
|
776 |
"de titel van de huidige pagina."
|
777 |
|
778 |
-
#: lib/wfu_constants.php:
|
779 |
msgid ""
|
780 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
781 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -785,184 +797,196 @@ msgstr ""
|
|
785 |
"via het uitklaplijst. Het zal worden vervangen door de data die de gebruiker "
|
786 |
"in dit veld heeft ingevuld."
|
787 |
|
788 |
-
#: lib/wfu_constants.php:
|
789 |
msgid "Insert variable %n% inside text to denote a line change."
|
790 |
msgstr ""
|
791 |
"Plaats de variabele %n% in de tekst om verder te gaan naar de volgende regel."
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid "Test Mode"
|
795 |
msgstr "Test Modus"
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid "select dir..."
|
799 |
msgstr "selecteer dir..."
|
800 |
|
801 |
-
#: lib/wfu_constants.php:
|
802 |
msgid "type dir"
|
803 |
msgstr "type dir"
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid "Upload path: %filepath%"
|
807 |
msgstr "Uploadpad: %filepath%"
|
808 |
|
809 |
-
#: lib/wfu_constants.php:
|
810 |
msgid "Failed upload path: %filepath%"
|
811 |
msgstr "Foutief uploadpad: %filepath%"
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid " (required)"
|
815 |
msgstr "(verplicht)"
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
819 |
msgstr ""
|
820 |
"Bestanden worden geüpload. Ben je zeker dat je de pagina wilt verlaten?"
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid "checking captcha..."
|
824 |
msgstr "captcha controleren..."
|
825 |
|
826 |
-
#: lib/wfu_constants.php:
|
827 |
msgid "refreshing..."
|
828 |
msgstr "verversen..."
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "correct captcha"
|
832 |
msgstr "correcte captcha"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "click to continue the upload"
|
836 |
msgstr "Klik om door te gaan met uploaden"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "Are you sure you want to delete this file?"
|
840 |
msgstr "Ben je zeker dat je dit bestand wilt verwijderen?"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
msgid "Are you sure that you want to cancel the upload?"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "cancel upload of this file"
|
848 |
msgstr "uploaden van dit bestand annuleren"
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "Upload in progress"
|
852 |
msgstr "Upload is bezig"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "Upload in progress with warnings!"
|
856 |
msgstr "Upload is bezig met waarschuwingen!"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "Upload in progress but some files already failed!"
|
860 |
msgstr "Upload is bezig maar sommige bestanden zijn reeds mislukt!"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid "Upload in progress but no files uploaded so far!"
|
864 |
msgstr "Upload is bezig maar er werden tot nu toe nog geen bestanden geüpload!"
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid "All files uploaded successfully"
|
868 |
msgstr "Alle bestanden met succes geüpload"
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid "All files uploaded successfully but there are warnings!"
|
872 |
msgstr "Alle bestanden zijn succesvol geüpload maar er zijn waarschuwingen!"
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid "File uploaded successfully but there are warnings!"
|
876 |
msgstr "Bestand werd succesvol geüpload maar er zijn waarschuwingen!"
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid "Some files failed to upload!"
|
880 |
msgstr "Sommige bestanden werden niet geüpload!"
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid "All files failed to upload"
|
884 |
msgstr "Upload mislukt voor alle bestanden"
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid "File failed to upload"
|
888 |
msgstr "Upload mislukt voor bestand"
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid "There are no files to upload!"
|
892 |
msgstr "Er zijn geen bestanden om te uploaden!"
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid "Test upload message"
|
896 |
msgstr "Test upload berciht"
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid "JSON parse warning!"
|
900 |
msgstr "JSON parseer waarschuwing!"
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid "please wait while redirecting..."
|
904 |
msgstr "wacht a.u.b. terwijl je wordt doorverwezen..."
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid "Open visual shortcode editor in new window"
|
908 |
msgstr "Open de visuele shortcode editor in een nieuw venster"
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid "loading visual editor"
|
912 |
msgstr "laden visuele editor"
|
913 |
|
914 |
-
#: lib/wfu_constants.php:
|
915 |
msgid "Clear file list?"
|
916 |
msgstr "Bestandenlijst wissen?"
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid "DROP HERE"
|
920 |
msgstr "PLAATS HIER"
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "record video"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "take a picture"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "turn webcam on/off"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "go live again"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "end recording"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "play"
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "pause"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "go to the beginning"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "go to the end"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "Wordpress File Upload Form"
|
960 |
msgstr "Wordpress File Upload Formulier"
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
964 |
msgstr "Wordpress File Upload plugin uploader voor zijbalken"
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "Upload Files"
|
968 |
msgstr "Upload Bestanden"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-06 00:00+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-06 00:00+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: nl_NL\n"
|
298 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
299 |
msgstr "Upload mislukt! Een fout is opgetreden tijdens het uploaden."
|
300 |
|
301 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
302 |
msgid "Upload failed!"
|
303 |
msgstr "Upload mislukt!"
|
304 |
|
569 |
msgid "You are not allowed to delete this file!"
|
570 |
msgstr "Je hebt geen toestemming om dit bestand te verwijderen!"
|
571 |
|
572 |
+
#: lib/wfu_constants.php:126
|
573 |
+
msgid "File was not deleted!"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
#: lib/wfu_constants.php:127
|
577 |
+
msgid "No file was deleted!"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: lib/wfu_constants.php:128
|
581 |
+
msgid "Some files were not deleted!"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: lib/wfu_constants.php:130
|
585 |
msgid "Upload skipped! File already exists."
|
586 |
msgstr "Upload overgeslagen! Bestand bestaat al."
|
587 |
|
588 |
+
#: lib/wfu_constants.php:131
|
589 |
msgid "The extension of the file does not match its contents."
|
590 |
msgstr "De extensie van het bestand komt niet overeen met zijn inhoud."
|
591 |
|
592 |
+
#: lib/wfu_constants.php:132
|
593 |
msgid ""
|
594 |
"Upload succeeded but the file is suspicious because its contents do not "
|
595 |
"match its extension. Its proper filename is: "
|
597 |
"Upload is gelukt maar het bestand is dubieus omdat zijn inhoud niet overeen "
|
598 |
"komt met de extensie. De correcte bestandsnaam is "
|
599 |
|
600 |
+
#: lib/wfu_constants.php:133
|
601 |
msgid "No files have been selected!"
|
602 |
msgstr "Er werden geen bestanden geselecteerd!"
|
603 |
|
604 |
+
#: lib/wfu_constants.php:134
|
605 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
606 |
msgstr ""
|
607 |
"WPFilebase Plugin werd niet geüpdatet omdat er geen bestanden werden "
|
608 |
"geüpload."
|
609 |
|
610 |
+
#: lib/wfu_constants.php:135
|
611 |
msgid "Notification email was not sent because there were no files uploaded."
|
612 |
msgstr ""
|
613 |
"Er werd geen meldingsmail verstuurd omdat er geen bestanden werden geüpload."
|
614 |
|
615 |
+
#: lib/wfu_constants.php:136
|
616 |
msgid ""
|
617 |
"Notification email was not sent because no recipients were defined. Please "
|
618 |
"check notifyrecipients attribute in the shortcode."
|
620 |
"Er werd geen meldingsmail verstuurd omdat er geen ontvangers werden "
|
621 |
"toegekend. Controleer de notifyrecipients attribuut in de shortcode."
|
622 |
|
623 |
+
#: lib/wfu_constants.php:137
|
624 |
msgid ""
|
625 |
"Notification email was not sent due to an error. Please check "
|
626 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
628 |
"Meldingsmail werd niet verstuurd wegens een fout. Controleer "
|
629 |
"notifyrecipients, notifysubject en notifymessage attributen op fouten."
|
630 |
|
631 |
+
#: lib/wfu_constants.php:138
|
632 |
msgid ""
|
633 |
"Redirection not executed because redirection link is empty. Please check "
|
634 |
"redirectlink attribute."
|
636 |
"Omleiding niet uitgevoerd omdat de omleidingslink ontbreekt. Controleer het "
|
637 |
"omleidingslink attribuut."
|
638 |
|
639 |
+
#: lib/wfu_constants.php:139
|
640 |
msgid ""
|
641 |
"Redirection not executed because not all files were successfully uploaded."
|
642 |
msgstr ""
|
643 |
"Omleiding werd niet uitgevoerd omdat niet alle bestanden correct werden "
|
644 |
"geüpload."
|
645 |
|
646 |
+
#: lib/wfu_constants.php:141
|
647 |
msgid ""
|
648 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
649 |
"message persists, contact administrator."
|
651 |
"De shortcode toevoegen aan de pagina/post is mislukt. Probeer opnieuw. "
|
652 |
"Contacteer de beheerder wanneer dit bericht blijft verschijnen."
|
653 |
|
654 |
+
#: lib/wfu_constants.php:142
|
655 |
msgid ""
|
656 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
657 |
"again to edit the shortcode."
|
659 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
660 |
"veranderd. Probeer de shortcode opnieuw aan te passen."
|
661 |
|
662 |
+
#: lib/wfu_constants.php:143
|
663 |
msgid ""
|
664 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
665 |
"again to delete it."
|
667 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
668 |
"veranderd. Probeer opnieuw te verwijderen."
|
669 |
|
670 |
+
#: lib/wfu_constants.php:144
|
671 |
msgid ""
|
672 |
"The page containing the shortcode has been modified and it is no longer "
|
673 |
"valid. Please go back to reload the shortcode."
|
675 |
"De pagina die de shortcode bevat werd aangepast en is daardoor niet langer "
|
676 |
"geldig. Ga terug om de shortcode te herladen."
|
677 |
|
678 |
+
#: lib/wfu_constants.php:145
|
679 |
msgid ""
|
680 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
681 |
"back to reload the shortcode."
|
683 |
"Het updaten van de shortcode is mislukt omdat de inhoud van de pagina werd "
|
684 |
"gewijzigd. Ga terug om de shortcode te herladen."
|
685 |
|
686 |
+
#: lib/wfu_constants.php:146
|
687 |
msgid ""
|
688 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
689 |
"go back and reload the shortcode."
|
691 |
"Updaten van de shortcode is mislukt. Probeer opnieuw. Als het probleem zich "
|
692 |
"blijft voordoen, ga dan terug en herlaadt de shortcode."
|
693 |
|
694 |
+
#: lib/wfu_constants.php:148
|
695 |
msgid "This is a test message"
|
696 |
msgstr "Dit is een testbericht"
|
697 |
|
698 |
+
#: lib/wfu_constants.php:149
|
699 |
msgid "This is a test administrator message"
|
700 |
msgstr "Dit is een test beheerdersbericht"
|
701 |
|
702 |
+
#: lib/wfu_constants.php:150
|
703 |
msgid "File testfile 1 under test"
|
704 |
msgstr "Bestand testfile 1 onder test"
|
705 |
|
706 |
+
#: lib/wfu_constants.php:151
|
707 |
msgid "File testfile 1 message"
|
708 |
msgstr "Bestand testfile 1 bericht"
|
709 |
|
710 |
+
#: lib/wfu_constants.php:152
|
711 |
msgid "File testfile 1 administrator message"
|
712 |
msgstr "Bestand testfile 1 beheerdersbericht"
|
713 |
|
714 |
+
#: lib/wfu_constants.php:153
|
715 |
msgid "File testfile 2 under test"
|
716 |
msgstr "Bestand tesfile 2 onder test"
|
717 |
|
718 |
+
#: lib/wfu_constants.php:154
|
719 |
msgid "File testfile 2 message"
|
720 |
msgstr "Bestand testfile 2 bericht"
|
721 |
|
722 |
+
#: lib/wfu_constants.php:155
|
723 |
msgid "File testfile 2 administrator message"
|
724 |
msgstr "Bestand testfile 2 beheerdersbericht"
|
725 |
|
726 |
+
#: lib/wfu_constants.php:157
|
727 |
msgid ""
|
728 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
729 |
"current user."
|
731 |
"Plaats de variabele %userid% in de tekst. Het zal worden vervangen door de "
|
732 |
"id van de huidige gebruiker."
|
733 |
|
734 |
+
#: lib/wfu_constants.php:158
|
735 |
msgid ""
|
736 |
"Insert variable %username% inside text. It will be replaced by the username "
|
737 |
"of the current user."
|
739 |
"Plaats de variabele %username% in de tekst. Het zal worden vervangen door de "
|
740 |
"gebruikersnaam van de huidige gebruiker."
|
741 |
|
742 |
+
#: lib/wfu_constants.php:159
|
743 |
msgid ""
|
744 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
745 |
"the current user."
|
747 |
"Plaats de variabele %usermail% in de tekst. Het zal worden vervangen door "
|
748 |
"het e-mailadres van de huidige gebruiker."
|
749 |
|
750 |
+
#: lib/wfu_constants.php:160
|
751 |
msgid ""
|
752 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
753 |
"of the uploaded file."
|
755 |
"Plaats de variabele %filename% in de tekst. Het zal worden vervangen door de "
|
756 |
"bestandsnaam van het geüploade bestand."
|
757 |
|
758 |
+
#: lib/wfu_constants.php:161
|
759 |
msgid ""
|
760 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
761 |
"filepath of the uploaded file."
|
763 |
"Plaats de variabele %filepath% in de tekst. Het zal worden vervangen door "
|
764 |
"het volledige bestandspad van het geüploade bestand."
|
765 |
|
766 |
+
#: lib/wfu_constants.php:162
|
767 |
msgid ""
|
768 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
769 |
"the website."
|
771 |
"Plaats de variabele %blogid% in de tekst. Het zal worden vervangen door de "
|
772 |
"blog id van de website."
|
773 |
|
774 |
+
#: lib/wfu_constants.php:163
|
775 |
msgid ""
|
776 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
777 |
"current page."
|
779 |
"Plaats de variabele %pageid% in de tekst. Het zal worden vervangen door de "
|
780 |
"id van de huidige pagina."
|
781 |
|
782 |
+
#: lib/wfu_constants.php:164
|
783 |
msgid ""
|
784 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
785 |
"the current page."
|
787 |
"Plaats de variabele %pagetitle% in de tekst. Het zal worden vervangen door "
|
788 |
"de titel van de huidige pagina."
|
789 |
|
790 |
+
#: lib/wfu_constants.php:165
|
791 |
msgid ""
|
792 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
793 |
"drop-down list. It will be replaced by the value that the user entered in "
|
797 |
"via het uitklaplijst. Het zal worden vervangen door de data die de gebruiker "
|
798 |
"in dit veld heeft ingevuld."
|
799 |
|
800 |
+
#: lib/wfu_constants.php:166
|
801 |
msgid "Insert variable %n% inside text to denote a line change."
|
802 |
msgstr ""
|
803 |
"Plaats de variabele %n% in de tekst om verder te gaan naar de volgende regel."
|
804 |
|
805 |
+
#: lib/wfu_constants.php:168
|
806 |
msgid "Test Mode"
|
807 |
msgstr "Test Modus"
|
808 |
|
809 |
+
#: lib/wfu_constants.php:169
|
810 |
msgid "select dir..."
|
811 |
msgstr "selecteer dir..."
|
812 |
|
813 |
+
#: lib/wfu_constants.php:170
|
814 |
msgid "type dir"
|
815 |
msgstr "type dir"
|
816 |
|
817 |
+
#: lib/wfu_constants.php:171
|
818 |
msgid "Upload path: %filepath%"
|
819 |
msgstr "Uploadpad: %filepath%"
|
820 |
|
821 |
+
#: lib/wfu_constants.php:172
|
822 |
msgid "Failed upload path: %filepath%"
|
823 |
msgstr "Foutief uploadpad: %filepath%"
|
824 |
|
825 |
+
#: lib/wfu_constants.php:173
|
826 |
msgid " (required)"
|
827 |
msgstr "(verplicht)"
|
828 |
|
829 |
+
#: lib/wfu_constants.php:174
|
830 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
831 |
msgstr ""
|
832 |
"Bestanden worden geüpload. Ben je zeker dat je de pagina wilt verlaten?"
|
833 |
|
834 |
+
#: lib/wfu_constants.php:175
|
835 |
msgid "checking captcha..."
|
836 |
msgstr "captcha controleren..."
|
837 |
|
838 |
+
#: lib/wfu_constants.php:176
|
839 |
msgid "refreshing..."
|
840 |
msgstr "verversen..."
|
841 |
|
842 |
+
#: lib/wfu_constants.php:177
|
843 |
msgid "correct captcha"
|
844 |
msgstr "correcte captcha"
|
845 |
|
846 |
+
#: lib/wfu_constants.php:178
|
847 |
msgid "click to continue the upload"
|
848 |
msgstr "Klik om door te gaan met uploaden"
|
849 |
|
850 |
+
#: lib/wfu_constants.php:179
|
851 |
msgid "Are you sure you want to delete this file?"
|
852 |
msgstr "Ben je zeker dat je dit bestand wilt verwijderen?"
|
853 |
|
854 |
+
#: lib/wfu_constants.php:180
|
855 |
+
msgid "Are you sure you want to delete these files?"
|
856 |
+
msgstr ""
|
857 |
+
|
858 |
+
#: lib/wfu_constants.php:181
|
859 |
+
msgid "Bulk Actions"
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: lib/wfu_constants.php:182
|
863 |
+
msgid "Apply"
|
864 |
+
msgstr ""
|
865 |
+
|
866 |
+
#: lib/wfu_constants.php:183
|
867 |
msgid "Are you sure that you want to cancel the upload?"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: lib/wfu_constants.php:184
|
871 |
msgid "cancel upload of this file"
|
872 |
msgstr "uploaden van dit bestand annuleren"
|
873 |
|
874 |
+
#: lib/wfu_constants.php:185
|
875 |
msgid "Upload in progress"
|
876 |
msgstr "Upload is bezig"
|
877 |
|
878 |
+
#: lib/wfu_constants.php:186
|
879 |
msgid "Upload in progress with warnings!"
|
880 |
msgstr "Upload is bezig met waarschuwingen!"
|
881 |
|
882 |
+
#: lib/wfu_constants.php:187
|
883 |
msgid "Upload in progress but some files already failed!"
|
884 |
msgstr "Upload is bezig maar sommige bestanden zijn reeds mislukt!"
|
885 |
|
886 |
+
#: lib/wfu_constants.php:188
|
887 |
msgid "Upload in progress but no files uploaded so far!"
|
888 |
msgstr "Upload is bezig maar er werden tot nu toe nog geen bestanden geüpload!"
|
889 |
|
890 |
+
#: lib/wfu_constants.php:189
|
891 |
msgid "All files uploaded successfully"
|
892 |
msgstr "Alle bestanden met succes geüpload"
|
893 |
|
894 |
+
#: lib/wfu_constants.php:190
|
895 |
msgid "All files uploaded successfully but there are warnings!"
|
896 |
msgstr "Alle bestanden zijn succesvol geüpload maar er zijn waarschuwingen!"
|
897 |
|
898 |
+
#: lib/wfu_constants.php:191
|
899 |
msgid "File uploaded successfully but there are warnings!"
|
900 |
msgstr "Bestand werd succesvol geüpload maar er zijn waarschuwingen!"
|
901 |
|
902 |
+
#: lib/wfu_constants.php:192
|
903 |
msgid "Some files failed to upload!"
|
904 |
msgstr "Sommige bestanden werden niet geüpload!"
|
905 |
|
906 |
+
#: lib/wfu_constants.php:193
|
907 |
msgid "All files failed to upload"
|
908 |
msgstr "Upload mislukt voor alle bestanden"
|
909 |
|
910 |
+
#: lib/wfu_constants.php:194
|
911 |
msgid "File failed to upload"
|
912 |
msgstr "Upload mislukt voor bestand"
|
913 |
|
914 |
+
#: lib/wfu_constants.php:195
|
915 |
msgid "There are no files to upload!"
|
916 |
msgstr "Er zijn geen bestanden om te uploaden!"
|
917 |
|
918 |
+
#: lib/wfu_constants.php:196
|
919 |
msgid "Test upload message"
|
920 |
msgstr "Test upload berciht"
|
921 |
|
922 |
+
#: lib/wfu_constants.php:197
|
923 |
msgid "JSON parse warning!"
|
924 |
msgstr "JSON parseer waarschuwing!"
|
925 |
|
926 |
+
#: lib/wfu_constants.php:198
|
927 |
msgid "please wait while redirecting..."
|
928 |
msgstr "wacht a.u.b. terwijl je wordt doorverwezen..."
|
929 |
|
930 |
+
#: lib/wfu_constants.php:200
|
931 |
msgid "Open visual shortcode editor in new window"
|
932 |
msgstr "Open de visuele shortcode editor in een nieuw venster"
|
933 |
|
934 |
+
#: lib/wfu_constants.php:201
|
935 |
msgid "loading visual editor"
|
936 |
msgstr "laden visuele editor"
|
937 |
|
938 |
+
#: lib/wfu_constants.php:202
|
939 |
msgid "Clear file list?"
|
940 |
msgstr "Bestandenlijst wissen?"
|
941 |
|
942 |
+
#: lib/wfu_constants.php:203
|
943 |
msgid "DROP HERE"
|
944 |
msgstr "PLAATS HIER"
|
945 |
|
946 |
+
#: lib/wfu_constants.php:205
|
947 |
msgid "record video"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: lib/wfu_constants.php:206
|
951 |
msgid "take a picture"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: lib/wfu_constants.php:207
|
955 |
msgid "turn webcam on/off"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: lib/wfu_constants.php:208
|
959 |
msgid "go live again"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: lib/wfu_constants.php:209
|
963 |
msgid "end recording"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: lib/wfu_constants.php:210
|
967 |
msgid "play"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: lib/wfu_constants.php:211
|
971 |
msgid "pause"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: lib/wfu_constants.php:212
|
975 |
msgid "go to the beginning"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: lib/wfu_constants.php:213
|
979 |
msgid "go to the end"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: lib/wfu_constants.php:215
|
983 |
msgid "Wordpress File Upload Form"
|
984 |
msgstr "Wordpress File Upload Formulier"
|
985 |
|
986 |
+
#: lib/wfu_constants.php:216
|
987 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
988 |
msgstr "Wordpress File Upload plugin uploader voor zijbalken"
|
989 |
|
990 |
+
#: lib/wfu_constants.php:217
|
991 |
msgid "Upload Files"
|
992 |
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"
|
@@ -289,7 +289,7 @@ msgid "Upload failed! Error occured while attemting to upload the file."
|
|
289 |
msgstr ""
|
290 |
"Wysyłanie nie powiodło się! Wystąpił błąd podczas attemting wgrać plik."
|
291 |
|
292 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
293 |
msgid "Upload failed!"
|
294 |
msgstr "BŁĄD PRZESYŁANIA!!!"
|
295 |
|
@@ -552,36 +552,48 @@ msgstr ""
|
|
552 |
msgid "You are not allowed to delete this file!"
|
553 |
msgstr ""
|
554 |
|
|
|
|
|
|
|
|
|
555 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
msgid "Upload skipped! File already exists."
|
557 |
msgstr "Przepraszamy, ten plik już istnieje!"
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "The extension of the file does not match its contents."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid ""
|
565 |
"Upload succeeded but the file is suspicious because its contents do not "
|
566 |
"match its extension. Its proper filename is: "
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: lib/wfu_constants.php:
|
570 |
msgid "No files have been selected!"
|
571 |
msgstr "Nie wybrano żadnych plików"
|
572 |
|
573 |
-
#: lib/wfu_constants.php:
|
574 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
575 |
msgstr ""
|
576 |
"WPFilebase Plugin nie aktualizowane, ponieważ nie było tam plików przesłane."
|
577 |
|
578 |
-
#: lib/wfu_constants.php:
|
579 |
msgid "Notification email was not sent because there were no files uploaded."
|
580 |
msgstr ""
|
581 |
"Powiadomienia e-mail nie została wysłana, ponieważ nie zostały przesłane "
|
582 |
"pliki."
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid ""
|
586 |
"Notification email was not sent because no recipients were defined. Please "
|
587 |
"check notifyrecipients attribute in the shortcode."
|
@@ -589,7 +601,7 @@ msgstr ""
|
|
589 |
"Powiadomienia e-mail nie zostały wysłane, ponieważ nie ma odbiorców "
|
590 |
"zdefiniowanych. Sprawdź atrybut notifyrecipients w kodzie."
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid ""
|
594 |
"Notification email was not sent due to an error. Please check "
|
595 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -597,7 +609,7 @@ msgstr ""
|
|
597 |
"Powiadomienia e-mail nie został wysłany z powodu błędu. Proszę sprawdzić "
|
598 |
"notifyrecipients, notifysubject i notifymessage atrybuty dla błędów."
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid ""
|
602 |
"Redirection not executed because redirection link is empty. Please check "
|
603 |
"redirectlink attribute."
|
@@ -605,14 +617,14 @@ msgstr ""
|
|
605 |
"Przekierowania nie wykonany, ponieważ link przekierowania jest pusty. "
|
606 |
"Sprawdź atrybut redirectlink."
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid ""
|
610 |
"Redirection not executed because not all files were successfully uploaded."
|
611 |
msgstr ""
|
612 |
"Przekierowania nie wykonany, ponieważ nie wszystkie pliki zostały pomyślnie "
|
613 |
"załadowane."
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid ""
|
617 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
618 |
"message persists, contact administrator."
|
@@ -620,7 +632,7 @@ msgstr ""
|
|
620 |
"Nie można dodać shortcode do strony/post. Proszę spróbować ponownie. Jeśli "
|
621 |
"komunikat będzie się powtarzał, skontaktuj się z administratorem."
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid ""
|
625 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
626 |
"again to edit the shortcode."
|
@@ -628,7 +640,7 @@ msgstr ""
|
|
628 |
"Nie można edytować shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
629 |
"ponownie."
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
msgid ""
|
633 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
634 |
"again to delete it."
|
@@ -636,7 +648,7 @@ msgstr ""
|
|
636 |
"Nie można usunąć shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
637 |
"ponownie."
|
638 |
|
639 |
-
#: lib/wfu_constants.php:
|
640 |
msgid ""
|
641 |
"The page containing the shortcode has been modified and it is no longer "
|
642 |
"valid. Please go back to reload the shortcode."
|
@@ -644,7 +656,7 @@ msgstr ""
|
|
644 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
645 |
"przeładować shortcode."
|
646 |
|
647 |
-
#: lib/wfu_constants.php:
|
648 |
msgid ""
|
649 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
650 |
"back to reload the shortcode."
|
@@ -652,7 +664,7 @@ msgstr ""
|
|
652 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
653 |
"przeładować shortcode."
|
654 |
|
655 |
-
#: lib/wfu_constants.php:
|
656 |
msgid ""
|
657 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
658 |
"go back and reload the shortcode."
|
@@ -660,39 +672,39 @@ msgstr ""
|
|
660 |
"Nie można zaktualizować shortcode. Proszę spróbować ponownie. Jeśli problem "
|
661 |
"nie ustąpi, wrócić i ponownie załadować shortcode."
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid "This is a test message"
|
665 |
msgstr "To jest wiadomość testowa"
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid "This is a test administrator message"
|
669 |
msgstr "To jest wiadomość testowa administratora"
|
670 |
|
671 |
-
#: lib/wfu_constants.php:
|
672 |
msgid "File testfile 1 under test"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid "File testfile 1 message"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: lib/wfu_constants.php:
|
680 |
msgid "File testfile 1 administrator message"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid "File testfile 2 under test"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: lib/wfu_constants.php:
|
688 |
msgid "File testfile 2 message"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: lib/wfu_constants.php:
|
692 |
msgid "File testfile 2 administrator message"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: lib/wfu_constants.php:
|
696 |
msgid ""
|
697 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
698 |
"current user."
|
@@ -700,7 +712,7 @@ msgstr ""
|
|
700 |
"Wstaw zmienną % userid % wewnątrz tekstu. Zostanie on zastąpiony przez "
|
701 |
"identyfikator bieżącego użytkownika."
|
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."
|
@@ -708,7 +720,7 @@ msgstr ""
|
|
708 |
"Wstaw zmiennej % username % wewnątrz tekstu. To będzie brzmienie nazwy "
|
709 |
"użytkownika bieżącego użytkownika."
|
710 |
|
711 |
-
#: lib/wfu_constants.php:
|
712 |
msgid ""
|
713 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
714 |
"the current user."
|
@@ -716,7 +728,7 @@ msgstr ""
|
|
716 |
"Wstaw zmiennej % useremail % wewnątrz tekstu. To zostanie zastąpiony przez e-"
|
717 |
"mail bieżącego użytkownika."
|
718 |
|
719 |
-
#: lib/wfu_constants.php:
|
720 |
msgid ""
|
721 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
722 |
"of the uploaded file."
|
@@ -724,7 +736,7 @@ msgstr ""
|
|
724 |
"Wstaw nazwę zmiennej % wewnątrz tekstu. To zostanie zastąpiony przez nazwę "
|
725 |
"pliku przesłane."
|
726 |
|
727 |
-
#: lib/wfu_constants.php:
|
728 |
msgid ""
|
729 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
730 |
"filepath of the uploaded file."
|
@@ -732,7 +744,7 @@ msgstr ""
|
|
732 |
"Wstaw zmienną % filepath wewnątrz tekstu. To zostanie zastąpiony przez pełną "
|
733 |
"filepath przesyłanego pliku."
|
734 |
|
735 |
-
#: lib/wfu_constants.php:
|
736 |
msgid ""
|
737 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
738 |
"the website."
|
@@ -740,13 +752,13 @@ msgstr ""
|
|
740 |
"Wstaw zmiennej % blogid % wewnątrz tekstu. To zostanie zastąpiony przez "
|
741 |
"identyfikator blog strony internetowej."
|
742 |
|
743 |
-
#: lib/wfu_constants.php:
|
744 |
msgid ""
|
745 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
746 |
"current page."
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid ""
|
751 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
752 |
"the current page."
|
@@ -754,7 +766,7 @@ msgstr ""
|
|
754 |
"Wstaw zmienną % pagetitle wewnątrz tekstu. To będzie brzmienie tytułu "
|
755 |
"bieżącej strony."
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
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 "
|
@@ -764,183 +776,195 @@ msgstr ""
|
|
764 |
"listy rozwijanej. To zostaną zastąpione przez wartości, które użytkownik "
|
765 |
"wpisuje w tej dziedzinie."
|
766 |
|
767 |
-
#: lib/wfu_constants.php:
|
768 |
msgid "Insert variable %n% inside text to denote a line change."
|
769 |
msgstr "Wstaw zmienną %n % wewnątrz tekstu do oznaczenia linii zmiany."
|
770 |
|
771 |
-
#: lib/wfu_constants.php:
|
772 |
msgid "Test Mode"
|
773 |
msgstr "Tryb testowy"
|
774 |
|
775 |
-
#: lib/wfu_constants.php:
|
776 |
msgid "select dir..."
|
777 |
msgstr "Wybierz dir..."
|
778 |
|
779 |
-
#: lib/wfu_constants.php:
|
780 |
msgid "type dir"
|
781 |
msgstr "Typ dir"
|
782 |
|
783 |
-
#: lib/wfu_constants.php:
|
784 |
msgid "Upload path: %filepath%"
|
785 |
msgstr "Wgraj %filepath%"
|
786 |
|
787 |
-
#: lib/wfu_constants.php:
|
788 |
msgid "Failed upload path: %filepath%"
|
789 |
msgstr "Nieudane przesyłanie: %filepath%"
|
790 |
|
791 |
-
#: lib/wfu_constants.php:
|
792 |
msgid " (required)"
|
793 |
msgstr "*"
|
794 |
|
795 |
-
#: lib/wfu_constants.php:
|
796 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
797 |
msgstr "Obecnie wysyłane są pliki. Czy na pewno chcesz zamknąć stronę?"
|
798 |
|
799 |
-
#: lib/wfu_constants.php:
|
800 |
msgid "checking captcha..."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: lib/wfu_constants.php:
|
804 |
msgid "refreshing..."
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: lib/wfu_constants.php:
|
808 |
msgid "correct captcha"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: lib/wfu_constants.php:
|
812 |
msgid "click to continue the upload"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: lib/wfu_constants.php:
|
816 |
msgid "Are you sure you want to delete this file?"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
msgid "Are you sure that you want to cancel the upload?"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: lib/wfu_constants.php:
|
824 |
msgid "cancel upload of this file"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: lib/wfu_constants.php:
|
828 |
msgid "Upload in progress"
|
829 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
830 |
|
831 |
-
#: lib/wfu_constants.php:
|
832 |
msgid "Upload in progress with warnings!"
|
833 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
834 |
|
835 |
-
#: lib/wfu_constants.php:
|
836 |
msgid "Upload in progress but some files already failed!"
|
837 |
msgstr "Przesyłanie w toku, ale niektóre pliki zostały anulowane!"
|
838 |
|
839 |
-
#: lib/wfu_constants.php:
|
840 |
msgid "Upload in progress but no files uploaded so far!"
|
841 |
msgstr "Przesyłanie w toku, ale jeszcze nie przesłano żadnego pliku!"
|
842 |
|
843 |
-
#: lib/wfu_constants.php:
|
844 |
msgid "All files uploaded successfully"
|
845 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
846 |
|
847 |
-
#: lib/wfu_constants.php:
|
848 |
msgid "All files uploaded successfully but there are warnings!"
|
849 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
850 |
|
851 |
-
#: lib/wfu_constants.php:
|
852 |
msgid "File uploaded successfully but there are warnings!"
|
853 |
msgstr "Plik został pomyślnie przesłany, ale z ostrzeżeniem!"
|
854 |
|
855 |
-
#: lib/wfu_constants.php:
|
856 |
msgid "Some files failed to upload!"
|
857 |
msgstr "Niektóre pliki zostały anulowane!"
|
858 |
|
859 |
-
#: lib/wfu_constants.php:
|
860 |
msgid "All files failed to upload"
|
861 |
msgstr "Wszystkie pliki zostały anulowane"
|
862 |
|
863 |
-
#: lib/wfu_constants.php:
|
864 |
msgid "File failed to upload"
|
865 |
msgstr "Nie udało się przesłać pliku"
|
866 |
|
867 |
-
#: lib/wfu_constants.php:
|
868 |
msgid "There are no files to upload!"
|
869 |
msgstr "Brak plików do wysłania"
|
870 |
|
871 |
-
#: lib/wfu_constants.php:
|
872 |
msgid "Test upload message"
|
873 |
msgstr "To jest wiadomość testowa"
|
874 |
|
875 |
-
#: lib/wfu_constants.php:
|
876 |
msgid "JSON parse warning!"
|
877 |
msgstr "JSON analizować ostrzeżenie!"
|
878 |
|
879 |
-
#: lib/wfu_constants.php:
|
880 |
msgid "please wait while redirecting..."
|
881 |
msgstr "Proszę czekać, za chwilę zostaniesz przekierowany..."
|
882 |
|
883 |
-
#: lib/wfu_constants.php:
|
884 |
msgid "Open visual shortcode editor in new window"
|
885 |
msgstr "Otwórz edytor w nowym oknie"
|
886 |
|
887 |
-
#: lib/wfu_constants.php:
|
888 |
msgid "loading visual editor"
|
889 |
msgstr "Ładowanie wizualnego edytora"
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid "Clear file list?"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
896 |
msgid "DROP HERE"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: lib/wfu_constants.php:
|
900 |
msgid "record video"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid "take a picture"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "turn webcam on/off"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid "go live again"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid "end recording"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "play"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "pause"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "go to the beginning"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid "go to the end"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "Wordpress File Upload Form"
|
937 |
msgstr "Formularz przesyłania plików WPFU"
|
938 |
|
939 |
-
#: lib/wfu_constants.php:
|
940 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid "Upload Files"
|
945 |
msgstr ""
|
946 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-06 00:00+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-06 00:00+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pl_PL\n"
|
289 |
msgstr ""
|
290 |
"Wysyłanie nie powiodło się! Wystąpił błąd podczas attemting wgrać plik."
|
291 |
|
292 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
293 |
msgid "Upload failed!"
|
294 |
msgstr "BŁĄD PRZESYŁANIA!!!"
|
295 |
|
552 |
msgid "You are not allowed to delete this file!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: lib/wfu_constants.php:126
|
556 |
+
msgid "File was not deleted!"
|
557 |
+
msgstr ""
|
558 |
+
|
559 |
#: lib/wfu_constants.php:127
|
560 |
+
msgid "No file was deleted!"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: lib/wfu_constants.php:128
|
564 |
+
msgid "Some files were not deleted!"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: lib/wfu_constants.php:130
|
568 |
msgid "Upload skipped! File already exists."
|
569 |
msgstr "Przepraszamy, ten plik już istnieje!"
|
570 |
|
571 |
+
#: lib/wfu_constants.php:131
|
572 |
msgid "The extension of the file does not match its contents."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: lib/wfu_constants.php:132
|
576 |
msgid ""
|
577 |
"Upload succeeded but the file is suspicious because its contents do not "
|
578 |
"match its extension. Its proper filename is: "
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: lib/wfu_constants.php:133
|
582 |
msgid "No files have been selected!"
|
583 |
msgstr "Nie wybrano żadnych plików"
|
584 |
|
585 |
+
#: lib/wfu_constants.php:134
|
586 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
587 |
msgstr ""
|
588 |
"WPFilebase Plugin nie aktualizowane, ponieważ nie było tam plików przesłane."
|
589 |
|
590 |
+
#: lib/wfu_constants.php:135
|
591 |
msgid "Notification email was not sent because there were no files uploaded."
|
592 |
msgstr ""
|
593 |
"Powiadomienia e-mail nie została wysłana, ponieważ nie zostały przesłane "
|
594 |
"pliki."
|
595 |
|
596 |
+
#: lib/wfu_constants.php:136
|
597 |
msgid ""
|
598 |
"Notification email was not sent because no recipients were defined. Please "
|
599 |
"check notifyrecipients attribute in the shortcode."
|
601 |
"Powiadomienia e-mail nie zostały wysłane, ponieważ nie ma odbiorców "
|
602 |
"zdefiniowanych. Sprawdź atrybut notifyrecipients w kodzie."
|
603 |
|
604 |
+
#: lib/wfu_constants.php:137
|
605 |
msgid ""
|
606 |
"Notification email was not sent due to an error. Please check "
|
607 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
609 |
"Powiadomienia e-mail nie został wysłany z powodu błędu. Proszę sprawdzić "
|
610 |
"notifyrecipients, notifysubject i notifymessage atrybuty dla błędów."
|
611 |
|
612 |
+
#: lib/wfu_constants.php:138
|
613 |
msgid ""
|
614 |
"Redirection not executed because redirection link is empty. Please check "
|
615 |
"redirectlink attribute."
|
617 |
"Przekierowania nie wykonany, ponieważ link przekierowania jest pusty. "
|
618 |
"Sprawdź atrybut redirectlink."
|
619 |
|
620 |
+
#: lib/wfu_constants.php:139
|
621 |
msgid ""
|
622 |
"Redirection not executed because not all files were successfully uploaded."
|
623 |
msgstr ""
|
624 |
"Przekierowania nie wykonany, ponieważ nie wszystkie pliki zostały pomyślnie "
|
625 |
"załadowane."
|
626 |
|
627 |
+
#: lib/wfu_constants.php:141
|
628 |
msgid ""
|
629 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
630 |
"message persists, contact administrator."
|
632 |
"Nie można dodać shortcode do strony/post. Proszę spróbować ponownie. Jeśli "
|
633 |
"komunikat będzie się powtarzał, skontaktuj się z administratorem."
|
634 |
|
635 |
+
#: lib/wfu_constants.php:142
|
636 |
msgid ""
|
637 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
638 |
"again to edit the shortcode."
|
640 |
"Nie można edytować shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
641 |
"ponownie."
|
642 |
|
643 |
+
#: lib/wfu_constants.php:143
|
644 |
msgid ""
|
645 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
646 |
"again to delete it."
|
648 |
"Nie można usunąć shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
649 |
"ponownie."
|
650 |
|
651 |
+
#: lib/wfu_constants.php:144
|
652 |
msgid ""
|
653 |
"The page containing the shortcode has been modified and it is no longer "
|
654 |
"valid. Please go back to reload the shortcode."
|
656 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
657 |
"przeładować shortcode."
|
658 |
|
659 |
+
#: lib/wfu_constants.php:145
|
660 |
msgid ""
|
661 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
662 |
"back to reload the shortcode."
|
664 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
665 |
"przeładować shortcode."
|
666 |
|
667 |
+
#: lib/wfu_constants.php:146
|
668 |
msgid ""
|
669 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
670 |
"go back and reload the shortcode."
|
672 |
"Nie można zaktualizować shortcode. Proszę spróbować ponownie. Jeśli problem "
|
673 |
"nie ustąpi, wrócić i ponownie załadować shortcode."
|
674 |
|
675 |
+
#: lib/wfu_constants.php:148
|
676 |
msgid "This is a test message"
|
677 |
msgstr "To jest wiadomość testowa"
|
678 |
|
679 |
+
#: lib/wfu_constants.php:149
|
680 |
msgid "This is a test administrator message"
|
681 |
msgstr "To jest wiadomość testowa administratora"
|
682 |
|
683 |
+
#: lib/wfu_constants.php:150
|
684 |
msgid "File testfile 1 under test"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: lib/wfu_constants.php:151
|
688 |
msgid "File testfile 1 message"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: lib/wfu_constants.php:152
|
692 |
msgid "File testfile 1 administrator message"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: lib/wfu_constants.php:153
|
696 |
msgid "File testfile 2 under test"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: lib/wfu_constants.php:154
|
700 |
msgid "File testfile 2 message"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: lib/wfu_constants.php:155
|
704 |
msgid "File testfile 2 administrator message"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: lib/wfu_constants.php:157
|
708 |
msgid ""
|
709 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
710 |
"current user."
|
712 |
"Wstaw zmienną % userid % wewnątrz tekstu. Zostanie on zastąpiony przez "
|
713 |
"identyfikator bieżącego użytkownika."
|
714 |
|
715 |
+
#: lib/wfu_constants.php:158
|
716 |
msgid ""
|
717 |
"Insert variable %username% inside text. It will be replaced by the username "
|
718 |
"of the current user."
|
720 |
"Wstaw zmiennej % username % wewnątrz tekstu. To będzie brzmienie nazwy "
|
721 |
"użytkownika bieżącego użytkownika."
|
722 |
|
723 |
+
#: lib/wfu_constants.php:159
|
724 |
msgid ""
|
725 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
726 |
"the current user."
|
728 |
"Wstaw zmiennej % useremail % wewnątrz tekstu. To zostanie zastąpiony przez e-"
|
729 |
"mail bieżącego użytkownika."
|
730 |
|
731 |
+
#: lib/wfu_constants.php:160
|
732 |
msgid ""
|
733 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
734 |
"of the uploaded file."
|
736 |
"Wstaw nazwę zmiennej % wewnątrz tekstu. To zostanie zastąpiony przez nazwę "
|
737 |
"pliku przesłane."
|
738 |
|
739 |
+
#: lib/wfu_constants.php:161
|
740 |
msgid ""
|
741 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
742 |
"filepath of the uploaded file."
|
744 |
"Wstaw zmienną % filepath wewnątrz tekstu. To zostanie zastąpiony przez pełną "
|
745 |
"filepath przesyłanego pliku."
|
746 |
|
747 |
+
#: lib/wfu_constants.php:162
|
748 |
msgid ""
|
749 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
750 |
"the website."
|
752 |
"Wstaw zmiennej % blogid % wewnątrz tekstu. To zostanie zastąpiony przez "
|
753 |
"identyfikator blog strony internetowej."
|
754 |
|
755 |
+
#: lib/wfu_constants.php:163
|
756 |
msgid ""
|
757 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
758 |
"current page."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: lib/wfu_constants.php:164
|
762 |
msgid ""
|
763 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
764 |
"the current page."
|
766 |
"Wstaw zmienną % pagetitle wewnątrz tekstu. To będzie brzmienie tytułu "
|
767 |
"bieżącej strony."
|
768 |
|
769 |
+
#: lib/wfu_constants.php:165
|
770 |
msgid ""
|
771 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
772 |
"drop-down list. It will be replaced by the value that the user entered in "
|
776 |
"listy rozwijanej. To zostaną zastąpione przez wartości, które użytkownik "
|
777 |
"wpisuje w tej dziedzinie."
|
778 |
|
779 |
+
#: lib/wfu_constants.php:166
|
780 |
msgid "Insert variable %n% inside text to denote a line change."
|
781 |
msgstr "Wstaw zmienną %n % wewnątrz tekstu do oznaczenia linii zmiany."
|
782 |
|
783 |
+
#: lib/wfu_constants.php:168
|
784 |
msgid "Test Mode"
|
785 |
msgstr "Tryb testowy"
|
786 |
|
787 |
+
#: lib/wfu_constants.php:169
|
788 |
msgid "select dir..."
|
789 |
msgstr "Wybierz dir..."
|
790 |
|
791 |
+
#: lib/wfu_constants.php:170
|
792 |
msgid "type dir"
|
793 |
msgstr "Typ dir"
|
794 |
|
795 |
+
#: lib/wfu_constants.php:171
|
796 |
msgid "Upload path: %filepath%"
|
797 |
msgstr "Wgraj %filepath%"
|
798 |
|
799 |
+
#: lib/wfu_constants.php:172
|
800 |
msgid "Failed upload path: %filepath%"
|
801 |
msgstr "Nieudane przesyłanie: %filepath%"
|
802 |
|
803 |
+
#: lib/wfu_constants.php:173
|
804 |
msgid " (required)"
|
805 |
msgstr "*"
|
806 |
|
807 |
+
#: lib/wfu_constants.php:174
|
808 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
809 |
msgstr "Obecnie wysyłane są pliki. Czy na pewno chcesz zamknąć stronę?"
|
810 |
|
811 |
+
#: lib/wfu_constants.php:175
|
812 |
msgid "checking captcha..."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: lib/wfu_constants.php:176
|
816 |
msgid "refreshing..."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: lib/wfu_constants.php:177
|
820 |
msgid "correct captcha"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: lib/wfu_constants.php:178
|
824 |
msgid "click to continue the upload"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: lib/wfu_constants.php:179
|
828 |
msgid "Are you sure you want to delete this file?"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: lib/wfu_constants.php:180
|
832 |
+
msgid "Are you sure you want to delete these files?"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: lib/wfu_constants.php:181
|
836 |
+
msgid "Bulk Actions"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: lib/wfu_constants.php:182
|
840 |
+
msgid "Apply"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: lib/wfu_constants.php:183
|
844 |
msgid "Are you sure that you want to cancel the upload?"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: lib/wfu_constants.php:184
|
848 |
msgid "cancel upload of this file"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: lib/wfu_constants.php:185
|
852 |
msgid "Upload in progress"
|
853 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
854 |
|
855 |
+
#: lib/wfu_constants.php:186
|
856 |
msgid "Upload in progress with warnings!"
|
857 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
858 |
|
859 |
+
#: lib/wfu_constants.php:187
|
860 |
msgid "Upload in progress but some files already failed!"
|
861 |
msgstr "Przesyłanie w toku, ale niektóre pliki zostały anulowane!"
|
862 |
|
863 |
+
#: lib/wfu_constants.php:188
|
864 |
msgid "Upload in progress but no files uploaded so far!"
|
865 |
msgstr "Przesyłanie w toku, ale jeszcze nie przesłano żadnego pliku!"
|
866 |
|
867 |
+
#: lib/wfu_constants.php:189
|
868 |
msgid "All files uploaded successfully"
|
869 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
870 |
|
871 |
+
#: lib/wfu_constants.php:190
|
872 |
msgid "All files uploaded successfully but there are warnings!"
|
873 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
874 |
|
875 |
+
#: lib/wfu_constants.php:191
|
876 |
msgid "File uploaded successfully but there are warnings!"
|
877 |
msgstr "Plik został pomyślnie przesłany, ale z ostrzeżeniem!"
|
878 |
|
879 |
+
#: lib/wfu_constants.php:192
|
880 |
msgid "Some files failed to upload!"
|
881 |
msgstr "Niektóre pliki zostały anulowane!"
|
882 |
|
883 |
+
#: lib/wfu_constants.php:193
|
884 |
msgid "All files failed to upload"
|
885 |
msgstr "Wszystkie pliki zostały anulowane"
|
886 |
|
887 |
+
#: lib/wfu_constants.php:194
|
888 |
msgid "File failed to upload"
|
889 |
msgstr "Nie udało się przesłać pliku"
|
890 |
|
891 |
+
#: lib/wfu_constants.php:195
|
892 |
msgid "There are no files to upload!"
|
893 |
msgstr "Brak plików do wysłania"
|
894 |
|
895 |
+
#: lib/wfu_constants.php:196
|
896 |
msgid "Test upload message"
|
897 |
msgstr "To jest wiadomość testowa"
|
898 |
|
899 |
+
#: lib/wfu_constants.php:197
|
900 |
msgid "JSON parse warning!"
|
901 |
msgstr "JSON analizować ostrzeżenie!"
|
902 |
|
903 |
+
#: lib/wfu_constants.php:198
|
904 |
msgid "please wait while redirecting..."
|
905 |
msgstr "Proszę czekać, za chwilę zostaniesz przekierowany..."
|
906 |
|
907 |
+
#: lib/wfu_constants.php:200
|
908 |
msgid "Open visual shortcode editor in new window"
|
909 |
msgstr "Otwórz edytor w nowym oknie"
|
910 |
|
911 |
+
#: lib/wfu_constants.php:201
|
912 |
msgid "loading visual editor"
|
913 |
msgstr "Ładowanie wizualnego edytora"
|
914 |
|
915 |
+
#: lib/wfu_constants.php:202
|
916 |
msgid "Clear file list?"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: lib/wfu_constants.php:203
|
920 |
msgid "DROP HERE"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: lib/wfu_constants.php:205
|
924 |
msgid "record video"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: lib/wfu_constants.php:206
|
928 |
msgid "take a picture"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: lib/wfu_constants.php:207
|
932 |
msgid "turn webcam on/off"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: lib/wfu_constants.php:208
|
936 |
msgid "go live again"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: lib/wfu_constants.php:209
|
940 |
msgid "end recording"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: lib/wfu_constants.php:210
|
944 |
msgid "play"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: lib/wfu_constants.php:211
|
948 |
msgid "pause"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: lib/wfu_constants.php:212
|
952 |
msgid "go to the beginning"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: lib/wfu_constants.php:213
|
956 |
msgid "go to the end"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: lib/wfu_constants.php:215
|
960 |
msgid "Wordpress File Upload Form"
|
961 |
msgstr "Formularz przesyłania plików WPFU"
|
962 |
|
963 |
+
#: lib/wfu_constants.php:216
|
964 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: lib/wfu_constants.php:217
|
968 |
msgid "Upload Files"
|
969 |
msgstr ""
|
970 |
|
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"
|
@@ -297,7 +297,7 @@ msgstr ""
|
|
297 |
"Otpremanje neuspešno! Došlo je do greške prilikom pokušaja da se otpremi "
|
298 |
"datoteka."
|
299 |
|
300 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
301 |
msgid "Upload failed!"
|
302 |
msgstr "Otpremanje neuspešno! "
|
303 |
|
@@ -574,34 +574,46 @@ msgstr "Ne mogu se otvoriti opisi datoteke u jedinici memorije %d"
|
|
574 |
msgid "You are not allowed to delete this file!"
|
575 |
msgstr ""
|
576 |
|
|
|
|
|
|
|
|
|
577 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
578 |
msgid "Upload skipped! File already exists."
|
579 |
msgstr "Otpremanje preskočeno! Datoteka već postoji."
|
580 |
|
581 |
-
#: lib/wfu_constants.php:
|
582 |
msgid "The extension of the file does not match its contents."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid ""
|
587 |
"Upload succeeded but the file is suspicious because its contents do not "
|
588 |
"match its extension. Its proper filename is: "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: lib/wfu_constants.php:
|
592 |
msgid "No files have been selected!"
|
593 |
msgstr "Datoteke nisu odabrane!"
|
594 |
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
597 |
msgstr ""
|
598 |
"WPFilebase Plugin nije ažuriran zato što nije bilo otpremljenih datoteka."
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid "Notification email was not sent because there were no files uploaded."
|
602 |
msgstr "Mail obaveštenja nije poslat jer nije bilo otpremljenih datoteka."
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid ""
|
606 |
"Notification email was not sent because no recipients were defined. Please "
|
607 |
"check notifyrecipients attribute in the shortcode."
|
@@ -609,7 +621,7 @@ msgstr ""
|
|
609 |
"Mail obaveštenja nije poslat jer nije bilo navedenih primalaca. Proverite "
|
610 |
"notifyrecipients atribut u shortcode-u."
|
611 |
|
612 |
-
#: lib/wfu_constants.php:
|
613 |
msgid ""
|
614 |
"Notification email was not sent due to an error. Please check "
|
615 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -617,7 +629,7 @@ msgstr ""
|
|
617 |
"Mail obaveštenja nije poslat zbog greške. Proverite notifyrecipients, "
|
618 |
"notifysubject i notifymessage atribute da biste našli greške."
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid ""
|
622 |
"Redirection not executed because redirection link is empty. Please check "
|
623 |
"redirectlink attribute."
|
@@ -625,19 +637,19 @@ msgstr ""
|
|
625 |
"Preusmeravanje nije izvršeno zato što je link za preusmeravanje prazan. "
|
626 |
"Proverite redirectlink atribut."
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
msgid ""
|
630 |
"Redirection not executed because not all files were successfully uploaded."
|
631 |
msgstr ""
|
632 |
"Preusmeravanje nije izvršeno zato što nisu sve datoteke uspešno otpremljene."
|
633 |
|
634 |
-
#: lib/wfu_constants.php:
|
635 |
msgid ""
|
636 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
637 |
"message persists, contact administrator."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: lib/wfu_constants.php:
|
641 |
msgid ""
|
642 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
643 |
"again to edit the shortcode."
|
@@ -645,7 +657,7 @@ msgstr ""
|
|
645 |
"Neuspešno uređivanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
646 |
"ponovo da uredite shortcode."
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid ""
|
650 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
651 |
"again to delete it."
|
@@ -653,7 +665,7 @@ msgstr ""
|
|
653 |
"Neuspešno brisanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
654 |
"ponovo da ga obrišete."
|
655 |
|
656 |
-
#: lib/wfu_constants.php:
|
657 |
msgid ""
|
658 |
"The page containing the shortcode has been modified and it is no longer "
|
659 |
"valid. Please go back to reload the shortcode."
|
@@ -661,7 +673,7 @@ msgstr ""
|
|
661 |
"Stranica koja sadrži shortcode je izmenjena i više nije validna. Vratite se "
|
662 |
"da ponovo učitate shortcode."
|
663 |
|
664 |
-
#: lib/wfu_constants.php:
|
665 |
msgid ""
|
666 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
667 |
"back to reload the shortcode."
|
@@ -669,7 +681,7 @@ msgstr ""
|
|
669 |
"Neuspešno ažuriranje shortcode-a zbog izmene sadržaja stranice. Vratite se "
|
670 |
"da ponovo učitate shortcode."
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid ""
|
674 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
675 |
"go back and reload the shortcode."
|
@@ -677,39 +689,39 @@ msgstr ""
|
|
677 |
"Neuspešno ažuriranje shortcode-a. Pokušajte ponovo. Ako se problem ne reši, "
|
678 |
"vratite se i opet učitajte shortcode."
|
679 |
|
680 |
-
#: lib/wfu_constants.php:
|
681 |
msgid "This is a test message"
|
682 |
msgstr "Ovo je poruka testa"
|
683 |
|
684 |
-
#: lib/wfu_constants.php:
|
685 |
msgid "This is a test administrator message"
|
686 |
msgstr "Ovo je poruka testa administratora "
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid "File testfile 1 under test"
|
690 |
msgstr "Datoteka testfile 1 na testiranju"
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid "File testfile 1 message"
|
694 |
msgstr "Datoteka testfile 1 poruka"
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid "File testfile 1 administrator message"
|
698 |
msgstr "Datoteka testfile 1 poruka administratora"
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid "File testfile 2 under test"
|
702 |
msgstr "Datoteka testfile 2 na testiranju"
|
703 |
|
704 |
-
#: lib/wfu_constants.php:
|
705 |
msgid "File testfile 2 message"
|
706 |
msgstr "Datoteka testfile 2 poruka"
|
707 |
|
708 |
-
#: lib/wfu_constants.php:
|
709 |
msgid "File testfile 2 administrator message"
|
710 |
msgstr "Datoteka testfile 2 poruka administratora"
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid ""
|
714 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
715 |
"current user."
|
@@ -717,7 +729,7 @@ msgstr ""
|
|
717 |
"Unesite promenljivu %idkorisnika% u tekst. Biće zamenjena id-jem tekućeg "
|
718 |
"korisnika."
|
719 |
|
720 |
-
#: lib/wfu_constants.php:
|
721 |
msgid ""
|
722 |
"Insert variable %username% inside text. It will be replaced by the username "
|
723 |
"of the current user."
|
@@ -725,7 +737,7 @@ msgstr ""
|
|
725 |
"Unesite promenljivu %korisničko ime% u tekst. Biće zamenjena korisničkim "
|
726 |
"imenom tekućeg korisnika."
|
727 |
|
728 |
-
#: lib/wfu_constants.php:
|
729 |
msgid ""
|
730 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
731 |
"the current user."
|
@@ -733,7 +745,7 @@ msgstr ""
|
|
733 |
"Unesite promenljivu %mailkorisnika% u tekst. Biće zamenjena mail-om tekućeg "
|
734 |
"korisnika."
|
735 |
|
736 |
-
#: lib/wfu_constants.php:
|
737 |
msgid ""
|
738 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
739 |
"of the uploaded file."
|
@@ -741,7 +753,7 @@ msgstr ""
|
|
741 |
"Unesite promenljivu %nazivdatoteke% u tekst. Biće zamenjena nazivom "
|
742 |
"otpremljene datoteke."
|
743 |
|
744 |
-
#: lib/wfu_constants.php:
|
745 |
msgid ""
|
746 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
747 |
"filepath of the uploaded file."
|
@@ -749,7 +761,7 @@ msgstr ""
|
|
749 |
"Unesite promenljivu %putanjadatoteke% u tekst. Biće zamenjena celom putanjom "
|
750 |
"otpremljene datoteke."
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid ""
|
754 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
755 |
"the website."
|
@@ -757,7 +769,7 @@ msgstr ""
|
|
757 |
"Unesite promenljivu %idbloga% u tekst. Biće zamenjena id-jem bloga web site-"
|
758 |
"a."
|
759 |
|
760 |
-
#: lib/wfu_constants.php:
|
761 |
msgid ""
|
762 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
763 |
"current page."
|
@@ -765,7 +777,7 @@ msgstr ""
|
|
765 |
"Unesite promenljivu %idstranice% u tekst. Biće zamenjena id-jem tekuće "
|
766 |
"stranice."
|
767 |
|
768 |
-
#: lib/wfu_constants.php:
|
769 |
msgid ""
|
770 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
771 |
"the current page."
|
@@ -773,7 +785,7 @@ msgstr ""
|
|
773 |
"Unesite promenljivu %naslovstranice% u tekst. Biće zamenjena naslovom tekuće "
|
774 |
"stranice."
|
775 |
|
776 |
-
#: lib/wfu_constants.php:
|
777 |
msgid ""
|
778 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
779 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -782,183 +794,195 @@ msgstr ""
|
|
782 |
"Unesite promenljivu %korisnički podaciXXX%. Odaberite korisničko polje iz "
|
783 |
"opadajuće liste. Biće zamenjena vrednošću koju je korisnik uneo u ovo polje."
|
784 |
|
785 |
-
#: lib/wfu_constants.php:
|
786 |
msgid "Insert variable %n% inside text to denote a line change."
|
787 |
msgstr "Unesite promenljivu %n% u tekst kako biste označili promenu reda."
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid "Test Mode"
|
791 |
msgstr "Režim testiranja"
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid "select dir..."
|
795 |
msgstr "odaberite dir..."
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid "type dir"
|
799 |
msgstr "vrsta direktorijuma "
|
800 |
|
801 |
-
#: lib/wfu_constants.php:
|
802 |
msgid "Upload path: %filepath%"
|
803 |
msgstr "Putanja otpremanja: %filepath%"
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid "Failed upload path: %filepath%"
|
807 |
msgstr "Putanja otpremanja neuspešna: %filepath%"
|
808 |
|
809 |
-
#: lib/wfu_constants.php:
|
810 |
msgid " (required)"
|
811 |
msgstr "(obavezna)"
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
815 |
msgstr "Datoteke su otpremljene. Da li sigurno želite da napustite stranicu?"
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid "checking captcha..."
|
819 |
msgstr "captcha se proverava..."
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid "refreshing..."
|
823 |
msgstr "osvežava se..."
|
824 |
|
825 |
-
#: lib/wfu_constants.php:
|
826 |
msgid "correct captcha"
|
827 |
msgstr "ispravi captcha"
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "click to continue the upload"
|
831 |
msgstr "kliknite da biste nastavili otpremanje"
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
834 |
msgid "Are you sure you want to delete this file?"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
838 |
msgid "Are you sure that you want to cancel the upload?"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "cancel upload of this file"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "Upload in progress"
|
847 |
msgstr "Otpremanje u toku"
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "Upload in progress with warnings!"
|
851 |
msgstr "Otpremanje sa upozorenjima u toku!"
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "Upload in progress but some files already failed!"
|
855 |
msgstr "Otpremanje u toku, ali neke datoteke već nisu uspešno otpremljene!"
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "Upload in progress but no files uploaded so far!"
|
859 |
msgstr "Otpremanje u toku, ali do sada nisu otpremljene nikakve datoteke!"
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "All files uploaded successfully"
|
863 |
msgstr "Sve datoteke uspešno su otpremljene"
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "All files uploaded successfully but there are warnings!"
|
867 |
msgstr "Sve datoteke uspešno su otpremljene, ali postoje upozorenja!"
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "File uploaded successfully but there are warnings!"
|
871 |
msgstr "Datoteka je uspešno otpremljena, ali postoje upozorenja!"
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "Some files failed to upload!"
|
875 |
msgstr "Neke datoteke nisu otpremljene!"
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "All files failed to upload"
|
879 |
msgstr "Nijedna datoteka nije otpremljena"
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid "File failed to upload"
|
883 |
msgstr "Datoteka nije uspešno otpremljena"
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid "There are no files to upload!"
|
887 |
msgstr "Nema datoteka za otpremanje"
|
888 |
|
889 |
-
#: lib/wfu_constants.php:
|
890 |
msgid "Test upload message"
|
891 |
msgstr "Testiraj poruku za otpremanje"
|
892 |
|
893 |
-
#: lib/wfu_constants.php:
|
894 |
msgid "JSON parse warning!"
|
895 |
msgstr "Upozorenje za JSON parsiranje!"
|
896 |
|
897 |
-
#: lib/wfu_constants.php:
|
898 |
msgid "please wait while redirecting..."
|
899 |
msgstr "Molimo sačekajte preusmeravanje..."
|
900 |
|
901 |
-
#: lib/wfu_constants.php:
|
902 |
msgid "Open visual shortcode editor in new window"
|
903 |
msgstr "Otvori vizuelni shortcode uređivač u novom prozoru"
|
904 |
|
905 |
-
#: lib/wfu_constants.php:
|
906 |
msgid "loading visual editor"
|
907 |
msgstr "učitavanje vizuelnog uređivača"
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid "Clear file list?"
|
911 |
msgstr "Obriši listu datoteke?"
|
912 |
|
913 |
-
#: lib/wfu_constants.php:
|
914 |
msgid "DROP HERE"
|
915 |
msgstr "POZICIONIRAJ OVDE"
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid "record video"
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "take a picture"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "turn webcam on/off"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: lib/wfu_constants.php:
|
930 |
msgid "go live again"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: lib/wfu_constants.php:
|
934 |
msgid "end recording"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: lib/wfu_constants.php:
|
938 |
msgid "play"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: lib/wfu_constants.php:
|
942 |
msgid "pause"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: lib/wfu_constants.php:
|
946 |
msgid "go to the beginning"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: lib/wfu_constants.php:
|
950 |
msgid "go to the end"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: lib/wfu_constants.php:
|
954 |
msgid "Wordpress File Upload Form"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: lib/wfu_constants.php:
|
958 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: lib/wfu_constants.php:
|
962 |
msgid "Upload Files"
|
963 |
msgstr ""
|
964 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-06 00:00+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-06 00:00+0200\n"
|
7 |
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sr\n"
|
297 |
"Otpremanje neuspešno! Došlo je do greške prilikom pokušaja da se otpremi "
|
298 |
"datoteka."
|
299 |
|
300 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
301 |
msgid "Upload failed!"
|
302 |
msgstr "Otpremanje neuspešno! "
|
303 |
|
574 |
msgid "You are not allowed to delete this file!"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: lib/wfu_constants.php:126
|
578 |
+
msgid "File was not deleted!"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
#: lib/wfu_constants.php:127
|
582 |
+
msgid "No file was deleted!"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: lib/wfu_constants.php:128
|
586 |
+
msgid "Some files were not deleted!"
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: lib/wfu_constants.php:130
|
590 |
msgid "Upload skipped! File already exists."
|
591 |
msgstr "Otpremanje preskočeno! Datoteka već postoji."
|
592 |
|
593 |
+
#: lib/wfu_constants.php:131
|
594 |
msgid "The extension of the file does not match its contents."
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: lib/wfu_constants.php:132
|
598 |
msgid ""
|
599 |
"Upload succeeded but the file is suspicious because its contents do not "
|
600 |
"match its extension. Its proper filename is: "
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: lib/wfu_constants.php:133
|
604 |
msgid "No files have been selected!"
|
605 |
msgstr "Datoteke nisu odabrane!"
|
606 |
|
607 |
+
#: lib/wfu_constants.php:134
|
608 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
609 |
msgstr ""
|
610 |
"WPFilebase Plugin nije ažuriran zato što nije bilo otpremljenih datoteka."
|
611 |
|
612 |
+
#: lib/wfu_constants.php:135
|
613 |
msgid "Notification email was not sent because there were no files uploaded."
|
614 |
msgstr "Mail obaveštenja nije poslat jer nije bilo otpremljenih datoteka."
|
615 |
|
616 |
+
#: lib/wfu_constants.php:136
|
617 |
msgid ""
|
618 |
"Notification email was not sent because no recipients were defined. Please "
|
619 |
"check notifyrecipients attribute in the shortcode."
|
621 |
"Mail obaveštenja nije poslat jer nije bilo navedenih primalaca. Proverite "
|
622 |
"notifyrecipients atribut u shortcode-u."
|
623 |
|
624 |
+
#: lib/wfu_constants.php:137
|
625 |
msgid ""
|
626 |
"Notification email was not sent due to an error. Please check "
|
627 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
629 |
"Mail obaveštenja nije poslat zbog greške. Proverite notifyrecipients, "
|
630 |
"notifysubject i notifymessage atribute da biste našli greške."
|
631 |
|
632 |
+
#: lib/wfu_constants.php:138
|
633 |
msgid ""
|
634 |
"Redirection not executed because redirection link is empty. Please check "
|
635 |
"redirectlink attribute."
|
637 |
"Preusmeravanje nije izvršeno zato što je link za preusmeravanje prazan. "
|
638 |
"Proverite redirectlink atribut."
|
639 |
|
640 |
+
#: lib/wfu_constants.php:139
|
641 |
msgid ""
|
642 |
"Redirection not executed because not all files were successfully uploaded."
|
643 |
msgstr ""
|
644 |
"Preusmeravanje nije izvršeno zato što nisu sve datoteke uspešno otpremljene."
|
645 |
|
646 |
+
#: lib/wfu_constants.php:141
|
647 |
msgid ""
|
648 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
649 |
"message persists, contact administrator."
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: lib/wfu_constants.php:142
|
653 |
msgid ""
|
654 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
655 |
"again to edit the shortcode."
|
657 |
"Neuspešno uređivanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
658 |
"ponovo da uredite shortcode."
|
659 |
|
660 |
+
#: lib/wfu_constants.php:143
|
661 |
msgid ""
|
662 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
663 |
"again to delete it."
|
665 |
"Neuspešno brisanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
666 |
"ponovo da ga obrišete."
|
667 |
|
668 |
+
#: lib/wfu_constants.php:144
|
669 |
msgid ""
|
670 |
"The page containing the shortcode has been modified and it is no longer "
|
671 |
"valid. Please go back to reload the shortcode."
|
673 |
"Stranica koja sadrži shortcode je izmenjena i više nije validna. Vratite se "
|
674 |
"da ponovo učitate shortcode."
|
675 |
|
676 |
+
#: lib/wfu_constants.php:145
|
677 |
msgid ""
|
678 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
679 |
"back to reload the shortcode."
|
681 |
"Neuspešno ažuriranje shortcode-a zbog izmene sadržaja stranice. Vratite se "
|
682 |
"da ponovo učitate shortcode."
|
683 |
|
684 |
+
#: lib/wfu_constants.php:146
|
685 |
msgid ""
|
686 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
687 |
"go back and reload the shortcode."
|
689 |
"Neuspešno ažuriranje shortcode-a. Pokušajte ponovo. Ako se problem ne reši, "
|
690 |
"vratite se i opet učitajte shortcode."
|
691 |
|
692 |
+
#: lib/wfu_constants.php:148
|
693 |
msgid "This is a test message"
|
694 |
msgstr "Ovo je poruka testa"
|
695 |
|
696 |
+
#: lib/wfu_constants.php:149
|
697 |
msgid "This is a test administrator message"
|
698 |
msgstr "Ovo je poruka testa administratora "
|
699 |
|
700 |
+
#: lib/wfu_constants.php:150
|
701 |
msgid "File testfile 1 under test"
|
702 |
msgstr "Datoteka testfile 1 na testiranju"
|
703 |
|
704 |
+
#: lib/wfu_constants.php:151
|
705 |
msgid "File testfile 1 message"
|
706 |
msgstr "Datoteka testfile 1 poruka"
|
707 |
|
708 |
+
#: lib/wfu_constants.php:152
|
709 |
msgid "File testfile 1 administrator message"
|
710 |
msgstr "Datoteka testfile 1 poruka administratora"
|
711 |
|
712 |
+
#: lib/wfu_constants.php:153
|
713 |
msgid "File testfile 2 under test"
|
714 |
msgstr "Datoteka testfile 2 na testiranju"
|
715 |
|
716 |
+
#: lib/wfu_constants.php:154
|
717 |
msgid "File testfile 2 message"
|
718 |
msgstr "Datoteka testfile 2 poruka"
|
719 |
|
720 |
+
#: lib/wfu_constants.php:155
|
721 |
msgid "File testfile 2 administrator message"
|
722 |
msgstr "Datoteka testfile 2 poruka administratora"
|
723 |
|
724 |
+
#: lib/wfu_constants.php:157
|
725 |
msgid ""
|
726 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
727 |
"current user."
|
729 |
"Unesite promenljivu %idkorisnika% u tekst. Biće zamenjena id-jem tekućeg "
|
730 |
"korisnika."
|
731 |
|
732 |
+
#: lib/wfu_constants.php:158
|
733 |
msgid ""
|
734 |
"Insert variable %username% inside text. It will be replaced by the username "
|
735 |
"of the current user."
|
737 |
"Unesite promenljivu %korisničko ime% u tekst. Biće zamenjena korisničkim "
|
738 |
"imenom tekućeg korisnika."
|
739 |
|
740 |
+
#: lib/wfu_constants.php:159
|
741 |
msgid ""
|
742 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
743 |
"the current user."
|
745 |
"Unesite promenljivu %mailkorisnika% u tekst. Biće zamenjena mail-om tekućeg "
|
746 |
"korisnika."
|
747 |
|
748 |
+
#: lib/wfu_constants.php:160
|
749 |
msgid ""
|
750 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
751 |
"of the uploaded file."
|
753 |
"Unesite promenljivu %nazivdatoteke% u tekst. Biće zamenjena nazivom "
|
754 |
"otpremljene datoteke."
|
755 |
|
756 |
+
#: lib/wfu_constants.php:161
|
757 |
msgid ""
|
758 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
759 |
"filepath of the uploaded file."
|
761 |
"Unesite promenljivu %putanjadatoteke% u tekst. Biće zamenjena celom putanjom "
|
762 |
"otpremljene datoteke."
|
763 |
|
764 |
+
#: lib/wfu_constants.php:162
|
765 |
msgid ""
|
766 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
767 |
"the website."
|
769 |
"Unesite promenljivu %idbloga% u tekst. Biće zamenjena id-jem bloga web site-"
|
770 |
"a."
|
771 |
|
772 |
+
#: lib/wfu_constants.php:163
|
773 |
msgid ""
|
774 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
775 |
"current page."
|
777 |
"Unesite promenljivu %idstranice% u tekst. Biće zamenjena id-jem tekuće "
|
778 |
"stranice."
|
779 |
|
780 |
+
#: lib/wfu_constants.php:164
|
781 |
msgid ""
|
782 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
783 |
"the current page."
|
785 |
"Unesite promenljivu %naslovstranice% u tekst. Biće zamenjena naslovom tekuće "
|
786 |
"stranice."
|
787 |
|
788 |
+
#: lib/wfu_constants.php:165
|
789 |
msgid ""
|
790 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
791 |
"drop-down list. It will be replaced by the value that the user entered in "
|
794 |
"Unesite promenljivu %korisnički podaciXXX%. Odaberite korisničko polje iz "
|
795 |
"opadajuće liste. Biće zamenjena vrednošću koju je korisnik uneo u ovo polje."
|
796 |
|
797 |
+
#: lib/wfu_constants.php:166
|
798 |
msgid "Insert variable %n% inside text to denote a line change."
|
799 |
msgstr "Unesite promenljivu %n% u tekst kako biste označili promenu reda."
|
800 |
|
801 |
+
#: lib/wfu_constants.php:168
|
802 |
msgid "Test Mode"
|
803 |
msgstr "Režim testiranja"
|
804 |
|
805 |
+
#: lib/wfu_constants.php:169
|
806 |
msgid "select dir..."
|
807 |
msgstr "odaberite dir..."
|
808 |
|
809 |
+
#: lib/wfu_constants.php:170
|
810 |
msgid "type dir"
|
811 |
msgstr "vrsta direktorijuma "
|
812 |
|
813 |
+
#: lib/wfu_constants.php:171
|
814 |
msgid "Upload path: %filepath%"
|
815 |
msgstr "Putanja otpremanja: %filepath%"
|
816 |
|
817 |
+
#: lib/wfu_constants.php:172
|
818 |
msgid "Failed upload path: %filepath%"
|
819 |
msgstr "Putanja otpremanja neuspešna: %filepath%"
|
820 |
|
821 |
+
#: lib/wfu_constants.php:173
|
822 |
msgid " (required)"
|
823 |
msgstr "(obavezna)"
|
824 |
|
825 |
+
#: lib/wfu_constants.php:174
|
826 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
827 |
msgstr "Datoteke su otpremljene. Da li sigurno želite da napustite stranicu?"
|
828 |
|
829 |
+
#: lib/wfu_constants.php:175
|
830 |
msgid "checking captcha..."
|
831 |
msgstr "captcha se proverava..."
|
832 |
|
833 |
+
#: lib/wfu_constants.php:176
|
834 |
msgid "refreshing..."
|
835 |
msgstr "osvežava se..."
|
836 |
|
837 |
+
#: lib/wfu_constants.php:177
|
838 |
msgid "correct captcha"
|
839 |
msgstr "ispravi captcha"
|
840 |
|
841 |
+
#: lib/wfu_constants.php:178
|
842 |
msgid "click to continue the upload"
|
843 |
msgstr "kliknite da biste nastavili otpremanje"
|
844 |
|
845 |
+
#: lib/wfu_constants.php:179
|
846 |
msgid "Are you sure you want to delete this file?"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: lib/wfu_constants.php:180
|
850 |
+
msgid "Are you sure you want to delete these files?"
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: lib/wfu_constants.php:181
|
854 |
+
msgid "Bulk Actions"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: lib/wfu_constants.php:182
|
858 |
+
msgid "Apply"
|
859 |
+
msgstr ""
|
860 |
+
|
861 |
+
#: lib/wfu_constants.php:183
|
862 |
msgid "Are you sure that you want to cancel the upload?"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: lib/wfu_constants.php:184
|
866 |
msgid "cancel upload of this file"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: lib/wfu_constants.php:185
|
870 |
msgid "Upload in progress"
|
871 |
msgstr "Otpremanje u toku"
|
872 |
|
873 |
+
#: lib/wfu_constants.php:186
|
874 |
msgid "Upload in progress with warnings!"
|
875 |
msgstr "Otpremanje sa upozorenjima u toku!"
|
876 |
|
877 |
+
#: lib/wfu_constants.php:187
|
878 |
msgid "Upload in progress but some files already failed!"
|
879 |
msgstr "Otpremanje u toku, ali neke datoteke već nisu uspešno otpremljene!"
|
880 |
|
881 |
+
#: lib/wfu_constants.php:188
|
882 |
msgid "Upload in progress but no files uploaded so far!"
|
883 |
msgstr "Otpremanje u toku, ali do sada nisu otpremljene nikakve datoteke!"
|
884 |
|
885 |
+
#: lib/wfu_constants.php:189
|
886 |
msgid "All files uploaded successfully"
|
887 |
msgstr "Sve datoteke uspešno su otpremljene"
|
888 |
|
889 |
+
#: lib/wfu_constants.php:190
|
890 |
msgid "All files uploaded successfully but there are warnings!"
|
891 |
msgstr "Sve datoteke uspešno su otpremljene, ali postoje upozorenja!"
|
892 |
|
893 |
+
#: lib/wfu_constants.php:191
|
894 |
msgid "File uploaded successfully but there are warnings!"
|
895 |
msgstr "Datoteka je uspešno otpremljena, ali postoje upozorenja!"
|
896 |
|
897 |
+
#: lib/wfu_constants.php:192
|
898 |
msgid "Some files failed to upload!"
|
899 |
msgstr "Neke datoteke nisu otpremljene!"
|
900 |
|
901 |
+
#: lib/wfu_constants.php:193
|
902 |
msgid "All files failed to upload"
|
903 |
msgstr "Nijedna datoteka nije otpremljena"
|
904 |
|
905 |
+
#: lib/wfu_constants.php:194
|
906 |
msgid "File failed to upload"
|
907 |
msgstr "Datoteka nije uspešno otpremljena"
|
908 |
|
909 |
+
#: lib/wfu_constants.php:195
|
910 |
msgid "There are no files to upload!"
|
911 |
msgstr "Nema datoteka za otpremanje"
|
912 |
|
913 |
+
#: lib/wfu_constants.php:196
|
914 |
msgid "Test upload message"
|
915 |
msgstr "Testiraj poruku za otpremanje"
|
916 |
|
917 |
+
#: lib/wfu_constants.php:197
|
918 |
msgid "JSON parse warning!"
|
919 |
msgstr "Upozorenje za JSON parsiranje!"
|
920 |
|
921 |
+
#: lib/wfu_constants.php:198
|
922 |
msgid "please wait while redirecting..."
|
923 |
msgstr "Molimo sačekajte preusmeravanje..."
|
924 |
|
925 |
+
#: lib/wfu_constants.php:200
|
926 |
msgid "Open visual shortcode editor in new window"
|
927 |
msgstr "Otvori vizuelni shortcode uređivač u novom prozoru"
|
928 |
|
929 |
+
#: lib/wfu_constants.php:201
|
930 |
msgid "loading visual editor"
|
931 |
msgstr "učitavanje vizuelnog uređivača"
|
932 |
|
933 |
+
#: lib/wfu_constants.php:202
|
934 |
msgid "Clear file list?"
|
935 |
msgstr "Obriši listu datoteke?"
|
936 |
|
937 |
+
#: lib/wfu_constants.php:203
|
938 |
msgid "DROP HERE"
|
939 |
msgstr "POZICIONIRAJ OVDE"
|
940 |
|
941 |
+
#: lib/wfu_constants.php:205
|
942 |
msgid "record video"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: lib/wfu_constants.php:206
|
946 |
msgid "take a picture"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: lib/wfu_constants.php:207
|
950 |
msgid "turn webcam on/off"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: lib/wfu_constants.php:208
|
954 |
msgid "go live again"
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: lib/wfu_constants.php:209
|
958 |
msgid "end recording"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: lib/wfu_constants.php:210
|
962 |
msgid "play"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: lib/wfu_constants.php:211
|
966 |
msgid "pause"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: lib/wfu_constants.php:212
|
970 |
msgid "go to the beginning"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: lib/wfu_constants.php:213
|
974 |
msgid "go to the end"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: lib/wfu_constants.php:215
|
978 |
msgid "Wordpress File Upload Form"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: lib/wfu_constants.php:216
|
982 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: lib/wfu_constants.php:217
|
986 |
msgid "Upload Files"
|
987 |
msgstr ""
|
988 |
|
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"
|
@@ -274,7 +274,7 @@ msgstr ""
|
|
274 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
275 |
msgstr "上传失败!试图加载文件时出现错误。"
|
276 |
|
277 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
278 |
msgid "Upload failed!"
|
279 |
msgstr "上传失败!"
|
280 |
|
@@ -525,40 +525,52 @@ msgstr "不能打开分片 %d 上的文件 handles"
|
|
525 |
msgid "You are not allowed to delete this file!"
|
526 |
msgstr "不允许删除该文件!"
|
527 |
|
|
|
|
|
|
|
|
|
528 |
#: lib/wfu_constants.php:127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
529 |
msgid "Upload skipped! File already exists."
|
530 |
msgstr "跳过加载!文件已经存在。"
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid "The extension of the file does not match its contents."
|
534 |
msgstr "该文件的扩展名与其内容不符。"
|
535 |
|
536 |
-
#: lib/wfu_constants.php:
|
537 |
msgid ""
|
538 |
"Upload succeeded but the file is suspicious because its contents do not "
|
539 |
"match its extension. Its proper filename is: "
|
540 |
msgstr "上传成功,但因为他的内容与其扩展名不符,文件可疑。正确的文件名是:"
|
541 |
|
542 |
-
#: lib/wfu_constants.php:
|
543 |
msgid "No files have been selected!"
|
544 |
msgstr "没有选择文件!"
|
545 |
|
546 |
-
#: lib/wfu_constants.php:
|
547 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
548 |
msgstr "因为没有加载的文件,WPFilebase 插件没更新"
|
549 |
|
550 |
-
#: lib/wfu_constants.php:
|
551 |
msgid "Notification email was not sent because there were no files uploaded."
|
552 |
msgstr "因为没有加载文件,通知邮件没发出。"
|
553 |
|
554 |
-
#: lib/wfu_constants.php:
|
555 |
msgid ""
|
556 |
"Notification email was not sent because no recipients were defined. Please "
|
557 |
"check notifyrecipients attribute in the shortcode."
|
558 |
msgstr ""
|
559 |
"因为没有定义收件人,通知邮件没发出。请检查 短码中的 notifyrecipients 属性"
|
560 |
|
561 |
-
#: lib/wfu_constants.php:
|
562 |
msgid ""
|
563 |
"Notification email was not sent due to an error. Please check "
|
564 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -566,134 +578,134 @@ msgstr ""
|
|
566 |
"由于出错,通知邮件没发出。请检查 notifyrecipients, notifysubject 和 "
|
567 |
"notifymessage 属性"
|
568 |
|
569 |
-
#: lib/wfu_constants.php:
|
570 |
msgid ""
|
571 |
"Redirection not executed because redirection link is empty. Please check "
|
572 |
"redirectlink attribute."
|
573 |
msgstr "因为重新定位链接空白,重新定位不执行。请检查 redirectlink 属性。"
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid ""
|
577 |
"Redirection not executed because not all files were successfully uploaded."
|
578 |
msgstr "因为不是所有的文件都成功加载,重新定位不执行。"
|
579 |
|
580 |
-
#: lib/wfu_constants.php:
|
581 |
msgid ""
|
582 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
583 |
"message persists, contact administrator."
|
584 |
msgstr "添加短码到 page/post 失败。请重新试一下。 如果仍有错误, 联系管理员。"
|
585 |
|
586 |
-
#: lib/wfu_constants.php:
|
587 |
msgid ""
|
588 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
589 |
"again to edit the shortcode."
|
590 |
msgstr "因为页面内容改变,编辑短码失败。再重新编辑该短码。"
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid ""
|
594 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
595 |
"again to delete it."
|
596 |
msgstr "因为页面内容改变,删除短码失败。再重新删除。"
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid ""
|
600 |
"The page containing the shortcode has been modified and it is no longer "
|
601 |
"valid. Please go back to reload the shortcode."
|
602 |
msgstr "含有短码的页面已经被修改,它不再有效。请回到重新加载该短码。"
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid ""
|
606 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
607 |
"back to reload the shortcode."
|
608 |
msgstr "因为页面内容被修改,更新短码失败。回到重新加载该短码。"
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid ""
|
612 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
613 |
"go back and reload the shortcode."
|
614 |
msgstr "更新短码失败。请重新再试。如果问题仍存在,返回查询加载该短码。"
|
615 |
|
616 |
-
#: lib/wfu_constants.php:
|
617 |
msgid "This is a test message"
|
618 |
msgstr "这是一个测试信息"
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid "This is a test administrator message"
|
622 |
msgstr "这是一个测试管理员信息"
|
623 |
|
624 |
-
#: lib/wfu_constants.php:
|
625 |
msgid "File testfile 1 under test"
|
626 |
msgstr "测试中的文件 testfile 1"
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
msgid "File testfile 1 message"
|
630 |
msgstr "文件 testfile 1 信息"
|
631 |
|
632 |
-
#: lib/wfu_constants.php:
|
633 |
msgid "File testfile 1 administrator message"
|
634 |
msgstr "文件 testfile 1 管理员信息"
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
msgid "File testfile 2 under test"
|
638 |
msgstr "测试中的文件 testfile 2"
|
639 |
|
640 |
-
#: lib/wfu_constants.php:
|
641 |
msgid "File testfile 2 message"
|
642 |
msgstr "文件 testfile 2 信息"
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid "File testfile 2 administrator message"
|
646 |
msgstr "文件 testfile 2 管理员信息"
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid ""
|
650 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
651 |
"current user."
|
652 |
msgstr "在文本中插入变量 %userid%。 它将被当前用户的 ID 替换。"
|
653 |
|
654 |
-
#: lib/wfu_constants.php:
|
655 |
msgid ""
|
656 |
"Insert variable %username% inside text. It will be replaced by the username "
|
657 |
"of the current user."
|
658 |
msgstr "在文本中插入变量 %username%。 它将被当前用户的用户名替换。"
|
659 |
|
660 |
-
#: lib/wfu_constants.php:
|
661 |
msgid ""
|
662 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
663 |
"the current user."
|
664 |
msgstr "在文本中插入变量 %useremail%。 它将被当前用户的邮替换。"
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid ""
|
668 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
669 |
"of the uploaded file."
|
670 |
msgstr "在文本中插入变量 %filename%。 它将被上传文件的文件名替换。"
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid ""
|
674 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
675 |
"filepath of the uploaded file."
|
676 |
msgstr "在文本中插入变量 %filepath%。 它将被上传文件的文件路径替换。"
|
677 |
|
678 |
-
#: lib/wfu_constants.php:
|
679 |
msgid ""
|
680 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
681 |
"the website."
|
682 |
msgstr "在文本中插入变量 %blogid%。 它将被该网站的blog ID替换。"
|
683 |
|
684 |
-
#: lib/wfu_constants.php:
|
685 |
msgid ""
|
686 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
687 |
"current page."
|
688 |
msgstr "在文本中插入变量 %pageid%。 它将被当前页面的 ID 替换。"
|
689 |
|
690 |
-
#: lib/wfu_constants.php:
|
691 |
msgid ""
|
692 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
693 |
"the current page."
|
694 |
msgstr "在文本中插入变量 %pagetitle%。 它将被上传文件的名称替换。"
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid ""
|
698 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
699 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -702,182 +714,194 @@ msgstr ""
|
|
702 |
"在文本中插入变量 %userdataXXX%。从下拉表中选择该用户区域。它将被用户在此区域"
|
703 |
"输入的值替换。"
|
704 |
|
705 |
-
#: lib/wfu_constants.php:
|
706 |
msgid "Insert variable %n% inside text to denote a line change."
|
707 |
msgstr "在文本中插入变量 %n%。表明一行变化。"
|
708 |
|
709 |
-
#: lib/wfu_constants.php:
|
710 |
msgid "Test Mode"
|
711 |
msgstr "测试模式"
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid "select dir..."
|
715 |
msgstr "选择 dir ..."
|
716 |
|
717 |
-
#: lib/wfu_constants.php:
|
718 |
msgid "type dir"
|
719 |
msgstr "键入 dir"
|
720 |
|
721 |
-
#: lib/wfu_constants.php:
|
722 |
msgid "Upload path: %filepath%"
|
723 |
msgstr "加载路径:%filepath%"
|
724 |
|
725 |
-
#: lib/wfu_constants.php:
|
726 |
msgid "Failed upload path: %filepath%"
|
727 |
msgstr "加载路径失败: %filepath%"
|
728 |
|
729 |
-
#: lib/wfu_constants.php:
|
730 |
msgid " (required)"
|
731 |
msgstr "(必需)"
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
735 |
msgstr "文件正在加载中,你确定要退出这个页面吗?"
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "checking captcha..."
|
739 |
msgstr "正在检查 captcha ..."
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "refreshing..."
|
743 |
msgstr "正在更新 ..."
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "correct captcha"
|
747 |
msgstr "正确的 captcha"
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "click to continue the upload"
|
751 |
msgstr "点击继续上传"
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "Are you sure you want to delete this file?"
|
755 |
msgstr "确定要删除这个文件吗?"
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
758 |
msgid "Are you sure that you want to cancel the upload?"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: lib/wfu_constants.php:
|
762 |
msgid "cancel upload of this file"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: lib/wfu_constants.php:
|
766 |
msgid "Upload in progress"
|
767 |
msgstr "上传正在进行中"
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid "Upload in progress with warnings!"
|
771 |
msgstr "上传正在进行中,有警告提示!"
|
772 |
|
773 |
-
#: lib/wfu_constants.php:
|
774 |
msgid "Upload in progress but some files already failed!"
|
775 |
msgstr "上传正在进行中,有些文件已经加载失败!"
|
776 |
|
777 |
-
#: lib/wfu_constants.php:
|
778 |
msgid "Upload in progress but no files uploaded so far!"
|
779 |
msgstr "上传正在进行中,还没有文件载入!"
|
780 |
|
781 |
-
#: lib/wfu_constants.php:
|
782 |
msgid "All files uploaded successfully"
|
783 |
msgstr "所有危机上传成功"
|
784 |
|
785 |
-
#: lib/wfu_constants.php:
|
786 |
msgid "All files uploaded successfully but there are warnings!"
|
787 |
msgstr "所有文件上传成功,但有警告提示!"
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid "File uploaded successfully but there are warnings!"
|
791 |
msgstr "文件上传成功,但有警告提示!"
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid "Some files failed to upload!"
|
795 |
msgstr "部分文件上传失败!"
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid "All files failed to upload"
|
799 |
msgstr "所以我就上传失败"
|
800 |
|
801 |
-
#: lib/wfu_constants.php:
|
802 |
msgid "File failed to upload"
|
803 |
msgstr "文件上传失败"
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid "There are no files to upload!"
|
807 |
msgstr "没有要上传的文件!"
|
808 |
|
809 |
-
#: lib/wfu_constants.php:
|
810 |
msgid "Test upload message"
|
811 |
msgstr "测试上传信息"
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid "JSON parse warning!"
|
815 |
msgstr "JSON语法分析警告!"
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid "please wait while redirecting..."
|
819 |
msgstr "请等候,正在重新定位 ..."
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid "Open visual shortcode editor in new window"
|
823 |
msgstr "在新窗口打开视频 shortcode 编辑器"
|
824 |
|
825 |
-
#: lib/wfu_constants.php:
|
826 |
msgid "loading visual editor"
|
827 |
msgstr "加载视频编辑器"
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "Clear file list?"
|
831 |
msgstr "清除文件列表?"
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
834 |
msgid "DROP HERE"
|
835 |
msgstr "放在这里"
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "record video"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "take a picture"
|
843 |
msgstr ""
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "turn webcam on/off"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "go live again"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "end recording"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "play"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "pause"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "go to the beginning"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "go to the end"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "Wordpress File Upload Form"
|
875 |
msgstr "Wordpress 文件上传格式"
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
879 |
msgstr "针对sidebars 的 Wordpress 文件上传插件工具"
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid "Upload Files"
|
883 |
msgstr "上传文件"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-06 00:00+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-06 00:00+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: zh_CN\n"
|
274 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
275 |
msgstr "上传失败!试图加载文件时出现错误。"
|
276 |
|
277 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
278 |
msgid "Upload failed!"
|
279 |
msgstr "上传失败!"
|
280 |
|
525 |
msgid "You are not allowed to delete this file!"
|
526 |
msgstr "不允许删除该文件!"
|
527 |
|
528 |
+
#: lib/wfu_constants.php:126
|
529 |
+
msgid "File was not deleted!"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
#: lib/wfu_constants.php:127
|
533 |
+
msgid "No file was deleted!"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: lib/wfu_constants.php:128
|
537 |
+
msgid "Some files were not deleted!"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: lib/wfu_constants.php:130
|
541 |
msgid "Upload skipped! File already exists."
|
542 |
msgstr "跳过加载!文件已经存在。"
|
543 |
|
544 |
+
#: lib/wfu_constants.php:131
|
545 |
msgid "The extension of the file does not match its contents."
|
546 |
msgstr "该文件的扩展名与其内容不符。"
|
547 |
|
548 |
+
#: lib/wfu_constants.php:132
|
549 |
msgid ""
|
550 |
"Upload succeeded but the file is suspicious because its contents do not "
|
551 |
"match its extension. Its proper filename is: "
|
552 |
msgstr "上传成功,但因为他的内容与其扩展名不符,文件可疑。正确的文件名是:"
|
553 |
|
554 |
+
#: lib/wfu_constants.php:133
|
555 |
msgid "No files have been selected!"
|
556 |
msgstr "没有选择文件!"
|
557 |
|
558 |
+
#: lib/wfu_constants.php:134
|
559 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
560 |
msgstr "因为没有加载的文件,WPFilebase 插件没更新"
|
561 |
|
562 |
+
#: lib/wfu_constants.php:135
|
563 |
msgid "Notification email was not sent because there were no files uploaded."
|
564 |
msgstr "因为没有加载文件,通知邮件没发出。"
|
565 |
|
566 |
+
#: lib/wfu_constants.php:136
|
567 |
msgid ""
|
568 |
"Notification email was not sent because no recipients were defined. Please "
|
569 |
"check notifyrecipients attribute in the shortcode."
|
570 |
msgstr ""
|
571 |
"因为没有定义收件人,通知邮件没发出。请检查 短码中的 notifyrecipients 属性"
|
572 |
|
573 |
+
#: lib/wfu_constants.php:137
|
574 |
msgid ""
|
575 |
"Notification email was not sent due to an error. Please check "
|
576 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
578 |
"由于出错,通知邮件没发出。请检查 notifyrecipients, notifysubject 和 "
|
579 |
"notifymessage 属性"
|
580 |
|
581 |
+
#: lib/wfu_constants.php:138
|
582 |
msgid ""
|
583 |
"Redirection not executed because redirection link is empty. Please check "
|
584 |
"redirectlink attribute."
|
585 |
msgstr "因为重新定位链接空白,重新定位不执行。请检查 redirectlink 属性。"
|
586 |
|
587 |
+
#: lib/wfu_constants.php:139
|
588 |
msgid ""
|
589 |
"Redirection not executed because not all files were successfully uploaded."
|
590 |
msgstr "因为不是所有的文件都成功加载,重新定位不执行。"
|
591 |
|
592 |
+
#: lib/wfu_constants.php:141
|
593 |
msgid ""
|
594 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
595 |
"message persists, contact administrator."
|
596 |
msgstr "添加短码到 page/post 失败。请重新试一下。 如果仍有错误, 联系管理员。"
|
597 |
|
598 |
+
#: lib/wfu_constants.php:142
|
599 |
msgid ""
|
600 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
601 |
"again to edit the shortcode."
|
602 |
msgstr "因为页面内容改变,编辑短码失败。再重新编辑该短码。"
|
603 |
|
604 |
+
#: lib/wfu_constants.php:143
|
605 |
msgid ""
|
606 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
607 |
"again to delete it."
|
608 |
msgstr "因为页面内容改变,删除短码失败。再重新删除。"
|
609 |
|
610 |
+
#: lib/wfu_constants.php:144
|
611 |
msgid ""
|
612 |
"The page containing the shortcode has been modified and it is no longer "
|
613 |
"valid. Please go back to reload the shortcode."
|
614 |
msgstr "含有短码的页面已经被修改,它不再有效。请回到重新加载该短码。"
|
615 |
|
616 |
+
#: lib/wfu_constants.php:145
|
617 |
msgid ""
|
618 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
619 |
"back to reload the shortcode."
|
620 |
msgstr "因为页面内容被修改,更新短码失败。回到重新加载该短码。"
|
621 |
|
622 |
+
#: lib/wfu_constants.php:146
|
623 |
msgid ""
|
624 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
625 |
"go back and reload the shortcode."
|
626 |
msgstr "更新短码失败。请重新再试。如果问题仍存在,返回查询加载该短码。"
|
627 |
|
628 |
+
#: lib/wfu_constants.php:148
|
629 |
msgid "This is a test message"
|
630 |
msgstr "这是一个测试信息"
|
631 |
|
632 |
+
#: lib/wfu_constants.php:149
|
633 |
msgid "This is a test administrator message"
|
634 |
msgstr "这是一个测试管理员信息"
|
635 |
|
636 |
+
#: lib/wfu_constants.php:150
|
637 |
msgid "File testfile 1 under test"
|
638 |
msgstr "测试中的文件 testfile 1"
|
639 |
|
640 |
+
#: lib/wfu_constants.php:151
|
641 |
msgid "File testfile 1 message"
|
642 |
msgstr "文件 testfile 1 信息"
|
643 |
|
644 |
+
#: lib/wfu_constants.php:152
|
645 |
msgid "File testfile 1 administrator message"
|
646 |
msgstr "文件 testfile 1 管理员信息"
|
647 |
|
648 |
+
#: lib/wfu_constants.php:153
|
649 |
msgid "File testfile 2 under test"
|
650 |
msgstr "测试中的文件 testfile 2"
|
651 |
|
652 |
+
#: lib/wfu_constants.php:154
|
653 |
msgid "File testfile 2 message"
|
654 |
msgstr "文件 testfile 2 信息"
|
655 |
|
656 |
+
#: lib/wfu_constants.php:155
|
657 |
msgid "File testfile 2 administrator message"
|
658 |
msgstr "文件 testfile 2 管理员信息"
|
659 |
|
660 |
+
#: lib/wfu_constants.php:157
|
661 |
msgid ""
|
662 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
663 |
"current user."
|
664 |
msgstr "在文本中插入变量 %userid%。 它将被当前用户的 ID 替换。"
|
665 |
|
666 |
+
#: lib/wfu_constants.php:158
|
667 |
msgid ""
|
668 |
"Insert variable %username% inside text. It will be replaced by the username "
|
669 |
"of the current user."
|
670 |
msgstr "在文本中插入变量 %username%。 它将被当前用户的用户名替换。"
|
671 |
|
672 |
+
#: lib/wfu_constants.php:159
|
673 |
msgid ""
|
674 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
675 |
"the current user."
|
676 |
msgstr "在文本中插入变量 %useremail%。 它将被当前用户的邮替换。"
|
677 |
|
678 |
+
#: lib/wfu_constants.php:160
|
679 |
msgid ""
|
680 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
681 |
"of the uploaded file."
|
682 |
msgstr "在文本中插入变量 %filename%。 它将被上传文件的文件名替换。"
|
683 |
|
684 |
+
#: lib/wfu_constants.php:161
|
685 |
msgid ""
|
686 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
687 |
"filepath of the uploaded file."
|
688 |
msgstr "在文本中插入变量 %filepath%。 它将被上传文件的文件路径替换。"
|
689 |
|
690 |
+
#: lib/wfu_constants.php:162
|
691 |
msgid ""
|
692 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
693 |
"the website."
|
694 |
msgstr "在文本中插入变量 %blogid%。 它将被该网站的blog ID替换。"
|
695 |
|
696 |
+
#: lib/wfu_constants.php:163
|
697 |
msgid ""
|
698 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
699 |
"current page."
|
700 |
msgstr "在文本中插入变量 %pageid%。 它将被当前页面的 ID 替换。"
|
701 |
|
702 |
+
#: lib/wfu_constants.php:164
|
703 |
msgid ""
|
704 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
705 |
"the current page."
|
706 |
msgstr "在文本中插入变量 %pagetitle%。 它将被上传文件的名称替换。"
|
707 |
|
708 |
+
#: lib/wfu_constants.php:165
|
709 |
msgid ""
|
710 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
711 |
"drop-down list. It will be replaced by the value that the user entered in "
|
714 |
"在文本中插入变量 %userdataXXX%。从下拉表中选择该用户区域。它将被用户在此区域"
|
715 |
"输入的值替换。"
|
716 |
|
717 |
+
#: lib/wfu_constants.php:166
|
718 |
msgid "Insert variable %n% inside text to denote a line change."
|
719 |
msgstr "在文本中插入变量 %n%。表明一行变化。"
|
720 |
|
721 |
+
#: lib/wfu_constants.php:168
|
722 |
msgid "Test Mode"
|
723 |
msgstr "测试模式"
|
724 |
|
725 |
+
#: lib/wfu_constants.php:169
|
726 |
msgid "select dir..."
|
727 |
msgstr "选择 dir ..."
|
728 |
|
729 |
+
#: lib/wfu_constants.php:170
|
730 |
msgid "type dir"
|
731 |
msgstr "键入 dir"
|
732 |
|
733 |
+
#: lib/wfu_constants.php:171
|
734 |
msgid "Upload path: %filepath%"
|
735 |
msgstr "加载路径:%filepath%"
|
736 |
|
737 |
+
#: lib/wfu_constants.php:172
|
738 |
msgid "Failed upload path: %filepath%"
|
739 |
msgstr "加载路径失败: %filepath%"
|
740 |
|
741 |
+
#: lib/wfu_constants.php:173
|
742 |
msgid " (required)"
|
743 |
msgstr "(必需)"
|
744 |
|
745 |
+
#: lib/wfu_constants.php:174
|
746 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
747 |
msgstr "文件正在加载中,你确定要退出这个页面吗?"
|
748 |
|
749 |
+
#: lib/wfu_constants.php:175
|
750 |
msgid "checking captcha..."
|
751 |
msgstr "正在检查 captcha ..."
|
752 |
|
753 |
+
#: lib/wfu_constants.php:176
|
754 |
msgid "refreshing..."
|
755 |
msgstr "正在更新 ..."
|
756 |
|
757 |
+
#: lib/wfu_constants.php:177
|
758 |
msgid "correct captcha"
|
759 |
msgstr "正确的 captcha"
|
760 |
|
761 |
+
#: lib/wfu_constants.php:178
|
762 |
msgid "click to continue the upload"
|
763 |
msgstr "点击继续上传"
|
764 |
|
765 |
+
#: lib/wfu_constants.php:179
|
766 |
msgid "Are you sure you want to delete this file?"
|
767 |
msgstr "确定要删除这个文件吗?"
|
768 |
|
769 |
+
#: lib/wfu_constants.php:180
|
770 |
+
msgid "Are you sure you want to delete these files?"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: lib/wfu_constants.php:181
|
774 |
+
msgid "Bulk Actions"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: lib/wfu_constants.php:182
|
778 |
+
msgid "Apply"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: lib/wfu_constants.php:183
|
782 |
msgid "Are you sure that you want to cancel the upload?"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: lib/wfu_constants.php:184
|
786 |
msgid "cancel upload of this file"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: lib/wfu_constants.php:185
|
790 |
msgid "Upload in progress"
|
791 |
msgstr "上传正在进行中"
|
792 |
|
793 |
+
#: lib/wfu_constants.php:186
|
794 |
msgid "Upload in progress with warnings!"
|
795 |
msgstr "上传正在进行中,有警告提示!"
|
796 |
|
797 |
+
#: lib/wfu_constants.php:187
|
798 |
msgid "Upload in progress but some files already failed!"
|
799 |
msgstr "上传正在进行中,有些文件已经加载失败!"
|
800 |
|
801 |
+
#: lib/wfu_constants.php:188
|
802 |
msgid "Upload in progress but no files uploaded so far!"
|
803 |
msgstr "上传正在进行中,还没有文件载入!"
|
804 |
|
805 |
+
#: lib/wfu_constants.php:189
|
806 |
msgid "All files uploaded successfully"
|
807 |
msgstr "所有危机上传成功"
|
808 |
|
809 |
+
#: lib/wfu_constants.php:190
|
810 |
msgid "All files uploaded successfully but there are warnings!"
|
811 |
msgstr "所有文件上传成功,但有警告提示!"
|
812 |
|
813 |
+
#: lib/wfu_constants.php:191
|
814 |
msgid "File uploaded successfully but there are warnings!"
|
815 |
msgstr "文件上传成功,但有警告提示!"
|
816 |
|
817 |
+
#: lib/wfu_constants.php:192
|
818 |
msgid "Some files failed to upload!"
|
819 |
msgstr "部分文件上传失败!"
|
820 |
|
821 |
+
#: lib/wfu_constants.php:193
|
822 |
msgid "All files failed to upload"
|
823 |
msgstr "所以我就上传失败"
|
824 |
|
825 |
+
#: lib/wfu_constants.php:194
|
826 |
msgid "File failed to upload"
|
827 |
msgstr "文件上传失败"
|
828 |
|
829 |
+
#: lib/wfu_constants.php:195
|
830 |
msgid "There are no files to upload!"
|
831 |
msgstr "没有要上传的文件!"
|
832 |
|
833 |
+
#: lib/wfu_constants.php:196
|
834 |
msgid "Test upload message"
|
835 |
msgstr "测试上传信息"
|
836 |
|
837 |
+
#: lib/wfu_constants.php:197
|
838 |
msgid "JSON parse warning!"
|
839 |
msgstr "JSON语法分析警告!"
|
840 |
|
841 |
+
#: lib/wfu_constants.php:198
|
842 |
msgid "please wait while redirecting..."
|
843 |
msgstr "请等候,正在重新定位 ..."
|
844 |
|
845 |
+
#: lib/wfu_constants.php:200
|
846 |
msgid "Open visual shortcode editor in new window"
|
847 |
msgstr "在新窗口打开视频 shortcode 编辑器"
|
848 |
|
849 |
+
#: lib/wfu_constants.php:201
|
850 |
msgid "loading visual editor"
|
851 |
msgstr "加载视频编辑器"
|
852 |
|
853 |
+
#: lib/wfu_constants.php:202
|
854 |
msgid "Clear file list?"
|
855 |
msgstr "清除文件列表?"
|
856 |
|
857 |
+
#: lib/wfu_constants.php:203
|
858 |
msgid "DROP HERE"
|
859 |
msgstr "放在这里"
|
860 |
|
861 |
+
#: lib/wfu_constants.php:205
|
862 |
msgid "record video"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: lib/wfu_constants.php:206
|
866 |
msgid "take a picture"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: lib/wfu_constants.php:207
|
870 |
msgid "turn webcam on/off"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: lib/wfu_constants.php:208
|
874 |
msgid "go live again"
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: lib/wfu_constants.php:209
|
878 |
msgid "end recording"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: lib/wfu_constants.php:210
|
882 |
msgid "play"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: lib/wfu_constants.php:211
|
886 |
msgid "pause"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: lib/wfu_constants.php:212
|
890 |
msgid "go to the beginning"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: lib/wfu_constants.php:213
|
894 |
msgid "go to the end"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: lib/wfu_constants.php:215
|
898 |
msgid "Wordpress File Upload Form"
|
899 |
msgstr "Wordpress 文件上传格式"
|
900 |
|
901 |
+
#: lib/wfu_constants.php:216
|
902 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
903 |
msgstr "针对sidebars 的 Wordpress 文件上传插件工具"
|
904 |
|
905 |
+
#: lib/wfu_constants.php:217
|
906 |
msgid "Upload Files"
|
907 |
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"
|
@@ -266,7 +266,7 @@ msgstr ""
|
|
266 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: lib/wfu_constants.php:70 lib/wfu_constants.php:
|
270 |
msgid "Upload failed!"
|
271 |
msgstr ""
|
272 |
|
@@ -513,354 +513,378 @@ msgstr ""
|
|
513 |
msgid "You are not allowed to delete this file!"
|
514 |
msgstr ""
|
515 |
|
|
|
|
|
|
|
|
|
516 |
#: lib/wfu_constants.php:127
|
517 |
-
msgid "
|
518 |
msgstr ""
|
519 |
|
520 |
#: lib/wfu_constants.php:128
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
msgid "The extension of the file does not match its contents."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: lib/wfu_constants.php:
|
525 |
msgid ""
|
526 |
"Upload succeeded but the file is suspicious because its contents do not "
|
527 |
"match its extension. Its proper filename is: "
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: lib/wfu_constants.php:
|
531 |
msgid "No files have been selected!"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: lib/wfu_constants.php:
|
535 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: lib/wfu_constants.php:
|
539 |
msgid "Notification email was not sent because there were no files uploaded."
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: lib/wfu_constants.php:
|
543 |
msgid ""
|
544 |
"Notification email was not sent because no recipients were defined. Please "
|
545 |
"check notifyrecipients attribute in the shortcode."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: lib/wfu_constants.php:
|
549 |
msgid ""
|
550 |
"Notification email was not sent due to an error. Please check "
|
551 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: lib/wfu_constants.php:
|
555 |
msgid ""
|
556 |
"Redirection not executed because redirection link is empty. Please check "
|
557 |
"redirectlink attribute."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: lib/wfu_constants.php:
|
561 |
msgid ""
|
562 |
"Redirection not executed because not all files were successfully uploaded."
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: lib/wfu_constants.php:
|
566 |
msgid ""
|
567 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
568 |
"message persists, contact administrator."
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid ""
|
573 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
574 |
"again to edit the shortcode."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: lib/wfu_constants.php:
|
578 |
msgid ""
|
579 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
580 |
"again to delete it."
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: lib/wfu_constants.php:
|
584 |
msgid ""
|
585 |
"The page containing the shortcode has been modified and it is no longer "
|
586 |
"valid. Please go back to reload the shortcode."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: lib/wfu_constants.php:
|
590 |
msgid ""
|
591 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
592 |
"back to reload the shortcode."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
msgid ""
|
597 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
598 |
"go back and reload the shortcode."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "This is a test message"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid "This is a test administrator message"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: lib/wfu_constants.php:
|
610 |
msgid "File testfile 1 under test"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
msgid "File testfile 1 message"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: lib/wfu_constants.php:
|
618 |
msgid "File testfile 1 administrator message"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: lib/wfu_constants.php:
|
622 |
msgid "File testfile 2 under test"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: lib/wfu_constants.php:
|
626 |
msgid "File testfile 2 message"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: lib/wfu_constants.php:
|
630 |
msgid "File testfile 2 administrator message"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
msgid ""
|
635 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
636 |
"current user."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: lib/wfu_constants.php:
|
640 |
msgid ""
|
641 |
"Insert variable %username% inside text. It will be replaced by the username "
|
642 |
"of the current user."
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: lib/wfu_constants.php:
|
646 |
msgid ""
|
647 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
648 |
"the current user."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid ""
|
653 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
654 |
"of the uploaded file."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid ""
|
659 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
660 |
"filepath of the uploaded file."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid ""
|
665 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
666 |
"the website."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: lib/wfu_constants.php:
|
670 |
msgid ""
|
671 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
672 |
"current page."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid ""
|
677 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
678 |
"the current page."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: lib/wfu_constants.php:
|
682 |
msgid ""
|
683 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
684 |
"drop-down list. It will be replaced by the value that the user entered in "
|
685 |
"this field."
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid "Insert variable %n% inside text to denote a line change."
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid "Test Mode"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid "select dir..."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid "type dir"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: lib/wfu_constants.php:
|
705 |
msgid "Upload path: %filepath%"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: lib/wfu_constants.php:
|
709 |
msgid "Failed upload path: %filepath%"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid " (required)"
|
714 |
msgstr ""
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: lib/wfu_constants.php:
|
721 |
msgid "checking captcha..."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: lib/wfu_constants.php:
|
725 |
msgid "refreshing..."
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: lib/wfu_constants.php:
|
729 |
msgid "correct captcha"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: lib/wfu_constants.php:
|
733 |
msgid "click to continue the upload"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: lib/wfu_constants.php:
|
737 |
msgid "Are you sure you want to delete this file?"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
741 |
msgid "Are you sure that you want to cancel the upload?"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: lib/wfu_constants.php:
|
745 |
msgid "cancel upload of this file"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: lib/wfu_constants.php:
|
749 |
msgid "Upload in progress"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid "Upload in progress with warnings!"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: lib/wfu_constants.php:
|
757 |
msgid "Upload in progress but some files already failed!"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: lib/wfu_constants.php:
|
761 |
msgid "Upload in progress but no files uploaded so far!"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: lib/wfu_constants.php:
|
765 |
msgid "All files uploaded successfully"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: lib/wfu_constants.php:
|
769 |
msgid "All files uploaded successfully but there are warnings!"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: lib/wfu_constants.php:
|
773 |
msgid "File uploaded successfully but there are warnings!"
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: lib/wfu_constants.php:
|
777 |
msgid "Some files failed to upload!"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: lib/wfu_constants.php:
|
781 |
msgid "All files failed to upload"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: lib/wfu_constants.php:
|
785 |
msgid "File failed to upload"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: lib/wfu_constants.php:
|
789 |
msgid "There are no files to upload!"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: lib/wfu_constants.php:
|
793 |
msgid "Test upload message"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: lib/wfu_constants.php:
|
797 |
msgid "JSON parse warning!"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: lib/wfu_constants.php:
|
801 |
msgid "please wait while redirecting..."
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: lib/wfu_constants.php:
|
805 |
msgid "Open visual shortcode editor in new window"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
msgid "loading visual editor"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
msgid "Clear file list?"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid "DROP HERE"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "record video"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "take a picture"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "turn webcam on/off"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid "go live again"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
msgid "end recording"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
msgid "play"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "pause"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: lib/wfu_constants.php:
|
849 |
msgid "go to the beginning"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: lib/wfu_constants.php:
|
853 |
msgid "go to the end"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
msgid "Wordpress File Upload Form"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
msgid "Upload Files"
|
866 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-06-05 23:57+0200\n"
|
6 |
+
"PO-Revision-Date: 2016-06-05 23:57+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
266 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: lib/wfu_constants.php:70 lib/wfu_constants.php:199
|
270 |
msgid "Upload failed!"
|
271 |
msgstr ""
|
272 |
|
513 |
msgid "You are not allowed to delete this file!"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: lib/wfu_constants.php:126
|
517 |
+
msgid "File was not deleted!"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
#: lib/wfu_constants.php:127
|
521 |
+
msgid "No file was deleted!"
|
522 |
msgstr ""
|
523 |
|
524 |
#: lib/wfu_constants.php:128
|
525 |
+
msgid "Some files were not deleted!"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: lib/wfu_constants.php:130
|
529 |
+
msgid "Upload skipped! File already exists."
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: lib/wfu_constants.php:131
|
533 |
msgid "The extension of the file does not match its contents."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: lib/wfu_constants.php:132
|
537 |
msgid ""
|
538 |
"Upload succeeded but the file is suspicious because its contents do not "
|
539 |
"match its extension. Its proper filename is: "
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: lib/wfu_constants.php:133
|
543 |
msgid "No files have been selected!"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: lib/wfu_constants.php:134
|
547 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: lib/wfu_constants.php:135
|
551 |
msgid "Notification email was not sent because there were no files uploaded."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: lib/wfu_constants.php:136
|
555 |
msgid ""
|
556 |
"Notification email was not sent because no recipients were defined. Please "
|
557 |
"check notifyrecipients attribute in the shortcode."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: lib/wfu_constants.php:137
|
561 |
msgid ""
|
562 |
"Notification email was not sent due to an error. Please check "
|
563 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: lib/wfu_constants.php:138
|
567 |
msgid ""
|
568 |
"Redirection not executed because redirection link is empty. Please check "
|
569 |
"redirectlink attribute."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: lib/wfu_constants.php:139
|
573 |
msgid ""
|
574 |
"Redirection not executed because not all files were successfully uploaded."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: lib/wfu_constants.php:141
|
578 |
msgid ""
|
579 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
580 |
"message persists, contact administrator."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: lib/wfu_constants.php:142
|
584 |
msgid ""
|
585 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
586 |
"again to edit the shortcode."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: lib/wfu_constants.php:143
|
590 |
msgid ""
|
591 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
592 |
"again to delete it."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: lib/wfu_constants.php:144
|
596 |
msgid ""
|
597 |
"The page containing the shortcode has been modified and it is no longer "
|
598 |
"valid. Please go back to reload the shortcode."
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: lib/wfu_constants.php:145
|
602 |
msgid ""
|
603 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
604 |
"back to reload the shortcode."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: lib/wfu_constants.php:146
|
608 |
msgid ""
|
609 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
610 |
"go back and reload the shortcode."
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: lib/wfu_constants.php:148
|
614 |
msgid "This is a test message"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: lib/wfu_constants.php:149
|
618 |
msgid "This is a test administrator message"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: lib/wfu_constants.php:150
|
622 |
msgid "File testfile 1 under test"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: lib/wfu_constants.php:151
|
626 |
msgid "File testfile 1 message"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: lib/wfu_constants.php:152
|
630 |
msgid "File testfile 1 administrator message"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: lib/wfu_constants.php:153
|
634 |
msgid "File testfile 2 under test"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: lib/wfu_constants.php:154
|
638 |
msgid "File testfile 2 message"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: lib/wfu_constants.php:155
|
642 |
msgid "File testfile 2 administrator message"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: lib/wfu_constants.php:157
|
646 |
msgid ""
|
647 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
648 |
"current user."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: lib/wfu_constants.php:158
|
652 |
msgid ""
|
653 |
"Insert variable %username% inside text. It will be replaced by the username "
|
654 |
"of the current user."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: lib/wfu_constants.php:159
|
658 |
msgid ""
|
659 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
660 |
"the current user."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: lib/wfu_constants.php:160
|
664 |
msgid ""
|
665 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
666 |
"of the uploaded file."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: lib/wfu_constants.php:161
|
670 |
msgid ""
|
671 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
672 |
"filepath of the uploaded file."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: lib/wfu_constants.php:162
|
676 |
msgid ""
|
677 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
678 |
"the website."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: lib/wfu_constants.php:163
|
682 |
msgid ""
|
683 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
684 |
"current page."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: lib/wfu_constants.php:164
|
688 |
msgid ""
|
689 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
690 |
"the current page."
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: lib/wfu_constants.php:165
|
694 |
msgid ""
|
695 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
696 |
"drop-down list. It will be replaced by the value that the user entered in "
|
697 |
"this field."
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: lib/wfu_constants.php:166
|
701 |
msgid "Insert variable %n% inside text to denote a line change."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: lib/wfu_constants.php:168
|
705 |
msgid "Test Mode"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: lib/wfu_constants.php:169
|
709 |
msgid "select dir..."
|
710 |
msgstr ""
|
711 |
|
712 |
+
#: lib/wfu_constants.php:170
|
713 |
msgid "type dir"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: lib/wfu_constants.php:171
|
717 |
msgid "Upload path: %filepath%"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: lib/wfu_constants.php:172
|
721 |
msgid "Failed upload path: %filepath%"
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: lib/wfu_constants.php:173
|
725 |
msgid " (required)"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: lib/wfu_constants.php:174
|
729 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: lib/wfu_constants.php:175
|
733 |
msgid "checking captcha..."
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: lib/wfu_constants.php:176
|
737 |
msgid "refreshing..."
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: lib/wfu_constants.php:177
|
741 |
msgid "correct captcha"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: lib/wfu_constants.php:178
|
745 |
msgid "click to continue the upload"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: lib/wfu_constants.php:179
|
749 |
msgid "Are you sure you want to delete this file?"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: lib/wfu_constants.php:180
|
753 |
+
msgid "Are you sure you want to delete these files?"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: lib/wfu_constants.php:181
|
757 |
+
msgid "Bulk Actions"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: lib/wfu_constants.php:182
|
761 |
+
msgid "Apply"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: lib/wfu_constants.php:183
|
765 |
msgid "Are you sure that you want to cancel the upload?"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: lib/wfu_constants.php:184
|
769 |
msgid "cancel upload of this file"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: lib/wfu_constants.php:185
|
773 |
msgid "Upload in progress"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: lib/wfu_constants.php:186
|
777 |
msgid "Upload in progress with warnings!"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: lib/wfu_constants.php:187
|
781 |
msgid "Upload in progress but some files already failed!"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: lib/wfu_constants.php:188
|
785 |
msgid "Upload in progress but no files uploaded so far!"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: lib/wfu_constants.php:189
|
789 |
msgid "All files uploaded successfully"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: lib/wfu_constants.php:190
|
793 |
msgid "All files uploaded successfully but there are warnings!"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: lib/wfu_constants.php:191
|
797 |
msgid "File uploaded successfully but there are warnings!"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: lib/wfu_constants.php:192
|
801 |
msgid "Some files failed to upload!"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: lib/wfu_constants.php:193
|
805 |
msgid "All files failed to upload"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: lib/wfu_constants.php:194
|
809 |
msgid "File failed to upload"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: lib/wfu_constants.php:195
|
813 |
msgid "There are no files to upload!"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: lib/wfu_constants.php:196
|
817 |
msgid "Test upload message"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: lib/wfu_constants.php:197
|
821 |
msgid "JSON parse warning!"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: lib/wfu_constants.php:198
|
825 |
msgid "please wait while redirecting..."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: lib/wfu_constants.php:200
|
829 |
msgid "Open visual shortcode editor in new window"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: lib/wfu_constants.php:201
|
833 |
msgid "loading visual editor"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: lib/wfu_constants.php:202
|
837 |
msgid "Clear file list?"
|
838 |
msgstr ""
|
839 |
|
840 |
+
#: lib/wfu_constants.php:203
|
841 |
msgid "DROP HERE"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: lib/wfu_constants.php:205
|
845 |
msgid "record video"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: lib/wfu_constants.php:206
|
849 |
msgid "take a picture"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: lib/wfu_constants.php:207
|
853 |
msgid "turn webcam on/off"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: lib/wfu_constants.php:208
|
857 |
msgid "go live again"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: lib/wfu_constants.php:209
|
861 |
msgid "end recording"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: lib/wfu_constants.php:210
|
865 |
msgid "play"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: lib/wfu_constants.php:211
|
869 |
msgid "pause"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: lib/wfu_constants.php:212
|
873 |
msgid "go to the beginning"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: lib/wfu_constants.php:213
|
877 |
msgid "go to the end"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: lib/wfu_constants.php:215
|
881 |
msgid "Wordpress File Upload Form"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: lib/wfu_constants.php:216
|
885 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: lib/wfu_constants.php:217
|
889 |
msgid "Upload Files"
|
890 |
msgstr ""
|
lib/wfu_admin.php
CHANGED
@@ -41,8 +41,8 @@ function wordpress_file_upload_install() {
|
|
41 |
if( $installed_ver != $wfu_tb_log_version ) {
|
42 |
$sql = "CREATE TABLE " . $table_name1 . " (
|
43 |
idlog mediumint(9) NOT NULL AUTO_INCREMENT,
|
44 |
-
userid
|
45 |
-
uploaduserid
|
46 |
uploadtime bigint,
|
47 |
sessionid VARCHAR(40),
|
48 |
filepath TEXT NOT NULL,
|
@@ -118,6 +118,7 @@ function wordpress_file_upload_manage_dashboard() {
|
|
118 |
$action = (!empty($_POST['action']) ? $_POST['action'] : (!empty($_GET['action']) ? $_GET['action'] : ''));
|
119 |
$dir = (!empty($_POST['dir']) ? $_POST['dir'] : (!empty($_GET['dir']) ? $_GET['dir'] : ''));
|
120 |
$file = (!empty($_POST['file']) ? $_POST['file'] : (!empty($_GET['file']) ? $_GET['file'] : ''));
|
|
|
121 |
$data_enc = (!empty($_POST['data']) ? $_POST['data'] : (!empty($_GET['data']) ? $_GET['data'] : ''));
|
122 |
$postid = (!empty($_POST['postid']) ? $_POST['postid'] : (!empty($_GET['postid']) ? $_GET['postid'] : ''));
|
123 |
$nonce = (!empty($_POST['nonce']) ? $_POST['nonce'] : (!empty($_GET['nonce']) ? $_GET['nonce'] : ''));
|
@@ -151,19 +152,31 @@ function wordpress_file_upload_manage_dashboard() {
|
|
151 |
if ( wfu_rename_file($file, 'dir') ) $echo_str = wfu_browse_files($dir);
|
152 |
else $echo_str = wfu_rename_file_prompt($file, 'dir', true);
|
153 |
}
|
154 |
-
elseif ( $action == 'delete_file' && $file != "" ) {
|
155 |
-
$
|
|
|
156 |
}
|
157 |
-
elseif ( $action == 'delete_dir' && $file != "" ) {
|
158 |
-
$echo_str = wfu_delete_file_prompt($file, 'dir');
|
159 |
}
|
160 |
elseif ( $action == 'deletefile' && $file != "" ) {
|
|
|
161 |
wfu_delete_file($file, 'file');
|
162 |
-
$
|
|
|
|
|
|
|
|
|
|
|
163 |
}
|
164 |
elseif ( $action == 'deletedir' && $file != "" ) {
|
165 |
wfu_delete_file($file, 'dir');
|
166 |
-
$
|
|
|
|
|
|
|
|
|
|
|
167 |
}
|
168 |
elseif ( $action == 'create_dir' ) {
|
169 |
$echo_str = wfu_create_dir_prompt($dir, false);
|
@@ -172,6 +185,20 @@ function wordpress_file_upload_manage_dashboard() {
|
|
172 |
if ( wfu_create_dir($dir) ) $echo_str = wfu_browse_files($dir);
|
173 |
else $echo_str = wfu_create_dir_prompt($dir, true);
|
174 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
175 |
elseif ( $action == 'file_details' && $file != "" ) {
|
176 |
$echo_str = wfu_file_details($file, false);
|
177 |
}
|
41 |
if( $installed_ver != $wfu_tb_log_version ) {
|
42 |
$sql = "CREATE TABLE " . $table_name1 . " (
|
43 |
idlog mediumint(9) NOT NULL AUTO_INCREMENT,
|
44 |
+
userid int NOT NULL,
|
45 |
+
uploaduserid int NOT NULL,
|
46 |
uploadtime bigint,
|
47 |
sessionid VARCHAR(40),
|
48 |
filepath TEXT NOT NULL,
|
118 |
$action = (!empty($_POST['action']) ? $_POST['action'] : (!empty($_GET['action']) ? $_GET['action'] : ''));
|
119 |
$dir = (!empty($_POST['dir']) ? $_POST['dir'] : (!empty($_GET['dir']) ? $_GET['dir'] : ''));
|
120 |
$file = (!empty($_POST['file']) ? $_POST['file'] : (!empty($_GET['file']) ? $_GET['file'] : ''));
|
121 |
+
$referer = (!empty($_POST['referer']) ? $_POST['referer'] : (!empty($_GET['referer']) ? $_GET['referer'] : ''));
|
122 |
$data_enc = (!empty($_POST['data']) ? $_POST['data'] : (!empty($_GET['data']) ? $_GET['data'] : ''));
|
123 |
$postid = (!empty($_POST['postid']) ? $_POST['postid'] : (!empty($_GET['postid']) ? $_GET['postid'] : ''));
|
124 |
$nonce = (!empty($_POST['nonce']) ? $_POST['nonce'] : (!empty($_GET['nonce']) ? $_GET['nonce'] : ''));
|
152 |
if ( wfu_rename_file($file, 'dir') ) $echo_str = wfu_browse_files($dir);
|
153 |
else $echo_str = wfu_rename_file_prompt($file, 'dir', true);
|
154 |
}
|
155 |
+
elseif ( $action == 'delete_file' && $file != "" && $referer != "" ) {
|
156 |
+
if ( substr($file, 0, 5) == "list:" ) $file = explode(",", substr($file, 5));
|
157 |
+
$echo_str = wfu_delete_file_prompt($file, 'file', $referer);
|
158 |
}
|
159 |
+
elseif ( $action == 'delete_dir' && $file != "" && $referer != "" ) {
|
160 |
+
$echo_str = wfu_delete_file_prompt($file, 'dir', $referer);
|
161 |
}
|
162 |
elseif ( $action == 'deletefile' && $file != "" ) {
|
163 |
+
if ( substr($file, 0, 5) == "list:" ) $file = explode(",", substr($file, 5));
|
164 |
wfu_delete_file($file, 'file');
|
165 |
+
$referer_url = wfu_flatten_path(wfu_get_filepath_from_safe(wfu_sanitize_code($referer)));
|
166 |
+
if ( $referer_url === false ) $referer_url = "";
|
167 |
+
$match = array();
|
168 |
+
preg_match("/\&dir=(.*)/", $referer_url, $match);
|
169 |
+
$dir = ( isset($match[1]) ? $match[1] : "" );
|
170 |
+
$echo_str = wfu_browse_files($dir);
|
171 |
}
|
172 |
elseif ( $action == 'deletedir' && $file != "" ) {
|
173 |
wfu_delete_file($file, 'dir');
|
174 |
+
$referer_url = wfu_flatten_path(wfu_get_filepath_from_safe(wfu_sanitize_code($referer)));
|
175 |
+
if ( $referer_url === false ) $referer_url = "";
|
176 |
+
$match = array();
|
177 |
+
preg_match("/\&dir=(.*)/", $referer_url, $match);
|
178 |
+
$dir = ( isset($match[1]) ? $match[1] : "" );
|
179 |
+
$echo_str = wfu_browse_files($dir);
|
180 |
}
|
181 |
elseif ( $action == 'create_dir' ) {
|
182 |
$echo_str = wfu_create_dir_prompt($dir, false);
|
185 |
if ( wfu_create_dir($dir) ) $echo_str = wfu_browse_files($dir);
|
186 |
else $echo_str = wfu_create_dir_prompt($dir, true);
|
187 |
}
|
188 |
+
elseif ( $action == 'include_file' && $file != "" && $referer != "" ) {
|
189 |
+
if ( substr($file, 0, 5) == "list:" ) $file = explode(",", substr($file, 5));
|
190 |
+
$echo_str = wfu_include_file_prompt($file, $referer);
|
191 |
+
}
|
192 |
+
elseif ( $action == 'includefile' && $file != "" ) {
|
193 |
+
if ( substr($file, 0, 5) == "list:" ) $file = explode(",", substr($file, 5));
|
194 |
+
wfu_include_file($file);
|
195 |
+
$referer_url = wfu_flatten_path(wfu_get_filepath_from_safe(wfu_sanitize_code($referer)));
|
196 |
+
if ( $referer_url === false ) $referer_url = "";
|
197 |
+
$match = array();
|
198 |
+
preg_match("/\&dir=(.*)/", $referer_url, $match);
|
199 |
+
$dir = ( isset($match[1]) ? $match[1] : "" );
|
200 |
+
$echo_str = wfu_browse_files($dir);
|
201 |
+
}
|
202 |
elseif ( $action == 'file_details' && $file != "" ) {
|
203 |
$echo_str = wfu_file_details($file, false);
|
204 |
}
|
lib/wfu_admin_browser.php
CHANGED
@@ -71,15 +71,30 @@ function wfu_browse_files($basedir_code) {
|
|
71 |
$echo_str .= '<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'">'.$item['item'].'</a>';
|
72 |
$echo_str .= '<span>/</span>';
|
73 |
}
|
|
|
|
|
|
|
74 |
//file browser header
|
75 |
$echo_str .= "\n\t".'</div>';
|
76 |
// $dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($basedir).'[['.$sort.']]');
|
77 |
// $echo_str .= "\n\t".'<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=create_dir&dir='.$dir_code.'" class="button" title="create folder" style="margin-top:6px">Create folder</a>';
|
78 |
$echo_str .= "\n\t".'<div style="margin-top:10px;">';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
$echo_str .= "\n\t\t".'<table class="wp-list-table widefat fixed striped">';
|
80 |
$echo_str .= "\n\t\t\t".'<thead>';
|
81 |
$echo_str .= "\n\t\t\t\t".'<tr>';
|
82 |
-
$echo_str .= "\n\t\t\t\t\t".'<th scope="col" width="
|
|
|
|
|
|
|
83 |
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($basedir).'[['.( substr($sort, -4) == 'name' ? ( $order == SORT_ASC ? '-name' : 'name' ) : 'name' ).']]');
|
84 |
$echo_str .= "\n\t\t\t\t\t\t".'<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'">Name'.( substr($sort, -4) == 'name' ? ( $order == SORT_ASC ? ' ↑' : ' ↓' ) : '' ).'</a>';
|
85 |
$echo_str .= "\n\t\t\t\t\t".'</th>';
|
@@ -133,14 +148,27 @@ function wfu_browse_files($basedir_code) {
|
|
133 |
$dirorder = $order;
|
134 |
if ( $dirsort == 'size' ) { $dirsort = 'name'; $dirorder = SORT_ASC; }
|
135 |
if ( $dirsort == 'user' ) { $dirsort = 'name'; $dirorder = SORT_ASC; }
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
$dirlist = wfu_array_sort($dirlist, $dirsort, $dirorder);
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
$filelist = wfu_array_sort($filelist, $filesort, $order);
|
138 |
|
139 |
//show subfolders first
|
140 |
if ( $reldir != "root/" ) {
|
141 |
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($updir));
|
142 |
$echo_str .= "\n\t\t\t\t".'<tr>';
|
143 |
-
$echo_str .= "\n\t\t\t\t\t".'<td width="
|
|
|
144 |
$echo_str .= "\n\t\t\t\t\t\t".'<a class="row-title" href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'" title="go up">..</a>';
|
145 |
$echo_str .= "\n\t\t\t\t\t".'</td>';
|
146 |
$echo_str .= "\n\t\t\t\t\t".'<td width="10%" style="padding: 5px 5px 5px 10px; text-align:right;"> </td>';
|
@@ -153,7 +181,8 @@ function wfu_browse_files($basedir_code) {
|
|
153 |
foreach ( $dirlist as $dir ) {
|
154 |
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($dir['fullpath']).'[['.$sort.']]');
|
155 |
$echo_str .= "\n\t\t\t\t".'<tr onmouseover="var actions=document.getElementsByName(\'wfu_dir_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';} document.getElementById(\'wfu_dir_actions_'.$ii.'\').style.visibility=\'visible\'" onmouseout="var actions=document.getElementsByName(\'wfu_dir_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';}">';
|
156 |
-
$echo_str .= "\n\t\t\t\t\t".'<td width="
|
|
|
157 |
$echo_str .= "\n\t\t\t\t\t\t".'<a class="row-title" href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'" title="'.$dir['name'].'">'.$dir['name'].'</a>';
|
158 |
$echo_str .= "\n\t\t\t\t\t\t".'<div id="wfu_dir_actions_'.$ii.'" name="wfu_dir_actions" style="visibility:hidden;">';
|
159 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<span style="visibility:hidden;">';
|
@@ -183,7 +212,11 @@ function wfu_browse_files($basedir_code) {
|
|
183 |
$file_code = '';
|
184 |
if ( $is_included || $can_be_included ) $file_code = wfu_safe_store_filepath(wfu_path_abs2rel($file['fullpath']).'[['.$sort.']]');
|
185 |
$echo_str .= "\n\t\t\t\t".'<tr onmouseover="var actions=document.getElementsByName(\'wfu_file_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';} document.getElementById(\'wfu_file_actions_'.$ii.'\').style.visibility=\'visible\'" onmouseout="var actions=document.getElementsByName(\'wfu_file_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';}">';
|
186 |
-
$echo_str .= "\n\t\t\t\t\t".'<td width="
|
|
|
|
|
|
|
|
|
187 |
if ( $is_included || $can_be_included )
|
188 |
$echo_str .= "\n\t\t\t\t\t\t".'<a id="wfu_file_link_'.$ii.'" class="row-title" href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_details&file='.$file_code.'" title="View and edit file details" style="font-weight:normal;'.( $is_included ? '' : ' display:none;' ).'">'.$file['name'].'</a>';
|
189 |
if ( !$is_included )
|
@@ -200,7 +233,7 @@ function wfu_browse_files($basedir_code) {
|
|
200 |
$echo_str .= "\n\t\t\t\t\t\t\t\t\t".' | ';
|
201 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'</span>';
|
202 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'<span>';
|
203 |
-
$echo_str .= "\n\t\t\t\t\t\t\t\t\t".'<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=delete_file&file='.$file_code.'" title="Delete this file">Delete</a>';
|
204 |
$echo_str .= "\n\t\t\t\t\t\t\t\t\t".' | ';
|
205 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'</span>';
|
206 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'<span>';
|
@@ -250,6 +283,13 @@ function wfu_browse_files($basedir_code) {
|
|
250 |
return $echo_str;
|
251 |
}
|
252 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
function wfu_current_user_owes_file($filepath) {
|
254 |
//first check if file has a restricted extension; for security reasons some file extensions cannot be owned
|
255 |
if ( wfu_file_extension_restricted($filepath) ) return false;
|
@@ -258,12 +298,10 @@ function wfu_current_user_owes_file($filepath) {
|
|
258 |
if ( $filerec == null ) return false;
|
259 |
|
260 |
$user = wp_get_current_user();
|
261 |
-
|
262 |
-
return false;
|
263 |
-
if ( current_user_can('manage_options') ) return true;
|
264 |
-
return false;
|
265 |
}
|
266 |
|
|
|
267 |
function wfu_current_user_allowed_action($action, $filepath) {
|
268 |
//first get file data from database, if exist
|
269 |
$filerec = wfu_get_file_rec($filepath, false);
|
@@ -389,7 +427,7 @@ function wfu_rename_file($file_code, $type) {
|
|
389 |
return ( $error == "" );
|
390 |
}
|
391 |
|
392 |
-
function wfu_delete_file_prompt($file_code, $type) {
|
393 |
if ( $type == 'dir' ) return;
|
394 |
|
395 |
$siteurl = site_url();
|
@@ -399,31 +437,50 @@ function wfu_delete_file_prompt($file_code, $type) {
|
|
399 |
if ( !$is_admin ) {
|
400 |
return;
|
401 |
}
|
402 |
-
$file_code =
|
403 |
-
$
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
$parts = pathinfo($dec_file);
|
415 |
-
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($parts['dirname']).'[['.$ret['sort'].']]');
|
416 |
|
417 |
$echo_str = "\n".'<div class="wrap">';
|
418 |
$echo_str .= "\n\t".'<div style="margin-top:20px;">';
|
419 |
-
if ( $is_admin ) $echo_str .= "\n\t\t".'<a href="'.$
|
420 |
$echo_str .= "\n\t".'</div>';
|
421 |
-
$echo_str .= "\n\t".'<h2 style="margin-bottom: 10px;">Delete '.( $type == 'dir' ? 'Folder' : 'File' ).'</h2>';
|
422 |
if ( $is_admin ) $echo_str .= "\n\t".'<form enctype="multipart/form-data" name="deletefile" id="deletefile" method="post" action="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload" class="validate">';
|
423 |
$echo_str .= "\n\t\t".'<input type="hidden" name="action" value="delete'.( $type == 'dir' ? 'dir' : 'file' ).'">';
|
424 |
-
$echo_str .= "\n\t\t".'<input type="hidden" name="
|
425 |
-
$echo_str .= "\n\t\t".'<input type="hidden" name="file" value="'.$
|
426 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
$echo_str .= "\n\t\t".'<p class="submit">';
|
428 |
$echo_str .= "\n\t\t\t".'<input type="submit" class="button-primary" name="submit" value="Delete">';
|
429 |
$echo_str .= "\n\t\t\t".'<input type="submit" class="button-primary" name="submit" value="Cancel">';
|
@@ -442,24 +499,30 @@ function wfu_delete_file($file_code, $type) {
|
|
442 |
if ( !$is_admin ) {
|
443 |
return;
|
444 |
}
|
445 |
-
$file_code =
|
446 |
-
$
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
|
|
|
|
|
|
|
|
454 |
|
455 |
if ( isset($_POST['submit']) ) {
|
456 |
if ( $_POST['submit'] == "Delete" ) {
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
|
|
|
|
463 |
}
|
464 |
}
|
465 |
return true;
|
@@ -536,6 +599,89 @@ function wfu_create_dir($dir_code) {
|
|
536 |
return ( $error == "" );
|
537 |
}
|
538 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
function wfu_file_details($file_code, $errorstatus) {
|
540 |
global $wpdb;
|
541 |
$table_name1 = $wpdb->prefix . "wfu_log";
|
71 |
$echo_str .= '<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'">'.$item['item'].'</a>';
|
72 |
$echo_str .= '<span>/</span>';
|
73 |
}
|
74 |
+
//define referer (with sort data) to point to this url for use by the elements
|
75 |
+
$referer = $siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$basedir_code;
|
76 |
+
$referer_code = wfu_safe_store_filepath($referer.'[['.$sort.']]');
|
77 |
//file browser header
|
78 |
$echo_str .= "\n\t".'</div>';
|
79 |
// $dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($basedir).'[['.$sort.']]');
|
80 |
// $echo_str .= "\n\t".'<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=create_dir&dir='.$dir_code.'" class="button" title="create folder" style="margin-top:6px">Create folder</a>';
|
81 |
$echo_str .= "\n\t".'<div style="margin-top:10px;">';
|
82 |
+
$echo_str .= "\n\t\t".'<div class="wfu_adminbrowser_header" style="width: 100%;">';
|
83 |
+
$bulkactions = array(
|
84 |
+
array( "name" => "delete", "title" => "Delete" ),
|
85 |
+
array( "name" => "include", "title" => "Include" )
|
86 |
+
);
|
87 |
+
$echo_str .= wfu_add_bulkactions_header("\n\t\t\t", "adminbrowser", $bulkactions);
|
88 |
+
$echo_str .= "\n\t\t\t".'<input id="wfu_adminbrowser_action_url" type="hidden" value="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload" />';
|
89 |
+
$echo_str .= "\n\t\t\t".'<input id="wfu_adminbrowser_referer" type="hidden" value="'.$referer_code.'" />';
|
90 |
+
$echo_str .= "\n\t\t".'</div>';
|
91 |
$echo_str .= "\n\t\t".'<table class="wp-list-table widefat fixed striped">';
|
92 |
$echo_str .= "\n\t\t\t".'<thead>';
|
93 |
$echo_str .= "\n\t\t\t\t".'<tr>';
|
94 |
+
$echo_str .= "\n\t\t\t\t\t".'<th scope="col" width="5%" style="text-align:center;">';
|
95 |
+
$echo_str .= "\n\t\t\t\t\t\t".'<input id="wfu_select_all_visible" type="checkbox" onchange="wfu_adminbrowser_select_all_visible_changed();" style="-webkit-appearance:checkbox;" />';
|
96 |
+
$echo_str .= "\n\t\t\t\t\t".'</th>';
|
97 |
+
$echo_str .= "\n\t\t\t\t\t".'<th scope="col" width="25%" style="text-align:left;">';
|
98 |
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($basedir).'[['.( substr($sort, -4) == 'name' ? ( $order == SORT_ASC ? '-name' : 'name' ) : 'name' ).']]');
|
99 |
$echo_str .= "\n\t\t\t\t\t\t".'<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'">Name'.( substr($sort, -4) == 'name' ? ( $order == SORT_ASC ? ' ↑' : ' ↓' ) : '' ).'</a>';
|
100 |
$echo_str .= "\n\t\t\t\t\t".'</th>';
|
148 |
$dirorder = $order;
|
149 |
if ( $dirsort == 'size' ) { $dirsort = 'name'; $dirorder = SORT_ASC; }
|
150 |
if ( $dirsort == 'user' ) { $dirsort = 'name'; $dirorder = SORT_ASC; }
|
151 |
+
switch ( $dirsort ) {
|
152 |
+
case "name": $dirsort .= ":s"; break;
|
153 |
+
case "size": $dirsort .= ":n"; break;
|
154 |
+
case "mdate": $dirsort .= ":n"; break;
|
155 |
+
case "user": $dirsort .= ":s"; break;
|
156 |
+
}
|
157 |
$dirlist = wfu_array_sort($dirlist, $dirsort, $dirorder);
|
158 |
+
switch ( $filesort ) {
|
159 |
+
case "name": $filesort .= ":s"; break;
|
160 |
+
case "size": $filesort .= ":n"; break;
|
161 |
+
case "mdate": $filesort .= ":n"; break;
|
162 |
+
case "user": $filesort .= ":s"; break;
|
163 |
+
}
|
164 |
$filelist = wfu_array_sort($filelist, $filesort, $order);
|
165 |
|
166 |
//show subfolders first
|
167 |
if ( $reldir != "root/" ) {
|
168 |
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($updir));
|
169 |
$echo_str .= "\n\t\t\t\t".'<tr>';
|
170 |
+
$echo_str .= "\n\t\t\t\t\t".'<td width="5%" style="padding: 5px 5px 5px 10px; text-align:center;"><input type="checkbox" disabled="disabled" /></td>';
|
171 |
+
$echo_str .= "\n\t\t\t\t\t".'<td width="25%" style="padding: 5px 5px 5px 10px; text-align:left;">';
|
172 |
$echo_str .= "\n\t\t\t\t\t\t".'<a class="row-title" href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'" title="go up">..</a>';
|
173 |
$echo_str .= "\n\t\t\t\t\t".'</td>';
|
174 |
$echo_str .= "\n\t\t\t\t\t".'<td width="10%" style="padding: 5px 5px 5px 10px; text-align:right;"> </td>';
|
181 |
foreach ( $dirlist as $dir ) {
|
182 |
$dir_code = wfu_safe_store_filepath(wfu_path_abs2rel($dir['fullpath']).'[['.$sort.']]');
|
183 |
$echo_str .= "\n\t\t\t\t".'<tr onmouseover="var actions=document.getElementsByName(\'wfu_dir_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';} document.getElementById(\'wfu_dir_actions_'.$ii.'\').style.visibility=\'visible\'" onmouseout="var actions=document.getElementsByName(\'wfu_dir_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';}">';
|
184 |
+
$echo_str .= "\n\t\t\t\t\t".'<td width="5%" style="padding: 5px 5px 5px 10px; text-align:center;"><input type="checkbox" disabled="disabled" /></td>';
|
185 |
+
$echo_str .= "\n\t\t\t\t\t".'<td width="25%" style="padding: 5px 5px 5px 10px; text-align:left;">';
|
186 |
$echo_str .= "\n\t\t\t\t\t\t".'<a class="row-title" href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_browser&dir='.$dir_code.'" title="'.$dir['name'].'">'.$dir['name'].'</a>';
|
187 |
$echo_str .= "\n\t\t\t\t\t\t".'<div id="wfu_dir_actions_'.$ii.'" name="wfu_dir_actions" style="visibility:hidden;">';
|
188 |
$echo_str .= "\n\t\t\t\t\t\t\t".'<span style="visibility:hidden;">';
|
212 |
$file_code = '';
|
213 |
if ( $is_included || $can_be_included ) $file_code = wfu_safe_store_filepath(wfu_path_abs2rel($file['fullpath']).'[['.$sort.']]');
|
214 |
$echo_str .= "\n\t\t\t\t".'<tr onmouseover="var actions=document.getElementsByName(\'wfu_file_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';} document.getElementById(\'wfu_file_actions_'.$ii.'\').style.visibility=\'visible\'" onmouseout="var actions=document.getElementsByName(\'wfu_file_actions\'); for (var i=0; i<actions.length; i++) {actions[i].style.visibility=\'hidden\';}">';
|
215 |
+
$echo_str .= "\n\t\t\t\t\t".'<td width="5%" style="padding: 5px 5px 5px 10px; text-align:center;">';
|
216 |
+
if ( $is_included || $can_be_included ) $echo_str .= "\n\t\t\t\t\t\t".'<input class="wfu_selectors'.( $is_included ? ' wfu_included' : '' ).' wfu_selcode_'.$file_code.'" type="checkbox" onchange="wfu_adminbrowser_selector_changed(this);" />';
|
217 |
+
else $echo_str .= "\n\t\t\t\t\t\t".'<input type="checkbox" disabled="disabled" />';
|
218 |
+
$echo_str .= "\n\t\t\t\t\t".'</td>';
|
219 |
+
$echo_str .= "\n\t\t\t\t\t".'<td width="25%" style="padding: 5px 5px 5px 10px; text-align:left;">';
|
220 |
if ( $is_included || $can_be_included )
|
221 |
$echo_str .= "\n\t\t\t\t\t\t".'<a id="wfu_file_link_'.$ii.'" class="row-title" href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=file_details&file='.$file_code.'" title="View and edit file details" style="font-weight:normal;'.( $is_included ? '' : ' display:none;' ).'">'.$file['name'].'</a>';
|
222 |
if ( !$is_included )
|
233 |
$echo_str .= "\n\t\t\t\t\t\t\t\t\t".' | ';
|
234 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'</span>';
|
235 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'<span>';
|
236 |
+
$echo_str .= "\n\t\t\t\t\t\t\t\t\t".'<a href="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload&action=delete_file&file='.$file_code.'&referer='.$referer_code.'" title="Delete this file">Delete</a>';
|
237 |
$echo_str .= "\n\t\t\t\t\t\t\t\t\t".' | ';
|
238 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'</span>';
|
239 |
$echo_str .= "\n\t\t\t\t\t\t\t\t".'<span>';
|
283 |
return $echo_str;
|
284 |
}
|
285 |
|
286 |
+
function wfu_user_owns_file($userid, $filerec) {
|
287 |
+
if ( 0 == $userid )
|
288 |
+
return false;
|
289 |
+
if ( current_user_can('manage_options') ) return true;
|
290 |
+
return false;
|
291 |
+
}
|
292 |
+
|
293 |
function wfu_current_user_owes_file($filepath) {
|
294 |
//first check if file has a restricted extension; for security reasons some file extensions cannot be owned
|
295 |
if ( wfu_file_extension_restricted($filepath) ) return false;
|
298 |
if ( $filerec == null ) return false;
|
299 |
|
300 |
$user = wp_get_current_user();
|
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);
|
427 |
return ( $error == "" );
|
428 |
}
|
429 |
|
430 |
+
function wfu_delete_file_prompt($file_code, $type, $referer) {
|
431 |
if ( $type == 'dir' ) return;
|
432 |
|
433 |
$siteurl = site_url();
|
437 |
if ( !$is_admin ) {
|
438 |
return;
|
439 |
}
|
440 |
+
if ( !is_array($file_code) ) $file_code = array( $file_code );
|
441 |
+
$names = array();
|
442 |
+
foreach ( $file_code as $index => $code ) {
|
443 |
+
$file_code[$index] = wfu_sanitize_code($code);
|
444 |
+
$dec_file = wfu_get_filepath_from_safe($file_code[$index]);
|
445 |
+
if ( $dec_file === false ) unset($file_code[$index]);
|
446 |
+
else {
|
447 |
+
//first extract sort info from dec_file
|
448 |
+
$ret = wfu_extract_sortdata_from_path($dec_file);
|
449 |
+
$dec_file = wfu_path_rel2abs($ret['path']);
|
450 |
+
if ( $type == 'dir' && substr($dec_file, -1) == '/' ) $dec_file = substr($dec_file, 0, -1);
|
451 |
+
//check if user is allowed to perform this action
|
452 |
+
if ( !wfu_current_user_owes_file($dec_file) ) unset($file_code[$index]);
|
453 |
+
else {
|
454 |
+
$parts = pathinfo($dec_file);
|
455 |
+
array_push($names, $parts['basename']);
|
456 |
+
}
|
457 |
+
}
|
458 |
+
}
|
459 |
+
if ( count($file_code) == 0 ) return;
|
460 |
+
$file_code_list = "list:".implode(",", $file_code);
|
461 |
|
462 |
+
$referer_url = wfu_get_filepath_from_safe(wfu_sanitize_code($referer));
|
463 |
+
$ret = wfu_extract_sortdata_from_path($referer_url);
|
464 |
+
$referer_url = $ret['path'];
|
|
|
|
|
465 |
|
466 |
$echo_str = "\n".'<div class="wrap">';
|
467 |
$echo_str .= "\n\t".'<div style="margin-top:20px;">';
|
468 |
+
if ( $is_admin ) $echo_str .= "\n\t\t".'<a href="'.$referer_url.'" class="button" title="go back">Go back</a>';
|
469 |
$echo_str .= "\n\t".'</div>';
|
470 |
+
$echo_str .= "\n\t".'<h2 style="margin-bottom: 10px;">Delete '.( $type == 'dir' ? 'Folder' : 'File'.( count($names) == 1 ? '' : 's' ) ).'</h2>';
|
471 |
if ( $is_admin ) $echo_str .= "\n\t".'<form enctype="multipart/form-data" name="deletefile" id="deletefile" method="post" action="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload" class="validate">';
|
472 |
$echo_str .= "\n\t\t".'<input type="hidden" name="action" value="delete'.( $type == 'dir' ? 'dir' : 'file' ).'">';
|
473 |
+
$echo_str .= "\n\t\t".'<input type="hidden" name="referer" value="'.$referer.'">';
|
474 |
+
$echo_str .= "\n\t\t".'<input type="hidden" name="file" value="'.$file_code_list.'">';
|
475 |
+
if ( count($names) == 1 )
|
476 |
+
$echo_str .= "\n\t\t".'<label>Are you sure that you want to delete '.( $type == 'dir' ? 'folder' : 'file' ).' <strong>'.$names[0].'</strong>?</label><br/>';
|
477 |
+
else {
|
478 |
+
$echo_str .= "\n\t\t".'<label>Are you sure that you want to delete '.( $type == 'dir' ? 'folder' : 'files' ).':';
|
479 |
+
$echo_str .= "\n\t\t".'<ul style="padding-left: 20px; list-style: initial;">';
|
480 |
+
foreach ( $names as $name )
|
481 |
+
$echo_str .= "\n\t\t\t".'<li><strong>'.$name.'</strong></li>';
|
482 |
+
$echo_str .= "\n\t\t".'</ul>';
|
483 |
+
}
|
484 |
$echo_str .= "\n\t\t".'<p class="submit">';
|
485 |
$echo_str .= "\n\t\t\t".'<input type="submit" class="button-primary" name="submit" value="Delete">';
|
486 |
$echo_str .= "\n\t\t\t".'<input type="submit" class="button-primary" name="submit" value="Cancel">';
|
499 |
if ( !$is_admin ) {
|
500 |
return;
|
501 |
}
|
502 |
+
if ( !is_array($file_code) ) $file_code = array( $file_code );
|
503 |
+
$dec_files = array();
|
504 |
+
foreach ( $file_code as $index => $code ) {
|
505 |
+
$file_code[$index] = wfu_sanitize_code($code);
|
506 |
+
$dec_file = wfu_get_filepath_from_safe($file_code[$index]);
|
507 |
+
if ( $dec_file !== false ) {
|
508 |
+
$dec_file = wfu_path_rel2abs(wfu_flatten_path($dec_file));
|
509 |
+
if ( $type == 'dir' && substr($dec_file, -1) == '/' ) $dec_file = substr($dec_file, 0, -1);
|
510 |
+
//check if user is allowed to perform this action
|
511 |
+
if ( wfu_current_user_owes_file($dec_file) ) array_push($dec_files, $dec_file);
|
512 |
+
}
|
513 |
+
}
|
514 |
+
if ( count($dec_files) == 0 ) return;
|
515 |
|
516 |
if ( isset($_POST['submit']) ) {
|
517 |
if ( $_POST['submit'] == "Delete" ) {
|
518 |
+
foreach ( $dec_files as $dec_file ) {
|
519 |
+
//pre-log delete action
|
520 |
+
if ( $type == 'file' ) $retid = wfu_log_action('delete', $dec_file, $user->ID, '', 0, 0, '', null);
|
521 |
+
if ( $type == 'dir' && $dec_file != "" ) wfu_delTree($dec_file);
|
522 |
+
else unlink($dec_file);
|
523 |
+
//revert log action if file has not been deleted
|
524 |
+
if ( $type == 'file' && file_exists($dec_file) ) wfu_revert_log_action($retid);
|
525 |
+
}
|
526 |
}
|
527 |
}
|
528 |
return true;
|
599 |
return ( $error == "" );
|
600 |
}
|
601 |
|
602 |
+
function wfu_include_file_prompt($file_code, $referer) {
|
603 |
+
if ( !current_user_can( 'manage_options' ) ) return;
|
604 |
+
$plugin_options = wfu_decode_plugin_options(get_option( "wordpress_file_upload_options" ));
|
605 |
+
if ( $plugin_options['includeotherfiles'] != "1" ) return;
|
606 |
+
|
607 |
+
$siteurl = site_url();
|
608 |
+
if ( !is_array($file_code) ) $file_code = array( $file_code );
|
609 |
+
$names = array();
|
610 |
+
foreach ( $file_code as $index => $code ) {
|
611 |
+
$file_code[$index] = wfu_sanitize_code($code);
|
612 |
+
$dec_file = wfu_get_filepath_from_safe($file_code[$index]);
|
613 |
+
if ( $dec_file === false ) unset($file_code[$index]);
|
614 |
+
else {
|
615 |
+
$dec_file = wfu_path_rel2abs(wfu_flatten_path($dec_file));
|
616 |
+
//do not include file if it has a forbidden extention or it is already included
|
617 |
+
if ( wfu_file_extension_restricted(wfu_basename($dec_file)) || wfu_get_file_rec($dec_file, false) != null )
|
618 |
+
unset($file_code[$index]);
|
619 |
+
else array_push($names, wfu_basename($dec_file));
|
620 |
+
}
|
621 |
+
}
|
622 |
+
if ( count($file_code) == 0 ) return;
|
623 |
+
$file_code_list = "list:".implode(",", $file_code);
|
624 |
+
|
625 |
+
$referer_url = wfu_get_filepath_from_safe(wfu_sanitize_code($referer));
|
626 |
+
$ret = wfu_extract_sortdata_from_path($referer_url);
|
627 |
+
$referer_url = $ret['path'];
|
628 |
+
|
629 |
+
$echo_str = "\n".'<div class="wrap">';
|
630 |
+
$echo_str .= "\n\t".'<div style="margin-top:20px;">';
|
631 |
+
$echo_str .= "\n\t\t".'<a href="'.$referer_url.'" class="button" title="go back">Go back</a>';
|
632 |
+
$echo_str .= "\n\t".'</div>';
|
633 |
+
$echo_str .= "\n\t".'<h2 style="margin-bottom: 10px;">Include File'.( count($names) == 1 ? '' : 's' ).'</h2>';
|
634 |
+
$echo_str .= "\n\t".'<form enctype="multipart/form-data" name="includefile" id="includefile" method="post" action="'.$siteurl.'/wp-admin/options-general.php?page=wordpress_file_upload" class="validate">';
|
635 |
+
$echo_str .= "\n\t\t".'<input type="hidden" name="action" value="includefile">';
|
636 |
+
$echo_str .= "\n\t\t".'<input type="hidden" name="referer" value="'.$referer.'">';
|
637 |
+
$echo_str .= "\n\t\t".'<input type="hidden" name="file" value="'.$file_code_list.'">';
|
638 |
+
if ( count($names) == 1 )
|
639 |
+
$echo_str .= "\n\t\t".'<label>Are you sure that you want to include file <strong>'.$names[0].'</strong>?</label><br/>';
|
640 |
+
else {
|
641 |
+
$echo_str .= "\n\t\t".'<label>Are you sure that you want to include files:';
|
642 |
+
$echo_str .= "\n\t\t".'<ul style="padding-left: 20px; list-style: initial;">';
|
643 |
+
foreach ( $names as $name )
|
644 |
+
$echo_str .= "\n\t\t\t".'<li><strong>'.$name.'</strong></li>';
|
645 |
+
$echo_str .= "\n\t\t".'</ul>';
|
646 |
+
}
|
647 |
+
$echo_str .= "\n\t\t".'<p class="submit">';
|
648 |
+
$echo_str .= "\n\t\t\t".'<input type="submit" class="button-primary" name="submit" value="Include">';
|
649 |
+
$echo_str .= "\n\t\t\t".'<input type="submit" class="button-primary" name="submit" value="Cancel">';
|
650 |
+
$echo_str .= "\n\t\t".'</p>';
|
651 |
+
$echo_str .= "\n\t".'</form>';
|
652 |
+
$echo_str .= "\n".'</div>';
|
653 |
+
return $echo_str;
|
654 |
+
}
|
655 |
+
|
656 |
+
function wfu_include_file($file_code) {
|
657 |
+
if ( !current_user_can( 'manage_options' ) ) return;
|
658 |
+
$plugin_options = wfu_decode_plugin_options(get_option( "wordpress_file_upload_options" ));
|
659 |
+
if ( $plugin_options['includeotherfiles'] != "1" ) return;
|
660 |
+
|
661 |
+
if ( !is_array($file_code) ) $file_code = array( $file_code );
|
662 |
+
$dec_files = array();
|
663 |
+
foreach ( $file_code as $index => $code ) {
|
664 |
+
$file_code[$index] = wfu_sanitize_code($code);
|
665 |
+
$dec_file = wfu_get_filepath_from_safe($file_code[$index]);
|
666 |
+
if ( $dec_file !== false ) {
|
667 |
+
$dec_file = wfu_path_rel2abs(wfu_flatten_path($dec_file));
|
668 |
+
//include file if it does not have a forbidden extention and it not already included
|
669 |
+
if ( !wfu_file_extension_restricted(wfu_basename($dec_file)) && wfu_get_file_rec($dec_file, false) == null )
|
670 |
+
array_push($dec_files, $dec_file);
|
671 |
+
}
|
672 |
+
}
|
673 |
+
if ( count($dec_files) == 0 ) return;
|
674 |
+
|
675 |
+
$user = wp_get_current_user();
|
676 |
+
if ( isset($_POST['submit']) ) {
|
677 |
+
if ( $_POST['submit'] == "Include" ) {
|
678 |
+
foreach ( $dec_files as $dec_file )
|
679 |
+
$fileid = wfu_log_action('include', $dec_file, $user->ID, '', '', get_current_blog_id(), '', null);
|
680 |
+
}
|
681 |
+
}
|
682 |
+
return true;
|
683 |
+
}
|
684 |
+
|
685 |
function wfu_file_details($file_code, $errorstatus) {
|
686 |
global $wpdb;
|
687 |
$table_name1 = $wpdb->prefix . "wfu_log";
|
lib/wfu_admin_log.php
CHANGED
@@ -20,10 +20,12 @@ function wfu_view_log($page = 1, $only_table_rows = false) {
|
|
20 |
$echo_str .= wfu_generate_dashboard_menu("\n\t\t", "View Log");
|
21 |
$echo_str .= "\n\t".'<div style="position:relative;">';
|
22 |
$echo_str .= wfu_add_loading_overlay("\n\t\t", "historylog");
|
|
|
23 |
if ( WFU_VAR("WFU_HISTORYLOG_TABLE_MAXROWS") > 0 ) {
|
24 |
$pages = ceil($files_total / WFU_VAR("WFU_HISTORYLOG_TABLE_MAXROWS"));
|
25 |
-
$echo_str .= wfu_add_pagination_header("\n\t\t", "historylog", 1, $pages);
|
26 |
}
|
|
|
27 |
$echo_str .= "\n\t\t".'<table id="wfu_historylog_table" class="wp-list-table widefat fixed striped">';
|
28 |
$echo_str .= "\n\t\t\t".'<thead>';
|
29 |
$echo_str .= "\n\t\t\t\t".'<tr>';
|
20 |
$echo_str .= wfu_generate_dashboard_menu("\n\t\t", "View Log");
|
21 |
$echo_str .= "\n\t".'<div style="position:relative;">';
|
22 |
$echo_str .= wfu_add_loading_overlay("\n\t\t", "historylog");
|
23 |
+
$echo_str .= "\n\t\t".'<div class="wfu_historylog_header" style="width: 100%;">';
|
24 |
if ( WFU_VAR("WFU_HISTORYLOG_TABLE_MAXROWS") > 0 ) {
|
25 |
$pages = ceil($files_total / WFU_VAR("WFU_HISTORYLOG_TABLE_MAXROWS"));
|
26 |
+
$echo_str .= wfu_add_pagination_header("\n\t\t\t", "historylog", 1, $pages);
|
27 |
}
|
28 |
+
$echo_str .= "\n\t\t".'</div>';
|
29 |
$echo_str .= "\n\t\t".'<table id="wfu_historylog_table" class="wp-list-table widefat fixed striped">';
|
30 |
$echo_str .= "\n\t\t\t".'<thead>';
|
31 |
$echo_str .= "\n\t\t\t\t".'<tr>';
|
lib/wfu_ajaxactions.php
CHANGED
@@ -507,7 +507,7 @@ function wfu_ajax_action_include_file() {
|
|
507 |
$dec_file = wfu_path_rel2abs(wfu_flatten_path($dec_file));
|
508 |
$fileid = wfu_log_action('include', $dec_file, $user->ID, '', '', get_current_blog_id(), '', null);
|
509 |
|
510 |
-
if ( $fileid !== false ) die("wfu_include_file:success:");
|
511 |
else die("wfu_include_file:fail:");
|
512 |
}
|
513 |
|
507 |
$dec_file = wfu_path_rel2abs(wfu_flatten_path($dec_file));
|
508 |
$fileid = wfu_log_action('include', $dec_file, $user->ID, '', '', get_current_blog_id(), '', null);
|
509 |
|
510 |
+
if ( $fileid !== false ) die("wfu_include_file:success:".$fileid);
|
511 |
else die("wfu_include_file:fail:");
|
512 |
}
|
513 |
|
lib/wfu_constants.php
CHANGED
@@ -114,6 +114,9 @@ DEFINE("WFU_ERROR_ADMIN_CHUNKWRITEFAILED", __("Could not write file chuck to des
|
|
114 |
DEFINE("WFU_ERROR_ADMIN_CHUNKENLARGEFAILED", __("Could not enlarge destination file on chunk %d", "wp-file-upload"));
|
115 |
DEFINE("WFU_ERROR_ADMIN_CHUNKHANDLEFAILED", __("Could not open file handles on chunk %d", "wp-file-upload"));
|
116 |
DEFINE("WFU_BROWSER_DELETEFILE_NOTALLOWED", __("You are not allowed to delete this file!", "wp-file-upload"));
|
|
|
|
|
|
|
117 |
//warning messages
|
118 |
DEFINE("WFU_WARNING_FILE_EXISTS", __("Upload skipped! File already exists.", "wp-file-upload"));
|
119 |
DEFINE("WFU_WARNING_FILE_SUSPICIOUS", __("The extension of the file does not match its contents.", "wp-file-upload"));
|
@@ -165,6 +168,9 @@ DEFINE("WFU_MESSAGE_CAPTCHA_REFRESHING", __("refreshing...", "wp-file-upload"));
|
|
165 |
DEFINE("WFU_MESSAGE_CAPTCHA_OK", __("correct captcha", "wp-file-upload"));
|
166 |
DEFINE("WFU_CONFIRMBOX_CAPTION", __("click to continue the upload", "wp-file-upload"));
|
167 |
DEFINE("WFU_BROWSER_DELETEFILE_PROMPT", __("Are you sure you want to delete this file?", "wp-file-upload"));
|
|
|
|
|
|
|
168 |
DEFINE("WFU_CANCEL_UPLOAD_PROMPT", __("Are you sure that you want to cancel the upload?", "wp-file-upload"));
|
169 |
DEFINE("WFU_FILE_CANCEL_HINT", __("cancel upload of this file", "wp-file-upload"));
|
170 |
DEFINE("WFU_UPLOAD_STATE0", __("Upload in progress", "wp-file-upload"));
|
@@ -261,6 +267,7 @@ $GLOBALS["WFU_GLOBALS"] += array(
|
|
261 |
"WFU_SANITIZE_FILENAME_MODE" => array( "Filename Sanitization Mode", "string", "strict", "The sanitization mode for filenames. It can be 'strict' or 'loose'." ),
|
262 |
"WFU_PHP_ARRAY_MAXLEN" => array( "Max PHP Array Length", "string", "10000", "The maximum allowable number of items of a PHP array." ),
|
263 |
"WFU_HISTORYLOG_TABLE_MAXROWS" => array( "History Log Table Rows Per Page", "integer", 25, "The number of rows per page of the History Log table." ),
|
|
|
264 |
"WFU_DASHBOARD_PROTECTED" => array( "Dashboard Is Protected", "string", "false", "If /wp-admin folder is password protected then this variable should be set to 'true' so that internal operations of the plugin can work. The username and password should also be set." ),
|
265 |
"WFU_DASHBOARD_USERNAME" => array( "Protected Dashboard Username", "string", "", "Username entry for accessing protected /wp-admin folder." ),
|
266 |
"WFU_DASHBOARD_PASSWORD" => array( "Protected Dashboard Password", "string", "", "Password entry for accessing protected /wp-admin folder." )
|
114 |
DEFINE("WFU_ERROR_ADMIN_CHUNKENLARGEFAILED", __("Could not enlarge destination file on chunk %d", "wp-file-upload"));
|
115 |
DEFINE("WFU_ERROR_ADMIN_CHUNKHANDLEFAILED", __("Could not open file handles on chunk %d", "wp-file-upload"));
|
116 |
DEFINE("WFU_BROWSER_DELETEFILE_NOTALLOWED", __("You are not allowed to delete this file!", "wp-file-upload"));
|
117 |
+
DEFINE("WFU_BROWSER_DELETEFILE_FAILED", __("File was not deleted!", "wp-file-upload"));
|
118 |
+
DEFINE("WFU_BROWSER_DELETEFILES_ALLFAILED", __("No file was deleted!", "wp-file-upload"));
|
119 |
+
DEFINE("WFU_BROWSER_DELETEFILES_SOMEFAILED", __("Some files were not deleted!", "wp-file-upload"));
|
120 |
//warning messages
|
121 |
DEFINE("WFU_WARNING_FILE_EXISTS", __("Upload skipped! File already exists.", "wp-file-upload"));
|
122 |
DEFINE("WFU_WARNING_FILE_SUSPICIOUS", __("The extension of the file does not match its contents.", "wp-file-upload"));
|
168 |
DEFINE("WFU_MESSAGE_CAPTCHA_OK", __("correct captcha", "wp-file-upload"));
|
169 |
DEFINE("WFU_CONFIRMBOX_CAPTION", __("click to continue the upload", "wp-file-upload"));
|
170 |
DEFINE("WFU_BROWSER_DELETEFILE_PROMPT", __("Are you sure you want to delete this file?", "wp-file-upload"));
|
171 |
+
DEFINE("WFU_BROWSER_DELETEFILES_PROMPT", __("Are you sure you want to delete these files?", "wp-file-upload"));
|
172 |
+
DEFINE("WFU_BROWSER_BULKACTION_TITLE", __("Bulk Actions", "wp-file-upload"));
|
173 |
+
DEFINE("WFU_BROWSER_BULKACTION_LABEL", __("Apply", "wp-file-upload"));
|
174 |
DEFINE("WFU_CANCEL_UPLOAD_PROMPT", __("Are you sure that you want to cancel the upload?", "wp-file-upload"));
|
175 |
DEFINE("WFU_FILE_CANCEL_HINT", __("cancel upload of this file", "wp-file-upload"));
|
176 |
DEFINE("WFU_UPLOAD_STATE0", __("Upload in progress", "wp-file-upload"));
|
267 |
"WFU_SANITIZE_FILENAME_MODE" => array( "Filename Sanitization Mode", "string", "strict", "The sanitization mode for filenames. It can be 'strict' or 'loose'." ),
|
268 |
"WFU_PHP_ARRAY_MAXLEN" => array( "Max PHP Array Length", "string", "10000", "The maximum allowable number of items of a PHP array." ),
|
269 |
"WFU_HISTORYLOG_TABLE_MAXROWS" => array( "History Log Table Rows Per Page", "integer", 25, "The number of rows per page of the History Log table." ),
|
270 |
+
"WFU_ALTERNATIVE_RANDOMIZER" => array( "Use Alternative Randomizer", "string", "false", "On fast web servers the plugin's generator of random strings may not work properly causing various problems. If it is set to true, an alternative randomizer method is employed that works for fast web servers. It can be 'true' or 'false'." ),
|
271 |
"WFU_DASHBOARD_PROTECTED" => array( "Dashboard Is Protected", "string", "false", "If /wp-admin folder is password protected then this variable should be set to 'true' so that internal operations of the plugin can work. The username and password should also be set." ),
|
272 |
"WFU_DASHBOARD_USERNAME" => array( "Protected Dashboard Username", "string", "", "Username entry for accessing protected /wp-admin folder." ),
|
273 |
"WFU_DASHBOARD_PASSWORD" => array( "Protected Dashboard Password", "string", "", "Password entry for accessing protected /wp-admin folder." )
|
lib/wfu_functions.php
CHANGED
@@ -53,7 +53,9 @@ function wfu_create_random_string($len) {
|
|
53 |
$base = 'ABCDEFGHKLMNOPQRSTWXYZabcdefghjkmnpqrstwxyz123456789';
|
54 |
$max = strlen($base) - 1;
|
55 |
$activatecode = '';
|
56 |
-
|
|
|
|
|
57 |
while (strlen($activatecode) < $len)
|
58 |
$activatecode .= $base{mt_rand(0, $max)};
|
59 |
return $activatecode;
|
@@ -230,31 +232,87 @@ function wfu_shortcode_string_to_array($shortcode) {
|
|
230 |
return $attrs2;
|
231 |
}
|
232 |
|
233 |
-
function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
$new_array = array();
|
235 |
$sortable_array = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
236 |
|
237 |
if (count($array) > 0) {
|
238 |
foreach ($array as $k => $v) {
|
239 |
if (is_array($v)) {
|
240 |
foreach ($v as $k2 => $v2) {
|
241 |
if ($k2 == $on) {
|
242 |
-
$sortable_array[$k] = $v2;
|
243 |
}
|
244 |
}
|
245 |
} else {
|
246 |
$sortable_array[$k] = $v;
|
|
|
247 |
}
|
248 |
}
|
249 |
|
250 |
-
|
251 |
-
case SORT_ASC:
|
252 |
-
asort($sortable_array);
|
253 |
-
break;
|
254 |
-
case SORT_DESC:
|
255 |
-
arsort($sortable_array);
|
256 |
-
break;
|
257 |
-
}
|
258 |
|
259 |
foreach ($sortable_array as $k => $v) {
|
260 |
$new_array[$k] = $array[$k];
|
@@ -1608,7 +1666,7 @@ function wfu_add_loading_overlay($dlp, $code) {
|
|
1608 |
|
1609 |
function wfu_add_pagination_header($dlp, $code, $curpage, $pages, $nonce = false) {
|
1610 |
if ($nonce === false) $nonce = wp_create_nonce( 'wfu-'.$code.'-page' );
|
1611 |
-
$echo_str = $dlp.'<div style="
|
1612 |
$echo_str .= $dlp."\t".'<label id="wfu_'.$code.'_first_disabled" style="margin:0 4px; font-weight:bold; opacity:0.5; cursor:default; display:'.( $curpage == 1 ? 'inline' : 'none' ).';"><<</label>';
|
1613 |
$echo_str .= $dlp."\t".'<label id="wfu_'.$code.'_prev_disabled" style="margin:0 4px; font-weight:bold; opacity:0.5; cursor:default; display:'.( $curpage == 1 ? 'inline' : 'none' ).';"><</label>';
|
1614 |
$echo_str .= $dlp."\t".'<a id="wfu_'.$code.'_first" href="javascript:wfu_goto_'.$code.'_page(\''.$nonce.'\', \'first\');" style="margin:0 4px; font-weight:bold; display:'.( $curpage == 1 ? 'none' : 'inline' ).';"><<</a>';
|
@@ -1616,7 +1674,7 @@ function wfu_add_pagination_header($dlp, $code, $curpage, $pages, $nonce = false
|
|
1616 |
$echo_str .= $dlp."\t".'<label style="margin:0 0 0 4px; cursor:default;">Page</label>';
|
1617 |
$echo_str .= $dlp."\t".'<select id="wfu_'.$code.'_pages" style="margin:0 4px;" onchange="wfu_goto_'.$code.'_page(\''.$nonce.'\', \'sel\');">';
|
1618 |
for ( $i = 1; $i <= $pages; $i++ )
|
1619 |
-
$echo_str .= $dlp."\t\t".'<option value="'.$i.'"'.( $i ==
|
1620 |
$echo_str .= $dlp."\t".'</select>';
|
1621 |
$echo_str .= $dlp."\t".'<label style="margin:0 4px 0 0; cursor:default;">of '.$pages.'</label>';
|
1622 |
$echo_str .= $dlp."\t".'<label id="wfu_'.$code.'_next_disabled" style="margin:0 4px; font-weight:bold; opacity:0.5; cursor:default; display:'.( $curpage == $pages ? 'inline' : 'none' ).';">></label>';
|
@@ -1628,6 +1686,20 @@ function wfu_add_pagination_header($dlp, $code, $curpage, $pages, $nonce = false
|
|
1628 |
return $echo_str;
|
1629 |
}
|
1630 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1631 |
//********************* Email Functions ****************************************************************************************************
|
1632 |
|
1633 |
function wfu_send_notification_email($user, $only_filename_list, $target_path_list, $attachment_list, $userdata_fields, $params) {
|
53 |
$base = 'ABCDEFGHKLMNOPQRSTWXYZabcdefghjkmnpqrstwxyz123456789';
|
54 |
$max = strlen($base) - 1;
|
55 |
$activatecode = '';
|
56 |
+
if ( WFU_VAR("WFU_ALTERNATIVE_RANDOMIZER") != "true" )
|
57 |
+
mt_srand((double)microtime()*1000000);
|
58 |
+
else mt_srand((double)substr(uniqid("", true), 15));
|
59 |
while (strlen($activatecode) < $len)
|
60 |
$activatecode .= $base{mt_rand(0, $max)};
|
61 |
return $activatecode;
|
232 |
return $attrs2;
|
233 |
}
|
234 |
|
235 |
+
function wfu_array_sort_function_string_asc($a, $b) {
|
236 |
+
return strcmp(strtolower($a), strtolower($b));
|
237 |
+
}
|
238 |
+
|
239 |
+
function wfu_array_sort_function_string_asc_with_id0($a, $b) {
|
240 |
+
$cmp = strcmp(strtolower($a["value"]), strtolower($b["value"]));
|
241 |
+
if ( $cmp == 0 ) $cmp = ( (int)$a["id0"] < (int)$b["id0"] ? -1 : 1 );
|
242 |
+
return $cmp;
|
243 |
+
}
|
244 |
+
|
245 |
+
function wfu_array_sort_function_string_desc($a, $b) {
|
246 |
+
return -strcmp(strtolower($a), strtolower($b));
|
247 |
+
}
|
248 |
+
|
249 |
+
function wfu_array_sort_function_string_desc_with_id0($a, $b) {
|
250 |
+
$cmp = strcmp(strtolower($a["value"]), strtolower($b["value"]));
|
251 |
+
if ( $cmp == 0 ) $cmp = ( (int)$a["id0"] < (int)$b["id0"] ? -1 : 1 );
|
252 |
+
return -$cmp;
|
253 |
+
}
|
254 |
+
|
255 |
+
function wfu_array_sort_function_numeric_asc($a, $b) {
|
256 |
+
$aa = (double)$a;
|
257 |
+
$bb = (double)$b;
|
258 |
+
if ( $aa < $bb ) return -1;
|
259 |
+
elseif ( $aa > $bb ) return 1;
|
260 |
+
else return 0;
|
261 |
+
}
|
262 |
+
|
263 |
+
function wfu_array_sort_function_numeric_asc_with_id0($a, $b) {
|
264 |
+
$aa = (double)$a["value"];
|
265 |
+
$bb = (double)$b["value"];
|
266 |
+
if ( $aa < $bb ) return -1;
|
267 |
+
elseif ( $aa > $bb ) return 1;
|
268 |
+
elseif ( (int)$a["id0"] < (int)$b["id0"] ) return -1;
|
269 |
+
else return 1;
|
270 |
+
}
|
271 |
+
|
272 |
+
function wfu_array_sort_function_numeric_desc($a, $b) {
|
273 |
+
$aa = (double)$a;
|
274 |
+
$bb = (double)$b;
|
275 |
+
if ( $aa > $bb ) return -1;
|
276 |
+
elseif ( $aa < $bb ) return 1;
|
277 |
+
else return 0;
|
278 |
+
}
|
279 |
+
|
280 |
+
function wfu_array_sort_function_numeric_desc_with_id0($a, $b) {
|
281 |
+
$aa = (double)$a["value"];
|
282 |
+
$bb = (double)$b["value"];
|
283 |
+
if ( $aa > $bb ) return -1;
|
284 |
+
elseif ( $aa < $bb ) return 1;
|
285 |
+
elseif ( (int)$a["id0"] > (int)$b["id0"] ) return -1;
|
286 |
+
else return 1;
|
287 |
+
}
|
288 |
+
|
289 |
+
function wfu_array_sort($array, $on, $order = SORT_ASC, $with_id0 = false) {
|
290 |
$new_array = array();
|
291 |
$sortable_array = array();
|
292 |
+
|
293 |
+
$pos = strpos($on, ":");
|
294 |
+
if ( $pos !== false ) {
|
295 |
+
$sorttype = substr($on, $pos + 1);
|
296 |
+
if ( $sorttype == "" ) $sorttype = "s";
|
297 |
+
$on = substr($on, 0, $pos);
|
298 |
+
}
|
299 |
+
else $sorttype = "s";
|
300 |
|
301 |
if (count($array) > 0) {
|
302 |
foreach ($array as $k => $v) {
|
303 |
if (is_array($v)) {
|
304 |
foreach ($v as $k2 => $v2) {
|
305 |
if ($k2 == $on) {
|
306 |
+
$sortable_array[$k] = ( $with_id0 ? array( "id0" => $v["id0"], "value" => $v2 ) : $v2 );
|
307 |
}
|
308 |
}
|
309 |
} else {
|
310 |
$sortable_array[$k] = $v;
|
311 |
+
$with_id0 = false;
|
312 |
}
|
313 |
}
|
314 |
|
315 |
+
uasort($sortable_array, "wfu_array_sort_function_".( $sorttype == "n" ? "numeric" : "string" )."_".( $order == SORT_ASC ? "asc" : "desc" ).( $with_id0 ? "_with_id0" : "" ));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
|
317 |
foreach ($sortable_array as $k => $v) {
|
318 |
$new_array[$k] = $array[$k];
|
1666 |
|
1667 |
function wfu_add_pagination_header($dlp, $code, $curpage, $pages, $nonce = false) {
|
1668 |
if ($nonce === false) $nonce = wp_create_nonce( 'wfu-'.$code.'-page' );
|
1669 |
+
$echo_str = $dlp.'<div style="float:right;">';
|
1670 |
$echo_str .= $dlp."\t".'<label id="wfu_'.$code.'_first_disabled" style="margin:0 4px; font-weight:bold; opacity:0.5; cursor:default; display:'.( $curpage == 1 ? 'inline' : 'none' ).';"><<</label>';
|
1671 |
$echo_str .= $dlp."\t".'<label id="wfu_'.$code.'_prev_disabled" style="margin:0 4px; font-weight:bold; opacity:0.5; cursor:default; display:'.( $curpage == 1 ? 'inline' : 'none' ).';"><</label>';
|
1672 |
$echo_str .= $dlp."\t".'<a id="wfu_'.$code.'_first" href="javascript:wfu_goto_'.$code.'_page(\''.$nonce.'\', \'first\');" style="margin:0 4px; font-weight:bold; display:'.( $curpage == 1 ? 'none' : 'inline' ).';"><<</a>';
|
1674 |
$echo_str .= $dlp."\t".'<label style="margin:0 0 0 4px; cursor:default;">Page</label>';
|
1675 |
$echo_str .= $dlp."\t".'<select id="wfu_'.$code.'_pages" style="margin:0 4px;" onchange="wfu_goto_'.$code.'_page(\''.$nonce.'\', \'sel\');">';
|
1676 |
for ( $i = 1; $i <= $pages; $i++ )
|
1677 |
+
$echo_str .= $dlp."\t\t".'<option value="'.$i.'"'.( $i == $curpage ? ' selected="selected"' : '' ).'>'.$i.'</option>';
|
1678 |
$echo_str .= $dlp."\t".'</select>';
|
1679 |
$echo_str .= $dlp."\t".'<label style="margin:0 4px 0 0; cursor:default;">of '.$pages.'</label>';
|
1680 |
$echo_str .= $dlp."\t".'<label id="wfu_'.$code.'_next_disabled" style="margin:0 4px; font-weight:bold; opacity:0.5; cursor:default; display:'.( $curpage == $pages ? 'inline' : 'none' ).';">></label>';
|
1686 |
return $echo_str;
|
1687 |
}
|
1688 |
|
1689 |
+
function wfu_add_bulkactions_header($dlp, $code, $actions) {
|
1690 |
+
$echo_str = $dlp.'<div style="float:left;">';
|
1691 |
+
$echo_str .= $dlp."\t".'<select id="wfu_'.$code.'_bulkactions">';
|
1692 |
+
$echo_str .= $dlp."\t\t".'<option value="" selected="selected">'.( substr($code, 0, 8) == "browser_" ? WFU_BROWSER_BULKACTION_TITLE : "Bulk Actions").'</option>';
|
1693 |
+
foreach ( $actions as $action )
|
1694 |
+
$echo_str .= $dlp."\t\t".'<option value="'.$action["name"].'">'.$action["title"].'</option>';
|
1695 |
+
$echo_str .= $dlp."\t".'</select>';
|
1696 |
+
$echo_str .= $dlp."\t".'<input type="button" class="button action" value="'.( substr($code, 0, 8) == "browser_" ? WFU_BROWSER_BULKACTION_LABEL : "Apply").'" onclick="wfu_apply_'.$code.'_bulkaction();" />';
|
1697 |
+
$echo_str .= $dlp."\t".'<img src="'.WFU_IMAGE_OVERLAY_LOADING.'" style="display:none;" />';
|
1698 |
+
$echo_str .= $dlp.'</div>';
|
1699 |
+
|
1700 |
+
return $echo_str;
|
1701 |
+
}
|
1702 |
+
|
1703 |
//********************* Email Functions ****************************************************************************************************
|
1704 |
|
1705 |
function wfu_send_notification_email($user, $only_filename_list, $target_path_list, $attachment_list, $userdata_fields, $params) {
|
readme.txt
CHANGED
@@ -137,6 +137,13 @@ There is an option in plugin's settings in Dashboard to relax the CSS rules, so
|
|
137 |
|
138 |
== Changelog ==
|
139 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
= 3.8.4 =
|
141 |
* dublicatespolicy attribute replaced by grammaticaly correct duplicatespolicy, however backward compatibility with the old attribute is maintained
|
142 |
|
@@ -589,6 +596,9 @@ Initial version.
|
|
589 |
|
590 |
== Upgrade Notice ==
|
591 |
|
|
|
|
|
|
|
592 |
= 3.8.4 =
|
593 |
Upgrade to fix some bugs.
|
594 |
|
137 |
|
138 |
== Changelog ==
|
139 |
|
140 |
+
= 3.8.5 =
|
141 |
+
* added bulk actions feature in File Browser in Dashboard for admins
|
142 |
+
* added delete and include bulk actions in File Browser
|
143 |
+
* improvement of column sort functionality of File Browser
|
144 |
+
* added environment variable 'Use Alternative Randomizer' in order to make string randomizer function work for fast browsers
|
145 |
+
* uploadedbyuser and userid fields became int to cope with large user ID numbers on some Wordpress environments
|
146 |
+
|
147 |
= 3.8.4 =
|
148 |
* dublicatespolicy attribute replaced by grammaticaly correct duplicatespolicy, however backward compatibility with the old attribute is maintained
|
149 |
|
596 |
|
597 |
== Upgrade Notice ==
|
598 |
|
599 |
+
= 3.8.5 =
|
600 |
+
Upgrade to introduce some new features and code improvements.
|
601 |
+
|
602 |
= 3.8.4 =
|
603 |
Upgrade to fix some bugs.
|
604 |
|
release_notes.txt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
<!-- --><span><strong>Latest release notes: </strong>This release introduces
|
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 release introduces <strong>bulk actions</strong> in the File Browser for admins in Dashboard area of the plugin. Two bulk actions are supported for the moment, <strong>Delete</strong> and <strong>Include</strong>. Delete action enables the admin to delete many files at once. Include action enables the admin to include in the plugin's database many files at once that are displayed in the File Browser but were not uploaded by the plugin. Furthermore, this release introduces some improvements in the column sort functionality of the File Browser.</span><!-- --><!-- --><br /><br /><span>
|
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>
|
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.8.
|
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.8.5
|
8 |
Author: Nickolas Bossinas
|
9 |
Author URI: http://www.iptanus.com
|
10 |
*/
|