Version Description
- code modified so that vendor libraries are loaded only when necessary
- improved process of deleting all plugin options
- added honeypot field to userdata fields; this is a security feature, in replacement of captchas, invisible to users that prevents bots from uploading files
- added attribute 'Consent Denial Rejects Upload' in uploader shortcode Personal Data tab to stop the upload if the consent answer is no, as well as 'Reject Message' attribute to customize the upload rejection message shown to the user
- added attribute 'Do Not Remember Consent Answer' in uploader shortcode Personal Data tab to show the consent question every time (and not only the first time)
- attribute 'Preselected Answer' in uploader shortcode Personal Data tab modified to be compatible with either checkbox or radio Consent Format
- upload result message adjusted to show the correct upload status in case that files were uploaded but were not saved due to Personal Data policy
- code improved for sftp uploads to handle PECL ssh2 bug #73597
Download this release
Release Info
Developer | nickboss |
Plugin | WordPress File Upload |
Version | 4.10.1 |
Comparing to | |
See all releases |
Code changes from version 4.10.0 to 4.10.1
- js/wordpress_file_upload_adminfunctions.js +21 -19
- js/wordpress_file_upload_functions.js +40 -37
- languages/wp-file-upload-de_DE.mo +0 -0
- languages/wp-file-upload-de_DE.po +223 -200
- languages/wp-file-upload-el_GR.mo +0 -0
- languages/wp-file-upload-el_GR.po +225 -200
- languages/wp-file-upload-en_US.mo +0 -0
- languages/wp-file-upload-en_US.po +223 -200
- languages/wp-file-upload-es_ES.mo +0 -0
- languages/wp-file-upload-es_ES.po +223 -200
- languages/wp-file-upload-fa_IR.mo +0 -0
- languages/wp-file-upload-fa_IR.po +223 -200
- languages/wp-file-upload-fr_FR.mo +0 -0
- languages/wp-file-upload-fr_FR.po +223 -200
- languages/wp-file-upload-it_IT.mo +0 -0
- languages/wp-file-upload-it_IT.po +223 -200
- languages/wp-file-upload-nl_NL.mo +0 -0
- languages/wp-file-upload-nl_NL.po +223 -200
- languages/wp-file-upload-pl_PL.mo +0 -0
- languages/wp-file-upload-pl_PL.po +223 -200
- languages/wp-file-upload-pt_BR.mo +0 -0
- languages/wp-file-upload-pt_BR.po +223 -200
- languages/wp-file-upload-sr_RS.mo +0 -0
- languages/wp-file-upload-sr_RS.po +223 -200
- languages/wp-file-upload-sv_SE.mo +0 -0
- languages/wp-file-upload-sv_SE.po +223 -200
- languages/wp-file-upload-zh_CN.mo +0 -0
- languages/wp-file-upload-zh_CN.po +223 -200
- languages/wp-file-upload.pot +223 -200
- lib/wfu_admin_composer.php +6 -4
- lib/wfu_ajaxactions.php +13 -4
- lib/wfu_attributes.php +154 -203
- lib/wfu_blocks.php +10 -1
- lib/wfu_constants.php +12 -3
- lib/wfu_functions.php +27 -6
- lib/wfu_io.php +2 -2
- lib/wfu_processfiles.php +12 -2
- lib/wfu_template.php +37 -12
- readme.txt +13 -0
- release_notes.txt +8 -1
- wfu_loader.php +42 -5
- wordpress_file_upload.php +1 -1
js/wordpress_file_upload_adminfunctions.js
CHANGED
@@ -91,23 +91,25 @@ subfolder_path;if(last_index.length<=list[i].level)last_index.push(0);if(list[i]
|
|
91 |
function wfu_update_subfolder_list(key){var opts=document.getElementById("wfu_attribute_"+key).options;var list=document.getElementById("wfu_attribute_"+key);var items=list.data;if(items==null)return;var value_raw,text_raw;var global_raw="";opts.length=items.length+1;for(var i=0;i<items.length;i++){value_raw="";text_raw="";for(j=0;j<items[i].level;j++){value_raw+="*";text_raw+=" "}if(items[i]["default"]){value_raw+="&";opts[i].className="wfu_select_folders_option_default"}else opts[i].className=
|
92 |
"";value_raw+=items[i].path+"/"+items[i].label;text_raw+=items[i].label;opts[i].value=wfu_plugin_encode_string(value_raw);opts[i].innerHTML=text_raw;if(global_raw!="")global_raw+=",";global_raw+=value_raw}opts[items.length].value="";opts[items.length].innerHTML="";return global_raw}
|
93 |
function wfu_userdata_edit_field(line,label,required){var item;for(var i=0;i<line.childNodes.length;i++){item=line.childNodes[i];if(item.tagName=="INPUT")if(item.type=="text"){item.value=label;wfu_attach_element_handlers(item,wfu_update_userfield_value)}else{if(item.type=="checkbox")item.checked=required}else if(item.tagName=="DIV")item.className="wfu_userdata_action"}}function wfu_formdata_edit_field(line,label,required){}
|
94 |
-
function wfu_formdata_get_field_props(key){var key_parts=key.split("_");var attribute=key_parts[0];var a="wfu_formfield_"+key;var fielddef=window["wfu_attribute_"+attribute+"_typeprops"][document.getElementById(a+"_type").value];var field={type:document.getElementById(a+"_type").value,label:document.getElementById(a+"_label").value
|
95 |
-
|
96 |
-
|
97 |
-
"_data")?document.getElementById(a+"_data").value:fielddef.data.substr(5),group:fielddef.group.substr(0,4)=="show"&&document.getElementById(a+"_group")?document.getElementById(a+"_group").value:fielddef.group.substr(5),format:fielddef.format.substr(0,4)=="show"&&document.getElementById(a+"_format")?document.getElementById(a+"_format").value:fielddef.format.substr(5)};
|
98 |
-
|
99 |
-
|
|
|
100 |
function wfu_formdata_add_field(key){var key_parts=key.split("_");var attribute=key_parts[0];var ind=key_parts[1];var container=document.getElementById("wfu_attribute_"+attribute);var prev=document.getElementById("wfu_formfield_"+key+"_container");var new_line_container=document.createElement("DIV");var new_key=attribute+"_"+wfu_randomString(4);new_line_container.id="wfu_formfield_"+new_key+"_container";new_line_container.className="wfu_formdata_line_container";container.insertBefore(new_line_container,
|
101 |
prev.nextSibling);var field={type:"text",label:"",labelposition:"left",required:false,donotautocomplete:false,validate:false,"default":"",data:"",group:"",format:"",hintposition:"right",typehook:false};var template=wfu_formdata_prepare_template(attribute,field,new_key);new_line_container.innerHTML=template;var formfield_elements=document.querySelectorAll("div#wfu_formfield_"+new_key+'_container input[name="wfu_formfield_elements"]');for(var i=0;i<formfield_elements.length;i++)wfu_attach_element_handlers(formfield_elements[i],
|
102 |
wfu_update_formfield_value);wfu_formdata_update_buttons(key);wfu_formdata_update_buttons(new_key);wfu_update_formfield_value({target:new_line_container})}
|
103 |
-
function wfu_formdata_prepare_template(attribute,field,key){var template=wfu_plugin_decode_string(window["wfu_attribute_"+attribute+"_formtemplate"]);var fielddef=window["wfu_attribute_"+attribute+"_typeprops"][field.type];var fielddef_array=window["wfu_attribute_"+attribute+"_typeprops"][0].split(",");var fieldprops_basic=["required","donotautocomplete","validate","typehook","labelposition","hintposition","default","data","group","format"];var labelpositions=["none","top","right","bottom",
|
104 |
-
"placeholder"];var hintpositions=["none","inline","top","right","bottom","left"];template=template.replace(/\[\[key\]\]/g,key).replace(/\[\[t\]\]/g,field.type).replace(/\[\[label\]\]/g,field.label).replace(/\[\[s\]\]/g,field.labelposition).replace(/\[\[d\]\]/g,field["default"]).replace(/\[\[l\]\]/g,field.data).replace(/\[\[data_label\]\]/g,fielddef.data_label).replace(/\[\[g\]\]/g,field.group).replace(/\[\[f\]\]/g,field.format).replace(/\[\[p\]\]/g,
|
105 |
-
template.replace(new RegExp("\\[\\["+fieldprops_basic[i]+"_hint\\]\\]","g"),fielddef[fieldprops_basic[i]+"_hint"]);for(var i=0;i<fielddef_array.length;i++)template=template.replace("[[type_"+fielddef_array[i]+"_selected]]",fielddef_array[i]==field.type?' selected="selected"':"");for(var i=0;i<labelpositions.length;i++)template=template.replace("[[labelposition_"+labelpositions[i]+"_selected]]",labelpositions[i]==field.labelposition?
|
106 |
-
template.replace("[[hintposition_"+hintpositions[i]+"_selected]]",hintpositions[i]==field.hintposition?' selected="selected"':"");template=template.replace("[[remove_disabled]]","");template=template.replace("[[up_disabled]]","");template=template.replace("[[down_disabled]]","");template=field.required?template.replace(/\[\[r\->\]\]|\[\[<\-r\]\]/g,""):template.replace(/\[\[r\->\]\].*\[\[<\-r\]\]/g,"");template=field.donotautocomplete?
|
107 |
-
|
108 |
-
"")
|
109 |
-
|
110 |
-
""):template.replace(/\[\[
|
|
|
111 |
function wfu_formdata_remove_field(key){var key_parts=key.split("_");var attribute=key_parts[0];var containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");if(containers.length<2)return;var container=document.getElementById("wfu_attribute_"+attribute);var line_container=document.getElementById("wfu_formfield_"+key+"_container");var line_container_index=0;for(var i=0;i<containers.length;i++)if(containers[i]==line_container){line_container_index=i+1;break}container.removeChild(line_container);
|
112 |
containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");if(line_container_index>containers.length)line_container_index=containers.length;line_container=containers[line_container_index-1];var prev_key=line_container.id.replace(/^wfu_formfield_/,"").replace(/_container$/,"");wfu_formdata_update_buttons(prev_key);wfu_update_formfield_value({target:line_container})}
|
113 |
function wfu_formdata_move_field(key,direction){var key_parts=key.split("_");var attribute=key_parts[0];var all_attributes=document.querySelector("div#wfu_attribute_"+attribute+" .wfu_formdata_all_attributes").value.split(",");var attr_occur_index=all_attributes.indexOf(attribute)+1;var containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");var container=document.getElementById("wfu_attribute_"+attribute);var line_container=document.getElementById("wfu_formfield_"+
|
@@ -146,10 +148,10 @@ function wfu_update_stringmatch_value(attribute){var matchfield=document.getElem
|
|
146 |
function wfu_update_userfield_value(e){e=e||window.event;var item=e.target;var line=item.parentNode;var container=line.parentNode;var fieldval="";var fieldreq=false;var val="";for(var i=0;i<container.childNodes.length;i++){line=container.childNodes[i];if(line.tagName==="DIV"){for(var j=0;j<line.childNodes.length;j++)if(line.childNodes[j].tagName=="INPUT")if(line.childNodes[j].type=="text"){fieldval=line.childNodes[j].value;if(i==0)item=line.childNodes[j]}else if(line.childNodes[j].type=="checkbox")fieldreq=
|
147 |
line.childNodes[j].checked;if(val!=""&&fieldval!="")val+="/";if(fieldval!=""&&fieldreq)val+="*";if(fieldval!="")val+=fieldval}}if(val!==item.oldVal){item.oldVal=val;document.getElementById("wfu_attribute_value_userdatalabel").value=val;wfu_generate_shortcode();wfu_update_formfield_variables()}}
|
148 |
function wfu_update_formfield_value(e){e=e||window.event;var item=e.target;var attribute=item.id.match(/^wfu_formfield_(.*?)_/)[1];var containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");var val="";for(var i=0;i<containers.length;i++){var part="";var ind=containers[i].id.match(/^wfu_formfield_.*?_(.*?)_/)[1];var key=attribute+"_"+ind;var label=document.getElementById("wfu_formfield_"+key+"_label").value;if(label.trim()!=""){part=label.trim();var type=
|
149 |
-
document.getElementById("wfu_formfield_"+key+"_type").value;var typeprops=window["wfu_attribute_"+attribute+"_typeprops"];part+="|t:"+type;part+="|s:"+document.getElementById("wfu_formfield_"+key+"_labelposition").value;if(typeprops[type].required.substr(0,4)=="show")part+="|r:"+(document.getElementById("wfu_formfield_"+key+"_required").checked?"1":"0");if(typeprops[type].donotautocomplete.substr(0,4)=="show")part+="|a:"+(document.getElementById("wfu_formfield_"+
|
150 |
-
"1":"0");if(typeprops[type].validate.substr(0,4)=="show")part+="|v:"+(document.getElementById("wfu_formfield_"+key+"_validate").checked?"1":"0");if(typeprops[type].typehook.substr(0,4)=="show")part+="|h:"+(document.getElementById("wfu_formfield_"+key+"_typehook").checked?"1":"0");if(typeprops[type].hintposition.substr(0,4)=="show")part+="|p:"+document.getElementById("wfu_formfield_"+key+"_hintposition").value;if(typeprops[type]["default"].substr(0,4)=="show")part+=
|
151 |
-
key+"_default").value;if(typeprops[type].data.substr(0,4)=="show")part+="|l:"+document.getElementById("wfu_formfield_"+key+"_data").value;if(typeprops[type].group.substr(0,4)=="show")part+="|g:"+document.getElementById("wfu_formfield_"+key+"_group").value;if(typeprops[type].format.substr(0,4)=="show")part+="|f:"+document.getElementById("wfu_formfield_"+key+"_format").value}if(part!=""){if(val!="")val+="/";val+=part}}if(val!==item.oldVal){item.oldVal=
|
152 |
-
attribute).value=val;wfu_generate_shortcode();wfu_update_formfield_variables()}}
|
153 |
function wfu_update_formfield_variables(){var userdata=document.getElementById("wfu_attribute_value_userdatalabel");if(!userdata)return;var shadows=document.querySelectorAll("#wfu_wrapper div.wfu_shadow_userdata");var selects=document.getElementsByName("wfu_formfield_select");for(var i=0;i<selects.length;i++)selects[i].style.display="none";if(shadows.length==0)return;if(shadows[0].style.display=="block")return;var options_str='<option style="display:none;">%userdataXXX%</option>';var userfields=userdata.value.replace(/\//g,
|
154 |
"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");var ind=2;while(document.getElementById("wfu_attribute_userdatalabel"+ind)){var userfields2=document.getElementById("wfu_attribute_value_userdatalabel"+ind).value.replace(/\//g,"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");userfields=userfields.concat(userfields2);ind++}var field="";var pos=0;ind=1;for(var i=0;i<userfields.length;i++){field=userfields[i];if(field[0]=="*")field=field.substr(1);
|
155 |
pos=field.indexOf("|");if(pos>-1)field=field.substr(0,pos);if(field.trim()!=""){options_str+='<option value="%userdata'+ind+'%">'+ind+": "+field.trim()+"</option>";ind++}}for(var i=0;i<selects.length;i++){selects[i].innerHTML=options_str;selects[i].style.display="inline-block"}}
|
@@ -209,7 +211,7 @@ opt.onclick=source.options[i].onclick;target.appendChild(opt)}}wfu_update_column
|
|
209 |
attribute+"_"+nam.trim());if(item)item.value=val.trim()}item=group[0];wfu_update_dimension_value({target:item})}else if(type=="userfields"){var fields_arr=value.replace(/\//g,"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");var is_req;var fields=Array();for(var i=0;i<fields_arr.length;i++){is_req=fields_arr[i].substr(0,1)=="*";if(is_req)fields_arr[i]=fields_arr[i].substr(1);if(fields_arr[i]!="")fields.push({name:fields_arr[i],required:is_req})}var container=document.getElementById("wfu_attribute_"+
|
210 |
attribute);var first=null;var remove_array=Array();for(var i=0;i<container.childNodes.length;i++)if(container.childNodes[i].nodeType===1)if(first==null)first=container.childNodes[i];else remove_array.push(container.childNodes[i]);for(var i=0;i<remove_array.length;i++)container.removeChild(remove_array[i]);wfu_userdata_edit_field(first,"",false);var newline;var prevline=first;for(var i=0;i<fields.length;i++)if(i==0)wfu_userdata_edit_field(first,fields[i].name,fields[i].required);else{newline=prevline.cloneNode(true);
|
211 |
wfu_userdata_edit_field(newline,fields[i].name,fields[i].required);container.insertBefore(newline,prevline.nextSibling);prevline=newline}var item;for(var i=0;i<first.childNodes.length;i++){item=first.childNodes[i];if(item.tagName=="INPUT")break}wfu_update_userfield_value({target:item})}else if(type=="formfields"){var fields=Array();var fielddefs=window["wfu_attribute_"+attribute+"_typeprops"];var fielddef_array=fielddefs[0].split(",");var defaults={};for(var i=0;i<fielddef_array.length;i++){var fielddef=
|
212 |
-
fielddefs[fielddef_array[i]];var def={};def.type=fielddef_array[i];def.label=
|
213 |
def.format=fielddef.format.substr(5);defaults[fielddef_array[i]]=def}var fields_arr=value.replace(/\//g,"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");for(var i=0;i<fields_arr.length;i++){var field_raw=fields_arr[i].trim();var fieldprops={};for(prop in defaults["text"])fieldprops[prop]=defaults["text"][prop];if(field_raw.substr(0,1)=="*"){fieldprops.required=true;field_raw=field_raw.substr(1)}var field_parts=field_raw.split("|");if(field_parts[0].trim()!=""){var type_key=
|
214 |
-1;var new_type="";for(var j=0;j<field_parts.length;j++){var part=field_parts[j].replace(/^\s+/gm,"");var flag=part.substr(0,2);var val=part.substr(2);if(flag=="t:"&&j>0&&fielddef_array.indexOf(val)>-1){new_type=val;type_key=j;break}}if(new_type!=""){for(prop in defaults[new_type])fieldprops[prop]=defaults[new_type][prop];field_parts.splice(type_key,1)}fieldprops.label=field_parts[0].trim();field_parts.splice(0,1);for(var j=0;j<field_parts.length;j++){var part=field_parts[j].replace(/^\s+/gm,"");
|
215 |
var flag=part.substr(0,2);var val=part.substr(2);if(flag=="s:")fieldprops.labelposition=val;else if(flag=="r:")fieldprops.required=val=="1";else if(flag=="a:")fieldprops.donotautocomplete=val=="1";else if(flag=="v:")fieldprops.validate=val=="1";else if(flag=="d:")fieldprops["default"]=val;else if(flag=="l:")fieldprops.data=val;else if(flag=="g:")fieldprops.group=val;else if(flag=="f:")fieldprops.format=val;else if(flag=="p:")fieldprops.hintposition=val;else if(flag=="h:")fieldprops.typehook=val==
|
91 |
function wfu_update_subfolder_list(key){var opts=document.getElementById("wfu_attribute_"+key).options;var list=document.getElementById("wfu_attribute_"+key);var items=list.data;if(items==null)return;var value_raw,text_raw;var global_raw="";opts.length=items.length+1;for(var i=0;i<items.length;i++){value_raw="";text_raw="";for(j=0;j<items[i].level;j++){value_raw+="*";text_raw+=" "}if(items[i]["default"]){value_raw+="&";opts[i].className="wfu_select_folders_option_default"}else opts[i].className=
|
92 |
"";value_raw+=items[i].path+"/"+items[i].label;text_raw+=items[i].label;opts[i].value=wfu_plugin_encode_string(value_raw);opts[i].innerHTML=text_raw;if(global_raw!="")global_raw+=",";global_raw+=value_raw}opts[items.length].value="";opts[items.length].innerHTML="";return global_raw}
|
93 |
function wfu_userdata_edit_field(line,label,required){var item;for(var i=0;i<line.childNodes.length;i++){item=line.childNodes[i];if(item.tagName=="INPUT")if(item.type=="text"){item.value=label;wfu_attach_element_handlers(item,wfu_update_userfield_value)}else{if(item.type=="checkbox")item.checked=required}else if(item.tagName=="DIV")item.className="wfu_userdata_action"}}function wfu_formdata_edit_field(line,label,required){}
|
94 |
+
function wfu_formdata_get_field_props(key){var key_parts=key.split("_");var attribute=key_parts[0];var a="wfu_formfield_"+key;var fielddef=window["wfu_attribute_"+attribute+"_typeprops"][document.getElementById(a+"_type").value];var field={type:document.getElementById(a+"_type").value,label:fielddef.label==""?document.getElementById(a+"_label").value:fielddef.label,labelposition:fielddef.labelposition.substr(0,4)=="show"&&document.getElementById(a+"_labelposition")?document.getElementById(a+"_labelposition").value:
|
95 |
+
fielddef.labelposition.substr(5),required:fielddef.required.substr(0,4)=="show"&&document.getElementById(a+"_required")?document.getElementById(a+"_required").checked:fielddef.required.substr(5)=="true",donotautocomplete:fielddef.donotautocomplete.substr(0,4)=="show"&&document.getElementById(a+"_donotautocomplete")?document.getElementById(a+"_donotautocomplete").checked:fielddef.donotautocomplete.substr(5)=="true",validate:fielddef.validate.substr(0,4)=="show"&&document.getElementById(a+"_validate")?
|
96 |
+
document.getElementById(a+"_validate").checked:fielddef.validate.substr(5)=="true",typehook:fielddef.typehook.substr(0,4)=="show"&&document.getElementById(a+"_typehook")?document.getElementById(a+"_typehook").checked:fielddef.typehook.substr(5)=="true",hintposition:fielddef.hintposition.substr(0,4)=="show"&&document.getElementById(a+"_hintposition")?document.getElementById(a+"_hintposition").value:fielddef.hintposition.substr(5),"default":fielddef["default"].substr(0,4)=="show"&&document.getElementById(a+
|
97 |
+
"_default")?document.getElementById(a+"_default").value:fielddef["default"].substr(5),data:fielddef.data.substr(0,4)=="show"&&document.getElementById(a+"_data")?document.getElementById(a+"_data").value:fielddef.data.substr(5),group:fielddef.group.substr(0,4)=="show"&&document.getElementById(a+"_group")?document.getElementById(a+"_group").value:fielddef.group.substr(5),format:fielddef.format.substr(0,4)=="show"&&document.getElementById(a+"_format")?document.getElementById(a+"_format").value:fielddef.format.substr(5)};
|
98 |
+
return field}
|
99 |
+
function wfu_formdata_type_changed(key){var key_parts=key.split("_");var attribute=key_parts[0];var a="wfu_formfield_"+key;var line_container=document.getElementById(a+"_container");var field=wfu_formdata_get_field_props(key);var template=wfu_formdata_prepare_template(attribute,field,key);line_container.innerHTML=template;var formfield_elements=document.querySelectorAll("div#"+a+'_container input[name="wfu_formfield_elements"]');for(var i=0;i<formfield_elements.length;i++)wfu_attach_element_handlers(formfield_elements[i],wfu_update_formfield_value);
|
100 |
+
wfu_formdata_update_buttons(key);wfu_update_formfield_value({target:line_container})}function wfu_userdata_add_field(obj){var line=obj.parentNode;var newline=line.cloneNode(true);wfu_userdata_edit_field(newline,"",false);line.parentNode.insertBefore(newline,line.nextSibling)}
|
101 |
function wfu_formdata_add_field(key){var key_parts=key.split("_");var attribute=key_parts[0];var ind=key_parts[1];var container=document.getElementById("wfu_attribute_"+attribute);var prev=document.getElementById("wfu_formfield_"+key+"_container");var new_line_container=document.createElement("DIV");var new_key=attribute+"_"+wfu_randomString(4);new_line_container.id="wfu_formfield_"+new_key+"_container";new_line_container.className="wfu_formdata_line_container";container.insertBefore(new_line_container,
|
102 |
prev.nextSibling);var field={type:"text",label:"",labelposition:"left",required:false,donotautocomplete:false,validate:false,"default":"",data:"",group:"",format:"",hintposition:"right",typehook:false};var template=wfu_formdata_prepare_template(attribute,field,new_key);new_line_container.innerHTML=template;var formfield_elements=document.querySelectorAll("div#wfu_formfield_"+new_key+'_container input[name="wfu_formfield_elements"]');for(var i=0;i<formfield_elements.length;i++)wfu_attach_element_handlers(formfield_elements[i],
|
103 |
wfu_update_formfield_value);wfu_formdata_update_buttons(key);wfu_formdata_update_buttons(new_key);wfu_update_formfield_value({target:new_line_container})}
|
104 |
+
function wfu_formdata_prepare_template(attribute,field,key){var template=wfu_plugin_decode_string(window["wfu_attribute_"+attribute+"_formtemplate"]);var fielddef=window["wfu_attribute_"+attribute+"_typeprops"][field.type];var fielddef_array=window["wfu_attribute_"+attribute+"_typeprops"][0].split(",");var fieldprops_basic=["label","required","donotautocomplete","validate","typehook","labelposition","hintposition","default","data","group","format"];var labelpositions=["none","top","right","bottom",
|
105 |
+
"left","placeholder"];var hintpositions=["none","inline","top","right","bottom","left"];template=template.replace(/\[\[key\]\]/g,key).replace(/\[\[t\]\]/g,field.type).replace(/\[\[label\]\]/g,field.label).replace(/\[\[s\]\]/g,field.labelposition).replace(/\[\[d\]\]/g,field["default"]).replace(/\[\[l\]\]/g,field.data).replace(/\[\[label_label\]\]/g,fielddef.label_label).replace(/\[\[data_label\]\]/g,fielddef.data_label).replace(/\[\[g\]\]/g,field.group).replace(/\[\[f\]\]/g,field.format).replace(/\[\[p\]\]/g,
|
106 |
+
field.hintposition);for(var i=0;i<fieldprops_basic.length;i++)template=template.replace(new RegExp("\\[\\["+fieldprops_basic[i]+"_hint\\]\\]","g"),fielddef[fieldprops_basic[i]+"_hint"]);for(var i=0;i<fielddef_array.length;i++)template=template.replace("[[type_"+fielddef_array[i]+"_selected]]",fielddef_array[i]==field.type?' selected="selected"':"");for(var i=0;i<labelpositions.length;i++)template=template.replace("[[labelposition_"+labelpositions[i]+"_selected]]",labelpositions[i]==field.labelposition?
|
107 |
+
' selected="selected"':"");for(var i=0;i<hintpositions.length;i++)template=template.replace("[[hintposition_"+hintpositions[i]+"_selected]]",hintpositions[i]==field.hintposition?' selected="selected"':"");template=template.replace("[[remove_disabled]]","");template=template.replace("[[up_disabled]]","");template=template.replace("[[down_disabled]]","");template=field.required?template.replace(/\[\[r\->\]\]|\[\[<\-r\]\]/g,""):template.replace(/\[\[r\->\]\].*\[\[<\-r\]\]/g,"");template=field.donotautocomplete?
|
108 |
+
template.replace(/\[\[a\->\]\]|\[\[<\-a\]\]/g,""):template.replace(/\[\[a\->\]\].*\[\[<\-a\]\]/g,"");template=field.validate?template.replace(/\[\[v\->\]\]|\[\[<\-v\]\]/g,""):template.replace(/\[\[v\->\]\].*\[\[<\-v\]\]/g,"");template=field.typehook?template.replace(/\[\[h\->\]\]|\[\[<\-h\]\]/g,""):template.replace(/\[\[h\->\]\].*\[\[<\-h\]\]/g,"");template=fielddef.labelposition.substr(0,4)=="show"?template.replace(/\[\[S\->\]\]|\[\[<\-S\]\]/g,""):template.replace(/\[\[S\->\]\][^]*\[\[<\-S\]\]/g,
|
109 |
+
"");template=fielddef.required.substr(0,4)=="show"?template.replace(/\[\[R\->\]\]|\[\[<\-R\]\]/g,""):template.replace(/\[\[R\->\]\][^]*\[\[<\-R\]\]/g,"");template=fielddef.donotautocomplete.substr(0,4)=="show"?template.replace(/\[\[A\->\]\]|\[\[<\-A\]\]/g,""):template.replace(/\[\[A\->\]\][^]*\[\[<\-A\]\]/g,"");template=fielddef.validate.substr(0,4)=="show"?template.replace(/\[\[V\->\]\]|\[\[<\-V\]\]/g,""):template.replace(/\[\[V\->\]\][^]*\[\[<\-V\]\]/g,"");template=fielddef.hintposition.substr(0,
|
110 |
+
4)=="show"?template.replace(/\[\[P\->\]\]|\[\[<\-P\]\]/g,""):template.replace(/\[\[P\->\]\][^]*\[\[<\-P\]\]/g,"");template=fielddef.typehook.substr(0,4)=="show"?template.replace(/\[\[H\->\]\]|\[\[<\-H\]\]/g,""):template.replace(/\[\[H\->\]\][^]*\[\[<\-H\]\]/g,"");template=fielddef["default"].substr(0,4)=="show"?template.replace(/\[\[D\->\]\]|\[\[<\-D\]\]/g,""):template.replace(/\[\[D\->\]\][^]*\[\[<\-D\]\]/g,"");template=fielddef.data.substr(0,4)=="show"?template.replace(/\[\[L\->\]\]|\[\[<\-L\]\]/g,
|
111 |
+
""):template.replace(/\[\[L\->\]\][^]*\[\[<\-L\]\]/g,"");template=fielddef.group.substr(0,4)=="show"?template.replace(/\[\[G\->\]\]|\[\[<\-G\]\]/g,""):template.replace(/\[\[G\->\]\][^]*\[\[<\-G\]\]/g,"");template=fielddef.format.substr(0,4)=="show"?template.replace(/\[\[F\->\]\]|\[\[<\-F\]\]/g,""):template.replace(/\[\[F\->\]\][^]*\[\[<\-F\]\]/g,"");return template}
|
112 |
+
function wfu_userdata_remove_field(obj){var line=obj.parentNode;var container=line.parentNode;var first=null;for(var i=0;i<container.childNodes.length;i++)if(container.childNodes[i].nodeType===1){first=container.childNodes[i];break}if(line!=first){line.parentNode.removeChild(line);for(var i=0;i<first.childNodes.length;i++)if(first.childNodes[i].nodeType===1){wfu_update_userfield_value({target:first.childNodes[i]});break}}}
|
113 |
function wfu_formdata_remove_field(key){var key_parts=key.split("_");var attribute=key_parts[0];var containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");if(containers.length<2)return;var container=document.getElementById("wfu_attribute_"+attribute);var line_container=document.getElementById("wfu_formfield_"+key+"_container");var line_container_index=0;for(var i=0;i<containers.length;i++)if(containers[i]==line_container){line_container_index=i+1;break}container.removeChild(line_container);
|
114 |
containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");if(line_container_index>containers.length)line_container_index=containers.length;line_container=containers[line_container_index-1];var prev_key=line_container.id.replace(/^wfu_formfield_/,"").replace(/_container$/,"");wfu_formdata_update_buttons(prev_key);wfu_update_formfield_value({target:line_container})}
|
115 |
function wfu_formdata_move_field(key,direction){var key_parts=key.split("_");var attribute=key_parts[0];var all_attributes=document.querySelector("div#wfu_attribute_"+attribute+" .wfu_formdata_all_attributes").value.split(",");var attr_occur_index=all_attributes.indexOf(attribute)+1;var containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");var container=document.getElementById("wfu_attribute_"+attribute);var line_container=document.getElementById("wfu_formfield_"+
|
148 |
function wfu_update_userfield_value(e){e=e||window.event;var item=e.target;var line=item.parentNode;var container=line.parentNode;var fieldval="";var fieldreq=false;var val="";for(var i=0;i<container.childNodes.length;i++){line=container.childNodes[i];if(line.tagName==="DIV"){for(var j=0;j<line.childNodes.length;j++)if(line.childNodes[j].tagName=="INPUT")if(line.childNodes[j].type=="text"){fieldval=line.childNodes[j].value;if(i==0)item=line.childNodes[j]}else if(line.childNodes[j].type=="checkbox")fieldreq=
|
149 |
line.childNodes[j].checked;if(val!=""&&fieldval!="")val+="/";if(fieldval!=""&&fieldreq)val+="*";if(fieldval!="")val+=fieldval}}if(val!==item.oldVal){item.oldVal=val;document.getElementById("wfu_attribute_value_userdatalabel").value=val;wfu_generate_shortcode();wfu_update_formfield_variables()}}
|
150 |
function wfu_update_formfield_value(e){e=e||window.event;var item=e.target;var attribute=item.id.match(/^wfu_formfield_(.*?)_/)[1];var containers=document.querySelectorAll("div#wfu_attribute_"+attribute+" .wfu_formdata_line_container");var val="";for(var i=0;i<containers.length;i++){var part="";var ind=containers[i].id.match(/^wfu_formfield_.*?_(.*?)_/)[1];var key=attribute+"_"+ind;var label=document.getElementById("wfu_formfield_"+key+"_label").value;if(label.trim()!=""){part=label.trim();var type=
|
151 |
+
document.getElementById("wfu_formfield_"+key+"_type").value;var typeprops=window["wfu_attribute_"+attribute+"_typeprops"];part+="|t:"+type;if(typeprops[type].labelposition.substr(0,4)=="show")part+="|s:"+document.getElementById("wfu_formfield_"+key+"_labelposition").value;if(typeprops[type].required.substr(0,4)=="show")part+="|r:"+(document.getElementById("wfu_formfield_"+key+"_required").checked?"1":"0");if(typeprops[type].donotautocomplete.substr(0,4)=="show")part+="|a:"+(document.getElementById("wfu_formfield_"+
|
152 |
+
key+"_donotautocomplete").checked?"1":"0");if(typeprops[type].validate.substr(0,4)=="show")part+="|v:"+(document.getElementById("wfu_formfield_"+key+"_validate").checked?"1":"0");if(typeprops[type].typehook.substr(0,4)=="show")part+="|h:"+(document.getElementById("wfu_formfield_"+key+"_typehook").checked?"1":"0");if(typeprops[type].hintposition.substr(0,4)=="show")part+="|p:"+document.getElementById("wfu_formfield_"+key+"_hintposition").value;if(typeprops[type]["default"].substr(0,4)=="show")part+=
|
153 |
+
"|d:"+document.getElementById("wfu_formfield_"+key+"_default").value;if(typeprops[type].data.substr(0,4)=="show")part+="|l:"+document.getElementById("wfu_formfield_"+key+"_data").value;if(typeprops[type].group.substr(0,4)=="show")part+="|g:"+document.getElementById("wfu_formfield_"+key+"_group").value;if(typeprops[type].format.substr(0,4)=="show")part+="|f:"+document.getElementById("wfu_formfield_"+key+"_format").value}if(part!=""){if(val!="")val+="/";val+=part}}if(val!==item.oldVal){item.oldVal=
|
154 |
+
val;document.getElementById("wfu_attribute_value_"+attribute).value=val;wfu_generate_shortcode();wfu_update_formfield_variables()}}
|
155 |
function wfu_update_formfield_variables(){var userdata=document.getElementById("wfu_attribute_value_userdatalabel");if(!userdata)return;var shadows=document.querySelectorAll("#wfu_wrapper div.wfu_shadow_userdata");var selects=document.getElementsByName("wfu_formfield_select");for(var i=0;i<selects.length;i++)selects[i].style.display="none";if(shadows.length==0)return;if(shadows[0].style.display=="block")return;var options_str='<option style="display:none;">%userdataXXX%</option>';var userfields=userdata.value.replace(/\//g,
|
156 |
"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");var ind=2;while(document.getElementById("wfu_attribute_userdatalabel"+ind)){var userfields2=document.getElementById("wfu_attribute_value_userdatalabel"+ind).value.replace(/\//g,"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");userfields=userfields.concat(userfields2);ind++}var field="";var pos=0;ind=1;for(var i=0;i<userfields.length;i++){field=userfields[i];if(field[0]=="*")field=field.substr(1);
|
157 |
pos=field.indexOf("|");if(pos>-1)field=field.substr(0,pos);if(field.trim()!=""){options_str+='<option value="%userdata'+ind+'%">'+ind+": "+field.trim()+"</option>";ind++}}for(var i=0;i<selects.length;i++){selects[i].innerHTML=options_str;selects[i].style.display="inline-block"}}
|
211 |
attribute+"_"+nam.trim());if(item)item.value=val.trim()}item=group[0];wfu_update_dimension_value({target:item})}else if(type=="userfields"){var fields_arr=value.replace(/\//g,"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");var is_req;var fields=Array();for(var i=0;i<fields_arr.length;i++){is_req=fields_arr[i].substr(0,1)=="*";if(is_req)fields_arr[i]=fields_arr[i].substr(1);if(fields_arr[i]!="")fields.push({name:fields_arr[i],required:is_req})}var container=document.getElementById("wfu_attribute_"+
|
212 |
attribute);var first=null;var remove_array=Array();for(var i=0;i<container.childNodes.length;i++)if(container.childNodes[i].nodeType===1)if(first==null)first=container.childNodes[i];else remove_array.push(container.childNodes[i]);for(var i=0;i<remove_array.length;i++)container.removeChild(remove_array[i]);wfu_userdata_edit_field(first,"",false);var newline;var prevline=first;for(var i=0;i<fields.length;i++)if(i==0)wfu_userdata_edit_field(first,fields[i].name,fields[i].required);else{newline=prevline.cloneNode(true);
|
213 |
wfu_userdata_edit_field(newline,fields[i].name,fields[i].required);container.insertBefore(newline,prevline.nextSibling);prevline=newline}var item;for(var i=0;i<first.childNodes.length;i++){item=first.childNodes[i];if(item.tagName=="INPUT")break}wfu_update_userfield_value({target:item})}else if(type=="formfields"){var fields=Array();var fielddefs=window["wfu_attribute_"+attribute+"_typeprops"];var fielddef_array=fielddefs[0].split(",");var defaults={};for(var i=0;i<fielddef_array.length;i++){var fielddef=
|
214 |
+
fielddefs[fielddef_array[i]];var def={};def.type=fielddef_array[i];def.label=fielddef.label;def.labelposition=fielddef.labelposition.substr(5);def.required=fielddef.required.substr(5)=="true";def.donotautocomplete=fielddef.donotautocomplete.substr(5)=="true";def.validate=fielddef.validate.substr(5)=="true";def.typehook=fielddef.typehook.substr(5)=="true";def.hintposition=fielddef.hintposition.substr(5);def["default"]=fielddef["default"].substr(5);def.data=fielddef.data.substr(5);def.group=fielddef.group.substr(5);
|
215 |
def.format=fielddef.format.substr(5);defaults[fielddef_array[i]]=def}var fields_arr=value.replace(/\//g,"[/]").replace(/\(.*\)/,function(m){return m.replace(/\[\/\]/g,"/")}).split("[/]");for(var i=0;i<fields_arr.length;i++){var field_raw=fields_arr[i].trim();var fieldprops={};for(prop in defaults["text"])fieldprops[prop]=defaults["text"][prop];if(field_raw.substr(0,1)=="*"){fieldprops.required=true;field_raw=field_raw.substr(1)}var field_parts=field_raw.split("|");if(field_parts[0].trim()!=""){var type_key=
|
216 |
-1;var new_type="";for(var j=0;j<field_parts.length;j++){var part=field_parts[j].replace(/^\s+/gm,"");var flag=part.substr(0,2);var val=part.substr(2);if(flag=="t:"&&j>0&&fielddef_array.indexOf(val)>-1){new_type=val;type_key=j;break}}if(new_type!=""){for(prop in defaults[new_type])fieldprops[prop]=defaults[new_type][prop];field_parts.splice(type_key,1)}fieldprops.label=field_parts[0].trim();field_parts.splice(0,1);for(var j=0;j<field_parts.length;j++){var part=field_parts[j].replace(/^\s+/gm,"");
|
217 |
var flag=part.substr(0,2);var val=part.substr(2);if(flag=="s:")fieldprops.labelposition=val;else if(flag=="r:")fieldprops.required=val=="1";else if(flag=="a:")fieldprops.donotautocomplete=val=="1";else if(flag=="v:")fieldprops.validate=val=="1";else if(flag=="d:")fieldprops["default"]=val;else if(flag=="l:")fieldprops.data=val;else if(flag=="g:")fieldprops.group=val;else if(flag=="f:")fieldprops.format=val;else if(flag=="p:")fieldprops.hintposition=val;else if(flag=="h:")fieldprops.typehook=val==
|
js/wordpress_file_upload_functions.js
CHANGED
@@ -8,8 +8,8 @@ list[j]=list[i-1];list[i-1]=temp;var temp=idlist[j];idlist[j]=idlist[i-1];idlist
|
|
8 |
item[section].func;if(func!=null){val=func.apply(this,Array.prototype.slice.call(arguments,1));arguments[1]=val}}return val};this.do_action=function(section){var idlist=this._calc_prioritized_list(section);if(idlist.length==0)return;for(var i=0;i<idlist.length;i++){var item=this.items[idlist[i]];var func=null;if(typeof item[section]=="function")func=item[section];else if(typeof item[section].func=="function")func=item[section].func;if(func!=null)func.apply(this,Array.prototype.slice.call(arguments,
|
9 |
1))}}}
|
10 |
function wfu_plugin_load_action(sid){var WFU=GlobalData.WFU[sid];wfu_install_unload_hook();if(!!WFU.visualeditorbutton_exist){WFU.visualeditorbutton.init();var invoke_function=function(){wfu_invoke_shortcode_editor(WFU)};WFU.visualeditorbutton.attachInvokeHandler(invoke_function)}if(WFU.is_formupload)WFU.uploadaction=function(){wfu_redirect_to_classic(sid,0,0)};else WFU.uploadaction=function(){wfu_HTML5UploadFile(sid)};var clickaction=function(){wfu_selectbutton_clicked(sid)};var changeaction=function(fileselected){var WFU=
|
11 |
-
GlobalData.WFU[sid];var usefilearray=0;wfu_selectbutton_changed(sid,usefilearray);wfu_update_uploadbutton_status(sid);if(WFU.singlebutton&&fileselected)WFU.uploadaction()};if(!!WFU.uploadform_exist)WFU.uploadform.attachActions(clickaction,changeaction);var completeaction=function(status){document.getElementById("consentresult_"+sid).value=status
|
12 |
-
|
13 |
function wfu_Check_Browser_Capabilities(){if(typeof wfu_BrowserCaps!="undefined")return;wfu_BrowserCaps=new Object;var xmlhttp=wfu_GetHttpRequestObject();wfu_BrowserCaps.supportsAJAX=xmlhttp!=null;wfu_BrowserCaps.supportsUploadProgress=!!(xmlhttp&&"upload"in xmlhttp&&"onprogress"in xmlhttp.upload);var fd=null;try{var fd=new FormData}catch(e$0){}wfu_BrowserCaps.supportsHTML5=fd!=null;var e=document.createElement("iframe");wfu_BrowserCaps.supportsIFRAME=e!=null;wfu_BrowserCaps.supportsDRAGDROP=window.FileReader?
|
14 |
true:false;wfu_BrowserCaps.supportsAnimation=wfu_check_animation();wfu_BrowserCaps.isSafari=Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor")>0}
|
15 |
function wfu_check_animation(){var animation=false,animationstring="animation",keyframeprefix="",domPrefixes="Webkit Moz O ms Khtml".split(" "),pfx="";var elm=document.createElement("DIV");if(elm.style.animationName)animation=true;if(animation===false)for(var i=0;i<domPrefixes.length;i++)if(elm.style[domPrefixes[i]+"AnimationName"]!==undefined){pfx=domPrefixes[i];animationstring=pfx+"Animation";keyframeprefix="-"+pfx.toLowerCase()+"-";animation=true;break}return animation}
|
@@ -43,7 +43,8 @@ obj.error_radio_notselected:""}}else if(props.type=="date"){JS.init=function(){o
|
|
43 |
""?obj.error_empty:""}}else if(props.type=="time"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){def=props["default"].trim();if(def.substr(0,1)=="("&&def.substr(def.length-1,1)==")")def=def.substr(1,def.length-2);else def="";obj.setValue(props,def);props.store()};JS.empty=function(){return obj.getValue(props)===
|
44 |
""?obj.error_empty:""}}else if(props.type=="datetime"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){def=props["default"].trim();if(def.substr(0,1)=="("&&def.substr(def.length-1,1)==")")def=def.substr(1,def.length-2);else def="";obj.setValue(props,def);props.store()};JS.empty=function(){return obj.getValue(props)===
|
45 |
""?obj.error_empty:""}}else if(props.type=="list"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){obj.setValue(props,props["default"]);props.store()};JS.empty=function(){return obj.getValue(props)===""?obj.error_empty:""}}else if(props.type=="dropdown"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,
|
46 |
-
function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){obj.setValue(props,props["default"]);props.store()};JS.empty=function(){return obj.getValue(props)===""?obj.error_empty:""}}JS.init()
|
|
|
47 |
function wfu_update_upload_metrics(sid){var totalsize=0;var totalloaded=0;var totaldelta=0;var metrics=Array();var farr=wfu_get_filelist(sid);for(var i=0;i<farr.length;i++)metrics[i]={size:farr[i].size,aborted:false,loaded:0,delta:0};for(var i=0;i<GlobalData[sid].xhrs.length;i++){var file_id=GlobalData[sid].xhrs[i].file_id;if(file_id>0&&GlobalData[sid].xhrs[i].aborted)metrics[file_id-1].aborted=true}for(var i=0;i<GlobalData[sid].xhrs.length;i++){var file_id=GlobalData[sid].xhrs[i].file_id;if(file_id>
|
48 |
0&&!metrics[file_id-1].aborted){metrics[file_id-1].size=Math.max(GlobalData[sid].xhrs[i].totalsize,metrics[file_id-1].size);metrics[file_id-1].loaded+=GlobalData[sid].xhrs[i].sizeloaded;metrics[file_id-1].delta+=Math.max(GlobalData[sid].xhrs[i].deltaloaded,0)}}for(var i=0;i<farr.length;i++){var Gm=GlobalData[sid].metrics[i];if(!metrics[i].aborted&&metrics[i].size>0){Gm.size=metrics[i].size;if(GlobalData.consts.wfu_uploadprogress_mode=="incremental")Gm.progress_pos=Math.min(Gm.progress_pos+(1-Gm.progress_pos)*
|
49 |
metrics[i].delta/(Gm.size-Gm.loaded),1);else Gm.progress_pos=metrics[i].loaded/metrics[i].size;Gm.loaded=metrics[i].loaded;totalsize+=Gm.size;totalloaded+=Gm.loaded;totaldelta+=metrics[i].delta}else{Gm.size=0;Gm.progress_pos=0;Gm.loaded=0}}var Gm=GlobalData[sid].metricstotal;Gm.size=totalsize;if(GlobalData.consts.wfu_uploadprogress_mode=="incremental")Gm.progress_pos=Math.min(Gm.progress_pos+(1-Gm.progress_pos)*totaldelta/(Gm.size-Gm.loaded),1);else Gm.progress_pos=totalloaded/totalsize;Gm.loaded=
|
@@ -53,32 +54,33 @@ evt.total-this_xhr.size;this_xhr.deltasize+=delta;this_xhr.size+=delta;for(var i
|
|
53 |
function wfu_notify_WPFilebase(params_index,session_token){var xhr=wfu_GetHttpRequestObject();if(xhr==null){var i=document.createElement("iframe");i.style.display="none";i.src=GlobalData.consts.ajax_url+"?action=wfu_ajax_action_notify_wpfilebase¶ms_index="+params_index+"&session_token="+session_token;document.body.appendChild(i);return}var url=GlobalData.consts.ajax_url;params=new Array(3);params[0]=new Array(2);params[0][0]="action";params[0][1]="wfu_ajax_action_notify_wpfilebase";params[1]=
|
54 |
new Array(2);params[1][0]="params_index";params[1][1]=params_index;params[2]=new Array(2);params[2][0]="session_token";params[2][1]=session_token;var parameters="";for(var i=0;i<params.length;i++)parameters+=(i>0?"&":"")+params[i][0]+"="+encodeURI(params[i][1]);xhr.open("POST",url,true);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.onreadystatechange=function(){};xhr.send(parameters)}
|
55 |
function wfu_send_email_notification(sid,unique_id){var WFU=GlobalData.WFU[sid];var xhr=wfu_GetHttpRequestObject();if(xhr==null)return;var url=GlobalData.consts.ajax_url;params=new Array(4);params[0]=new Array(2);params[0][0]="action";params[0][1]="wfu_ajax_action_send_email_notification";params[1]=new Array(2);params[1][0]="params_index";params[1][1]=WFU.params_index;params[2]=new Array(2);params[2][0]="session_token";params[2][1]=WFU.session;params[3]=new Array(2);params[3][0]="uniqueuploadid_"+
|
56 |
-
sid;params[3][1]=unique_id;var parameters="";for(var i=0;i<params.length;i++)parameters+=(i>0?"&":"")+params[i][0]+"="+encodeURI(params[i][1]);wfu_initialize_fileupload_xhr(xhr,sid,unique_id,-1,"");xhr.error_message_header="";xhr.error_adminmessage_unknown="";xhr.open("POST",url,true);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.addEventListener("load",wfu_uploadComplete,false);xhr.addEventListener("error",wfu_uploadFailed,false);xhr.addEventListener("abort",
|
57 |
-
false);xhr.send(parameters)}
|
58 |
function wfu_uploadComplete(evt){var d=new Date;var sid=this.shortcode_id;var WFU=GlobalData.WFU[sid];var i=this.file_id;var last=false;var js_script_enc="";var upload_params="";var safe_params="";var file_status="unknown";var uploaded_file_props="";var debug_data=null;var success_txt="wfu_fileupload_success:";this.loading=false;this.end_time=d.getTime();var txt=evt.target.responseText;var result_data=txt;var error_code="error";if(txt!=-1){if(txt.indexOf("force_errorabort_code")>-1){error_code="errorabort";
|
59 |
-
txt=txt.replace("force_errorabort_code","")}if(txt.indexOf("force_cancel_code")>-1){error_code="errorcancel";txt=txt.replace("force_cancel_code","")}}if(txt!=-1){var pos=txt.indexOf(success_txt);var debug_data_str="";if(pos>-1){if(WFU.debugmode)debug_data_str=txt.substr(0,pos);result_data=txt.substr(pos+success_txt.length);pos=result_data.indexOf(":");js_script_enc=result_data.substr(0,
|
60 |
-
result_data.substr(pos+1)}if(debug_data_str!=""){var title="";if(this.requesttype=="fileupload")title="Debug Data - File: "+this.file_id;else if(this.requesttype=="email")title="Debug Data - Email Notification";debug_data={title:title,data:debug_data_str}}if(safe_params!=""){var safe_parts=safe_params.split(";");if(parseInt(safe_parts[2])==1){var filedata=safe_parts[3].split(",");
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
[WFU.debugmode,debug_data,WFU.is_admin],this.requesttype,
|
|
|
66 |
function wfu_ProcessUploadComplete(sid,file_id,upload_params,unique_id,safe_output,debug_data,request_type,js_script_enc){var WFU=GlobalData.WFU[sid];if(!sid||sid<0)return;if(upload_params==null||upload_params=="")return;if(unique_id=="")return;if(unique_id!="no-ajax"&&!GlobalData[sid])return;var do_redirect=false;if(typeof upload_params==="string"){upload_params=wfu_plugin_decode_string(upload_params.replace(/^\s+|\s+$/g,""));var Params=null;try{Params=JSON.parse(upload_params)}catch(e){}if(Params==
|
67 |
null){var safe_parts=safe_output.split(";");Params=wfu_Initialize_Params();Params.general.shortcode_id=sid;Params.general.unique_id=unique_id;Params.general.state=safe_parts[0];if(Params.general.state==4)Params.general.state++;var default_colors=safe_parts[1].split(",");var filedata="";var error_jsonparse_filemessage=GlobalData.consts.jsonparse_filemessage;var error_jsonparse_message=GlobalData.consts.jsonparse_message;var error_jsonparse_adminmessage=GlobalData.consts.jsonparse_adminmessage;Params.general.files_count=
|
68 |
parseInt(safe_parts[2]);for(var i=0;i<Params.general.files_count;i++){Params[i]={};Params[i]["color"]=default_colors[0];Params[i]["bgcolor"]=default_colors[1];Params[i]["borcolor"]=default_colors[2];filedata=safe_parts[i+3].split(",");Params[i]["message_type"]=wfu_plugin_decode_string(filedata[0]);Params[i]["header"]=wfu_plugin_decode_string(filedata[1]);if(Params[i]["message_type"]=="success"){Params[i]["header"]+=error_jsonparse_filemessage;Params[i]["message_type"]="warning"}Params[i]["message"]=
|
69 |
-
wfu_join_strings("<br />",error_jsonparse_message,wfu_plugin_decode_string(filedata[2]));Params[i]["admin_messages"]=wfu_join_strings("<br />",error_jsonparse_adminmessage,wfu_plugin_decode_string(filedata[3]))}}}else if(typeof upload_params==="object")var Params=upload_params;else return;if(WFU.debugmode)console.log("wfu_ProcessUploadComplete debug: ",debug_data);if(WFU.debugmode)console.log("wfu_ProcessUploadComplete Params: ",Params);i=0;while(Params[i]){if(Params[i].message_type)
|
70 |
-
5)=="error")Params[i].message_type=Params[i].message_type.substr(0,5)
|
71 |
-
else G.message=[];G.update_wpfilebase=Params.general.update_wpfilebase;G.redirect_link=Params.general.redirect_link;G.notify_by_email=0;G.admin_messages={};G.admin_messages.wpfilebase=Params.general.admin_messages.wpfilebase;G.admin_messages.notify=Params.general.admin_messages.notify;G.admin_messages.redirect=Params.general.admin_messages.redirect;if(!("debug"in G.admin_messages))G.admin_messages.debug=[];if(debug_data[1]!==
|
72 |
-
[];if(Params.general.admin_messages.other!="")G.admin_messages.other.push(Params.general.admin_messages.other);G.errors={};G.errors.wpfilebase=Params.general.errors.wpfilebase;G.errors.notify=Params.general.errors.notify;G.errors.redirect=Params.general.errors.redirect;G.current_size=0;G.total_size=0}else{if(G.unique_id==""||G.unique_id!=unique_id||G.unique_id!=Params.general.unique_id)return;if(G.last)return;
|
73 |
-
1;var file_status="";for(var i=0;i<Params.general.files_count;i++){if(Params[i].message_type=="error"&&G.files_processed==0)file_status="error1";else if(Params[i].message_type=="error"&&G.files_processed>0)file_status="error2";else file_status=Params[i].message_type;G.upload_state=GlobalData.filestatematch[file_status][G.upload_state]}G.files_processed+=Params.general.files_count;if(Params.general.message!=
|
74 |
-
if(!request_type||request_type&&request_type!="email")G.redirect_link=Params.general.redirect_link;G.notify_by_email+=parseInt("0"+Params.general.notify_by_email);if(debug_data[1]!==null)G.admin_messages.debug.push(debug_data[1]);if(Params.general.admin_messages.other!="")G.admin_messages.other.push(Params.general.admin_messages.other);if(G.admin_messages.wpfilebase=="")G.admin_messages.wpfilebase=
|
75 |
-
if(G.admin_messages.redirect=="")G.admin_messages.redirect=Params.general.admin_messages.redirect;if(G.errors.wpfilebase=="")G.errors.wpfilebase=Params.general.errors.wpfilebase;if(G.errors.notify=="")G.errors.notify=Params.general.errors.notify;if(G.errors.redirect=="")G.errors.redirect=Params.general.errors.redirect}if(G.files_processed==G.files_count){G.last=true;
|
76 |
-
0){G.admin_messages.notify="";wfu_send_email_notification(sid,unique_id);G.last=false;G.notify_by_email=0}if(G.last){if(unique_id!="no-ajax"&&!G.nofileupload)wfu_notify_server_upload_ended(sid,unique_id);GlobalData.UploadInProgressString=GlobalData.UploadInProgressString.replace(new RegExp("\\["+unique_id+"\\]","g"),"")}if(G.errors.redirect!="")G.redirect_link="";if(G.redirect_link!=
|
77 |
-
G.message;var admin_message=[].concat(G.admin_messages.other,G.admin_messages.wpfilebase!=""?[G.admin_messages.wpfilebase]:[],G.admin_messages.notify!=""?[G.admin_messages.notify]:[],G.admin_messages.redirect!=""?[G.admin_messages.redirect]:[]);if(G.last)if(G.nofileupload){if(unique_id!="no-ajax")if(G.upload_state==0)G.upload_state=14;else if(G.upload_state<4)G.upload_state=15;if(G.upload_state==
|
78 |
-
0&&G.upload_state!=12&&G.upload_state<16)G.upload_state=8;else if(G.upload_state<4)G.upload_state+=4;if(G.upload_state==4&&admin_message.length>0)G.upload_state++;else if(G.upload_state==5&&admin_message.length==0&&nonadmin_message.length==0)G.upload_state--}if(!!WFU.message_exist){var suffix="";if(G.files_count==
|
79 |
-
0,files_processed:!G.nofileupload?G.files_processed:0,state:final_upload_state,single:G.files_count==1&&nonadmin_message.length==0&&admin_message.length==0&&G.last&&!do_redirect&&!G.nofileupload,color:GlobalData.States["State"+final_upload_state+suffix].color,bgcolor:GlobalData.States["State"+final_upload_state+
|
80 |
-
debug_data:G.admin_messages.debug,files:[]};for(var i=0;i<Params.general.files_count;i++)data.files[i]={index:i+file_id,result:Params[i].message_type,message1:Params[i].header,message2:Params[i].message,message3:Params[i].admin_messages};WFU.message.update(data)}if(js_script_enc)eval(wfu_plugin_decode_string(js_script_enc));
|
81 |
-
function wfu_uploadFailed(evt,debugmode){if(debugmode){console.log("failure report following");console.log(evt)}var xhr=evt.target;var new_evt={target:{responseText:"",shortcode_id:xhr.shortcode_id}};wfu_uploadComplete.call(xhr,new_evt)}function wfu_uploadCanceled(evt){}
|
82 |
function wfu_notify_server_upload_ended(sid,unique_id){var WFU=GlobalData.WFU[sid];var xhr=wfu_GetHttpRequestObject();if(xhr==null)return;var url=GlobalData.consts.ajax_url;params=new Array(6);params[0]=new Array(2);params[0][0]="action";params[0][1]="wfu_ajax_action";params[1]=new Array(2);params[1][0]="wfu_uploader_nonce";params[1][1]=document.getElementById("wfu_uploader_nonce_"+sid).value;params[2]=new Array(2);params[2][0]="uniqueuploadid_"+sid;params[2][1]=unique_id;params[3]=new Array(2);params[3][0]=
|
83 |
"params_index";params[3][1]=WFU.params_index;params[4]=new Array(2);params[4][0]="session_token";params[4][1]=WFU.session;params[5]=new Array(2);params[5][0]="upload_finished";params[5][1]=1;var parameters="";for(var i=0;i<params.length;i++)parameters+=(i>0?"&":"")+params[i][0]+"="+encodeURI(params[i][1]);xhr.open("POST",url,true);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.onreadystatechange=function(){if(xhr.readyState==4)if(xhr.status==200)wfu_Code_Objects[sid].do_action("after_upload",
|
84 |
xhr.responseText)};xhr.send(parameters)}
|
@@ -91,12 +93,13 @@ document.getElementById("nofileupload_"+sid).value=nofileupload?"1":"0";var suff
|
|
91 |
sid).value=adminerrorcode;else document.getElementById("adminerrorcodes_"+sid).value="";if(!!WFU.uploadform_exist){WFU.uploadform.submit();WFU.uploadform.lock()}}else if(pos_error>-1){txt_value=responseText.substr(pos_error+error_txt.length);wfu_unlock_upload(sid);wfu_Code_Objects[sid].do_action("askserver_error",txt_value)}};var unique_id=wfu_randomString(10);wfu_lock_upload(sid);wfu_Code_Objects[sid].do_action("pre_start");var pass_params="";var params_obj=wfu_Code_Objects[sid].apply_filters("askserver_pass_params",
|
92 |
{});for(var prop in params_obj)if(params_obj.hasOwnProperty(prop))pass_params+="&"+prop+"="+params_obj[prop];var d=new Date;var url=GlobalData.consts.ajax_url+"?action=wfu_ajax_action_ask_server&wfu_uploader_nonce="+document.getElementById("wfu_uploader_nonce_"+sid).value+"&sid="+sid+"&unique_id="+unique_id+"&start_time="+d.getTime()+"&session_token="+GlobalData.WFU[sid].session+pass_params;var xmlhttp=wfu_GetHttpRequestObject();if(xmlhttp==null){var i=document.createElement("iframe");if(i){i.style.display=
|
93 |
"none";i.src=url;document.body.appendChild(i);i.onload=function(){process_function(i.contentDocument.body.innerHTML)};return}else{wfu_Code_Objects[sid].do_action("not_supported");return}}xmlhttp.open("GET",url,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4)if(xmlhttp.status==200)process_function(xmlhttp.responseText);else{alert(GlobalData.consts.remoteserver_noresult);wfu_Code_Objects[sid].do_action("askserver_noresult")}};xmlhttp.send(null)}
|
94 |
-
Code_Initializators[Code_Initializators.length]=function(sid){var CBUV_Code_Objects={};CBUV_Code_Objects.pre_start_check=function(attr){if(!attr)return attr;var sid=this.sid;var result=true;if(!!GlobalData.WFU[sid].consent_exist)if(GlobalData.WFU[sid].consent_format!="prompt"&&document.getElementById("consentresult_"+sid).value==""){alert(GlobalData.consts.wfu_consent_notcompleted);result=false}else if(GlobalData.WFU[sid].consent_format=="prompt"){document.getElementById("consentresult_"+
|
95 |
-
confirm(GlobalData.WFU[sid].consent_question)?"yes":"no";result=true}return result};CBUV_Code_Objects.pre_start_ask_server=function(attr,has_filters){if(attr)return attr;var sid=this.sid;
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
this.sid;if(!!GlobalData.WFU[sid].consent_exist)
|
|
|
100 |
function wfu_filesselected(sid){var WFU=GlobalData.WFU[sid];var farr=wfu_get_filelist(sid);if(farr.length==0&&!WFU.allownofile&&!!WFU.textbox_exist)WFU.textbox.update("nofile");return farr.length}
|
101 |
function wfu_check_required_userdata(sid,prompt){var WFU=GlobalData.WFU[sid];var userdata_count=wfu_get_userdata_count(sid);var req_empty=false;for(var i=0;i<userdata_count;i++){WFU.userdata.props[i].store();var error_message="";if(WFU.userdata.props[i].required)error_message=WFU.userdata.codes[i].empty();if(error_message===""&&WFU.userdata.codes[i].validate!=null&&WFU.userdata.props[i].validate)error_message=WFU.userdata.codes[i].validate();if(error_message!==""){if(prompt)WFU.userdata.prompt(WFU.userdata.props[i],
|
102 |
error_message);req_empty=true}}return!req_empty}
|
@@ -113,13 +116,13 @@ true;if(!only_check){xhr.size=file.size;xhr.totalsize=farr[ind].size}if(force_cl
|
|
113 |
xhr_close_connection.responseText.indexOf("success")>-1}if(ret_status)if(!only_check){xhr.upload.xhr=xhr;xhr.upload.dummy=1;xhr.upload.addEventListener("loadstart",wfu_loadStart,false);xhr.upload.addEventListener("progress",new Function("evt","wfu_uploadProgress(evt, "+sid+", "+xhr.xhrid+", "+(WFU.debugmode?"true":"false")+");"),false);xhr.addEventListener("load",wfu_uploadComplete,false);xhr.addEventListener("error",new Function("evt","wfu_uploadFailed(evt, "+(WFU.debugmode?"true":"false")+");"),
|
114 |
false);xhr.addEventListener("abort",wfu_uploadCanceled,false);xhr.open("POST",GlobalData.consts.ajax_url,true);xhr.send(fd)}else{xhr.addEventListener("load",function(evt){evt={target:{responseText:evt.target.responseText,shortcode_id:sid,return_status:true}};var file_status=wfu_uploadComplete.call(xhr,evt);xhr.file_id=0;ret_status=file_status=="success"||file_status=="warning";if(ret_status&&!nofileupload)sendfile(ind,file,false,false);else if(ret_status&&nofileupload);},false);xhr.addEventListener("error",
|
115 |
function(evt){return},false);xhr.open("POST",GlobalData.consts.ajax_url,true);xhr.send(fd)}else{var evt={target:{responseText:"",shortcode_id:sid}};wfu_uploadComplete.call(xhr,evt)}inc++;return ret_status}var WFU=GlobalData.WFU[sid];var subdir_sel_index=-1;if(!!WFU.subfolders_exist)subdir_sel_index=WFU.subfolders.index();var farr=wfu_get_filelist(sid);var nofileupload=false;if(farr.length==0&&WFU.allownofile){nofileupload=true;farr=[{name:"dummy.txt",size:0}]}var suffice="";GlobalData.UploadInProgressString+=
|
116 |
-
"["+unique_upload_id+"]";GlobalData[sid]={};GlobalData[sid].unique_id=unique_upload_id;GlobalData[sid].last=false;GlobalData[sid].files_count=1;GlobalData[sid].files_processed=0;GlobalData[sid].upload_state=0;GlobalData[sid].nofileupload=nofileupload;GlobalData[sid].
|
117 |
-
GlobalData[sid].admin_messages.redirect="";GlobalData[sid].admin_messages.debug=[];GlobalData[sid].admin_messages.other=[];GlobalData[sid].errors={};GlobalData[sid].errors.wpfilebase="";GlobalData[sid].errors.notify="";GlobalData[sid].errors.redirect="";GlobalData[sid].xhrs=Array();GlobalData[sid].metricstotal={size:farr[0].size,loaded:0,progress_pos:0};GlobalData[sid].metrics=
|
118 |
-
wfu_attach_cancel_event(sid,unique_upload_id);var Params=wfu_Initialize_Params();Params.general.shortcode_id=sid;Params.general.unique_id=unique_upload_id;wfu_ProcessUploadComplete(sid,0,Params,unique_upload_id,"",[false,null,false]);var inc=0;var ret_status=true;var i=0;var fprops=[];sendfile(i,farr[i],true,false)}
|
119 |
function wfu_initialize_fileupload_xhr(xhr,sid,unique_upload_id,file_ind,filename){var WFU=GlobalData.WFU[sid];var xhrid=file_ind>=0?GlobalData[sid].xhrs.push(xhr)-1:-1;var d=new Date;xhr.xhrid=xhrid;xhr.shortcode_id=sid;xhr.requesttype=file_ind>=0?"fileupload":"email";xhr.file_id=file_ind+1;xhr.size=0;xhr.totalsize=0;xhr.loading=false;xhr.deltasize=0;xhr.deltaloaded=0;xhr.sizeloaded=0;xhr.aborted=false;xhr.unique_id=unique_upload_id;xhr.start_time=d.getTime();xhr.end_time=xhr.start_time;xhr.finish_time=
|
120 |
-
xhr.start_time+parseInt(GlobalData.consts.max_time_limit)*1E3;xhr.
|
121 |
-
xhr.
|
122 |
-
function wfu_get_userdata_count(sid){var WFU=GlobalData.WFU[sid];var fields_count=0;if(!!WFU.userdata_exist)fields_count=WFU.userdata.props.length;return fields_count}
|
123 |
function wfu_lock_upload(sid){var WFU=GlobalData.WFU[sid];if(!!WFU.textbox_exist)WFU.textbox.update("lock");if(!!WFU.uploadform_exist)WFU.uploadform.lock();if(!!WFU.subfolders_exist)WFU.subfolders.toggle(false);if(!!WFU.submit_exist)WFU.submit.toggle(false);var userdata_count=wfu_get_userdata_count(sid);for(var i=0;i<userdata_count;i++)WFU.userdata.codes[i].lock();wfu_Code_Objects[sid].do_action("lock_upload")}
|
124 |
function wfu_unlock_upload(sid){var WFU=GlobalData.WFU[sid];if(!!WFU.textbox_exist)WFU.textbox.update("unlock");if(!!WFU.uploadform_exist)WFU.uploadform.unlock();if(!!WFU.subfolders_exist)WFU.subfolders.toggle(true);if(!!WFU.submit_exist)WFU.submit.toggle(true);var userdata_count=wfu_get_userdata_count(sid);for(var i=0;i<userdata_count;i++)WFU.userdata.codes[i].unlock();wfu_Code_Objects[sid].do_action("unlock_upload")}
|
125 |
function wfu_clear_files(sid){var WFU=GlobalData.WFU[sid];if(!!WFU.uploadform_exist)WFU.uploadform.reset();if(typeof WFU.filearray!="undefined"){WFU.filearray.length=0;WFU.filearrayprops.length=0}if(!!WFU.textbox_exist)WFU.textbox.update("clear")}
|
8 |
item[section].func;if(func!=null){val=func.apply(this,Array.prototype.slice.call(arguments,1));arguments[1]=val}}return val};this.do_action=function(section){var idlist=this._calc_prioritized_list(section);if(idlist.length==0)return;for(var i=0;i<idlist.length;i++){var item=this.items[idlist[i]];var func=null;if(typeof item[section]=="function")func=item[section];else if(typeof item[section].func=="function")func=item[section].func;if(func!=null)func.apply(this,Array.prototype.slice.call(arguments,
|
9 |
1))}}}
|
10 |
function wfu_plugin_load_action(sid){var WFU=GlobalData.WFU[sid];wfu_install_unload_hook();if(!!WFU.visualeditorbutton_exist){WFU.visualeditorbutton.init();var invoke_function=function(){wfu_invoke_shortcode_editor(WFU)};WFU.visualeditorbutton.attachInvokeHandler(invoke_function)}if(WFU.is_formupload)WFU.uploadaction=function(){wfu_redirect_to_classic(sid,0,0)};else WFU.uploadaction=function(){wfu_HTML5UploadFile(sid)};var clickaction=function(){wfu_selectbutton_clicked(sid)};var changeaction=function(fileselected){var WFU=
|
11 |
+
GlobalData.WFU[sid];var usefilearray=0;wfu_selectbutton_changed(sid,usefilearray);wfu_update_uploadbutton_status(sid);if(WFU.singlebutton&&fileselected)WFU.uploadaction()};if(!!WFU.uploadform_exist)WFU.uploadform.attachActions(clickaction,changeaction);var completeaction=function(status){document.getElementById("consentresult_"+sid).value=status};if(!!WFU.consent_exist){WFU.consent.attachActions(completeaction);WFU.consent.update("init")}if(!!WFU.submit_exist){if(WFU.testmode)clickaction=function(){alert(GlobalData.consts.notify_testmode)};
|
12 |
+
else clickaction=function(){WFU.uploadaction()};WFU.submit.attachClickAction(clickaction)}}function wfu_install_unload_hook(){window.onbeforeunload=wfu_unload_hook}function wfu_unload_hook(){if(GlobalData.UploadInProgressString!="")if(GlobalData.UploadInProgressString.trim()!="")return GlobalData.consts.wfu_pageexit_prompt}
|
13 |
function wfu_Check_Browser_Capabilities(){if(typeof wfu_BrowserCaps!="undefined")return;wfu_BrowserCaps=new Object;var xmlhttp=wfu_GetHttpRequestObject();wfu_BrowserCaps.supportsAJAX=xmlhttp!=null;wfu_BrowserCaps.supportsUploadProgress=!!(xmlhttp&&"upload"in xmlhttp&&"onprogress"in xmlhttp.upload);var fd=null;try{var fd=new FormData}catch(e$0){}wfu_BrowserCaps.supportsHTML5=fd!=null;var e=document.createElement("iframe");wfu_BrowserCaps.supportsIFRAME=e!=null;wfu_BrowserCaps.supportsDRAGDROP=window.FileReader?
|
14 |
true:false;wfu_BrowserCaps.supportsAnimation=wfu_check_animation();wfu_BrowserCaps.isSafari=Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor")>0}
|
15 |
function wfu_check_animation(){var animation=false,animationstring="animation",keyframeprefix="",domPrefixes="Webkit Moz O ms Khtml".split(" "),pfx="";var elm=document.createElement("DIV");if(elm.style.animationName)animation=true;if(animation===false)for(var i=0;i<domPrefixes.length;i++)if(elm.style[domPrefixes[i]+"AnimationName"]!==undefined){pfx=domPrefixes[i];animationstring=pfx+"Animation";keyframeprefix="-"+pfx.toLowerCase()+"-";animation=true;break}return animation}
|
43 |
""?obj.error_empty:""}}else if(props.type=="time"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){def=props["default"].trim();if(def.substr(0,1)=="("&&def.substr(def.length-1,1)==")")def=def.substr(1,def.length-2);else def="";obj.setValue(props,def);props.store()};JS.empty=function(){return obj.getValue(props)===
|
44 |
""?obj.error_empty:""}}else if(props.type=="datetime"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){def=props["default"].trim();if(def.substr(0,1)=="("&&def.substr(def.length-1,1)==")")def=def.substr(1,def.length-2);else def="";obj.setValue(props,def);props.store()};JS.empty=function(){return obj.getValue(props)===
|
45 |
""?obj.error_empty:""}}else if(props.type=="list"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){obj.setValue(props,props["default"]);props.store()};JS.empty=function(){return obj.getValue(props)===""?obj.error_empty:""}}else if(props.type=="dropdown"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,
|
46 |
+
function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};JS.unlock=function(){obj.enable(props)};JS.reset=function(){obj.setValue(props,props["default"]);props.store()};JS.empty=function(){return obj.getValue(props)===""?obj.error_empty:""}}else if(props.type=="honeypot"){JS.init=function(){obj.initField(props);obj.attachHandlers(props,function(e){props.store()})};JS.value=function(){return obj.getValue(props)};JS.lock=function(){obj.disable(props)};
|
47 |
+
JS.unlock=function(){obj.enable(props)};JS.reset=function(){obj.setValue(props,props["default"]);props.store()};JS.empty=function(){return obj.getValue(props)===""?obj.error_empty:""}}JS.init()}function wfu_Redirect(link){window.location=link}function wfu_loadStart(evt){}
|
48 |
function wfu_update_upload_metrics(sid){var totalsize=0;var totalloaded=0;var totaldelta=0;var metrics=Array();var farr=wfu_get_filelist(sid);for(var i=0;i<farr.length;i++)metrics[i]={size:farr[i].size,aborted:false,loaded:0,delta:0};for(var i=0;i<GlobalData[sid].xhrs.length;i++){var file_id=GlobalData[sid].xhrs[i].file_id;if(file_id>0&&GlobalData[sid].xhrs[i].aborted)metrics[file_id-1].aborted=true}for(var i=0;i<GlobalData[sid].xhrs.length;i++){var file_id=GlobalData[sid].xhrs[i].file_id;if(file_id>
|
49 |
0&&!metrics[file_id-1].aborted){metrics[file_id-1].size=Math.max(GlobalData[sid].xhrs[i].totalsize,metrics[file_id-1].size);metrics[file_id-1].loaded+=GlobalData[sid].xhrs[i].sizeloaded;metrics[file_id-1].delta+=Math.max(GlobalData[sid].xhrs[i].deltaloaded,0)}}for(var i=0;i<farr.length;i++){var Gm=GlobalData[sid].metrics[i];if(!metrics[i].aborted&&metrics[i].size>0){Gm.size=metrics[i].size;if(GlobalData.consts.wfu_uploadprogress_mode=="incremental")Gm.progress_pos=Math.min(Gm.progress_pos+(1-Gm.progress_pos)*
|
50 |
metrics[i].delta/(Gm.size-Gm.loaded),1);else Gm.progress_pos=metrics[i].loaded/metrics[i].size;Gm.loaded=metrics[i].loaded;totalsize+=Gm.size;totalloaded+=Gm.loaded;totaldelta+=metrics[i].delta}else{Gm.size=0;Gm.progress_pos=0;Gm.loaded=0}}var Gm=GlobalData[sid].metricstotal;Gm.size=totalsize;if(GlobalData.consts.wfu_uploadprogress_mode=="incremental")Gm.progress_pos=Math.min(Gm.progress_pos+(1-Gm.progress_pos)*totaldelta/(Gm.size-Gm.loaded),1);else Gm.progress_pos=totalloaded/totalsize;Gm.loaded=
|
54 |
function wfu_notify_WPFilebase(params_index,session_token){var xhr=wfu_GetHttpRequestObject();if(xhr==null){var i=document.createElement("iframe");i.style.display="none";i.src=GlobalData.consts.ajax_url+"?action=wfu_ajax_action_notify_wpfilebase¶ms_index="+params_index+"&session_token="+session_token;document.body.appendChild(i);return}var url=GlobalData.consts.ajax_url;params=new Array(3);params[0]=new Array(2);params[0][0]="action";params[0][1]="wfu_ajax_action_notify_wpfilebase";params[1]=
|
55 |
new Array(2);params[1][0]="params_index";params[1][1]=params_index;params[2]=new Array(2);params[2][0]="session_token";params[2][1]=session_token;var parameters="";for(var i=0;i<params.length;i++)parameters+=(i>0?"&":"")+params[i][0]+"="+encodeURI(params[i][1]);xhr.open("POST",url,true);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.onreadystatechange=function(){};xhr.send(parameters)}
|
56 |
function wfu_send_email_notification(sid,unique_id){var WFU=GlobalData.WFU[sid];var xhr=wfu_GetHttpRequestObject();if(xhr==null)return;var url=GlobalData.consts.ajax_url;params=new Array(4);params[0]=new Array(2);params[0][0]="action";params[0][1]="wfu_ajax_action_send_email_notification";params[1]=new Array(2);params[1][0]="params_index";params[1][1]=WFU.params_index;params[2]=new Array(2);params[2][0]="session_token";params[2][1]=WFU.session;params[3]=new Array(2);params[3][0]="uniqueuploadid_"+
|
57 |
+
sid;params[3][1]=unique_id;var parameters="";for(var i=0;i<params.length;i++)parameters+=(i>0?"&":"")+params[i][0]+"="+encodeURI(params[i][1]);wfu_initialize_fileupload_xhr(xhr,sid,unique_id,-1,"");xhr.success_message_header="";xhr.error_message_header="";xhr.error_adminmessage_unknown="";xhr.open("POST",url,true);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.addEventListener("load",wfu_uploadComplete,false);xhr.addEventListener("error",wfu_uploadFailed,false);xhr.addEventListener("abort",
|
58 |
+
wfu_uploadCanceled,false);xhr.send(parameters)}
|
59 |
function wfu_uploadComplete(evt){var d=new Date;var sid=this.shortcode_id;var WFU=GlobalData.WFU[sid];var i=this.file_id;var last=false;var js_script_enc="";var upload_params="";var safe_params="";var file_status="unknown";var uploaded_file_props="";var debug_data=null;var success_txt="wfu_fileupload_success:";this.loading=false;this.end_time=d.getTime();var txt=evt.target.responseText;var result_data=txt;var error_code="error";if(txt!=-1){if(txt.indexOf("force_errorabort_code")>-1){error_code="errorabort";
|
60 |
+
txt=txt.replace("force_errorabort_code","")}if(txt.indexOf("force_cancel_code")>-1){error_code="errorcancel";txt=txt.replace("force_cancel_code","")}if(txt.indexOf("force_abortsuccess_code")>-1){error_code="errorabortsuccess";txt=txt.replace("force_abortsuccess_code","")}}if(txt!=-1){var pos=txt.indexOf(success_txt);var debug_data_str="";if(pos>-1){if(WFU.debugmode)debug_data_str=txt.substr(0,pos);result_data=txt.substr(pos+success_txt.length);pos=result_data.indexOf(":");js_script_enc=result_data.substr(0,
|
61 |
+
pos);result_data=result_data.substr(pos+1);pos=result_data.indexOf(":");safe_params=result_data.substr(0,pos);upload_params=result_data.substr(pos+1)}if(debug_data_str!=""){var title="";if(this.requesttype=="fileupload")title="Debug Data - File: "+this.file_id;else if(this.requesttype=="email")title="Debug Data - Email Notification";debug_data={title:title,data:debug_data_str}}if(safe_params!=""){var safe_parts=safe_params.split(";");if(parseInt(safe_parts[2])==1){var filedata=safe_parts[3].split(",");
|
62 |
+
file_status=wfu_plugin_decode_string(filedata[0]);uploaded_file_props=filedata[4]}}}if(upload_params==""||safe_params==""){var Params=wfu_Initialize_Params();Params.general.shortcode_id=sid;Params.general.unique_id=this.unique_id;Params.general.state=7;Params.general.files_count=this.requesttype=="fileupload"?1:0;Params.general.upload_finish_time=this.finish_time;var file_colors=WFU.fail_colors.split(",");var file_header=this.error_message_header;var file_message_type=error_code;if(error_code=="errorabortsuccess"){Params.general.fail_message=
|
63 |
+
"";Params.general.fail_admin_message="";file_colors=WFU.success_colors.split(",");file_header=this.success_message_header;file_message_type="success"}else if(error_code!="errorcancel"){Params.general.fail_message=GlobalData.consts.message_unknown;Params.general.fail_admin_message=wfu_join_strings("<br />",this.error_adminmessage_unknown,this.requesttype+":"+result_data)}else{Params.general.fail_message=GlobalData.consts.file_cancelled;Params.general.fail_admin_message=""}if(Params.general.files_count>
|
64 |
+
0){Params[0]={};Params[0]["color"]=file_colors[0];Params[0]["bgcolor"]=file_colors[1];Params[0]["borcolor"]=file_colors[2];Params[0]["message_type"]=file_message_type;file_status=error_code;Params[0]["header"]=file_header;Params[0]["message"]=GlobalData.consts.message_timelimit;Params[0]["admin_messages"]=WFU.is_admin?GlobalData.consts.message_admin_timelimit:""}else Params.general.admin_messages.other=WFU.is_admin?GlobalData.consts.message_admin_timelimit:"";if(Params.general.upload_finish_time>
|
65 |
+
0)if(d.getTime()<Params.general.upload_finish_time)if(Params.general.files_count>0){Params[0]["message"]=Params.general.fail_message;Params[0]["admin_messages"]=WFU.is_admin?Params.general.fail_admin_message:""}else Params.general.admin_messages.other=WFU.is_admin?Params.general.fail_admin_message:""}if(upload_params==""||safe_params==""){if(WFU.debugmode)console.log("wfu_ProcessUploadComplete: ",sid,this.file_id,"Params obj",this.unique_id,"",[WFU.debugmode,debug_data,WFU.is_admin],this.requesttype,
|
66 |
+
"");last=wfu_ProcessUploadComplete(sid,this.file_id,Params,this.unique_id,"",[WFU.debugmode,debug_data,WFU.is_admin],this.requesttype,"")}else{if(WFU.debugmode)console.log("wfu_ProcessUploadComplete: ",sid,this.file_id,"Params str",this.unique_id,safe_params,[WFU.debugmode,debug_data,WFU.is_admin],this.requesttype,js_script_enc);last=wfu_ProcessUploadComplete(sid,this.file_id,upload_params,this.unique_id,safe_params,[WFU.debugmode,debug_data,WFU.is_admin],this.requesttype,js_script_enc)}if(last){wfu_dettach_cancel_event(sid);
|
67 |
+
wfu_unlock_upload(sid);if(!!WFU.progressbar_exist)WFU.progressbar.hide();wfu_clear(sid)}if(evt.target.return_status)return file_status}
|
68 |
function wfu_ProcessUploadComplete(sid,file_id,upload_params,unique_id,safe_output,debug_data,request_type,js_script_enc){var WFU=GlobalData.WFU[sid];if(!sid||sid<0)return;if(upload_params==null||upload_params=="")return;if(unique_id=="")return;if(unique_id!="no-ajax"&&!GlobalData[sid])return;var do_redirect=false;if(typeof upload_params==="string"){upload_params=wfu_plugin_decode_string(upload_params.replace(/^\s+|\s+$/g,""));var Params=null;try{Params=JSON.parse(upload_params)}catch(e){}if(Params==
|
69 |
null){var safe_parts=safe_output.split(";");Params=wfu_Initialize_Params();Params.general.shortcode_id=sid;Params.general.unique_id=unique_id;Params.general.state=safe_parts[0];if(Params.general.state==4)Params.general.state++;var default_colors=safe_parts[1].split(",");var filedata="";var error_jsonparse_filemessage=GlobalData.consts.jsonparse_filemessage;var error_jsonparse_message=GlobalData.consts.jsonparse_message;var error_jsonparse_adminmessage=GlobalData.consts.jsonparse_adminmessage;Params.general.files_count=
|
70 |
parseInt(safe_parts[2]);for(var i=0;i<Params.general.files_count;i++){Params[i]={};Params[i]["color"]=default_colors[0];Params[i]["bgcolor"]=default_colors[1];Params[i]["borcolor"]=default_colors[2];filedata=safe_parts[i+3].split(",");Params[i]["message_type"]=wfu_plugin_decode_string(filedata[0]);Params[i]["header"]=wfu_plugin_decode_string(filedata[1]);if(Params[i]["message_type"]=="success"){Params[i]["header"]+=error_jsonparse_filemessage;Params[i]["message_type"]="warning"}Params[i]["message"]=
|
71 |
+
wfu_join_strings("<br />",error_jsonparse_message,wfu_plugin_decode_string(filedata[2]));Params[i]["admin_messages"]=wfu_join_strings("<br />",error_jsonparse_adminmessage,wfu_plugin_decode_string(filedata[3]))}}}else if(typeof upload_params==="object")var Params=upload_params;else return;if(WFU.debugmode)console.log("wfu_ProcessUploadComplete debug: ",debug_data);if(WFU.debugmode)console.log("wfu_ProcessUploadComplete Params: ",Params);var message_types=[];i=0;while(Params[i]){if(Params[i].message_type){message_types.push(Params[i].message_type);
|
72 |
+
if(Params[i].message_type.substr(0,5)=="error")Params[i].message_type=Params[i].message_type.substr(0,5)}i++}if(!GlobalData[sid])GlobalData[sid]=Object();var G=GlobalData[sid];if(unique_id=="no-ajax"){G.last=false;G.unique_id="";G.files_count=Params.general.files_count;if(Params.general.state==0)Params.general.files_count=0;G.files_processed=Params.general.files_count;G.upload_state=Params.general.state;G.nofileupload=Params.general.state>12&&Params.general.state<16;if(!("message"in G))G.message=
|
73 |
+
[];if(Params.general.message!="")G.message.push(Params.general.message);else G.message=[];G.update_wpfilebase=Params.general.update_wpfilebase;G.redirect_link=Params.general.redirect_link;G.notify_by_email=0;G.admin_messages={};G.admin_messages.wpfilebase=Params.general.admin_messages.wpfilebase;G.admin_messages.notify=Params.general.admin_messages.notify;G.admin_messages.redirect=Params.general.admin_messages.redirect;if(!("debug"in G.admin_messages))G.admin_messages.debug=[];if(debug_data[1]!==
|
74 |
+
null)G.admin_messages.debug.push(debug_data[1]);if(!("other"in G.admin_messages))G.admin_messages.other=[];if(Params.general.admin_messages.other!="")G.admin_messages.other.push(Params.general.admin_messages.other);G.errors={};G.errors.wpfilebase=Params.general.errors.wpfilebase;G.errors.notify=Params.general.errors.notify;G.errors.redirect=Params.general.errors.redirect;G.current_size=0;G.total_size=0}else{if(G.unique_id==""||G.unique_id!=unique_id||G.unique_id!=Params.general.unique_id)return;if(G.last)return;
|
75 |
+
if(Params.general.files_count==0&&Params[0])if(Params[0].message_type=="error")Params.general.files_count=1;var file_status="";for(var i=0;i<Params.general.files_count;i++){if(Params[i].message_type=="error"&&G.files_processed==0)file_status="error1";else if(Params[i].message_type=="error"&&G.files_processed>0)file_status="error2";else file_status=Params[i].message_type;G.upload_state=GlobalData.filestatematch[file_status][G.upload_state]}G.files_processed+=Params.general.files_count;if(Params.general.message!=
|
76 |
+
"")G.message.push(Params.general.message);if(G.update_wpfilebase=="")G.update_wpfilebase=Params.general.update_wpfilebase;if(!request_type||request_type&&request_type!="email")G.redirect_link=Params.general.redirect_link;G.notify_by_email+=parseInt("0"+Params.general.notify_by_email);if(debug_data[1]!==null)G.admin_messages.debug.push(debug_data[1]);if(Params.general.admin_messages.other!="")G.admin_messages.other.push(Params.general.admin_messages.other);if(G.admin_messages.wpfilebase=="")G.admin_messages.wpfilebase=
|
77 |
+
Params.general.admin_messages.wpfilebase;if(G.admin_messages.notify=="")G.admin_messages.notify=Params.general.admin_messages.notify;if(G.admin_messages.redirect=="")G.admin_messages.redirect=Params.general.admin_messages.redirect;if(G.errors.wpfilebase=="")G.errors.wpfilebase=Params.general.errors.wpfilebase;if(G.errors.notify=="")G.errors.notify=Params.general.errors.notify;if(G.errors.redirect=="")G.errors.redirect=Params.general.errors.redirect}if(G.files_processed==G.files_count){G.last=true;
|
78 |
+
if(G.update_wpfilebase!=""){G.admin_messages.wpfilebase="";wfu_notify_WPFilebase(WFU.params_index,WFU.session)}if(G.notify_by_email>0){G.admin_messages.notify="";wfu_send_email_notification(sid,unique_id);G.last=false;G.notify_by_email=0}if(G.last){if(unique_id!="no-ajax"&&!G.nofileupload)wfu_notify_server_upload_ended(sid,unique_id);GlobalData.UploadInProgressString=GlobalData.UploadInProgressString.replace(new RegExp("\\["+unique_id+"\\]","g"),"")}if(G.errors.redirect!="")G.redirect_link="";if(G.redirect_link!=
|
79 |
+
""&&G.last&&GlobalData.UploadInProgressString.trim()==""){G.upload_state=11;do_redirect=true}}var nonadmin_message=G.message;var admin_message=[].concat(G.admin_messages.other,G.admin_messages.wpfilebase!=""?[G.admin_messages.wpfilebase]:[],G.admin_messages.notify!=""?[G.admin_messages.notify]:[],G.admin_messages.redirect!=""?[G.admin_messages.redirect]:[]);if(G.last)if(G.nofileupload){if(unique_id!="no-ajax")if(G.upload_state==0)G.upload_state=14;else if(G.upload_state<4)G.upload_state=15;if(G.upload_state==
|
80 |
+
15&&Params[0]){nonadmin_message.push(Params[0].message);admin_message.push(Params[0].admin_messages)}}else{if(G.files_count>0&&G.store_nothing&&G.upload_state<3)G.upload_state=19;if(G.files_count==0&&G.upload_state!=12&&G.upload_state<16)G.upload_state=8;else if(G.upload_state<4)G.upload_state+=4;if(G.upload_state==4&&admin_message.length>0)G.upload_state++;else if(G.upload_state==5&&admin_message.length==0&&nonadmin_message.length==0)G.upload_state--}if(!!WFU.message_exist){var suffix="";if(G.files_count==
|
81 |
+
1&&(G.upload_state==5||G.upload_state==7))suffix="_singlefile";var final_upload_state=G.upload_state==0&&G.nofileupload?13:G.upload_state;var data={files_count:!G.nofileupload?G.files_count:0,files_processed:!G.nofileupload?G.files_processed:0,state:final_upload_state,single:G.files_count==1&&nonadmin_message.length==0&&admin_message.length==0&&G.last&&!do_redirect&&!G.nofileupload,color:GlobalData.States["State"+final_upload_state+suffix].color,bgcolor:GlobalData.States["State"+final_upload_state+
|
82 |
+
suffix].bgcolor,borcolor:GlobalData.States["State"+final_upload_state+suffix].borcolor,message1:GlobalData.States["State"+final_upload_state+suffix].message,message2:nonadmin_message,message3:admin_message,debug_data:G.admin_messages.debug,files:[]};for(var i=0;i<Params.general.files_count;i++)data.files[i]={index:i+file_id,result:Params[i].message_type,message1:Params[i].header,message2:Params[i].message,message3:Params[i].admin_messages};WFU.message.update(data)}if(js_script_enc)eval(wfu_plugin_decode_string(js_script_enc));
|
83 |
+
if(do_redirect)wfu_Redirect(G.redirect_link);return G.last}function wfu_uploadFailed(evt,debugmode){if(debugmode){console.log("failure report following");console.log(evt)}var xhr=evt.target;var new_evt={target:{responseText:"",shortcode_id:xhr.shortcode_id}};wfu_uploadComplete.call(xhr,new_evt)}function wfu_uploadCanceled(evt){}
|
84 |
function wfu_notify_server_upload_ended(sid,unique_id){var WFU=GlobalData.WFU[sid];var xhr=wfu_GetHttpRequestObject();if(xhr==null)return;var url=GlobalData.consts.ajax_url;params=new Array(6);params[0]=new Array(2);params[0][0]="action";params[0][1]="wfu_ajax_action";params[1]=new Array(2);params[1][0]="wfu_uploader_nonce";params[1][1]=document.getElementById("wfu_uploader_nonce_"+sid).value;params[2]=new Array(2);params[2][0]="uniqueuploadid_"+sid;params[2][1]=unique_id;params[3]=new Array(2);params[3][0]=
|
85 |
"params_index";params[3][1]=WFU.params_index;params[4]=new Array(2);params[4][0]="session_token";params[4][1]=WFU.session;params[5]=new Array(2);params[5][0]="upload_finished";params[5][1]=1;var parameters="";for(var i=0;i<params.length;i++)parameters+=(i>0?"&":"")+params[i][0]+"="+encodeURI(params[i][1]);xhr.open("POST",url,true);xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");xhr.onreadystatechange=function(){if(xhr.readyState==4)if(xhr.status==200)wfu_Code_Objects[sid].do_action("after_upload",
|
86 |
xhr.responseText)};xhr.send(parameters)}
|
93 |
sid).value=adminerrorcode;else document.getElementById("adminerrorcodes_"+sid).value="";if(!!WFU.uploadform_exist){WFU.uploadform.submit();WFU.uploadform.lock()}}else if(pos_error>-1){txt_value=responseText.substr(pos_error+error_txt.length);wfu_unlock_upload(sid);wfu_Code_Objects[sid].do_action("askserver_error",txt_value)}};var unique_id=wfu_randomString(10);wfu_lock_upload(sid);wfu_Code_Objects[sid].do_action("pre_start");var pass_params="";var params_obj=wfu_Code_Objects[sid].apply_filters("askserver_pass_params",
|
94 |
{});for(var prop in params_obj)if(params_obj.hasOwnProperty(prop))pass_params+="&"+prop+"="+params_obj[prop];var d=new Date;var url=GlobalData.consts.ajax_url+"?action=wfu_ajax_action_ask_server&wfu_uploader_nonce="+document.getElementById("wfu_uploader_nonce_"+sid).value+"&sid="+sid+"&unique_id="+unique_id+"&start_time="+d.getTime()+"&session_token="+GlobalData.WFU[sid].session+pass_params;var xmlhttp=wfu_GetHttpRequestObject();if(xmlhttp==null){var i=document.createElement("iframe");if(i){i.style.display=
|
95 |
"none";i.src=url;document.body.appendChild(i);i.onload=function(){process_function(i.contentDocument.body.innerHTML)};return}else{wfu_Code_Objects[sid].do_action("not_supported");return}}xmlhttp.open("GET",url,true);xmlhttp.onreadystatechange=function(){if(xmlhttp.readyState==4)if(xmlhttp.status==200)process_function(xmlhttp.responseText);else{alert(GlobalData.consts.remoteserver_noresult);wfu_Code_Objects[sid].do_action("askserver_noresult")}};xmlhttp.send(null)}
|
96 |
+
Code_Initializators[Code_Initializators.length]=function(sid){var CBUV_Code_Objects={};CBUV_Code_Objects.pre_start_check=function(attr){if(!attr)return attr;var sid=this.sid;var result=true;if(!!GlobalData.WFU[sid].consent_exist){if(GlobalData.WFU[sid].consent.consent_format!="prompt"&&document.getElementById("consentresult_"+sid).value==""){alert(GlobalData.consts.wfu_consent_notcompleted);result=false}else if(GlobalData.WFU[sid].consent.consent_format=="prompt"){document.getElementById("consentresult_"+
|
97 |
+
sid).value=confirm(GlobalData.WFU[sid].consent.consent_question)?"yes":"no";result=true}if(GlobalData.WFU[sid].consent.no_rejects_upload&&document.getElementById("consentresult_"+sid).value=="no"){alert(GlobalData.WFU[sid].consent_rejection_message);result=false}}return result};CBUV_Code_Objects.pre_start_ask_server=function(attr,has_filters){if(attr)return attr;var sid=this.sid;var consent_ask_server=GlobalData.WFU[sid].consent_maybe_ask_server&&!GlobalData.WFU[sid].consent_exist;return has_filters==
|
98 |
+
"true"||consent_ask_server};CBUV_Code_Objects.askserver_pass_params=function(params){var sid=this.sid;var farr=wfu_get_filelist(sid);var filenames="";var filesizes="";for(var i=0;i<farr.length;i++){if(i>0){filenames+=";";filesizes+=";"}filenames+=wfu_plugin_encode_string(farr[i].name);filesizes+=farr[i].size}params.filenames=filenames;params.filesizes=filesizes;if(GlobalData.WFU[sid].consent_maybe_ask_server&&!GlobalData.WFU[sid].consent_exist){params.consent_check="1";params.consent_rejection_message=
|
99 |
+
GlobalData.WFU[sid].consent_rejection_message}return params};CBUV_Code_Objects.askserver_success=function(response,mode){var sid=this.sid;var upload_status="success";var txt_match=response.match(/CBUVJS\[(.*?)\]/);var txt_header=txt_match?typeof txt_match[1]!="undefined"?txt_match[1]:"":"";if(txt_header!="")eval(wfu_plugin_decode_string(txt_header))};CBUV_Code_Objects.askserver_error=function(response,mode){var sid=this.sid;var upload_status="error";var txt_match=response.match(/CBUVJS\[(.*?)\]/);
|
100 |
+
var txt_header=txt_match?typeof txt_match[1]!="undefined"?txt_match[1]:"":"";if(txt_header!="")eval(wfu_plugin_decode_string(txt_header));txt_match=response.match(/CBUV\[(.*?)\]/);txt_header=txt_match?typeof txt_match[1]!="undefined"?txt_match[1]:"":"";if(txt_header!=""){var Params=wfu_Initialize_Params();GlobalData[sid]={};Params.general.shortcode_id=sid;Params.general.message=txt_header;Params.general.state=12;wfu_ProcessUploadComplete(sid,0,Params,"no-ajax","",[false,null,false]);wfu_clear(sid)}};
|
101 |
+
CBUV_Code_Objects.lock_upload=function(){var sid=this.sid;if(!!GlobalData.WFU[sid].consent_exist)GlobalData.WFU[sid].consent.update("lock")};CBUV_Code_Objects.unlock_upload=function(){var sid=this.sid;if(!!GlobalData.WFU[sid].consent_exist)GlobalData.WFU[sid].consent.update("unlock")};CBUV_Code_Objects.clear_upload=function(){var sid=this.sid;var WFU=GlobalData.WFU[sid];if(!!WFU.consent_exist)if(WFU.consent.remember_consent){WFU.consent.update("clear");WFU.consent_exist=false}else WFU.consent.update("init")};
|
102 |
+
CBUV_Code_Objects.upload_pass_params=function(params,mode){var sid=this.sid;if(!!GlobalData.WFU[sid].consent_exist)params.consent_result=document.getElementById("consentresult_"+sid).value;return params};CBUV_Code_Objects.after_upload=function(response){var sid=this.sid;var txt_match=response.match(/CBUVJS\[(.*?)\]/);var txt_header=txt_match?typeof txt_match[1]!="undefined"?txt_match[1]:"":"";if(txt_header!="")eval(wfu_plugin_decode_string(txt_header))};return CBUV_Code_Objects};
|
103 |
function wfu_filesselected(sid){var WFU=GlobalData.WFU[sid];var farr=wfu_get_filelist(sid);if(farr.length==0&&!WFU.allownofile&&!!WFU.textbox_exist)WFU.textbox.update("nofile");return farr.length}
|
104 |
function wfu_check_required_userdata(sid,prompt){var WFU=GlobalData.WFU[sid];var userdata_count=wfu_get_userdata_count(sid);var req_empty=false;for(var i=0;i<userdata_count;i++){WFU.userdata.props[i].store();var error_message="";if(WFU.userdata.props[i].required)error_message=WFU.userdata.codes[i].empty();if(error_message===""&&WFU.userdata.codes[i].validate!=null&&WFU.userdata.props[i].validate)error_message=WFU.userdata.codes[i].validate();if(error_message!==""){if(prompt)WFU.userdata.prompt(WFU.userdata.props[i],
|
105 |
error_message);req_empty=true}}return!req_empty}
|
116 |
xhr_close_connection.responseText.indexOf("success")>-1}if(ret_status)if(!only_check){xhr.upload.xhr=xhr;xhr.upload.dummy=1;xhr.upload.addEventListener("loadstart",wfu_loadStart,false);xhr.upload.addEventListener("progress",new Function("evt","wfu_uploadProgress(evt, "+sid+", "+xhr.xhrid+", "+(WFU.debugmode?"true":"false")+");"),false);xhr.addEventListener("load",wfu_uploadComplete,false);xhr.addEventListener("error",new Function("evt","wfu_uploadFailed(evt, "+(WFU.debugmode?"true":"false")+");"),
|
117 |
false);xhr.addEventListener("abort",wfu_uploadCanceled,false);xhr.open("POST",GlobalData.consts.ajax_url,true);xhr.send(fd)}else{xhr.addEventListener("load",function(evt){evt={target:{responseText:evt.target.responseText,shortcode_id:sid,return_status:true}};var file_status=wfu_uploadComplete.call(xhr,evt);xhr.file_id=0;ret_status=file_status=="success"||file_status=="warning";if(ret_status&&!nofileupload)sendfile(ind,file,false,false);else if(ret_status&&nofileupload);},false);xhr.addEventListener("error",
|
118 |
function(evt){return},false);xhr.open("POST",GlobalData.consts.ajax_url,true);xhr.send(fd)}else{var evt={target:{responseText:"",shortcode_id:sid}};wfu_uploadComplete.call(xhr,evt)}inc++;return ret_status}var WFU=GlobalData.WFU[sid];var subdir_sel_index=-1;if(!!WFU.subfolders_exist)subdir_sel_index=WFU.subfolders.index();var farr=wfu_get_filelist(sid);var nofileupload=false;if(farr.length==0&&WFU.allownofile){nofileupload=true;farr=[{name:"dummy.txt",size:0}]}var suffice="";GlobalData.UploadInProgressString+=
|
119 |
+
"["+unique_upload_id+"]";GlobalData[sid]={};GlobalData[sid].unique_id=unique_upload_id;GlobalData[sid].last=false;GlobalData[sid].files_count=1;GlobalData[sid].files_processed=0;GlobalData[sid].upload_state=0;GlobalData[sid].nofileupload=nofileupload;GlobalData[sid].store_nothing=!!WFU.consent_exist&&document.getElementById("consentresult_"+sid).value=="no"&&WFU.not_store_files;GlobalData[sid].message=[];GlobalData[sid].update_wpfilebase="";GlobalData[sid].redirect_link="";GlobalData[sid].notify_by_email=
|
120 |
+
0;GlobalData[sid].admin_messages={};GlobalData[sid].admin_messages.wpfilebase="";GlobalData[sid].admin_messages.notify="";GlobalData[sid].admin_messages.redirect="";GlobalData[sid].admin_messages.debug=[];GlobalData[sid].admin_messages.other=[];GlobalData[sid].errors={};GlobalData[sid].errors.wpfilebase="";GlobalData[sid].errors.notify="";GlobalData[sid].errors.redirect="";GlobalData[sid].xhrs=Array();GlobalData[sid].metricstotal={size:farr[0].size,loaded:0,progress_pos:0};GlobalData[sid].metrics=
|
121 |
+
[{size:farr[0].size,loaded:0,progress_pos:0}];if(!!WFU.progressbar_exist&&!nofileupload)WFU.progressbar.show("progressive");wfu_attach_cancel_event(sid,unique_upload_id);var Params=wfu_Initialize_Params();Params.general.shortcode_id=sid;Params.general.unique_id=unique_upload_id;wfu_ProcessUploadComplete(sid,0,Params,unique_upload_id,"",[false,null,false]);var inc=0;var ret_status=true;var i=0;var fprops=[];sendfile(i,farr[i],true,false)}
|
122 |
function wfu_initialize_fileupload_xhr(xhr,sid,unique_upload_id,file_ind,filename){var WFU=GlobalData.WFU[sid];var xhrid=file_ind>=0?GlobalData[sid].xhrs.push(xhr)-1:-1;var d=new Date;xhr.xhrid=xhrid;xhr.shortcode_id=sid;xhr.requesttype=file_ind>=0?"fileupload":"email";xhr.file_id=file_ind+1;xhr.size=0;xhr.totalsize=0;xhr.loading=false;xhr.deltasize=0;xhr.deltaloaded=0;xhr.sizeloaded=0;xhr.aborted=false;xhr.unique_id=unique_upload_id;xhr.start_time=d.getTime();xhr.end_time=xhr.start_time;xhr.finish_time=
|
123 |
+
xhr.start_time+parseInt(GlobalData.consts.max_time_limit)*1E3;xhr.success_message_header=WFU.success_header.replace(/%username%/g,"no data");xhr.success_message_header=xhr.success_message_header.replace(/%useremail%/g,"no data");xhr.success_message_header=xhr.success_message_header.replace(/%filename%/g,filename);xhr.success_message_header=xhr.success_message_header.replace(/%filepath%/g,filename);xhr.error_message_header=WFU.error_header.replace(/%username%/g,"no data");xhr.error_message_header=
|
124 |
+
xhr.error_message_header.replace(/%useremail%/g,"no data");xhr.error_message_header=xhr.error_message_header.replace(/%filename%/g,filename);xhr.error_message_header=xhr.error_message_header.replace(/%filepath%/g,filename);xhr.error_message_failed=GlobalData.consts.message_failed;xhr.error_message_cancelled=GlobalData.consts.message_cancelled;xhr.error_adminmessage_unknown=GlobalData.consts.adminmessage_unknown.replace(/%username%/g,"no data");xhr.error_adminmessage_unknown=xhr.error_adminmessage_unknown.replace(/%useremail%/g,
|
125 |
+
"no data");xhr.error_adminmessage_unknown=xhr.error_adminmessage_unknown.replace(/%filename%/g,filename);xhr.error_adminmessage_unknown=xhr.error_adminmessage_unknown.replace(/%filepath%/g,filename)}function wfu_get_userdata_count(sid){var WFU=GlobalData.WFU[sid];var fields_count=0;if(!!WFU.userdata_exist)fields_count=WFU.userdata.props.length;return fields_count}
|
126 |
function wfu_lock_upload(sid){var WFU=GlobalData.WFU[sid];if(!!WFU.textbox_exist)WFU.textbox.update("lock");if(!!WFU.uploadform_exist)WFU.uploadform.lock();if(!!WFU.subfolders_exist)WFU.subfolders.toggle(false);if(!!WFU.submit_exist)WFU.submit.toggle(false);var userdata_count=wfu_get_userdata_count(sid);for(var i=0;i<userdata_count;i++)WFU.userdata.codes[i].lock();wfu_Code_Objects[sid].do_action("lock_upload")}
|
127 |
function wfu_unlock_upload(sid){var WFU=GlobalData.WFU[sid];if(!!WFU.textbox_exist)WFU.textbox.update("unlock");if(!!WFU.uploadform_exist)WFU.uploadform.unlock();if(!!WFU.subfolders_exist)WFU.subfolders.toggle(true);if(!!WFU.submit_exist)WFU.submit.toggle(true);var userdata_count=wfu_get_userdata_count(sid);for(var i=0;i<userdata_count;i++)WFU.userdata.codes[i].unlock();wfu_Code_Objects[sid].do_action("unlock_upload")}
|
128 |
function wfu_clear_files(sid){var WFU=GlobalData.WFU[sid];if(!!WFU.uploadform_exist)WFU.uploadform.reset();if(typeof WFU.filearray!="undefined"){WFU.filearray.length=0;WFU.filearrayprops.length=0}if(!!WFU.textbox_exist)WFU.textbox.update("clear")}
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: de_DE\n"
|
@@ -104,59 +104,65 @@ msgid ""
|
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "File"
|
109 |
msgstr "Datei"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
112 |
msgid "Date"
|
113 |
msgstr "Datum"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Size"
|
117 |
msgstr "Grösse"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "User"
|
121 |
msgstr "Benutzer"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "Page"
|
125 |
msgstr "Seite"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "User Fields"
|
129 |
msgstr "Benutzerfelder:"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Herunterladen"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download this file"
|
137 |
msgstr "Diese datei herunterladen"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Delete"
|
141 |
msgstr "Löschen"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete this file"
|
145 |
msgstr "Diese datei löschen"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Sort list based on this column"
|
149 |
msgstr "Sortieren sie diese liste auf der grundlage dieser spalte"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "guest"
|
153 |
msgstr "Gast"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "unknown"
|
157 |
msgstr "unbekannt"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid ""
|
161 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
162 |
"attribute."
|
@@ -164,12 +170,12 @@ msgstr ""
|
|
164 |
"Fehler. Der FTP-Ordner des FTP-Ziels konnte nicht aufgelöst werden. "
|
165 |
"Überprüfen Sie die Domäne in \"ftpinfo\"-Attribut."
|
166 |
|
167 |
-
#: lib/wfu_constants.php:
|
168 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
169 |
msgstr ""
|
170 |
"Fehler. Ungültiger ftp-Informationen. Überprüfen Sie das 'ftpinfo'-Attribut."
|
171 |
|
172 |
-
#: lib/wfu_constants.php:
|
173 |
msgid ""
|
174 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
175 |
"syntax."
|
@@ -177,7 +183,7 @@ msgstr ""
|
|
177 |
"Fehler. Ftp-Daten konnte nicht aus dem 'ftpinfo'-Attribut extrahiert werden. "
|
178 |
"Überprüfen Sie die Schreibweise."
|
179 |
|
180 |
-
#: lib/wfu_constants.php:
|
181 |
msgid ""
|
182 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
183 |
"attribute."
|
@@ -185,39 +191,39 @@ msgstr ""
|
|
185 |
"Fehler. Ftp-Zieldateiname konnte nicht aufgelöst werden. Überprüfen Sie die "
|
186 |
"Domäne im 'ftpinfo'-Attribut."
|
187 |
|
188 |
-
#: lib/wfu_constants.php:
|
189 |
msgid ""
|
190 |
"Error. Could not open source file for ftp upload. Check if file is "
|
191 |
"accessible."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: lib/wfu_constants.php:
|
195 |
msgid "Error. Could not send data to ftp target file."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: lib/wfu_constants.php:
|
199 |
msgid ""
|
200 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
201 |
"attribute."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: lib/wfu_constants.php:
|
205 |
msgid ""
|
206 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
207 |
"'ftpinfo' attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: lib/wfu_constants.php:
|
211 |
msgid ""
|
212 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
213 |
"supports sftp."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: lib/wfu_constants.php:
|
217 |
msgid "Error. The web server does not support sftp."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: lib/wfu_constants.php:
|
221 |
msgid ""
|
222 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
223 |
"preventing the upload of big files.\n"
|
@@ -227,7 +233,7 @@ msgstr ""
|
|
227 |
"hat das Hochladen von großen Dateien verhindern.\n"
|
228 |
"Das upload_max_filesize-Limit beträgt derzeit:"
|
229 |
|
230 |
-
#: lib/wfu_constants.php:
|
231 |
msgid ""
|
232 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
233 |
"upload of big files.\n"
|
@@ -237,7 +243,7 @@ msgstr ""
|
|
237 |
"Hochladen von großen Dateien. \n"
|
238 |
"Das max_input_time Limit ist derzeit:"
|
239 |
|
240 |
-
#: lib/wfu_constants.php:
|
241 |
msgid ""
|
242 |
"Error. Permission denied to write to target folder.\n"
|
243 |
"Check and correct read/write permissions of target folder."
|
@@ -245,58 +251,58 @@ msgstr ""
|
|
245 |
"Fehler. Schreibzugriff im Zielordner verweigert. \n"
|
246 |
"Prüfen und korrigieren Sie Schreib-/Lese-Berechtigungen des Zielordners."
|
247 |
|
248 |
-
#: lib/wfu_constants.php:
|
249 |
msgid ""
|
250 |
"Error. This file was rejected because its extension is not correct. Its "
|
251 |
"proper filename is: "
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: lib/wfu_constants.php:
|
255 |
msgid ""
|
256 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
257 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
258 |
"suspicious behaviour."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: lib/wfu_constants.php:
|
262 |
msgid ""
|
263 |
"File not uploaded in order to prevent overflow of the website. Please "
|
264 |
"contact administrator."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: lib/wfu_constants.php:
|
268 |
msgid "Target folder doesn't exist."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: lib/wfu_constants.php:
|
272 |
msgid "Upload failed! Missing a temporary folder."
|
273 |
msgstr ""
|
274 |
"Hochladen fehlgeschlagen! Verzeichnis für temporären Dateienupload fehlt"
|
275 |
|
276 |
-
#: lib/wfu_constants.php:
|
277 |
msgid "Upload failed! Permission denied to write to target folder."
|
278 |
msgstr ""
|
279 |
"Hochladen fehlgeschlagen! Keine Berechtigung, um im Zielordner zu schreiben."
|
280 |
|
281 |
-
#: lib/wfu_constants.php:
|
282 |
msgid "File not allowed."
|
283 |
msgstr "Dateiformat nicht erlaubt"
|
284 |
|
285 |
-
#: lib/wfu_constants.php:
|
286 |
msgid "File is suspicious and was rejected."
|
287 |
msgstr "Die Datei ist verdächtig und wurde abgelehnt."
|
288 |
|
289 |
-
#: lib/wfu_constants.php:
|
290 |
msgid "The uploaded file exceeds the file size limit."
|
291 |
msgstr "Die hochzuladende Datei überschreitet das Dateigrößenlimit."
|
292 |
|
293 |
-
#: lib/wfu_constants.php:
|
294 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
295 |
msgstr ""
|
296 |
"Die hochgeladene Datei überschreitet 2GB und wird von diesem Server nicht "
|
297 |
"unterstützt."
|
298 |
|
299 |
-
#: lib/wfu_constants.php:
|
300 |
msgid ""
|
301 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
302 |
"Please contact the administrator."
|
@@ -304,7 +310,7 @@ msgstr ""
|
|
304 |
"Hochladen fehlgeschlagen! Die hochgeladene Datei überschreitet die maximale "
|
305 |
"Dateigröße des Servers. Bitte wenden Sie sich an den Administrator."
|
306 |
|
307 |
-
#: lib/wfu_constants.php:
|
308 |
msgid ""
|
309 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
310 |
"server. Please contact the administrator."
|
@@ -313,7 +319,7 @@ msgstr ""
|
|
313 |
"Servers. Bitte wenden Sie sich an den Administrator oder senden Sie die "
|
314 |
"Datei von einem Rechner mit schnellerer Internetverbindung."
|
315 |
|
316 |
-
#: lib/wfu_constants.php:
|
317 |
msgid ""
|
318 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
319 |
"was specified in the HTML form."
|
@@ -321,21 +327,21 @@ msgstr ""
|
|
321 |
"Hochladen fehlgeschlagen! Die hochgeladene Datei überschreitet die "
|
322 |
"MAX_FILE_SIZE Richtlinie, die im HTML-Formular angegeben wurde."
|
323 |
|
324 |
-
#: lib/wfu_constants.php:
|
325 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
326 |
msgstr "Hochladen fehlgeschlagen! Die Datei wurde nur teilweise hochgeladen."
|
327 |
|
328 |
-
#: lib/wfu_constants.php:
|
329 |
msgid "Upload failed! No file was uploaded."
|
330 |
msgstr "Hochladen fehlgeschlagen! Es wurde keine Datei hochgeladen."
|
331 |
|
332 |
-
#: lib/wfu_constants.php:
|
333 |
msgid "Upload failed! Failed to write file to disk."
|
334 |
msgstr ""
|
335 |
"Hochladen fehlgeschlagen! Konnte die Datei nicht auf die Festplatte "
|
336 |
"schreiben."
|
337 |
|
338 |
-
#: lib/wfu_constants.php:
|
339 |
msgid ""
|
340 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
341 |
"administrator."
|
@@ -343,11 +349,11 @@ msgstr ""
|
|
343 |
"Hochladen fehlgeschlagen! Es ist ein Fehler aufgetreten, während der "
|
344 |
"Verschiebung der temporären Datei. Bitte kontaktieren Sie Administrator."
|
345 |
|
346 |
-
#: lib/wfu_constants.php:
|
347 |
msgid "Upload cancelled!"
|
348 |
msgstr "Upload-abgesagt!"
|
349 |
|
350 |
-
#: lib/wfu_constants.php:
|
351 |
msgid ""
|
352 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
353 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -358,21 +364,21 @@ msgstr ""
|
|
358 |
"Upload-Stopp verursacht, zur Prüfung der Liste der geladenen Erweiterungen "
|
359 |
"kann phpinfo() helfen."
|
360 |
|
361 |
-
#: lib/wfu_constants.php:
|
362 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
363 |
msgstr ""
|
364 |
"Hochladen fehlgeschlagen! Es sind Fehler beim Versuch, die Datei hochzuladen "
|
365 |
"aufgetreten."
|
366 |
|
367 |
-
#: lib/wfu_constants.php:
|
368 |
msgid "Upload failed!"
|
369 |
msgstr "Hochladen fehlgeschlagen!"
|
370 |
|
371 |
-
#: lib/wfu_constants.php:
|
372 |
msgid "No file!"
|
373 |
msgstr "Keine Datei!"
|
374 |
|
375 |
-
#: lib/wfu_constants.php:
|
376 |
msgid ""
|
377 |
"Upload failed! The upload has been canceled by the user or the browser "
|
378 |
"dropped the connection."
|
@@ -380,27 +386,27 @@ msgstr ""
|
|
380 |
"Hochladen fehlgeschlagen! Der Upload wurde vom Benutzer abgebrochen wurde "
|
381 |
"oder der Browser hat die Verbindung verloren."
|
382 |
|
383 |
-
#: lib/wfu_constants.php:
|
384 |
msgid "Upload failed! Unknown error."
|
385 |
msgstr "Hochladen fehlgeschlagen! Unbekannter Fehler."
|
386 |
|
387 |
-
#: lib/wfu_constants.php:
|
388 |
msgid "Please contact the administrator."
|
389 |
msgstr "Bitte kontaktieren Sie den Administrator."
|
390 |
|
391 |
-
#: lib/wfu_constants.php:
|
392 |
msgid "No result from remote server!"
|
393 |
msgstr "Kein Ergebnis vom Remote-Server!"
|
394 |
|
395 |
-
#: lib/wfu_constants.php:
|
396 |
msgid " but with warnings"
|
397 |
msgstr " aber mit Warnhinweisen"
|
398 |
|
399 |
-
#: lib/wfu_constants.php:
|
400 |
msgid "Warning: JSON parse error."
|
401 |
msgstr "Warnung: JSON-Parser-Fehler."
|
402 |
|
403 |
-
#: lib/wfu_constants.php:
|
404 |
msgid ""
|
405 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
406 |
"not be parsed."
|
@@ -408,21 +414,21 @@ msgstr ""
|
|
408 |
"Upload-Parameter dieser Datei, übergeben als als JSON String an den Handler, "
|
409 |
"konnte nicht analysiert werden."
|
410 |
|
411 |
-
#: lib/wfu_constants.php:
|
412 |
msgid ""
|
413 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
414 |
msgstr ""
|
415 |
"Upload-Status, übergeben als JSON String an den Handler, konnte nicht "
|
416 |
"analysiert werden."
|
417 |
|
418 |
-
#: lib/wfu_constants.php:
|
419 |
msgid ""
|
420 |
"Redirection to classic form functionality occurred due to unknown error."
|
421 |
msgstr ""
|
422 |
"Bei der Umleitung auf die klassische Formular-Funktionalität ist ein "
|
423 |
"unbekannter Fehler aufgetreten."
|
424 |
|
425 |
-
#: lib/wfu_constants.php:
|
426 |
msgid ""
|
427 |
"Redirection to classic form functionality occurred because AJAX is not "
|
428 |
"supported."
|
@@ -430,7 +436,7 @@ msgstr ""
|
|
430 |
"Bei der Umleitung auf die klassische Formular-Funktionalität ist ein Fehler "
|
431 |
"aufgetreten, weil AJAX nicht unterstützt wird."
|
432 |
|
433 |
-
#: lib/wfu_constants.php:
|
434 |
msgid ""
|
435 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
436 |
"supported."
|
@@ -438,59 +444,59 @@ msgstr ""
|
|
438 |
"Bei der Umleitung zu klassischen Formular-Funktionalität ist ein Fehler "
|
439 |
"aufgetreten, da HTML5 nicht unterstützt wird."
|
440 |
|
441 |
-
#: lib/wfu_constants.php:
|
442 |
msgid ""
|
443 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
444 |
msgstr ""
|
445 |
"Bei der Umleitung auf die klassische Formular-Funktionalität ist ein Fehler "
|
446 |
"aufgetreten beim Parsen von JSON."
|
447 |
|
448 |
-
#: lib/wfu_constants.php:
|
449 |
msgid "Please enable popup windows from the browser's settings!"
|
450 |
msgstr ""
|
451 |
"Bitte aktivieren Sie diese Popup-Fenster aus den Browser-Einstellungen!"
|
452 |
|
453 |
-
#: lib/wfu_constants.php:
|
454 |
msgid "cannot be empty!"
|
455 |
msgstr "darf nicht leer sein!"
|
456 |
|
457 |
-
#: lib/wfu_constants.php:
|
458 |
msgid "number not valid!"
|
459 |
msgstr "Nummer nicht gültig!"
|
460 |
|
461 |
-
#: lib/wfu_constants.php:
|
462 |
msgid "email not valid!"
|
463 |
msgstr "email adresse ist ungültig!"
|
464 |
|
465 |
-
#: lib/wfu_constants.php:
|
466 |
msgid "emails do not match!"
|
467 |
msgstr "emails stimmen nicht überein!"
|
468 |
|
469 |
-
#: lib/wfu_constants.php:
|
470 |
msgid "no base email field in group!"
|
471 |
msgstr "keine basis email feld in der gruppe!"
|
472 |
|
473 |
-
#: lib/wfu_constants.php:
|
474 |
msgid "passwords do not match!"
|
475 |
msgstr "passwörter stimmen nicht überein"
|
476 |
|
477 |
-
#: lib/wfu_constants.php:
|
478 |
msgid "no base password field in group!"
|
479 |
msgstr "keine basispasswortfeld in der gruppe!"
|
480 |
|
481 |
-
#: lib/wfu_constants.php:
|
482 |
msgid "checkbox unchecked!"
|
483 |
msgstr "checkBox nicht aktiviert!"
|
484 |
|
485 |
-
#: lib/wfu_constants.php:
|
486 |
msgid "no option selected!"
|
487 |
msgstr "keine optionen selektiert!"
|
488 |
|
489 |
-
#: lib/wfu_constants.php:
|
490 |
msgid "no item selected!"
|
491 |
msgstr "keine dateien ausgewählt!"
|
492 |
|
493 |
-
#: lib/wfu_constants.php:
|
494 |
msgid ""
|
495 |
"There are more than one instances of the plugin in this page with the same "
|
496 |
"id. Please change it."
|
@@ -498,7 +504,7 @@ msgstr ""
|
|
498 |
"Es gibt mehrere Instanzen des Plugins auf dieser Seite mit der gleichen ID. "
|
499 |
"Bitte ändern Sie dies."
|
500 |
|
501 |
-
#: lib/wfu_constants.php:
|
502 |
msgid ""
|
503 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
504 |
"the page."
|
@@ -506,19 +512,19 @@ msgstr ""
|
|
506 |
"Der Shortcode kann nicht bearbeitet werden, da die Seite geändert wurde. "
|
507 |
"Laden Sie die Seite erneut."
|
508 |
|
509 |
-
#: lib/wfu_constants.php:
|
510 |
msgid "Your browser does not support webcam capture!"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: lib/wfu_constants.php:
|
514 |
msgid "Your browser does not support video recording from the webcam!"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: lib/wfu_constants.php:
|
518 |
msgid "No video was recorded!"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: lib/wfu_constants.php:
|
522 |
msgid ""
|
523 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
524 |
"or use RecaptchaV2 (no account)."
|
@@ -526,23 +532,23 @@ msgstr ""
|
|
526 |
"Fehler: Captcha nicht unterstützt! Sie haben eine alte PHP-Version. "
|
527 |
"Aktualisieren Sie Ihr PHP oder RecaptchaV2 verwenden (kein Konto)."
|
528 |
|
529 |
-
#: lib/wfu_constants.php:
|
530 |
msgid ""
|
531 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
532 |
"notify administrator."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: lib/wfu_constants.php:
|
536 |
msgid ""
|
537 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
538 |
"use RecaptchaV1 (no account)."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: lib/wfu_constants.php:
|
542 |
msgid "ERROR: No site key. Please contact administrator!"
|
543 |
msgstr "ERROR: Keine Website-Taste. Bitte kontaktieren Sie Administrator!"
|
544 |
|
545 |
-
#: lib/wfu_constants.php:
|
546 |
msgid ""
|
547 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
548 |
"define Google Recaptcha keys."
|
@@ -550,152 +556,152 @@ msgstr ""
|
|
550 |
"Fehler: nicht vorhanden Website Schlüssel definiert! Bitte gehen Sie auf die "
|
551 |
"Plugin-Einstellungen im Dashboard, um Google Recaptcha Schlüssel definieren."
|
552 |
|
553 |
-
#: lib/wfu_constants.php:
|
554 |
msgid "Bad captcha image!"
|
555 |
msgstr "Schlechten Captcha-Bild!"
|
556 |
|
557 |
-
#: lib/wfu_constants.php:
|
558 |
msgid "No input!"
|
559 |
msgstr "Keine Eingabe!"
|
560 |
|
561 |
-
#: lib/wfu_constants.php:
|
562 |
msgid "Captcha not completed!"
|
563 |
msgstr "Captcha nicht abgeschlossen!"
|
564 |
|
565 |
-
#: lib/wfu_constants.php:
|
566 |
msgid "Wrong captcha!"
|
567 |
msgstr "Falsche Captcha!"
|
568 |
|
569 |
-
#: lib/wfu_constants.php:
|
570 |
msgid "Error refreshing captcha!"
|
571 |
msgstr "Fehler erfrischenden captcha!"
|
572 |
|
573 |
-
#: lib/wfu_constants.php:
|
574 |
msgid "Unknown captcha error!"
|
575 |
msgstr "Captcha unbekannter Fehler"
|
576 |
|
577 |
-
#: lib/wfu_constants.php:
|
578 |
msgid "Captcha not supported by your browser!"
|
579 |
msgstr "Captcha von Ihrem Browser nicht unterstützt!"
|
580 |
|
581 |
-
#: lib/wfu_constants.php:
|
582 |
msgid "the secret parameter is missing"
|
583 |
msgstr "das Geheimnis Parameter fehlt"
|
584 |
|
585 |
-
#: lib/wfu_constants.php:
|
586 |
msgid "the secret parameter is invalid or malformed"
|
587 |
msgstr "das Geheimnis Parameter ist ungültig oder fehlerhaft"
|
588 |
|
589 |
-
#: lib/wfu_constants.php:
|
590 |
msgid "the response parameter is missing"
|
591 |
msgstr "die Antwort Parameter fehlt"
|
592 |
|
593 |
-
#: lib/wfu_constants.php:
|
594 |
msgid "the response parameter is invalid or malformed"
|
595 |
msgstr "die Antwort Parameter ist ungültig oder fehlerhaft"
|
596 |
|
597 |
-
#: lib/wfu_constants.php:
|
598 |
msgid "Please do not use drag drop due to an internal problem."
|
599 |
msgstr "Bitte verwenden Sie keine Drag Drop aufgrund eines internen Problems."
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
#, php-format
|
603 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
604 |
msgstr "Fehler beim chunked Hochladen. Eindeutige ID leer in chunk %d"
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
msgid "Chunked upload is not allowed!"
|
608 |
msgstr "Chunked Hochladen ist nicht erlaubt!"
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
612 |
msgstr ""
|
613 |
"Chunked Hochladen aufgrund eines Fehlers in früheren chunk abgebrochen!"
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid "Chunked upload failed, final file could not be created!"
|
617 |
msgstr ""
|
618 |
"Chunked Hochladen fehlgeschlagen ist, konnte die letzte Datei nicht erstellt "
|
619 |
"werden!"
|
620 |
|
621 |
-
#: lib/wfu_constants.php:
|
622 |
#, php-format
|
623 |
msgid "Could not write file chuck to destination on chunk %d"
|
624 |
msgstr "Konnte Datei chuck bis zum Ziel nicht schreiben am chunk %d"
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
#, php-format
|
628 |
msgid "Could not enlarge destination file on chunk %d"
|
629 |
msgstr "Datei konnte nicht vergrößern am chunk %d"
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
#, php-format
|
633 |
msgid "Could not open file handles on chunk %d"
|
634 |
msgstr "Dateihandles konnte nicht geöffnet werden am chunk %d"
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
msgid "You are not allowed to download this file!"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: lib/wfu_constants.php:
|
641 |
msgid "File does not exist!"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid "Could not download file!"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid "You are not allowed to delete this file!"
|
650 |
msgstr "Sie sind nicht berechtigt, diese Datei zu löschen!"
|
651 |
|
652 |
-
#: lib/wfu_constants.php:
|
653 |
msgid "File was not deleted!"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: lib/wfu_constants.php:
|
657 |
msgid "No file was deleted!"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: lib/wfu_constants.php:
|
661 |
msgid "Some files were not deleted!"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: lib/wfu_constants.php:
|
665 |
msgid "Upload skipped! File already exists."
|
666 |
msgstr "Hochladen abgebrochen! Datei ist bereits vorhanden."
|
667 |
|
668 |
-
#: lib/wfu_constants.php:
|
669 |
msgid "The extension of the file does not match its contents."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid ""
|
674 |
"Upload succeeded but the file is suspicious because its contents do not "
|
675 |
"match its extension. Its proper filename is: "
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: lib/wfu_constants.php:
|
679 |
msgid "No files have been selected!"
|
680 |
msgstr "Keine Dateien ausgewählt!"
|
681 |
|
682 |
-
#: lib/wfu_constants.php:
|
683 |
msgid "Please complete the consent question before continuing the upload!"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: lib/wfu_constants.php:
|
687 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
688 |
msgstr ""
|
689 |
"WPFilebase Plugin konnte nicht aktualisiert werden, da keine Dateien "
|
690 |
"hochgeladen wurden."
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid "Notification email was not sent because there were no files uploaded."
|
694 |
msgstr ""
|
695 |
"Benachrichtigung per E-Mail wurde nicht gesendet, weil keine Dateien "
|
696 |
"hochgeladen worden sind."
|
697 |
|
698 |
-
#: lib/wfu_constants.php:
|
699 |
msgid ""
|
700 |
"Notification email was not sent because no recipients were defined. Please "
|
701 |
"check notifyrecipients attribute in the shortcode."
|
@@ -704,7 +710,7 @@ msgstr ""
|
|
704 |
"definiert wurde. Bitte überprüfen Sie das notifyrecipients-Attribut im "
|
705 |
"Shortcode."
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"Notification email was not sent due to an error. Please check "
|
710 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -712,7 +718,7 @@ msgstr ""
|
|
712 |
"E-Mail-Benachrichtigung wurde wegen eines Fehlers nicht gesendet. Bitte "
|
713 |
"überprüfen Sie das notifysubject und das notifymessage Attribut auf Fehler."
|
714 |
|
715 |
-
#: lib/wfu_constants.php:
|
716 |
msgid ""
|
717 |
"Redirection not executed because redirection link is empty. Please check "
|
718 |
"redirectlink attribute."
|
@@ -720,18 +726,18 @@ msgstr ""
|
|
720 |
"Umleitung nicht ausgeführt, da der Umleitungs-Link leer ist. Bitte "
|
721 |
"überprüfen Sie das redirectlink Attribut."
|
722 |
|
723 |
-
#: lib/wfu_constants.php:
|
724 |
msgid ""
|
725 |
"Redirection not executed because not all files were successfully uploaded."
|
726 |
msgstr ""
|
727 |
"Umleitung nicht ausgeführt, da nicht alle Dateien erfolgreich hochgeladen "
|
728 |
"wurden."
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: lib/wfu_constants.php:
|
735 |
msgid ""
|
736 |
"Hello admin\n"
|
737 |
"\n"
|
@@ -751,19 +757,19 @@ msgid ""
|
|
751 |
"Thanks"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: lib/wfu_constants.php:
|
755 |
msgid ""
|
756 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
757 |
"details please contact info@iptanus.com."
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: lib/wfu_constants.php:
|
761 |
msgid ""
|
762 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
763 |
"plugin functions. Please read this :article: for resolution."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: lib/wfu_constants.php:
|
767 |
msgid ""
|
768 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
769 |
"message persists, contact administrator."
|
@@ -772,7 +778,7 @@ msgstr ""
|
|
772 |
"versuche es erneut. Wenn die Meldung weiterhin, wenden Sie sich "
|
773 |
"Administrator."
|
774 |
|
775 |
-
#: lib/wfu_constants.php:
|
776 |
msgid ""
|
777 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
778 |
"again to edit the shortcode."
|
@@ -780,7 +786,7 @@ msgstr ""
|
|
780 |
"Der Shortcode konnte nicht bearbeitet, da sich der Inhalt der Seite geändert "
|
781 |
"hat. Versuchen Sie erneut den Shortcode zu bearbeiten."
|
782 |
|
783 |
-
#: lib/wfu_constants.php:
|
784 |
msgid ""
|
785 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
786 |
"again to delete it."
|
@@ -788,7 +794,7 @@ msgstr ""
|
|
788 |
"Der Shortcode konnte nicht gelöscht werden, da sich der Inhalt der Seite "
|
789 |
"geändert hat. Versuchen Sie erneut den Shortcode zu löschen."
|
790 |
|
791 |
-
#: lib/wfu_constants.php:
|
792 |
msgid ""
|
793 |
"The page containing the shortcode has been modified and it is no longer "
|
794 |
"valid. Please go back to reload the shortcode."
|
@@ -796,7 +802,7 @@ msgstr ""
|
|
796 |
"Die Seite mit dem Shortcode wurde modifiziert und ist nicht mehr gültig. "
|
797 |
"Bitte gehen Sie zurück um zu den Shortcode zu laden."
|
798 |
|
799 |
-
#: lib/wfu_constants.php:
|
800 |
msgid ""
|
801 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
802 |
"back to reload the shortcode."
|
@@ -804,7 +810,7 @@ msgstr ""
|
|
804 |
"Der Shortcode konnte nicht aktualisiert werden, da sich der Inhalt der Seite "
|
805 |
"geändert geändert hat. Gehen Sie zurück um zu den Shortcode neu zu laden."
|
806 |
|
807 |
-
#: lib/wfu_constants.php:
|
808 |
msgid ""
|
809 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
810 |
"go back and reload the shortcode."
|
@@ -813,39 +819,39 @@ msgstr ""
|
|
813 |
"Wenn das Problem weiterhin besteht, gehen Sie zurück und laden Sie den "
|
814 |
"Shortcode neu."
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid "This is a test message"
|
818 |
msgstr "This is a test message"
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "This is a test administrator message"
|
822 |
msgstr "Dies ist eine Test-Admin-Nachricht"
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "File testfile 1 under test"
|
826 |
msgstr "Datei testfile 1 wird getestet"
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "File testfile 1 message"
|
830 |
msgstr "Datei testfile 1 Nachricht"
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid "File testfile 1 administrator message"
|
834 |
msgstr "Datei testfile 1 Admin-Nachricht"
|
835 |
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
msgid "File testfile 2 under test"
|
838 |
msgstr "File testfile 2 wird getestet"
|
839 |
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
msgid "File testfile 2 message"
|
842 |
msgstr "Datei testfile 2 Nachricht"
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "File testfile 2 administrator message"
|
846 |
msgstr "Datei testfile 2 Admin-Nachricht"
|
847 |
|
848 |
-
#: lib/wfu_constants.php:
|
849 |
msgid ""
|
850 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
851 |
"current user."
|
@@ -853,7 +859,7 @@ msgstr ""
|
|
853 |
"Fügen Sie die Variable %userid% in den Text ein. Sie wird durch die ID des "
|
854 |
"aktuellen Benutzers ersetzt."
|
855 |
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
msgid ""
|
858 |
"Insert variable %username% inside text. It will be replaced by the username "
|
859 |
"of the current user."
|
@@ -861,7 +867,7 @@ msgstr ""
|
|
861 |
"Fügen Sie die Variable %username% in den Text ein. Sie wird durch den "
|
862 |
"Benutzernamen des aktuellen Benutzers ersetzt."
|
863 |
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
msgid ""
|
866 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
867 |
"the current user."
|
@@ -869,7 +875,7 @@ msgstr ""
|
|
869 |
"Fügen Sie die Variable %useremail% in den Text ein. Sie wird durch die E-"
|
870 |
"Mail-Adresse des aktuellen Benutzers ersetzt."
|
871 |
|
872 |
-
#: lib/wfu_constants.php:
|
873 |
msgid ""
|
874 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
875 |
"of the uploaded file."
|
@@ -877,7 +883,7 @@ msgstr ""
|
|
877 |
"Fügen Sie die Variable %filename% in den Text. Sie wird durch den Dateinamen "
|
878 |
"der hochgeladenen Dateien ersetzt."
|
879 |
|
880 |
-
#: lib/wfu_constants.php:
|
881 |
msgid ""
|
882 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
883 |
"filepath of the uploaded file."
|
@@ -885,7 +891,7 @@ msgstr ""
|
|
885 |
"Fügen Sie die Variable %filepath% in den Text ein. Sie wird durch die "
|
886 |
"vollständige Dateipfad der hochgeladenen Dateien ersetzt."
|
887 |
|
888 |
-
#: lib/wfu_constants.php:
|
889 |
msgid ""
|
890 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
891 |
"the website."
|
@@ -893,7 +899,7 @@ msgstr ""
|
|
893 |
"Fügen Sie die Variable %blogid% in den Text ein. Sie wird durch die Blog-ID "
|
894 |
"der Website ersetzt werden."
|
895 |
|
896 |
-
#: lib/wfu_constants.php:
|
897 |
msgid ""
|
898 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
899 |
"current page."
|
@@ -901,7 +907,7 @@ msgstr ""
|
|
901 |
"Fügen Sie die Variable %pageid% in den Text ein. Sie wird durch die ID der "
|
902 |
"aktuellen Seite ersetzt."
|
903 |
|
904 |
-
#: lib/wfu_constants.php:
|
905 |
msgid ""
|
906 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
907 |
"the current page."
|
@@ -909,7 +915,7 @@ msgstr ""
|
|
909 |
"Fügen Sie die Variable %pagetitle% in den Text ein. Sie wird durch dden "
|
910 |
"Title des aktuellen Benutzers ersetzt."
|
911 |
|
912 |
-
#: lib/wfu_constants.php:
|
913 |
msgid ""
|
914 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
915 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -919,219 +925,236 @@ msgstr ""
|
|
919 |
"Feld \"Benutzer\" aus der Dropdown Liste. Die Variable wird durch den Wert "
|
920 |
"ersetzt, die der Benutzer in dieses Feld eingetragen hat."
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
923 |
msgid "Insert variable %n% inside text to denote a line change."
|
924 |
msgstr ""
|
925 |
"Fügen Sie die Variable %n% in den Text ein, um eine Änderung der Zeile zu "
|
926 |
"kennzeichnen."
|
927 |
|
928 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
929 |
msgid "Test Mode"
|
930 |
msgstr "Test Modus"
|
931 |
|
932 |
-
#: lib/wfu_constants.php:
|
933 |
msgid "select dir..."
|
934 |
msgstr "Wählen Sie das Verzeichnis ..."
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid "type dir"
|
938 |
msgstr "Geben Sie das Verzeichnis ein"
|
939 |
|
940 |
-
#: lib/wfu_constants.php:
|
941 |
msgid "Upload path: %filepath%"
|
942 |
msgstr "Upload-Pfad: %filepath%"
|
943 |
|
944 |
-
#: lib/wfu_constants.php:
|
945 |
msgid "Failed upload path: %filepath%"
|
946 |
msgstr "Fehlerhafter Upload-Pfad: %filepath%"
|
947 |
|
948 |
-
#: lib/wfu_constants.php:
|
949 |
msgid " (required)"
|
950 |
msgstr "(erforderlich)"
|
951 |
|
952 |
-
#: lib/wfu_constants.php:
|
953 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
954 |
msgstr ""
|
955 |
"Dateien werden hochgeladen wird. Sind Sie sicher, dass Sie die Seite "
|
956 |
"verlassen wollen?"
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "checking captcha..."
|
960 |
msgstr "Prüfung captcha..."
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "refreshing..."
|
964 |
msgstr "erfrischend..."
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "correct captcha"
|
968 |
msgstr "korrekte captcha"
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "click to continue the upload"
|
972 |
msgstr "Klicken Sie, um das Hochladen fortsetzen"
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "Are you sure you want to delete this file?"
|
976 |
msgstr "Sind sie sicher, das sie diese datei löschen wollen?"
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "Are you sure you want to delete these files?"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: lib/wfu_constants.php:
|
983 |
msgid "Bulk Actions"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: lib/wfu_constants.php:
|
987 |
msgid "Apply"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: lib/wfu_constants.php:
|
991 |
msgid "of "
|
992 |
msgstr "von "
|
993 |
|
994 |
-
#: lib/wfu_constants.php:
|
995 |
msgid "Are you sure that you want to cancel the upload?"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: lib/wfu_constants.php:
|
999 |
msgid "cancel upload of this file"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: lib/wfu_constants.php:
|
1003 |
msgid "Upload in progress"
|
1004 |
msgstr "Upload läuft"
|
1005 |
|
1006 |
-
#: lib/wfu_constants.php:
|
1007 |
msgid "Upload in progress with warnings!"
|
1008 |
msgstr "Upload läuft mit Warnhinweisen!"
|
1009 |
|
1010 |
-
#: lib/wfu_constants.php:
|
1011 |
msgid "Upload in progress but some files already failed!"
|
1012 |
msgstr "Upload läuft, aber einige Dateien bereits gescheitert!"
|
1013 |
|
1014 |
-
#: lib/wfu_constants.php:
|
1015 |
msgid "Upload in progress but no files uploaded so far!"
|
1016 |
msgstr "Upload läuft aber keine Dateien hochgeladen bis jetzt!"
|
1017 |
|
1018 |
-
#: lib/wfu_constants.php:
|
1019 |
msgid "All files uploaded successfully"
|
1020 |
msgstr "Alle Dateien erfolgreich hochgeladen"
|
1021 |
|
1022 |
-
#: lib/wfu_constants.php:
|
1023 |
msgid "All files uploaded successfully but there are warnings!"
|
1024 |
msgstr "Alle Dateien erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
1025 |
|
1026 |
-
#: lib/wfu_constants.php:
|
1027 |
msgid "File uploaded successfully but there are warnings!"
|
1028 |
msgstr "Datei erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
1029 |
|
1030 |
-
#: lib/wfu_constants.php:
|
1031 |
msgid "Some files failed to upload!"
|
1032 |
msgstr "Einige Dateien konnten nicht hochgeladen werden!"
|
1033 |
|
1034 |
-
#: lib/wfu_constants.php:
|
1035 |
msgid "All files failed to upload"
|
1036 |
msgstr "Alle Dateien konnten nicht hochgeladen werden"
|
1037 |
|
1038 |
-
#: lib/wfu_constants.php:
|
1039 |
msgid "File failed to upload"
|
1040 |
msgstr "Datei konnte nicht hochgeladen werden"
|
1041 |
|
1042 |
-
#: lib/wfu_constants.php:
|
1043 |
msgid "There are no files to upload!"
|
1044 |
msgstr "Es gibt keine Dateien zum Hochladen!"
|
1045 |
|
1046 |
-
#: lib/wfu_constants.php:
|
1047 |
msgid "Test upload message"
|
1048 |
msgstr "Test-Upload-Nachricht"
|
1049 |
|
1050 |
-
#: lib/wfu_constants.php:
|
1051 |
msgid "JSON parse warning!"
|
1052 |
msgstr "JSON parse Warnung!"
|
1053 |
|
1054 |
-
#: lib/wfu_constants.php:
|
1055 |
msgid "please wait while redirecting..."
|
1056 |
msgstr "Bitte warten Sie, Sie werden umgeleitet ..."
|
1057 |
|
1058 |
-
#: lib/wfu_constants.php:
|
1059 |
msgid "Submitting data"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: lib/wfu_constants.php:
|
1063 |
msgid "Data submitted successfully!"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: lib/wfu_constants.php:
|
1067 |
msgid "Data were not submitted!"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: lib/wfu_constants.php:
|
1071 |
msgid "Cancelling upload"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1075 |
msgid "Open visual shortcode editor in new window"
|
1076 |
msgstr "Offenen des visuellen Shortcode-Editor in neuem Fenster"
|
1077 |
|
1078 |
-
#: lib/wfu_constants.php:
|
1079 |
msgid "loading visual editor"
|
1080 |
msgstr "visueller Editor laden"
|
1081 |
|
1082 |
-
#: lib/wfu_constants.php:
|
1083 |
msgid "Clear file list?"
|
1084 |
msgstr "Klar Dateiliste?"
|
1085 |
|
1086 |
-
#: lib/wfu_constants.php:
|
1087 |
msgid "DROP HERE"
|
1088 |
msgstr "HIER ABLEGEN"
|
1089 |
|
1090 |
-
#: lib/wfu_constants.php:
|
1091 |
msgid "record video"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: lib/wfu_constants.php:
|
1095 |
msgid "take a picture"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: lib/wfu_constants.php:
|
1099 |
msgid "turn webcam on/off"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: lib/wfu_constants.php:
|
1103 |
msgid "go live again"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: lib/wfu_constants.php:
|
1107 |
msgid "end recording"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: lib/wfu_constants.php:
|
1111 |
msgid "play"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: lib/wfu_constants.php:
|
1115 |
msgid "pause"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: lib/wfu_constants.php:
|
1119 |
msgid "go to the beginning"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: lib/wfu_constants.php:
|
1123 |
msgid "go to the end"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: lib/wfu_constants.php:
|
1127 |
msgid "Wordpress File Upload Form"
|
1128 |
msgstr "Wordpress Datei Upload Formular"
|
1129 |
|
1130 |
-
#: lib/wfu_constants.php:
|
1131 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1132 |
msgstr "Wordpress Datei Upload Plugin Uploader für Seitenleisten"
|
1133 |
|
1134 |
-
#: lib/wfu_constants.php:
|
1135 |
msgid "Upload Files"
|
1136 |
msgstr "Dateien hochladen"
|
1137 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:37+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:37+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: de_DE\n"
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lib/wfu_constants.php:34
|
108 |
+
msgid ""
|
109 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
110 |
+
"continue!"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
msgid "File"
|
115 |
msgstr "Datei"
|
116 |
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
msgid "Date"
|
119 |
msgstr "Datum"
|
120 |
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
msgid "Size"
|
123 |
msgstr "Grösse"
|
124 |
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
msgid "User"
|
127 |
msgstr "Benutzer"
|
128 |
|
129 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
130 |
msgid "Page"
|
131 |
msgstr "Seite"
|
132 |
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
msgid "User Fields"
|
135 |
msgstr "Benutzerfelder:"
|
136 |
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
msgid "Download"
|
139 |
msgstr "Herunterladen"
|
140 |
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
msgid "Download this file"
|
143 |
msgstr "Diese datei herunterladen"
|
144 |
|
145 |
+
#: lib/wfu_constants.php:44
|
146 |
msgid "Delete"
|
147 |
msgstr "Löschen"
|
148 |
|
149 |
+
#: lib/wfu_constants.php:45
|
150 |
msgid "Delete this file"
|
151 |
msgstr "Diese datei löschen"
|
152 |
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
msgid "Sort list based on this column"
|
155 |
msgstr "Sortieren sie diese liste auf der grundlage dieser spalte"
|
156 |
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
msgid "guest"
|
159 |
msgstr "Gast"
|
160 |
|
161 |
+
#: lib/wfu_constants.php:48
|
162 |
msgid "unknown"
|
163 |
msgstr "unbekannt"
|
164 |
|
165 |
+
#: lib/wfu_constants.php:50
|
166 |
msgid ""
|
167 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
168 |
"attribute."
|
170 |
"Fehler. Der FTP-Ordner des FTP-Ziels konnte nicht aufgelöst werden. "
|
171 |
"Überprüfen Sie die Domäne in \"ftpinfo\"-Attribut."
|
172 |
|
173 |
+
#: lib/wfu_constants.php:51
|
174 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
175 |
msgstr ""
|
176 |
"Fehler. Ungültiger ftp-Informationen. Überprüfen Sie das 'ftpinfo'-Attribut."
|
177 |
|
178 |
+
#: lib/wfu_constants.php:52
|
179 |
msgid ""
|
180 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
181 |
"syntax."
|
183 |
"Fehler. Ftp-Daten konnte nicht aus dem 'ftpinfo'-Attribut extrahiert werden. "
|
184 |
"Überprüfen Sie die Schreibweise."
|
185 |
|
186 |
+
#: lib/wfu_constants.php:53
|
187 |
msgid ""
|
188 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
189 |
"attribute."
|
191 |
"Fehler. Ftp-Zieldateiname konnte nicht aufgelöst werden. Überprüfen Sie die "
|
192 |
"Domäne im 'ftpinfo'-Attribut."
|
193 |
|
194 |
+
#: lib/wfu_constants.php:54
|
195 |
msgid ""
|
196 |
"Error. Could not open source file for ftp upload. Check if file is "
|
197 |
"accessible."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: lib/wfu_constants.php:55
|
201 |
msgid "Error. Could not send data to ftp target file."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: lib/wfu_constants.php:56
|
205 |
msgid ""
|
206 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
207 |
"attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: lib/wfu_constants.php:57
|
211 |
msgid ""
|
212 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
213 |
"'ftpinfo' attribute."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: lib/wfu_constants.php:58
|
217 |
msgid ""
|
218 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
219 |
"supports sftp."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: lib/wfu_constants.php:59
|
223 |
msgid "Error. The web server does not support sftp."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: lib/wfu_constants.php:60
|
227 |
msgid ""
|
228 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
229 |
"preventing the upload of big files.\n"
|
233 |
"hat das Hochladen von großen Dateien verhindern.\n"
|
234 |
"Das upload_max_filesize-Limit beträgt derzeit:"
|
235 |
|
236 |
+
#: lib/wfu_constants.php:61
|
237 |
msgid ""
|
238 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
239 |
"upload of big files.\n"
|
243 |
"Hochladen von großen Dateien. \n"
|
244 |
"Das max_input_time Limit ist derzeit:"
|
245 |
|
246 |
+
#: lib/wfu_constants.php:62
|
247 |
msgid ""
|
248 |
"Error. Permission denied to write to target folder.\n"
|
249 |
"Check and correct read/write permissions of target folder."
|
251 |
"Fehler. Schreibzugriff im Zielordner verweigert. \n"
|
252 |
"Prüfen und korrigieren Sie Schreib-/Lese-Berechtigungen des Zielordners."
|
253 |
|
254 |
+
#: lib/wfu_constants.php:63
|
255 |
msgid ""
|
256 |
"Error. This file was rejected because its extension is not correct. Its "
|
257 |
"proper filename is: "
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: lib/wfu_constants.php:64
|
261 |
msgid ""
|
262 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
263 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
264 |
"suspicious behaviour."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: lib/wfu_constants.php:65
|
268 |
msgid ""
|
269 |
"File not uploaded in order to prevent overflow of the website. Please "
|
270 |
"contact administrator."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: lib/wfu_constants.php:66
|
274 |
msgid "Target folder doesn't exist."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: lib/wfu_constants.php:67
|
278 |
msgid "Upload failed! Missing a temporary folder."
|
279 |
msgstr ""
|
280 |
"Hochladen fehlgeschlagen! Verzeichnis für temporären Dateienupload fehlt"
|
281 |
|
282 |
+
#: lib/wfu_constants.php:68
|
283 |
msgid "Upload failed! Permission denied to write to target folder."
|
284 |
msgstr ""
|
285 |
"Hochladen fehlgeschlagen! Keine Berechtigung, um im Zielordner zu schreiben."
|
286 |
|
287 |
+
#: lib/wfu_constants.php:69
|
288 |
msgid "File not allowed."
|
289 |
msgstr "Dateiformat nicht erlaubt"
|
290 |
|
291 |
+
#: lib/wfu_constants.php:70
|
292 |
msgid "File is suspicious and was rejected."
|
293 |
msgstr "Die Datei ist verdächtig und wurde abgelehnt."
|
294 |
|
295 |
+
#: lib/wfu_constants.php:71
|
296 |
msgid "The uploaded file exceeds the file size limit."
|
297 |
msgstr "Die hochzuladende Datei überschreitet das Dateigrößenlimit."
|
298 |
|
299 |
+
#: lib/wfu_constants.php:72
|
300 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
301 |
msgstr ""
|
302 |
"Die hochgeladene Datei überschreitet 2GB und wird von diesem Server nicht "
|
303 |
"unterstützt."
|
304 |
|
305 |
+
#: lib/wfu_constants.php:73
|
306 |
msgid ""
|
307 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
308 |
"Please contact the administrator."
|
310 |
"Hochladen fehlgeschlagen! Die hochgeladene Datei überschreitet die maximale "
|
311 |
"Dateigröße des Servers. Bitte wenden Sie sich an den Administrator."
|
312 |
|
313 |
+
#: lib/wfu_constants.php:74
|
314 |
msgid ""
|
315 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
316 |
"server. Please contact the administrator."
|
319 |
"Servers. Bitte wenden Sie sich an den Administrator oder senden Sie die "
|
320 |
"Datei von einem Rechner mit schnellerer Internetverbindung."
|
321 |
|
322 |
+
#: lib/wfu_constants.php:75
|
323 |
msgid ""
|
324 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
325 |
"was specified in the HTML form."
|
327 |
"Hochladen fehlgeschlagen! Die hochgeladene Datei überschreitet die "
|
328 |
"MAX_FILE_SIZE Richtlinie, die im HTML-Formular angegeben wurde."
|
329 |
|
330 |
+
#: lib/wfu_constants.php:76
|
331 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
332 |
msgstr "Hochladen fehlgeschlagen! Die Datei wurde nur teilweise hochgeladen."
|
333 |
|
334 |
+
#: lib/wfu_constants.php:77
|
335 |
msgid "Upload failed! No file was uploaded."
|
336 |
msgstr "Hochladen fehlgeschlagen! Es wurde keine Datei hochgeladen."
|
337 |
|
338 |
+
#: lib/wfu_constants.php:78
|
339 |
msgid "Upload failed! Failed to write file to disk."
|
340 |
msgstr ""
|
341 |
"Hochladen fehlgeschlagen! Konnte die Datei nicht auf die Festplatte "
|
342 |
"schreiben."
|
343 |
|
344 |
+
#: lib/wfu_constants.php:79
|
345 |
msgid ""
|
346 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
347 |
"administrator."
|
349 |
"Hochladen fehlgeschlagen! Es ist ein Fehler aufgetreten, während der "
|
350 |
"Verschiebung der temporären Datei. Bitte kontaktieren Sie Administrator."
|
351 |
|
352 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
353 |
msgid "Upload cancelled!"
|
354 |
msgstr "Upload-abgesagt!"
|
355 |
|
356 |
+
#: lib/wfu_constants.php:81
|
357 |
msgid ""
|
358 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
359 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
364 |
"Upload-Stopp verursacht, zur Prüfung der Liste der geladenen Erweiterungen "
|
365 |
"kann phpinfo() helfen."
|
366 |
|
367 |
+
#: lib/wfu_constants.php:82
|
368 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
369 |
msgstr ""
|
370 |
"Hochladen fehlgeschlagen! Es sind Fehler beim Versuch, die Datei hochzuladen "
|
371 |
"aufgetreten."
|
372 |
|
373 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
374 |
msgid "Upload failed!"
|
375 |
msgstr "Hochladen fehlgeschlagen!"
|
376 |
|
377 |
+
#: lib/wfu_constants.php:84
|
378 |
msgid "No file!"
|
379 |
msgstr "Keine Datei!"
|
380 |
|
381 |
+
#: lib/wfu_constants.php:85
|
382 |
msgid ""
|
383 |
"Upload failed! The upload has been canceled by the user or the browser "
|
384 |
"dropped the connection."
|
386 |
"Hochladen fehlgeschlagen! Der Upload wurde vom Benutzer abgebrochen wurde "
|
387 |
"oder der Browser hat die Verbindung verloren."
|
388 |
|
389 |
+
#: lib/wfu_constants.php:86
|
390 |
msgid "Upload failed! Unknown error."
|
391 |
msgstr "Hochladen fehlgeschlagen! Unbekannter Fehler."
|
392 |
|
393 |
+
#: lib/wfu_constants.php:87
|
394 |
msgid "Please contact the administrator."
|
395 |
msgstr "Bitte kontaktieren Sie den Administrator."
|
396 |
|
397 |
+
#: lib/wfu_constants.php:88
|
398 |
msgid "No result from remote server!"
|
399 |
msgstr "Kein Ergebnis vom Remote-Server!"
|
400 |
|
401 |
+
#: lib/wfu_constants.php:89
|
402 |
msgid " but with warnings"
|
403 |
msgstr " aber mit Warnhinweisen"
|
404 |
|
405 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
406 |
msgid "Warning: JSON parse error."
|
407 |
msgstr "Warnung: JSON-Parser-Fehler."
|
408 |
|
409 |
+
#: lib/wfu_constants.php:91
|
410 |
msgid ""
|
411 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
412 |
"not be parsed."
|
414 |
"Upload-Parameter dieser Datei, übergeben als als JSON String an den Handler, "
|
415 |
"konnte nicht analysiert werden."
|
416 |
|
417 |
+
#: lib/wfu_constants.php:93
|
418 |
msgid ""
|
419 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
420 |
msgstr ""
|
421 |
"Upload-Status, übergeben als JSON String an den Handler, konnte nicht "
|
422 |
"analysiert werden."
|
423 |
|
424 |
+
#: lib/wfu_constants.php:94
|
425 |
msgid ""
|
426 |
"Redirection to classic form functionality occurred due to unknown error."
|
427 |
msgstr ""
|
428 |
"Bei der Umleitung auf die klassische Formular-Funktionalität ist ein "
|
429 |
"unbekannter Fehler aufgetreten."
|
430 |
|
431 |
+
#: lib/wfu_constants.php:95
|
432 |
msgid ""
|
433 |
"Redirection to classic form functionality occurred because AJAX is not "
|
434 |
"supported."
|
436 |
"Bei der Umleitung auf die klassische Formular-Funktionalität ist ein Fehler "
|
437 |
"aufgetreten, weil AJAX nicht unterstützt wird."
|
438 |
|
439 |
+
#: lib/wfu_constants.php:96
|
440 |
msgid ""
|
441 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
442 |
"supported."
|
444 |
"Bei der Umleitung zu klassischen Formular-Funktionalität ist ein Fehler "
|
445 |
"aufgetreten, da HTML5 nicht unterstützt wird."
|
446 |
|
447 |
+
#: lib/wfu_constants.php:97
|
448 |
msgid ""
|
449 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
450 |
msgstr ""
|
451 |
"Bei der Umleitung auf die klassische Formular-Funktionalität ist ein Fehler "
|
452 |
"aufgetreten beim Parsen von JSON."
|
453 |
|
454 |
+
#: lib/wfu_constants.php:98
|
455 |
msgid "Please enable popup windows from the browser's settings!"
|
456 |
msgstr ""
|
457 |
"Bitte aktivieren Sie diese Popup-Fenster aus den Browser-Einstellungen!"
|
458 |
|
459 |
+
#: lib/wfu_constants.php:99
|
460 |
msgid "cannot be empty!"
|
461 |
msgstr "darf nicht leer sein!"
|
462 |
|
463 |
+
#: lib/wfu_constants.php:100
|
464 |
msgid "number not valid!"
|
465 |
msgstr "Nummer nicht gültig!"
|
466 |
|
467 |
+
#: lib/wfu_constants.php:101
|
468 |
msgid "email not valid!"
|
469 |
msgstr "email adresse ist ungültig!"
|
470 |
|
471 |
+
#: lib/wfu_constants.php:102
|
472 |
msgid "emails do not match!"
|
473 |
msgstr "emails stimmen nicht überein!"
|
474 |
|
475 |
+
#: lib/wfu_constants.php:103
|
476 |
msgid "no base email field in group!"
|
477 |
msgstr "keine basis email feld in der gruppe!"
|
478 |
|
479 |
+
#: lib/wfu_constants.php:104
|
480 |
msgid "passwords do not match!"
|
481 |
msgstr "passwörter stimmen nicht überein"
|
482 |
|
483 |
+
#: lib/wfu_constants.php:105
|
484 |
msgid "no base password field in group!"
|
485 |
msgstr "keine basispasswortfeld in der gruppe!"
|
486 |
|
487 |
+
#: lib/wfu_constants.php:106
|
488 |
msgid "checkbox unchecked!"
|
489 |
msgstr "checkBox nicht aktiviert!"
|
490 |
|
491 |
+
#: lib/wfu_constants.php:107
|
492 |
msgid "no option selected!"
|
493 |
msgstr "keine optionen selektiert!"
|
494 |
|
495 |
+
#: lib/wfu_constants.php:108
|
496 |
msgid "no item selected!"
|
497 |
msgstr "keine dateien ausgewählt!"
|
498 |
|
499 |
+
#: lib/wfu_constants.php:109
|
500 |
msgid ""
|
501 |
"There are more than one instances of the plugin in this page with the same "
|
502 |
"id. Please change it."
|
504 |
"Es gibt mehrere Instanzen des Plugins auf dieser Seite mit der gleichen ID. "
|
505 |
"Bitte ändern Sie dies."
|
506 |
|
507 |
+
#: lib/wfu_constants.php:110
|
508 |
msgid ""
|
509 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
510 |
"the page."
|
512 |
"Der Shortcode kann nicht bearbeitet werden, da die Seite geändert wurde. "
|
513 |
"Laden Sie die Seite erneut."
|
514 |
|
515 |
+
#: lib/wfu_constants.php:111
|
516 |
msgid "Your browser does not support webcam capture!"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: lib/wfu_constants.php:112
|
520 |
msgid "Your browser does not support video recording from the webcam!"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: lib/wfu_constants.php:113
|
524 |
msgid "No video was recorded!"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: lib/wfu_constants.php:114
|
528 |
msgid ""
|
529 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
530 |
"or use RecaptchaV2 (no account)."
|
532 |
"Fehler: Captcha nicht unterstützt! Sie haben eine alte PHP-Version. "
|
533 |
"Aktualisieren Sie Ihr PHP oder RecaptchaV2 verwenden (kein Konto)."
|
534 |
|
535 |
+
#: lib/wfu_constants.php:115
|
536 |
msgid ""
|
537 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
538 |
"notify administrator."
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: lib/wfu_constants.php:116
|
542 |
msgid ""
|
543 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
544 |
"use RecaptchaV1 (no account)."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: lib/wfu_constants.php:117
|
548 |
msgid "ERROR: No site key. Please contact administrator!"
|
549 |
msgstr "ERROR: Keine Website-Taste. Bitte kontaktieren Sie Administrator!"
|
550 |
|
551 |
+
#: lib/wfu_constants.php:118
|
552 |
msgid ""
|
553 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
554 |
"define Google Recaptcha keys."
|
556 |
"Fehler: nicht vorhanden Website Schlüssel definiert! Bitte gehen Sie auf die "
|
557 |
"Plugin-Einstellungen im Dashboard, um Google Recaptcha Schlüssel definieren."
|
558 |
|
559 |
+
#: lib/wfu_constants.php:119
|
560 |
msgid "Bad captcha image!"
|
561 |
msgstr "Schlechten Captcha-Bild!"
|
562 |
|
563 |
+
#: lib/wfu_constants.php:120
|
564 |
msgid "No input!"
|
565 |
msgstr "Keine Eingabe!"
|
566 |
|
567 |
+
#: lib/wfu_constants.php:121
|
568 |
msgid "Captcha not completed!"
|
569 |
msgstr "Captcha nicht abgeschlossen!"
|
570 |
|
571 |
+
#: lib/wfu_constants.php:122
|
572 |
msgid "Wrong captcha!"
|
573 |
msgstr "Falsche Captcha!"
|
574 |
|
575 |
+
#: lib/wfu_constants.php:123
|
576 |
msgid "Error refreshing captcha!"
|
577 |
msgstr "Fehler erfrischenden captcha!"
|
578 |
|
579 |
+
#: lib/wfu_constants.php:124
|
580 |
msgid "Unknown captcha error!"
|
581 |
msgstr "Captcha unbekannter Fehler"
|
582 |
|
583 |
+
#: lib/wfu_constants.php:125
|
584 |
msgid "Captcha not supported by your browser!"
|
585 |
msgstr "Captcha von Ihrem Browser nicht unterstützt!"
|
586 |
|
587 |
+
#: lib/wfu_constants.php:126
|
588 |
msgid "the secret parameter is missing"
|
589 |
msgstr "das Geheimnis Parameter fehlt"
|
590 |
|
591 |
+
#: lib/wfu_constants.php:127
|
592 |
msgid "the secret parameter is invalid or malformed"
|
593 |
msgstr "das Geheimnis Parameter ist ungültig oder fehlerhaft"
|
594 |
|
595 |
+
#: lib/wfu_constants.php:128
|
596 |
msgid "the response parameter is missing"
|
597 |
msgstr "die Antwort Parameter fehlt"
|
598 |
|
599 |
+
#: lib/wfu_constants.php:129
|
600 |
msgid "the response parameter is invalid or malformed"
|
601 |
msgstr "die Antwort Parameter ist ungültig oder fehlerhaft"
|
602 |
|
603 |
+
#: lib/wfu_constants.php:130
|
604 |
msgid "Please do not use drag drop due to an internal problem."
|
605 |
msgstr "Bitte verwenden Sie keine Drag Drop aufgrund eines internen Problems."
|
606 |
|
607 |
+
#: lib/wfu_constants.php:131
|
608 |
#, php-format
|
609 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
610 |
msgstr "Fehler beim chunked Hochladen. Eindeutige ID leer in chunk %d"
|
611 |
|
612 |
+
#: lib/wfu_constants.php:132
|
613 |
msgid "Chunked upload is not allowed!"
|
614 |
msgstr "Chunked Hochladen ist nicht erlaubt!"
|
615 |
|
616 |
+
#: lib/wfu_constants.php:133
|
617 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
618 |
msgstr ""
|
619 |
"Chunked Hochladen aufgrund eines Fehlers in früheren chunk abgebrochen!"
|
620 |
|
621 |
+
#: lib/wfu_constants.php:134
|
622 |
msgid "Chunked upload failed, final file could not be created!"
|
623 |
msgstr ""
|
624 |
"Chunked Hochladen fehlgeschlagen ist, konnte die letzte Datei nicht erstellt "
|
625 |
"werden!"
|
626 |
|
627 |
+
#: lib/wfu_constants.php:135
|
628 |
#, php-format
|
629 |
msgid "Could not write file chuck to destination on chunk %d"
|
630 |
msgstr "Konnte Datei chuck bis zum Ziel nicht schreiben am chunk %d"
|
631 |
|
632 |
+
#: lib/wfu_constants.php:136
|
633 |
#, php-format
|
634 |
msgid "Could not enlarge destination file on chunk %d"
|
635 |
msgstr "Datei konnte nicht vergrößern am chunk %d"
|
636 |
|
637 |
+
#: lib/wfu_constants.php:137
|
638 |
#, php-format
|
639 |
msgid "Could not open file handles on chunk %d"
|
640 |
msgstr "Dateihandles konnte nicht geöffnet werden am chunk %d"
|
641 |
|
642 |
+
#: lib/wfu_constants.php:138
|
643 |
msgid "You are not allowed to download this file!"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: lib/wfu_constants.php:139
|
647 |
msgid "File does not exist!"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: lib/wfu_constants.php:140
|
651 |
msgid "Could not download file!"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: lib/wfu_constants.php:141
|
655 |
msgid "You are not allowed to delete this file!"
|
656 |
msgstr "Sie sind nicht berechtigt, diese Datei zu löschen!"
|
657 |
|
658 |
+
#: lib/wfu_constants.php:142
|
659 |
msgid "File was not deleted!"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: lib/wfu_constants.php:143
|
663 |
msgid "No file was deleted!"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: lib/wfu_constants.php:144
|
667 |
msgid "Some files were not deleted!"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: lib/wfu_constants.php:146
|
671 |
msgid "Upload skipped! File already exists."
|
672 |
msgstr "Hochladen abgebrochen! Datei ist bereits vorhanden."
|
673 |
|
674 |
+
#: lib/wfu_constants.php:147
|
675 |
msgid "The extension of the file does not match its contents."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: lib/wfu_constants.php:148
|
679 |
msgid ""
|
680 |
"Upload succeeded but the file is suspicious because its contents do not "
|
681 |
"match its extension. Its proper filename is: "
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: lib/wfu_constants.php:149
|
685 |
msgid "No files have been selected!"
|
686 |
msgstr "Keine Dateien ausgewählt!"
|
687 |
|
688 |
+
#: lib/wfu_constants.php:150
|
689 |
msgid "Please complete the consent question before continuing the upload!"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: lib/wfu_constants.php:151
|
693 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
694 |
msgstr ""
|
695 |
"WPFilebase Plugin konnte nicht aktualisiert werden, da keine Dateien "
|
696 |
"hochgeladen wurden."
|
697 |
|
698 |
+
#: lib/wfu_constants.php:152
|
699 |
msgid "Notification email was not sent because there were no files uploaded."
|
700 |
msgstr ""
|
701 |
"Benachrichtigung per E-Mail wurde nicht gesendet, weil keine Dateien "
|
702 |
"hochgeladen worden sind."
|
703 |
|
704 |
+
#: lib/wfu_constants.php:153
|
705 |
msgid ""
|
706 |
"Notification email was not sent because no recipients were defined. Please "
|
707 |
"check notifyrecipients attribute in the shortcode."
|
710 |
"definiert wurde. Bitte überprüfen Sie das notifyrecipients-Attribut im "
|
711 |
"Shortcode."
|
712 |
|
713 |
+
#: lib/wfu_constants.php:154
|
714 |
msgid ""
|
715 |
"Notification email was not sent due to an error. Please check "
|
716 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
718 |
"E-Mail-Benachrichtigung wurde wegen eines Fehlers nicht gesendet. Bitte "
|
719 |
"überprüfen Sie das notifysubject und das notifymessage Attribut auf Fehler."
|
720 |
|
721 |
+
#: lib/wfu_constants.php:155
|
722 |
msgid ""
|
723 |
"Redirection not executed because redirection link is empty. Please check "
|
724 |
"redirectlink attribute."
|
726 |
"Umleitung nicht ausgeführt, da der Umleitungs-Link leer ist. Bitte "
|
727 |
"überprüfen Sie das redirectlink Attribut."
|
728 |
|
729 |
+
#: lib/wfu_constants.php:156
|
730 |
msgid ""
|
731 |
"Redirection not executed because not all files were successfully uploaded."
|
732 |
msgstr ""
|
733 |
"Umleitung nicht ausgeführt, da nicht alle Dateien erfolgreich hochgeladen "
|
734 |
"wurden."
|
735 |
|
736 |
+
#: lib/wfu_constants.php:157
|
737 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: lib/wfu_constants.php:158
|
741 |
msgid ""
|
742 |
"Hello admin\n"
|
743 |
"\n"
|
757 |
"Thanks"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: lib/wfu_constants.php:159
|
761 |
msgid ""
|
762 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
763 |
"details please contact info@iptanus.com."
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: lib/wfu_constants.php:160
|
767 |
msgid ""
|
768 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
769 |
"plugin functions. Please read this :article: for resolution."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: lib/wfu_constants.php:162
|
773 |
msgid ""
|
774 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
775 |
"message persists, contact administrator."
|
778 |
"versuche es erneut. Wenn die Meldung weiterhin, wenden Sie sich "
|
779 |
"Administrator."
|
780 |
|
781 |
+
#: lib/wfu_constants.php:163
|
782 |
msgid ""
|
783 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
784 |
"again to edit the shortcode."
|
786 |
"Der Shortcode konnte nicht bearbeitet, da sich der Inhalt der Seite geändert "
|
787 |
"hat. Versuchen Sie erneut den Shortcode zu bearbeiten."
|
788 |
|
789 |
+
#: lib/wfu_constants.php:164
|
790 |
msgid ""
|
791 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
792 |
"again to delete it."
|
794 |
"Der Shortcode konnte nicht gelöscht werden, da sich der Inhalt der Seite "
|
795 |
"geändert hat. Versuchen Sie erneut den Shortcode zu löschen."
|
796 |
|
797 |
+
#: lib/wfu_constants.php:165
|
798 |
msgid ""
|
799 |
"The page containing the shortcode has been modified and it is no longer "
|
800 |
"valid. Please go back to reload the shortcode."
|
802 |
"Die Seite mit dem Shortcode wurde modifiziert und ist nicht mehr gültig. "
|
803 |
"Bitte gehen Sie zurück um zu den Shortcode zu laden."
|
804 |
|
805 |
+
#: lib/wfu_constants.php:166
|
806 |
msgid ""
|
807 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
808 |
"back to reload the shortcode."
|
810 |
"Der Shortcode konnte nicht aktualisiert werden, da sich der Inhalt der Seite "
|
811 |
"geändert geändert hat. Gehen Sie zurück um zu den Shortcode neu zu laden."
|
812 |
|
813 |
+
#: lib/wfu_constants.php:167
|
814 |
msgid ""
|
815 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
816 |
"go back and reload the shortcode."
|
819 |
"Wenn das Problem weiterhin besteht, gehen Sie zurück und laden Sie den "
|
820 |
"Shortcode neu."
|
821 |
|
822 |
+
#: lib/wfu_constants.php:169
|
823 |
msgid "This is a test message"
|
824 |
msgstr "This is a test message"
|
825 |
|
826 |
+
#: lib/wfu_constants.php:170
|
827 |
msgid "This is a test administrator message"
|
828 |
msgstr "Dies ist eine Test-Admin-Nachricht"
|
829 |
|
830 |
+
#: lib/wfu_constants.php:171
|
831 |
msgid "File testfile 1 under test"
|
832 |
msgstr "Datei testfile 1 wird getestet"
|
833 |
|
834 |
+
#: lib/wfu_constants.php:172
|
835 |
msgid "File testfile 1 message"
|
836 |
msgstr "Datei testfile 1 Nachricht"
|
837 |
|
838 |
+
#: lib/wfu_constants.php:173
|
839 |
msgid "File testfile 1 administrator message"
|
840 |
msgstr "Datei testfile 1 Admin-Nachricht"
|
841 |
|
842 |
+
#: lib/wfu_constants.php:174
|
843 |
msgid "File testfile 2 under test"
|
844 |
msgstr "File testfile 2 wird getestet"
|
845 |
|
846 |
+
#: lib/wfu_constants.php:175
|
847 |
msgid "File testfile 2 message"
|
848 |
msgstr "Datei testfile 2 Nachricht"
|
849 |
|
850 |
+
#: lib/wfu_constants.php:176
|
851 |
msgid "File testfile 2 administrator message"
|
852 |
msgstr "Datei testfile 2 Admin-Nachricht"
|
853 |
|
854 |
+
#: lib/wfu_constants.php:178
|
855 |
msgid ""
|
856 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
857 |
"current user."
|
859 |
"Fügen Sie die Variable %userid% in den Text ein. Sie wird durch die ID des "
|
860 |
"aktuellen Benutzers ersetzt."
|
861 |
|
862 |
+
#: lib/wfu_constants.php:179
|
863 |
msgid ""
|
864 |
"Insert variable %username% inside text. It will be replaced by the username "
|
865 |
"of the current user."
|
867 |
"Fügen Sie die Variable %username% in den Text ein. Sie wird durch den "
|
868 |
"Benutzernamen des aktuellen Benutzers ersetzt."
|
869 |
|
870 |
+
#: lib/wfu_constants.php:180
|
871 |
msgid ""
|
872 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
873 |
"the current user."
|
875 |
"Fügen Sie die Variable %useremail% in den Text ein. Sie wird durch die E-"
|
876 |
"Mail-Adresse des aktuellen Benutzers ersetzt."
|
877 |
|
878 |
+
#: lib/wfu_constants.php:181
|
879 |
msgid ""
|
880 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
881 |
"of the uploaded file."
|
883 |
"Fügen Sie die Variable %filename% in den Text. Sie wird durch den Dateinamen "
|
884 |
"der hochgeladenen Dateien ersetzt."
|
885 |
|
886 |
+
#: lib/wfu_constants.php:182
|
887 |
msgid ""
|
888 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
889 |
"filepath of the uploaded file."
|
891 |
"Fügen Sie die Variable %filepath% in den Text ein. Sie wird durch die "
|
892 |
"vollständige Dateipfad der hochgeladenen Dateien ersetzt."
|
893 |
|
894 |
+
#: lib/wfu_constants.php:183
|
895 |
msgid ""
|
896 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
897 |
"the website."
|
899 |
"Fügen Sie die Variable %blogid% in den Text ein. Sie wird durch die Blog-ID "
|
900 |
"der Website ersetzt werden."
|
901 |
|
902 |
+
#: lib/wfu_constants.php:184
|
903 |
msgid ""
|
904 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
905 |
"current page."
|
907 |
"Fügen Sie die Variable %pageid% in den Text ein. Sie wird durch die ID der "
|
908 |
"aktuellen Seite ersetzt."
|
909 |
|
910 |
+
#: lib/wfu_constants.php:185
|
911 |
msgid ""
|
912 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
913 |
"the current page."
|
915 |
"Fügen Sie die Variable %pagetitle% in den Text ein. Sie wird durch dden "
|
916 |
"Title des aktuellen Benutzers ersetzt."
|
917 |
|
918 |
+
#: lib/wfu_constants.php:186
|
919 |
msgid ""
|
920 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
921 |
"drop-down list. It will be replaced by the value that the user entered in "
|
925 |
"Feld \"Benutzer\" aus der Dropdown Liste. Die Variable wird durch den Wert "
|
926 |
"ersetzt, die der Benutzer in dieses Feld eingetragen hat."
|
927 |
|
928 |
+
#: lib/wfu_constants.php:187
|
929 |
msgid "Insert variable %n% inside text to denote a line change."
|
930 |
msgstr ""
|
931 |
"Fügen Sie die Variable %n% in den Text ein, um eine Änderung der Zeile zu "
|
932 |
"kennzeichnen."
|
933 |
|
934 |
+
#: lib/wfu_constants.php:189
|
935 |
+
#, php-format
|
936 |
+
msgid "File %filename% uploaded successfully but not saved"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: lib/wfu_constants.php:190
|
940 |
msgid "Test Mode"
|
941 |
msgstr "Test Modus"
|
942 |
|
943 |
+
#: lib/wfu_constants.php:191
|
944 |
msgid "select dir..."
|
945 |
msgstr "Wählen Sie das Verzeichnis ..."
|
946 |
|
947 |
+
#: lib/wfu_constants.php:192
|
948 |
msgid "type dir"
|
949 |
msgstr "Geben Sie das Verzeichnis ein"
|
950 |
|
951 |
+
#: lib/wfu_constants.php:193
|
952 |
msgid "Upload path: %filepath%"
|
953 |
msgstr "Upload-Pfad: %filepath%"
|
954 |
|
955 |
+
#: lib/wfu_constants.php:194
|
956 |
msgid "Failed upload path: %filepath%"
|
957 |
msgstr "Fehlerhafter Upload-Pfad: %filepath%"
|
958 |
|
959 |
+
#: lib/wfu_constants.php:195
|
960 |
msgid " (required)"
|
961 |
msgstr "(erforderlich)"
|
962 |
|
963 |
+
#: lib/wfu_constants.php:196
|
964 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
965 |
msgstr ""
|
966 |
"Dateien werden hochgeladen wird. Sind Sie sicher, dass Sie die Seite "
|
967 |
"verlassen wollen?"
|
968 |
|
969 |
+
#: lib/wfu_constants.php:197
|
970 |
msgid "checking captcha..."
|
971 |
msgstr "Prüfung captcha..."
|
972 |
|
973 |
+
#: lib/wfu_constants.php:198
|
974 |
msgid "refreshing..."
|
975 |
msgstr "erfrischend..."
|
976 |
|
977 |
+
#: lib/wfu_constants.php:199
|
978 |
msgid "correct captcha"
|
979 |
msgstr "korrekte captcha"
|
980 |
|
981 |
+
#: lib/wfu_constants.php:200
|
982 |
msgid "click to continue the upload"
|
983 |
msgstr "Klicken Sie, um das Hochladen fortsetzen"
|
984 |
|
985 |
+
#: lib/wfu_constants.php:201
|
986 |
msgid "Are you sure you want to delete this file?"
|
987 |
msgstr "Sind sie sicher, das sie diese datei löschen wollen?"
|
988 |
|
989 |
+
#: lib/wfu_constants.php:202
|
990 |
msgid "Are you sure you want to delete these files?"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: lib/wfu_constants.php:203
|
994 |
msgid "Bulk Actions"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: lib/wfu_constants.php:204
|
998 |
msgid "Apply"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: lib/wfu_constants.php:206
|
1002 |
msgid "of "
|
1003 |
msgstr "von "
|
1004 |
|
1005 |
+
#: lib/wfu_constants.php:207
|
1006 |
msgid "Are you sure that you want to cancel the upload?"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: lib/wfu_constants.php:208
|
1010 |
msgid "cancel upload of this file"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: lib/wfu_constants.php:209
|
1014 |
msgid "Upload in progress"
|
1015 |
msgstr "Upload läuft"
|
1016 |
|
1017 |
+
#: lib/wfu_constants.php:210
|
1018 |
msgid "Upload in progress with warnings!"
|
1019 |
msgstr "Upload läuft mit Warnhinweisen!"
|
1020 |
|
1021 |
+
#: lib/wfu_constants.php:211
|
1022 |
msgid "Upload in progress but some files already failed!"
|
1023 |
msgstr "Upload läuft, aber einige Dateien bereits gescheitert!"
|
1024 |
|
1025 |
+
#: lib/wfu_constants.php:212
|
1026 |
msgid "Upload in progress but no files uploaded so far!"
|
1027 |
msgstr "Upload läuft aber keine Dateien hochgeladen bis jetzt!"
|
1028 |
|
1029 |
+
#: lib/wfu_constants.php:213
|
1030 |
msgid "All files uploaded successfully"
|
1031 |
msgstr "Alle Dateien erfolgreich hochgeladen"
|
1032 |
|
1033 |
+
#: lib/wfu_constants.php:214
|
1034 |
msgid "All files uploaded successfully but there are warnings!"
|
1035 |
msgstr "Alle Dateien erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
1036 |
|
1037 |
+
#: lib/wfu_constants.php:215
|
1038 |
msgid "File uploaded successfully but there are warnings!"
|
1039 |
msgstr "Datei erfolgreich hochgeladen, aber es gibt Warnhinweise!"
|
1040 |
|
1041 |
+
#: lib/wfu_constants.php:216
|
1042 |
msgid "Some files failed to upload!"
|
1043 |
msgstr "Einige Dateien konnten nicht hochgeladen werden!"
|
1044 |
|
1045 |
+
#: lib/wfu_constants.php:217
|
1046 |
msgid "All files failed to upload"
|
1047 |
msgstr "Alle Dateien konnten nicht hochgeladen werden"
|
1048 |
|
1049 |
+
#: lib/wfu_constants.php:218
|
1050 |
msgid "File failed to upload"
|
1051 |
msgstr "Datei konnte nicht hochgeladen werden"
|
1052 |
|
1053 |
+
#: lib/wfu_constants.php:219
|
1054 |
msgid "There are no files to upload!"
|
1055 |
msgstr "Es gibt keine Dateien zum Hochladen!"
|
1056 |
|
1057 |
+
#: lib/wfu_constants.php:220
|
1058 |
msgid "Test upload message"
|
1059 |
msgstr "Test-Upload-Nachricht"
|
1060 |
|
1061 |
+
#: lib/wfu_constants.php:221
|
1062 |
msgid "JSON parse warning!"
|
1063 |
msgstr "JSON parse Warnung!"
|
1064 |
|
1065 |
+
#: lib/wfu_constants.php:222
|
1066 |
msgid "please wait while redirecting..."
|
1067 |
msgstr "Bitte warten Sie, Sie werden umgeleitet ..."
|
1068 |
|
1069 |
+
#: lib/wfu_constants.php:224
|
1070 |
msgid "Submitting data"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: lib/wfu_constants.php:225
|
1074 |
msgid "Data submitted successfully!"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: lib/wfu_constants.php:226
|
1078 |
msgid "Data were not submitted!"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: lib/wfu_constants.php:227
|
1082 |
msgid "Cancelling upload"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: lib/wfu_constants.php:229
|
1086 |
+
msgid "Upload succeeded!"
|
1087 |
+
msgstr ""
|
1088 |
+
|
1089 |
+
#: lib/wfu_constants.php:230
|
1090 |
+
msgid "Upload completed but no files were saved!"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: lib/wfu_constants.php:231
|
1094 |
+
msgid "File was not saved due to personal data policy!"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: lib/wfu_constants.php:232
|
1098 |
msgid "Open visual shortcode editor in new window"
|
1099 |
msgstr "Offenen des visuellen Shortcode-Editor in neuem Fenster"
|
1100 |
|
1101 |
+
#: lib/wfu_constants.php:233
|
1102 |
msgid "loading visual editor"
|
1103 |
msgstr "visueller Editor laden"
|
1104 |
|
1105 |
+
#: lib/wfu_constants.php:234
|
1106 |
msgid "Clear file list?"
|
1107 |
msgstr "Klar Dateiliste?"
|
1108 |
|
1109 |
+
#: lib/wfu_constants.php:235
|
1110 |
msgid "DROP HERE"
|
1111 |
msgstr "HIER ABLEGEN"
|
1112 |
|
1113 |
+
#: lib/wfu_constants.php:237
|
1114 |
msgid "record video"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: lib/wfu_constants.php:238
|
1118 |
msgid "take a picture"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: lib/wfu_constants.php:239
|
1122 |
msgid "turn webcam on/off"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: lib/wfu_constants.php:240
|
1126 |
msgid "go live again"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: lib/wfu_constants.php:241
|
1130 |
msgid "end recording"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: lib/wfu_constants.php:242
|
1134 |
msgid "play"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: lib/wfu_constants.php:243
|
1138 |
msgid "pause"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: lib/wfu_constants.php:244
|
1142 |
msgid "go to the beginning"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: lib/wfu_constants.php:245
|
1146 |
msgid "go to the end"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: lib/wfu_constants.php:247
|
1150 |
msgid "Wordpress File Upload Form"
|
1151 |
msgstr "Wordpress Datei Upload Formular"
|
1152 |
|
1153 |
+
#: lib/wfu_constants.php:248
|
1154 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1155 |
msgstr "Wordpress Datei Upload Plugin Uploader für Seitenleisten"
|
1156 |
|
1157 |
+
#: lib/wfu_constants.php:249
|
1158 |
msgid "Upload Files"
|
1159 |
msgstr "Dateien hochladen"
|
1160 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: el\n"
|
@@ -108,59 +108,67 @@ msgstr ""
|
|
108 |
"Με την ενεργοποίηση αυτής της επιλογής συμφωνώ να επιτρέπω στην ιστοσελίδα "
|
109 |
"να τηρεί προσωπικά μου δεδομένα"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
msgid "File"
|
113 |
msgstr "Αρχείο"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Date"
|
117 |
msgstr "Ημερομηνία"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "Size"
|
121 |
msgstr "Μέγεθος"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "User"
|
125 |
msgstr "Χρήστης"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "Page"
|
129 |
msgstr "Σελίδα"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "User Fields"
|
133 |
msgstr "Πεδία Χρήστη"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download"
|
137 |
msgstr "Λήψη"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Download this file"
|
141 |
msgstr "Λήψη αυτού του αρχείου"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete"
|
145 |
msgstr "Διαγραφή"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Delete this file"
|
149 |
msgstr "Διαγραφή αυτού του αρχείου"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "Sort list based on this column"
|
153 |
msgstr "Ταξινόμηση λίστας με βάση αυτήν τη στήλη"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "guest"
|
157 |
msgstr "επισκέπτης"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid "unknown"
|
161 |
msgstr "άγνωστος"
|
162 |
|
163 |
-
#: lib/wfu_constants.php:
|
164 |
msgid ""
|
165 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
166 |
"attribute."
|
@@ -168,11 +176,11 @@ msgstr ""
|
|
168 |
"Σφάλμα. Δεν ήταν δυνατή η επίλυση του καταλόγου προορισμού ftp. Ελέγξτε το "
|
169 |
"domain στην ιδιότητα 'ftpinfo'."
|
170 |
|
171 |
-
#: lib/wfu_constants.php:
|
172 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
173 |
msgstr "Σφάλμα. Μη έγκυρες πληροφορίες ftp. Ελέγξτε την ιδιότητα 'ftpinfo'."
|
174 |
|
175 |
-
#: lib/wfu_constants.php:
|
176 |
msgid ""
|
177 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
178 |
"syntax."
|
@@ -180,7 +188,7 @@ msgstr ""
|
|
180 |
"Σφάλμα. Δεν ήταν δυνατή η εξαγωγή πληροφοριών ftp από την ιδιότητα "
|
181 |
"'ftpinfo'. Ελέγξτε τη σύνταξή της."
|
182 |
|
183 |
-
#: lib/wfu_constants.php:
|
184 |
msgid ""
|
185 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
186 |
"attribute."
|
@@ -188,7 +196,7 @@ msgstr ""
|
|
188 |
"Σφάλμα. Δεν ήταν δυνατή η επίλυση του ονόματος αρχείου προορισμού ftp. "
|
189 |
"Ελέγξτε το domain στην ιδιότητα 'ftpinfo'."
|
190 |
|
191 |
-
#: lib/wfu_constants.php:
|
192 |
msgid ""
|
193 |
"Error. Could not open source file for ftp upload. Check if file is "
|
194 |
"accessible."
|
@@ -196,12 +204,12 @@ msgstr ""
|
|
196 |
"Σφάλμα. Δεν ήταν δυνατό το άνοιγμα του πηγαίου αρχείου για ftp μεταφόρτωση. "
|
197 |
"Ελέγξτε αν το αρχείο είναι προσβάσιμο."
|
198 |
|
199 |
-
#: lib/wfu_constants.php:
|
200 |
msgid "Error. Could not send data to ftp target file."
|
201 |
msgstr ""
|
202 |
"Σφάλμα. Δεν ήταν δυνατή η αποστολή δεδομένων στο ftp αρχείο προορισμού."
|
203 |
|
204 |
-
#: lib/wfu_constants.php:
|
205 |
msgid ""
|
206 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
207 |
"attribute."
|
@@ -209,7 +217,7 @@ msgstr ""
|
|
209 |
"Σφάλμα. Δεν ήταν δυνατή η σύνδεση στο φιλοξενητή ftp. Ελέγξτε το όνομα χώρου "
|
210 |
"στην ιδιότητα 'ftpinfo'."
|
211 |
|
212 |
-
#: lib/wfu_constants.php:
|
213 |
msgid ""
|
214 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
215 |
"'ftpinfo' attribute."
|
@@ -217,7 +225,7 @@ msgstr ""
|
|
217 |
"Σφάλμα. Δεν ήταν δυνατή η αυθεντικοποίηση στο φιλοξενητή ftp. Ελέγξτε το "
|
218 |
"όνομα χρήστη και κωδικό στην ιδιότητα 'ftpinfo'."
|
219 |
|
220 |
-
#: lib/wfu_constants.php:
|
221 |
msgid ""
|
222 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
223 |
"supports sftp."
|
@@ -225,11 +233,11 @@ msgstr ""
|
|
225 |
"Σφάλμα. Δεν ήταν δυνατή η αρχικοποίηση του υποσυστήματος sftp. Παρακαλώ "
|
226 |
"ελέγξτε αν ο εξυπηρετητής υποστηρίζει sftp."
|
227 |
|
228 |
-
#: lib/wfu_constants.php:
|
229 |
msgid "Error. The web server does not support sftp."
|
230 |
msgstr "Σφάλμα. Ο εξυπηρετητής web δεν υποστηρίζει sftp."
|
231 |
|
232 |
-
#: lib/wfu_constants.php:
|
233 |
msgid ""
|
234 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
235 |
"preventing the upload of big files.\n"
|
@@ -239,7 +247,7 @@ msgstr ""
|
|
239 |
"εμποδίζει την αποστολή μεγάλων αρχείων.\n"
|
240 |
"Το όριο της PHP ιδιότητας upload_max_filesize είναι:"
|
241 |
|
242 |
-
#: lib/wfu_constants.php:
|
243 |
msgid ""
|
244 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
245 |
"upload of big files.\n"
|
@@ -249,7 +257,7 @@ msgstr ""
|
|
249 |
"εμποδίζει την αποστολή μεγάλων αρχείων.\n"
|
250 |
"Το όριο της PHP ιδιότητας max_input_time είναι:"
|
251 |
|
252 |
-
#: lib/wfu_constants.php:
|
253 |
msgid ""
|
254 |
"Error. Permission denied to write to target folder.\n"
|
255 |
"Check and correct read/write permissions of target folder."
|
@@ -257,7 +265,7 @@ msgstr ""
|
|
257 |
"Σφάλμα. Δεν επιτρέπεται η εγραφή στο φάκελο προορισμού.\n"
|
258 |
"Ελέγξτε και διορθώστε τα δικαιώματα ανάγνωσης/εγγραφής στο φάκελο προορισμού."
|
259 |
|
260 |
-
#: lib/wfu_constants.php:
|
261 |
msgid ""
|
262 |
"Error. This file was rejected because its extension is not correct. Its "
|
263 |
"proper filename is: "
|
@@ -265,7 +273,7 @@ msgstr ""
|
|
265 |
"Σφάλμα. Το αρχείο απορρίφθηκε διότι η επέκτασή του δεν είναι σωστή. Το σωστό "
|
266 |
"του όνομα είναι: "
|
267 |
|
268 |
-
#: lib/wfu_constants.php:
|
269 |
msgid ""
|
270 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
271 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
@@ -276,7 +284,7 @@ msgstr ""
|
|
276 |
"απορρίφθηκε. Παρακαλώ ελέγξτε το αρχείο καταγραφής των αποστελλόμενων "
|
277 |
"αρχείων για ύποπτη συμπεριφορά."
|
278 |
|
279 |
-
#: lib/wfu_constants.php:
|
280 |
msgid ""
|
281 |
"File not uploaded in order to prevent overflow of the website. Please "
|
282 |
"contact administrator."
|
@@ -284,37 +292,37 @@ msgstr ""
|
|
284 |
"Το αρχείο δεν απεστάλλη προκειμένου να αποφευχθεί υπερφόρτωση της "
|
285 |
"ιστοσελίδας. Παρακαλώ επικοινωνήστε με το διαχειριστή."
|
286 |
|
287 |
-
#: lib/wfu_constants.php:
|
288 |
msgid "Target folder doesn't exist."
|
289 |
msgstr "Ο φάκελος προορισμού δεν υπάρχει."
|
290 |
|
291 |
-
#: lib/wfu_constants.php:
|
292 |
msgid "Upload failed! Missing a temporary folder."
|
293 |
msgstr "Η αποστολή απέτυχε! Λείπει ο προσωρινός φάκελος."
|
294 |
|
295 |
-
#: lib/wfu_constants.php:
|
296 |
msgid "Upload failed! Permission denied to write to target folder."
|
297 |
msgstr "Η αποστολή απέτυχε! Δεν επιτρέπεται η εγγραφή στο φάκελο προορισμού."
|
298 |
|
299 |
-
#: lib/wfu_constants.php:
|
300 |
msgid "File not allowed."
|
301 |
msgstr "Το αρχείο δεν επιτρέπεται."
|
302 |
|
303 |
-
#: lib/wfu_constants.php:
|
304 |
msgid "File is suspicious and was rejected."
|
305 |
msgstr "Το αρχείο είναι ύποπτο και απορρίφθηκε."
|
306 |
|
307 |
-
#: lib/wfu_constants.php:
|
308 |
msgid "The uploaded file exceeds the file size limit."
|
309 |
msgstr "Το αποστελλόμενο αρχείο υπερβαίνει το όριο μεγέθους αρχείου."
|
310 |
|
311 |
-
#: lib/wfu_constants.php:
|
312 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
313 |
msgstr ""
|
314 |
"Το αποστελλόμενο αρχείο υπερβαίνει τα 2GB και δεν υποστηρίζεται από τον "
|
315 |
"server."
|
316 |
|
317 |
-
#: lib/wfu_constants.php:
|
318 |
msgid ""
|
319 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
320 |
"Please contact the administrator."
|
@@ -322,7 +330,7 @@ msgstr ""
|
|
322 |
"Η αποστολή απέτυχε! Το αποστελλόμενο αρχείο υπερβαίνει το όριο μεγέθους "
|
323 |
"αρχείου του server. Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
324 |
|
325 |
-
#: lib/wfu_constants.php:
|
326 |
msgid ""
|
327 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
328 |
"server. Please contact the administrator."
|
@@ -330,7 +338,7 @@ msgstr ""
|
|
330 |
"Η αποστολή απέτυχε! Η διάρκεια αποστολής υπερέβη το όριο χρόνου του server. "
|
331 |
"Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
332 |
|
333 |
-
#: lib/wfu_constants.php:
|
334 |
msgid ""
|
335 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
336 |
"was specified in the HTML form."
|
@@ -338,19 +346,19 @@ msgstr ""
|
|
338 |
"Η αποστολή απέτυχε! Το αποστελλόμενο αρχείο υπερβαίνει την ιδιότητα "
|
339 |
"MAX_FILE_SIZE που ορίστηκε στη φόρμα HTML."
|
340 |
|
341 |
-
#: lib/wfu_constants.php:
|
342 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
343 |
msgstr "Η αποστολή απέτυχε: Το αποστελλόμενο αρχείο απεστάλλη μερικώς."
|
344 |
|
345 |
-
#: lib/wfu_constants.php:
|
346 |
msgid "Upload failed! No file was uploaded."
|
347 |
msgstr "Η αποστολή απέτυχε. Κανένα αρχείο δεν απεστάλη."
|
348 |
|
349 |
-
#: lib/wfu_constants.php:
|
350 |
msgid "Upload failed! Failed to write file to disk."
|
351 |
msgstr "Η αποστολή απέτυχε. Δεν κατέστη δυνατή η εγγραφή στο δίσκο."
|
352 |
|
353 |
-
#: lib/wfu_constants.php:
|
354 |
msgid ""
|
355 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
356 |
"administrator."
|
@@ -358,11 +366,11 @@ msgstr ""
|
|
358 |
"Η αποστολή απέτυχε! Ένα σφάλμα συνέβη κατά τη μετακίνηση του προσωρινού "
|
359 |
"αρχείου. Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
360 |
|
361 |
-
#: lib/wfu_constants.php:
|
362 |
msgid "Upload cancelled!"
|
363 |
msgstr "Η αποστολή ακυρώθηκε!"
|
364 |
|
365 |
-
#: lib/wfu_constants.php:
|
366 |
msgid ""
|
367 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
368 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -373,20 +381,20 @@ msgstr ""
|
|
373 |
"εξέταση της λίστας των επεκτάσεων που έχουν φορτωθεί με την phpinfo() να "
|
374 |
"βοηθήσει."
|
375 |
|
376 |
-
#: lib/wfu_constants.php:
|
377 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
378 |
msgstr ""
|
379 |
"Η αποστολή απέτυχε! Συνέβη κάποιο σφάλμα κατά την αποστολή του αρχείου."
|
380 |
|
381 |
-
#: lib/wfu_constants.php:
|
382 |
msgid "Upload failed!"
|
383 |
msgstr "Η αποστολή απέτυχε!"
|
384 |
|
385 |
-
#: lib/wfu_constants.php:
|
386 |
msgid "No file!"
|
387 |
msgstr "Κανένα αρχείο!"
|
388 |
|
389 |
-
#: lib/wfu_constants.php:
|
390 |
msgid ""
|
391 |
"Upload failed! The upload has been canceled by the user or the browser "
|
392 |
"dropped the connection."
|
@@ -394,27 +402,27 @@ msgstr ""
|
|
394 |
"Η αποστολή απέτυχε! Είτε η αποστολή ακυρώθηκε από το χρήστη ή ο browser "
|
395 |
"έχασε τη σύνδεση."
|
396 |
|
397 |
-
#: lib/wfu_constants.php:
|
398 |
msgid "Upload failed! Unknown error."
|
399 |
msgstr "Η αποστολή απέτυχε! Άγνωστο σφάλμα."
|
400 |
|
401 |
-
#: lib/wfu_constants.php:
|
402 |
msgid "Please contact the administrator."
|
403 |
msgstr "Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
404 |
|
405 |
-
#: lib/wfu_constants.php:
|
406 |
msgid "No result from remote server!"
|
407 |
msgstr "Καμία απάντηση από τον απομακρυσμένο server!"
|
408 |
|
409 |
-
#: lib/wfu_constants.php:
|
410 |
msgid " but with warnings"
|
411 |
msgstr " αλλά με προειδοποιήσεις"
|
412 |
|
413 |
-
#: lib/wfu_constants.php:
|
414 |
msgid "Warning: JSON parse error."
|
415 |
msgstr "Προειδοποίηση: Σφάλμα μετατροπής JSON."
|
416 |
|
417 |
-
#: lib/wfu_constants.php:
|
418 |
msgid ""
|
419 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
420 |
"not be parsed."
|
@@ -422,19 +430,19 @@ msgstr ""
|
|
422 |
"Οι παράμετροι αποστολής αυτού του αρχείου, οι οποίες πέρασαν στο χειριστή ως "
|
423 |
"συμβολοσειρά JSON, δεν μπόρεσαν να μετατραπούν."
|
424 |
|
425 |
-
#: lib/wfu_constants.php:
|
426 |
msgid ""
|
427 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
428 |
msgstr ""
|
429 |
"Το αντικείμενο UploadStates, το οποίο πέρασε στο χειριστή ως συμβολοσειρά "
|
430 |
"JSON, δεν μπόρεσε να μετατραπεί."
|
431 |
|
432 |
-
#: lib/wfu_constants.php:
|
433 |
msgid ""
|
434 |
"Redirection to classic form functionality occurred due to unknown error."
|
435 |
msgstr "Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας λόγω σφάλματος."
|
436 |
|
437 |
-
#: lib/wfu_constants.php:
|
438 |
msgid ""
|
439 |
"Redirection to classic form functionality occurred because AJAX is not "
|
440 |
"supported."
|
@@ -442,7 +450,7 @@ msgstr ""
|
|
442 |
"Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας διότι δεν υποστηρίζεται η "
|
443 |
"AJAX."
|
444 |
|
445 |
-
#: lib/wfu_constants.php:
|
446 |
msgid ""
|
447 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
448 |
"supported."
|
@@ -450,60 +458,60 @@ msgstr ""
|
|
450 |
"Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας διότι δεν υποστηρίζεται η "
|
451 |
"HTML5."
|
452 |
|
453 |
-
#: lib/wfu_constants.php:
|
454 |
msgid ""
|
455 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
456 |
msgstr ""
|
457 |
"Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας λόγω σφάλματος μετατροπής "
|
458 |
"JSON."
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "Please enable popup windows from the browser's settings!"
|
462 |
msgstr ""
|
463 |
"Παρακαλούμε ενεργοποιήστε τα αναδυόμενα παράθυρα από τις ρυθμίσεις του "
|
464 |
"προγράμματος περιήγησης!"
|
465 |
|
466 |
-
#: lib/wfu_constants.php:
|
467 |
msgid "cannot be empty!"
|
468 |
msgstr "δεν μπορεί να είναι κενό!"
|
469 |
|
470 |
-
#: lib/wfu_constants.php:
|
471 |
msgid "number not valid!"
|
472 |
msgstr "μη έγκυρος αριθμός!"
|
473 |
|
474 |
-
#: lib/wfu_constants.php:
|
475 |
msgid "email not valid!"
|
476 |
msgstr "το email δεν είναι έγκυρο!"
|
477 |
|
478 |
-
#: lib/wfu_constants.php:
|
479 |
msgid "emails do not match!"
|
480 |
msgstr "τα emails δεν ταιριάζουν!"
|
481 |
|
482 |
-
#: lib/wfu_constants.php:
|
483 |
msgid "no base email field in group!"
|
484 |
msgstr "δεν υπάρχει αρχικό πεδίο email στο group!"
|
485 |
|
486 |
-
#: lib/wfu_constants.php:
|
487 |
msgid "passwords do not match!"
|
488 |
msgstr "οι κωδικοί δεν ταιριάζουν!"
|
489 |
|
490 |
-
#: lib/wfu_constants.php:
|
491 |
msgid "no base password field in group!"
|
492 |
msgstr "δεν υπάρχει αρχικό πεδίο κωδικού στο group!"
|
493 |
|
494 |
-
#: lib/wfu_constants.php:
|
495 |
msgid "checkbox unchecked!"
|
496 |
msgstr "το checkbox είναι μη επιλεγμένο!"
|
497 |
|
498 |
-
#: lib/wfu_constants.php:
|
499 |
msgid "no option selected!"
|
500 |
msgstr "δεν έχει γίνει επιλογή!"
|
501 |
|
502 |
-
#: lib/wfu_constants.php:
|
503 |
msgid "no item selected!"
|
504 |
msgstr "δεν έχει γίνει επιλογή!"
|
505 |
|
506 |
-
#: lib/wfu_constants.php:
|
507 |
msgid ""
|
508 |
"There are more than one instances of the plugin in this page with the same "
|
509 |
"id. Please change it."
|
@@ -511,7 +519,7 @@ msgstr ""
|
|
511 |
"Υπάρχουν περισσότερες από μία εμφανίσεις του plugin σε αυτή τη σελίδα με το "
|
512 |
"ίδιο id. Παρακαλούμε να το αλλάξετε."
|
513 |
|
514 |
-
#: lib/wfu_constants.php:
|
515 |
msgid ""
|
516 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
517 |
"the page."
|
@@ -519,19 +527,19 @@ msgstr ""
|
|
519 |
"Δεν είναι δυνατή η επεξεργασία του shortcode διότι η σελίδα τροποποιήθηκε. "
|
520 |
"Παρακαλούμε ξαναφορτώστε τη σελίδα."
|
521 |
|
522 |
-
#: lib/wfu_constants.php:
|
523 |
msgid "Your browser does not support webcam capture!"
|
524 |
msgstr "Ο browser σας δεν υποστηρίζει κάμερα!"
|
525 |
|
526 |
-
#: lib/wfu_constants.php:
|
527 |
msgid "Your browser does not support video recording from the webcam!"
|
528 |
msgstr "Ο browsers σας δεν υποστηρίζει εγγραφή video από την κάμερα!"
|
529 |
|
530 |
-
#: lib/wfu_constants.php:
|
531 |
msgid "No video was recorded!"
|
532 |
msgstr "Δεν καταγράφηκε video!"
|
533 |
|
534 |
-
#: lib/wfu_constants.php:
|
535 |
msgid ""
|
536 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
537 |
"or use RecaptchaV2 (no account)."
|
@@ -539,7 +547,7 @@ msgstr ""
|
|
539 |
"ΣΦΑΛΜΑ: Δεν υποστηρίζεται το captcha. Έχετε παλαιά έκδοση της PHP. "
|
540 |
"Αναβαθμίστε την PHP ή χρησιμοποιήστε την επιλογή RecaptchaV2 (no account)."
|
541 |
|
542 |
-
#: lib/wfu_constants.php:
|
543 |
msgid ""
|
544 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
545 |
"notify administrator."
|
@@ -547,7 +555,7 @@ msgstr ""
|
|
547 |
"ΣΦΑΛΜΑ: Μόνο μία εμφάνιση του RecaptchaV1 μπορεί να υπάρχει στην ίδια "
|
548 |
"σελίδα. Παρακαλούμε ειδοποιείστε το διαχειριστή."
|
549 |
|
550 |
-
#: lib/wfu_constants.php:
|
551 |
msgid ""
|
552 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
553 |
"use RecaptchaV1 (no account)."
|
@@ -555,12 +563,12 @@ msgstr ""
|
|
555 |
"ΣΦΑΛΜΑ: Μόνο μία εμφάνιση του RecaptchaV1 μπορεί να υπάρχει στην ίδια "
|
556 |
"σελίδα. Παρακαλούμε χρησιμοποιείστε το RecaptchaV1 (no account)."
|
557 |
|
558 |
-
#: lib/wfu_constants.php:
|
559 |
msgid "ERROR: No site key. Please contact administrator!"
|
560 |
msgstr ""
|
561 |
"ΣΦΑΛΜΑ: Δεν υπάρχει κλειδί site. Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid ""
|
565 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
566 |
"define Google Recaptcha keys."
|
@@ -568,128 +576,128 @@ msgstr ""
|
|
568 |
"ΣΦΑΛΜΑ: Δεν ορίστηκε κλειδί site! Παρακαλούμε πηγαίνεται στις επιλογές του "
|
569 |
"plugin στο Dashboard για να ορίσετε κλειδιά του Google Recaptcha."
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid "Bad captcha image!"
|
573 |
msgstr "Μη έγκυρη εικόνα captcha!"
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid "No input!"
|
577 |
msgstr "Κενό!"
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid "Captcha not completed!"
|
581 |
msgstr "Το captcha δε συμπληρώθηκε!"
|
582 |
|
583 |
-
#: lib/wfu_constants.php:
|
584 |
msgid "Wrong captcha!"
|
585 |
msgstr "Λάθος captcha!"
|
586 |
|
587 |
-
#: lib/wfu_constants.php:
|
588 |
msgid "Error refreshing captcha!"
|
589 |
msgstr "Σφάλμα ανανέωσης του captcha!"
|
590 |
|
591 |
-
#: lib/wfu_constants.php:
|
592 |
msgid "Unknown captcha error!"
|
593 |
msgstr "Άγνωστο σφάλμα captcha!"
|
594 |
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
msgid "Captcha not supported by your browser!"
|
597 |
msgstr "Το captcha δεν υποστηρίζεται από το browser σας!"
|
598 |
|
599 |
-
#: lib/wfu_constants.php:
|
600 |
msgid "the secret parameter is missing"
|
601 |
msgstr "η μυστική παράμετρος λείπει"
|
602 |
|
603 |
-
#: lib/wfu_constants.php:
|
604 |
msgid "the secret parameter is invalid or malformed"
|
605 |
msgstr "η μυστική παράμετρος είναι μη έγκυρη ή δεν ορίστηκε σωστά"
|
606 |
|
607 |
-
#: lib/wfu_constants.php:
|
608 |
msgid "the response parameter is missing"
|
609 |
msgstr "η παράμετρος απάντησης λείπει"
|
610 |
|
611 |
-
#: lib/wfu_constants.php:
|
612 |
msgid "the response parameter is invalid or malformed"
|
613 |
msgstr "η παράμετρος απάντησης είναι μη έγκυρη ή δεν ορίστηκε σωστά"
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid "Please do not use drag drop due to an internal problem."
|
617 |
msgstr ""
|
618 |
"Παρακαλούμε μη χρησιμοποιείτε το drag drop λόγω εσωτερικού προβλήματος."
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
#, php-format
|
622 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
623 |
msgstr ""
|
624 |
"Σφάλμα κατά τη διάρκεια τμηματικής αποστολής. Το μοναδικό ID είναι κενό στο "
|
625 |
"τμήμα %d"
|
626 |
|
627 |
-
#: lib/wfu_constants.php:
|
628 |
msgid "Chunked upload is not allowed!"
|
629 |
msgstr "Δεν επιτρέπεται τμηματική αποστολή!"
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
633 |
msgstr "Η τμηματική αποστολή ματαιώθηκε λόγω σφάλματος στο προηγούμενο τμήμα!"
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid "Chunked upload failed, final file could not be created!"
|
637 |
msgstr ""
|
638 |
"Η τμηματική αποστολή ματαιώθηκε, το τελικό αρχείο δεν μπόρεσε να "
|
639 |
"δημιουργηθεί!"
|
640 |
|
641 |
-
#: lib/wfu_constants.php:
|
642 |
#, php-format
|
643 |
msgid "Could not write file chuck to destination on chunk %d"
|
644 |
msgstr "Δεν ήταν δυνατή η εγγραφή τμήματος αρχείου στον προορισμό στο τμήμα %d"
|
645 |
|
646 |
-
#: lib/wfu_constants.php:
|
647 |
#, php-format
|
648 |
msgid "Could not enlarge destination file on chunk %d"
|
649 |
msgstr "Δεν ήταν δυνατή η μεγέθυνση του αρχείου προορισμού στο τμήμα %d"
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
#, php-format
|
653 |
msgid "Could not open file handles on chunk %d"
|
654 |
msgstr "Δεν ήταν δυνατό το άνοιγμα χειριστών αρχείου στο τμήμα %d"
|
655 |
|
656 |
-
#: lib/wfu_constants.php:
|
657 |
msgid "You are not allowed to download this file!"
|
658 |
msgstr "Δεν επιτρέπεται να κατεβάσετε αυτό το αρχείο!"
|
659 |
|
660 |
-
#: lib/wfu_constants.php:
|
661 |
msgid "File does not exist!"
|
662 |
msgstr "Το αρχείο δεν υπάρχει!"
|
663 |
|
664 |
-
#: lib/wfu_constants.php:
|
665 |
msgid "Could not download file!"
|
666 |
msgstr "Δεν ήταν δυνατό το κατέβασμα του αρχείου!"
|
667 |
|
668 |
-
#: lib/wfu_constants.php:
|
669 |
msgid "You are not allowed to delete this file!"
|
670 |
msgstr "Δεν επιτρέπεται η διαγραφή αυτού του αρχείου!"
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid "File was not deleted!"
|
674 |
msgstr "Το αρχείο δε διαγράφηκε!"
|
675 |
|
676 |
-
#: lib/wfu_constants.php:
|
677 |
msgid "No file was deleted!"
|
678 |
msgstr "Δε διαγράφηκε κανένα αρχείο!"
|
679 |
|
680 |
-
#: lib/wfu_constants.php:
|
681 |
msgid "Some files were not deleted!"
|
682 |
msgstr "Μερικά αρχεία δε διαγράφηκαν!"
|
683 |
|
684 |
-
#: lib/wfu_constants.php:
|
685 |
msgid "Upload skipped! File already exists."
|
686 |
msgstr "Η αποστολή παραβλέφθηκε! Το αρχείο υπάρχει ήδη."
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid "The extension of the file does not match its contents."
|
690 |
msgstr "Η επέκταση του αρχείου δεν ταιριάζει με τα περιεχόμενά του."
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid ""
|
694 |
"Upload succeeded but the file is suspicious because its contents do not "
|
695 |
"match its extension. Its proper filename is: "
|
@@ -697,25 +705,25 @@ msgstr ""
|
|
697 |
"Η αποστολή ήταν επιτυχής αλλά το αρχείο είναι ύποπτο διότι τα περιεχόμενά "
|
698 |
"του δεν ταιριάζουν με την επέκτασή του. Το σωστό του όνομα είναι: "
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid "No files have been selected!"
|
702 |
msgstr "Δεν επιλέχθηκαν αρχεία!"
|
703 |
|
704 |
-
#: lib/wfu_constants.php:
|
705 |
msgid "Please complete the consent question before continuing the upload!"
|
706 |
msgstr ""
|
707 |
"Παρακαλώ απαντήστε στην ερώτηση συναίνεσης για να επιτραπεί η αποστολή!"
|
708 |
|
709 |
-
#: lib/wfu_constants.php:
|
710 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
711 |
msgstr "Το plugin WPFilebase δεν ενημερώθηκε διότι δεν απεστάλη κανένα αρχείο."
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid "Notification email was not sent because there were no files uploaded."
|
715 |
msgstr ""
|
716 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν απεστάλη κανένα αρχείο."
|
717 |
|
718 |
-
#: lib/wfu_constants.php:
|
719 |
msgid ""
|
720 |
"Notification email was not sent because no recipients were defined. Please "
|
721 |
"check notifyrecipients attribute in the shortcode."
|
@@ -723,7 +731,7 @@ msgstr ""
|
|
723 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν ορίστηκαν παραλήπτες. "
|
724 |
"Παρακαλούμε ελέγξτε την ιδιότητα notifyrecipients στο shortcode."
|
725 |
|
726 |
-
#: lib/wfu_constants.php:
|
727 |
msgid ""
|
728 |
"Notification email was not sent due to an error. Please check "
|
729 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -731,7 +739,7 @@ msgstr ""
|
|
731 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email λόγω σφάλματος. Παρακαλούμε ελέγξτε "
|
732 |
"τις ιδιότητες notifyrecipients, notifysubject και notifymessage για σφάλματα."
|
733 |
|
734 |
-
#: lib/wfu_constants.php:
|
735 |
msgid ""
|
736 |
"Redirection not executed because redirection link is empty. Please check "
|
737 |
"redirectlink attribute."
|
@@ -739,18 +747,18 @@ msgstr ""
|
|
739 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι ο σύνδεσμος αναδρομολόγησης είναι "
|
740 |
"κενός. Παρακαλούμε ελέγξτε την ιδιότητα redirectlink."
|
741 |
|
742 |
-
#: lib/wfu_constants.php:
|
743 |
msgid ""
|
744 |
"Redirection not executed because not all files were successfully uploaded."
|
745 |
msgstr ""
|
746 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι δεν αποεστάλησαν όλα τα αρχεία "
|
747 |
"επιτυχώς."
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
751 |
msgstr "Πιθανή Επίθεση Τύπου Denial-Of-Service στο {SITE}"
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid ""
|
755 |
"Hello admin\n"
|
756 |
"\n"
|
@@ -787,7 +795,7 @@ msgstr ""
|
|
787 |
"\n"
|
788 |
"Ευχαριστώ"
|
789 |
|
790 |
-
#: lib/wfu_constants.php:
|
791 |
msgid ""
|
792 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
793 |
"details please contact info@iptanus.com."
|
@@ -795,7 +803,7 @@ msgstr ""
|
|
795 |
"Έχετε ενεργοποιήσει έναν εναλλακτικό μη ασφαλή Iptanus Services Server. Για "
|
796 |
"λεπτομέρειες παρακαλούμε επικοινωνήστε με το info@iptanus.com."
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid ""
|
800 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
801 |
"plugin functions. Please read this :article: for resolution."
|
@@ -804,7 +812,7 @@ msgstr ""
|
|
804 |
"προκαλέσει προβλήματα σε κάποιες λειτουργίες του plugin. Παρακαλούμε "
|
805 |
"διαβάστε αυτό το :άρθρο: για επιδιόρθωση."
|
806 |
|
807 |
-
#: lib/wfu_constants.php:
|
808 |
msgid ""
|
809 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
810 |
"message persists, contact administrator."
|
@@ -812,7 +820,7 @@ msgstr ""
|
|
812 |
"Δεν κατέστη δυνατή η προσθήκη του shortcode στη σελίδα / άρθρο. Παρακαλώ "
|
813 |
"προσπάθησε ξανά. Αν το μήνυμα συνεχίζει, επικοινωνήστε με το διαχειριστή."
|
814 |
|
815 |
-
#: lib/wfu_constants.php:
|
816 |
msgid ""
|
817 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
818 |
"again to edit the shortcode."
|
@@ -820,7 +828,7 @@ msgstr ""
|
|
820 |
"Δεν ήταν δυνατή η επεξεργασία του shortcode διότι τα περιεχόμενα της σελίδας "
|
821 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να επεξεργαστείτε το shortcode."
|
822 |
|
823 |
-
#: lib/wfu_constants.php:
|
824 |
msgid ""
|
825 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
826 |
"again to delete it."
|
@@ -828,7 +836,7 @@ msgstr ""
|
|
828 |
"Δεν ήταν δυνατή η διαγραφή του shortcode διότι τα περιεχόμενα της σελίδας "
|
829 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να διαγράψετε το shortcode."
|
830 |
|
831 |
-
#: lib/wfu_constants.php:
|
832 |
msgid ""
|
833 |
"The page containing the shortcode has been modified and it is no longer "
|
834 |
"valid. Please go back to reload the shortcode."
|
@@ -836,7 +844,7 @@ msgstr ""
|
|
836 |
"Η σελίδα που περιέχει το shortcode τροποποιήθηκε και δεν είναι πλέον σε "
|
837 |
"ισχύ. Παρακαλούμε πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
838 |
|
839 |
-
#: lib/wfu_constants.php:
|
840 |
msgid ""
|
841 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
842 |
"back to reload the shortcode."
|
@@ -844,7 +852,7 @@ msgstr ""
|
|
844 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode διότι τα περιεχόμενα της σελίδας "
|
845 |
"άλλαξαν. Πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
846 |
|
847 |
-
#: lib/wfu_constants.php:
|
848 |
msgid ""
|
849 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
850 |
"go back and reload the shortcode."
|
@@ -852,39 +860,39 @@ msgstr ""
|
|
852 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode. Παρακαλούμε ξαναδοκιμάστε. Αν το "
|
853 |
"πρόβλημα παραμείνει, πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
854 |
|
855 |
-
#: lib/wfu_constants.php:
|
856 |
msgid "This is a test message"
|
857 |
msgstr "Αυτό είναι ένα μήνυμα ελέγχου"
|
858 |
|
859 |
-
#: lib/wfu_constants.php:
|
860 |
msgid "This is a test administrator message"
|
861 |
msgstr "Αυτό είναι ένα μήνυμα διαχειριστή ελέγχου"
|
862 |
|
863 |
-
#: lib/wfu_constants.php:
|
864 |
msgid "File testfile 1 under test"
|
865 |
msgstr "Αρχείο testfile 1 υπό έλεγχο"
|
866 |
|
867 |
-
#: lib/wfu_constants.php:
|
868 |
msgid "File testfile 1 message"
|
869 |
msgstr "Μήνυμα αρχείου testfile 1"
|
870 |
|
871 |
-
#: lib/wfu_constants.php:
|
872 |
msgid "File testfile 1 administrator message"
|
873 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 1"
|
874 |
|
875 |
-
#: lib/wfu_constants.php:
|
876 |
msgid "File testfile 2 under test"
|
877 |
msgstr "Αρχείο testfile 2 υπό έλεγχο"
|
878 |
|
879 |
-
#: lib/wfu_constants.php:
|
880 |
msgid "File testfile 2 message"
|
881 |
msgstr "Μήνυμα αρχείου testfile 2"
|
882 |
|
883 |
-
#: lib/wfu_constants.php:
|
884 |
msgid "File testfile 2 administrator message"
|
885 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 2"
|
886 |
|
887 |
-
#: lib/wfu_constants.php:
|
888 |
msgid ""
|
889 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
890 |
"current user."
|
@@ -892,7 +900,7 @@ msgstr ""
|
|
892 |
"Εισάγετε τη μεταβλητή %userid% στο κείμενο. Θα αντικατασταθεί από το id του "
|
893 |
"τρέχοντος χρήστη."
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
896 |
msgid ""
|
897 |
"Insert variable %username% inside text. It will be replaced by the username "
|
898 |
"of the current user."
|
@@ -900,7 +908,7 @@ msgstr ""
|
|
900 |
"Εισάγετε τη μεταβλητή %username% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
901 |
"του τρέχοντος χρήστη."
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid ""
|
905 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
906 |
"the current user."
|
@@ -908,7 +916,7 @@ msgstr ""
|
|
908 |
"Εισάγετε τη μεταβλητή %useremail% στο κείμενο. Θα αντικατασταθεί από το "
|
909 |
"email του τρέχοντος χρήστη."
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid ""
|
913 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
914 |
"of the uploaded file."
|
@@ -916,7 +924,7 @@ msgstr ""
|
|
916 |
"Εισάγετε τη μεταβλητή %filename% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
917 |
"του αποστελλομένου αρχείου."
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid ""
|
921 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
922 |
"filepath of the uploaded file."
|
@@ -924,7 +932,7 @@ msgstr ""
|
|
924 |
"Εισάγετε τη μεταβλητή %filepath% στο κείμενο. Θα αντικατασταθεί από την "
|
925 |
"πλήρη διαδρομή του αποστελλομένου αρχείου."
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid ""
|
929 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
930 |
"the website."
|
@@ -932,7 +940,7 @@ msgstr ""
|
|
932 |
"Εισάγετε τη μεταβλητή %blogid% στο κείμενο. Θα αντικατασταθεί από το blog id "
|
933 |
"της ιστοσελίδας."
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid ""
|
937 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
938 |
"current page."
|
@@ -940,7 +948,7 @@ msgstr ""
|
|
940 |
"Εισάγετε τη μεταβλητή %pageid% στο κείμενο. Θα αντικατασταθεί από το id της "
|
941 |
"τρέχουσας σελίδας."
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid ""
|
945 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
946 |
"the current page."
|
@@ -948,7 +956,7 @@ msgstr ""
|
|
948 |
"Εισάγετε τη μεταβλητή %pagetitle% στο κείμενο. Θα αντικατασταθεί από τον "
|
949 |
"τίτλο της τρέχουσας σελίδας."
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid ""
|
953 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
954 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -958,217 +966,234 @@ msgstr ""
|
|
958 |
"από την εμφανιζόμενη dropdown λίστα. Θα αντικατασταθεί από την τιμή που "
|
959 |
"εισήγαγε ο χρήστης σε αυτό το πεδίο."
|
960 |
|
961 |
-
#: lib/wfu_constants.php:
|
962 |
msgid "Insert variable %n% inside text to denote a line change."
|
963 |
msgstr ""
|
964 |
"Εισάγετε τη μεταβλητή %n% στο κείμενο για να υποδείξετε αλλαγή γραμμής."
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
967 |
msgid "Test Mode"
|
968 |
msgstr "Κατάσταση Ελέγχου"
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "select dir..."
|
972 |
msgstr "επιλογή καταλόγου..."
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "type dir"
|
976 |
msgstr "εισάγετε κατάλογο"
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "Upload path: %filepath%"
|
980 |
msgstr "Διαδρομή προορισμού: %filepath%"
|
981 |
|
982 |
-
#: lib/wfu_constants.php:
|
983 |
msgid "Failed upload path: %filepath%"
|
984 |
msgstr "Εσφαλμένη διαδρομή προορισμού: %filepath%"
|
985 |
|
986 |
-
#: lib/wfu_constants.php:
|
987 |
msgid " (required)"
|
988 |
msgstr " (απαραίτητο)"
|
989 |
|
990 |
-
#: lib/wfu_constants.php:
|
991 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
992 |
msgstr ""
|
993 |
"Υπάρχουν αρχεία που αποστέλλονται. Σίγουρα θέλετε να φύγετε από τη σελίδα;"
|
994 |
|
995 |
-
#: lib/wfu_constants.php:
|
996 |
msgid "checking captcha..."
|
997 |
msgstr "έλεγχος captcha..."
|
998 |
|
999 |
-
#: lib/wfu_constants.php:
|
1000 |
msgid "refreshing..."
|
1001 |
msgstr "ανανέωση..."
|
1002 |
|
1003 |
-
#: lib/wfu_constants.php:
|
1004 |
msgid "correct captcha"
|
1005 |
msgstr "σωστό captcha"
|
1006 |
|
1007 |
-
#: lib/wfu_constants.php:
|
1008 |
msgid "click to continue the upload"
|
1009 |
msgstr "πατήστε click για να συνεχίσει η αποστολή"
|
1010 |
|
1011 |
-
#: lib/wfu_constants.php:
|
1012 |
msgid "Are you sure you want to delete this file?"
|
1013 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο;"
|
1014 |
|
1015 |
-
#: lib/wfu_constants.php:
|
1016 |
msgid "Are you sure you want to delete these files?"
|
1017 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτά τα αρχεία;"
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "Bulk Actions"
|
1021 |
msgstr "Μαζικές Ενέργειες"
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "Apply"
|
1025 |
msgstr "Εκτέλεση"
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "of "
|
1029 |
msgstr "από "
|
1030 |
|
1031 |
-
#: lib/wfu_constants.php:
|
1032 |
msgid "Are you sure that you want to cancel the upload?"
|
1033 |
msgstr "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την αποστολή;"
|
1034 |
|
1035 |
-
#: lib/wfu_constants.php:
|
1036 |
msgid "cancel upload of this file"
|
1037 |
msgstr "ακυρώστε την αποστολή αυτού του αρχείου"
|
1038 |
|
1039 |
-
#: lib/wfu_constants.php:
|
1040 |
msgid "Upload in progress"
|
1041 |
msgstr "Αποστολή σε εξέλιξη"
|
1042 |
|
1043 |
-
#: lib/wfu_constants.php:
|
1044 |
msgid "Upload in progress with warnings!"
|
1045 |
msgstr "Αποστολή σε εξέλιξη με προειδοποιήσεις!"
|
1046 |
|
1047 |
-
#: lib/wfu_constants.php:
|
1048 |
msgid "Upload in progress but some files already failed!"
|
1049 |
msgstr "Αποστολή σε εξέλιξη αλλά κάποια αρχεία ήδη απέτυχαν!"
|
1050 |
|
1051 |
-
#: lib/wfu_constants.php:
|
1052 |
msgid "Upload in progress but no files uploaded so far!"
|
1053 |
msgstr "Αποστολή σε εξέλιξη αλλά δεν απεστάλη κανένα αρχείο μέχρι τώρα!"
|
1054 |
|
1055 |
-
#: lib/wfu_constants.php:
|
1056 |
msgid "All files uploaded successfully"
|
1057 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς"
|
1058 |
|
1059 |
-
#: lib/wfu_constants.php:
|
1060 |
msgid "All files uploaded successfully but there are warnings!"
|
1061 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
1062 |
|
1063 |
-
#: lib/wfu_constants.php:
|
1064 |
msgid "File uploaded successfully but there are warnings!"
|
1065 |
msgstr "Το αρχείο απεστάλη επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
1066 |
|
1067 |
-
#: lib/wfu_constants.php:
|
1068 |
msgid "Some files failed to upload!"
|
1069 |
msgstr "Μερικά αρχεία απέτυχαν να αποσταλούν!"
|
1070 |
|
1071 |
-
#: lib/wfu_constants.php:
|
1072 |
msgid "All files failed to upload"
|
1073 |
msgstr "Όλα τα αρχεία απέτυχαν να αποσταλούν"
|
1074 |
|
1075 |
-
#: lib/wfu_constants.php:
|
1076 |
msgid "File failed to upload"
|
1077 |
msgstr "Το αρχείο απέτυχε να αποσταλεί"
|
1078 |
|
1079 |
-
#: lib/wfu_constants.php:
|
1080 |
msgid "There are no files to upload!"
|
1081 |
msgstr "Δεν υπάρχουν αρχεία για αποστολή!"
|
1082 |
|
1083 |
-
#: lib/wfu_constants.php:
|
1084 |
msgid "Test upload message"
|
1085 |
msgstr "Μήνυμα αποστολής ελέγχου"
|
1086 |
|
1087 |
-
#: lib/wfu_constants.php:
|
1088 |
msgid "JSON parse warning!"
|
1089 |
msgstr "Προειδοποίηση μετατροπής JSON!"
|
1090 |
|
1091 |
-
#: lib/wfu_constants.php:
|
1092 |
msgid "please wait while redirecting..."
|
1093 |
msgstr "παρακαλούμε περιμένετε ενώ γίνεται αναδρομολόγηση..."
|
1094 |
|
1095 |
-
#: lib/wfu_constants.php:
|
1096 |
msgid "Submitting data"
|
1097 |
msgstr "Τα δεδομένα αποστέλλονται"
|
1098 |
|
1099 |
-
#: lib/wfu_constants.php:
|
1100 |
msgid "Data submitted successfully!"
|
1101 |
msgstr "Τα δεδομένα αποστάλθηκαν με επιτυχία!"
|
1102 |
|
1103 |
-
#: lib/wfu_constants.php:
|
1104 |
msgid "Data were not submitted!"
|
1105 |
msgstr "Τα δεδομένα δεν αποστάλθηκαν!"
|
1106 |
|
1107 |
-
#: lib/wfu_constants.php:
|
1108 |
msgid "Cancelling upload"
|
1109 |
msgstr "Αποστολή αρχείων σε ακύρωση"
|
1110 |
|
1111 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
msgid "Open visual shortcode editor in new window"
|
1113 |
msgstr "Ανοίξτε τη γραφική επεξεργασία του shortcode σε νέο παράθυρο"
|
1114 |
|
1115 |
-
#: lib/wfu_constants.php:
|
1116 |
msgid "loading visual editor"
|
1117 |
msgstr "φόρτωση του γραφικού επεξεργαστή"
|
1118 |
|
1119 |
-
#: lib/wfu_constants.php:
|
1120 |
msgid "Clear file list?"
|
1121 |
msgstr "Να γίνει καθαρισμός της λίστας αρχείων;"
|
1122 |
|
1123 |
-
#: lib/wfu_constants.php:
|
1124 |
msgid "DROP HERE"
|
1125 |
msgstr "ΑΦΗΣΤΕ ΕΔΩ"
|
1126 |
|
1127 |
-
#: lib/wfu_constants.php:
|
1128 |
msgid "record video"
|
1129 |
msgstr "εγγραφή video"
|
1130 |
|
1131 |
-
#: lib/wfu_constants.php:
|
1132 |
msgid "take a picture"
|
1133 |
msgstr "φωτογραφία"
|
1134 |
|
1135 |
-
#: lib/wfu_constants.php:
|
1136 |
msgid "turn webcam on/off"
|
1137 |
msgstr "ενεργοποίηση/απενεργοποίηση κάμερας"
|
1138 |
|
1139 |
-
#: lib/wfu_constants.php:
|
1140 |
msgid "go live again"
|
1141 |
msgstr "επιστροφή σε ζωντανή λήψη"
|
1142 |
|
1143 |
-
#: lib/wfu_constants.php:
|
1144 |
msgid "end recording"
|
1145 |
msgstr "τέλος εγγραφής"
|
1146 |
|
1147 |
-
#: lib/wfu_constants.php:
|
1148 |
msgid "play"
|
1149 |
msgstr "αναπαραγωγή"
|
1150 |
|
1151 |
-
#: lib/wfu_constants.php:
|
1152 |
msgid "pause"
|
1153 |
msgstr "παύση"
|
1154 |
|
1155 |
-
#: lib/wfu_constants.php:
|
1156 |
msgid "go to the beginning"
|
1157 |
msgstr "μετάβαση στην αρχή"
|
1158 |
|
1159 |
-
#: lib/wfu_constants.php:
|
1160 |
msgid "go to the end"
|
1161 |
msgstr "μετάβαση στο τέλος"
|
1162 |
|
1163 |
-
#: lib/wfu_constants.php:
|
1164 |
msgid "Wordpress File Upload Form"
|
1165 |
msgstr "Φόρμα του Wordpress File Upload"
|
1166 |
|
1167 |
-
#: lib/wfu_constants.php:
|
1168 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1169 |
msgstr "Αποστολή αρχείων με το Wordpress File Upload plugin για sidebars"
|
1170 |
|
1171 |
-
#: lib/wfu_constants.php:
|
1172 |
msgid "Upload Files"
|
1173 |
msgstr "Αποστολή αρχείων"
|
1174 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:37+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:40+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: el\n"
|
108 |
"Με την ενεργοποίηση αυτής της επιλογής συμφωνώ να επιτρέπω στην ιστοσελίδα "
|
109 |
"να τηρεί προσωπικά μου δεδομένα"
|
110 |
|
111 |
+
#: lib/wfu_constants.php:34
|
112 |
+
msgid ""
|
113 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
114 |
+
"continue!"
|
115 |
+
msgstr ""
|
116 |
+
"Δε συμφωνήσατε να επιτρέψετε στην ιστοσελίδα να τηρεί τα προσωπικά σας "
|
117 |
+
"δεδομένα. Η μεταφόρτωση σε μπορεί να συνεχίσει!"
|
118 |
+
|
119 |
+
#: lib/wfu_constants.php:36
|
120 |
msgid "File"
|
121 |
msgstr "Αρχείο"
|
122 |
|
123 |
+
#: lib/wfu_constants.php:37
|
124 |
msgid "Date"
|
125 |
msgstr "Ημερομηνία"
|
126 |
|
127 |
+
#: lib/wfu_constants.php:38
|
128 |
msgid "Size"
|
129 |
msgstr "Μέγεθος"
|
130 |
|
131 |
+
#: lib/wfu_constants.php:39
|
132 |
msgid "User"
|
133 |
msgstr "Χρήστης"
|
134 |
|
135 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
136 |
msgid "Page"
|
137 |
msgstr "Σελίδα"
|
138 |
|
139 |
+
#: lib/wfu_constants.php:41
|
140 |
msgid "User Fields"
|
141 |
msgstr "Πεδία Χρήστη"
|
142 |
|
143 |
+
#: lib/wfu_constants.php:42
|
144 |
msgid "Download"
|
145 |
msgstr "Λήψη"
|
146 |
|
147 |
+
#: lib/wfu_constants.php:43
|
148 |
msgid "Download this file"
|
149 |
msgstr "Λήψη αυτού του αρχείου"
|
150 |
|
151 |
+
#: lib/wfu_constants.php:44
|
152 |
msgid "Delete"
|
153 |
msgstr "Διαγραφή"
|
154 |
|
155 |
+
#: lib/wfu_constants.php:45
|
156 |
msgid "Delete this file"
|
157 |
msgstr "Διαγραφή αυτού του αρχείου"
|
158 |
|
159 |
+
#: lib/wfu_constants.php:46
|
160 |
msgid "Sort list based on this column"
|
161 |
msgstr "Ταξινόμηση λίστας με βάση αυτήν τη στήλη"
|
162 |
|
163 |
+
#: lib/wfu_constants.php:47
|
164 |
msgid "guest"
|
165 |
msgstr "επισκέπτης"
|
166 |
|
167 |
+
#: lib/wfu_constants.php:48
|
168 |
msgid "unknown"
|
169 |
msgstr "άγνωστος"
|
170 |
|
171 |
+
#: lib/wfu_constants.php:50
|
172 |
msgid ""
|
173 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
174 |
"attribute."
|
176 |
"Σφάλμα. Δεν ήταν δυνατή η επίλυση του καταλόγου προορισμού ftp. Ελέγξτε το "
|
177 |
"domain στην ιδιότητα 'ftpinfo'."
|
178 |
|
179 |
+
#: lib/wfu_constants.php:51
|
180 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
181 |
msgstr "Σφάλμα. Μη έγκυρες πληροφορίες ftp. Ελέγξτε την ιδιότητα 'ftpinfo'."
|
182 |
|
183 |
+
#: lib/wfu_constants.php:52
|
184 |
msgid ""
|
185 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
186 |
"syntax."
|
188 |
"Σφάλμα. Δεν ήταν δυνατή η εξαγωγή πληροφοριών ftp από την ιδιότητα "
|
189 |
"'ftpinfo'. Ελέγξτε τη σύνταξή της."
|
190 |
|
191 |
+
#: lib/wfu_constants.php:53
|
192 |
msgid ""
|
193 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
194 |
"attribute."
|
196 |
"Σφάλμα. Δεν ήταν δυνατή η επίλυση του ονόματος αρχείου προορισμού ftp. "
|
197 |
"Ελέγξτε το domain στην ιδιότητα 'ftpinfo'."
|
198 |
|
199 |
+
#: lib/wfu_constants.php:54
|
200 |
msgid ""
|
201 |
"Error. Could not open source file for ftp upload. Check if file is "
|
202 |
"accessible."
|
204 |
"Σφάλμα. Δεν ήταν δυνατό το άνοιγμα του πηγαίου αρχείου για ftp μεταφόρτωση. "
|
205 |
"Ελέγξτε αν το αρχείο είναι προσβάσιμο."
|
206 |
|
207 |
+
#: lib/wfu_constants.php:55
|
208 |
msgid "Error. Could not send data to ftp target file."
|
209 |
msgstr ""
|
210 |
"Σφάλμα. Δεν ήταν δυνατή η αποστολή δεδομένων στο ftp αρχείο προορισμού."
|
211 |
|
212 |
+
#: lib/wfu_constants.php:56
|
213 |
msgid ""
|
214 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
215 |
"attribute."
|
217 |
"Σφάλμα. Δεν ήταν δυνατή η σύνδεση στο φιλοξενητή ftp. Ελέγξτε το όνομα χώρου "
|
218 |
"στην ιδιότητα 'ftpinfo'."
|
219 |
|
220 |
+
#: lib/wfu_constants.php:57
|
221 |
msgid ""
|
222 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
223 |
"'ftpinfo' attribute."
|
225 |
"Σφάλμα. Δεν ήταν δυνατή η αυθεντικοποίηση στο φιλοξενητή ftp. Ελέγξτε το "
|
226 |
"όνομα χρήστη και κωδικό στην ιδιότητα 'ftpinfo'."
|
227 |
|
228 |
+
#: lib/wfu_constants.php:58
|
229 |
msgid ""
|
230 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
231 |
"supports sftp."
|
233 |
"Σφάλμα. Δεν ήταν δυνατή η αρχικοποίηση του υποσυστήματος sftp. Παρακαλώ "
|
234 |
"ελέγξτε αν ο εξυπηρετητής υποστηρίζει sftp."
|
235 |
|
236 |
+
#: lib/wfu_constants.php:59
|
237 |
msgid "Error. The web server does not support sftp."
|
238 |
msgstr "Σφάλμα. Ο εξυπηρετητής web δεν υποστηρίζει sftp."
|
239 |
|
240 |
+
#: lib/wfu_constants.php:60
|
241 |
msgid ""
|
242 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
243 |
"preventing the upload of big files.\n"
|
247 |
"εμποδίζει την αποστολή μεγάλων αρχείων.\n"
|
248 |
"Το όριο της PHP ιδιότητας upload_max_filesize είναι:"
|
249 |
|
250 |
+
#: lib/wfu_constants.php:61
|
251 |
msgid ""
|
252 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
253 |
"upload of big files.\n"
|
257 |
"εμποδίζει την αποστολή μεγάλων αρχείων.\n"
|
258 |
"Το όριο της PHP ιδιότητας max_input_time είναι:"
|
259 |
|
260 |
+
#: lib/wfu_constants.php:62
|
261 |
msgid ""
|
262 |
"Error. Permission denied to write to target folder.\n"
|
263 |
"Check and correct read/write permissions of target folder."
|
265 |
"Σφάλμα. Δεν επιτρέπεται η εγραφή στο φάκελο προορισμού.\n"
|
266 |
"Ελέγξτε και διορθώστε τα δικαιώματα ανάγνωσης/εγγραφής στο φάκελο προορισμού."
|
267 |
|
268 |
+
#: lib/wfu_constants.php:63
|
269 |
msgid ""
|
270 |
"Error. This file was rejected because its extension is not correct. Its "
|
271 |
"proper filename is: "
|
273 |
"Σφάλμα. Το αρχείο απορρίφθηκε διότι η επέκτασή του δεν είναι σωστή. Το σωστό "
|
274 |
"του όνομα είναι: "
|
275 |
|
276 |
+
#: lib/wfu_constants.php:64
|
277 |
msgid ""
|
278 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
279 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
284 |
"απορρίφθηκε. Παρακαλώ ελέγξτε το αρχείο καταγραφής των αποστελλόμενων "
|
285 |
"αρχείων για ύποπτη συμπεριφορά."
|
286 |
|
287 |
+
#: lib/wfu_constants.php:65
|
288 |
msgid ""
|
289 |
"File not uploaded in order to prevent overflow of the website. Please "
|
290 |
"contact administrator."
|
292 |
"Το αρχείο δεν απεστάλλη προκειμένου να αποφευχθεί υπερφόρτωση της "
|
293 |
"ιστοσελίδας. Παρακαλώ επικοινωνήστε με το διαχειριστή."
|
294 |
|
295 |
+
#: lib/wfu_constants.php:66
|
296 |
msgid "Target folder doesn't exist."
|
297 |
msgstr "Ο φάκελος προορισμού δεν υπάρχει."
|
298 |
|
299 |
+
#: lib/wfu_constants.php:67
|
300 |
msgid "Upload failed! Missing a temporary folder."
|
301 |
msgstr "Η αποστολή απέτυχε! Λείπει ο προσωρινός φάκελος."
|
302 |
|
303 |
+
#: lib/wfu_constants.php:68
|
304 |
msgid "Upload failed! Permission denied to write to target folder."
|
305 |
msgstr "Η αποστολή απέτυχε! Δεν επιτρέπεται η εγγραφή στο φάκελο προορισμού."
|
306 |
|
307 |
+
#: lib/wfu_constants.php:69
|
308 |
msgid "File not allowed."
|
309 |
msgstr "Το αρχείο δεν επιτρέπεται."
|
310 |
|
311 |
+
#: lib/wfu_constants.php:70
|
312 |
msgid "File is suspicious and was rejected."
|
313 |
msgstr "Το αρχείο είναι ύποπτο και απορρίφθηκε."
|
314 |
|
315 |
+
#: lib/wfu_constants.php:71
|
316 |
msgid "The uploaded file exceeds the file size limit."
|
317 |
msgstr "Το αποστελλόμενο αρχείο υπερβαίνει το όριο μεγέθους αρχείου."
|
318 |
|
319 |
+
#: lib/wfu_constants.php:72
|
320 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
321 |
msgstr ""
|
322 |
"Το αποστελλόμενο αρχείο υπερβαίνει τα 2GB και δεν υποστηρίζεται από τον "
|
323 |
"server."
|
324 |
|
325 |
+
#: lib/wfu_constants.php:73
|
326 |
msgid ""
|
327 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
328 |
"Please contact the administrator."
|
330 |
"Η αποστολή απέτυχε! Το αποστελλόμενο αρχείο υπερβαίνει το όριο μεγέθους "
|
331 |
"αρχείου του server. Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
332 |
|
333 |
+
#: lib/wfu_constants.php:74
|
334 |
msgid ""
|
335 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
336 |
"server. Please contact the administrator."
|
338 |
"Η αποστολή απέτυχε! Η διάρκεια αποστολής υπερέβη το όριο χρόνου του server. "
|
339 |
"Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
340 |
|
341 |
+
#: lib/wfu_constants.php:75
|
342 |
msgid ""
|
343 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
344 |
"was specified in the HTML form."
|
346 |
"Η αποστολή απέτυχε! Το αποστελλόμενο αρχείο υπερβαίνει την ιδιότητα "
|
347 |
"MAX_FILE_SIZE που ορίστηκε στη φόρμα HTML."
|
348 |
|
349 |
+
#: lib/wfu_constants.php:76
|
350 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
351 |
msgstr "Η αποστολή απέτυχε: Το αποστελλόμενο αρχείο απεστάλλη μερικώς."
|
352 |
|
353 |
+
#: lib/wfu_constants.php:77
|
354 |
msgid "Upload failed! No file was uploaded."
|
355 |
msgstr "Η αποστολή απέτυχε. Κανένα αρχείο δεν απεστάλη."
|
356 |
|
357 |
+
#: lib/wfu_constants.php:78
|
358 |
msgid "Upload failed! Failed to write file to disk."
|
359 |
msgstr "Η αποστολή απέτυχε. Δεν κατέστη δυνατή η εγγραφή στο δίσκο."
|
360 |
|
361 |
+
#: lib/wfu_constants.php:79
|
362 |
msgid ""
|
363 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
364 |
"administrator."
|
366 |
"Η αποστολή απέτυχε! Ένα σφάλμα συνέβη κατά τη μετακίνηση του προσωρινού "
|
367 |
"αρχείου. Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
368 |
|
369 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
370 |
msgid "Upload cancelled!"
|
371 |
msgstr "Η αποστολή ακυρώθηκε!"
|
372 |
|
373 |
+
#: lib/wfu_constants.php:81
|
374 |
msgid ""
|
375 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
376 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
381 |
"εξέταση της λίστας των επεκτάσεων που έχουν φορτωθεί με την phpinfo() να "
|
382 |
"βοηθήσει."
|
383 |
|
384 |
+
#: lib/wfu_constants.php:82
|
385 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
386 |
msgstr ""
|
387 |
"Η αποστολή απέτυχε! Συνέβη κάποιο σφάλμα κατά την αποστολή του αρχείου."
|
388 |
|
389 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
390 |
msgid "Upload failed!"
|
391 |
msgstr "Η αποστολή απέτυχε!"
|
392 |
|
393 |
+
#: lib/wfu_constants.php:84
|
394 |
msgid "No file!"
|
395 |
msgstr "Κανένα αρχείο!"
|
396 |
|
397 |
+
#: lib/wfu_constants.php:85
|
398 |
msgid ""
|
399 |
"Upload failed! The upload has been canceled by the user or the browser "
|
400 |
"dropped the connection."
|
402 |
"Η αποστολή απέτυχε! Είτε η αποστολή ακυρώθηκε από το χρήστη ή ο browser "
|
403 |
"έχασε τη σύνδεση."
|
404 |
|
405 |
+
#: lib/wfu_constants.php:86
|
406 |
msgid "Upload failed! Unknown error."
|
407 |
msgstr "Η αποστολή απέτυχε! Άγνωστο σφάλμα."
|
408 |
|
409 |
+
#: lib/wfu_constants.php:87
|
410 |
msgid "Please contact the administrator."
|
411 |
msgstr "Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
412 |
|
413 |
+
#: lib/wfu_constants.php:88
|
414 |
msgid "No result from remote server!"
|
415 |
msgstr "Καμία απάντηση από τον απομακρυσμένο server!"
|
416 |
|
417 |
+
#: lib/wfu_constants.php:89
|
418 |
msgid " but with warnings"
|
419 |
msgstr " αλλά με προειδοποιήσεις"
|
420 |
|
421 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
422 |
msgid "Warning: JSON parse error."
|
423 |
msgstr "Προειδοποίηση: Σφάλμα μετατροπής JSON."
|
424 |
|
425 |
+
#: lib/wfu_constants.php:91
|
426 |
msgid ""
|
427 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
428 |
"not be parsed."
|
430 |
"Οι παράμετροι αποστολής αυτού του αρχείου, οι οποίες πέρασαν στο χειριστή ως "
|
431 |
"συμβολοσειρά JSON, δεν μπόρεσαν να μετατραπούν."
|
432 |
|
433 |
+
#: lib/wfu_constants.php:93
|
434 |
msgid ""
|
435 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
436 |
msgstr ""
|
437 |
"Το αντικείμενο UploadStates, το οποίο πέρασε στο χειριστή ως συμβολοσειρά "
|
438 |
"JSON, δεν μπόρεσε να μετατραπεί."
|
439 |
|
440 |
+
#: lib/wfu_constants.php:94
|
441 |
msgid ""
|
442 |
"Redirection to classic form functionality occurred due to unknown error."
|
443 |
msgstr "Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας λόγω σφάλματος."
|
444 |
|
445 |
+
#: lib/wfu_constants.php:95
|
446 |
msgid ""
|
447 |
"Redirection to classic form functionality occurred because AJAX is not "
|
448 |
"supported."
|
450 |
"Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας διότι δεν υποστηρίζεται η "
|
451 |
"AJAX."
|
452 |
|
453 |
+
#: lib/wfu_constants.php:96
|
454 |
msgid ""
|
455 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
456 |
"supported."
|
458 |
"Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας διότι δεν υποστηρίζεται η "
|
459 |
"HTML5."
|
460 |
|
461 |
+
#: lib/wfu_constants.php:97
|
462 |
msgid ""
|
463 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
464 |
msgstr ""
|
465 |
"Προκλήθηκε μετάπτωση σε λειτουργία κλασικής φόρμας λόγω σφάλματος μετατροπής "
|
466 |
"JSON."
|
467 |
|
468 |
+
#: lib/wfu_constants.php:98
|
469 |
msgid "Please enable popup windows from the browser's settings!"
|
470 |
msgstr ""
|
471 |
"Παρακαλούμε ενεργοποιήστε τα αναδυόμενα παράθυρα από τις ρυθμίσεις του "
|
472 |
"προγράμματος περιήγησης!"
|
473 |
|
474 |
+
#: lib/wfu_constants.php:99
|
475 |
msgid "cannot be empty!"
|
476 |
msgstr "δεν μπορεί να είναι κενό!"
|
477 |
|
478 |
+
#: lib/wfu_constants.php:100
|
479 |
msgid "number not valid!"
|
480 |
msgstr "μη έγκυρος αριθμός!"
|
481 |
|
482 |
+
#: lib/wfu_constants.php:101
|
483 |
msgid "email not valid!"
|
484 |
msgstr "το email δεν είναι έγκυρο!"
|
485 |
|
486 |
+
#: lib/wfu_constants.php:102
|
487 |
msgid "emails do not match!"
|
488 |
msgstr "τα emails δεν ταιριάζουν!"
|
489 |
|
490 |
+
#: lib/wfu_constants.php:103
|
491 |
msgid "no base email field in group!"
|
492 |
msgstr "δεν υπάρχει αρχικό πεδίο email στο group!"
|
493 |
|
494 |
+
#: lib/wfu_constants.php:104
|
495 |
msgid "passwords do not match!"
|
496 |
msgstr "οι κωδικοί δεν ταιριάζουν!"
|
497 |
|
498 |
+
#: lib/wfu_constants.php:105
|
499 |
msgid "no base password field in group!"
|
500 |
msgstr "δεν υπάρχει αρχικό πεδίο κωδικού στο group!"
|
501 |
|
502 |
+
#: lib/wfu_constants.php:106
|
503 |
msgid "checkbox unchecked!"
|
504 |
msgstr "το checkbox είναι μη επιλεγμένο!"
|
505 |
|
506 |
+
#: lib/wfu_constants.php:107
|
507 |
msgid "no option selected!"
|
508 |
msgstr "δεν έχει γίνει επιλογή!"
|
509 |
|
510 |
+
#: lib/wfu_constants.php:108
|
511 |
msgid "no item selected!"
|
512 |
msgstr "δεν έχει γίνει επιλογή!"
|
513 |
|
514 |
+
#: lib/wfu_constants.php:109
|
515 |
msgid ""
|
516 |
"There are more than one instances of the plugin in this page with the same "
|
517 |
"id. Please change it."
|
519 |
"Υπάρχουν περισσότερες από μία εμφανίσεις του plugin σε αυτή τη σελίδα με το "
|
520 |
"ίδιο id. Παρακαλούμε να το αλλάξετε."
|
521 |
|
522 |
+
#: lib/wfu_constants.php:110
|
523 |
msgid ""
|
524 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
525 |
"the page."
|
527 |
"Δεν είναι δυνατή η επεξεργασία του shortcode διότι η σελίδα τροποποιήθηκε. "
|
528 |
"Παρακαλούμε ξαναφορτώστε τη σελίδα."
|
529 |
|
530 |
+
#: lib/wfu_constants.php:111
|
531 |
msgid "Your browser does not support webcam capture!"
|
532 |
msgstr "Ο browser σας δεν υποστηρίζει κάμερα!"
|
533 |
|
534 |
+
#: lib/wfu_constants.php:112
|
535 |
msgid "Your browser does not support video recording from the webcam!"
|
536 |
msgstr "Ο browsers σας δεν υποστηρίζει εγγραφή video από την κάμερα!"
|
537 |
|
538 |
+
#: lib/wfu_constants.php:113
|
539 |
msgid "No video was recorded!"
|
540 |
msgstr "Δεν καταγράφηκε video!"
|
541 |
|
542 |
+
#: lib/wfu_constants.php:114
|
543 |
msgid ""
|
544 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
545 |
"or use RecaptchaV2 (no account)."
|
547 |
"ΣΦΑΛΜΑ: Δεν υποστηρίζεται το captcha. Έχετε παλαιά έκδοση της PHP. "
|
548 |
"Αναβαθμίστε την PHP ή χρησιμοποιήστε την επιλογή RecaptchaV2 (no account)."
|
549 |
|
550 |
+
#: lib/wfu_constants.php:115
|
551 |
msgid ""
|
552 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
553 |
"notify administrator."
|
555 |
"ΣΦΑΛΜΑ: Μόνο μία εμφάνιση του RecaptchaV1 μπορεί να υπάρχει στην ίδια "
|
556 |
"σελίδα. Παρακαλούμε ειδοποιείστε το διαχειριστή."
|
557 |
|
558 |
+
#: lib/wfu_constants.php:116
|
559 |
msgid ""
|
560 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
561 |
"use RecaptchaV1 (no account)."
|
563 |
"ΣΦΑΛΜΑ: Μόνο μία εμφάνιση του RecaptchaV1 μπορεί να υπάρχει στην ίδια "
|
564 |
"σελίδα. Παρακαλούμε χρησιμοποιείστε το RecaptchaV1 (no account)."
|
565 |
|
566 |
+
#: lib/wfu_constants.php:117
|
567 |
msgid "ERROR: No site key. Please contact administrator!"
|
568 |
msgstr ""
|
569 |
"ΣΦΑΛΜΑ: Δεν υπάρχει κλειδί site. Παρακαλούμε επικοινωνήστε με το διαχειριστή."
|
570 |
|
571 |
+
#: lib/wfu_constants.php:118
|
572 |
msgid ""
|
573 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
574 |
"define Google Recaptcha keys."
|
576 |
"ΣΦΑΛΜΑ: Δεν ορίστηκε κλειδί site! Παρακαλούμε πηγαίνεται στις επιλογές του "
|
577 |
"plugin στο Dashboard για να ορίσετε κλειδιά του Google Recaptcha."
|
578 |
|
579 |
+
#: lib/wfu_constants.php:119
|
580 |
msgid "Bad captcha image!"
|
581 |
msgstr "Μη έγκυρη εικόνα captcha!"
|
582 |
|
583 |
+
#: lib/wfu_constants.php:120
|
584 |
msgid "No input!"
|
585 |
msgstr "Κενό!"
|
586 |
|
587 |
+
#: lib/wfu_constants.php:121
|
588 |
msgid "Captcha not completed!"
|
589 |
msgstr "Το captcha δε συμπληρώθηκε!"
|
590 |
|
591 |
+
#: lib/wfu_constants.php:122
|
592 |
msgid "Wrong captcha!"
|
593 |
msgstr "Λάθος captcha!"
|
594 |
|
595 |
+
#: lib/wfu_constants.php:123
|
596 |
msgid "Error refreshing captcha!"
|
597 |
msgstr "Σφάλμα ανανέωσης του captcha!"
|
598 |
|
599 |
+
#: lib/wfu_constants.php:124
|
600 |
msgid "Unknown captcha error!"
|
601 |
msgstr "Άγνωστο σφάλμα captcha!"
|
602 |
|
603 |
+
#: lib/wfu_constants.php:125
|
604 |
msgid "Captcha not supported by your browser!"
|
605 |
msgstr "Το captcha δεν υποστηρίζεται από το browser σας!"
|
606 |
|
607 |
+
#: lib/wfu_constants.php:126
|
608 |
msgid "the secret parameter is missing"
|
609 |
msgstr "η μυστική παράμετρος λείπει"
|
610 |
|
611 |
+
#: lib/wfu_constants.php:127
|
612 |
msgid "the secret parameter is invalid or malformed"
|
613 |
msgstr "η μυστική παράμετρος είναι μη έγκυρη ή δεν ορίστηκε σωστά"
|
614 |
|
615 |
+
#: lib/wfu_constants.php:128
|
616 |
msgid "the response parameter is missing"
|
617 |
msgstr "η παράμετρος απάντησης λείπει"
|
618 |
|
619 |
+
#: lib/wfu_constants.php:129
|
620 |
msgid "the response parameter is invalid or malformed"
|
621 |
msgstr "η παράμετρος απάντησης είναι μη έγκυρη ή δεν ορίστηκε σωστά"
|
622 |
|
623 |
+
#: lib/wfu_constants.php:130
|
624 |
msgid "Please do not use drag drop due to an internal problem."
|
625 |
msgstr ""
|
626 |
"Παρακαλούμε μη χρησιμοποιείτε το drag drop λόγω εσωτερικού προβλήματος."
|
627 |
|
628 |
+
#: lib/wfu_constants.php:131
|
629 |
#, php-format
|
630 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
631 |
msgstr ""
|
632 |
"Σφάλμα κατά τη διάρκεια τμηματικής αποστολής. Το μοναδικό ID είναι κενό στο "
|
633 |
"τμήμα %d"
|
634 |
|
635 |
+
#: lib/wfu_constants.php:132
|
636 |
msgid "Chunked upload is not allowed!"
|
637 |
msgstr "Δεν επιτρέπεται τμηματική αποστολή!"
|
638 |
|
639 |
+
#: lib/wfu_constants.php:133
|
640 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
641 |
msgstr "Η τμηματική αποστολή ματαιώθηκε λόγω σφάλματος στο προηγούμενο τμήμα!"
|
642 |
|
643 |
+
#: lib/wfu_constants.php:134
|
644 |
msgid "Chunked upload failed, final file could not be created!"
|
645 |
msgstr ""
|
646 |
"Η τμηματική αποστολή ματαιώθηκε, το τελικό αρχείο δεν μπόρεσε να "
|
647 |
"δημιουργηθεί!"
|
648 |
|
649 |
+
#: lib/wfu_constants.php:135
|
650 |
#, php-format
|
651 |
msgid "Could not write file chuck to destination on chunk %d"
|
652 |
msgstr "Δεν ήταν δυνατή η εγγραφή τμήματος αρχείου στον προορισμό στο τμήμα %d"
|
653 |
|
654 |
+
#: lib/wfu_constants.php:136
|
655 |
#, php-format
|
656 |
msgid "Could not enlarge destination file on chunk %d"
|
657 |
msgstr "Δεν ήταν δυνατή η μεγέθυνση του αρχείου προορισμού στο τμήμα %d"
|
658 |
|
659 |
+
#: lib/wfu_constants.php:137
|
660 |
#, php-format
|
661 |
msgid "Could not open file handles on chunk %d"
|
662 |
msgstr "Δεν ήταν δυνατό το άνοιγμα χειριστών αρχείου στο τμήμα %d"
|
663 |
|
664 |
+
#: lib/wfu_constants.php:138
|
665 |
msgid "You are not allowed to download this file!"
|
666 |
msgstr "Δεν επιτρέπεται να κατεβάσετε αυτό το αρχείο!"
|
667 |
|
668 |
+
#: lib/wfu_constants.php:139
|
669 |
msgid "File does not exist!"
|
670 |
msgstr "Το αρχείο δεν υπάρχει!"
|
671 |
|
672 |
+
#: lib/wfu_constants.php:140
|
673 |
msgid "Could not download file!"
|
674 |
msgstr "Δεν ήταν δυνατό το κατέβασμα του αρχείου!"
|
675 |
|
676 |
+
#: lib/wfu_constants.php:141
|
677 |
msgid "You are not allowed to delete this file!"
|
678 |
msgstr "Δεν επιτρέπεται η διαγραφή αυτού του αρχείου!"
|
679 |
|
680 |
+
#: lib/wfu_constants.php:142
|
681 |
msgid "File was not deleted!"
|
682 |
msgstr "Το αρχείο δε διαγράφηκε!"
|
683 |
|
684 |
+
#: lib/wfu_constants.php:143
|
685 |
msgid "No file was deleted!"
|
686 |
msgstr "Δε διαγράφηκε κανένα αρχείο!"
|
687 |
|
688 |
+
#: lib/wfu_constants.php:144
|
689 |
msgid "Some files were not deleted!"
|
690 |
msgstr "Μερικά αρχεία δε διαγράφηκαν!"
|
691 |
|
692 |
+
#: lib/wfu_constants.php:146
|
693 |
msgid "Upload skipped! File already exists."
|
694 |
msgstr "Η αποστολή παραβλέφθηκε! Το αρχείο υπάρχει ήδη."
|
695 |
|
696 |
+
#: lib/wfu_constants.php:147
|
697 |
msgid "The extension of the file does not match its contents."
|
698 |
msgstr "Η επέκταση του αρχείου δεν ταιριάζει με τα περιεχόμενά του."
|
699 |
|
700 |
+
#: lib/wfu_constants.php:148
|
701 |
msgid ""
|
702 |
"Upload succeeded but the file is suspicious because its contents do not "
|
703 |
"match its extension. Its proper filename is: "
|
705 |
"Η αποστολή ήταν επιτυχής αλλά το αρχείο είναι ύποπτο διότι τα περιεχόμενά "
|
706 |
"του δεν ταιριάζουν με την επέκτασή του. Το σωστό του όνομα είναι: "
|
707 |
|
708 |
+
#: lib/wfu_constants.php:149
|
709 |
msgid "No files have been selected!"
|
710 |
msgstr "Δεν επιλέχθηκαν αρχεία!"
|
711 |
|
712 |
+
#: lib/wfu_constants.php:150
|
713 |
msgid "Please complete the consent question before continuing the upload!"
|
714 |
msgstr ""
|
715 |
"Παρακαλώ απαντήστε στην ερώτηση συναίνεσης για να επιτραπεί η αποστολή!"
|
716 |
|
717 |
+
#: lib/wfu_constants.php:151
|
718 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
719 |
msgstr "Το plugin WPFilebase δεν ενημερώθηκε διότι δεν απεστάλη κανένα αρχείο."
|
720 |
|
721 |
+
#: lib/wfu_constants.php:152
|
722 |
msgid "Notification email was not sent because there were no files uploaded."
|
723 |
msgstr ""
|
724 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν απεστάλη κανένα αρχείο."
|
725 |
|
726 |
+
#: lib/wfu_constants.php:153
|
727 |
msgid ""
|
728 |
"Notification email was not sent because no recipients were defined. Please "
|
729 |
"check notifyrecipients attribute in the shortcode."
|
731 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email διότι δεν ορίστηκαν παραλήπτες. "
|
732 |
"Παρακαλούμε ελέγξτε την ιδιότητα notifyrecipients στο shortcode."
|
733 |
|
734 |
+
#: lib/wfu_constants.php:154
|
735 |
msgid ""
|
736 |
"Notification email was not sent due to an error. Please check "
|
737 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
739 |
"Δεν πραγματοποιήθηκε ειδοποίηση με email λόγω σφάλματος. Παρακαλούμε ελέγξτε "
|
740 |
"τις ιδιότητες notifyrecipients, notifysubject και notifymessage για σφάλματα."
|
741 |
|
742 |
+
#: lib/wfu_constants.php:155
|
743 |
msgid ""
|
744 |
"Redirection not executed because redirection link is empty. Please check "
|
745 |
"redirectlink attribute."
|
747 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι ο σύνδεσμος αναδρομολόγησης είναι "
|
748 |
"κενός. Παρακαλούμε ελέγξτε την ιδιότητα redirectlink."
|
749 |
|
750 |
+
#: lib/wfu_constants.php:156
|
751 |
msgid ""
|
752 |
"Redirection not executed because not all files were successfully uploaded."
|
753 |
msgstr ""
|
754 |
"Δεν πραγματοποιήθηκε αναδρομολόγηση διότι δεν αποεστάλησαν όλα τα αρχεία "
|
755 |
"επιτυχώς."
|
756 |
|
757 |
+
#: lib/wfu_constants.php:157
|
758 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
759 |
msgstr "Πιθανή Επίθεση Τύπου Denial-Of-Service στο {SITE}"
|
760 |
|
761 |
+
#: lib/wfu_constants.php:158
|
762 |
msgid ""
|
763 |
"Hello admin\n"
|
764 |
"\n"
|
795 |
"\n"
|
796 |
"Ευχαριστώ"
|
797 |
|
798 |
+
#: lib/wfu_constants.php:159
|
799 |
msgid ""
|
800 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
801 |
"details please contact info@iptanus.com."
|
803 |
"Έχετε ενεργοποιήσει έναν εναλλακτικό μη ασφαλή Iptanus Services Server. Για "
|
804 |
"λεπτομέρειες παρακαλούμε επικοινωνήστε με το info@iptanus.com."
|
805 |
|
806 |
+
#: lib/wfu_constants.php:160
|
807 |
msgid ""
|
808 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
809 |
"plugin functions. Please read this :article: for resolution."
|
812 |
"προκαλέσει προβλήματα σε κάποιες λειτουργίες του plugin. Παρακαλούμε "
|
813 |
"διαβάστε αυτό το :άρθρο: για επιδιόρθωση."
|
814 |
|
815 |
+
#: lib/wfu_constants.php:162
|
816 |
msgid ""
|
817 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
818 |
"message persists, contact administrator."
|
820 |
"Δεν κατέστη δυνατή η προσθήκη του shortcode στη σελίδα / άρθρο. Παρακαλώ "
|
821 |
"προσπάθησε ξανά. Αν το μήνυμα συνεχίζει, επικοινωνήστε με το διαχειριστή."
|
822 |
|
823 |
+
#: lib/wfu_constants.php:163
|
824 |
msgid ""
|
825 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
826 |
"again to edit the shortcode."
|
828 |
"Δεν ήταν δυνατή η επεξεργασία του shortcode διότι τα περιεχόμενα της σελίδας "
|
829 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να επεξεργαστείτε το shortcode."
|
830 |
|
831 |
+
#: lib/wfu_constants.php:164
|
832 |
msgid ""
|
833 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
834 |
"again to delete it."
|
836 |
"Δεν ήταν δυνατή η διαγραφή του shortcode διότι τα περιεχόμενα της σελίδας "
|
837 |
"άλλαξαν. Παρακαλούμε δοκιμάστε ξανά να διαγράψετε το shortcode."
|
838 |
|
839 |
+
#: lib/wfu_constants.php:165
|
840 |
msgid ""
|
841 |
"The page containing the shortcode has been modified and it is no longer "
|
842 |
"valid. Please go back to reload the shortcode."
|
844 |
"Η σελίδα που περιέχει το shortcode τροποποιήθηκε και δεν είναι πλέον σε "
|
845 |
"ισχύ. Παρακαλούμε πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
846 |
|
847 |
+
#: lib/wfu_constants.php:166
|
848 |
msgid ""
|
849 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
850 |
"back to reload the shortcode."
|
852 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode διότι τα περιεχόμενα της σελίδας "
|
853 |
"άλλαξαν. Πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
854 |
|
855 |
+
#: lib/wfu_constants.php:167
|
856 |
msgid ""
|
857 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
858 |
"go back and reload the shortcode."
|
860 |
"Δεν ήταν δυνατή η ενημέρωση του shortcode. Παρακαλούμε ξαναδοκιμάστε. Αν το "
|
861 |
"πρόβλημα παραμείνει, πηγαίνετε πίσω και ξαναφορτώστε το shortcode."
|
862 |
|
863 |
+
#: lib/wfu_constants.php:169
|
864 |
msgid "This is a test message"
|
865 |
msgstr "Αυτό είναι ένα μήνυμα ελέγχου"
|
866 |
|
867 |
+
#: lib/wfu_constants.php:170
|
868 |
msgid "This is a test administrator message"
|
869 |
msgstr "Αυτό είναι ένα μήνυμα διαχειριστή ελέγχου"
|
870 |
|
871 |
+
#: lib/wfu_constants.php:171
|
872 |
msgid "File testfile 1 under test"
|
873 |
msgstr "Αρχείο testfile 1 υπό έλεγχο"
|
874 |
|
875 |
+
#: lib/wfu_constants.php:172
|
876 |
msgid "File testfile 1 message"
|
877 |
msgstr "Μήνυμα αρχείου testfile 1"
|
878 |
|
879 |
+
#: lib/wfu_constants.php:173
|
880 |
msgid "File testfile 1 administrator message"
|
881 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 1"
|
882 |
|
883 |
+
#: lib/wfu_constants.php:174
|
884 |
msgid "File testfile 2 under test"
|
885 |
msgstr "Αρχείο testfile 2 υπό έλεγχο"
|
886 |
|
887 |
+
#: lib/wfu_constants.php:175
|
888 |
msgid "File testfile 2 message"
|
889 |
msgstr "Μήνυμα αρχείου testfile 2"
|
890 |
|
891 |
+
#: lib/wfu_constants.php:176
|
892 |
msgid "File testfile 2 administrator message"
|
893 |
msgstr "Μήνυμα διαχειριστή αρχείου testfile 2"
|
894 |
|
895 |
+
#: lib/wfu_constants.php:178
|
896 |
msgid ""
|
897 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
898 |
"current user."
|
900 |
"Εισάγετε τη μεταβλητή %userid% στο κείμενο. Θα αντικατασταθεί από το id του "
|
901 |
"τρέχοντος χρήστη."
|
902 |
|
903 |
+
#: lib/wfu_constants.php:179
|
904 |
msgid ""
|
905 |
"Insert variable %username% inside text. It will be replaced by the username "
|
906 |
"of the current user."
|
908 |
"Εισάγετε τη μεταβλητή %username% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
909 |
"του τρέχοντος χρήστη."
|
910 |
|
911 |
+
#: lib/wfu_constants.php:180
|
912 |
msgid ""
|
913 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
914 |
"the current user."
|
916 |
"Εισάγετε τη μεταβλητή %useremail% στο κείμενο. Θα αντικατασταθεί από το "
|
917 |
"email του τρέχοντος χρήστη."
|
918 |
|
919 |
+
#: lib/wfu_constants.php:181
|
920 |
msgid ""
|
921 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
922 |
"of the uploaded file."
|
924 |
"Εισάγετε τη μεταβλητή %filename% στο κείμενο. Θα αντικατασταθεί από το όνομα "
|
925 |
"του αποστελλομένου αρχείου."
|
926 |
|
927 |
+
#: lib/wfu_constants.php:182
|
928 |
msgid ""
|
929 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
930 |
"filepath of the uploaded file."
|
932 |
"Εισάγετε τη μεταβλητή %filepath% στο κείμενο. Θα αντικατασταθεί από την "
|
933 |
"πλήρη διαδρομή του αποστελλομένου αρχείου."
|
934 |
|
935 |
+
#: lib/wfu_constants.php:183
|
936 |
msgid ""
|
937 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
938 |
"the website."
|
940 |
"Εισάγετε τη μεταβλητή %blogid% στο κείμενο. Θα αντικατασταθεί από το blog id "
|
941 |
"της ιστοσελίδας."
|
942 |
|
943 |
+
#: lib/wfu_constants.php:184
|
944 |
msgid ""
|
945 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
946 |
"current page."
|
948 |
"Εισάγετε τη μεταβλητή %pageid% στο κείμενο. Θα αντικατασταθεί από το id της "
|
949 |
"τρέχουσας σελίδας."
|
950 |
|
951 |
+
#: lib/wfu_constants.php:185
|
952 |
msgid ""
|
953 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
954 |
"the current page."
|
956 |
"Εισάγετε τη μεταβλητή %pagetitle% στο κείμενο. Θα αντικατασταθεί από τον "
|
957 |
"τίτλο της τρέχουσας σελίδας."
|
958 |
|
959 |
+
#: lib/wfu_constants.php:186
|
960 |
msgid ""
|
961 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
962 |
"drop-down list. It will be replaced by the value that the user entered in "
|
966 |
"από την εμφανιζόμενη dropdown λίστα. Θα αντικατασταθεί από την τιμή που "
|
967 |
"εισήγαγε ο χρήστης σε αυτό το πεδίο."
|
968 |
|
969 |
+
#: lib/wfu_constants.php:187
|
970 |
msgid "Insert variable %n% inside text to denote a line change."
|
971 |
msgstr ""
|
972 |
"Εισάγετε τη μεταβλητή %n% στο κείμενο για να υποδείξετε αλλαγή γραμμής."
|
973 |
|
974 |
+
#: lib/wfu_constants.php:189
|
975 |
+
#, php-format
|
976 |
+
msgid "File %filename% uploaded successfully but not saved"
|
977 |
+
msgstr "Το αρχείο %filename% μεταφορτώθηκε αλλά δεν αποθηκεύτηκε"
|
978 |
+
|
979 |
+
#: lib/wfu_constants.php:190
|
980 |
msgid "Test Mode"
|
981 |
msgstr "Κατάσταση Ελέγχου"
|
982 |
|
983 |
+
#: lib/wfu_constants.php:191
|
984 |
msgid "select dir..."
|
985 |
msgstr "επιλογή καταλόγου..."
|
986 |
|
987 |
+
#: lib/wfu_constants.php:192
|
988 |
msgid "type dir"
|
989 |
msgstr "εισάγετε κατάλογο"
|
990 |
|
991 |
+
#: lib/wfu_constants.php:193
|
992 |
msgid "Upload path: %filepath%"
|
993 |
msgstr "Διαδρομή προορισμού: %filepath%"
|
994 |
|
995 |
+
#: lib/wfu_constants.php:194
|
996 |
msgid "Failed upload path: %filepath%"
|
997 |
msgstr "Εσφαλμένη διαδρομή προορισμού: %filepath%"
|
998 |
|
999 |
+
#: lib/wfu_constants.php:195
|
1000 |
msgid " (required)"
|
1001 |
msgstr " (απαραίτητο)"
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:196
|
1004 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
1005 |
msgstr ""
|
1006 |
"Υπάρχουν αρχεία που αποστέλλονται. Σίγουρα θέλετε να φύγετε από τη σελίδα;"
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:197
|
1009 |
msgid "checking captcha..."
|
1010 |
msgstr "έλεγχος captcha..."
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:198
|
1013 |
msgid "refreshing..."
|
1014 |
msgstr "ανανέωση..."
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:199
|
1017 |
msgid "correct captcha"
|
1018 |
msgstr "σωστό captcha"
|
1019 |
|
1020 |
+
#: lib/wfu_constants.php:200
|
1021 |
msgid "click to continue the upload"
|
1022 |
msgstr "πατήστε click για να συνεχίσει η αποστολή"
|
1023 |
|
1024 |
+
#: lib/wfu_constants.php:201
|
1025 |
msgid "Are you sure you want to delete this file?"
|
1026 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το αρχείο;"
|
1027 |
|
1028 |
+
#: lib/wfu_constants.php:202
|
1029 |
msgid "Are you sure you want to delete these files?"
|
1030 |
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτά τα αρχεία;"
|
1031 |
|
1032 |
+
#: lib/wfu_constants.php:203
|
1033 |
msgid "Bulk Actions"
|
1034 |
msgstr "Μαζικές Ενέργειες"
|
1035 |
|
1036 |
+
#: lib/wfu_constants.php:204
|
1037 |
msgid "Apply"
|
1038 |
msgstr "Εκτέλεση"
|
1039 |
|
1040 |
+
#: lib/wfu_constants.php:206
|
1041 |
msgid "of "
|
1042 |
msgstr "από "
|
1043 |
|
1044 |
+
#: lib/wfu_constants.php:207
|
1045 |
msgid "Are you sure that you want to cancel the upload?"
|
1046 |
msgstr "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την αποστολή;"
|
1047 |
|
1048 |
+
#: lib/wfu_constants.php:208
|
1049 |
msgid "cancel upload of this file"
|
1050 |
msgstr "ακυρώστε την αποστολή αυτού του αρχείου"
|
1051 |
|
1052 |
+
#: lib/wfu_constants.php:209
|
1053 |
msgid "Upload in progress"
|
1054 |
msgstr "Αποστολή σε εξέλιξη"
|
1055 |
|
1056 |
+
#: lib/wfu_constants.php:210
|
1057 |
msgid "Upload in progress with warnings!"
|
1058 |
msgstr "Αποστολή σε εξέλιξη με προειδοποιήσεις!"
|
1059 |
|
1060 |
+
#: lib/wfu_constants.php:211
|
1061 |
msgid "Upload in progress but some files already failed!"
|
1062 |
msgstr "Αποστολή σε εξέλιξη αλλά κάποια αρχεία ήδη απέτυχαν!"
|
1063 |
|
1064 |
+
#: lib/wfu_constants.php:212
|
1065 |
msgid "Upload in progress but no files uploaded so far!"
|
1066 |
msgstr "Αποστολή σε εξέλιξη αλλά δεν απεστάλη κανένα αρχείο μέχρι τώρα!"
|
1067 |
|
1068 |
+
#: lib/wfu_constants.php:213
|
1069 |
msgid "All files uploaded successfully"
|
1070 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς"
|
1071 |
|
1072 |
+
#: lib/wfu_constants.php:214
|
1073 |
msgid "All files uploaded successfully but there are warnings!"
|
1074 |
msgstr "Όλα τα αρχεία απεστάλησαν επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
1075 |
|
1076 |
+
#: lib/wfu_constants.php:215
|
1077 |
msgid "File uploaded successfully but there are warnings!"
|
1078 |
msgstr "Το αρχείο απεστάλη επιτυχώς αλλά υπάρχουν προειδοποιήσεις!"
|
1079 |
|
1080 |
+
#: lib/wfu_constants.php:216
|
1081 |
msgid "Some files failed to upload!"
|
1082 |
msgstr "Μερικά αρχεία απέτυχαν να αποσταλούν!"
|
1083 |
|
1084 |
+
#: lib/wfu_constants.php:217
|
1085 |
msgid "All files failed to upload"
|
1086 |
msgstr "Όλα τα αρχεία απέτυχαν να αποσταλούν"
|
1087 |
|
1088 |
+
#: lib/wfu_constants.php:218
|
1089 |
msgid "File failed to upload"
|
1090 |
msgstr "Το αρχείο απέτυχε να αποσταλεί"
|
1091 |
|
1092 |
+
#: lib/wfu_constants.php:219
|
1093 |
msgid "There are no files to upload!"
|
1094 |
msgstr "Δεν υπάρχουν αρχεία για αποστολή!"
|
1095 |
|
1096 |
+
#: lib/wfu_constants.php:220
|
1097 |
msgid "Test upload message"
|
1098 |
msgstr "Μήνυμα αποστολής ελέγχου"
|
1099 |
|
1100 |
+
#: lib/wfu_constants.php:221
|
1101 |
msgid "JSON parse warning!"
|
1102 |
msgstr "Προειδοποίηση μετατροπής JSON!"
|
1103 |
|
1104 |
+
#: lib/wfu_constants.php:222
|
1105 |
msgid "please wait while redirecting..."
|
1106 |
msgstr "παρακαλούμε περιμένετε ενώ γίνεται αναδρομολόγηση..."
|
1107 |
|
1108 |
+
#: lib/wfu_constants.php:224
|
1109 |
msgid "Submitting data"
|
1110 |
msgstr "Τα δεδομένα αποστέλλονται"
|
1111 |
|
1112 |
+
#: lib/wfu_constants.php:225
|
1113 |
msgid "Data submitted successfully!"
|
1114 |
msgstr "Τα δεδομένα αποστάλθηκαν με επιτυχία!"
|
1115 |
|
1116 |
+
#: lib/wfu_constants.php:226
|
1117 |
msgid "Data were not submitted!"
|
1118 |
msgstr "Τα δεδομένα δεν αποστάλθηκαν!"
|
1119 |
|
1120 |
+
#: lib/wfu_constants.php:227
|
1121 |
msgid "Cancelling upload"
|
1122 |
msgstr "Αποστολή αρχείων σε ακύρωση"
|
1123 |
|
1124 |
+
#: lib/wfu_constants.php:229
|
1125 |
+
msgid "Upload succeeded!"
|
1126 |
+
msgstr "Η μεταφόρτωση ήταν επιτυχής!"
|
1127 |
+
|
1128 |
+
#: lib/wfu_constants.php:230
|
1129 |
+
msgid "Upload completed but no files were saved!"
|
1130 |
+
msgstr "Η μεταφόρτωση ολοκληρώθηκε αλλά κανένα αρχείο δεν αποθηκεύτηκε!"
|
1131 |
+
|
1132 |
+
#: lib/wfu_constants.php:231
|
1133 |
+
msgid "File was not saved due to personal data policy!"
|
1134 |
+
msgstr "Το αρχείο δεν αποθηκεύτηκε λόγω της πολιτικής προσωπικών δεδομένων!"
|
1135 |
+
|
1136 |
+
#: lib/wfu_constants.php:232
|
1137 |
msgid "Open visual shortcode editor in new window"
|
1138 |
msgstr "Ανοίξτε τη γραφική επεξεργασία του shortcode σε νέο παράθυρο"
|
1139 |
|
1140 |
+
#: lib/wfu_constants.php:233
|
1141 |
msgid "loading visual editor"
|
1142 |
msgstr "φόρτωση του γραφικού επεξεργαστή"
|
1143 |
|
1144 |
+
#: lib/wfu_constants.php:234
|
1145 |
msgid "Clear file list?"
|
1146 |
msgstr "Να γίνει καθαρισμός της λίστας αρχείων;"
|
1147 |
|
1148 |
+
#: lib/wfu_constants.php:235
|
1149 |
msgid "DROP HERE"
|
1150 |
msgstr "ΑΦΗΣΤΕ ΕΔΩ"
|
1151 |
|
1152 |
+
#: lib/wfu_constants.php:237
|
1153 |
msgid "record video"
|
1154 |
msgstr "εγγραφή video"
|
1155 |
|
1156 |
+
#: lib/wfu_constants.php:238
|
1157 |
msgid "take a picture"
|
1158 |
msgstr "φωτογραφία"
|
1159 |
|
1160 |
+
#: lib/wfu_constants.php:239
|
1161 |
msgid "turn webcam on/off"
|
1162 |
msgstr "ενεργοποίηση/απενεργοποίηση κάμερας"
|
1163 |
|
1164 |
+
#: lib/wfu_constants.php:240
|
1165 |
msgid "go live again"
|
1166 |
msgstr "επιστροφή σε ζωντανή λήψη"
|
1167 |
|
1168 |
+
#: lib/wfu_constants.php:241
|
1169 |
msgid "end recording"
|
1170 |
msgstr "τέλος εγγραφής"
|
1171 |
|
1172 |
+
#: lib/wfu_constants.php:242
|
1173 |
msgid "play"
|
1174 |
msgstr "αναπαραγωγή"
|
1175 |
|
1176 |
+
#: lib/wfu_constants.php:243
|
1177 |
msgid "pause"
|
1178 |
msgstr "παύση"
|
1179 |
|
1180 |
+
#: lib/wfu_constants.php:244
|
1181 |
msgid "go to the beginning"
|
1182 |
msgstr "μετάβαση στην αρχή"
|
1183 |
|
1184 |
+
#: lib/wfu_constants.php:245
|
1185 |
msgid "go to the end"
|
1186 |
msgstr "μετάβαση στο τέλος"
|
1187 |
|
1188 |
+
#: lib/wfu_constants.php:247
|
1189 |
msgid "Wordpress File Upload Form"
|
1190 |
msgstr "Φόρμα του Wordpress File Upload"
|
1191 |
|
1192 |
+
#: lib/wfu_constants.php:248
|
1193 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1194 |
msgstr "Αποστολή αρχείων με το Wordpress File Upload plugin για sidebars"
|
1195 |
|
1196 |
+
#: lib/wfu_constants.php:249
|
1197 |
msgid "Upload Files"
|
1198 |
msgstr "Αποστολή αρχείων"
|
1199 |
|
languages/wp-file-upload-en_US.mo
CHANGED
Binary file
|
languages/wp-file-upload-en_US.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
@@ -102,559 +102,565 @@ msgid ""
|
|
102 |
"By activating this option I agree to let the website keep my personal data"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: lib/wfu_constants.php:
|
106 |
-
msgid "
|
|
|
|
|
107 |
msgstr ""
|
108 |
|
109 |
#: lib/wfu_constants.php:36
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
#: lib/wfu_constants.php:37
|
114 |
-
msgid "
|
115 |
msgstr ""
|
116 |
|
117 |
#: lib/wfu_constants.php:38
|
|
|
|
|
|
|
|
|
118 |
msgid "User"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: lib/wfu_constants.php:
|
122 |
msgid "Page"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: lib/wfu_constants.php:
|
126 |
msgid "User Fields"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: lib/wfu_constants.php:
|
130 |
msgid "Download"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: lib/wfu_constants.php:
|
134 |
msgid "Download this file"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: lib/wfu_constants.php:
|
138 |
msgid "Delete"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: lib/wfu_constants.php:
|
142 |
msgid "Delete this file"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: lib/wfu_constants.php:
|
146 |
msgid "Sort list based on this column"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: lib/wfu_constants.php:
|
150 |
msgid "guest"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: lib/wfu_constants.php:
|
154 |
msgid "unknown"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: lib/wfu_constants.php:
|
158 |
msgid ""
|
159 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
160 |
"attribute."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: lib/wfu_constants.php:
|
164 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: lib/wfu_constants.php:
|
168 |
msgid ""
|
169 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
170 |
"syntax."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: lib/wfu_constants.php:
|
174 |
msgid ""
|
175 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
176 |
"attribute."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: lib/wfu_constants.php:
|
180 |
msgid ""
|
181 |
"Error. Could not open source file for ftp upload. Check if file is "
|
182 |
"accessible."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: lib/wfu_constants.php:
|
186 |
msgid "Error. Could not send data to ftp target file."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: lib/wfu_constants.php:
|
190 |
msgid ""
|
191 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
192 |
"attribute."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: lib/wfu_constants.php:
|
196 |
msgid ""
|
197 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
198 |
"'ftpinfo' attribute."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: lib/wfu_constants.php:
|
202 |
msgid ""
|
203 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
204 |
"supports sftp."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: lib/wfu_constants.php:
|
208 |
msgid "Error. The web server does not support sftp."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: lib/wfu_constants.php:
|
212 |
msgid ""
|
213 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
214 |
"preventing the upload of big files.\n"
|
215 |
"PHP directive upload_max_filesize limit is: "
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: lib/wfu_constants.php:
|
219 |
msgid ""
|
220 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
221 |
"upload of big files.\n"
|
222 |
"PHP directive max_input_time limit is: "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: lib/wfu_constants.php:
|
226 |
msgid ""
|
227 |
"Error. Permission denied to write to target folder.\n"
|
228 |
"Check and correct read/write permissions of target folder."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: lib/wfu_constants.php:
|
232 |
msgid ""
|
233 |
"Error. This file was rejected because its extension is not correct. Its "
|
234 |
"proper filename is: "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: lib/wfu_constants.php:
|
238 |
msgid ""
|
239 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
240 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
241 |
"suspicious behaviour."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: lib/wfu_constants.php:
|
245 |
msgid ""
|
246 |
"File not uploaded in order to prevent overflow of the website. Please "
|
247 |
"contact administrator."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: lib/wfu_constants.php:
|
251 |
msgid "Target folder doesn't exist."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: lib/wfu_constants.php:
|
255 |
msgid "Upload failed! Missing a temporary folder."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: lib/wfu_constants.php:
|
259 |
msgid "Upload failed! Permission denied to write to target folder."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: lib/wfu_constants.php:
|
263 |
msgid "File not allowed."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: lib/wfu_constants.php:
|
267 |
msgid "File is suspicious and was rejected."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: lib/wfu_constants.php:
|
271 |
msgid "The uploaded file exceeds the file size limit."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: lib/wfu_constants.php:
|
275 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: lib/wfu_constants.php:
|
279 |
msgid ""
|
280 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
281 |
"Please contact the administrator."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: lib/wfu_constants.php:
|
285 |
msgid ""
|
286 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
287 |
"server. Please contact the administrator."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: lib/wfu_constants.php:
|
291 |
msgid ""
|
292 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
293 |
"was specified in the HTML form."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: lib/wfu_constants.php:
|
297 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: lib/wfu_constants.php:
|
301 |
msgid "Upload failed! No file was uploaded."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: lib/wfu_constants.php:
|
305 |
msgid "Upload failed! Failed to write file to disk."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: lib/wfu_constants.php:
|
309 |
msgid ""
|
310 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
311 |
"administrator."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: lib/wfu_constants.php:
|
315 |
msgid "Upload cancelled!"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: lib/wfu_constants.php:
|
319 |
msgid ""
|
320 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
321 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
322 |
"the list of loaded extensions with phpinfo() may help."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: lib/wfu_constants.php:
|
326 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: lib/wfu_constants.php:
|
330 |
msgid "Upload failed!"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: lib/wfu_constants.php:
|
334 |
msgid "No file!"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: lib/wfu_constants.php:
|
338 |
msgid ""
|
339 |
"Upload failed! The upload has been canceled by the user or the browser "
|
340 |
"dropped the connection."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: lib/wfu_constants.php:
|
344 |
msgid "Upload failed! Unknown error."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: lib/wfu_constants.php:
|
348 |
msgid "Please contact the administrator."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: lib/wfu_constants.php:
|
352 |
msgid "No result from remote server!"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: lib/wfu_constants.php:
|
356 |
msgid " but with warnings"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: lib/wfu_constants.php:
|
360 |
msgid "Warning: JSON parse error."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: lib/wfu_constants.php:
|
364 |
msgid ""
|
365 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
366 |
"not be parsed."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: lib/wfu_constants.php:
|
370 |
msgid ""
|
371 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: lib/wfu_constants.php:
|
375 |
msgid ""
|
376 |
"Redirection to classic form functionality occurred due to unknown error."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: lib/wfu_constants.php:
|
380 |
msgid ""
|
381 |
"Redirection to classic form functionality occurred because AJAX is not "
|
382 |
"supported."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: lib/wfu_constants.php:
|
386 |
msgid ""
|
387 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
388 |
"supported."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: lib/wfu_constants.php:
|
392 |
msgid ""
|
393 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: lib/wfu_constants.php:
|
397 |
msgid "Please enable popup windows from the browser's settings!"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: lib/wfu_constants.php:
|
401 |
msgid "cannot be empty!"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: lib/wfu_constants.php:
|
405 |
msgid "number not valid!"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: lib/wfu_constants.php:
|
409 |
msgid "email not valid!"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: lib/wfu_constants.php:
|
413 |
msgid "emails do not match!"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: lib/wfu_constants.php:
|
417 |
msgid "no base email field in group!"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: lib/wfu_constants.php:
|
421 |
msgid "passwords do not match!"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: lib/wfu_constants.php:
|
425 |
msgid "no base password field in group!"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: lib/wfu_constants.php:
|
429 |
msgid "checkbox unchecked!"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: lib/wfu_constants.php:
|
433 |
msgid "no option selected!"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: lib/wfu_constants.php:
|
437 |
msgid "no item selected!"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: lib/wfu_constants.php:
|
441 |
msgid ""
|
442 |
"There are more than one instances of the plugin in this page with the same "
|
443 |
"id. Please change it."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: lib/wfu_constants.php:
|
447 |
msgid ""
|
448 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
449 |
"the page."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: lib/wfu_constants.php:
|
453 |
msgid "Your browser does not support webcam capture!"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: lib/wfu_constants.php:
|
457 |
msgid "Your browser does not support video recording from the webcam!"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "No video was recorded!"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid ""
|
466 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
467 |
"or use RecaptchaV2 (no account)."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: lib/wfu_constants.php:
|
471 |
msgid ""
|
472 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
473 |
"notify administrator."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: lib/wfu_constants.php:
|
477 |
msgid ""
|
478 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
479 |
"use RecaptchaV1 (no account)."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: lib/wfu_constants.php:
|
483 |
msgid "ERROR: No site key. Please contact administrator!"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: lib/wfu_constants.php:
|
487 |
msgid ""
|
488 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
489 |
"define Google Recaptcha keys."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: lib/wfu_constants.php:
|
493 |
msgid "Bad captcha image!"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: lib/wfu_constants.php:
|
497 |
msgid "No input!"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: lib/wfu_constants.php:
|
501 |
msgid "Captcha not completed!"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: lib/wfu_constants.php:
|
505 |
msgid "Wrong captcha!"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: lib/wfu_constants.php:
|
509 |
msgid "Error refreshing captcha!"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: lib/wfu_constants.php:
|
513 |
msgid "Unknown captcha error!"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: lib/wfu_constants.php:
|
517 |
msgid "Captcha not supported by your browser!"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: lib/wfu_constants.php:
|
521 |
msgid "the secret parameter is missing"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: lib/wfu_constants.php:
|
525 |
msgid "the secret parameter is invalid or malformed"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: lib/wfu_constants.php:
|
529 |
msgid "the response parameter is missing"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid "the response parameter is invalid or malformed"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: lib/wfu_constants.php:
|
537 |
msgid "Please do not use drag drop due to an internal problem."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: lib/wfu_constants.php:
|
541 |
#, php-format
|
542 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: lib/wfu_constants.php:
|
546 |
msgid "Chunked upload is not allowed!"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: lib/wfu_constants.php:
|
550 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: lib/wfu_constants.php:
|
554 |
msgid "Chunked upload failed, final file could not be created!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: lib/wfu_constants.php:
|
558 |
#, php-format
|
559 |
msgid "Could not write file chuck to destination on chunk %d"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: lib/wfu_constants.php:
|
563 |
#, php-format
|
564 |
msgid "Could not enlarge destination file on chunk %d"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
#, php-format
|
569 |
msgid "Could not open file handles on chunk %d"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: lib/wfu_constants.php:
|
573 |
msgid "You are not allowed to download this file!"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: lib/wfu_constants.php:
|
577 |
msgid "File does not exist!"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: lib/wfu_constants.php:
|
581 |
msgid "Could not download file!"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "You are not allowed to delete this file!"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "File was not deleted!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "No file was deleted!"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
msgid "Some files were not deleted!"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid "Upload skipped! File already exists."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "The extension of the file does not match its contents."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid ""
|
610 |
"Upload succeeded but the file is suspicious because its contents do not "
|
611 |
"match its extension. Its proper filename is: "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: lib/wfu_constants.php:
|
615 |
msgid "No files have been selected!"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: lib/wfu_constants.php:
|
619 |
msgid "Please complete the consent question before continuing the upload!"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: lib/wfu_constants.php:
|
623 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid "Notification email was not sent because there were no files uploaded."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: lib/wfu_constants.php:
|
631 |
msgid ""
|
632 |
"Notification email was not sent because no recipients were defined. Please "
|
633 |
"check notifyrecipients attribute in the shortcode."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
msgid ""
|
638 |
"Notification email was not sent due to an error. Please check "
|
639 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid ""
|
644 |
"Redirection not executed because redirection link is empty. Please check "
|
645 |
"redirectlink attribute."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid ""
|
650 |
"Redirection not executed because not all files were successfully uploaded."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid ""
|
659 |
"Hello admin\n"
|
660 |
"\n"
|
@@ -674,349 +680,366 @@ msgid ""
|
|
674 |
"Thanks"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: lib/wfu_constants.php:
|
678 |
msgid ""
|
679 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
680 |
"details please contact info@iptanus.com."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid ""
|
685 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
686 |
"plugin functions. Please read this :article: for resolution."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: lib/wfu_constants.php:
|
690 |
msgid ""
|
691 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
692 |
"message persists, contact administrator."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: lib/wfu_constants.php:
|
696 |
msgid ""
|
697 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
698 |
"again to edit the shortcode."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: lib/wfu_constants.php:
|
702 |
msgid ""
|
703 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
704 |
"again to delete it."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"The page containing the shortcode has been modified and it is no longer "
|
710 |
"valid. Please go back to reload the shortcode."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid ""
|
715 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
716 |
"back to reload the shortcode."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: lib/wfu_constants.php:
|
720 |
msgid ""
|
721 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
722 |
"go back and reload the shortcode."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: lib/wfu_constants.php:
|
726 |
msgid "This is a test message"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: lib/wfu_constants.php:
|
730 |
msgid "This is a test administrator message"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid "File testfile 1 under test"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "File testfile 1 message"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "File testfile 1 administrator message"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "File testfile 2 under test"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "File testfile 2 message"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "File testfile 2 administrator message"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
758 |
msgid ""
|
759 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
760 |
"current user."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: lib/wfu_constants.php:
|
764 |
msgid ""
|
765 |
"Insert variable %username% inside text. It will be replaced by the username "
|
766 |
"of the current user."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid ""
|
771 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
772 |
"the current user."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: lib/wfu_constants.php:
|
776 |
msgid ""
|
777 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
778 |
"of the uploaded file."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: lib/wfu_constants.php:
|
782 |
msgid ""
|
783 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
784 |
"filepath of the uploaded file."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: lib/wfu_constants.php:
|
788 |
msgid ""
|
789 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
790 |
"the website."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid ""
|
795 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
796 |
"current page."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: lib/wfu_constants.php:
|
800 |
msgid ""
|
801 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
802 |
"the current page."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid ""
|
807 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
808 |
"drop-down list. It will be replaced by the value that the user entered in "
|
809 |
"this field."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
msgid "Insert variable %n% inside text to denote a line change."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
817 |
msgid "Test Mode"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "select dir..."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "type dir"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "Upload path: %filepath%"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid "Failed upload path: %filepath%"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
msgid " (required)"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "checking captcha..."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: lib/wfu_constants.php:
|
849 |
msgid "refreshing..."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: lib/wfu_constants.php:
|
853 |
msgid "correct captcha"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
msgid "click to continue the upload"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
msgid "Are you sure you want to delete this file?"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
msgid "Are you sure you want to delete these files?"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: lib/wfu_constants.php:
|
869 |
msgid "Bulk Actions"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: lib/wfu_constants.php:
|
873 |
msgid "Apply"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: lib/wfu_constants.php:
|
877 |
msgid "of "
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: lib/wfu_constants.php:
|
881 |
msgid "Are you sure that you want to cancel the upload?"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: lib/wfu_constants.php:
|
885 |
msgid "cancel upload of this file"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: lib/wfu_constants.php:
|
889 |
msgid "Upload in progress"
|
890 |
msgstr "Uploading..."
|
891 |
|
892 |
-
#: lib/wfu_constants.php:
|
893 |
msgid "Upload in progress with warnings!"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: lib/wfu_constants.php:
|
897 |
msgid "Upload in progress but some files already failed!"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: lib/wfu_constants.php:
|
901 |
msgid "Upload in progress but no files uploaded so far!"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: lib/wfu_constants.php:
|
905 |
msgid "All files uploaded successfully"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: lib/wfu_constants.php:
|
909 |
msgid "All files uploaded successfully but there are warnings!"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: lib/wfu_constants.php:
|
913 |
msgid "File uploaded successfully but there are warnings!"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: lib/wfu_constants.php:
|
917 |
msgid "Some files failed to upload!"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: lib/wfu_constants.php:
|
921 |
msgid "All files failed to upload"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: lib/wfu_constants.php:
|
925 |
msgid "File failed to upload"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: lib/wfu_constants.php:
|
929 |
msgid "There are no files to upload!"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: lib/wfu_constants.php:
|
933 |
msgid "Test upload message"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid "JSON parse warning!"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: lib/wfu_constants.php:
|
941 |
msgid "please wait while redirecting..."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: lib/wfu_constants.php:
|
945 |
msgid "Submitting data"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: lib/wfu_constants.php:
|
949 |
msgid "Data submitted successfully!"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: lib/wfu_constants.php:
|
953 |
msgid "Data were not submitted!"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: lib/wfu_constants.php:
|
957 |
msgid "Cancelling upload"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
961 |
msgid "Open visual shortcode editor in new window"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: lib/wfu_constants.php:
|
965 |
msgid "loading visual editor"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: lib/wfu_constants.php:
|
969 |
msgid "Clear file list?"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: lib/wfu_constants.php:
|
973 |
msgid "DROP HERE"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: lib/wfu_constants.php:
|
977 |
msgid "record video"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: lib/wfu_constants.php:
|
981 |
msgid "take a picture"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: lib/wfu_constants.php:
|
985 |
msgid "turn webcam on/off"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: lib/wfu_constants.php:
|
989 |
msgid "go live again"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: lib/wfu_constants.php:
|
993 |
msgid "end recording"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: lib/wfu_constants.php:
|
997 |
msgid "play"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: lib/wfu_constants.php:
|
1001 |
msgid "pause"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: lib/wfu_constants.php:
|
1005 |
msgid "go to the beginning"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: lib/wfu_constants.php:
|
1009 |
msgid "go to the end"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: lib/wfu_constants.php:
|
1013 |
msgid "Wordpress File Upload Form"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: lib/wfu_constants.php:
|
1017 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: lib/wfu_constants.php:
|
1021 |
msgid "Upload Files"
|
1022 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:40+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:40+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
102 |
"By activating this option I agree to let the website keep my personal data"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: lib/wfu_constants.php:34
|
106 |
+
msgid ""
|
107 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
108 |
+
"continue!"
|
109 |
msgstr ""
|
110 |
|
111 |
#: lib/wfu_constants.php:36
|
112 |
+
msgid "File"
|
113 |
msgstr ""
|
114 |
|
115 |
#: lib/wfu_constants.php:37
|
116 |
+
msgid "Date"
|
117 |
msgstr ""
|
118 |
|
119 |
#: lib/wfu_constants.php:38
|
120 |
+
msgid "Size"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: lib/wfu_constants.php:39
|
124 |
msgid "User"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
128 |
msgid "Page"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: lib/wfu_constants.php:41
|
132 |
msgid "User Fields"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: lib/wfu_constants.php:42
|
136 |
msgid "Download"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: lib/wfu_constants.php:43
|
140 |
msgid "Download this file"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: lib/wfu_constants.php:44
|
144 |
msgid "Delete"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: lib/wfu_constants.php:45
|
148 |
msgid "Delete this file"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: lib/wfu_constants.php:46
|
152 |
msgid "Sort list based on this column"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: lib/wfu_constants.php:47
|
156 |
msgid "guest"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: lib/wfu_constants.php:48
|
160 |
msgid "unknown"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: lib/wfu_constants.php:50
|
164 |
msgid ""
|
165 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
166 |
"attribute."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: lib/wfu_constants.php:51
|
170 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: lib/wfu_constants.php:52
|
174 |
msgid ""
|
175 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
176 |
"syntax."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: lib/wfu_constants.php:53
|
180 |
msgid ""
|
181 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
182 |
"attribute."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: lib/wfu_constants.php:54
|
186 |
msgid ""
|
187 |
"Error. Could not open source file for ftp upload. Check if file is "
|
188 |
"accessible."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: lib/wfu_constants.php:55
|
192 |
msgid "Error. Could not send data to ftp target file."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: lib/wfu_constants.php:56
|
196 |
msgid ""
|
197 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
198 |
"attribute."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: lib/wfu_constants.php:57
|
202 |
msgid ""
|
203 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
204 |
"'ftpinfo' attribute."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: lib/wfu_constants.php:58
|
208 |
msgid ""
|
209 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
210 |
"supports sftp."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: lib/wfu_constants.php:59
|
214 |
msgid "Error. The web server does not support sftp."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: lib/wfu_constants.php:60
|
218 |
msgid ""
|
219 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
220 |
"preventing the upload of big files.\n"
|
221 |
"PHP directive upload_max_filesize limit is: "
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: lib/wfu_constants.php:61
|
225 |
msgid ""
|
226 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
227 |
"upload of big files.\n"
|
228 |
"PHP directive max_input_time limit is: "
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: lib/wfu_constants.php:62
|
232 |
msgid ""
|
233 |
"Error. Permission denied to write to target folder.\n"
|
234 |
"Check and correct read/write permissions of target folder."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: lib/wfu_constants.php:63
|
238 |
msgid ""
|
239 |
"Error. This file was rejected because its extension is not correct. Its "
|
240 |
"proper filename is: "
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lib/wfu_constants.php:64
|
244 |
msgid ""
|
245 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
246 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
247 |
"suspicious behaviour."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: lib/wfu_constants.php:65
|
251 |
msgid ""
|
252 |
"File not uploaded in order to prevent overflow of the website. Please "
|
253 |
"contact administrator."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: lib/wfu_constants.php:66
|
257 |
msgid "Target folder doesn't exist."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: lib/wfu_constants.php:67
|
261 |
msgid "Upload failed! Missing a temporary folder."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: lib/wfu_constants.php:68
|
265 |
msgid "Upload failed! Permission denied to write to target folder."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: lib/wfu_constants.php:69
|
269 |
msgid "File not allowed."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: lib/wfu_constants.php:70
|
273 |
msgid "File is suspicious and was rejected."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: lib/wfu_constants.php:71
|
277 |
msgid "The uploaded file exceeds the file size limit."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: lib/wfu_constants.php:72
|
281 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: lib/wfu_constants.php:73
|
285 |
msgid ""
|
286 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
287 |
"Please contact the administrator."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: lib/wfu_constants.php:74
|
291 |
msgid ""
|
292 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
293 |
"server. Please contact the administrator."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: lib/wfu_constants.php:75
|
297 |
msgid ""
|
298 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
299 |
"was specified in the HTML form."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: lib/wfu_constants.php:76
|
303 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: lib/wfu_constants.php:77
|
307 |
msgid "Upload failed! No file was uploaded."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: lib/wfu_constants.php:78
|
311 |
msgid "Upload failed! Failed to write file to disk."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: lib/wfu_constants.php:79
|
315 |
msgid ""
|
316 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
317 |
"administrator."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
321 |
msgid "Upload cancelled!"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: lib/wfu_constants.php:81
|
325 |
msgid ""
|
326 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
327 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
328 |
"the list of loaded extensions with phpinfo() may help."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: lib/wfu_constants.php:82
|
332 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
336 |
msgid "Upload failed!"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: lib/wfu_constants.php:84
|
340 |
msgid "No file!"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: lib/wfu_constants.php:85
|
344 |
msgid ""
|
345 |
"Upload failed! The upload has been canceled by the user or the browser "
|
346 |
"dropped the connection."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: lib/wfu_constants.php:86
|
350 |
msgid "Upload failed! Unknown error."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: lib/wfu_constants.php:87
|
354 |
msgid "Please contact the administrator."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: lib/wfu_constants.php:88
|
358 |
msgid "No result from remote server!"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: lib/wfu_constants.php:89
|
362 |
msgid " but with warnings"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
366 |
msgid "Warning: JSON parse error."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: lib/wfu_constants.php:91
|
370 |
msgid ""
|
371 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
372 |
"not be parsed."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: lib/wfu_constants.php:93
|
376 |
msgid ""
|
377 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: lib/wfu_constants.php:94
|
381 |
msgid ""
|
382 |
"Redirection to classic form functionality occurred due to unknown error."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: lib/wfu_constants.php:95
|
386 |
msgid ""
|
387 |
"Redirection to classic form functionality occurred because AJAX is not "
|
388 |
"supported."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: lib/wfu_constants.php:96
|
392 |
msgid ""
|
393 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
394 |
"supported."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: lib/wfu_constants.php:97
|
398 |
msgid ""
|
399 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: lib/wfu_constants.php:98
|
403 |
msgid "Please enable popup windows from the browser's settings!"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: lib/wfu_constants.php:99
|
407 |
msgid "cannot be empty!"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: lib/wfu_constants.php:100
|
411 |
msgid "number not valid!"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: lib/wfu_constants.php:101
|
415 |
msgid "email not valid!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: lib/wfu_constants.php:102
|
419 |
msgid "emails do not match!"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: lib/wfu_constants.php:103
|
423 |
msgid "no base email field in group!"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: lib/wfu_constants.php:104
|
427 |
msgid "passwords do not match!"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: lib/wfu_constants.php:105
|
431 |
msgid "no base password field in group!"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: lib/wfu_constants.php:106
|
435 |
msgid "checkbox unchecked!"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: lib/wfu_constants.php:107
|
439 |
msgid "no option selected!"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: lib/wfu_constants.php:108
|
443 |
msgid "no item selected!"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: lib/wfu_constants.php:109
|
447 |
msgid ""
|
448 |
"There are more than one instances of the plugin in this page with the same "
|
449 |
"id. Please change it."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: lib/wfu_constants.php:110
|
453 |
msgid ""
|
454 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
455 |
"the page."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: lib/wfu_constants.php:111
|
459 |
msgid "Your browser does not support webcam capture!"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: lib/wfu_constants.php:112
|
463 |
msgid "Your browser does not support video recording from the webcam!"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: lib/wfu_constants.php:113
|
467 |
msgid "No video was recorded!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: lib/wfu_constants.php:114
|
471 |
msgid ""
|
472 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
473 |
"or use RecaptchaV2 (no account)."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: lib/wfu_constants.php:115
|
477 |
msgid ""
|
478 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
479 |
"notify administrator."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: lib/wfu_constants.php:116
|
483 |
msgid ""
|
484 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
485 |
"use RecaptchaV1 (no account)."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: lib/wfu_constants.php:117
|
489 |
msgid "ERROR: No site key. Please contact administrator!"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: lib/wfu_constants.php:118
|
493 |
msgid ""
|
494 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
495 |
"define Google Recaptcha keys."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: lib/wfu_constants.php:119
|
499 |
msgid "Bad captcha image!"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: lib/wfu_constants.php:120
|
503 |
msgid "No input!"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: lib/wfu_constants.php:121
|
507 |
msgid "Captcha not completed!"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: lib/wfu_constants.php:122
|
511 |
msgid "Wrong captcha!"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: lib/wfu_constants.php:123
|
515 |
msgid "Error refreshing captcha!"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: lib/wfu_constants.php:124
|
519 |
msgid "Unknown captcha error!"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: lib/wfu_constants.php:125
|
523 |
msgid "Captcha not supported by your browser!"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: lib/wfu_constants.php:126
|
527 |
msgid "the secret parameter is missing"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: lib/wfu_constants.php:127
|
531 |
msgid "the secret parameter is invalid or malformed"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: lib/wfu_constants.php:128
|
535 |
msgid "the response parameter is missing"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: lib/wfu_constants.php:129
|
539 |
msgid "the response parameter is invalid or malformed"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: lib/wfu_constants.php:130
|
543 |
msgid "Please do not use drag drop due to an internal problem."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: lib/wfu_constants.php:131
|
547 |
#, php-format
|
548 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: lib/wfu_constants.php:132
|
552 |
msgid "Chunked upload is not allowed!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: lib/wfu_constants.php:133
|
556 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: lib/wfu_constants.php:134
|
560 |
msgid "Chunked upload failed, final file could not be created!"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: lib/wfu_constants.php:135
|
564 |
#, php-format
|
565 |
msgid "Could not write file chuck to destination on chunk %d"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: lib/wfu_constants.php:136
|
569 |
#, php-format
|
570 |
msgid "Could not enlarge destination file on chunk %d"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: lib/wfu_constants.php:137
|
574 |
#, php-format
|
575 |
msgid "Could not open file handles on chunk %d"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: lib/wfu_constants.php:138
|
579 |
msgid "You are not allowed to download this file!"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: lib/wfu_constants.php:139
|
583 |
msgid "File does not exist!"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: lib/wfu_constants.php:140
|
587 |
msgid "Could not download file!"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: lib/wfu_constants.php:141
|
591 |
msgid "You are not allowed to delete this file!"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: lib/wfu_constants.php:142
|
595 |
msgid "File was not deleted!"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: lib/wfu_constants.php:143
|
599 |
msgid "No file was deleted!"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: lib/wfu_constants.php:144
|
603 |
msgid "Some files were not deleted!"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: lib/wfu_constants.php:146
|
607 |
msgid "Upload skipped! File already exists."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: lib/wfu_constants.php:147
|
611 |
msgid "The extension of the file does not match its contents."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: lib/wfu_constants.php:148
|
615 |
msgid ""
|
616 |
"Upload succeeded but the file is suspicious because its contents do not "
|
617 |
"match its extension. Its proper filename is: "
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: lib/wfu_constants.php:149
|
621 |
msgid "No files have been selected!"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: lib/wfu_constants.php:150
|
625 |
msgid "Please complete the consent question before continuing the upload!"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: lib/wfu_constants.php:151
|
629 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: lib/wfu_constants.php:152
|
633 |
msgid "Notification email was not sent because there were no files uploaded."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: lib/wfu_constants.php:153
|
637 |
msgid ""
|
638 |
"Notification email was not sent because no recipients were defined. Please "
|
639 |
"check notifyrecipients attribute in the shortcode."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: lib/wfu_constants.php:154
|
643 |
msgid ""
|
644 |
"Notification email was not sent due to an error. Please check "
|
645 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: lib/wfu_constants.php:155
|
649 |
msgid ""
|
650 |
"Redirection not executed because redirection link is empty. Please check "
|
651 |
"redirectlink attribute."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: lib/wfu_constants.php:156
|
655 |
msgid ""
|
656 |
"Redirection not executed because not all files were successfully uploaded."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/wfu_constants.php:157
|
660 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: lib/wfu_constants.php:158
|
664 |
msgid ""
|
665 |
"Hello admin\n"
|
666 |
"\n"
|
680 |
"Thanks"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: lib/wfu_constants.php:159
|
684 |
msgid ""
|
685 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
686 |
"details please contact info@iptanus.com."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: lib/wfu_constants.php:160
|
690 |
msgid ""
|
691 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
692 |
"plugin functions. Please read this :article: for resolution."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: lib/wfu_constants.php:162
|
696 |
msgid ""
|
697 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
698 |
"message persists, contact administrator."
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: lib/wfu_constants.php:163
|
702 |
msgid ""
|
703 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
704 |
"again to edit the shortcode."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: lib/wfu_constants.php:164
|
708 |
msgid ""
|
709 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
710 |
"again to delete it."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: lib/wfu_constants.php:165
|
714 |
msgid ""
|
715 |
"The page containing the shortcode has been modified and it is no longer "
|
716 |
"valid. Please go back to reload the shortcode."
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: lib/wfu_constants.php:166
|
720 |
msgid ""
|
721 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
722 |
"back to reload the shortcode."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: lib/wfu_constants.php:167
|
726 |
msgid ""
|
727 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
728 |
"go back and reload the shortcode."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: lib/wfu_constants.php:169
|
732 |
msgid "This is a test message"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: lib/wfu_constants.php:170
|
736 |
msgid "This is a test administrator message"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: lib/wfu_constants.php:171
|
740 |
msgid "File testfile 1 under test"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: lib/wfu_constants.php:172
|
744 |
msgid "File testfile 1 message"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: lib/wfu_constants.php:173
|
748 |
msgid "File testfile 1 administrator message"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: lib/wfu_constants.php:174
|
752 |
msgid "File testfile 2 under test"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: lib/wfu_constants.php:175
|
756 |
msgid "File testfile 2 message"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: lib/wfu_constants.php:176
|
760 |
msgid "File testfile 2 administrator message"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: lib/wfu_constants.php:178
|
764 |
msgid ""
|
765 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
766 |
"current user."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: lib/wfu_constants.php:179
|
770 |
msgid ""
|
771 |
"Insert variable %username% inside text. It will be replaced by the username "
|
772 |
"of the current user."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: lib/wfu_constants.php:180
|
776 |
msgid ""
|
777 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
778 |
"the current user."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: lib/wfu_constants.php:181
|
782 |
msgid ""
|
783 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
784 |
"of the uploaded file."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: lib/wfu_constants.php:182
|
788 |
msgid ""
|
789 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
790 |
"filepath of the uploaded file."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: lib/wfu_constants.php:183
|
794 |
msgid ""
|
795 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
796 |
"the website."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: lib/wfu_constants.php:184
|
800 |
msgid ""
|
801 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
802 |
"current page."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: lib/wfu_constants.php:185
|
806 |
msgid ""
|
807 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
808 |
"the current page."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: lib/wfu_constants.php:186
|
812 |
msgid ""
|
813 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
814 |
"drop-down list. It will be replaced by the value that the user entered in "
|
815 |
"this field."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: lib/wfu_constants.php:187
|
819 |
msgid "Insert variable %n% inside text to denote a line change."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: lib/wfu_constants.php:189
|
823 |
+
#, php-format
|
824 |
+
msgid "File %filename% uploaded successfully but not saved"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: lib/wfu_constants.php:190
|
828 |
msgid "Test Mode"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: lib/wfu_constants.php:191
|
832 |
msgid "select dir..."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: lib/wfu_constants.php:192
|
836 |
msgid "type dir"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: lib/wfu_constants.php:193
|
840 |
msgid "Upload path: %filepath%"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: lib/wfu_constants.php:194
|
844 |
msgid "Failed upload path: %filepath%"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: lib/wfu_constants.php:195
|
848 |
msgid " (required)"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: lib/wfu_constants.php:196
|
852 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: lib/wfu_constants.php:197
|
856 |
msgid "checking captcha..."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: lib/wfu_constants.php:198
|
860 |
msgid "refreshing..."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: lib/wfu_constants.php:199
|
864 |
msgid "correct captcha"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: lib/wfu_constants.php:200
|
868 |
msgid "click to continue the upload"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: lib/wfu_constants.php:201
|
872 |
msgid "Are you sure you want to delete this file?"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: lib/wfu_constants.php:202
|
876 |
msgid "Are you sure you want to delete these files?"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: lib/wfu_constants.php:203
|
880 |
msgid "Bulk Actions"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: lib/wfu_constants.php:204
|
884 |
msgid "Apply"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: lib/wfu_constants.php:206
|
888 |
msgid "of "
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: lib/wfu_constants.php:207
|
892 |
msgid "Are you sure that you want to cancel the upload?"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: lib/wfu_constants.php:208
|
896 |
msgid "cancel upload of this file"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: lib/wfu_constants.php:209
|
900 |
msgid "Upload in progress"
|
901 |
msgstr "Uploading..."
|
902 |
|
903 |
+
#: lib/wfu_constants.php:210
|
904 |
msgid "Upload in progress with warnings!"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: lib/wfu_constants.php:211
|
908 |
msgid "Upload in progress but some files already failed!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: lib/wfu_constants.php:212
|
912 |
msgid "Upload in progress but no files uploaded so far!"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: lib/wfu_constants.php:213
|
916 |
msgid "All files uploaded successfully"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: lib/wfu_constants.php:214
|
920 |
msgid "All files uploaded successfully but there are warnings!"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: lib/wfu_constants.php:215
|
924 |
msgid "File uploaded successfully but there are warnings!"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: lib/wfu_constants.php:216
|
928 |
msgid "Some files failed to upload!"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: lib/wfu_constants.php:217
|
932 |
msgid "All files failed to upload"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: lib/wfu_constants.php:218
|
936 |
msgid "File failed to upload"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: lib/wfu_constants.php:219
|
940 |
msgid "There are no files to upload!"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: lib/wfu_constants.php:220
|
944 |
msgid "Test upload message"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: lib/wfu_constants.php:221
|
948 |
msgid "JSON parse warning!"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: lib/wfu_constants.php:222
|
952 |
msgid "please wait while redirecting..."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: lib/wfu_constants.php:224
|
956 |
msgid "Submitting data"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: lib/wfu_constants.php:225
|
960 |
msgid "Data submitted successfully!"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: lib/wfu_constants.php:226
|
964 |
msgid "Data were not submitted!"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: lib/wfu_constants.php:227
|
968 |
msgid "Cancelling upload"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: lib/wfu_constants.php:229
|
972 |
+
msgid "Upload succeeded!"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: lib/wfu_constants.php:230
|
976 |
+
msgid "Upload completed but no files were saved!"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: lib/wfu_constants.php:231
|
980 |
+
msgid "File was not saved due to personal data policy!"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: lib/wfu_constants.php:232
|
984 |
msgid "Open visual shortcode editor in new window"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: lib/wfu_constants.php:233
|
988 |
msgid "loading visual editor"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: lib/wfu_constants.php:234
|
992 |
msgid "Clear file list?"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: lib/wfu_constants.php:235
|
996 |
msgid "DROP HERE"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: lib/wfu_constants.php:237
|
1000 |
msgid "record video"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:238
|
1004 |
msgid "take a picture"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:239
|
1008 |
msgid "turn webcam on/off"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:240
|
1012 |
msgid "go live again"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:241
|
1016 |
msgid "end recording"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:242
|
1020 |
msgid "play"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:243
|
1024 |
msgid "pause"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:244
|
1028 |
msgid "go to the beginning"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:245
|
1032 |
msgid "go to the end"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:247
|
1036 |
msgid "Wordpress File Upload Form"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:248
|
1040 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: lib/wfu_constants.php:249
|
1044 |
msgid "Upload Files"
|
1045 |
msgstr ""
|
languages/wp-file-upload-es_ES.mo
CHANGED
Binary file
|
languages/wp-file-upload-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: es\n"
|
@@ -104,59 +104,65 @@ msgid ""
|
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "File"
|
109 |
msgstr "Archivo"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
112 |
msgid "Date"
|
113 |
msgstr "Fecha"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Size"
|
117 |
msgstr "Tamaño"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "User"
|
121 |
msgstr "Usuario"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "Page"
|
125 |
msgstr "Página"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "User Fields"
|
129 |
msgstr "Campos de Usuario"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Descargar"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download this file"
|
137 |
msgstr "Descargar este archivo"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Delete"
|
141 |
msgstr "Eliminar"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete this file"
|
145 |
msgstr "Eliminar este archivo"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Sort list based on this column"
|
149 |
msgstr "Ordenar lista basado en columna"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "guest"
|
153 |
msgstr "visitante"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "unknown"
|
157 |
msgstr "desconocido"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid ""
|
161 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
162 |
"attribute."
|
@@ -164,13 +170,13 @@ msgstr ""
|
|
164 |
"Error. No se pudo encontrar el destino ftp. Verificar el dominio en el "
|
165 |
"atributo 'ftpinfo'."
|
166 |
|
167 |
-
#: lib/wfu_constants.php:
|
168 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
169 |
msgstr ""
|
170 |
"Error. Información de ftp inválida en el atributo 'ftpinfo'. Verificar el "
|
171 |
"atributo 'ftpinfo'."
|
172 |
|
173 |
-
#: lib/wfu_constants.php:
|
174 |
msgid ""
|
175 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
176 |
"syntax."
|
@@ -178,7 +184,7 @@ msgstr ""
|
|
178 |
"Error. No se pudo extraer la información de ftp desde el atributo 'ftpinfo'. "
|
179 |
"Verificar su sintaxis."
|
180 |
|
181 |
-
#: lib/wfu_constants.php:
|
182 |
msgid ""
|
183 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
184 |
"attribute."
|
@@ -186,39 +192,39 @@ msgstr ""
|
|
186 |
"Error. No se pudo encontrar el archivo de destino. Verificar el dominio en "
|
187 |
"el atributo 'ftpinfo'."
|
188 |
|
189 |
-
#: lib/wfu_constants.php:
|
190 |
msgid ""
|
191 |
"Error. Could not open source file for ftp upload. Check if file is "
|
192 |
"accessible."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: lib/wfu_constants.php:
|
196 |
msgid "Error. Could not send data to ftp target file."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: lib/wfu_constants.php:
|
200 |
msgid ""
|
201 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
202 |
"attribute."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: lib/wfu_constants.php:
|
206 |
msgid ""
|
207 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
208 |
"'ftpinfo' attribute."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: lib/wfu_constants.php:
|
212 |
msgid ""
|
213 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
214 |
"supports sftp."
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: lib/wfu_constants.php:
|
218 |
msgid "Error. The web server does not support sftp."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: lib/wfu_constants.php:
|
222 |
msgid ""
|
223 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
224 |
"preventing the upload of big files.\n"
|
@@ -228,7 +234,7 @@ msgstr ""
|
|
228 |
"la carga de archivos grandes.\n"
|
229 |
"El tamaño actual en la directiva PHP upload_max_filesize es:"
|
230 |
|
231 |
-
#: lib/wfu_constants.php:
|
232 |
msgid ""
|
233 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
234 |
"upload of big files.\n"
|
@@ -238,7 +244,7 @@ msgstr ""
|
|
238 |
"carga de archivos grandes.\n"
|
239 |
"El límite actual en la directiva PHP max_input_time es:"
|
240 |
|
241 |
-
#: lib/wfu_constants.php:
|
242 |
msgid ""
|
243 |
"Error. Permission denied to write to target folder.\n"
|
244 |
"Check and correct read/write permissions of target folder."
|
@@ -246,7 +252,7 @@ msgstr ""
|
|
246 |
"Error. Permiso denegado para escribir en la carpeta de destino.\n"
|
247 |
"Verificar y corregir los permisos de lectura/escritura de la carpeta destino."
|
248 |
|
249 |
-
#: lib/wfu_constants.php:
|
250 |
msgid ""
|
251 |
"Error. This file was rejected because its extension is not correct. Its "
|
252 |
"proper filename is: "
|
@@ -254,7 +260,7 @@ msgstr ""
|
|
254 |
"Error. Este archivo fue rechazado debido a que su extensión no es correcta. "
|
255 |
"El nombre adecuado es:"
|
256 |
|
257 |
-
#: lib/wfu_constants.php:
|
258 |
msgid ""
|
259 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
260 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
@@ -265,7 +271,7 @@ msgstr ""
|
|
265 |
"archivo. Por favor verifique el registro de carga por comportamientos "
|
266 |
"sospechosos."
|
267 |
|
268 |
-
#: lib/wfu_constants.php:
|
269 |
msgid ""
|
270 |
"File not uploaded in order to prevent overflow of the website. Please "
|
271 |
"contact administrator."
|
@@ -273,36 +279,36 @@ msgstr ""
|
|
273 |
"El archivo no fue cargado para prevenir una sobrecarga del sitio. Por favor "
|
274 |
"contacte al administrador."
|
275 |
|
276 |
-
#: lib/wfu_constants.php:
|
277 |
msgid "Target folder doesn't exist."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: lib/wfu_constants.php:
|
281 |
msgid "Upload failed! Missing a temporary folder."
|
282 |
msgstr "Fallo en la carga! Falta una carpeta temporal."
|
283 |
|
284 |
-
#: lib/wfu_constants.php:
|
285 |
msgid "Upload failed! Permission denied to write to target folder."
|
286 |
msgstr ""
|
287 |
"Fallo en la carga! Permiso denegado para escribir en la carpeta de destino."
|
288 |
|
289 |
-
#: lib/wfu_constants.php:
|
290 |
msgid "File not allowed."
|
291 |
msgstr "Archivo no admitido."
|
292 |
|
293 |
-
#: lib/wfu_constants.php:
|
294 |
msgid "File is suspicious and was rejected."
|
295 |
msgstr "El archivo es sospechoso y fue rechazado."
|
296 |
|
297 |
-
#: lib/wfu_constants.php:
|
298 |
msgid "The uploaded file exceeds the file size limit."
|
299 |
msgstr "El archivo cargado excede el límite de tamaño permitido."
|
300 |
|
301 |
-
#: lib/wfu_constants.php:
|
302 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
303 |
msgstr "El archivo cargado excede 2GB y el servidor no lo soporta."
|
304 |
|
305 |
-
#: lib/wfu_constants.php:
|
306 |
msgid ""
|
307 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
308 |
"Please contact the administrator."
|
@@ -310,7 +316,7 @@ msgstr ""
|
|
310 |
"Fallo en la carga! El archivo cargado excede el límite de tamaño admitido "
|
311 |
"por el servidor. Por favor contacte al administrador."
|
312 |
|
313 |
-
#: lib/wfu_constants.php:
|
314 |
msgid ""
|
315 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
316 |
"server. Please contact the administrator."
|
@@ -318,7 +324,7 @@ msgstr ""
|
|
318 |
"Fallo en la carga! La duración de la carga excede el límite de tiempo "
|
319 |
"establecido por el servidor. Por favor contacte al administrador."
|
320 |
|
321 |
-
#: lib/wfu_constants.php:
|
322 |
msgid ""
|
323 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
324 |
"was specified in the HTML form."
|
@@ -326,19 +332,19 @@ msgstr ""
|
|
326 |
"Fallo en la carga! El archivo cargado excede la directiva MAX_FILE_SIZE "
|
327 |
"especificada en el formulario HTML."
|
328 |
|
329 |
-
#: lib/wfu_constants.php:
|
330 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
331 |
msgstr "Fallo en la carga! El archivo fue cargado sólo parcialmente."
|
332 |
|
333 |
-
#: lib/wfu_constants.php:
|
334 |
msgid "Upload failed! No file was uploaded."
|
335 |
msgstr "Fallo en la carga! No se cargó ningún archivo."
|
336 |
|
337 |
-
#: lib/wfu_constants.php:
|
338 |
msgid "Upload failed! Failed to write file to disk."
|
339 |
msgstr "Fallo en la carga! Fallo al escribir el archivo al disco."
|
340 |
|
341 |
-
#: lib/wfu_constants.php:
|
342 |
msgid ""
|
343 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
344 |
"administrator."
|
@@ -346,11 +352,11 @@ msgstr ""
|
|
346 |
"Fallo en la carga! Ocurrió un error al mover el archivo temporal. Por favor "
|
347 |
"contacte al administrador."
|
348 |
|
349 |
-
#: lib/wfu_constants.php:
|
350 |
msgid "Upload cancelled!"
|
351 |
msgstr "Carga cancelada!"
|
352 |
|
353 |
-
#: lib/wfu_constants.php:
|
354 |
msgid ""
|
355 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
356 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -360,19 +366,19 @@ msgstr ""
|
|
360 |
"manera de determinar cuál extensión ocasionó que la carga se detenga; "
|
361 |
"examinar la lista de extensiones cargadas con phpinfo() puede ayudar."
|
362 |
|
363 |
-
#: lib/wfu_constants.php:
|
364 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
365 |
msgstr "Fallo en la carga! Ocurrió un error al intentar cargar el archivo."
|
366 |
|
367 |
-
#: lib/wfu_constants.php:
|
368 |
msgid "Upload failed!"
|
369 |
msgstr "Fallo en la carga!"
|
370 |
|
371 |
-
#: lib/wfu_constants.php:
|
372 |
msgid "No file!"
|
373 |
msgstr "Sin archivo!"
|
374 |
|
375 |
-
#: lib/wfu_constants.php:
|
376 |
msgid ""
|
377 |
"Upload failed! The upload has been canceled by the user or the browser "
|
378 |
"dropped the connection."
|
@@ -380,27 +386,27 @@ msgstr ""
|
|
380 |
"Fallo en la carga! La carga fue cancelada por el usuario o el navegador "
|
381 |
"cerró la conexión."
|
382 |
|
383 |
-
#: lib/wfu_constants.php:
|
384 |
msgid "Upload failed! Unknown error."
|
385 |
msgstr "Fallo en la carga! Error desconocido."
|
386 |
|
387 |
-
#: lib/wfu_constants.php:
|
388 |
msgid "Please contact the administrator."
|
389 |
msgstr "Por favor contacte al administrador."
|
390 |
|
391 |
-
#: lib/wfu_constants.php:
|
392 |
msgid "No result from remote server!"
|
393 |
msgstr "Sin resultados desde el servidor remoto!"
|
394 |
|
395 |
-
#: lib/wfu_constants.php:
|
396 |
msgid " but with warnings"
|
397 |
msgstr "pero con errores"
|
398 |
|
399 |
-
#: lib/wfu_constants.php:
|
400 |
msgid "Warning: JSON parse error."
|
401 |
msgstr "Advertencia: Error al procesar JSON."
|
402 |
|
403 |
-
#: lib/wfu_constants.php:
|
404 |
msgid ""
|
405 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
406 |
"not be parsed."
|
@@ -408,19 +414,19 @@ msgstr ""
|
|
408 |
"Los parámetros de carga de este archivo, enviados como cadena JSON, no "
|
409 |
"pudieron ser procesados."
|
410 |
|
411 |
-
#: lib/wfu_constants.php:
|
412 |
msgid ""
|
413 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
414 |
msgstr "UploadStates, enviados como cadena JSON, no pudieron ser procesados."
|
415 |
|
416 |
-
#: lib/wfu_constants.php:
|
417 |
msgid ""
|
418 |
"Redirection to classic form functionality occurred due to unknown error."
|
419 |
msgstr ""
|
420 |
"Ocurrió una redirección a la funcionalidad clásica del formulario, debido a "
|
421 |
"un error desconocido."
|
422 |
|
423 |
-
#: lib/wfu_constants.php:
|
424 |
msgid ""
|
425 |
"Redirection to classic form functionality occurred because AJAX is not "
|
426 |
"supported."
|
@@ -428,7 +434,7 @@ msgstr ""
|
|
428 |
"Ocurrió una redirección a la funcionalidad clásica del formulario, porque "
|
429 |
"AJAX no está soportado."
|
430 |
|
431 |
-
#: lib/wfu_constants.php:
|
432 |
msgid ""
|
433 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
434 |
"supported."
|
@@ -436,59 +442,59 @@ msgstr ""
|
|
436 |
"Ocurrió una redirección a la funcionalidad clásica del formulario, porque no "
|
437 |
"se soporta HTML5."
|
438 |
|
439 |
-
#: lib/wfu_constants.php:
|
440 |
msgid ""
|
441 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
442 |
msgstr ""
|
443 |
"Ocurrió una redirección a la funcionalidad clásica del formulario debido a "
|
444 |
"un error de procesamiento JSON."
|
445 |
|
446 |
-
#: lib/wfu_constants.php:
|
447 |
msgid "Please enable popup windows from the browser's settings!"
|
448 |
msgstr ""
|
449 |
"Por favor activar las ventanas emergentes desde las opciones del navegador!"
|
450 |
|
451 |
-
#: lib/wfu_constants.php:
|
452 |
msgid "cannot be empty!"
|
453 |
msgstr "no puede estar vacío!"
|
454 |
|
455 |
-
#: lib/wfu_constants.php:
|
456 |
msgid "number not valid!"
|
457 |
msgstr "número no válido!"
|
458 |
|
459 |
-
#: lib/wfu_constants.php:
|
460 |
msgid "email not valid!"
|
461 |
msgstr "email no válido!"
|
462 |
|
463 |
-
#: lib/wfu_constants.php:
|
464 |
msgid "emails do not match!"
|
465 |
msgstr "los emails no coinciden!"
|
466 |
|
467 |
-
#: lib/wfu_constants.php:
|
468 |
msgid "no base email field in group!"
|
469 |
msgstr "sin campo base de email en el grupo!"
|
470 |
|
471 |
-
#: lib/wfu_constants.php:
|
472 |
msgid "passwords do not match!"
|
473 |
msgstr "las contraseñas no coinciden!"
|
474 |
|
475 |
-
#: lib/wfu_constants.php:
|
476 |
msgid "no base password field in group!"
|
477 |
msgstr "sin campo base de contraseña en el grupo!"
|
478 |
|
479 |
-
#: lib/wfu_constants.php:
|
480 |
msgid "checkbox unchecked!"
|
481 |
msgstr "opción desmarcada!"
|
482 |
|
483 |
-
#: lib/wfu_constants.php:
|
484 |
msgid "no option selected!"
|
485 |
msgstr "no se seleccionó opción!"
|
486 |
|
487 |
-
#: lib/wfu_constants.php:
|
488 |
msgid "no item selected!"
|
489 |
msgstr "ningún item seleccionado!"
|
490 |
|
491 |
-
#: lib/wfu_constants.php:
|
492 |
msgid ""
|
493 |
"There are more than one instances of the plugin in this page with the same "
|
494 |
"id. Please change it."
|
@@ -496,7 +502,7 @@ msgstr ""
|
|
496 |
"Hay más de una instancia del complemento con el mismo id en esta página. Por "
|
497 |
"favor cambiarlo."
|
498 |
|
499 |
-
#: lib/wfu_constants.php:
|
500 |
msgid ""
|
501 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
502 |
"the page."
|
@@ -504,19 +510,19 @@ msgstr ""
|
|
504 |
"No se puede editar el shortcode porque la página fue modificada. Por favor "
|
505 |
"recargar la página."
|
506 |
|
507 |
-
#: lib/wfu_constants.php:
|
508 |
msgid "Your browser does not support webcam capture!"
|
509 |
msgstr "Su navegador no soporta captura desde webcam!"
|
510 |
|
511 |
-
#: lib/wfu_constants.php:
|
512 |
msgid "Your browser does not support video recording from the webcam!"
|
513 |
msgstr "Su navegador no soporta la grabación de video desde webcam!"
|
514 |
|
515 |
-
#: lib/wfu_constants.php:
|
516 |
msgid "No video was recorded!"
|
517 |
msgstr "Video no grabado."
|
518 |
|
519 |
-
#: lib/wfu_constants.php:
|
520 |
msgid ""
|
521 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
522 |
"or use RecaptchaV2 (no account)."
|
@@ -524,7 +530,7 @@ msgstr ""
|
|
524 |
"ERROR: Captcha no soportado! La versión de PHP es muy antigua. Actualizar "
|
525 |
"PHP o utilizar RecaptchaV2 (sin cuenta)."
|
526 |
|
527 |
-
#: lib/wfu_constants.php:
|
528 |
msgid ""
|
529 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
530 |
"notify administrator."
|
@@ -532,7 +538,7 @@ msgstr ""
|
|
532 |
"ERROR. Sólo una instancia de RecaptchaV1 puede existir en la misma página. "
|
533 |
"Por favor notificar al administrador."
|
534 |
|
535 |
-
#: lib/wfu_constants.php:
|
536 |
msgid ""
|
537 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
538 |
"use RecaptchaV1 (no account)."
|
@@ -540,11 +546,11 @@ msgstr ""
|
|
540 |
"ERROR: Sólo una instancia de RecaptchaV1 puede existir en la misma página. "
|
541 |
"Por favor utilizar RecaptchaV1 (sin cuenta)."
|
542 |
|
543 |
-
#: lib/wfu_constants.php:
|
544 |
msgid "ERROR: No site key. Please contact administrator!"
|
545 |
msgstr "ERROR: Sin key para el sitio. Por favor contactar al administrador!"
|
546 |
|
547 |
-
#: lib/wfu_constants.php:
|
548 |
msgid ""
|
549 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
550 |
"define Google Recaptcha keys."
|
@@ -552,123 +558,123 @@ msgstr ""
|
|
552 |
"ERROR: La site key no fue definida! Por favor entrar a las opciones del "
|
553 |
"complemento en el Escritorio para definir las keys de Google Recaptcha."
|
554 |
|
555 |
-
#: lib/wfu_constants.php:
|
556 |
msgid "Bad captcha image!"
|
557 |
msgstr "Mala imagen de captcha!"
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "No input!"
|
561 |
msgstr "Sin entrada!"
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid "Captcha not completed!"
|
565 |
msgstr "Captcha no completado!"
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid "Wrong captcha!"
|
569 |
msgstr "Mal captcha!"
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid "Error refreshing captcha!"
|
573 |
msgstr "Error recargando captcha!"
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid "Unknown captcha error!"
|
577 |
msgstr "Error de captcha desconocido!"
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid "Captcha not supported by your browser!"
|
581 |
msgstr "Captcha no soportado por su navegador!"
|
582 |
|
583 |
-
#: lib/wfu_constants.php:
|
584 |
msgid "the secret parameter is missing"
|
585 |
msgstr "falta el parámetro secreto"
|
586 |
|
587 |
-
#: lib/wfu_constants.php:
|
588 |
msgid "the secret parameter is invalid or malformed"
|
589 |
msgstr "el parámetro secreto es inválido o está malformado"
|
590 |
|
591 |
-
#: lib/wfu_constants.php:
|
592 |
msgid "the response parameter is missing"
|
593 |
msgstr "falta el parámetro response"
|
594 |
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
msgid "the response parameter is invalid or malformed"
|
597 |
msgstr "el parámetro response es inválido o está malformado"
|
598 |
|
599 |
-
#: lib/wfu_constants.php:
|
600 |
msgid "Please do not use drag drop due to an internal problem."
|
601 |
msgstr "Por favor no arrastre y suelte debido a un problema interno."
|
602 |
|
603 |
-
#: lib/wfu_constants.php:
|
604 |
#, php-format
|
605 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
606 |
msgstr "Error durante carga por partes. ID único en blanco en parte %d"
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid "Chunked upload is not allowed!"
|
610 |
msgstr "No se admite carga por partes!"
|
611 |
|
612 |
-
#: lib/wfu_constants.php:
|
613 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
614 |
msgstr "La carga por partes se abortó debido a un error en la parte anterior!"
|
615 |
|
616 |
-
#: lib/wfu_constants.php:
|
617 |
msgid "Chunked upload failed, final file could not be created!"
|
618 |
msgstr "Falló la carga por partes. el archivo final no pudo ser creado!"
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
#, php-format
|
622 |
msgid "Could not write file chuck to destination on chunk %d"
|
623 |
msgstr "No se puede escribir esta parte al destino en parte %d"
|
624 |
|
625 |
-
#: lib/wfu_constants.php:
|
626 |
#, php-format
|
627 |
msgid "Could not enlarge destination file on chunk %d"
|
628 |
msgstr "No se puede agrandar el archivo de destino en parte %d"
|
629 |
|
630 |
-
#: lib/wfu_constants.php:
|
631 |
#, php-format
|
632 |
msgid "Could not open file handles on chunk %d"
|
633 |
msgstr "No se pudieron abrir los identificadores de archivo en parte %d"
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid "You are not allowed to download this file!"
|
637 |
msgstr "¡No se puede descargar este archivo!"
|
638 |
|
639 |
-
#: lib/wfu_constants.php:
|
640 |
msgid "File does not exist!"
|
641 |
msgstr "El archivo no existe!"
|
642 |
|
643 |
-
#: lib/wfu_constants.php:
|
644 |
msgid "Could not download file!"
|
645 |
msgstr "No se puede descargar el archivo!"
|
646 |
|
647 |
-
#: lib/wfu_constants.php:
|
648 |
msgid "You are not allowed to delete this file!"
|
649 |
msgstr "Sin permiso para eliminar este archivo!"
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid "File was not deleted!"
|
653 |
msgstr "El archivo no fue eliminado!"
|
654 |
|
655 |
-
#: lib/wfu_constants.php:
|
656 |
msgid "No file was deleted!"
|
657 |
msgstr "Ningún archivo fue eliminado!"
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid "Some files were not deleted!"
|
661 |
msgstr "Algunos archivos no fueron eliminados!"
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid "Upload skipped! File already exists."
|
665 |
msgstr "Carga omitida! El archivo ya existe."
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid "The extension of the file does not match its contents."
|
669 |
msgstr "La extensión del archivo no coincide con su conenido."
|
670 |
|
671 |
-
#: lib/wfu_constants.php:
|
672 |
msgid ""
|
673 |
"Upload succeeded but the file is suspicious because its contents do not "
|
674 |
"match its extension. Its proper filename is: "
|
@@ -676,25 +682,25 @@ msgstr ""
|
|
676 |
"La carga fue satisfactoria pero el archivo es sospechoso porque su contenido "
|
677 |
"no coincide con la extensión. El nombre de archivo adecuado es:"
|
678 |
|
679 |
-
#: lib/wfu_constants.php:
|
680 |
msgid "No files have been selected!"
|
681 |
msgstr "Ningún archivo seleccionado!"
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid "Please complete the consent question before continuing the upload!"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: lib/wfu_constants.php:
|
688 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
689 |
msgstr ""
|
690 |
"El complemento WPFilebase no fue actualizado porque ningún archivo fue "
|
691 |
"cargado."
|
692 |
|
693 |
-
#: lib/wfu_constants.php:
|
694 |
msgid "Notification email was not sent because there were no files uploaded."
|
695 |
msgstr "No se envió email de notificación porque ningún archivo fue cargado."
|
696 |
|
697 |
-
#: lib/wfu_constants.php:
|
698 |
msgid ""
|
699 |
"Notification email was not sent because no recipients were defined. Please "
|
700 |
"check notifyrecipients attribute in the shortcode."
|
@@ -702,7 +708,7 @@ msgstr ""
|
|
702 |
"No se envió email de notificación porque no se definieron destinatarios. Por "
|
703 |
"favor verificar el atributo notifyrecipients del shortcode."
|
704 |
|
705 |
-
#: lib/wfu_constants.php:
|
706 |
msgid ""
|
707 |
"Notification email was not sent due to an error. Please check "
|
708 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -711,7 +717,7 @@ msgstr ""
|
|
711 |
"no haya errores en los atributos notifyrecipients, notifysubject y "
|
712 |
"notifymessage."
|
713 |
|
714 |
-
#: lib/wfu_constants.php:
|
715 |
msgid ""
|
716 |
"Redirection not executed because redirection link is empty. Please check "
|
717 |
"redirectlink attribute."
|
@@ -719,18 +725,18 @@ msgstr ""
|
|
719 |
"La redirección no fue ejecutada porque el enlace de redirección está vacío. "
|
720 |
"Por favor verificar el atributo redirectlink."
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid ""
|
724 |
"Redirection not executed because not all files were successfully uploaded."
|
725 |
msgstr ""
|
726 |
"La redirección no fue ejecutada porque no todos los archivos se cargaron "
|
727 |
"satisfactoriamente."
|
728 |
|
729 |
-
#: lib/wfu_constants.php:
|
730 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
731 |
msgstr "Potencial ataque de Denegación-De-Servicio en {SITE}"
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid ""
|
735 |
"Hello admin\n"
|
736 |
"\n"
|
@@ -767,19 +773,19 @@ msgstr ""
|
|
767 |
"\n"
|
768 |
"Gracias"
|
769 |
|
770 |
-
#: lib/wfu_constants.php:
|
771 |
msgid ""
|
772 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
773 |
"details please contact info@iptanus.com."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: lib/wfu_constants.php:
|
777 |
msgid ""
|
778 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
779 |
"plugin functions. Please read this :article: for resolution."
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: lib/wfu_constants.php:
|
783 |
msgid ""
|
784 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
785 |
"message persists, contact administrator."
|
@@ -787,7 +793,7 @@ msgstr ""
|
|
787 |
"Fallo al agregar el shortcode a la página/entrada. Por favor intente "
|
788 |
"nuevamente. Si el mensaje persiste, contacte al administrador."
|
789 |
|
790 |
-
#: lib/wfu_constants.php:
|
791 |
msgid ""
|
792 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
793 |
"again to edit the shortcode."
|
@@ -795,7 +801,7 @@ msgstr ""
|
|
795 |
"Fallo al editar el shortcode porque el contenido de la página cambió. "
|
796 |
"Intente editar el shortcode nuevamente."
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid ""
|
800 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
801 |
"again to delete it."
|
@@ -803,7 +809,7 @@ msgstr ""
|
|
803 |
"Fallo al eliminar el shortcode porque el contenido de la página cambió. "
|
804 |
"Intente eliminarlo nuevamente."
|
805 |
|
806 |
-
#: lib/wfu_constants.php:
|
807 |
msgid ""
|
808 |
"The page containing the shortcode has been modified and it is no longer "
|
809 |
"valid. Please go back to reload the shortcode."
|
@@ -811,7 +817,7 @@ msgstr ""
|
|
811 |
"La página que contiene el shortcode fue modificada y ya no es válida. Por "
|
812 |
"favor vuelva a cargar el shortcode."
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid ""
|
816 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
817 |
"back to reload the shortcode."
|
@@ -819,7 +825,7 @@ msgstr ""
|
|
819 |
"Fallo al actualizar el shortcode porque el contenido de la página cambió. "
|
820 |
"Vuelva a cargar el shortcode."
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid ""
|
824 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
825 |
"go back and reload the shortcode."
|
@@ -827,39 +833,39 @@ msgstr ""
|
|
827 |
"Fallo al actualizar el shortcode. Por favor intente nuevamente. Si el "
|
828 |
"problema persiste, vuelva a cargar el shortcode."
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "This is a test message"
|
832 |
msgstr "Este es un mensaje de prueba"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "This is a test administrator message"
|
836 |
msgstr "Este es un mensaje de prueba del administrador"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "File testfile 1 under test"
|
840 |
msgstr "Archivo testfile 1 en prueba"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "File testfile 1 message"
|
844 |
msgstr "Archivo testfile 1 mensaje"
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "File testfile 1 administrator message"
|
848 |
msgstr "Archivo testfile 1 mensaje de administrador"
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "File testfile 2 under test"
|
852 |
msgstr "Archivo testfile 2 en prueba"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "File testfile 2 message"
|
856 |
msgstr "Archivo testfile 2 mensaje"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "File testfile 2 administrator message"
|
860 |
msgstr "Archivo testfile 2 mensaje de administrador"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid ""
|
864 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
865 |
"current user."
|
@@ -867,7 +873,7 @@ msgstr ""
|
|
867 |
"Insertar la variable %userid% dentro del texto. Será reemplazada por el id "
|
868 |
"del usuario actual."
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid ""
|
872 |
"Insert variable %username% inside text. It will be replaced by the username "
|
873 |
"of the current user."
|
@@ -875,7 +881,7 @@ msgstr ""
|
|
875 |
"Insertar la variable %username% dentro del texto. Será reemplazada por el "
|
876 |
"nombre del usuario actual."
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid ""
|
880 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
881 |
"the current user."
|
@@ -883,7 +889,7 @@ msgstr ""
|
|
883 |
"Insertar la variable %useremail% dentro del texto. Será reemplazada por el "
|
884 |
"email del usuario actual."
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid ""
|
888 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
889 |
"of the uploaded file."
|
@@ -891,7 +897,7 @@ msgstr ""
|
|
891 |
"Insertar la variable %filename% dentro del texto. Será reemplazada por el "
|
892 |
"nombre del archivo cargado."
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid ""
|
896 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
897 |
"filepath of the uploaded file."
|
@@ -899,7 +905,7 @@ msgstr ""
|
|
899 |
"Insertar la variable %filepath% dentro del texto. Será reemplazada por la "
|
900 |
"ruta completa al archivo cargado."
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid ""
|
904 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
905 |
"the website."
|
@@ -907,7 +913,7 @@ msgstr ""
|
|
907 |
"Insertar la variable %blogid% dentro del texto. Será reemplazada por la blog "
|
908 |
"id del sitio web."
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid ""
|
912 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
913 |
"current page."
|
@@ -915,7 +921,7 @@ msgstr ""
|
|
915 |
"Insertar la variable %pageid% dentro del texto. Será reemplazada por el id "
|
916 |
"de la página actual."
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid ""
|
920 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
921 |
"the current page."
|
@@ -923,7 +929,7 @@ msgstr ""
|
|
923 |
"Insertar variable %pagetitle% dentro del texto. Será reemplazada por el "
|
924 |
"título de la página actual."
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid ""
|
928 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
929 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -933,217 +939,234 @@ msgstr ""
|
|
933 |
"usuario de la lista desplegable. Será reemplazada por el valor que el "
|
934 |
"usuario ingresó en este campo."
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid "Insert variable %n% inside text to denote a line change."
|
938 |
msgstr ""
|
939 |
"Insertar la variable %n% dentro del texto para denotar un cambio de línea."
|
940 |
|
941 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
942 |
msgid "Test Mode"
|
943 |
msgstr "Modo de Prueba"
|
944 |
|
945 |
-
#: lib/wfu_constants.php:
|
946 |
msgid "select dir..."
|
947 |
msgstr "elegir carpeta..."
|
948 |
|
949 |
-
#: lib/wfu_constants.php:
|
950 |
msgid "type dir"
|
951 |
msgstr "ingresar carpeta"
|
952 |
|
953 |
-
#: lib/wfu_constants.php:
|
954 |
msgid "Upload path: %filepath%"
|
955 |
msgstr "Ruta de carga: %filepath%"
|
956 |
|
957 |
-
#: lib/wfu_constants.php:
|
958 |
msgid "Failed upload path: %filepath%"
|
959 |
msgstr "Falló la ruta de carga: %filepath%"
|
960 |
|
961 |
-
#: lib/wfu_constants.php:
|
962 |
msgid " (required)"
|
963 |
msgstr "(requerido)"
|
964 |
|
965 |
-
#: lib/wfu_constants.php:
|
966 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
967 |
msgstr "Los archivos están siendo cargados. ¿Desea salir de la página?"
|
968 |
|
969 |
-
#: lib/wfu_constants.php:
|
970 |
msgid "checking captcha..."
|
971 |
msgstr "verificando captcha..."
|
972 |
|
973 |
-
#: lib/wfu_constants.php:
|
974 |
msgid "refreshing..."
|
975 |
msgstr "recargando..."
|
976 |
|
977 |
-
#: lib/wfu_constants.php:
|
978 |
msgid "correct captcha"
|
979 |
msgstr "captcha correcto"
|
980 |
|
981 |
-
#: lib/wfu_constants.php:
|
982 |
msgid "click to continue the upload"
|
983 |
msgstr "click para continuar la carga"
|
984 |
|
985 |
-
#: lib/wfu_constants.php:
|
986 |
msgid "Are you sure you want to delete this file?"
|
987 |
msgstr "¿Desea eliminar este archivo?"
|
988 |
|
989 |
-
#: lib/wfu_constants.php:
|
990 |
msgid "Are you sure you want to delete these files?"
|
991 |
msgstr "¿Desea eliminar estos archivos?"
|
992 |
|
993 |
-
#: lib/wfu_constants.php:
|
994 |
msgid "Bulk Actions"
|
995 |
msgstr "Acciones en conjunto"
|
996 |
|
997 |
-
#: lib/wfu_constants.php:
|
998 |
msgid "Apply"
|
999 |
msgstr "Aplicar"
|
1000 |
|
1001 |
-
#: lib/wfu_constants.php:
|
1002 |
msgid "of "
|
1003 |
msgstr "de "
|
1004 |
|
1005 |
-
#: lib/wfu_constants.php:
|
1006 |
msgid "Are you sure that you want to cancel the upload?"
|
1007 |
msgstr "¿Desea cancelar la carga?"
|
1008 |
|
1009 |
-
#: lib/wfu_constants.php:
|
1010 |
msgid "cancel upload of this file"
|
1011 |
msgstr "cancelar carga de este archivo"
|
1012 |
|
1013 |
-
#: lib/wfu_constants.php:
|
1014 |
msgid "Upload in progress"
|
1015 |
msgstr "Carga en progreso"
|
1016 |
|
1017 |
-
#: lib/wfu_constants.php:
|
1018 |
msgid "Upload in progress with warnings!"
|
1019 |
msgstr "Carga en progreso con advertencias!"
|
1020 |
|
1021 |
-
#: lib/wfu_constants.php:
|
1022 |
msgid "Upload in progress but some files already failed!"
|
1023 |
msgstr "Carga en progreso pero algunos archivos ya fallaron!"
|
1024 |
|
1025 |
-
#: lib/wfu_constants.php:
|
1026 |
msgid "Upload in progress but no files uploaded so far!"
|
1027 |
msgstr "Carga en progreso pero ningún archivo fue cargado aún!"
|
1028 |
|
1029 |
-
#: lib/wfu_constants.php:
|
1030 |
msgid "All files uploaded successfully"
|
1031 |
msgstr "Todos los archivos fueron cargados satisfactoriamente"
|
1032 |
|
1033 |
-
#: lib/wfu_constants.php:
|
1034 |
msgid "All files uploaded successfully but there are warnings!"
|
1035 |
msgstr ""
|
1036 |
"Todos los archivos fueron cargados satisfactoriamente pero hay advertencias!"
|
1037 |
|
1038 |
-
#: lib/wfu_constants.php:
|
1039 |
msgid "File uploaded successfully but there are warnings!"
|
1040 |
msgstr "El archivo fue cargado satisfactoriamente pero hubo advertencias!"
|
1041 |
|
1042 |
-
#: lib/wfu_constants.php:
|
1043 |
msgid "Some files failed to upload!"
|
1044 |
msgstr "Falló la carga de algunos archivos!"
|
1045 |
|
1046 |
-
#: lib/wfu_constants.php:
|
1047 |
msgid "All files failed to upload"
|
1048 |
msgstr "Falló la carga de todos los archivos"
|
1049 |
|
1050 |
-
#: lib/wfu_constants.php:
|
1051 |
msgid "File failed to upload"
|
1052 |
msgstr "Falló la carga del archivo"
|
1053 |
|
1054 |
-
#: lib/wfu_constants.php:
|
1055 |
msgid "There are no files to upload!"
|
1056 |
msgstr "No hay archivos para cargar!"
|
1057 |
|
1058 |
-
#: lib/wfu_constants.php:
|
1059 |
msgid "Test upload message"
|
1060 |
msgstr "Mensaje de prueba de carga."
|
1061 |
|
1062 |
-
#: lib/wfu_constants.php:
|
1063 |
msgid "JSON parse warning!"
|
1064 |
msgstr "Advertencia de procesamiento JSON!"
|
1065 |
|
1066 |
-
#: lib/wfu_constants.php:
|
1067 |
msgid "please wait while redirecting..."
|
1068 |
msgstr "por favor espere mientras se redirecciona..."
|
1069 |
|
1070 |
-
#: lib/wfu_constants.php:
|
1071 |
msgid "Submitting data"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: lib/wfu_constants.php:
|
1075 |
msgid "Data submitted successfully!"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: lib/wfu_constants.php:
|
1079 |
msgid "Data were not submitted!"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: lib/wfu_constants.php:
|
1083 |
msgid "Cancelling upload"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
msgid "Open visual shortcode editor in new window"
|
1088 |
msgstr "Abrir el editor visual de shortcode en una nueva ventana"
|
1089 |
|
1090 |
-
#: lib/wfu_constants.php:
|
1091 |
msgid "loading visual editor"
|
1092 |
msgstr "cargando editor visual"
|
1093 |
|
1094 |
-
#: lib/wfu_constants.php:
|
1095 |
msgid "Clear file list?"
|
1096 |
msgstr "Limpiar lista de archivos?"
|
1097 |
|
1098 |
-
#: lib/wfu_constants.php:
|
1099 |
msgid "DROP HERE"
|
1100 |
msgstr "SOLTAR AQUÍ"
|
1101 |
|
1102 |
-
#: lib/wfu_constants.php:
|
1103 |
msgid "record video"
|
1104 |
msgstr "grabar video"
|
1105 |
|
1106 |
-
#: lib/wfu_constants.php:
|
1107 |
msgid "take a picture"
|
1108 |
msgstr "tomar fotografía"
|
1109 |
|
1110 |
-
#: lib/wfu_constants.php:
|
1111 |
msgid "turn webcam on/off"
|
1112 |
msgstr "encender/apagar webcam"
|
1113 |
|
1114 |
-
#: lib/wfu_constants.php:
|
1115 |
msgid "go live again"
|
1116 |
msgstr "salir en vivo otra vez"
|
1117 |
|
1118 |
-
#: lib/wfu_constants.php:
|
1119 |
msgid "end recording"
|
1120 |
msgstr "finalizar grabación"
|
1121 |
|
1122 |
-
#: lib/wfu_constants.php:
|
1123 |
msgid "play"
|
1124 |
msgstr "reproducir"
|
1125 |
|
1126 |
-
#: lib/wfu_constants.php:
|
1127 |
msgid "pause"
|
1128 |
msgstr "pausa"
|
1129 |
|
1130 |
-
#: lib/wfu_constants.php:
|
1131 |
msgid "go to the beginning"
|
1132 |
msgstr "ir al principio"
|
1133 |
|
1134 |
-
#: lib/wfu_constants.php:
|
1135 |
msgid "go to the end"
|
1136 |
msgstr "ir al final"
|
1137 |
|
1138 |
-
#: lib/wfu_constants.php:
|
1139 |
msgid "Wordpress File Upload Form"
|
1140 |
msgstr "Formulario Wordpress File Upload"
|
1141 |
|
1142 |
-
#: lib/wfu_constants.php:
|
1143 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1144 |
msgstr "Cargador de complemento Wordpress File Uploader para sidebars"
|
1145 |
|
1146 |
-
#: lib/wfu_constants.php:
|
1147 |
msgid "Upload Files"
|
1148 |
msgstr "Cargar Archivos"
|
1149 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:40+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:40+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: es\n"
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lib/wfu_constants.php:34
|
108 |
+
msgid ""
|
109 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
110 |
+
"continue!"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
msgid "File"
|
115 |
msgstr "Archivo"
|
116 |
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
msgid "Date"
|
119 |
msgstr "Fecha"
|
120 |
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
msgid "Size"
|
123 |
msgstr "Tamaño"
|
124 |
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
msgid "User"
|
127 |
msgstr "Usuario"
|
128 |
|
129 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
130 |
msgid "Page"
|
131 |
msgstr "Página"
|
132 |
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
msgid "User Fields"
|
135 |
msgstr "Campos de Usuario"
|
136 |
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
msgid "Download"
|
139 |
msgstr "Descargar"
|
140 |
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
msgid "Download this file"
|
143 |
msgstr "Descargar este archivo"
|
144 |
|
145 |
+
#: lib/wfu_constants.php:44
|
146 |
msgid "Delete"
|
147 |
msgstr "Eliminar"
|
148 |
|
149 |
+
#: lib/wfu_constants.php:45
|
150 |
msgid "Delete this file"
|
151 |
msgstr "Eliminar este archivo"
|
152 |
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
msgid "Sort list based on this column"
|
155 |
msgstr "Ordenar lista basado en columna"
|
156 |
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
msgid "guest"
|
159 |
msgstr "visitante"
|
160 |
|
161 |
+
#: lib/wfu_constants.php:48
|
162 |
msgid "unknown"
|
163 |
msgstr "desconocido"
|
164 |
|
165 |
+
#: lib/wfu_constants.php:50
|
166 |
msgid ""
|
167 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
168 |
"attribute."
|
170 |
"Error. No se pudo encontrar el destino ftp. Verificar el dominio en el "
|
171 |
"atributo 'ftpinfo'."
|
172 |
|
173 |
+
#: lib/wfu_constants.php:51
|
174 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
175 |
msgstr ""
|
176 |
"Error. Información de ftp inválida en el atributo 'ftpinfo'. Verificar el "
|
177 |
"atributo 'ftpinfo'."
|
178 |
|
179 |
+
#: lib/wfu_constants.php:52
|
180 |
msgid ""
|
181 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
182 |
"syntax."
|
184 |
"Error. No se pudo extraer la información de ftp desde el atributo 'ftpinfo'. "
|
185 |
"Verificar su sintaxis."
|
186 |
|
187 |
+
#: lib/wfu_constants.php:53
|
188 |
msgid ""
|
189 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
190 |
"attribute."
|
192 |
"Error. No se pudo encontrar el archivo de destino. Verificar el dominio en "
|
193 |
"el atributo 'ftpinfo'."
|
194 |
|
195 |
+
#: lib/wfu_constants.php:54
|
196 |
msgid ""
|
197 |
"Error. Could not open source file for ftp upload. Check if file is "
|
198 |
"accessible."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: lib/wfu_constants.php:55
|
202 |
msgid "Error. Could not send data to ftp target file."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: lib/wfu_constants.php:56
|
206 |
msgid ""
|
207 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
208 |
"attribute."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: lib/wfu_constants.php:57
|
212 |
msgid ""
|
213 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
214 |
"'ftpinfo' attribute."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: lib/wfu_constants.php:58
|
218 |
msgid ""
|
219 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
220 |
"supports sftp."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: lib/wfu_constants.php:59
|
224 |
msgid "Error. The web server does not support sftp."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: lib/wfu_constants.php:60
|
228 |
msgid ""
|
229 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
230 |
"preventing the upload of big files.\n"
|
234 |
"la carga de archivos grandes.\n"
|
235 |
"El tamaño actual en la directiva PHP upload_max_filesize es:"
|
236 |
|
237 |
+
#: lib/wfu_constants.php:61
|
238 |
msgid ""
|
239 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
240 |
"upload of big files.\n"
|
244 |
"carga de archivos grandes.\n"
|
245 |
"El límite actual en la directiva PHP max_input_time es:"
|
246 |
|
247 |
+
#: lib/wfu_constants.php:62
|
248 |
msgid ""
|
249 |
"Error. Permission denied to write to target folder.\n"
|
250 |
"Check and correct read/write permissions of target folder."
|
252 |
"Error. Permiso denegado para escribir en la carpeta de destino.\n"
|
253 |
"Verificar y corregir los permisos de lectura/escritura de la carpeta destino."
|
254 |
|
255 |
+
#: lib/wfu_constants.php:63
|
256 |
msgid ""
|
257 |
"Error. This file was rejected because its extension is not correct. Its "
|
258 |
"proper filename is: "
|
260 |
"Error. Este archivo fue rechazado debido a que su extensión no es correcta. "
|
261 |
"El nombre adecuado es:"
|
262 |
|
263 |
+
#: lib/wfu_constants.php:64
|
264 |
msgid ""
|
265 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
266 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
271 |
"archivo. Por favor verifique el registro de carga por comportamientos "
|
272 |
"sospechosos."
|
273 |
|
274 |
+
#: lib/wfu_constants.php:65
|
275 |
msgid ""
|
276 |
"File not uploaded in order to prevent overflow of the website. Please "
|
277 |
"contact administrator."
|
279 |
"El archivo no fue cargado para prevenir una sobrecarga del sitio. Por favor "
|
280 |
"contacte al administrador."
|
281 |
|
282 |
+
#: lib/wfu_constants.php:66
|
283 |
msgid "Target folder doesn't exist."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: lib/wfu_constants.php:67
|
287 |
msgid "Upload failed! Missing a temporary folder."
|
288 |
msgstr "Fallo en la carga! Falta una carpeta temporal."
|
289 |
|
290 |
+
#: lib/wfu_constants.php:68
|
291 |
msgid "Upload failed! Permission denied to write to target folder."
|
292 |
msgstr ""
|
293 |
"Fallo en la carga! Permiso denegado para escribir en la carpeta de destino."
|
294 |
|
295 |
+
#: lib/wfu_constants.php:69
|
296 |
msgid "File not allowed."
|
297 |
msgstr "Archivo no admitido."
|
298 |
|
299 |
+
#: lib/wfu_constants.php:70
|
300 |
msgid "File is suspicious and was rejected."
|
301 |
msgstr "El archivo es sospechoso y fue rechazado."
|
302 |
|
303 |
+
#: lib/wfu_constants.php:71
|
304 |
msgid "The uploaded file exceeds the file size limit."
|
305 |
msgstr "El archivo cargado excede el límite de tamaño permitido."
|
306 |
|
307 |
+
#: lib/wfu_constants.php:72
|
308 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
309 |
msgstr "El archivo cargado excede 2GB y el servidor no lo soporta."
|
310 |
|
311 |
+
#: lib/wfu_constants.php:73
|
312 |
msgid ""
|
313 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
314 |
"Please contact the administrator."
|
316 |
"Fallo en la carga! El archivo cargado excede el límite de tamaño admitido "
|
317 |
"por el servidor. Por favor contacte al administrador."
|
318 |
|
319 |
+
#: lib/wfu_constants.php:74
|
320 |
msgid ""
|
321 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
322 |
"server. Please contact the administrator."
|
324 |
"Fallo en la carga! La duración de la carga excede el límite de tiempo "
|
325 |
"establecido por el servidor. Por favor contacte al administrador."
|
326 |
|
327 |
+
#: lib/wfu_constants.php:75
|
328 |
msgid ""
|
329 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
330 |
"was specified in the HTML form."
|
332 |
"Fallo en la carga! El archivo cargado excede la directiva MAX_FILE_SIZE "
|
333 |
"especificada en el formulario HTML."
|
334 |
|
335 |
+
#: lib/wfu_constants.php:76
|
336 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
337 |
msgstr "Fallo en la carga! El archivo fue cargado sólo parcialmente."
|
338 |
|
339 |
+
#: lib/wfu_constants.php:77
|
340 |
msgid "Upload failed! No file was uploaded."
|
341 |
msgstr "Fallo en la carga! No se cargó ningún archivo."
|
342 |
|
343 |
+
#: lib/wfu_constants.php:78
|
344 |
msgid "Upload failed! Failed to write file to disk."
|
345 |
msgstr "Fallo en la carga! Fallo al escribir el archivo al disco."
|
346 |
|
347 |
+
#: lib/wfu_constants.php:79
|
348 |
msgid ""
|
349 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
350 |
"administrator."
|
352 |
"Fallo en la carga! Ocurrió un error al mover el archivo temporal. Por favor "
|
353 |
"contacte al administrador."
|
354 |
|
355 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
356 |
msgid "Upload cancelled!"
|
357 |
msgstr "Carga cancelada!"
|
358 |
|
359 |
+
#: lib/wfu_constants.php:81
|
360 |
msgid ""
|
361 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
362 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
366 |
"manera de determinar cuál extensión ocasionó que la carga se detenga; "
|
367 |
"examinar la lista de extensiones cargadas con phpinfo() puede ayudar."
|
368 |
|
369 |
+
#: lib/wfu_constants.php:82
|
370 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
371 |
msgstr "Fallo en la carga! Ocurrió un error al intentar cargar el archivo."
|
372 |
|
373 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
374 |
msgid "Upload failed!"
|
375 |
msgstr "Fallo en la carga!"
|
376 |
|
377 |
+
#: lib/wfu_constants.php:84
|
378 |
msgid "No file!"
|
379 |
msgstr "Sin archivo!"
|
380 |
|
381 |
+
#: lib/wfu_constants.php:85
|
382 |
msgid ""
|
383 |
"Upload failed! The upload has been canceled by the user or the browser "
|
384 |
"dropped the connection."
|
386 |
"Fallo en la carga! La carga fue cancelada por el usuario o el navegador "
|
387 |
"cerró la conexión."
|
388 |
|
389 |
+
#: lib/wfu_constants.php:86
|
390 |
msgid "Upload failed! Unknown error."
|
391 |
msgstr "Fallo en la carga! Error desconocido."
|
392 |
|
393 |
+
#: lib/wfu_constants.php:87
|
394 |
msgid "Please contact the administrator."
|
395 |
msgstr "Por favor contacte al administrador."
|
396 |
|
397 |
+
#: lib/wfu_constants.php:88
|
398 |
msgid "No result from remote server!"
|
399 |
msgstr "Sin resultados desde el servidor remoto!"
|
400 |
|
401 |
+
#: lib/wfu_constants.php:89
|
402 |
msgid " but with warnings"
|
403 |
msgstr "pero con errores"
|
404 |
|
405 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
406 |
msgid "Warning: JSON parse error."
|
407 |
msgstr "Advertencia: Error al procesar JSON."
|
408 |
|
409 |
+
#: lib/wfu_constants.php:91
|
410 |
msgid ""
|
411 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
412 |
"not be parsed."
|
414 |
"Los parámetros de carga de este archivo, enviados como cadena JSON, no "
|
415 |
"pudieron ser procesados."
|
416 |
|
417 |
+
#: lib/wfu_constants.php:93
|
418 |
msgid ""
|
419 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
420 |
msgstr "UploadStates, enviados como cadena JSON, no pudieron ser procesados."
|
421 |
|
422 |
+
#: lib/wfu_constants.php:94
|
423 |
msgid ""
|
424 |
"Redirection to classic form functionality occurred due to unknown error."
|
425 |
msgstr ""
|
426 |
"Ocurrió una redirección a la funcionalidad clásica del formulario, debido a "
|
427 |
"un error desconocido."
|
428 |
|
429 |
+
#: lib/wfu_constants.php:95
|
430 |
msgid ""
|
431 |
"Redirection to classic form functionality occurred because AJAX is not "
|
432 |
"supported."
|
434 |
"Ocurrió una redirección a la funcionalidad clásica del formulario, porque "
|
435 |
"AJAX no está soportado."
|
436 |
|
437 |
+
#: lib/wfu_constants.php:96
|
438 |
msgid ""
|
439 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
440 |
"supported."
|
442 |
"Ocurrió una redirección a la funcionalidad clásica del formulario, porque no "
|
443 |
"se soporta HTML5."
|
444 |
|
445 |
+
#: lib/wfu_constants.php:97
|
446 |
msgid ""
|
447 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
448 |
msgstr ""
|
449 |
"Ocurrió una redirección a la funcionalidad clásica del formulario debido a "
|
450 |
"un error de procesamiento JSON."
|
451 |
|
452 |
+
#: lib/wfu_constants.php:98
|
453 |
msgid "Please enable popup windows from the browser's settings!"
|
454 |
msgstr ""
|
455 |
"Por favor activar las ventanas emergentes desde las opciones del navegador!"
|
456 |
|
457 |
+
#: lib/wfu_constants.php:99
|
458 |
msgid "cannot be empty!"
|
459 |
msgstr "no puede estar vacío!"
|
460 |
|
461 |
+
#: lib/wfu_constants.php:100
|
462 |
msgid "number not valid!"
|
463 |
msgstr "número no válido!"
|
464 |
|
465 |
+
#: lib/wfu_constants.php:101
|
466 |
msgid "email not valid!"
|
467 |
msgstr "email no válido!"
|
468 |
|
469 |
+
#: lib/wfu_constants.php:102
|
470 |
msgid "emails do not match!"
|
471 |
msgstr "los emails no coinciden!"
|
472 |
|
473 |
+
#: lib/wfu_constants.php:103
|
474 |
msgid "no base email field in group!"
|
475 |
msgstr "sin campo base de email en el grupo!"
|
476 |
|
477 |
+
#: lib/wfu_constants.php:104
|
478 |
msgid "passwords do not match!"
|
479 |
msgstr "las contraseñas no coinciden!"
|
480 |
|
481 |
+
#: lib/wfu_constants.php:105
|
482 |
msgid "no base password field in group!"
|
483 |
msgstr "sin campo base de contraseña en el grupo!"
|
484 |
|
485 |
+
#: lib/wfu_constants.php:106
|
486 |
msgid "checkbox unchecked!"
|
487 |
msgstr "opción desmarcada!"
|
488 |
|
489 |
+
#: lib/wfu_constants.php:107
|
490 |
msgid "no option selected!"
|
491 |
msgstr "no se seleccionó opción!"
|
492 |
|
493 |
+
#: lib/wfu_constants.php:108
|
494 |
msgid "no item selected!"
|
495 |
msgstr "ningún item seleccionado!"
|
496 |
|
497 |
+
#: lib/wfu_constants.php:109
|
498 |
msgid ""
|
499 |
"There are more than one instances of the plugin in this page with the same "
|
500 |
"id. Please change it."
|
502 |
"Hay más de una instancia del complemento con el mismo id en esta página. Por "
|
503 |
"favor cambiarlo."
|
504 |
|
505 |
+
#: lib/wfu_constants.php:110
|
506 |
msgid ""
|
507 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
508 |
"the page."
|
510 |
"No se puede editar el shortcode porque la página fue modificada. Por favor "
|
511 |
"recargar la página."
|
512 |
|
513 |
+
#: lib/wfu_constants.php:111
|
514 |
msgid "Your browser does not support webcam capture!"
|
515 |
msgstr "Su navegador no soporta captura desde webcam!"
|
516 |
|
517 |
+
#: lib/wfu_constants.php:112
|
518 |
msgid "Your browser does not support video recording from the webcam!"
|
519 |
msgstr "Su navegador no soporta la grabación de video desde webcam!"
|
520 |
|
521 |
+
#: lib/wfu_constants.php:113
|
522 |
msgid "No video was recorded!"
|
523 |
msgstr "Video no grabado."
|
524 |
|
525 |
+
#: lib/wfu_constants.php:114
|
526 |
msgid ""
|
527 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
528 |
"or use RecaptchaV2 (no account)."
|
530 |
"ERROR: Captcha no soportado! La versión de PHP es muy antigua. Actualizar "
|
531 |
"PHP o utilizar RecaptchaV2 (sin cuenta)."
|
532 |
|
533 |
+
#: lib/wfu_constants.php:115
|
534 |
msgid ""
|
535 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
536 |
"notify administrator."
|
538 |
"ERROR. Sólo una instancia de RecaptchaV1 puede existir en la misma página. "
|
539 |
"Por favor notificar al administrador."
|
540 |
|
541 |
+
#: lib/wfu_constants.php:116
|
542 |
msgid ""
|
543 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
544 |
"use RecaptchaV1 (no account)."
|
546 |
"ERROR: Sólo una instancia de RecaptchaV1 puede existir en la misma página. "
|
547 |
"Por favor utilizar RecaptchaV1 (sin cuenta)."
|
548 |
|
549 |
+
#: lib/wfu_constants.php:117
|
550 |
msgid "ERROR: No site key. Please contact administrator!"
|
551 |
msgstr "ERROR: Sin key para el sitio. Por favor contactar al administrador!"
|
552 |
|
553 |
+
#: lib/wfu_constants.php:118
|
554 |
msgid ""
|
555 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
556 |
"define Google Recaptcha keys."
|
558 |
"ERROR: La site key no fue definida! Por favor entrar a las opciones del "
|
559 |
"complemento en el Escritorio para definir las keys de Google Recaptcha."
|
560 |
|
561 |
+
#: lib/wfu_constants.php:119
|
562 |
msgid "Bad captcha image!"
|
563 |
msgstr "Mala imagen de captcha!"
|
564 |
|
565 |
+
#: lib/wfu_constants.php:120
|
566 |
msgid "No input!"
|
567 |
msgstr "Sin entrada!"
|
568 |
|
569 |
+
#: lib/wfu_constants.php:121
|
570 |
msgid "Captcha not completed!"
|
571 |
msgstr "Captcha no completado!"
|
572 |
|
573 |
+
#: lib/wfu_constants.php:122
|
574 |
msgid "Wrong captcha!"
|
575 |
msgstr "Mal captcha!"
|
576 |
|
577 |
+
#: lib/wfu_constants.php:123
|
578 |
msgid "Error refreshing captcha!"
|
579 |
msgstr "Error recargando captcha!"
|
580 |
|
581 |
+
#: lib/wfu_constants.php:124
|
582 |
msgid "Unknown captcha error!"
|
583 |
msgstr "Error de captcha desconocido!"
|
584 |
|
585 |
+
#: lib/wfu_constants.php:125
|
586 |
msgid "Captcha not supported by your browser!"
|
587 |
msgstr "Captcha no soportado por su navegador!"
|
588 |
|
589 |
+
#: lib/wfu_constants.php:126
|
590 |
msgid "the secret parameter is missing"
|
591 |
msgstr "falta el parámetro secreto"
|
592 |
|
593 |
+
#: lib/wfu_constants.php:127
|
594 |
msgid "the secret parameter is invalid or malformed"
|
595 |
msgstr "el parámetro secreto es inválido o está malformado"
|
596 |
|
597 |
+
#: lib/wfu_constants.php:128
|
598 |
msgid "the response parameter is missing"
|
599 |
msgstr "falta el parámetro response"
|
600 |
|
601 |
+
#: lib/wfu_constants.php:129
|
602 |
msgid "the response parameter is invalid or malformed"
|
603 |
msgstr "el parámetro response es inválido o está malformado"
|
604 |
|
605 |
+
#: lib/wfu_constants.php:130
|
606 |
msgid "Please do not use drag drop due to an internal problem."
|
607 |
msgstr "Por favor no arrastre y suelte debido a un problema interno."
|
608 |
|
609 |
+
#: lib/wfu_constants.php:131
|
610 |
#, php-format
|
611 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
612 |
msgstr "Error durante carga por partes. ID único en blanco en parte %d"
|
613 |
|
614 |
+
#: lib/wfu_constants.php:132
|
615 |
msgid "Chunked upload is not allowed!"
|
616 |
msgstr "No se admite carga por partes!"
|
617 |
|
618 |
+
#: lib/wfu_constants.php:133
|
619 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
620 |
msgstr "La carga por partes se abortó debido a un error en la parte anterior!"
|
621 |
|
622 |
+
#: lib/wfu_constants.php:134
|
623 |
msgid "Chunked upload failed, final file could not be created!"
|
624 |
msgstr "Falló la carga por partes. el archivo final no pudo ser creado!"
|
625 |
|
626 |
+
#: lib/wfu_constants.php:135
|
627 |
#, php-format
|
628 |
msgid "Could not write file chuck to destination on chunk %d"
|
629 |
msgstr "No se puede escribir esta parte al destino en parte %d"
|
630 |
|
631 |
+
#: lib/wfu_constants.php:136
|
632 |
#, php-format
|
633 |
msgid "Could not enlarge destination file on chunk %d"
|
634 |
msgstr "No se puede agrandar el archivo de destino en parte %d"
|
635 |
|
636 |
+
#: lib/wfu_constants.php:137
|
637 |
#, php-format
|
638 |
msgid "Could not open file handles on chunk %d"
|
639 |
msgstr "No se pudieron abrir los identificadores de archivo en parte %d"
|
640 |
|
641 |
+
#: lib/wfu_constants.php:138
|
642 |
msgid "You are not allowed to download this file!"
|
643 |
msgstr "¡No se puede descargar este archivo!"
|
644 |
|
645 |
+
#: lib/wfu_constants.php:139
|
646 |
msgid "File does not exist!"
|
647 |
msgstr "El archivo no existe!"
|
648 |
|
649 |
+
#: lib/wfu_constants.php:140
|
650 |
msgid "Could not download file!"
|
651 |
msgstr "No se puede descargar el archivo!"
|
652 |
|
653 |
+
#: lib/wfu_constants.php:141
|
654 |
msgid "You are not allowed to delete this file!"
|
655 |
msgstr "Sin permiso para eliminar este archivo!"
|
656 |
|
657 |
+
#: lib/wfu_constants.php:142
|
658 |
msgid "File was not deleted!"
|
659 |
msgstr "El archivo no fue eliminado!"
|
660 |
|
661 |
+
#: lib/wfu_constants.php:143
|
662 |
msgid "No file was deleted!"
|
663 |
msgstr "Ningún archivo fue eliminado!"
|
664 |
|
665 |
+
#: lib/wfu_constants.php:144
|
666 |
msgid "Some files were not deleted!"
|
667 |
msgstr "Algunos archivos no fueron eliminados!"
|
668 |
|
669 |
+
#: lib/wfu_constants.php:146
|
670 |
msgid "Upload skipped! File already exists."
|
671 |
msgstr "Carga omitida! El archivo ya existe."
|
672 |
|
673 |
+
#: lib/wfu_constants.php:147
|
674 |
msgid "The extension of the file does not match its contents."
|
675 |
msgstr "La extensión del archivo no coincide con su conenido."
|
676 |
|
677 |
+
#: lib/wfu_constants.php:148
|
678 |
msgid ""
|
679 |
"Upload succeeded but the file is suspicious because its contents do not "
|
680 |
"match its extension. Its proper filename is: "
|
682 |
"La carga fue satisfactoria pero el archivo es sospechoso porque su contenido "
|
683 |
"no coincide con la extensión. El nombre de archivo adecuado es:"
|
684 |
|
685 |
+
#: lib/wfu_constants.php:149
|
686 |
msgid "No files have been selected!"
|
687 |
msgstr "Ningún archivo seleccionado!"
|
688 |
|
689 |
+
#: lib/wfu_constants.php:150
|
690 |
msgid "Please complete the consent question before continuing the upload!"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: lib/wfu_constants.php:151
|
694 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
695 |
msgstr ""
|
696 |
"El complemento WPFilebase no fue actualizado porque ningún archivo fue "
|
697 |
"cargado."
|
698 |
|
699 |
+
#: lib/wfu_constants.php:152
|
700 |
msgid "Notification email was not sent because there were no files uploaded."
|
701 |
msgstr "No se envió email de notificación porque ningún archivo fue cargado."
|
702 |
|
703 |
+
#: lib/wfu_constants.php:153
|
704 |
msgid ""
|
705 |
"Notification email was not sent because no recipients were defined. Please "
|
706 |
"check notifyrecipients attribute in the shortcode."
|
708 |
"No se envió email de notificación porque no se definieron destinatarios. Por "
|
709 |
"favor verificar el atributo notifyrecipients del shortcode."
|
710 |
|
711 |
+
#: lib/wfu_constants.php:154
|
712 |
msgid ""
|
713 |
"Notification email was not sent due to an error. Please check "
|
714 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
717 |
"no haya errores en los atributos notifyrecipients, notifysubject y "
|
718 |
"notifymessage."
|
719 |
|
720 |
+
#: lib/wfu_constants.php:155
|
721 |
msgid ""
|
722 |
"Redirection not executed because redirection link is empty. Please check "
|
723 |
"redirectlink attribute."
|
725 |
"La redirección no fue ejecutada porque el enlace de redirección está vacío. "
|
726 |
"Por favor verificar el atributo redirectlink."
|
727 |
|
728 |
+
#: lib/wfu_constants.php:156
|
729 |
msgid ""
|
730 |
"Redirection not executed because not all files were successfully uploaded."
|
731 |
msgstr ""
|
732 |
"La redirección no fue ejecutada porque no todos los archivos se cargaron "
|
733 |
"satisfactoriamente."
|
734 |
|
735 |
+
#: lib/wfu_constants.php:157
|
736 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
737 |
msgstr "Potencial ataque de Denegación-De-Servicio en {SITE}"
|
738 |
|
739 |
+
#: lib/wfu_constants.php:158
|
740 |
msgid ""
|
741 |
"Hello admin\n"
|
742 |
"\n"
|
773 |
"\n"
|
774 |
"Gracias"
|
775 |
|
776 |
+
#: lib/wfu_constants.php:159
|
777 |
msgid ""
|
778 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
779 |
"details please contact info@iptanus.com."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: lib/wfu_constants.php:160
|
783 |
msgid ""
|
784 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
785 |
"plugin functions. Please read this :article: for resolution."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: lib/wfu_constants.php:162
|
789 |
msgid ""
|
790 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
791 |
"message persists, contact administrator."
|
793 |
"Fallo al agregar el shortcode a la página/entrada. Por favor intente "
|
794 |
"nuevamente. Si el mensaje persiste, contacte al administrador."
|
795 |
|
796 |
+
#: lib/wfu_constants.php:163
|
797 |
msgid ""
|
798 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
799 |
"again to edit the shortcode."
|
801 |
"Fallo al editar el shortcode porque el contenido de la página cambió. "
|
802 |
"Intente editar el shortcode nuevamente."
|
803 |
|
804 |
+
#: lib/wfu_constants.php:164
|
805 |
msgid ""
|
806 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
807 |
"again to delete it."
|
809 |
"Fallo al eliminar el shortcode porque el contenido de la página cambió. "
|
810 |
"Intente eliminarlo nuevamente."
|
811 |
|
812 |
+
#: lib/wfu_constants.php:165
|
813 |
msgid ""
|
814 |
"The page containing the shortcode has been modified and it is no longer "
|
815 |
"valid. Please go back to reload the shortcode."
|
817 |
"La página que contiene el shortcode fue modificada y ya no es válida. Por "
|
818 |
"favor vuelva a cargar el shortcode."
|
819 |
|
820 |
+
#: lib/wfu_constants.php:166
|
821 |
msgid ""
|
822 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
823 |
"back to reload the shortcode."
|
825 |
"Fallo al actualizar el shortcode porque el contenido de la página cambió. "
|
826 |
"Vuelva a cargar el shortcode."
|
827 |
|
828 |
+
#: lib/wfu_constants.php:167
|
829 |
msgid ""
|
830 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
831 |
"go back and reload the shortcode."
|
833 |
"Fallo al actualizar el shortcode. Por favor intente nuevamente. Si el "
|
834 |
"problema persiste, vuelva a cargar el shortcode."
|
835 |
|
836 |
+
#: lib/wfu_constants.php:169
|
837 |
msgid "This is a test message"
|
838 |
msgstr "Este es un mensaje de prueba"
|
839 |
|
840 |
+
#: lib/wfu_constants.php:170
|
841 |
msgid "This is a test administrator message"
|
842 |
msgstr "Este es un mensaje de prueba del administrador"
|
843 |
|
844 |
+
#: lib/wfu_constants.php:171
|
845 |
msgid "File testfile 1 under test"
|
846 |
msgstr "Archivo testfile 1 en prueba"
|
847 |
|
848 |
+
#: lib/wfu_constants.php:172
|
849 |
msgid "File testfile 1 message"
|
850 |
msgstr "Archivo testfile 1 mensaje"
|
851 |
|
852 |
+
#: lib/wfu_constants.php:173
|
853 |
msgid "File testfile 1 administrator message"
|
854 |
msgstr "Archivo testfile 1 mensaje de administrador"
|
855 |
|
856 |
+
#: lib/wfu_constants.php:174
|
857 |
msgid "File testfile 2 under test"
|
858 |
msgstr "Archivo testfile 2 en prueba"
|
859 |
|
860 |
+
#: lib/wfu_constants.php:175
|
861 |
msgid "File testfile 2 message"
|
862 |
msgstr "Archivo testfile 2 mensaje"
|
863 |
|
864 |
+
#: lib/wfu_constants.php:176
|
865 |
msgid "File testfile 2 administrator message"
|
866 |
msgstr "Archivo testfile 2 mensaje de administrador"
|
867 |
|
868 |
+
#: lib/wfu_constants.php:178
|
869 |
msgid ""
|
870 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
871 |
"current user."
|
873 |
"Insertar la variable %userid% dentro del texto. Será reemplazada por el id "
|
874 |
"del usuario actual."
|
875 |
|
876 |
+
#: lib/wfu_constants.php:179
|
877 |
msgid ""
|
878 |
"Insert variable %username% inside text. It will be replaced by the username "
|
879 |
"of the current user."
|
881 |
"Insertar la variable %username% dentro del texto. Será reemplazada por el "
|
882 |
"nombre del usuario actual."
|
883 |
|
884 |
+
#: lib/wfu_constants.php:180
|
885 |
msgid ""
|
886 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
887 |
"the current user."
|
889 |
"Insertar la variable %useremail% dentro del texto. Será reemplazada por el "
|
890 |
"email del usuario actual."
|
891 |
|
892 |
+
#: lib/wfu_constants.php:181
|
893 |
msgid ""
|
894 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
895 |
"of the uploaded file."
|
897 |
"Insertar la variable %filename% dentro del texto. Será reemplazada por el "
|
898 |
"nombre del archivo cargado."
|
899 |
|
900 |
+
#: lib/wfu_constants.php:182
|
901 |
msgid ""
|
902 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
903 |
"filepath of the uploaded file."
|
905 |
"Insertar la variable %filepath% dentro del texto. Será reemplazada por la "
|
906 |
"ruta completa al archivo cargado."
|
907 |
|
908 |
+
#: lib/wfu_constants.php:183
|
909 |
msgid ""
|
910 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
911 |
"the website."
|
913 |
"Insertar la variable %blogid% dentro del texto. Será reemplazada por la blog "
|
914 |
"id del sitio web."
|
915 |
|
916 |
+
#: lib/wfu_constants.php:184
|
917 |
msgid ""
|
918 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
919 |
"current page."
|
921 |
"Insertar la variable %pageid% dentro del texto. Será reemplazada por el id "
|
922 |
"de la página actual."
|
923 |
|
924 |
+
#: lib/wfu_constants.php:185
|
925 |
msgid ""
|
926 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
927 |
"the current page."
|
929 |
"Insertar variable %pagetitle% dentro del texto. Será reemplazada por el "
|
930 |
"título de la página actual."
|
931 |
|
932 |
+
#: lib/wfu_constants.php:186
|
933 |
msgid ""
|
934 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
935 |
"drop-down list. It will be replaced by the value that the user entered in "
|
939 |
"usuario de la lista desplegable. Será reemplazada por el valor que el "
|
940 |
"usuario ingresó en este campo."
|
941 |
|
942 |
+
#: lib/wfu_constants.php:187
|
943 |
msgid "Insert variable %n% inside text to denote a line change."
|
944 |
msgstr ""
|
945 |
"Insertar la variable %n% dentro del texto para denotar un cambio de línea."
|
946 |
|
947 |
+
#: lib/wfu_constants.php:189
|
948 |
+
#, php-format
|
949 |
+
msgid "File %filename% uploaded successfully but not saved"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: lib/wfu_constants.php:190
|
953 |
msgid "Test Mode"
|
954 |
msgstr "Modo de Prueba"
|
955 |
|
956 |
+
#: lib/wfu_constants.php:191
|
957 |
msgid "select dir..."
|
958 |
msgstr "elegir carpeta..."
|
959 |
|
960 |
+
#: lib/wfu_constants.php:192
|
961 |
msgid "type dir"
|
962 |
msgstr "ingresar carpeta"
|
963 |
|
964 |
+
#: lib/wfu_constants.php:193
|
965 |
msgid "Upload path: %filepath%"
|
966 |
msgstr "Ruta de carga: %filepath%"
|
967 |
|
968 |
+
#: lib/wfu_constants.php:194
|
969 |
msgid "Failed upload path: %filepath%"
|
970 |
msgstr "Falló la ruta de carga: %filepath%"
|
971 |
|
972 |
+
#: lib/wfu_constants.php:195
|
973 |
msgid " (required)"
|
974 |
msgstr "(requerido)"
|
975 |
|
976 |
+
#: lib/wfu_constants.php:196
|
977 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
978 |
msgstr "Los archivos están siendo cargados. ¿Desea salir de la página?"
|
979 |
|
980 |
+
#: lib/wfu_constants.php:197
|
981 |
msgid "checking captcha..."
|
982 |
msgstr "verificando captcha..."
|
983 |
|
984 |
+
#: lib/wfu_constants.php:198
|
985 |
msgid "refreshing..."
|
986 |
msgstr "recargando..."
|
987 |
|
988 |
+
#: lib/wfu_constants.php:199
|
989 |
msgid "correct captcha"
|
990 |
msgstr "captcha correcto"
|
991 |
|
992 |
+
#: lib/wfu_constants.php:200
|
993 |
msgid "click to continue the upload"
|
994 |
msgstr "click para continuar la carga"
|
995 |
|
996 |
+
#: lib/wfu_constants.php:201
|
997 |
msgid "Are you sure you want to delete this file?"
|
998 |
msgstr "¿Desea eliminar este archivo?"
|
999 |
|
1000 |
+
#: lib/wfu_constants.php:202
|
1001 |
msgid "Are you sure you want to delete these files?"
|
1002 |
msgstr "¿Desea eliminar estos archivos?"
|
1003 |
|
1004 |
+
#: lib/wfu_constants.php:203
|
1005 |
msgid "Bulk Actions"
|
1006 |
msgstr "Acciones en conjunto"
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:204
|
1009 |
msgid "Apply"
|
1010 |
msgstr "Aplicar"
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:206
|
1013 |
msgid "of "
|
1014 |
msgstr "de "
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:207
|
1017 |
msgid "Are you sure that you want to cancel the upload?"
|
1018 |
msgstr "¿Desea cancelar la carga?"
|
1019 |
|
1020 |
+
#: lib/wfu_constants.php:208
|
1021 |
msgid "cancel upload of this file"
|
1022 |
msgstr "cancelar carga de este archivo"
|
1023 |
|
1024 |
+
#: lib/wfu_constants.php:209
|
1025 |
msgid "Upload in progress"
|
1026 |
msgstr "Carga en progreso"
|
1027 |
|
1028 |
+
#: lib/wfu_constants.php:210
|
1029 |
msgid "Upload in progress with warnings!"
|
1030 |
msgstr "Carga en progreso con advertencias!"
|
1031 |
|
1032 |
+
#: lib/wfu_constants.php:211
|
1033 |
msgid "Upload in progress but some files already failed!"
|
1034 |
msgstr "Carga en progreso pero algunos archivos ya fallaron!"
|
1035 |
|
1036 |
+
#: lib/wfu_constants.php:212
|
1037 |
msgid "Upload in progress but no files uploaded so far!"
|
1038 |
msgstr "Carga en progreso pero ningún archivo fue cargado aún!"
|
1039 |
|
1040 |
+
#: lib/wfu_constants.php:213
|
1041 |
msgid "All files uploaded successfully"
|
1042 |
msgstr "Todos los archivos fueron cargados satisfactoriamente"
|
1043 |
|
1044 |
+
#: lib/wfu_constants.php:214
|
1045 |
msgid "All files uploaded successfully but there are warnings!"
|
1046 |
msgstr ""
|
1047 |
"Todos los archivos fueron cargados satisfactoriamente pero hay advertencias!"
|
1048 |
|
1049 |
+
#: lib/wfu_constants.php:215
|
1050 |
msgid "File uploaded successfully but there are warnings!"
|
1051 |
msgstr "El archivo fue cargado satisfactoriamente pero hubo advertencias!"
|
1052 |
|
1053 |
+
#: lib/wfu_constants.php:216
|
1054 |
msgid "Some files failed to upload!"
|
1055 |
msgstr "Falló la carga de algunos archivos!"
|
1056 |
|
1057 |
+
#: lib/wfu_constants.php:217
|
1058 |
msgid "All files failed to upload"
|
1059 |
msgstr "Falló la carga de todos los archivos"
|
1060 |
|
1061 |
+
#: lib/wfu_constants.php:218
|
1062 |
msgid "File failed to upload"
|
1063 |
msgstr "Falló la carga del archivo"
|
1064 |
|
1065 |
+
#: lib/wfu_constants.php:219
|
1066 |
msgid "There are no files to upload!"
|
1067 |
msgstr "No hay archivos para cargar!"
|
1068 |
|
1069 |
+
#: lib/wfu_constants.php:220
|
1070 |
msgid "Test upload message"
|
1071 |
msgstr "Mensaje de prueba de carga."
|
1072 |
|
1073 |
+
#: lib/wfu_constants.php:221
|
1074 |
msgid "JSON parse warning!"
|
1075 |
msgstr "Advertencia de procesamiento JSON!"
|
1076 |
|
1077 |
+
#: lib/wfu_constants.php:222
|
1078 |
msgid "please wait while redirecting..."
|
1079 |
msgstr "por favor espere mientras se redirecciona..."
|
1080 |
|
1081 |
+
#: lib/wfu_constants.php:224
|
1082 |
msgid "Submitting data"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: lib/wfu_constants.php:225
|
1086 |
msgid "Data submitted successfully!"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
+
#: lib/wfu_constants.php:226
|
1090 |
msgid "Data were not submitted!"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: lib/wfu_constants.php:227
|
1094 |
msgid "Cancelling upload"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: lib/wfu_constants.php:229
|
1098 |
+
msgid "Upload succeeded!"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: lib/wfu_constants.php:230
|
1102 |
+
msgid "Upload completed but no files were saved!"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: lib/wfu_constants.php:231
|
1106 |
+
msgid "File was not saved due to personal data policy!"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: lib/wfu_constants.php:232
|
1110 |
msgid "Open visual shortcode editor in new window"
|
1111 |
msgstr "Abrir el editor visual de shortcode en una nueva ventana"
|
1112 |
|
1113 |
+
#: lib/wfu_constants.php:233
|
1114 |
msgid "loading visual editor"
|
1115 |
msgstr "cargando editor visual"
|
1116 |
|
1117 |
+
#: lib/wfu_constants.php:234
|
1118 |
msgid "Clear file list?"
|
1119 |
msgstr "Limpiar lista de archivos?"
|
1120 |
|
1121 |
+
#: lib/wfu_constants.php:235
|
1122 |
msgid "DROP HERE"
|
1123 |
msgstr "SOLTAR AQUÍ"
|
1124 |
|
1125 |
+
#: lib/wfu_constants.php:237
|
1126 |
msgid "record video"
|
1127 |
msgstr "grabar video"
|
1128 |
|
1129 |
+
#: lib/wfu_constants.php:238
|
1130 |
msgid "take a picture"
|
1131 |
msgstr "tomar fotografía"
|
1132 |
|
1133 |
+
#: lib/wfu_constants.php:239
|
1134 |
msgid "turn webcam on/off"
|
1135 |
msgstr "encender/apagar webcam"
|
1136 |
|
1137 |
+
#: lib/wfu_constants.php:240
|
1138 |
msgid "go live again"
|
1139 |
msgstr "salir en vivo otra vez"
|
1140 |
|
1141 |
+
#: lib/wfu_constants.php:241
|
1142 |
msgid "end recording"
|
1143 |
msgstr "finalizar grabación"
|
1144 |
|
1145 |
+
#: lib/wfu_constants.php:242
|
1146 |
msgid "play"
|
1147 |
msgstr "reproducir"
|
1148 |
|
1149 |
+
#: lib/wfu_constants.php:243
|
1150 |
msgid "pause"
|
1151 |
msgstr "pausa"
|
1152 |
|
1153 |
+
#: lib/wfu_constants.php:244
|
1154 |
msgid "go to the beginning"
|
1155 |
msgstr "ir al principio"
|
1156 |
|
1157 |
+
#: lib/wfu_constants.php:245
|
1158 |
msgid "go to the end"
|
1159 |
msgstr "ir al final"
|
1160 |
|
1161 |
+
#: lib/wfu_constants.php:247
|
1162 |
msgid "Wordpress File Upload Form"
|
1163 |
msgstr "Formulario Wordpress File Upload"
|
1164 |
|
1165 |
+
#: lib/wfu_constants.php:248
|
1166 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1167 |
msgstr "Cargador de complemento Wordpress File Uploader para sidebars"
|
1168 |
|
1169 |
+
#: lib/wfu_constants.php:249
|
1170 |
msgid "Upload Files"
|
1171 |
msgstr "Cargar Archivos"
|
1172 |
|
languages/wp-file-upload-fa_IR.mo
CHANGED
Binary file
|
languages/wp-file-upload-fa_IR.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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: fa_IR\n"
|
@@ -104,70 +104,76 @@ msgid ""
|
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "File"
|
109 |
msgstr "فایل"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
112 |
msgid "Date"
|
113 |
msgstr "تاریخ"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Size"
|
117 |
msgstr "اندازه"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "User"
|
121 |
msgstr "کاربر"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "Page"
|
125 |
msgstr "برگه"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "User Fields"
|
129 |
msgstr "فیلدهای کاربر"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "Download"
|
133 |
msgstr "دانلود"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download this file"
|
137 |
msgstr "دانلود این فایل"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Delete"
|
141 |
msgstr "حذف"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete this file"
|
145 |
msgstr "حذف این فایل"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Sort list based on this column"
|
149 |
msgstr "مرتب سازی بر اساس این ستون"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "guest"
|
153 |
msgstr "مهمان"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "unknown"
|
157 |
msgstr "ناشناس"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid ""
|
161 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
162 |
"attribute."
|
163 |
msgstr ""
|
164 |
"خطا: نمی توان دایرکتوری ftp هدف را پیدا کند. ویژگی های 'ftpinfo' را برسی کنید"
|
165 |
|
166 |
-
#: lib/wfu_constants.php:
|
167 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
168 |
msgstr "خطا: اطلاعات ftp نادرست است. 'ftpinfo' را برسی کنید"
|
169 |
|
170 |
-
#: lib/wfu_constants.php:
|
171 |
msgid ""
|
172 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
173 |
"syntax."
|
@@ -175,7 +181,7 @@ msgstr ""
|
|
175 |
"خطا: نمی توان اطلاعات ftp را از 'ftpinfo' استخراج کرد. نحوه ورود اطلاعات را "
|
176 |
"برسی کنید."
|
177 |
|
178 |
-
#: lib/wfu_constants.php:
|
179 |
msgid ""
|
180 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
181 |
"attribute."
|
@@ -183,7 +189,7 @@ msgstr ""
|
|
183 |
"خطا: نمی توان مشکل نام فایل هدف در ftp را حل کرد. ویژگی های 'ftpinfo' را "
|
184 |
"برسی کنید"
|
185 |
|
186 |
-
#: lib/wfu_constants.php:
|
187 |
msgid ""
|
188 |
"Error. Could not open source file for ftp upload. Check if file is "
|
189 |
"accessible."
|
@@ -191,17 +197,17 @@ msgstr ""
|
|
191 |
"خطا: نمی توان فایل باز را برای ftp بارگزاری کرد. برسی کنید فایل قابل دسترسی "
|
192 |
"است."
|
193 |
|
194 |
-
#: lib/wfu_constants.php:
|
195 |
msgid "Error. Could not send data to ftp target file."
|
196 |
msgstr "خطا: نمی توان داده را به فایل هدف ftp فرستاد."
|
197 |
|
198 |
-
#: lib/wfu_constants.php:
|
199 |
msgid ""
|
200 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
201 |
"attribute."
|
202 |
msgstr "خطا: نمی توان به میزبان ftp متصل شد. ویژگی های 'ftpinfo' را برسی کنید"
|
203 |
|
204 |
-
#: lib/wfu_constants.php:
|
205 |
msgid ""
|
206 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
207 |
"'ftpinfo' attribute."
|
@@ -209,7 +215,7 @@ msgstr ""
|
|
209 |
"خطا: احراز هویت به میزبان ftp امکان پذیر نیست. یوزر و پسورد در 'ftpinfo' را "
|
210 |
"برسی نمایید"
|
211 |
|
212 |
-
#: lib/wfu_constants.php:
|
213 |
msgid ""
|
214 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
215 |
"supports sftp."
|
@@ -217,11 +223,11 @@ msgstr ""
|
|
217 |
"خطا: نمی توان زیر سیستم sftp را مقداردهی کند. برسی کنید که سرور شما از sftp "
|
218 |
"پشتیبانی می کند."
|
219 |
|
220 |
-
#: lib/wfu_constants.php:
|
221 |
msgid "Error. The web server does not support sftp."
|
222 |
msgstr "خطا: وب سرور قادر به پشتیبانی از sftp نیست"
|
223 |
|
224 |
-
#: lib/wfu_constants.php:
|
225 |
msgid ""
|
226 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
227 |
"preventing the upload of big files.\n"
|
@@ -231,7 +237,7 @@ msgstr ""
|
|
231 |
"فایل های بزرگ را نمی دهد.\n"
|
232 |
"محدودیت اپلود از طریق upload_max_filesize:"
|
233 |
|
234 |
-
#: lib/wfu_constants.php:
|
235 |
msgid ""
|
236 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
237 |
"upload of big files.\n"
|
@@ -241,7 +247,7 @@ msgstr ""
|
|
241 |
"را نمی دهد.\n"
|
242 |
"محدودیت در زمان بارگزاری max_input_time:"
|
243 |
|
244 |
-
#: lib/wfu_constants.php:
|
245 |
msgid ""
|
246 |
"Error. Permission denied to write to target folder.\n"
|
247 |
"Check and correct read/write permissions of target folder."
|
@@ -249,13 +255,13 @@ msgstr ""
|
|
249 |
"خطا: حق دسترسی برای نوشتن در فولدر هدف وجود ندارد.\n"
|
250 |
"برسی کنید حق دسترسی برای خواندن/نوشتن در فولدر هدف وجود داشته باشد"
|
251 |
|
252 |
-
#: lib/wfu_constants.php:
|
253 |
msgid ""
|
254 |
"Error. This file was rejected because its extension is not correct. Its "
|
255 |
"proper filename is: "
|
256 |
msgstr "خطا: این فایل به دلیل صحیح نبودن پسوند رد شد. نام پرونده:"
|
257 |
|
258 |
-
#: lib/wfu_constants.php:
|
259 |
msgid ""
|
260 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
261 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
@@ -264,42 +270,42 @@ msgstr ""
|
|
264 |
"فایل های بسیاری در یک بازه زمان کوتاه بارگزاری شده اند. همانند حملات DDOS. "
|
265 |
"بنابراین فایل رد شد. لطفا لاگ سیستم را برای موارد مشکوک برسی کنید."
|
266 |
|
267 |
-
#: lib/wfu_constants.php:
|
268 |
msgid ""
|
269 |
"File not uploaded in order to prevent overflow of the website. Please "
|
270 |
"contact administrator."
|
271 |
msgstr ""
|
272 |
"فایل به دلیل پر بودن فضای سایت بارگزاری نشد. لطفا با مدیر سایت تماس بگیرید."
|
273 |
|
274 |
-
#: lib/wfu_constants.php:
|
275 |
msgid "Target folder doesn't exist."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: lib/wfu_constants.php:
|
279 |
msgid "Upload failed! Missing a temporary folder."
|
280 |
msgstr "بارگزاری با خطا مواجه شد! فولدر موقت گم شده است."
|
281 |
|
282 |
-
#: lib/wfu_constants.php:
|
283 |
msgid "Upload failed! Permission denied to write to target folder."
|
284 |
msgstr "بارگزاری با خطا مواجه شد! دسترسی برای نوشتن در فولدر هدف وجود ندارد."
|
285 |
|
286 |
-
#: lib/wfu_constants.php:
|
287 |
msgid "File not allowed."
|
288 |
msgstr "فایل مجاز نیست"
|
289 |
|
290 |
-
#: lib/wfu_constants.php:
|
291 |
msgid "File is suspicious and was rejected."
|
292 |
msgstr "فایل مشکوک است و پذیرفته نشد."
|
293 |
|
294 |
-
#: lib/wfu_constants.php:
|
295 |
msgid "The uploaded file exceeds the file size limit."
|
296 |
msgstr "حجم فایل بارگزاری شده بیش از حد مجاز است"
|
297 |
|
298 |
-
#: lib/wfu_constants.php:
|
299 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
300 |
msgstr "فایل بیشتر از 2GB حجم دارد و این سرور آن را پشتیبانی نمی کند"
|
301 |
|
302 |
-
#: lib/wfu_constants.php:
|
303 |
msgid ""
|
304 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
305 |
"Please contact the administrator."
|
@@ -307,7 +313,7 @@ msgstr ""
|
|
307 |
"بارگزاری با خطا مواجه شد. فایل بارگزاری شده از حد مجاز سرور بزرگتر است. با "
|
308 |
"مدیر سایت تماس بگیرید."
|
309 |
|
310 |
-
#: lib/wfu_constants.php:
|
311 |
msgid ""
|
312 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
313 |
"server. Please contact the administrator."
|
@@ -315,7 +321,7 @@ msgstr ""
|
|
315 |
"بارگزاری با خطا مواجه شد! مدت زمان بارگزاری از زمان مشخص شده در سرور بیشتر "
|
316 |
"است. با مدیر سایت تماس بگیرید."
|
317 |
|
318 |
-
#: lib/wfu_constants.php:
|
319 |
msgid ""
|
320 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
321 |
"was specified in the HTML form."
|
@@ -323,19 +329,19 @@ msgstr ""
|
|
323 |
"فایل آپلود شده بزرگتر از دستورالعمل MAX_FILE_SIZE است که در فرم HTML مشخص "
|
324 |
"شده است."
|
325 |
|
326 |
-
#: lib/wfu_constants.php:
|
327 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
328 |
msgstr "بارگزاری با خطا مواجه شد! تنها بخشی از فایل بارگزاری شد."
|
329 |
|
330 |
-
#: lib/wfu_constants.php:
|
331 |
msgid "Upload failed! No file was uploaded."
|
332 |
msgstr "بارگزاری با خطا مواجه شد! فایل بارگزاری نشد."
|
333 |
|
334 |
-
#: lib/wfu_constants.php:
|
335 |
msgid "Upload failed! Failed to write file to disk."
|
336 |
msgstr "بارگزاری با خطا مواجه شد! خطا در نوشتن روی دیسک"
|
337 |
|
338 |
-
#: lib/wfu_constants.php:
|
339 |
msgid ""
|
340 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
341 |
"administrator."
|
@@ -343,11 +349,11 @@ msgstr ""
|
|
343 |
"بارگزاری با خطا مواجه شد! خطا در هنگام انتقال فایل موقت. لطفا با مدیر سایت "
|
344 |
"تماس بگیرید."
|
345 |
|
346 |
-
#: lib/wfu_constants.php:
|
347 |
msgid "Upload cancelled!"
|
348 |
msgstr "از بارگزاری انصراف داده شد."
|
349 |
|
350 |
-
#: lib/wfu_constants.php:
|
351 |
msgid ""
|
352 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
353 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -357,19 +363,19 @@ msgstr ""
|
|
357 |
"اچ پی به شما اطمینان نمی دهد کدام افزونه باعث توقف بارگزاری شده است. شاید "
|
358 |
"phpinfo() به شما کمک کند."
|
359 |
|
360 |
-
#: lib/wfu_constants.php:
|
361 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
362 |
msgstr "بارگزاری با خطا مواجه شد! هنگام بارگزاری فایل خطایی رخ داد."
|
363 |
|
364 |
-
#: lib/wfu_constants.php:
|
365 |
msgid "Upload failed!"
|
366 |
msgstr "بارگزاری با خطا مواجه شد."
|
367 |
|
368 |
-
#: lib/wfu_constants.php:
|
369 |
msgid "No file!"
|
370 |
msgstr "هیچ فایل!"
|
371 |
|
372 |
-
#: lib/wfu_constants.php:
|
373 |
msgid ""
|
374 |
"Upload failed! The upload has been canceled by the user or the browser "
|
375 |
"dropped the connection."
|
@@ -377,27 +383,27 @@ msgstr ""
|
|
377 |
"بارگزاری با خطا مواجه شد! کاربر از بارگزاری فایل انصراف داد یا اینکه مرورگر "
|
378 |
"ارتباط را بست."
|
379 |
|
380 |
-
#: lib/wfu_constants.php:
|
381 |
msgid "Upload failed! Unknown error."
|
382 |
msgstr "بارگزاری با خطا مواجه شد! خطای ناشناخته!"
|
383 |
|
384 |
-
#: lib/wfu_constants.php:
|
385 |
msgid "Please contact the administrator."
|
386 |
msgstr "لطفا با مدیر سایت تماس بگیرید."
|
387 |
|
388 |
-
#: lib/wfu_constants.php:
|
389 |
msgid "No result from remote server!"
|
390 |
msgstr "نتیجه ای از سرور راه دور در بر نداشت."
|
391 |
|
392 |
-
#: lib/wfu_constants.php:
|
393 |
msgid " but with warnings"
|
394 |
msgstr "اما با اخطار"
|
395 |
|
396 |
-
#: lib/wfu_constants.php:
|
397 |
msgid "Warning: JSON parse error."
|
398 |
msgstr "اخطار: خطای تجزیه و تحلیل JSON"
|
399 |
|
400 |
-
#: lib/wfu_constants.php:
|
401 |
msgid ""
|
402 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
403 |
"not be parsed."
|
@@ -405,86 +411,86 @@ msgstr ""
|
|
405 |
"بارگزاری پارامتر این فایل که به رشته JSON منتقل شد نمی تواند تجزیه و تحلیل "
|
406 |
"شود"
|
407 |
|
408 |
-
#: lib/wfu_constants.php:
|
409 |
msgid ""
|
410 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
411 |
msgstr ""
|
412 |
"وضعیت بارگزاری این فایل که به رشته JSON منتقل شد، نمی تواند تجزیه و تحلیل شود"
|
413 |
|
414 |
-
#: lib/wfu_constants.php:
|
415 |
msgid ""
|
416 |
"Redirection to classic form functionality occurred due to unknown error."
|
417 |
msgstr "تغییر به فرم کلاسیک به دلیل خطای ناشناخته."
|
418 |
|
419 |
-
#: lib/wfu_constants.php:
|
420 |
msgid ""
|
421 |
"Redirection to classic form functionality occurred because AJAX is not "
|
422 |
"supported."
|
423 |
msgstr "تغییر به فرم کلاسیک به دلیل پشتیبانی نکردن اجاکس"
|
424 |
|
425 |
-
#: lib/wfu_constants.php:
|
426 |
msgid ""
|
427 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
428 |
"supported."
|
429 |
msgstr "تغییر به فرم کلاسیک به دلیل عدم پشتیبانی HTML 5."
|
430 |
|
431 |
-
#: lib/wfu_constants.php:
|
432 |
msgid ""
|
433 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
434 |
msgstr "تغییر به فرم کلاسیک به دلیل خطا در تجزیه و تحلیل JSON"
|
435 |
|
436 |
-
#: lib/wfu_constants.php:
|
437 |
msgid "Please enable popup windows from the browser's settings!"
|
438 |
msgstr "لطفا نمایش پاپ آپ را در تنظیمات مرورگر فعال کنید."
|
439 |
|
440 |
-
#: lib/wfu_constants.php:
|
441 |
msgid "cannot be empty!"
|
442 |
msgstr "نمی تواند خالی باشد!"
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid "number not valid!"
|
446 |
msgstr "شماره معتبر نیست"
|
447 |
|
448 |
-
#: lib/wfu_constants.php:
|
449 |
msgid "email not valid!"
|
450 |
msgstr "ایمیل اشتباه است"
|
451 |
|
452 |
-
#: lib/wfu_constants.php:
|
453 |
msgid "emails do not match!"
|
454 |
msgstr "ایمیل اشتباه وارد شده!"
|
455 |
|
456 |
-
#: lib/wfu_constants.php:
|
457 |
msgid "no base email field in group!"
|
458 |
msgstr "فیلد ایمیل در گروه وجود ندارد"
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "passwords do not match!"
|
462 |
msgstr "رمز عبورهای عبور مطابقت ندارند!"
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid "no base password field in group!"
|
466 |
msgstr "فیلد رمز عبور در گروه وجود ندارد"
|
467 |
|
468 |
-
#: lib/wfu_constants.php:
|
469 |
msgid "checkbox unchecked!"
|
470 |
msgstr "چک باکس بدون تیک! "
|
471 |
|
472 |
-
#: lib/wfu_constants.php:
|
473 |
msgid "no option selected!"
|
474 |
msgstr "گزینه انتخاب نشده است"
|
475 |
|
476 |
-
#: lib/wfu_constants.php:
|
477 |
msgid "no item selected!"
|
478 |
msgstr "موردی انتخاب نشده است"
|
479 |
|
480 |
-
#: lib/wfu_constants.php:
|
481 |
msgid ""
|
482 |
"There are more than one instances of the plugin in this page with the same "
|
483 |
"id. Please change it."
|
484 |
msgstr ""
|
485 |
"بیش از یک نمونه از این افزونه در این صفحه وجود دارد. لطفا آن را تغییر دهید."
|
486 |
|
487 |
-
#: lib/wfu_constants.php:
|
488 |
msgid ""
|
489 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
490 |
"the page."
|
@@ -492,19 +498,19 @@ msgstr ""
|
|
492 |
"نمی تواند شورت کد را ویرایش کند. به دلیل اینکه صفحه تغیر داده شده است. لطفا "
|
493 |
"صفحه را ریلود نمایید."
|
494 |
|
495 |
-
#: lib/wfu_constants.php:
|
496 |
msgid "Your browser does not support webcam capture!"
|
497 |
msgstr "مرورگر شما ضبط از طریق وب کم را پشتیبانی نمی کند"
|
498 |
|
499 |
-
#: lib/wfu_constants.php:
|
500 |
msgid "Your browser does not support video recording from the webcam!"
|
501 |
msgstr "مرورگر شما ضبط ویدیو را از طریق وب کم را پشتیبانی نمی کند"
|
502 |
|
503 |
-
#: lib/wfu_constants.php:
|
504 |
msgid "No video was recorded!"
|
505 |
msgstr "ویدیو ضبط نشد!"
|
506 |
|
507 |
-
#: lib/wfu_constants.php:
|
508 |
msgid ""
|
509 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
510 |
"or use RecaptchaV2 (no account)."
|
@@ -512,7 +518,7 @@ msgstr ""
|
|
512 |
"خطا: کپچا پشتیبانی نمی شود! شما از نسخه قدیمی پی اچ پی استفاده می کنید، پی "
|
513 |
"اچ پی را ارتقا دهید یا از Recaptcha V2 استفاده کنید."
|
514 |
|
515 |
-
#: lib/wfu_constants.php:
|
516 |
msgid ""
|
517 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
518 |
"notify administrator."
|
@@ -520,7 +526,7 @@ msgstr ""
|
|
520 |
"خطا: تنها یک نمونه از RecaptchaV1 می تواند در صفحه وجود داشته باشد. به مدیر "
|
521 |
"سایت اطلاع دهید."
|
522 |
|
523 |
-
#: lib/wfu_constants.php:
|
524 |
msgid ""
|
525 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
526 |
"use RecaptchaV1 (no account)."
|
@@ -528,11 +534,11 @@ msgstr ""
|
|
528 |
"خطا: تنها یک نمونه از RecaptchaV1 می تواند در صفحه وجود داشته باشد. لطفا از "
|
529 |
"RecaptchaV1 استفاده کنید (بدون حساب کاربری)"
|
530 |
|
531 |
-
#: lib/wfu_constants.php:
|
532 |
msgid "ERROR: No site key. Please contact administrator!"
|
533 |
msgstr "خطا: بدون کلید سایت. با مدیر سایت تماس بگیرید."
|
534 |
|
535 |
-
#: lib/wfu_constants.php:
|
536 |
msgid ""
|
537 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
538 |
"define Google Recaptcha keys."
|
@@ -540,123 +546,123 @@ msgstr ""
|
|
540 |
"خطا: کلید برای سایت تعریف نشده است! لطفا به تنظیمات افزونه در پیشخوان بروید "
|
541 |
"و از کلید های گوگل ریکپچا استفاده نمایید"
|
542 |
|
543 |
-
#: lib/wfu_constants.php:
|
544 |
msgid "Bad captcha image!"
|
545 |
msgstr "تصویر کپچا نادرست"
|
546 |
|
547 |
-
#: lib/wfu_constants.php:
|
548 |
msgid "No input!"
|
549 |
msgstr "بدون ورودی!"
|
550 |
|
551 |
-
#: lib/wfu_constants.php:
|
552 |
msgid "Captcha not completed!"
|
553 |
msgstr "کپچا کامل نشده است!"
|
554 |
|
555 |
-
#: lib/wfu_constants.php:
|
556 |
msgid "Wrong captcha!"
|
557 |
msgstr "کپچا اشتباه است!"
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "Error refreshing captcha!"
|
561 |
msgstr "خطا در بارگزاری مجدد کپچا"
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid "Unknown captcha error!"
|
565 |
msgstr "خطای ناشناخته کپچا"
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid "Captcha not supported by your browser!"
|
569 |
msgstr "کپچا توسط مرورگر شما پشتیبانی نمی شود."
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid "the secret parameter is missing"
|
573 |
msgstr "پارامتر امنیتی گم شده یا وارد نشده"
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid "the secret parameter is invalid or malformed"
|
577 |
msgstr "پارامتر امنیتی نامعتبر یا ناقص است"
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid "the response parameter is missing"
|
581 |
msgstr "پاسخ پارامتر درست نیست."
|
582 |
|
583 |
-
#: lib/wfu_constants.php:
|
584 |
msgid "the response parameter is invalid or malformed"
|
585 |
msgstr "پاسخ پارامتر نامعتبر یا ناقص است"
|
586 |
|
587 |
-
#: lib/wfu_constants.php:
|
588 |
msgid "Please do not use drag drop due to an internal problem."
|
589 |
msgstr "لطفا برای مشکلات داخلی از درگ اند دراپ استفاده نکنید."
|
590 |
|
591 |
-
#: lib/wfu_constants.php:
|
592 |
#, php-format
|
593 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
594 |
msgstr "خطا در هنگام بارگزاری یک بخش. شناسه منحصر به فرد خالی در بخش %d"
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
msgid "Chunked upload is not allowed!"
|
598 |
msgstr "بارگزاری یک بخش مجاز نیست"
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
602 |
msgstr "بارگزاری یک بخش به دلیل خطا در بخش قبل متوقف شد"
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "Chunked upload failed, final file could not be created!"
|
606 |
msgstr "بارگزاری یک بخش با خطا مواجه شد. فایل نهایی قابل ایجاد نیست."
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
#, php-format
|
610 |
msgid "Could not write file chuck to destination on chunk %d"
|
611 |
msgstr "نمی توان بخشی از فایل را در قسمتی از بخش %d نوشت"
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
#, php-format
|
615 |
msgid "Could not enlarge destination file on chunk %d"
|
616 |
msgstr "نمی توان فایل مقصد را در بخش %d گسترش داد"
|
617 |
|
618 |
-
#: lib/wfu_constants.php:
|
619 |
#, php-format
|
620 |
msgid "Could not open file handles on chunk %d"
|
621 |
msgstr "نمی توان فایل های دستی را در chunk %d باز کرد"
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid "You are not allowed to download this file!"
|
625 |
msgstr "شما اجازه دانلود این فایل را ندارید"
|
626 |
|
627 |
-
#: lib/wfu_constants.php:
|
628 |
msgid "File does not exist!"
|
629 |
msgstr "فایل وجود ندارد"
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
msgid "Could not download file!"
|
633 |
msgstr "فایل دانلود نشد."
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid "You are not allowed to delete this file!"
|
637 |
msgstr "شما اجازه حذف این فایل را ندارید"
|
638 |
|
639 |
-
#: lib/wfu_constants.php:
|
640 |
msgid "File was not deleted!"
|
641 |
msgstr "فایل حذف نشد"
|
642 |
|
643 |
-
#: lib/wfu_constants.php:
|
644 |
msgid "No file was deleted!"
|
645 |
msgstr "هیچ فایلی حذف نشد!"
|
646 |
|
647 |
-
#: lib/wfu_constants.php:
|
648 |
msgid "Some files were not deleted!"
|
649 |
msgstr "برخی از فایل ها حذف نشدند!"
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid "Upload skipped! File already exists."
|
653 |
msgstr "بارگزاری رد شد. فایل وجود دارد."
|
654 |
|
655 |
-
#: lib/wfu_constants.php:
|
656 |
msgid "The extension of the file does not match its contents."
|
657 |
msgstr "فرمت فایل با محتوای آن مطابقت ندارد."
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid ""
|
661 |
"Upload succeeded but the file is suspicious because its contents do not "
|
662 |
"match its extension. Its proper filename is: "
|
@@ -664,23 +670,23 @@ msgstr ""
|
|
664 |
"بارگزاری انجام شد اما فایل مشکوک است و محتوا با فرمت آن مطابقت ندارد. نام "
|
665 |
"فایل مناسب است: "
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid "No files have been selected!"
|
669 |
msgstr "هیچ فایلی انتخاب نشده است"
|
670 |
|
671 |
-
#: lib/wfu_constants.php:
|
672 |
msgid "Please complete the consent question before continuing the upload!"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
677 |
msgstr "افزونه WPFilebase بروز نشد زیرا فایل ها بارگزاری نشده است"
|
678 |
|
679 |
-
#: lib/wfu_constants.php:
|
680 |
msgid "Notification email was not sent because there were no files uploaded."
|
681 |
msgstr "اطلاع رسانی ایمیل ارسال نخواهد شد. زیرا فایل ها بارگزاری نشده است"
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid ""
|
685 |
"Notification email was not sent because no recipients were defined. Please "
|
686 |
"check notifyrecipients attribute in the shortcode."
|
@@ -688,7 +694,7 @@ msgstr ""
|
|
688 |
"اطلاع رسانی ایمیل ارسال نخواهد شد. زیرا گیرنده ایمیل انتخاب نشده است. لطفا "
|
689 |
"گیرنده را در ویژگی های شورت کد برسی کنید."
|
690 |
|
691 |
-
#: lib/wfu_constants.php:
|
692 |
msgid ""
|
693 |
"Notification email was not sent due to an error. Please check "
|
694 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -696,7 +702,7 @@ msgstr ""
|
|
696 |
"اطلاع رسانی ایمیل به دلیل خطا ارسال نخواهد شد. لطفا گیرنده، موضوع و پیام را "
|
697 |
"برای خطاها کنترل کنید."
|
698 |
|
699 |
-
#: lib/wfu_constants.php:
|
700 |
msgid ""
|
701 |
"Redirection not executed because redirection link is empty. Please check "
|
702 |
"redirectlink attribute."
|
@@ -704,16 +710,16 @@ msgstr ""
|
|
704 |
"تغیر مسیر انجام نمی شود زیرا لینک تغیر مسیر خالی است. لطفا ویژگی تغیر مسیر "
|
705 |
"را برسی کنید."
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"Redirection not executed because not all files were successfully uploaded."
|
710 |
msgstr "تغیر مسیر انجام نمی شود زیرا همه فایل ها با موفقیت بارگزاری نشده اند"
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
714 |
msgstr "حمله احتمالی DDOS در {SITE}"
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid ""
|
718 |
"Hello admin\n"
|
719 |
"\n"
|
@@ -749,7 +755,7 @@ msgstr ""
|
|
749 |
"\n"
|
750 |
"متشکریم."
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid ""
|
754 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
755 |
"details please contact info@iptanus.com."
|
@@ -757,13 +763,13 @@ msgstr ""
|
|
757 |
"شما سرویس غیر امن Iptanus را فعال نموده اید. برای اطلاعات بیشتر با "
|
758 |
"info@iptanus.com تماس بگیرید"
|
759 |
|
760 |
-
#: lib/wfu_constants.php:
|
761 |
msgid ""
|
762 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
763 |
"plugin functions. Please read this :article: for resolution."
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: lib/wfu_constants.php:
|
767 |
msgid ""
|
768 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
769 |
"message persists, contact administrator."
|
@@ -771,7 +777,7 @@ msgstr ""
|
|
771 |
"خطا در اضافه کردن شورت کد به برگه/نوشته. لطفا مجددا امتحان کنید. در صورت "
|
772 |
"مشاهده مجدد این پیام با مدیر کل تماس بگیرید."
|
773 |
|
774 |
-
#: lib/wfu_constants.php:
|
775 |
msgid ""
|
776 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
777 |
"again to edit the shortcode."
|
@@ -779,14 +785,14 @@ msgstr ""
|
|
779 |
"ویرایش شورت کد با خطا مواجه شد زیرا محتوای صفحه تغیر پیدا کرده است. لطفا "
|
780 |
"مجددا شورت کد را ویرایش کنید."
|
781 |
|
782 |
-
#: lib/wfu_constants.php:
|
783 |
msgid ""
|
784 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
785 |
"again to delete it."
|
786 |
msgstr ""
|
787 |
"خطا در حذف شورت کد. زیرا محتوای صفحه تغیر کرده است. دوباره ان را حذف کنید."
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid ""
|
791 |
"The page containing the shortcode has been modified and it is no longer "
|
792 |
"valid. Please go back to reload the shortcode."
|
@@ -794,7 +800,7 @@ msgstr ""
|
|
794 |
"این صفحه حاوی شورت کد است که تغیر داده شده است و دیگر معتبر نیست. لطفا "
|
795 |
"بازگشته و شورت کد را ریلود نمایید."
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid ""
|
799 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
800 |
"back to reload the shortcode."
|
@@ -802,7 +808,7 @@ msgstr ""
|
|
802 |
"خطا در بروزرسانی شورت کد. زیرا محتوای این صفحه تغییر کرده است. بازگشته و "
|
803 |
"شورت کد را ریلود نمایید."
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid ""
|
807 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
808 |
"go back and reload the shortcode."
|
@@ -810,92 +816,92 @@ msgstr ""
|
|
810 |
"خطا در بروزرسانی شورت کد. لطفا مجددا امتحان کنید. اگر این مشکل ادامه داشت "
|
811 |
"بازگشه و شورک کد را ریلود نمایید."
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid "This is a test message"
|
815 |
msgstr "این یک پیام تست است."
|
816 |
|
817 |
-
#: lib/wfu_constants.php:
|
818 |
msgid "This is a test administrator message"
|
819 |
msgstr "این یک پیام مدیریتی تست است."
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid "File testfile 1 under test"
|
823 |
msgstr "تست فایل testfile 1 "
|
824 |
|
825 |
-
#: lib/wfu_constants.php:
|
826 |
msgid "File testfile 1 message"
|
827 |
msgstr "پیام فایل testfile 1 "
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "File testfile 1 administrator message"
|
831 |
msgstr "پیام مدیریتی testfile 1"
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
834 |
msgid "File testfile 2 under test"
|
835 |
msgstr "تست فایل testfile 2"
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "File testfile 2 message"
|
839 |
msgstr "پیام فایل testfile 2"
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "File testfile 2 administrator message"
|
843 |
msgstr "پیام مدیریتی testfile 2"
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid ""
|
847 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
848 |
"current user."
|
849 |
msgstr "وارد کردن متغیر %userid% در متن. با آی دی کاربر جاری جایگزین خواهد شد."
|
850 |
|
851 |
-
#: lib/wfu_constants.php:
|
852 |
msgid ""
|
853 |
"Insert variable %username% inside text. It will be replaced by the username "
|
854 |
"of the current user."
|
855 |
msgstr ""
|
856 |
"وارد کردن متغیر %username% در متن. با نام کاربری کاربر جاری جایگزین خواهد شد"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid ""
|
860 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
861 |
"the current user."
|
862 |
msgstr ""
|
863 |
"وارد کردن متغیر %useremail% در متن. با ایمیل کاربر جاری جایگزین خواهد شد"
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid ""
|
867 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
868 |
"of the uploaded file."
|
869 |
msgstr ""
|
870 |
"وارد کردن متغیر %filename% در متن. با نام فایل بارگزاری شده جایگزین خواهد شد"
|
871 |
|
872 |
-
#: lib/wfu_constants.php:
|
873 |
msgid ""
|
874 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
875 |
"filepath of the uploaded file."
|
876 |
msgstr "وارد کردن متغیر %filepath% در متن. با مسیر فایل جایگزین خواهد شد."
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid ""
|
880 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
881 |
"the website."
|
882 |
msgstr ""
|
883 |
"وارد کردن متغیر %blogid% در متن. با ای دی سایت در وب سایت جایگزین خواهد شد."
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid ""
|
887 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
888 |
"current page."
|
889 |
msgstr "وارد کردن متغیر %pageid% در متن. با آی دی صفحه جاری جایگزین خواهد شد."
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid ""
|
893 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
894 |
"the current page."
|
895 |
msgstr ""
|
896 |
"وارد کردن متغیر %pagetitle% در متن. با عنوان صفحه جاری جایگزین خواهد شد"
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid ""
|
900 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
901 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -904,215 +910,232 @@ msgstr ""
|
|
904 |
"وارد کردن متغیر %userdataXXX% در متن. فیلد کاربر را از لیست کشویی انتخاب "
|
905 |
"کنید. مقدار وارد شده توسط کاربر برای هر فیلد جایگزین خواهد شد."
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "Insert variable %n% inside text to denote a line change."
|
909 |
msgstr "وارد کردن متغیر %n% در متن. باعث رفتن به خط بعد خواهد شد."
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
912 |
msgid "Test Mode"
|
913 |
msgstr "حالت تست"
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid "select dir..."
|
917 |
msgstr "انتخاب مسیر"
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "type dir"
|
921 |
msgstr "نوع مسیر"
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "Upload path: %filepath%"
|
925 |
msgstr "مسیر بارگزاری: %filepath%"
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "Failed upload path: %filepath%"
|
929 |
msgstr "خطا در مسیر بارگزاری: %filepath%"
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid " (required)"
|
933 |
msgstr "(الزامی)"
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
937 |
msgstr "فایل ها در حال بارگزاری هستند. از خارج شدن از این صفحه مطمئن هستید؟"
|
938 |
|
939 |
-
#: lib/wfu_constants.php:
|
940 |
msgid "checking captcha..."
|
941 |
msgstr "برسی کپچا...."
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid "refreshing..."
|
945 |
msgstr "در حال رفرش...."
|
946 |
|
947 |
-
#: lib/wfu_constants.php:
|
948 |
msgid "correct captcha"
|
949 |
msgstr "کپچا صحیح"
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid "click to continue the upload"
|
953 |
msgstr "برای ادامه بارگزاری کلیک کنید"
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "Are you sure you want to delete this file?"
|
957 |
msgstr "از حذف این فایل مطمئن هستید؟"
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "Are you sure you want to delete these files?"
|
961 |
msgstr "از حذف این فایل ها مطمئن هستید؟"
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "Bulk Actions"
|
965 |
msgstr "انجام همه"
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "Apply"
|
969 |
msgstr "تایید"
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "of "
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: lib/wfu_constants.php:
|
976 |
msgid "Are you sure that you want to cancel the upload?"
|
977 |
msgstr "آیا از انصراف از بارگزاری مطمئن هستید؟"
|
978 |
|
979 |
-
#: lib/wfu_constants.php:
|
980 |
msgid "cancel upload of this file"
|
981 |
msgstr "انصراف از بارگزاری این فایل"
|
982 |
|
983 |
-
#: lib/wfu_constants.php:
|
984 |
msgid "Upload in progress"
|
985 |
msgstr "در حال بارگزاری..."
|
986 |
|
987 |
-
#: lib/wfu_constants.php:
|
988 |
msgid "Upload in progress with warnings!"
|
989 |
msgstr "در حال بارگزاری با اخطارها!"
|
990 |
|
991 |
-
#: lib/wfu_constants.php:
|
992 |
msgid "Upload in progress but some files already failed!"
|
993 |
msgstr "بارگزاری در حال انجام است، اما برخی فایل های با خطا مواجه شد!"
|
994 |
|
995 |
-
#: lib/wfu_constants.php:
|
996 |
msgid "Upload in progress but no files uploaded so far!"
|
997 |
msgstr "بارگزاری در حال انجام است اما فایلی تاکنون بارگزاری نشده است!"
|
998 |
|
999 |
-
#: lib/wfu_constants.php:
|
1000 |
msgid "All files uploaded successfully"
|
1001 |
msgstr "همه فایل ها با موفقیت بارگزاری شدند."
|
1002 |
|
1003 |
-
#: lib/wfu_constants.php:
|
1004 |
msgid "All files uploaded successfully but there are warnings!"
|
1005 |
msgstr "همه فایل ها با موفقیت بارگزاری شدند اما با برخی اخطار"
|
1006 |
|
1007 |
-
#: lib/wfu_constants.php:
|
1008 |
msgid "File uploaded successfully but there are warnings!"
|
1009 |
msgstr "فایل با موفقیت بارگزاری شد. اما با برخی از اخطارها!"
|
1010 |
|
1011 |
-
#: lib/wfu_constants.php:
|
1012 |
msgid "Some files failed to upload!"
|
1013 |
msgstr "برخی از فایل ها بارگزاری نشد"
|
1014 |
|
1015 |
-
#: lib/wfu_constants.php:
|
1016 |
msgid "All files failed to upload"
|
1017 |
msgstr "همه فایل ها بارگزاری نشد."
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "File failed to upload"
|
1021 |
msgstr "فایل بارگزاری نشد"
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "There are no files to upload!"
|
1025 |
msgstr "فایلی برای بارگزاری وجود ندارد"
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "Test upload message"
|
1029 |
msgstr "پیام بارگزاری تست"
|
1030 |
|
1031 |
-
#: lib/wfu_constants.php:
|
1032 |
msgid "JSON parse warning!"
|
1033 |
msgstr "اخطار در تجزیه و تحلیل JSON"
|
1034 |
|
1035 |
-
#: lib/wfu_constants.php:
|
1036 |
msgid "please wait while redirecting..."
|
1037 |
msgstr "لطفا تا زمان تغیر مسیر صبر کنید..."
|
1038 |
|
1039 |
-
#: lib/wfu_constants.php:
|
1040 |
msgid "Submitting data"
|
1041 |
msgstr "در حال ارسال داده ها"
|
1042 |
|
1043 |
-
#: lib/wfu_constants.php:
|
1044 |
msgid "Data submitted successfully!"
|
1045 |
msgstr "داده ها با موفقیت ارسال شدند!"
|
1046 |
|
1047 |
-
#: lib/wfu_constants.php:
|
1048 |
msgid "Data were not submitted!"
|
1049 |
msgstr "داده ها ارسال نشدند!"
|
1050 |
|
1051 |
-
#: lib/wfu_constants.php:
|
1052 |
msgid "Cancelling upload"
|
1053 |
msgstr "در حال انصراف از بارگزاری"
|
1054 |
|
1055 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgid "Open visual shortcode editor in new window"
|
1057 |
msgstr "ویرایشگر شورت کد را در پنجره جدید باز کن"
|
1058 |
|
1059 |
-
#: lib/wfu_constants.php:
|
1060 |
msgid "loading visual editor"
|
1061 |
msgstr "لود شدن ویرایشگر دیداری"
|
1062 |
|
1063 |
-
#: lib/wfu_constants.php:
|
1064 |
msgid "Clear file list?"
|
1065 |
msgstr "پاک کردن لیست فایل؟"
|
1066 |
|
1067 |
-
#: lib/wfu_constants.php:
|
1068 |
msgid "DROP HERE"
|
1069 |
msgstr "حذف کن"
|
1070 |
|
1071 |
-
#: lib/wfu_constants.php:
|
1072 |
msgid "record video"
|
1073 |
msgstr "ضبط ویدیو"
|
1074 |
|
1075 |
-
#: lib/wfu_constants.php:
|
1076 |
msgid "take a picture"
|
1077 |
msgstr "گرفتن تصویر"
|
1078 |
|
1079 |
-
#: lib/wfu_constants.php:
|
1080 |
msgid "turn webcam on/off"
|
1081 |
msgstr "روشن/خاموش کردن وب کم"
|
1082 |
|
1083 |
-
#: lib/wfu_constants.php:
|
1084 |
msgid "go live again"
|
1085 |
msgstr "زنده گرفتن"
|
1086 |
|
1087 |
-
#: lib/wfu_constants.php:
|
1088 |
msgid "end recording"
|
1089 |
msgstr "پایان ضبط"
|
1090 |
|
1091 |
-
#: lib/wfu_constants.php:
|
1092 |
msgid "play"
|
1093 |
msgstr "شروع"
|
1094 |
|
1095 |
-
#: lib/wfu_constants.php:
|
1096 |
msgid "pause"
|
1097 |
msgstr "توقف"
|
1098 |
|
1099 |
-
#: lib/wfu_constants.php:
|
1100 |
msgid "go to the beginning"
|
1101 |
msgstr "رفتن به ابتدا"
|
1102 |
|
1103 |
-
#: lib/wfu_constants.php:
|
1104 |
msgid "go to the end"
|
1105 |
msgstr "رفتن به انتها"
|
1106 |
|
1107 |
-
#: lib/wfu_constants.php:
|
1108 |
msgid "Wordpress File Upload Form"
|
1109 |
msgstr "فرم بارگزاری فایل وردپرس"
|
1110 |
|
1111 |
-
#: lib/wfu_constants.php:
|
1112 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1113 |
msgstr "بارگزارنده افزونه بارگزاری فایل وردپرس برای ستون کناری"
|
1114 |
|
1115 |
-
#: lib/wfu_constants.php:
|
1116 |
msgid "Upload Files"
|
1117 |
msgstr "بارگزاری فایل"
|
1118 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:40+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:40+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: fa_IR\n"
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lib/wfu_constants.php:34
|
108 |
+
msgid ""
|
109 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
110 |
+
"continue!"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
msgid "File"
|
115 |
msgstr "فایل"
|
116 |
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
msgid "Date"
|
119 |
msgstr "تاریخ"
|
120 |
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
msgid "Size"
|
123 |
msgstr "اندازه"
|
124 |
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
msgid "User"
|
127 |
msgstr "کاربر"
|
128 |
|
129 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
130 |
msgid "Page"
|
131 |
msgstr "برگه"
|
132 |
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
msgid "User Fields"
|
135 |
msgstr "فیلدهای کاربر"
|
136 |
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
msgid "Download"
|
139 |
msgstr "دانلود"
|
140 |
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
msgid "Download this file"
|
143 |
msgstr "دانلود این فایل"
|
144 |
|
145 |
+
#: lib/wfu_constants.php:44
|
146 |
msgid "Delete"
|
147 |
msgstr "حذف"
|
148 |
|
149 |
+
#: lib/wfu_constants.php:45
|
150 |
msgid "Delete this file"
|
151 |
msgstr "حذف این فایل"
|
152 |
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
msgid "Sort list based on this column"
|
155 |
msgstr "مرتب سازی بر اساس این ستون"
|
156 |
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
msgid "guest"
|
159 |
msgstr "مهمان"
|
160 |
|
161 |
+
#: lib/wfu_constants.php:48
|
162 |
msgid "unknown"
|
163 |
msgstr "ناشناس"
|
164 |
|
165 |
+
#: lib/wfu_constants.php:50
|
166 |
msgid ""
|
167 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
168 |
"attribute."
|
169 |
msgstr ""
|
170 |
"خطا: نمی توان دایرکتوری ftp هدف را پیدا کند. ویژگی های 'ftpinfo' را برسی کنید"
|
171 |
|
172 |
+
#: lib/wfu_constants.php:51
|
173 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
174 |
msgstr "خطا: اطلاعات ftp نادرست است. 'ftpinfo' را برسی کنید"
|
175 |
|
176 |
+
#: lib/wfu_constants.php:52
|
177 |
msgid ""
|
178 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
179 |
"syntax."
|
181 |
"خطا: نمی توان اطلاعات ftp را از 'ftpinfo' استخراج کرد. نحوه ورود اطلاعات را "
|
182 |
"برسی کنید."
|
183 |
|
184 |
+
#: lib/wfu_constants.php:53
|
185 |
msgid ""
|
186 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
187 |
"attribute."
|
189 |
"خطا: نمی توان مشکل نام فایل هدف در ftp را حل کرد. ویژگی های 'ftpinfo' را "
|
190 |
"برسی کنید"
|
191 |
|
192 |
+
#: lib/wfu_constants.php:54
|
193 |
msgid ""
|
194 |
"Error. Could not open source file for ftp upload. Check if file is "
|
195 |
"accessible."
|
197 |
"خطا: نمی توان فایل باز را برای ftp بارگزاری کرد. برسی کنید فایل قابل دسترسی "
|
198 |
"است."
|
199 |
|
200 |
+
#: lib/wfu_constants.php:55
|
201 |
msgid "Error. Could not send data to ftp target file."
|
202 |
msgstr "خطا: نمی توان داده را به فایل هدف ftp فرستاد."
|
203 |
|
204 |
+
#: lib/wfu_constants.php:56
|
205 |
msgid ""
|
206 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
207 |
"attribute."
|
208 |
msgstr "خطا: نمی توان به میزبان ftp متصل شد. ویژگی های 'ftpinfo' را برسی کنید"
|
209 |
|
210 |
+
#: lib/wfu_constants.php:57
|
211 |
msgid ""
|
212 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
213 |
"'ftpinfo' attribute."
|
215 |
"خطا: احراز هویت به میزبان ftp امکان پذیر نیست. یوزر و پسورد در 'ftpinfo' را "
|
216 |
"برسی نمایید"
|
217 |
|
218 |
+
#: lib/wfu_constants.php:58
|
219 |
msgid ""
|
220 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
221 |
"supports sftp."
|
223 |
"خطا: نمی توان زیر سیستم sftp را مقداردهی کند. برسی کنید که سرور شما از sftp "
|
224 |
"پشتیبانی می کند."
|
225 |
|
226 |
+
#: lib/wfu_constants.php:59
|
227 |
msgid "Error. The web server does not support sftp."
|
228 |
msgstr "خطا: وب سرور قادر به پشتیبانی از sftp نیست"
|
229 |
|
230 |
+
#: lib/wfu_constants.php:60
|
231 |
msgid ""
|
232 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
233 |
"preventing the upload of big files.\n"
|
237 |
"فایل های بزرگ را نمی دهد.\n"
|
238 |
"محدودیت اپلود از طریق upload_max_filesize:"
|
239 |
|
240 |
+
#: lib/wfu_constants.php:61
|
241 |
msgid ""
|
242 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
243 |
"upload of big files.\n"
|
247 |
"را نمی دهد.\n"
|
248 |
"محدودیت در زمان بارگزاری max_input_time:"
|
249 |
|
250 |
+
#: lib/wfu_constants.php:62
|
251 |
msgid ""
|
252 |
"Error. Permission denied to write to target folder.\n"
|
253 |
"Check and correct read/write permissions of target folder."
|
255 |
"خطا: حق دسترسی برای نوشتن در فولدر هدف وجود ندارد.\n"
|
256 |
"برسی کنید حق دسترسی برای خواندن/نوشتن در فولدر هدف وجود داشته باشد"
|
257 |
|
258 |
+
#: lib/wfu_constants.php:63
|
259 |
msgid ""
|
260 |
"Error. This file was rejected because its extension is not correct. Its "
|
261 |
"proper filename is: "
|
262 |
msgstr "خطا: این فایل به دلیل صحیح نبودن پسوند رد شد. نام پرونده:"
|
263 |
|
264 |
+
#: lib/wfu_constants.php:64
|
265 |
msgid ""
|
266 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
267 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
270 |
"فایل های بسیاری در یک بازه زمان کوتاه بارگزاری شده اند. همانند حملات DDOS. "
|
271 |
"بنابراین فایل رد شد. لطفا لاگ سیستم را برای موارد مشکوک برسی کنید."
|
272 |
|
273 |
+
#: lib/wfu_constants.php:65
|
274 |
msgid ""
|
275 |
"File not uploaded in order to prevent overflow of the website. Please "
|
276 |
"contact administrator."
|
277 |
msgstr ""
|
278 |
"فایل به دلیل پر بودن فضای سایت بارگزاری نشد. لطفا با مدیر سایت تماس بگیرید."
|
279 |
|
280 |
+
#: lib/wfu_constants.php:66
|
281 |
msgid "Target folder doesn't exist."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: lib/wfu_constants.php:67
|
285 |
msgid "Upload failed! Missing a temporary folder."
|
286 |
msgstr "بارگزاری با خطا مواجه شد! فولدر موقت گم شده است."
|
287 |
|
288 |
+
#: lib/wfu_constants.php:68
|
289 |
msgid "Upload failed! Permission denied to write to target folder."
|
290 |
msgstr "بارگزاری با خطا مواجه شد! دسترسی برای نوشتن در فولدر هدف وجود ندارد."
|
291 |
|
292 |
+
#: lib/wfu_constants.php:69
|
293 |
msgid "File not allowed."
|
294 |
msgstr "فایل مجاز نیست"
|
295 |
|
296 |
+
#: lib/wfu_constants.php:70
|
297 |
msgid "File is suspicious and was rejected."
|
298 |
msgstr "فایل مشکوک است و پذیرفته نشد."
|
299 |
|
300 |
+
#: lib/wfu_constants.php:71
|
301 |
msgid "The uploaded file exceeds the file size limit."
|
302 |
msgstr "حجم فایل بارگزاری شده بیش از حد مجاز است"
|
303 |
|
304 |
+
#: lib/wfu_constants.php:72
|
305 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
306 |
msgstr "فایل بیشتر از 2GB حجم دارد و این سرور آن را پشتیبانی نمی کند"
|
307 |
|
308 |
+
#: lib/wfu_constants.php:73
|
309 |
msgid ""
|
310 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
311 |
"Please contact the administrator."
|
313 |
"بارگزاری با خطا مواجه شد. فایل بارگزاری شده از حد مجاز سرور بزرگتر است. با "
|
314 |
"مدیر سایت تماس بگیرید."
|
315 |
|
316 |
+
#: lib/wfu_constants.php:74
|
317 |
msgid ""
|
318 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
319 |
"server. Please contact the administrator."
|
321 |
"بارگزاری با خطا مواجه شد! مدت زمان بارگزاری از زمان مشخص شده در سرور بیشتر "
|
322 |
"است. با مدیر سایت تماس بگیرید."
|
323 |
|
324 |
+
#: lib/wfu_constants.php:75
|
325 |
msgid ""
|
326 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
327 |
"was specified in the HTML form."
|
329 |
"فایل آپلود شده بزرگتر از دستورالعمل MAX_FILE_SIZE است که در فرم HTML مشخص "
|
330 |
"شده است."
|
331 |
|
332 |
+
#: lib/wfu_constants.php:76
|
333 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
334 |
msgstr "بارگزاری با خطا مواجه شد! تنها بخشی از فایل بارگزاری شد."
|
335 |
|
336 |
+
#: lib/wfu_constants.php:77
|
337 |
msgid "Upload failed! No file was uploaded."
|
338 |
msgstr "بارگزاری با خطا مواجه شد! فایل بارگزاری نشد."
|
339 |
|
340 |
+
#: lib/wfu_constants.php:78
|
341 |
msgid "Upload failed! Failed to write file to disk."
|
342 |
msgstr "بارگزاری با خطا مواجه شد! خطا در نوشتن روی دیسک"
|
343 |
|
344 |
+
#: lib/wfu_constants.php:79
|
345 |
msgid ""
|
346 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
347 |
"administrator."
|
349 |
"بارگزاری با خطا مواجه شد! خطا در هنگام انتقال فایل موقت. لطفا با مدیر سایت "
|
350 |
"تماس بگیرید."
|
351 |
|
352 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
353 |
msgid "Upload cancelled!"
|
354 |
msgstr "از بارگزاری انصراف داده شد."
|
355 |
|
356 |
+
#: lib/wfu_constants.php:81
|
357 |
msgid ""
|
358 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
359 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
363 |
"اچ پی به شما اطمینان نمی دهد کدام افزونه باعث توقف بارگزاری شده است. شاید "
|
364 |
"phpinfo() به شما کمک کند."
|
365 |
|
366 |
+
#: lib/wfu_constants.php:82
|
367 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
368 |
msgstr "بارگزاری با خطا مواجه شد! هنگام بارگزاری فایل خطایی رخ داد."
|
369 |
|
370 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
371 |
msgid "Upload failed!"
|
372 |
msgstr "بارگزاری با خطا مواجه شد."
|
373 |
|
374 |
+
#: lib/wfu_constants.php:84
|
375 |
msgid "No file!"
|
376 |
msgstr "هیچ فایل!"
|
377 |
|
378 |
+
#: lib/wfu_constants.php:85
|
379 |
msgid ""
|
380 |
"Upload failed! The upload has been canceled by the user or the browser "
|
381 |
"dropped the connection."
|
383 |
"بارگزاری با خطا مواجه شد! کاربر از بارگزاری فایل انصراف داد یا اینکه مرورگر "
|
384 |
"ارتباط را بست."
|
385 |
|
386 |
+
#: lib/wfu_constants.php:86
|
387 |
msgid "Upload failed! Unknown error."
|
388 |
msgstr "بارگزاری با خطا مواجه شد! خطای ناشناخته!"
|
389 |
|
390 |
+
#: lib/wfu_constants.php:87
|
391 |
msgid "Please contact the administrator."
|
392 |
msgstr "لطفا با مدیر سایت تماس بگیرید."
|
393 |
|
394 |
+
#: lib/wfu_constants.php:88
|
395 |
msgid "No result from remote server!"
|
396 |
msgstr "نتیجه ای از سرور راه دور در بر نداشت."
|
397 |
|
398 |
+
#: lib/wfu_constants.php:89
|
399 |
msgid " but with warnings"
|
400 |
msgstr "اما با اخطار"
|
401 |
|
402 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
403 |
msgid "Warning: JSON parse error."
|
404 |
msgstr "اخطار: خطای تجزیه و تحلیل JSON"
|
405 |
|
406 |
+
#: lib/wfu_constants.php:91
|
407 |
msgid ""
|
408 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
409 |
"not be parsed."
|
411 |
"بارگزاری پارامتر این فایل که به رشته JSON منتقل شد نمی تواند تجزیه و تحلیل "
|
412 |
"شود"
|
413 |
|
414 |
+
#: lib/wfu_constants.php:93
|
415 |
msgid ""
|
416 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
417 |
msgstr ""
|
418 |
"وضعیت بارگزاری این فایل که به رشته JSON منتقل شد، نمی تواند تجزیه و تحلیل شود"
|
419 |
|
420 |
+
#: lib/wfu_constants.php:94
|
421 |
msgid ""
|
422 |
"Redirection to classic form functionality occurred due to unknown error."
|
423 |
msgstr "تغییر به فرم کلاسیک به دلیل خطای ناشناخته."
|
424 |
|
425 |
+
#: lib/wfu_constants.php:95
|
426 |
msgid ""
|
427 |
"Redirection to classic form functionality occurred because AJAX is not "
|
428 |
"supported."
|
429 |
msgstr "تغییر به فرم کلاسیک به دلیل پشتیبانی نکردن اجاکس"
|
430 |
|
431 |
+
#: lib/wfu_constants.php:96
|
432 |
msgid ""
|
433 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
434 |
"supported."
|
435 |
msgstr "تغییر به فرم کلاسیک به دلیل عدم پشتیبانی HTML 5."
|
436 |
|
437 |
+
#: lib/wfu_constants.php:97
|
438 |
msgid ""
|
439 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
440 |
msgstr "تغییر به فرم کلاسیک به دلیل خطا در تجزیه و تحلیل JSON"
|
441 |
|
442 |
+
#: lib/wfu_constants.php:98
|
443 |
msgid "Please enable popup windows from the browser's settings!"
|
444 |
msgstr "لطفا نمایش پاپ آپ را در تنظیمات مرورگر فعال کنید."
|
445 |
|
446 |
+
#: lib/wfu_constants.php:99
|
447 |
msgid "cannot be empty!"
|
448 |
msgstr "نمی تواند خالی باشد!"
|
449 |
|
450 |
+
#: lib/wfu_constants.php:100
|
451 |
msgid "number not valid!"
|
452 |
msgstr "شماره معتبر نیست"
|
453 |
|
454 |
+
#: lib/wfu_constants.php:101
|
455 |
msgid "email not valid!"
|
456 |
msgstr "ایمیل اشتباه است"
|
457 |
|
458 |
+
#: lib/wfu_constants.php:102
|
459 |
msgid "emails do not match!"
|
460 |
msgstr "ایمیل اشتباه وارد شده!"
|
461 |
|
462 |
+
#: lib/wfu_constants.php:103
|
463 |
msgid "no base email field in group!"
|
464 |
msgstr "فیلد ایمیل در گروه وجود ندارد"
|
465 |
|
466 |
+
#: lib/wfu_constants.php:104
|
467 |
msgid "passwords do not match!"
|
468 |
msgstr "رمز عبورهای عبور مطابقت ندارند!"
|
469 |
|
470 |
+
#: lib/wfu_constants.php:105
|
471 |
msgid "no base password field in group!"
|
472 |
msgstr "فیلد رمز عبور در گروه وجود ندارد"
|
473 |
|
474 |
+
#: lib/wfu_constants.php:106
|
475 |
msgid "checkbox unchecked!"
|
476 |
msgstr "چک باکس بدون تیک! "
|
477 |
|
478 |
+
#: lib/wfu_constants.php:107
|
479 |
msgid "no option selected!"
|
480 |
msgstr "گزینه انتخاب نشده است"
|
481 |
|
482 |
+
#: lib/wfu_constants.php:108
|
483 |
msgid "no item selected!"
|
484 |
msgstr "موردی انتخاب نشده است"
|
485 |
|
486 |
+
#: lib/wfu_constants.php:109
|
487 |
msgid ""
|
488 |
"There are more than one instances of the plugin in this page with the same "
|
489 |
"id. Please change it."
|
490 |
msgstr ""
|
491 |
"بیش از یک نمونه از این افزونه در این صفحه وجود دارد. لطفا آن را تغییر دهید."
|
492 |
|
493 |
+
#: lib/wfu_constants.php:110
|
494 |
msgid ""
|
495 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
496 |
"the page."
|
498 |
"نمی تواند شورت کد را ویرایش کند. به دلیل اینکه صفحه تغیر داده شده است. لطفا "
|
499 |
"صفحه را ریلود نمایید."
|
500 |
|
501 |
+
#: lib/wfu_constants.php:111
|
502 |
msgid "Your browser does not support webcam capture!"
|
503 |
msgstr "مرورگر شما ضبط از طریق وب کم را پشتیبانی نمی کند"
|
504 |
|
505 |
+
#: lib/wfu_constants.php:112
|
506 |
msgid "Your browser does not support video recording from the webcam!"
|
507 |
msgstr "مرورگر شما ضبط ویدیو را از طریق وب کم را پشتیبانی نمی کند"
|
508 |
|
509 |
+
#: lib/wfu_constants.php:113
|
510 |
msgid "No video was recorded!"
|
511 |
msgstr "ویدیو ضبط نشد!"
|
512 |
|
513 |
+
#: lib/wfu_constants.php:114
|
514 |
msgid ""
|
515 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
516 |
"or use RecaptchaV2 (no account)."
|
518 |
"خطا: کپچا پشتیبانی نمی شود! شما از نسخه قدیمی پی اچ پی استفاده می کنید، پی "
|
519 |
"اچ پی را ارتقا دهید یا از Recaptcha V2 استفاده کنید."
|
520 |
|
521 |
+
#: lib/wfu_constants.php:115
|
522 |
msgid ""
|
523 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
524 |
"notify administrator."
|
526 |
"خطا: تنها یک نمونه از RecaptchaV1 می تواند در صفحه وجود داشته باشد. به مدیر "
|
527 |
"سایت اطلاع دهید."
|
528 |
|
529 |
+
#: lib/wfu_constants.php:116
|
530 |
msgid ""
|
531 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
532 |
"use RecaptchaV1 (no account)."
|
534 |
"خطا: تنها یک نمونه از RecaptchaV1 می تواند در صفحه وجود داشته باشد. لطفا از "
|
535 |
"RecaptchaV1 استفاده کنید (بدون حساب کاربری)"
|
536 |
|
537 |
+
#: lib/wfu_constants.php:117
|
538 |
msgid "ERROR: No site key. Please contact administrator!"
|
539 |
msgstr "خطا: بدون کلید سایت. با مدیر سایت تماس بگیرید."
|
540 |
|
541 |
+
#: lib/wfu_constants.php:118
|
542 |
msgid ""
|
543 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
544 |
"define Google Recaptcha keys."
|
546 |
"خطا: کلید برای سایت تعریف نشده است! لطفا به تنظیمات افزونه در پیشخوان بروید "
|
547 |
"و از کلید های گوگل ریکپچا استفاده نمایید"
|
548 |
|
549 |
+
#: lib/wfu_constants.php:119
|
550 |
msgid "Bad captcha image!"
|
551 |
msgstr "تصویر کپچا نادرست"
|
552 |
|
553 |
+
#: lib/wfu_constants.php:120
|
554 |
msgid "No input!"
|
555 |
msgstr "بدون ورودی!"
|
556 |
|
557 |
+
#: lib/wfu_constants.php:121
|
558 |
msgid "Captcha not completed!"
|
559 |
msgstr "کپچا کامل نشده است!"
|
560 |
|
561 |
+
#: lib/wfu_constants.php:122
|
562 |
msgid "Wrong captcha!"
|
563 |
msgstr "کپچا اشتباه است!"
|
564 |
|
565 |
+
#: lib/wfu_constants.php:123
|
566 |
msgid "Error refreshing captcha!"
|
567 |
msgstr "خطا در بارگزاری مجدد کپچا"
|
568 |
|
569 |
+
#: lib/wfu_constants.php:124
|
570 |
msgid "Unknown captcha error!"
|
571 |
msgstr "خطای ناشناخته کپچا"
|
572 |
|
573 |
+
#: lib/wfu_constants.php:125
|
574 |
msgid "Captcha not supported by your browser!"
|
575 |
msgstr "کپچا توسط مرورگر شما پشتیبانی نمی شود."
|
576 |
|
577 |
+
#: lib/wfu_constants.php:126
|
578 |
msgid "the secret parameter is missing"
|
579 |
msgstr "پارامتر امنیتی گم شده یا وارد نشده"
|
580 |
|
581 |
+
#: lib/wfu_constants.php:127
|
582 |
msgid "the secret parameter is invalid or malformed"
|
583 |
msgstr "پارامتر امنیتی نامعتبر یا ناقص است"
|
584 |
|
585 |
+
#: lib/wfu_constants.php:128
|
586 |
msgid "the response parameter is missing"
|
587 |
msgstr "پاسخ پارامتر درست نیست."
|
588 |
|
589 |
+
#: lib/wfu_constants.php:129
|
590 |
msgid "the response parameter is invalid or malformed"
|
591 |
msgstr "پاسخ پارامتر نامعتبر یا ناقص است"
|
592 |
|
593 |
+
#: lib/wfu_constants.php:130
|
594 |
msgid "Please do not use drag drop due to an internal problem."
|
595 |
msgstr "لطفا برای مشکلات داخلی از درگ اند دراپ استفاده نکنید."
|
596 |
|
597 |
+
#: lib/wfu_constants.php:131
|
598 |
#, php-format
|
599 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
600 |
msgstr "خطا در هنگام بارگزاری یک بخش. شناسه منحصر به فرد خالی در بخش %d"
|
601 |
|
602 |
+
#: lib/wfu_constants.php:132
|
603 |
msgid "Chunked upload is not allowed!"
|
604 |
msgstr "بارگزاری یک بخش مجاز نیست"
|
605 |
|
606 |
+
#: lib/wfu_constants.php:133
|
607 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
608 |
msgstr "بارگزاری یک بخش به دلیل خطا در بخش قبل متوقف شد"
|
609 |
|
610 |
+
#: lib/wfu_constants.php:134
|
611 |
msgid "Chunked upload failed, final file could not be created!"
|
612 |
msgstr "بارگزاری یک بخش با خطا مواجه شد. فایل نهایی قابل ایجاد نیست."
|
613 |
|
614 |
+
#: lib/wfu_constants.php:135
|
615 |
#, php-format
|
616 |
msgid "Could not write file chuck to destination on chunk %d"
|
617 |
msgstr "نمی توان بخشی از فایل را در قسمتی از بخش %d نوشت"
|
618 |
|
619 |
+
#: lib/wfu_constants.php:136
|
620 |
#, php-format
|
621 |
msgid "Could not enlarge destination file on chunk %d"
|
622 |
msgstr "نمی توان فایل مقصد را در بخش %d گسترش داد"
|
623 |
|
624 |
+
#: lib/wfu_constants.php:137
|
625 |
#, php-format
|
626 |
msgid "Could not open file handles on chunk %d"
|
627 |
msgstr "نمی توان فایل های دستی را در chunk %d باز کرد"
|
628 |
|
629 |
+
#: lib/wfu_constants.php:138
|
630 |
msgid "You are not allowed to download this file!"
|
631 |
msgstr "شما اجازه دانلود این فایل را ندارید"
|
632 |
|
633 |
+
#: lib/wfu_constants.php:139
|
634 |
msgid "File does not exist!"
|
635 |
msgstr "فایل وجود ندارد"
|
636 |
|
637 |
+
#: lib/wfu_constants.php:140
|
638 |
msgid "Could not download file!"
|
639 |
msgstr "فایل دانلود نشد."
|
640 |
|
641 |
+
#: lib/wfu_constants.php:141
|
642 |
msgid "You are not allowed to delete this file!"
|
643 |
msgstr "شما اجازه حذف این فایل را ندارید"
|
644 |
|
645 |
+
#: lib/wfu_constants.php:142
|
646 |
msgid "File was not deleted!"
|
647 |
msgstr "فایل حذف نشد"
|
648 |
|
649 |
+
#: lib/wfu_constants.php:143
|
650 |
msgid "No file was deleted!"
|
651 |
msgstr "هیچ فایلی حذف نشد!"
|
652 |
|
653 |
+
#: lib/wfu_constants.php:144
|
654 |
msgid "Some files were not deleted!"
|
655 |
msgstr "برخی از فایل ها حذف نشدند!"
|
656 |
|
657 |
+
#: lib/wfu_constants.php:146
|
658 |
msgid "Upload skipped! File already exists."
|
659 |
msgstr "بارگزاری رد شد. فایل وجود دارد."
|
660 |
|
661 |
+
#: lib/wfu_constants.php:147
|
662 |
msgid "The extension of the file does not match its contents."
|
663 |
msgstr "فرمت فایل با محتوای آن مطابقت ندارد."
|
664 |
|
665 |
+
#: lib/wfu_constants.php:148
|
666 |
msgid ""
|
667 |
"Upload succeeded but the file is suspicious because its contents do not "
|
668 |
"match its extension. Its proper filename is: "
|
670 |
"بارگزاری انجام شد اما فایل مشکوک است و محتوا با فرمت آن مطابقت ندارد. نام "
|
671 |
"فایل مناسب است: "
|
672 |
|
673 |
+
#: lib/wfu_constants.php:149
|
674 |
msgid "No files have been selected!"
|
675 |
msgstr "هیچ فایلی انتخاب نشده است"
|
676 |
|
677 |
+
#: lib/wfu_constants.php:150
|
678 |
msgid "Please complete the consent question before continuing the upload!"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: lib/wfu_constants.php:151
|
682 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
683 |
msgstr "افزونه WPFilebase بروز نشد زیرا فایل ها بارگزاری نشده است"
|
684 |
|
685 |
+
#: lib/wfu_constants.php:152
|
686 |
msgid "Notification email was not sent because there were no files uploaded."
|
687 |
msgstr "اطلاع رسانی ایمیل ارسال نخواهد شد. زیرا فایل ها بارگزاری نشده است"
|
688 |
|
689 |
+
#: lib/wfu_constants.php:153
|
690 |
msgid ""
|
691 |
"Notification email was not sent because no recipients were defined. Please "
|
692 |
"check notifyrecipients attribute in the shortcode."
|
694 |
"اطلاع رسانی ایمیل ارسال نخواهد شد. زیرا گیرنده ایمیل انتخاب نشده است. لطفا "
|
695 |
"گیرنده را در ویژگی های شورت کد برسی کنید."
|
696 |
|
697 |
+
#: lib/wfu_constants.php:154
|
698 |
msgid ""
|
699 |
"Notification email was not sent due to an error. Please check "
|
700 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
702 |
"اطلاع رسانی ایمیل به دلیل خطا ارسال نخواهد شد. لطفا گیرنده، موضوع و پیام را "
|
703 |
"برای خطاها کنترل کنید."
|
704 |
|
705 |
+
#: lib/wfu_constants.php:155
|
706 |
msgid ""
|
707 |
"Redirection not executed because redirection link is empty. Please check "
|
708 |
"redirectlink attribute."
|
710 |
"تغیر مسیر انجام نمی شود زیرا لینک تغیر مسیر خالی است. لطفا ویژگی تغیر مسیر "
|
711 |
"را برسی کنید."
|
712 |
|
713 |
+
#: lib/wfu_constants.php:156
|
714 |
msgid ""
|
715 |
"Redirection not executed because not all files were successfully uploaded."
|
716 |
msgstr "تغیر مسیر انجام نمی شود زیرا همه فایل ها با موفقیت بارگزاری نشده اند"
|
717 |
|
718 |
+
#: lib/wfu_constants.php:157
|
719 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
720 |
msgstr "حمله احتمالی DDOS در {SITE}"
|
721 |
|
722 |
+
#: lib/wfu_constants.php:158
|
723 |
msgid ""
|
724 |
"Hello admin\n"
|
725 |
"\n"
|
755 |
"\n"
|
756 |
"متشکریم."
|
757 |
|
758 |
+
#: lib/wfu_constants.php:159
|
759 |
msgid ""
|
760 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
761 |
"details please contact info@iptanus.com."
|
763 |
"شما سرویس غیر امن Iptanus را فعال نموده اید. برای اطلاعات بیشتر با "
|
764 |
"info@iptanus.com تماس بگیرید"
|
765 |
|
766 |
+
#: lib/wfu_constants.php:160
|
767 |
msgid ""
|
768 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
769 |
"plugin functions. Please read this :article: for resolution."
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: lib/wfu_constants.php:162
|
773 |
msgid ""
|
774 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
775 |
"message persists, contact administrator."
|
777 |
"خطا در اضافه کردن شورت کد به برگه/نوشته. لطفا مجددا امتحان کنید. در صورت "
|
778 |
"مشاهده مجدد این پیام با مدیر کل تماس بگیرید."
|
779 |
|
780 |
+
#: lib/wfu_constants.php:163
|
781 |
msgid ""
|
782 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
783 |
"again to edit the shortcode."
|
785 |
"ویرایش شورت کد با خطا مواجه شد زیرا محتوای صفحه تغیر پیدا کرده است. لطفا "
|
786 |
"مجددا شورت کد را ویرایش کنید."
|
787 |
|
788 |
+
#: lib/wfu_constants.php:164
|
789 |
msgid ""
|
790 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
791 |
"again to delete it."
|
792 |
msgstr ""
|
793 |
"خطا در حذف شورت کد. زیرا محتوای صفحه تغیر کرده است. دوباره ان را حذف کنید."
|
794 |
|
795 |
+
#: lib/wfu_constants.php:165
|
796 |
msgid ""
|
797 |
"The page containing the shortcode has been modified and it is no longer "
|
798 |
"valid. Please go back to reload the shortcode."
|
800 |
"این صفحه حاوی شورت کد است که تغیر داده شده است و دیگر معتبر نیست. لطفا "
|
801 |
"بازگشته و شورت کد را ریلود نمایید."
|
802 |
|
803 |
+
#: lib/wfu_constants.php:166
|
804 |
msgid ""
|
805 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
806 |
"back to reload the shortcode."
|
808 |
"خطا در بروزرسانی شورت کد. زیرا محتوای این صفحه تغییر کرده است. بازگشته و "
|
809 |
"شورت کد را ریلود نمایید."
|
810 |
|
811 |
+
#: lib/wfu_constants.php:167
|
812 |
msgid ""
|
813 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
814 |
"go back and reload the shortcode."
|
816 |
"خطا در بروزرسانی شورت کد. لطفا مجددا امتحان کنید. اگر این مشکل ادامه داشت "
|
817 |
"بازگشه و شورک کد را ریلود نمایید."
|
818 |
|
819 |
+
#: lib/wfu_constants.php:169
|
820 |
msgid "This is a test message"
|
821 |
msgstr "این یک پیام تست است."
|
822 |
|
823 |
+
#: lib/wfu_constants.php:170
|
824 |
msgid "This is a test administrator message"
|
825 |
msgstr "این یک پیام مدیریتی تست است."
|
826 |
|
827 |
+
#: lib/wfu_constants.php:171
|
828 |
msgid "File testfile 1 under test"
|
829 |
msgstr "تست فایل testfile 1 "
|
830 |
|
831 |
+
#: lib/wfu_constants.php:172
|
832 |
msgid "File testfile 1 message"
|
833 |
msgstr "پیام فایل testfile 1 "
|
834 |
|
835 |
+
#: lib/wfu_constants.php:173
|
836 |
msgid "File testfile 1 administrator message"
|
837 |
msgstr "پیام مدیریتی testfile 1"
|
838 |
|
839 |
+
#: lib/wfu_constants.php:174
|
840 |
msgid "File testfile 2 under test"
|
841 |
msgstr "تست فایل testfile 2"
|
842 |
|
843 |
+
#: lib/wfu_constants.php:175
|
844 |
msgid "File testfile 2 message"
|
845 |
msgstr "پیام فایل testfile 2"
|
846 |
|
847 |
+
#: lib/wfu_constants.php:176
|
848 |
msgid "File testfile 2 administrator message"
|
849 |
msgstr "پیام مدیریتی testfile 2"
|
850 |
|
851 |
+
#: lib/wfu_constants.php:178
|
852 |
msgid ""
|
853 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
854 |
"current user."
|
855 |
msgstr "وارد کردن متغیر %userid% در متن. با آی دی کاربر جاری جایگزین خواهد شد."
|
856 |
|
857 |
+
#: lib/wfu_constants.php:179
|
858 |
msgid ""
|
859 |
"Insert variable %username% inside text. It will be replaced by the username "
|
860 |
"of the current user."
|
861 |
msgstr ""
|
862 |
"وارد کردن متغیر %username% در متن. با نام کاربری کاربر جاری جایگزین خواهد شد"
|
863 |
|
864 |
+
#: lib/wfu_constants.php:180
|
865 |
msgid ""
|
866 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
867 |
"the current user."
|
868 |
msgstr ""
|
869 |
"وارد کردن متغیر %useremail% در متن. با ایمیل کاربر جاری جایگزین خواهد شد"
|
870 |
|
871 |
+
#: lib/wfu_constants.php:181
|
872 |
msgid ""
|
873 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
874 |
"of the uploaded file."
|
875 |
msgstr ""
|
876 |
"وارد کردن متغیر %filename% در متن. با نام فایل بارگزاری شده جایگزین خواهد شد"
|
877 |
|
878 |
+
#: lib/wfu_constants.php:182
|
879 |
msgid ""
|
880 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
881 |
"filepath of the uploaded file."
|
882 |
msgstr "وارد کردن متغیر %filepath% در متن. با مسیر فایل جایگزین خواهد شد."
|
883 |
|
884 |
+
#: lib/wfu_constants.php:183
|
885 |
msgid ""
|
886 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
887 |
"the website."
|
888 |
msgstr ""
|
889 |
"وارد کردن متغیر %blogid% در متن. با ای دی سایت در وب سایت جایگزین خواهد شد."
|
890 |
|
891 |
+
#: lib/wfu_constants.php:184
|
892 |
msgid ""
|
893 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
894 |
"current page."
|
895 |
msgstr "وارد کردن متغیر %pageid% در متن. با آی دی صفحه جاری جایگزین خواهد شد."
|
896 |
|
897 |
+
#: lib/wfu_constants.php:185
|
898 |
msgid ""
|
899 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
900 |
"the current page."
|
901 |
msgstr ""
|
902 |
"وارد کردن متغیر %pagetitle% در متن. با عنوان صفحه جاری جایگزین خواهد شد"
|
903 |
|
904 |
+
#: lib/wfu_constants.php:186
|
905 |
msgid ""
|
906 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
907 |
"drop-down list. It will be replaced by the value that the user entered in "
|
910 |
"وارد کردن متغیر %userdataXXX% در متن. فیلد کاربر را از لیست کشویی انتخاب "
|
911 |
"کنید. مقدار وارد شده توسط کاربر برای هر فیلد جایگزین خواهد شد."
|
912 |
|
913 |
+
#: lib/wfu_constants.php:187
|
914 |
msgid "Insert variable %n% inside text to denote a line change."
|
915 |
msgstr "وارد کردن متغیر %n% در متن. باعث رفتن به خط بعد خواهد شد."
|
916 |
|
917 |
+
#: lib/wfu_constants.php:189
|
918 |
+
#, php-format
|
919 |
+
msgid "File %filename% uploaded successfully but not saved"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: lib/wfu_constants.php:190
|
923 |
msgid "Test Mode"
|
924 |
msgstr "حالت تست"
|
925 |
|
926 |
+
#: lib/wfu_constants.php:191
|
927 |
msgid "select dir..."
|
928 |
msgstr "انتخاب مسیر"
|
929 |
|
930 |
+
#: lib/wfu_constants.php:192
|
931 |
msgid "type dir"
|
932 |
msgstr "نوع مسیر"
|
933 |
|
934 |
+
#: lib/wfu_constants.php:193
|
935 |
msgid "Upload path: %filepath%"
|
936 |
msgstr "مسیر بارگزاری: %filepath%"
|
937 |
|
938 |
+
#: lib/wfu_constants.php:194
|
939 |
msgid "Failed upload path: %filepath%"
|
940 |
msgstr "خطا در مسیر بارگزاری: %filepath%"
|
941 |
|
942 |
+
#: lib/wfu_constants.php:195
|
943 |
msgid " (required)"
|
944 |
msgstr "(الزامی)"
|
945 |
|
946 |
+
#: lib/wfu_constants.php:196
|
947 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
948 |
msgstr "فایل ها در حال بارگزاری هستند. از خارج شدن از این صفحه مطمئن هستید؟"
|
949 |
|
950 |
+
#: lib/wfu_constants.php:197
|
951 |
msgid "checking captcha..."
|
952 |
msgstr "برسی کپچا...."
|
953 |
|
954 |
+
#: lib/wfu_constants.php:198
|
955 |
msgid "refreshing..."
|
956 |
msgstr "در حال رفرش...."
|
957 |
|
958 |
+
#: lib/wfu_constants.php:199
|
959 |
msgid "correct captcha"
|
960 |
msgstr "کپچا صحیح"
|
961 |
|
962 |
+
#: lib/wfu_constants.php:200
|
963 |
msgid "click to continue the upload"
|
964 |
msgstr "برای ادامه بارگزاری کلیک کنید"
|
965 |
|
966 |
+
#: lib/wfu_constants.php:201
|
967 |
msgid "Are you sure you want to delete this file?"
|
968 |
msgstr "از حذف این فایل مطمئن هستید؟"
|
969 |
|
970 |
+
#: lib/wfu_constants.php:202
|
971 |
msgid "Are you sure you want to delete these files?"
|
972 |
msgstr "از حذف این فایل ها مطمئن هستید؟"
|
973 |
|
974 |
+
#: lib/wfu_constants.php:203
|
975 |
msgid "Bulk Actions"
|
976 |
msgstr "انجام همه"
|
977 |
|
978 |
+
#: lib/wfu_constants.php:204
|
979 |
msgid "Apply"
|
980 |
msgstr "تایید"
|
981 |
|
982 |
+
#: lib/wfu_constants.php:206
|
983 |
msgid "of "
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: lib/wfu_constants.php:207
|
987 |
msgid "Are you sure that you want to cancel the upload?"
|
988 |
msgstr "آیا از انصراف از بارگزاری مطمئن هستید؟"
|
989 |
|
990 |
+
#: lib/wfu_constants.php:208
|
991 |
msgid "cancel upload of this file"
|
992 |
msgstr "انصراف از بارگزاری این فایل"
|
993 |
|
994 |
+
#: lib/wfu_constants.php:209
|
995 |
msgid "Upload in progress"
|
996 |
msgstr "در حال بارگزاری..."
|
997 |
|
998 |
+
#: lib/wfu_constants.php:210
|
999 |
msgid "Upload in progress with warnings!"
|
1000 |
msgstr "در حال بارگزاری با اخطارها!"
|
1001 |
|
1002 |
+
#: lib/wfu_constants.php:211
|
1003 |
msgid "Upload in progress but some files already failed!"
|
1004 |
msgstr "بارگزاری در حال انجام است، اما برخی فایل های با خطا مواجه شد!"
|
1005 |
|
1006 |
+
#: lib/wfu_constants.php:212
|
1007 |
msgid "Upload in progress but no files uploaded so far!"
|
1008 |
msgstr "بارگزاری در حال انجام است اما فایلی تاکنون بارگزاری نشده است!"
|
1009 |
|
1010 |
+
#: lib/wfu_constants.php:213
|
1011 |
msgid "All files uploaded successfully"
|
1012 |
msgstr "همه فایل ها با موفقیت بارگزاری شدند."
|
1013 |
|
1014 |
+
#: lib/wfu_constants.php:214
|
1015 |
msgid "All files uploaded successfully but there are warnings!"
|
1016 |
msgstr "همه فایل ها با موفقیت بارگزاری شدند اما با برخی اخطار"
|
1017 |
|
1018 |
+
#: lib/wfu_constants.php:215
|
1019 |
msgid "File uploaded successfully but there are warnings!"
|
1020 |
msgstr "فایل با موفقیت بارگزاری شد. اما با برخی از اخطارها!"
|
1021 |
|
1022 |
+
#: lib/wfu_constants.php:216
|
1023 |
msgid "Some files failed to upload!"
|
1024 |
msgstr "برخی از فایل ها بارگزاری نشد"
|
1025 |
|
1026 |
+
#: lib/wfu_constants.php:217
|
1027 |
msgid "All files failed to upload"
|
1028 |
msgstr "همه فایل ها بارگزاری نشد."
|
1029 |
|
1030 |
+
#: lib/wfu_constants.php:218
|
1031 |
msgid "File failed to upload"
|
1032 |
msgstr "فایل بارگزاری نشد"
|
1033 |
|
1034 |
+
#: lib/wfu_constants.php:219
|
1035 |
msgid "There are no files to upload!"
|
1036 |
msgstr "فایلی برای بارگزاری وجود ندارد"
|
1037 |
|
1038 |
+
#: lib/wfu_constants.php:220
|
1039 |
msgid "Test upload message"
|
1040 |
msgstr "پیام بارگزاری تست"
|
1041 |
|
1042 |
+
#: lib/wfu_constants.php:221
|
1043 |
msgid "JSON parse warning!"
|
1044 |
msgstr "اخطار در تجزیه و تحلیل JSON"
|
1045 |
|
1046 |
+
#: lib/wfu_constants.php:222
|
1047 |
msgid "please wait while redirecting..."
|
1048 |
msgstr "لطفا تا زمان تغیر مسیر صبر کنید..."
|
1049 |
|
1050 |
+
#: lib/wfu_constants.php:224
|
1051 |
msgid "Submitting data"
|
1052 |
msgstr "در حال ارسال داده ها"
|
1053 |
|
1054 |
+
#: lib/wfu_constants.php:225
|
1055 |
msgid "Data submitted successfully!"
|
1056 |
msgstr "داده ها با موفقیت ارسال شدند!"
|
1057 |
|
1058 |
+
#: lib/wfu_constants.php:226
|
1059 |
msgid "Data were not submitted!"
|
1060 |
msgstr "داده ها ارسال نشدند!"
|
1061 |
|
1062 |
+
#: lib/wfu_constants.php:227
|
1063 |
msgid "Cancelling upload"
|
1064 |
msgstr "در حال انصراف از بارگزاری"
|
1065 |
|
1066 |
+
#: lib/wfu_constants.php:229
|
1067 |
+
msgid "Upload succeeded!"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: lib/wfu_constants.php:230
|
1071 |
+
msgid "Upload completed but no files were saved!"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: lib/wfu_constants.php:231
|
1075 |
+
msgid "File was not saved due to personal data policy!"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: lib/wfu_constants.php:232
|
1079 |
msgid "Open visual shortcode editor in new window"
|
1080 |
msgstr "ویرایشگر شورت کد را در پنجره جدید باز کن"
|
1081 |
|
1082 |
+
#: lib/wfu_constants.php:233
|
1083 |
msgid "loading visual editor"
|
1084 |
msgstr "لود شدن ویرایشگر دیداری"
|
1085 |
|
1086 |
+
#: lib/wfu_constants.php:234
|
1087 |
msgid "Clear file list?"
|
1088 |
msgstr "پاک کردن لیست فایل؟"
|
1089 |
|
1090 |
+
#: lib/wfu_constants.php:235
|
1091 |
msgid "DROP HERE"
|
1092 |
msgstr "حذف کن"
|
1093 |
|
1094 |
+
#: lib/wfu_constants.php:237
|
1095 |
msgid "record video"
|
1096 |
msgstr "ضبط ویدیو"
|
1097 |
|
1098 |
+
#: lib/wfu_constants.php:238
|
1099 |
msgid "take a picture"
|
1100 |
msgstr "گرفتن تصویر"
|
1101 |
|
1102 |
+
#: lib/wfu_constants.php:239
|
1103 |
msgid "turn webcam on/off"
|
1104 |
msgstr "روشن/خاموش کردن وب کم"
|
1105 |
|
1106 |
+
#: lib/wfu_constants.php:240
|
1107 |
msgid "go live again"
|
1108 |
msgstr "زنده گرفتن"
|
1109 |
|
1110 |
+
#: lib/wfu_constants.php:241
|
1111 |
msgid "end recording"
|
1112 |
msgstr "پایان ضبط"
|
1113 |
|
1114 |
+
#: lib/wfu_constants.php:242
|
1115 |
msgid "play"
|
1116 |
msgstr "شروع"
|
1117 |
|
1118 |
+
#: lib/wfu_constants.php:243
|
1119 |
msgid "pause"
|
1120 |
msgstr "توقف"
|
1121 |
|
1122 |
+
#: lib/wfu_constants.php:244
|
1123 |
msgid "go to the beginning"
|
1124 |
msgstr "رفتن به ابتدا"
|
1125 |
|
1126 |
+
#: lib/wfu_constants.php:245
|
1127 |
msgid "go to the end"
|
1128 |
msgstr "رفتن به انتها"
|
1129 |
|
1130 |
+
#: lib/wfu_constants.php:247
|
1131 |
msgid "Wordpress File Upload Form"
|
1132 |
msgstr "فرم بارگزاری فایل وردپرس"
|
1133 |
|
1134 |
+
#: lib/wfu_constants.php:248
|
1135 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1136 |
msgstr "بارگزارنده افزونه بارگزاری فایل وردپرس برای ستون کناری"
|
1137 |
|
1138 |
+
#: lib/wfu_constants.php:249
|
1139 |
msgid "Upload Files"
|
1140 |
msgstr "بارگزاری فایل"
|
1141 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Eric D. Valachs <ericduval@laposte.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr_FR\n"
|
@@ -106,59 +106,65 @@ msgid ""
|
|
106 |
"By activating this option I agree to let the website keep my personal data"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "File"
|
111 |
msgstr "Fichier"
|
112 |
|
113 |
-
#: lib/wfu_constants.php:
|
114 |
msgid "Date"
|
115 |
msgstr "Date"
|
116 |
|
117 |
-
#: lib/wfu_constants.php:
|
118 |
msgid "Size"
|
119 |
msgstr "Taille"
|
120 |
|
121 |
-
#: lib/wfu_constants.php:
|
122 |
msgid "User"
|
123 |
msgstr "Utilisateur"
|
124 |
|
125 |
-
#: lib/wfu_constants.php:
|
126 |
msgid "Page"
|
127 |
msgstr "Page"
|
128 |
|
129 |
-
#: lib/wfu_constants.php:
|
130 |
msgid "User Fields"
|
131 |
msgstr "Champ utilisateur"
|
132 |
|
133 |
-
#: lib/wfu_constants.php:
|
134 |
msgid "Download"
|
135 |
msgstr "Télécharger"
|
136 |
|
137 |
-
#: lib/wfu_constants.php:
|
138 |
msgid "Download this file"
|
139 |
msgstr "Télécharger ce fichier"
|
140 |
|
141 |
-
#: lib/wfu_constants.php:
|
142 |
msgid "Delete"
|
143 |
msgstr "Supprimer"
|
144 |
|
145 |
-
#: lib/wfu_constants.php:
|
146 |
msgid "Delete this file"
|
147 |
msgstr "Supprimer ce fichier"
|
148 |
|
149 |
-
#: lib/wfu_constants.php:
|
150 |
msgid "Sort list based on this column"
|
151 |
msgstr "Trier la liste à partir de cette colonne"
|
152 |
|
153 |
-
#: lib/wfu_constants.php:
|
154 |
msgid "guest"
|
155 |
msgstr "Visiteur"
|
156 |
|
157 |
-
#: lib/wfu_constants.php:
|
158 |
msgid "unknown"
|
159 |
msgstr "Inconnu"
|
160 |
|
161 |
-
#: lib/wfu_constants.php:
|
162 |
msgid ""
|
163 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
164 |
"attribute."
|
@@ -166,13 +172,13 @@ msgstr ""
|
|
166 |
"Erreur : Impossible d'atteindre le repertoire ftp de destination. Vérifier "
|
167 |
"le domaine dans l'attribut 'ftpinfo'."
|
168 |
|
169 |
-
#: lib/wfu_constants.php:
|
170 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
171 |
msgstr ""
|
172 |
"Erreur : Les informations FTP sont invalides. Vérifier le domaine dans "
|
173 |
"l'attribut 'ftpinfo'."
|
174 |
|
175 |
-
#: lib/wfu_constants.php:
|
176 |
msgid ""
|
177 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
178 |
"syntax."
|
@@ -180,7 +186,7 @@ msgstr ""
|
|
180 |
"Erreur : Impossible d'obtenir les informations dans l'attribut 'ftpinfo'. "
|
181 |
"Vérifez sa syntaxe."
|
182 |
|
183 |
-
#: lib/wfu_constants.php:
|
184 |
msgid ""
|
185 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
186 |
"attribute."
|
@@ -188,39 +194,39 @@ msgstr ""
|
|
188 |
"Erreur : Impossible de résoudre le nom de fichier de destination FTP. "
|
189 |
"Vérifiez le domaine dans l'attribut 'ftpinfo'."
|
190 |
|
191 |
-
#: lib/wfu_constants.php:
|
192 |
msgid ""
|
193 |
"Error. Could not open source file for ftp upload. Check if file is "
|
194 |
"accessible."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: lib/wfu_constants.php:
|
198 |
msgid "Error. Could not send data to ftp target file."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: lib/wfu_constants.php:
|
202 |
msgid ""
|
203 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
204 |
"attribute."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: lib/wfu_constants.php:
|
208 |
msgid ""
|
209 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
210 |
"'ftpinfo' attribute."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: lib/wfu_constants.php:
|
214 |
msgid ""
|
215 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
216 |
"supports sftp."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: lib/wfu_constants.php:
|
220 |
msgid "Error. The web server does not support sftp."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: lib/wfu_constants.php:
|
224 |
msgid ""
|
225 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
226 |
"preventing the upload of big files.\n"
|
@@ -230,7 +236,7 @@ msgstr ""
|
|
230 |
"upload_max_filesize, empêche l'envoi de gros fichier.\n"
|
231 |
"La limite de la directive PHP upload_max_filesize est de :"
|
232 |
|
233 |
-
#: lib/wfu_constants.php:
|
234 |
msgid ""
|
235 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
236 |
"upload of big files.\n"
|
@@ -240,7 +246,7 @@ msgstr ""
|
|
240 |
"l'envoi de gros fichier.\n"
|
241 |
"La limite de la directive PHP max_input_time est de :"
|
242 |
|
243 |
-
#: lib/wfu_constants.php:
|
244 |
msgid ""
|
245 |
"Error. Permission denied to write to target folder.\n"
|
246 |
"Check and correct read/write permissions of target folder."
|
@@ -249,56 +255,56 @@ msgstr ""
|
|
249 |
"Vérifiez et corrigez les permission en lecture/ecriture du repertoire de "
|
250 |
"destination."
|
251 |
|
252 |
-
#: lib/wfu_constants.php:
|
253 |
msgid ""
|
254 |
"Error. This file was rejected because its extension is not correct. Its "
|
255 |
"proper filename is: "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: lib/wfu_constants.php:
|
259 |
msgid ""
|
260 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
261 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
262 |
"suspicious behaviour."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: lib/wfu_constants.php:
|
266 |
msgid ""
|
267 |
"File not uploaded in order to prevent overflow of the website. Please "
|
268 |
"contact administrator."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: lib/wfu_constants.php:
|
272 |
msgid "Target folder doesn't exist."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: lib/wfu_constants.php:
|
276 |
msgid "Upload failed! Missing a temporary folder."
|
277 |
msgstr "Envoi impossible ! Il manque un répertoire temporaire."
|
278 |
|
279 |
-
#: lib/wfu_constants.php:
|
280 |
msgid "Upload failed! Permission denied to write to target folder."
|
281 |
msgstr ""
|
282 |
"Envoi impossible ! Autorisation d'écriture refusée dans le répertoire de "
|
283 |
"destination."
|
284 |
|
285 |
-
#: lib/wfu_constants.php:
|
286 |
msgid "File not allowed."
|
287 |
msgstr "Type de fichier non autorisé."
|
288 |
|
289 |
-
#: lib/wfu_constants.php:
|
290 |
msgid "File is suspicious and was rejected."
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: lib/wfu_constants.php:
|
294 |
msgid "The uploaded file exceeds the file size limit."
|
295 |
msgstr "La taille du fichier est supérieure à la taille limite."
|
296 |
|
297 |
-
#: lib/wfu_constants.php:
|
298 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
299 |
msgstr "Le fichier téléchargé excède 2 Go (non pris en charge par ce serveur)."
|
300 |
|
301 |
-
#: lib/wfu_constants.php:
|
302 |
msgid ""
|
303 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
304 |
"Please contact the administrator."
|
@@ -306,7 +312,7 @@ msgstr ""
|
|
306 |
"Envoi impossible ! La taille du fichier excède la taille limite du serveur. "
|
307 |
"Contactez l'administrateur."
|
308 |
|
309 |
-
#: lib/wfu_constants.php:
|
310 |
msgid ""
|
311 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
312 |
"server. Please contact the administrator."
|
@@ -314,7 +320,7 @@ msgstr ""
|
|
314 |
"Envoi impossible ! La durée d'envoi excède le timeout du serveur. Contactez "
|
315 |
"l'administrateur."
|
316 |
|
317 |
-
#: lib/wfu_constants.php:
|
318 |
msgid ""
|
319 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
320 |
"was specified in the HTML form."
|
@@ -322,19 +328,19 @@ msgstr ""
|
|
322 |
"Envoi impossible ! La taille du fichier excède la directive MAX_FILE_SIZE "
|
323 |
"spécifiée dans le formulaire HTML."
|
324 |
|
325 |
-
#: lib/wfu_constants.php:
|
326 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
327 |
msgstr "Envoi impossible ! Le fichier n' été que partiellement envoyé."
|
328 |
|
329 |
-
#: lib/wfu_constants.php:
|
330 |
msgid "Upload failed! No file was uploaded."
|
331 |
msgstr "Envoi impossible ! Le fichier n'a pas été envoyé."
|
332 |
|
333 |
-
#: lib/wfu_constants.php:
|
334 |
msgid "Upload failed! Failed to write file to disk."
|
335 |
msgstr "Envoi impossible ! Impossible d'écrire le fichier sur le disque."
|
336 |
|
337 |
-
#: lib/wfu_constants.php:
|
338 |
msgid ""
|
339 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
340 |
"administrator."
|
@@ -342,11 +348,11 @@ msgstr ""
|
|
342 |
"Envoi impossible ! Une erreur est survenue lors du déplacement du fichier "
|
343 |
"temporaire. Contactez l'administrateur."
|
344 |
|
345 |
-
#: lib/wfu_constants.php:
|
346 |
msgid "Upload cancelled!"
|
347 |
msgstr "Envoi annulé!"
|
348 |
|
349 |
-
#: lib/wfu_constants.php:
|
350 |
msgid ""
|
351 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
352 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -356,21 +362,21 @@ msgstr ""
|
|
356 |
"peut pas fournir avec certitude quelle extension est en cause. Examinez la "
|
357 |
"liste des extensions chargées avec phpinfo() peut être utile."
|
358 |
|
359 |
-
#: lib/wfu_constants.php:
|
360 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
361 |
msgstr ""
|
362 |
"Envoi impossible ! Une erreur est survenue pendant la tentative d'envoi du "
|
363 |
"fichier."
|
364 |
|
365 |
-
#: lib/wfu_constants.php:
|
366 |
msgid "Upload failed!"
|
367 |
msgstr "Envoi impossible !"
|
368 |
|
369 |
-
#: lib/wfu_constants.php:
|
370 |
msgid "No file!"
|
371 |
msgstr "Pas de fichier !"
|
372 |
|
373 |
-
#: lib/wfu_constants.php:
|
374 |
msgid ""
|
375 |
"Upload failed! The upload has been canceled by the user or the browser "
|
376 |
"dropped the connection."
|
@@ -378,27 +384,27 @@ msgstr ""
|
|
378 |
"Envoi impossible! L'envoi a été annulé par l'utilisateur ou le navigateur a "
|
379 |
"interrompu la connexion."
|
380 |
|
381 |
-
#: lib/wfu_constants.php:
|
382 |
msgid "Upload failed! Unknown error."
|
383 |
msgstr "Envoi impossible! Erreur inconnue."
|
384 |
|
385 |
-
#: lib/wfu_constants.php:
|
386 |
msgid "Please contact the administrator."
|
387 |
msgstr "Merci de contacter l'administrateur."
|
388 |
|
389 |
-
#: lib/wfu_constants.php:
|
390 |
msgid "No result from remote server!"
|
391 |
msgstr "Pas de réponse du serveur distant !"
|
392 |
|
393 |
-
#: lib/wfu_constants.php:
|
394 |
msgid " but with warnings"
|
395 |
msgstr "mais avec des avertissements"
|
396 |
|
397 |
-
#: lib/wfu_constants.php:
|
398 |
msgid "Warning: JSON parse error."
|
399 |
msgstr "Attention : Erreur d'analyse JSON"
|
400 |
|
401 |
-
#: lib/wfu_constants.php:
|
402 |
msgid ""
|
403 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
404 |
"not be parsed."
|
@@ -406,19 +412,19 @@ msgstr ""
|
|
406 |
"Les paramètres d'envoi de ce fichier, passés en tant que chaine JSON, ne "
|
407 |
"peuvent pas être analysés."
|
408 |
|
409 |
-
#: lib/wfu_constants.php:
|
410 |
msgid ""
|
411 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
412 |
msgstr "UploadStates, passé en tant que chaine JSON, ne peut pas être analysé."
|
413 |
|
414 |
-
#: lib/wfu_constants.php:
|
415 |
msgid ""
|
416 |
"Redirection to classic form functionality occurred due to unknown error."
|
417 |
msgstr ""
|
418 |
"La redirection vers la fonctionnalité classique des formulaires s'est "
|
419 |
"produit à cause d'une erreur inconue."
|
420 |
|
421 |
-
#: lib/wfu_constants.php:
|
422 |
msgid ""
|
423 |
"Redirection to classic form functionality occurred because AJAX is not "
|
424 |
"supported."
|
@@ -426,7 +432,7 @@ msgstr ""
|
|
426 |
"La redirection vers la fonctionnalité classique des formulaire s'est produit "
|
427 |
"car AJAX n'est pas supporté."
|
428 |
|
429 |
-
#: lib/wfu_constants.php:
|
430 |
msgid ""
|
431 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
432 |
"supported."
|
@@ -434,60 +440,60 @@ msgstr ""
|
|
434 |
"La redirection vers la fonctionnalité classique des formulaires s'est "
|
435 |
"produit car HTML5 n'est pas supporté."
|
436 |
|
437 |
-
#: lib/wfu_constants.php:
|
438 |
msgid ""
|
439 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
440 |
msgstr ""
|
441 |
"La redirection vers la fonctionnalité classique des formulaires s'est "
|
442 |
"produit à cause d'une erreur d'analyse JSON."
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid "Please enable popup windows from the browser's settings!"
|
446 |
msgstr ""
|
447 |
"Veuillez activer les fenêtres contextuelles dans les paramètres du "
|
448 |
"navigateur !"
|
449 |
|
450 |
-
#: lib/wfu_constants.php:
|
451 |
msgid "cannot be empty!"
|
452 |
msgstr "Ne peut pas être vide !"
|
453 |
|
454 |
-
#: lib/wfu_constants.php:
|
455 |
msgid "number not valid!"
|
456 |
msgstr "Nombre non valide !"
|
457 |
|
458 |
-
#: lib/wfu_constants.php:
|
459 |
msgid "email not valid!"
|
460 |
msgstr "L'e-mail n'est pas valide !"
|
461 |
|
462 |
-
#: lib/wfu_constants.php:
|
463 |
msgid "emails do not match!"
|
464 |
msgstr "Les e-mails ne correspondent pas !"
|
465 |
|
466 |
-
#: lib/wfu_constants.php:
|
467 |
msgid "no base email field in group!"
|
468 |
msgstr "Aucun champ email de base en groupe !"
|
469 |
|
470 |
-
#: lib/wfu_constants.php:
|
471 |
msgid "passwords do not match!"
|
472 |
msgstr "Les mots de passe ne correspondent pas !"
|
473 |
|
474 |
-
#: lib/wfu_constants.php:
|
475 |
msgid "no base password field in group!"
|
476 |
msgstr "Aucun champ de mot de passe de base dans le groupe !"
|
477 |
|
478 |
-
#: lib/wfu_constants.php:
|
479 |
msgid "checkbox unchecked!"
|
480 |
msgstr "Case à cocher désactivée !"
|
481 |
|
482 |
-
#: lib/wfu_constants.php:
|
483 |
msgid "no option selected!"
|
484 |
msgstr "Aucune option sélectionnée !"
|
485 |
|
486 |
-
#: lib/wfu_constants.php:
|
487 |
msgid "no item selected!"
|
488 |
msgstr "Aucun article sélectionné !"
|
489 |
|
490 |
-
#: lib/wfu_constants.php:
|
491 |
msgid ""
|
492 |
"There are more than one instances of the plugin in this page with the same "
|
493 |
"id. Please change it."
|
@@ -495,7 +501,7 @@ msgstr ""
|
|
495 |
"Il y a plusieurs occurences d'une instance du plugin dans cette page (même "
|
496 |
"id). Modifiez votre page."
|
497 |
|
498 |
-
#: lib/wfu_constants.php:
|
499 |
msgid ""
|
500 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
501 |
"the page."
|
@@ -503,19 +509,19 @@ msgstr ""
|
|
503 |
"Impossible de modifier le shortcode car la page a été modifiée. Veuillez "
|
504 |
"recharger la page."
|
505 |
|
506 |
-
#: lib/wfu_constants.php:
|
507 |
msgid "Your browser does not support webcam capture!"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: lib/wfu_constants.php:
|
511 |
msgid "Your browser does not support video recording from the webcam!"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: lib/wfu_constants.php:
|
515 |
msgid "No video was recorded!"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: lib/wfu_constants.php:
|
519 |
msgid ""
|
520 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
521 |
"or use RecaptchaV2 (no account)."
|
@@ -523,24 +529,24 @@ msgstr ""
|
|
523 |
"Erreur : Captcha pas pris en charge! Vous avez une ancienne version de PHP. "
|
524 |
"Mettre à jour votre PHP ou utiliser RecaptchaV2 (no account)."
|
525 |
|
526 |
-
#: lib/wfu_constants.php:
|
527 |
msgid ""
|
528 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
529 |
"notify administrator."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid ""
|
534 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
535 |
"use RecaptchaV1 (no account)."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: lib/wfu_constants.php:
|
539 |
msgid "ERROR: No site key. Please contact administrator!"
|
540 |
msgstr ""
|
541 |
"Erreur : Aucune clé du site. S'il vous plaît contacter l'administrateur!"
|
542 |
|
543 |
-
#: lib/wfu_constants.php:
|
544 |
msgid ""
|
545 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
546 |
"define Google Recaptcha keys."
|
@@ -548,151 +554,151 @@ msgstr ""
|
|
548 |
"Erreur : Aucun site clé défini ! Aller à la configuration du plugin dans le "
|
549 |
"Tableau de bord pour définir des clés de Google Recaptcha."
|
550 |
|
551 |
-
#: lib/wfu_constants.php:
|
552 |
msgid "Bad captcha image!"
|
553 |
msgstr "Mauvaise image de captcha !"
|
554 |
|
555 |
-
#: lib/wfu_constants.php:
|
556 |
msgid "No input!"
|
557 |
msgstr "Aucune entrée !"
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "Captcha not completed!"
|
561 |
msgstr "Captcha incomplet !"
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid "Wrong captcha!"
|
565 |
msgstr "Mauvaise saisie captcha!"
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid "Error refreshing captcha!"
|
569 |
msgstr "Erreur mise à jour du captcha!"
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid "Unknown captcha error!"
|
573 |
msgstr "Captcha erreur inconnue!"
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid "Captcha not supported by your browser!"
|
577 |
msgstr "Captcha n'a pas supporté par votre navigateur!"
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
msgid "the secret parameter is missing"
|
581 |
msgstr "le paramètre secret est manquant"
|
582 |
|
583 |
-
#: lib/wfu_constants.php:
|
584 |
msgid "the secret parameter is invalid or malformed"
|
585 |
msgstr "le paramètre secret est invalide ou malformé"
|
586 |
|
587 |
-
#: lib/wfu_constants.php:
|
588 |
msgid "the response parameter is missing"
|
589 |
msgstr "le paramètre de réponse est manquant"
|
590 |
|
591 |
-
#: lib/wfu_constants.php:
|
592 |
msgid "the response parameter is invalid or malformed"
|
593 |
msgstr "le paramètre de réponse est invalide ou malformé"
|
594 |
|
595 |
-
#: lib/wfu_constants.php:
|
596 |
msgid "Please do not use drag drop due to an internal problem."
|
597 |
msgstr "Ne pas utiliser un glisser-déposer (cause : problème interne)."
|
598 |
|
599 |
-
#: lib/wfu_constants.php:
|
600 |
#, php-format
|
601 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
602 |
msgstr "Erreur pendant l'envoi de fichier en blocs. Unique ID vide en bloc %d"
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "Chunked upload is not allowed!"
|
606 |
msgstr "L'envoi des fichiers en bloc n'est pas autorisé!"
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
610 |
msgstr ""
|
611 |
"Envoi de fichier en bloc interrompu suite à une erreur dans bloc précédent!"
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
msgid "Chunked upload failed, final file could not be created!"
|
615 |
msgstr ""
|
616 |
"Envoi de fichier en bloc échoué, le fichier final n'a pas pu être créé!"
|
617 |
|
618 |
-
#: lib/wfu_constants.php:
|
619 |
#, php-format
|
620 |
msgid "Could not write file chuck to destination on chunk %d"
|
621 |
msgstr "Impossible d'écrire le bloc de fichier à destination sur bloc %d"
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
#, php-format
|
625 |
msgid "Could not enlarge destination file on chunk %d"
|
626 |
msgstr "Impossible agrandir fichier de destination sur bloc %d"
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
#, php-format
|
630 |
msgid "Could not open file handles on chunk %d"
|
631 |
msgstr "Impossible d'ouvrir le fichier handles sur bloc %d"
|
632 |
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
msgid "You are not allowed to download this file!"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: lib/wfu_constants.php:
|
638 |
msgid "File does not exist!"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: lib/wfu_constants.php:
|
642 |
msgid "Could not download file!"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: lib/wfu_constants.php:
|
646 |
msgid "You are not allowed to delete this file!"
|
647 |
msgstr "Vous n' êtes pas autorisé à supprimer ce fichier !"
|
648 |
|
649 |
-
#: lib/wfu_constants.php:
|
650 |
msgid "File was not deleted!"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid "No file was deleted!"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid "Some files were not deleted!"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: lib/wfu_constants.php:
|
662 |
msgid "Upload skipped! File already exists."
|
663 |
msgstr "Envoi ignoré ! Le fichier existe déjà."
|
664 |
|
665 |
-
#: lib/wfu_constants.php:
|
666 |
msgid "The extension of the file does not match its contents."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: lib/wfu_constants.php:
|
670 |
msgid ""
|
671 |
"Upload succeeded but the file is suspicious because its contents do not "
|
672 |
"match its extension. Its proper filename is: "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid "No files have been selected!"
|
677 |
msgstr "Aucun fichier n'a été envoyé !"
|
678 |
|
679 |
-
#: lib/wfu_constants.php:
|
680 |
msgid "Please complete the consent question before continuing the upload!"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
685 |
msgstr ""
|
686 |
"WPFilebase Plugin n'a pas été mis à jour car il n'y a pas de fichiers à "
|
687 |
"envoyer."
|
688 |
|
689 |
-
#: lib/wfu_constants.php:
|
690 |
msgid "Notification email was not sent because there were no files uploaded."
|
691 |
msgstr ""
|
692 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de fichiers à "
|
693 |
"envoyer."
|
694 |
|
695 |
-
#: lib/wfu_constants.php:
|
696 |
msgid ""
|
697 |
"Notification email was not sent because no recipients were defined. Please "
|
698 |
"check notifyrecipients attribute in the shortcode."
|
@@ -700,7 +706,7 @@ msgstr ""
|
|
700 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de destinataire. "
|
701 |
"Merci de vérifier l'attribut notifyrecipients dans le shortcode."
|
702 |
|
703 |
-
#: lib/wfu_constants.php:
|
704 |
msgid ""
|
705 |
"Notification email was not sent due to an error. Please check "
|
706 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -708,7 +714,7 @@ msgstr ""
|
|
708 |
"Le mail de notification n'a pas été envoyé car il n'y a une erreur. Merci de "
|
709 |
"vérifier les attributs notifyrecipients, notifysubject et notifymessage."
|
710 |
|
711 |
-
#: lib/wfu_constants.php:
|
712 |
msgid ""
|
713 |
"Redirection not executed because redirection link is empty. Please check "
|
714 |
"redirectlink attribute."
|
@@ -716,18 +722,18 @@ msgstr ""
|
|
716 |
"La redirection n'a pas été effectuée car le lien de redirection est vide. "
|
717 |
"Merci de vérifier l'attribut redirectlink."
|
718 |
|
719 |
-
#: lib/wfu_constants.php:
|
720 |
msgid ""
|
721 |
"Redirection not executed because not all files were successfully uploaded."
|
722 |
msgstr ""
|
723 |
"La redirection n'est pas exécutée car tous les fichiers n'ont pas été "
|
724 |
"envoyés."
|
725 |
|
726 |
-
#: lib/wfu_constants.php:
|
727 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid ""
|
732 |
"Hello admin\n"
|
733 |
"\n"
|
@@ -747,19 +753,19 @@ msgid ""
|
|
747 |
"Thanks"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: lib/wfu_constants.php:
|
751 |
msgid ""
|
752 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
753 |
"details please contact info@iptanus.com."
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: lib/wfu_constants.php:
|
757 |
msgid ""
|
758 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
759 |
"plugin functions. Please read this :article: for resolution."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: lib/wfu_constants.php:
|
763 |
msgid ""
|
764 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
765 |
"message persists, contact administrator."
|
@@ -767,7 +773,7 @@ msgstr ""
|
|
767 |
"Impossible d' ajouter le shortcode à la page / poste. Essayez à nouveau. Si "
|
768 |
"le message persiste, contactez l' administrateur."
|
769 |
|
770 |
-
#: lib/wfu_constants.php:
|
771 |
msgid ""
|
772 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
773 |
"again to edit the shortcode."
|
@@ -775,7 +781,7 @@ msgstr ""
|
|
775 |
"Impossible de modifier le shortcode parce que le contenu de la page a "
|
776 |
"changé. Essayez à nouveau de modifier le shortcode."
|
777 |
|
778 |
-
#: lib/wfu_constants.php:
|
779 |
msgid ""
|
780 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
781 |
"again to delete it."
|
@@ -783,7 +789,7 @@ msgstr ""
|
|
783 |
"Impossible de supprimer le shortcode parce que le contenu de la page a "
|
784 |
"changé. Essayez à nouveau de le supprimer."
|
785 |
|
786 |
-
#: lib/wfu_constants.php:
|
787 |
msgid ""
|
788 |
"The page containing the shortcode has been modified and it is no longer "
|
789 |
"valid. Please go back to reload the shortcode."
|
@@ -791,7 +797,7 @@ msgstr ""
|
|
791 |
"La page contenant le shortcode a été modifié et il n'est plus valide. "
|
792 |
"Rechargez le shortcode."
|
793 |
|
794 |
-
#: lib/wfu_constants.php:
|
795 |
msgid ""
|
796 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
797 |
"back to reload the shortcode."
|
@@ -799,7 +805,7 @@ msgstr ""
|
|
799 |
"Impossible de mettre à jour le shortcode parce que le contenu de la page a "
|
800 |
"changé. Rechargez le shortcode."
|
801 |
|
802 |
-
#: lib/wfu_constants.php:
|
803 |
msgid ""
|
804 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
805 |
"go back and reload the shortcode."
|
@@ -807,39 +813,39 @@ msgstr ""
|
|
807 |
"Impossible de mettre à jour le shortcode. Essayez à nouveau. Si le problème "
|
808 |
"persiste, rechargez le shortcode."
|
809 |
|
810 |
-
#: lib/wfu_constants.php:
|
811 |
msgid "This is a test message"
|
812 |
msgstr "Ceci est un message de test"
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid "This is a test administrator message"
|
816 |
msgstr "Ceci est un message administrateur de test"
|
817 |
|
818 |
-
#: lib/wfu_constants.php:
|
819 |
msgid "File testfile 1 under test"
|
820 |
msgstr "File testfile 1 under test"
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid "File testfile 1 message"
|
824 |
msgstr "File testfile 1 message"
|
825 |
|
826 |
-
#: lib/wfu_constants.php:
|
827 |
msgid "File testfile 1 administrator message"
|
828 |
msgstr "Message administrateur File testfile"
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "File testfile 2 under test"
|
832 |
msgstr "En test File testfile"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "File testfile 2 message"
|
836 |
msgstr "Message File testfile 2"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "File testfile 2 administrator message"
|
840 |
msgstr "Message administrateur File testfile 2"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid ""
|
844 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
845 |
"current user."
|
@@ -847,7 +853,7 @@ msgstr ""
|
|
847 |
"Insérez %userid% variable dans le texte. Il sera remplacé par l'id de "
|
848 |
"l'utilisateur courant."
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid ""
|
852 |
"Insert variable %username% inside text. It will be replaced by the username "
|
853 |
"of the current user."
|
@@ -855,7 +861,7 @@ msgstr ""
|
|
855 |
"Insérez la variable %username% dans le texte. Il sera remplacé par le "
|
856 |
"username de l'utilisateur courant."
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid ""
|
860 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
861 |
"the current user."
|
@@ -863,7 +869,7 @@ msgstr ""
|
|
863 |
"Insérez la variable %useremail% dans le texte. Il sera remplacé par l'email "
|
864 |
"de l'utilisateur courant."
|
865 |
|
866 |
-
#: lib/wfu_constants.php:
|
867 |
msgid ""
|
868 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
869 |
"of the uploaded file."
|
@@ -871,7 +877,7 @@ msgstr ""
|
|
871 |
"Insérez la variable %filename% dans le texte. Il sera remplacé par le nom du "
|
872 |
"fichier à envoyer."
|
873 |
|
874 |
-
#: lib/wfu_constants.php:
|
875 |
msgid ""
|
876 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
877 |
"filepath of the uploaded file."
|
@@ -879,7 +885,7 @@ msgstr ""
|
|
879 |
"Insérez la variable %filepath% dans le texte. Il sera remplacé par le chemin "
|
880 |
"complet du fichier envoyé."
|
881 |
|
882 |
-
#: lib/wfu_constants.php:
|
883 |
msgid ""
|
884 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
885 |
"the website."
|
@@ -887,7 +893,7 @@ msgstr ""
|
|
887 |
"Insérez la variable %blogid% dans le texte. Il sera remplacé par l'id du "
|
888 |
"blog du site web."
|
889 |
|
890 |
-
#: lib/wfu_constants.php:
|
891 |
msgid ""
|
892 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
893 |
"current page."
|
@@ -895,7 +901,7 @@ msgstr ""
|
|
895 |
"Insérez %pageid% variable dans le texte. Il sera remplacé par l'id de la "
|
896 |
"page en cours."
|
897 |
|
898 |
-
#: lib/wfu_constants.php:
|
899 |
msgid ""
|
900 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
901 |
"the current page."
|
@@ -903,7 +909,7 @@ msgstr ""
|
|
903 |
"Insérez %pagetitle% variable dans le texte. Il sera remplacé par le titre de "
|
904 |
"la page courante."
|
905 |
|
906 |
-
#: lib/wfu_constants.php:
|
907 |
msgid ""
|
908 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
909 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -913,218 +919,235 @@ msgstr ""
|
|
913 |
"l'utilisateur dans la liste déroulante. Il sera remplacé par la valeur que "
|
914 |
"l'utilisateur aura entré dans ce champ."
|
915 |
|
916 |
-
#: lib/wfu_constants.php:
|
917 |
msgid "Insert variable %n% inside text to denote a line change."
|
918 |
msgstr ""
|
919 |
"Insérez la variable %n% à l'intérieur du texte pour indiquer un changement "
|
920 |
"de ligne."
|
921 |
|
922 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
923 |
msgid "Test Mode"
|
924 |
msgstr "Mode de test"
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid "select dir..."
|
928 |
msgstr "Sélectionnez dir"
|
929 |
|
930 |
-
#: lib/wfu_constants.php:
|
931 |
msgid "type dir"
|
932 |
msgstr "Saisir dir"
|
933 |
|
934 |
-
#: lib/wfu_constants.php:
|
935 |
msgid "Upload path: %filepath%"
|
936 |
msgstr "Chemin d'upload : %filepath%"
|
937 |
|
938 |
-
#: lib/wfu_constants.php:
|
939 |
msgid "Failed upload path: %filepath%"
|
940 |
msgstr "Mauvais répertoire d'envoi : %filepath%"
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid " (required)"
|
944 |
msgstr " (*)"
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
948 |
msgstr "Les fichiers sont envoyés. Êtes-vous sûr de vouloir quitter la page ?"
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "checking captcha..."
|
952 |
msgstr "Vérifiez captcha..."
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "refreshing..."
|
956 |
msgstr "Mise à jour..."
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "correct captcha"
|
960 |
msgstr "Captcha correctement saisi"
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "click to continue the upload"
|
964 |
msgstr "Cliquer pour continuer l'envoi"
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "Are you sure you want to delete this file?"
|
968 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier?"
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "Are you sure you want to delete these files?"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "Bulk Actions"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "Apply"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: lib/wfu_constants.php:
|
983 |
msgid "of "
|
984 |
msgstr "sur "
|
985 |
|
986 |
-
#: lib/wfu_constants.php:
|
987 |
msgid "Are you sure that you want to cancel the upload?"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: lib/wfu_constants.php:
|
991 |
msgid "cancel upload of this file"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: lib/wfu_constants.php:
|
995 |
msgid "Upload in progress"
|
996 |
msgstr "Envoi en cours"
|
997 |
|
998 |
-
#: lib/wfu_constants.php:
|
999 |
msgid "Upload in progress with warnings!"
|
1000 |
msgstr "Envoi en cours mais avec des avertissements!"
|
1001 |
|
1002 |
-
#: lib/wfu_constants.php:
|
1003 |
msgid "Upload in progress but some files already failed!"
|
1004 |
msgstr "Envoi en cours mais certains fichiers ont échoués!"
|
1005 |
|
1006 |
-
#: lib/wfu_constants.php:
|
1007 |
msgid "Upload in progress but no files uploaded so far!"
|
1008 |
msgstr "Envoi en cours mais aucun fichier n'a été envoyé pour le moment!"
|
1009 |
|
1010 |
-
#: lib/wfu_constants.php:
|
1011 |
msgid "All files uploaded successfully"
|
1012 |
msgstr "Tous les fichiers ont été envoyés avec succès"
|
1013 |
|
1014 |
-
#: lib/wfu_constants.php:
|
1015 |
msgid "All files uploaded successfully but there are warnings!"
|
1016 |
msgstr ""
|
1017 |
"Tous les fichiers ont été envoyés avec succès mais avec des avertissements!"
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "File uploaded successfully but there are warnings!"
|
1021 |
msgstr "Fichiers envoyés avec succès mais certain avec un avertissement."
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "Some files failed to upload!"
|
1025 |
msgstr "Certains fichiers n'ont pas été envoyé"
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "All files failed to upload"
|
1029 |
msgstr "Impossible d'envoyer les fichiers"
|
1030 |
|
1031 |
-
#: lib/wfu_constants.php:
|
1032 |
msgid "File failed to upload"
|
1033 |
msgstr "Impossible d'envoyer le fichier"
|
1034 |
|
1035 |
-
#: lib/wfu_constants.php:
|
1036 |
msgid "There are no files to upload!"
|
1037 |
msgstr "Il n'y a pas de fichiers à envoyer"
|
1038 |
|
1039 |
-
#: lib/wfu_constants.php:
|
1040 |
msgid "Test upload message"
|
1041 |
msgstr "Message de test d'upload"
|
1042 |
|
1043 |
-
#: lib/wfu_constants.php:
|
1044 |
msgid "JSON parse warning!"
|
1045 |
msgstr "Avertissements d'analyse JSON."
|
1046 |
|
1047 |
-
#: lib/wfu_constants.php:
|
1048 |
msgid "please wait while redirecting..."
|
1049 |
msgstr "Merci de patienter pendant la redirection..."
|
1050 |
|
1051 |
-
#: lib/wfu_constants.php:
|
1052 |
msgid "Submitting data"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: lib/wfu_constants.php:
|
1056 |
msgid "Data submitted successfully!"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: lib/wfu_constants.php:
|
1060 |
msgid "Data were not submitted!"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: lib/wfu_constants.php:
|
1064 |
msgid "Cancelling upload"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1068 |
msgid "Open visual shortcode editor in new window"
|
1069 |
msgstr "Ouvrez l'éditeur de shortcode visuel dans une nouvelle fenêtre"
|
1070 |
|
1071 |
-
#: lib/wfu_constants.php:
|
1072 |
msgid "loading visual editor"
|
1073 |
msgstr "Chargement de l'éditeur visuel"
|
1074 |
|
1075 |
-
#: lib/wfu_constants.php:
|
1076 |
msgid "Clear file list?"
|
1077 |
msgstr "Effacer la liste des fichiers ?"
|
1078 |
|
1079 |
-
#: lib/wfu_constants.php:
|
1080 |
msgid "DROP HERE"
|
1081 |
msgstr "Déposer ici"
|
1082 |
|
1083 |
-
#: lib/wfu_constants.php:
|
1084 |
msgid "record video"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: lib/wfu_constants.php:
|
1088 |
msgid "take a picture"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: lib/wfu_constants.php:
|
1092 |
msgid "turn webcam on/off"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: lib/wfu_constants.php:
|
1096 |
msgid "go live again"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: lib/wfu_constants.php:
|
1100 |
msgid "end recording"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: lib/wfu_constants.php:
|
1104 |
msgid "play"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: lib/wfu_constants.php:
|
1108 |
msgid "pause"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: lib/wfu_constants.php:
|
1112 |
msgid "go to the beginning"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: lib/wfu_constants.php:
|
1116 |
msgid "go to the end"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: lib/wfu_constants.php:
|
1120 |
msgid "Wordpress File Upload Form"
|
1121 |
msgstr "Wordpress File Upload Formulaire"
|
1122 |
|
1123 |
-
#: lib/wfu_constants.php:
|
1124 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1125 |
msgstr "Wordpress File Upload extension d'upload pour sidebar."
|
1126 |
|
1127 |
-
#: lib/wfu_constants.php:
|
1128 |
msgid "Upload Files"
|
1129 |
msgstr "Envoyer des fichiers"
|
1130 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:40+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:40+0200\n"
|
7 |
"Last-Translator: Eric D. Valachs <ericduval@laposte.net>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr_FR\n"
|
106 |
"By activating this option I agree to let the website keep my personal data"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: lib/wfu_constants.php:34
|
110 |
+
msgid ""
|
111 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
112 |
+
"continue!"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: lib/wfu_constants.php:36
|
116 |
msgid "File"
|
117 |
msgstr "Fichier"
|
118 |
|
119 |
+
#: lib/wfu_constants.php:37
|
120 |
msgid "Date"
|
121 |
msgstr "Date"
|
122 |
|
123 |
+
#: lib/wfu_constants.php:38
|
124 |
msgid "Size"
|
125 |
msgstr "Taille"
|
126 |
|
127 |
+
#: lib/wfu_constants.php:39
|
128 |
msgid "User"
|
129 |
msgstr "Utilisateur"
|
130 |
|
131 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
132 |
msgid "Page"
|
133 |
msgstr "Page"
|
134 |
|
135 |
+
#: lib/wfu_constants.php:41
|
136 |
msgid "User Fields"
|
137 |
msgstr "Champ utilisateur"
|
138 |
|
139 |
+
#: lib/wfu_constants.php:42
|
140 |
msgid "Download"
|
141 |
msgstr "Télécharger"
|
142 |
|
143 |
+
#: lib/wfu_constants.php:43
|
144 |
msgid "Download this file"
|
145 |
msgstr "Télécharger ce fichier"
|
146 |
|
147 |
+
#: lib/wfu_constants.php:44
|
148 |
msgid "Delete"
|
149 |
msgstr "Supprimer"
|
150 |
|
151 |
+
#: lib/wfu_constants.php:45
|
152 |
msgid "Delete this file"
|
153 |
msgstr "Supprimer ce fichier"
|
154 |
|
155 |
+
#: lib/wfu_constants.php:46
|
156 |
msgid "Sort list based on this column"
|
157 |
msgstr "Trier la liste à partir de cette colonne"
|
158 |
|
159 |
+
#: lib/wfu_constants.php:47
|
160 |
msgid "guest"
|
161 |
msgstr "Visiteur"
|
162 |
|
163 |
+
#: lib/wfu_constants.php:48
|
164 |
msgid "unknown"
|
165 |
msgstr "Inconnu"
|
166 |
|
167 |
+
#: lib/wfu_constants.php:50
|
168 |
msgid ""
|
169 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
170 |
"attribute."
|
172 |
"Erreur : Impossible d'atteindre le repertoire ftp de destination. Vérifier "
|
173 |
"le domaine dans l'attribut 'ftpinfo'."
|
174 |
|
175 |
+
#: lib/wfu_constants.php:51
|
176 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
177 |
msgstr ""
|
178 |
"Erreur : Les informations FTP sont invalides. Vérifier le domaine dans "
|
179 |
"l'attribut 'ftpinfo'."
|
180 |
|
181 |
+
#: lib/wfu_constants.php:52
|
182 |
msgid ""
|
183 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
184 |
"syntax."
|
186 |
"Erreur : Impossible d'obtenir les informations dans l'attribut 'ftpinfo'. "
|
187 |
"Vérifez sa syntaxe."
|
188 |
|
189 |
+
#: lib/wfu_constants.php:53
|
190 |
msgid ""
|
191 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
192 |
"attribute."
|
194 |
"Erreur : Impossible de résoudre le nom de fichier de destination FTP. "
|
195 |
"Vérifiez le domaine dans l'attribut 'ftpinfo'."
|
196 |
|
197 |
+
#: lib/wfu_constants.php:54
|
198 |
msgid ""
|
199 |
"Error. Could not open source file for ftp upload. Check if file is "
|
200 |
"accessible."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: lib/wfu_constants.php:55
|
204 |
msgid "Error. Could not send data to ftp target file."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: lib/wfu_constants.php:56
|
208 |
msgid ""
|
209 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
210 |
"attribute."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: lib/wfu_constants.php:57
|
214 |
msgid ""
|
215 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
216 |
"'ftpinfo' attribute."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: lib/wfu_constants.php:58
|
220 |
msgid ""
|
221 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
222 |
"supports sftp."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: lib/wfu_constants.php:59
|
226 |
msgid "Error. The web server does not support sftp."
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: lib/wfu_constants.php:60
|
230 |
msgid ""
|
231 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
232 |
"preventing the upload of big files.\n"
|
236 |
"upload_max_filesize, empêche l'envoi de gros fichier.\n"
|
237 |
"La limite de la directive PHP upload_max_filesize est de :"
|
238 |
|
239 |
+
#: lib/wfu_constants.php:61
|
240 |
msgid ""
|
241 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
242 |
"upload of big files.\n"
|
246 |
"l'envoi de gros fichier.\n"
|
247 |
"La limite de la directive PHP max_input_time est de :"
|
248 |
|
249 |
+
#: lib/wfu_constants.php:62
|
250 |
msgid ""
|
251 |
"Error. Permission denied to write to target folder.\n"
|
252 |
"Check and correct read/write permissions of target folder."
|
255 |
"Vérifiez et corrigez les permission en lecture/ecriture du repertoire de "
|
256 |
"destination."
|
257 |
|
258 |
+
#: lib/wfu_constants.php:63
|
259 |
msgid ""
|
260 |
"Error. This file was rejected because its extension is not correct. Its "
|
261 |
"proper filename is: "
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: lib/wfu_constants.php:64
|
265 |
msgid ""
|
266 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
267 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
268 |
"suspicious behaviour."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: lib/wfu_constants.php:65
|
272 |
msgid ""
|
273 |
"File not uploaded in order to prevent overflow of the website. Please "
|
274 |
"contact administrator."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: lib/wfu_constants.php:66
|
278 |
msgid "Target folder doesn't exist."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: lib/wfu_constants.php:67
|
282 |
msgid "Upload failed! Missing a temporary folder."
|
283 |
msgstr "Envoi impossible ! Il manque un répertoire temporaire."
|
284 |
|
285 |
+
#: lib/wfu_constants.php:68
|
286 |
msgid "Upload failed! Permission denied to write to target folder."
|
287 |
msgstr ""
|
288 |
"Envoi impossible ! Autorisation d'écriture refusée dans le répertoire de "
|
289 |
"destination."
|
290 |
|
291 |
+
#: lib/wfu_constants.php:69
|
292 |
msgid "File not allowed."
|
293 |
msgstr "Type de fichier non autorisé."
|
294 |
|
295 |
+
#: lib/wfu_constants.php:70
|
296 |
msgid "File is suspicious and was rejected."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: lib/wfu_constants.php:71
|
300 |
msgid "The uploaded file exceeds the file size limit."
|
301 |
msgstr "La taille du fichier est supérieure à la taille limite."
|
302 |
|
303 |
+
#: lib/wfu_constants.php:72
|
304 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
305 |
msgstr "Le fichier téléchargé excède 2 Go (non pris en charge par ce serveur)."
|
306 |
|
307 |
+
#: lib/wfu_constants.php:73
|
308 |
msgid ""
|
309 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
310 |
"Please contact the administrator."
|
312 |
"Envoi impossible ! La taille du fichier excède la taille limite du serveur. "
|
313 |
"Contactez l'administrateur."
|
314 |
|
315 |
+
#: lib/wfu_constants.php:74
|
316 |
msgid ""
|
317 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
318 |
"server. Please contact the administrator."
|
320 |
"Envoi impossible ! La durée d'envoi excède le timeout du serveur. Contactez "
|
321 |
"l'administrateur."
|
322 |
|
323 |
+
#: lib/wfu_constants.php:75
|
324 |
msgid ""
|
325 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
326 |
"was specified in the HTML form."
|
328 |
"Envoi impossible ! La taille du fichier excède la directive MAX_FILE_SIZE "
|
329 |
"spécifiée dans le formulaire HTML."
|
330 |
|
331 |
+
#: lib/wfu_constants.php:76
|
332 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
333 |
msgstr "Envoi impossible ! Le fichier n' été que partiellement envoyé."
|
334 |
|
335 |
+
#: lib/wfu_constants.php:77
|
336 |
msgid "Upload failed! No file was uploaded."
|
337 |
msgstr "Envoi impossible ! Le fichier n'a pas été envoyé."
|
338 |
|
339 |
+
#: lib/wfu_constants.php:78
|
340 |
msgid "Upload failed! Failed to write file to disk."
|
341 |
msgstr "Envoi impossible ! Impossible d'écrire le fichier sur le disque."
|
342 |
|
343 |
+
#: lib/wfu_constants.php:79
|
344 |
msgid ""
|
345 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
346 |
"administrator."
|
348 |
"Envoi impossible ! Une erreur est survenue lors du déplacement du fichier "
|
349 |
"temporaire. Contactez l'administrateur."
|
350 |
|
351 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
352 |
msgid "Upload cancelled!"
|
353 |
msgstr "Envoi annulé!"
|
354 |
|
355 |
+
#: lib/wfu_constants.php:81
|
356 |
msgid ""
|
357 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
358 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
362 |
"peut pas fournir avec certitude quelle extension est en cause. Examinez la "
|
363 |
"liste des extensions chargées avec phpinfo() peut être utile."
|
364 |
|
365 |
+
#: lib/wfu_constants.php:82
|
366 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
367 |
msgstr ""
|
368 |
"Envoi impossible ! Une erreur est survenue pendant la tentative d'envoi du "
|
369 |
"fichier."
|
370 |
|
371 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
372 |
msgid "Upload failed!"
|
373 |
msgstr "Envoi impossible !"
|
374 |
|
375 |
+
#: lib/wfu_constants.php:84
|
376 |
msgid "No file!"
|
377 |
msgstr "Pas de fichier !"
|
378 |
|
379 |
+
#: lib/wfu_constants.php:85
|
380 |
msgid ""
|
381 |
"Upload failed! The upload has been canceled by the user or the browser "
|
382 |
"dropped the connection."
|
384 |
"Envoi impossible! L'envoi a été annulé par l'utilisateur ou le navigateur a "
|
385 |
"interrompu la connexion."
|
386 |
|
387 |
+
#: lib/wfu_constants.php:86
|
388 |
msgid "Upload failed! Unknown error."
|
389 |
msgstr "Envoi impossible! Erreur inconnue."
|
390 |
|
391 |
+
#: lib/wfu_constants.php:87
|
392 |
msgid "Please contact the administrator."
|
393 |
msgstr "Merci de contacter l'administrateur."
|
394 |
|
395 |
+
#: lib/wfu_constants.php:88
|
396 |
msgid "No result from remote server!"
|
397 |
msgstr "Pas de réponse du serveur distant !"
|
398 |
|
399 |
+
#: lib/wfu_constants.php:89
|
400 |
msgid " but with warnings"
|
401 |
msgstr "mais avec des avertissements"
|
402 |
|
403 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
404 |
msgid "Warning: JSON parse error."
|
405 |
msgstr "Attention : Erreur d'analyse JSON"
|
406 |
|
407 |
+
#: lib/wfu_constants.php:91
|
408 |
msgid ""
|
409 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
410 |
"not be parsed."
|
412 |
"Les paramètres d'envoi de ce fichier, passés en tant que chaine JSON, ne "
|
413 |
"peuvent pas être analysés."
|
414 |
|
415 |
+
#: lib/wfu_constants.php:93
|
416 |
msgid ""
|
417 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
418 |
msgstr "UploadStates, passé en tant que chaine JSON, ne peut pas être analysé."
|
419 |
|
420 |
+
#: lib/wfu_constants.php:94
|
421 |
msgid ""
|
422 |
"Redirection to classic form functionality occurred due to unknown error."
|
423 |
msgstr ""
|
424 |
"La redirection vers la fonctionnalité classique des formulaires s'est "
|
425 |
"produit à cause d'une erreur inconue."
|
426 |
|
427 |
+
#: lib/wfu_constants.php:95
|
428 |
msgid ""
|
429 |
"Redirection to classic form functionality occurred because AJAX is not "
|
430 |
"supported."
|
432 |
"La redirection vers la fonctionnalité classique des formulaire s'est produit "
|
433 |
"car AJAX n'est pas supporté."
|
434 |
|
435 |
+
#: lib/wfu_constants.php:96
|
436 |
msgid ""
|
437 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
438 |
"supported."
|
440 |
"La redirection vers la fonctionnalité classique des formulaires s'est "
|
441 |
"produit car HTML5 n'est pas supporté."
|
442 |
|
443 |
+
#: lib/wfu_constants.php:97
|
444 |
msgid ""
|
445 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
446 |
msgstr ""
|
447 |
"La redirection vers la fonctionnalité classique des formulaires s'est "
|
448 |
"produit à cause d'une erreur d'analyse JSON."
|
449 |
|
450 |
+
#: lib/wfu_constants.php:98
|
451 |
msgid "Please enable popup windows from the browser's settings!"
|
452 |
msgstr ""
|
453 |
"Veuillez activer les fenêtres contextuelles dans les paramètres du "
|
454 |
"navigateur !"
|
455 |
|
456 |
+
#: lib/wfu_constants.php:99
|
457 |
msgid "cannot be empty!"
|
458 |
msgstr "Ne peut pas être vide !"
|
459 |
|
460 |
+
#: lib/wfu_constants.php:100
|
461 |
msgid "number not valid!"
|
462 |
msgstr "Nombre non valide !"
|
463 |
|
464 |
+
#: lib/wfu_constants.php:101
|
465 |
msgid "email not valid!"
|
466 |
msgstr "L'e-mail n'est pas valide !"
|
467 |
|
468 |
+
#: lib/wfu_constants.php:102
|
469 |
msgid "emails do not match!"
|
470 |
msgstr "Les e-mails ne correspondent pas !"
|
471 |
|
472 |
+
#: lib/wfu_constants.php:103
|
473 |
msgid "no base email field in group!"
|
474 |
msgstr "Aucun champ email de base en groupe !"
|
475 |
|
476 |
+
#: lib/wfu_constants.php:104
|
477 |
msgid "passwords do not match!"
|
478 |
msgstr "Les mots de passe ne correspondent pas !"
|
479 |
|
480 |
+
#: lib/wfu_constants.php:105
|
481 |
msgid "no base password field in group!"
|
482 |
msgstr "Aucun champ de mot de passe de base dans le groupe !"
|
483 |
|
484 |
+
#: lib/wfu_constants.php:106
|
485 |
msgid "checkbox unchecked!"
|
486 |
msgstr "Case à cocher désactivée !"
|
487 |
|
488 |
+
#: lib/wfu_constants.php:107
|
489 |
msgid "no option selected!"
|
490 |
msgstr "Aucune option sélectionnée !"
|
491 |
|
492 |
+
#: lib/wfu_constants.php:108
|
493 |
msgid "no item selected!"
|
494 |
msgstr "Aucun article sélectionné !"
|
495 |
|
496 |
+
#: lib/wfu_constants.php:109
|
497 |
msgid ""
|
498 |
"There are more than one instances of the plugin in this page with the same "
|
499 |
"id. Please change it."
|
501 |
"Il y a plusieurs occurences d'une instance du plugin dans cette page (même "
|
502 |
"id). Modifiez votre page."
|
503 |
|
504 |
+
#: lib/wfu_constants.php:110
|
505 |
msgid ""
|
506 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
507 |
"the page."
|
509 |
"Impossible de modifier le shortcode car la page a été modifiée. Veuillez "
|
510 |
"recharger la page."
|
511 |
|
512 |
+
#: lib/wfu_constants.php:111
|
513 |
msgid "Your browser does not support webcam capture!"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: lib/wfu_constants.php:112
|
517 |
msgid "Your browser does not support video recording from the webcam!"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: lib/wfu_constants.php:113
|
521 |
msgid "No video was recorded!"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: lib/wfu_constants.php:114
|
525 |
msgid ""
|
526 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
527 |
"or use RecaptchaV2 (no account)."
|
529 |
"Erreur : Captcha pas pris en charge! Vous avez une ancienne version de PHP. "
|
530 |
"Mettre à jour votre PHP ou utiliser RecaptchaV2 (no account)."
|
531 |
|
532 |
+
#: lib/wfu_constants.php:115
|
533 |
msgid ""
|
534 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
535 |
"notify administrator."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: lib/wfu_constants.php:116
|
539 |
msgid ""
|
540 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
541 |
"use RecaptchaV1 (no account)."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: lib/wfu_constants.php:117
|
545 |
msgid "ERROR: No site key. Please contact administrator!"
|
546 |
msgstr ""
|
547 |
"Erreur : Aucune clé du site. S'il vous plaît contacter l'administrateur!"
|
548 |
|
549 |
+
#: lib/wfu_constants.php:118
|
550 |
msgid ""
|
551 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
552 |
"define Google Recaptcha keys."
|
554 |
"Erreur : Aucun site clé défini ! Aller à la configuration du plugin dans le "
|
555 |
"Tableau de bord pour définir des clés de Google Recaptcha."
|
556 |
|
557 |
+
#: lib/wfu_constants.php:119
|
558 |
msgid "Bad captcha image!"
|
559 |
msgstr "Mauvaise image de captcha !"
|
560 |
|
561 |
+
#: lib/wfu_constants.php:120
|
562 |
msgid "No input!"
|
563 |
msgstr "Aucune entrée !"
|
564 |
|
565 |
+
#: lib/wfu_constants.php:121
|
566 |
msgid "Captcha not completed!"
|
567 |
msgstr "Captcha incomplet !"
|
568 |
|
569 |
+
#: lib/wfu_constants.php:122
|
570 |
msgid "Wrong captcha!"
|
571 |
msgstr "Mauvaise saisie captcha!"
|
572 |
|
573 |
+
#: lib/wfu_constants.php:123
|
574 |
msgid "Error refreshing captcha!"
|
575 |
msgstr "Erreur mise à jour du captcha!"
|
576 |
|
577 |
+
#: lib/wfu_constants.php:124
|
578 |
msgid "Unknown captcha error!"
|
579 |
msgstr "Captcha erreur inconnue!"
|
580 |
|
581 |
+
#: lib/wfu_constants.php:125
|
582 |
msgid "Captcha not supported by your browser!"
|
583 |
msgstr "Captcha n'a pas supporté par votre navigateur!"
|
584 |
|
585 |
+
#: lib/wfu_constants.php:126
|
586 |
msgid "the secret parameter is missing"
|
587 |
msgstr "le paramètre secret est manquant"
|
588 |
|
589 |
+
#: lib/wfu_constants.php:127
|
590 |
msgid "the secret parameter is invalid or malformed"
|
591 |
msgstr "le paramètre secret est invalide ou malformé"
|
592 |
|
593 |
+
#: lib/wfu_constants.php:128
|
594 |
msgid "the response parameter is missing"
|
595 |
msgstr "le paramètre de réponse est manquant"
|
596 |
|
597 |
+
#: lib/wfu_constants.php:129
|
598 |
msgid "the response parameter is invalid or malformed"
|
599 |
msgstr "le paramètre de réponse est invalide ou malformé"
|
600 |
|
601 |
+
#: lib/wfu_constants.php:130
|
602 |
msgid "Please do not use drag drop due to an internal problem."
|
603 |
msgstr "Ne pas utiliser un glisser-déposer (cause : problème interne)."
|
604 |
|
605 |
+
#: lib/wfu_constants.php:131
|
606 |
#, php-format
|
607 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
608 |
msgstr "Erreur pendant l'envoi de fichier en blocs. Unique ID vide en bloc %d"
|
609 |
|
610 |
+
#: lib/wfu_constants.php:132
|
611 |
msgid "Chunked upload is not allowed!"
|
612 |
msgstr "L'envoi des fichiers en bloc n'est pas autorisé!"
|
613 |
|
614 |
+
#: lib/wfu_constants.php:133
|
615 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
616 |
msgstr ""
|
617 |
"Envoi de fichier en bloc interrompu suite à une erreur dans bloc précédent!"
|
618 |
|
619 |
+
#: lib/wfu_constants.php:134
|
620 |
msgid "Chunked upload failed, final file could not be created!"
|
621 |
msgstr ""
|
622 |
"Envoi de fichier en bloc échoué, le fichier final n'a pas pu être créé!"
|
623 |
|
624 |
+
#: lib/wfu_constants.php:135
|
625 |
#, php-format
|
626 |
msgid "Could not write file chuck to destination on chunk %d"
|
627 |
msgstr "Impossible d'écrire le bloc de fichier à destination sur bloc %d"
|
628 |
|
629 |
+
#: lib/wfu_constants.php:136
|
630 |
#, php-format
|
631 |
msgid "Could not enlarge destination file on chunk %d"
|
632 |
msgstr "Impossible agrandir fichier de destination sur bloc %d"
|
633 |
|
634 |
+
#: lib/wfu_constants.php:137
|
635 |
#, php-format
|
636 |
msgid "Could not open file handles on chunk %d"
|
637 |
msgstr "Impossible d'ouvrir le fichier handles sur bloc %d"
|
638 |
|
639 |
+
#: lib/wfu_constants.php:138
|
640 |
msgid "You are not allowed to download this file!"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: lib/wfu_constants.php:139
|
644 |
msgid "File does not exist!"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: lib/wfu_constants.php:140
|
648 |
msgid "Could not download file!"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: lib/wfu_constants.php:141
|
652 |
msgid "You are not allowed to delete this file!"
|
653 |
msgstr "Vous n' êtes pas autorisé à supprimer ce fichier !"
|
654 |
|
655 |
+
#: lib/wfu_constants.php:142
|
656 |
msgid "File was not deleted!"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/wfu_constants.php:143
|
660 |
msgid "No file was deleted!"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: lib/wfu_constants.php:144
|
664 |
msgid "Some files were not deleted!"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: lib/wfu_constants.php:146
|
668 |
msgid "Upload skipped! File already exists."
|
669 |
msgstr "Envoi ignoré ! Le fichier existe déjà."
|
670 |
|
671 |
+
#: lib/wfu_constants.php:147
|
672 |
msgid "The extension of the file does not match its contents."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: lib/wfu_constants.php:148
|
676 |
msgid ""
|
677 |
"Upload succeeded but the file is suspicious because its contents do not "
|
678 |
"match its extension. Its proper filename is: "
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: lib/wfu_constants.php:149
|
682 |
msgid "No files have been selected!"
|
683 |
msgstr "Aucun fichier n'a été envoyé !"
|
684 |
|
685 |
+
#: lib/wfu_constants.php:150
|
686 |
msgid "Please complete the consent question before continuing the upload!"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: lib/wfu_constants.php:151
|
690 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
691 |
msgstr ""
|
692 |
"WPFilebase Plugin n'a pas été mis à jour car il n'y a pas de fichiers à "
|
693 |
"envoyer."
|
694 |
|
695 |
+
#: lib/wfu_constants.php:152
|
696 |
msgid "Notification email was not sent because there were no files uploaded."
|
697 |
msgstr ""
|
698 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de fichiers à "
|
699 |
"envoyer."
|
700 |
|
701 |
+
#: lib/wfu_constants.php:153
|
702 |
msgid ""
|
703 |
"Notification email was not sent because no recipients were defined. Please "
|
704 |
"check notifyrecipients attribute in the shortcode."
|
706 |
"Le mail de notification n'a pas été envoyé car il n'y a pas de destinataire. "
|
707 |
"Merci de vérifier l'attribut notifyrecipients dans le shortcode."
|
708 |
|
709 |
+
#: lib/wfu_constants.php:154
|
710 |
msgid ""
|
711 |
"Notification email was not sent due to an error. Please check "
|
712 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
714 |
"Le mail de notification n'a pas été envoyé car il n'y a une erreur. Merci de "
|
715 |
"vérifier les attributs notifyrecipients, notifysubject et notifymessage."
|
716 |
|
717 |
+
#: lib/wfu_constants.php:155
|
718 |
msgid ""
|
719 |
"Redirection not executed because redirection link is empty. Please check "
|
720 |
"redirectlink attribute."
|
722 |
"La redirection n'a pas été effectuée car le lien de redirection est vide. "
|
723 |
"Merci de vérifier l'attribut redirectlink."
|
724 |
|
725 |
+
#: lib/wfu_constants.php:156
|
726 |
msgid ""
|
727 |
"Redirection not executed because not all files were successfully uploaded."
|
728 |
msgstr ""
|
729 |
"La redirection n'est pas exécutée car tous les fichiers n'ont pas été "
|
730 |
"envoyés."
|
731 |
|
732 |
+
#: lib/wfu_constants.php:157
|
733 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: lib/wfu_constants.php:158
|
737 |
msgid ""
|
738 |
"Hello admin\n"
|
739 |
"\n"
|
753 |
"Thanks"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: lib/wfu_constants.php:159
|
757 |
msgid ""
|
758 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
759 |
"details please contact info@iptanus.com."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: lib/wfu_constants.php:160
|
763 |
msgid ""
|
764 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
765 |
"plugin functions. Please read this :article: for resolution."
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: lib/wfu_constants.php:162
|
769 |
msgid ""
|
770 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
771 |
"message persists, contact administrator."
|
773 |
"Impossible d' ajouter le shortcode à la page / poste. Essayez à nouveau. Si "
|
774 |
"le message persiste, contactez l' administrateur."
|
775 |
|
776 |
+
#: lib/wfu_constants.php:163
|
777 |
msgid ""
|
778 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
779 |
"again to edit the shortcode."
|
781 |
"Impossible de modifier le shortcode parce que le contenu de la page a "
|
782 |
"changé. Essayez à nouveau de modifier le shortcode."
|
783 |
|
784 |
+
#: lib/wfu_constants.php:164
|
785 |
msgid ""
|
786 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
787 |
"again to delete it."
|
789 |
"Impossible de supprimer le shortcode parce que le contenu de la page a "
|
790 |
"changé. Essayez à nouveau de le supprimer."
|
791 |
|
792 |
+
#: lib/wfu_constants.php:165
|
793 |
msgid ""
|
794 |
"The page containing the shortcode has been modified and it is no longer "
|
795 |
"valid. Please go back to reload the shortcode."
|
797 |
"La page contenant le shortcode a été modifié et il n'est plus valide. "
|
798 |
"Rechargez le shortcode."
|
799 |
|
800 |
+
#: lib/wfu_constants.php:166
|
801 |
msgid ""
|
802 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
803 |
"back to reload the shortcode."
|
805 |
"Impossible de mettre à jour le shortcode parce que le contenu de la page a "
|
806 |
"changé. Rechargez le shortcode."
|
807 |
|
808 |
+
#: lib/wfu_constants.php:167
|
809 |
msgid ""
|
810 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
811 |
"go back and reload the shortcode."
|
813 |
"Impossible de mettre à jour le shortcode. Essayez à nouveau. Si le problème "
|
814 |
"persiste, rechargez le shortcode."
|
815 |
|
816 |
+
#: lib/wfu_constants.php:169
|
817 |
msgid "This is a test message"
|
818 |
msgstr "Ceci est un message de test"
|
819 |
|
820 |
+
#: lib/wfu_constants.php:170
|
821 |
msgid "This is a test administrator message"
|
822 |
msgstr "Ceci est un message administrateur de test"
|
823 |
|
824 |
+
#: lib/wfu_constants.php:171
|
825 |
msgid "File testfile 1 under test"
|
826 |
msgstr "File testfile 1 under test"
|
827 |
|
828 |
+
#: lib/wfu_constants.php:172
|
829 |
msgid "File testfile 1 message"
|
830 |
msgstr "File testfile 1 message"
|
831 |
|
832 |
+
#: lib/wfu_constants.php:173
|
833 |
msgid "File testfile 1 administrator message"
|
834 |
msgstr "Message administrateur File testfile"
|
835 |
|
836 |
+
#: lib/wfu_constants.php:174
|
837 |
msgid "File testfile 2 under test"
|
838 |
msgstr "En test File testfile"
|
839 |
|
840 |
+
#: lib/wfu_constants.php:175
|
841 |
msgid "File testfile 2 message"
|
842 |
msgstr "Message File testfile 2"
|
843 |
|
844 |
+
#: lib/wfu_constants.php:176
|
845 |
msgid "File testfile 2 administrator message"
|
846 |
msgstr "Message administrateur File testfile 2"
|
847 |
|
848 |
+
#: lib/wfu_constants.php:178
|
849 |
msgid ""
|
850 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
851 |
"current user."
|
853 |
"Insérez %userid% variable dans le texte. Il sera remplacé par l'id de "
|
854 |
"l'utilisateur courant."
|
855 |
|
856 |
+
#: lib/wfu_constants.php:179
|
857 |
msgid ""
|
858 |
"Insert variable %username% inside text. It will be replaced by the username "
|
859 |
"of the current user."
|
861 |
"Insérez la variable %username% dans le texte. Il sera remplacé par le "
|
862 |
"username de l'utilisateur courant."
|
863 |
|
864 |
+
#: lib/wfu_constants.php:180
|
865 |
msgid ""
|
866 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
867 |
"the current user."
|
869 |
"Insérez la variable %useremail% dans le texte. Il sera remplacé par l'email "
|
870 |
"de l'utilisateur courant."
|
871 |
|
872 |
+
#: lib/wfu_constants.php:181
|
873 |
msgid ""
|
874 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
875 |
"of the uploaded file."
|
877 |
"Insérez la variable %filename% dans le texte. Il sera remplacé par le nom du "
|
878 |
"fichier à envoyer."
|
879 |
|
880 |
+
#: lib/wfu_constants.php:182
|
881 |
msgid ""
|
882 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
883 |
"filepath of the uploaded file."
|
885 |
"Insérez la variable %filepath% dans le texte. Il sera remplacé par le chemin "
|
886 |
"complet du fichier envoyé."
|
887 |
|
888 |
+
#: lib/wfu_constants.php:183
|
889 |
msgid ""
|
890 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
891 |
"the website."
|
893 |
"Insérez la variable %blogid% dans le texte. Il sera remplacé par l'id du "
|
894 |
"blog du site web."
|
895 |
|
896 |
+
#: lib/wfu_constants.php:184
|
897 |
msgid ""
|
898 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
899 |
"current page."
|
901 |
"Insérez %pageid% variable dans le texte. Il sera remplacé par l'id de la "
|
902 |
"page en cours."
|
903 |
|
904 |
+
#: lib/wfu_constants.php:185
|
905 |
msgid ""
|
906 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
907 |
"the current page."
|
909 |
"Insérez %pagetitle% variable dans le texte. Il sera remplacé par le titre de "
|
910 |
"la page courante."
|
911 |
|
912 |
+
#: lib/wfu_constants.php:186
|
913 |
msgid ""
|
914 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
915 |
"drop-down list. It will be replaced by the value that the user entered in "
|
919 |
"l'utilisateur dans la liste déroulante. Il sera remplacé par la valeur que "
|
920 |
"l'utilisateur aura entré dans ce champ."
|
921 |
|
922 |
+
#: lib/wfu_constants.php:187
|
923 |
msgid "Insert variable %n% inside text to denote a line change."
|
924 |
msgstr ""
|
925 |
"Insérez la variable %n% à l'intérieur du texte pour indiquer un changement "
|
926 |
"de ligne."
|
927 |
|
928 |
+
#: lib/wfu_constants.php:189
|
929 |
+
#, php-format
|
930 |
+
msgid "File %filename% uploaded successfully but not saved"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: lib/wfu_constants.php:190
|
934 |
msgid "Test Mode"
|
935 |
msgstr "Mode de test"
|
936 |
|
937 |
+
#: lib/wfu_constants.php:191
|
938 |
msgid "select dir..."
|
939 |
msgstr "Sélectionnez dir"
|
940 |
|
941 |
+
#: lib/wfu_constants.php:192
|
942 |
msgid "type dir"
|
943 |
msgstr "Saisir dir"
|
944 |
|
945 |
+
#: lib/wfu_constants.php:193
|
946 |
msgid "Upload path: %filepath%"
|
947 |
msgstr "Chemin d'upload : %filepath%"
|
948 |
|
949 |
+
#: lib/wfu_constants.php:194
|
950 |
msgid "Failed upload path: %filepath%"
|
951 |
msgstr "Mauvais répertoire d'envoi : %filepath%"
|
952 |
|
953 |
+
#: lib/wfu_constants.php:195
|
954 |
msgid " (required)"
|
955 |
msgstr " (*)"
|
956 |
|
957 |
+
#: lib/wfu_constants.php:196
|
958 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
959 |
msgstr "Les fichiers sont envoyés. Êtes-vous sûr de vouloir quitter la page ?"
|
960 |
|
961 |
+
#: lib/wfu_constants.php:197
|
962 |
msgid "checking captcha..."
|
963 |
msgstr "Vérifiez captcha..."
|
964 |
|
965 |
+
#: lib/wfu_constants.php:198
|
966 |
msgid "refreshing..."
|
967 |
msgstr "Mise à jour..."
|
968 |
|
969 |
+
#: lib/wfu_constants.php:199
|
970 |
msgid "correct captcha"
|
971 |
msgstr "Captcha correctement saisi"
|
972 |
|
973 |
+
#: lib/wfu_constants.php:200
|
974 |
msgid "click to continue the upload"
|
975 |
msgstr "Cliquer pour continuer l'envoi"
|
976 |
|
977 |
+
#: lib/wfu_constants.php:201
|
978 |
msgid "Are you sure you want to delete this file?"
|
979 |
msgstr "Êtes-vous sûr de vouloir supprimer ce fichier?"
|
980 |
|
981 |
+
#: lib/wfu_constants.php:202
|
982 |
msgid "Are you sure you want to delete these files?"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: lib/wfu_constants.php:203
|
986 |
msgid "Bulk Actions"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: lib/wfu_constants.php:204
|
990 |
msgid "Apply"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: lib/wfu_constants.php:206
|
994 |
msgid "of "
|
995 |
msgstr "sur "
|
996 |
|
997 |
+
#: lib/wfu_constants.php:207
|
998 |
msgid "Are you sure that you want to cancel the upload?"
|
999 |
msgstr ""
|
1000 |
|
1001 |
+
#: lib/wfu_constants.php:208
|
1002 |
msgid "cancel upload of this file"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: lib/wfu_constants.php:209
|
1006 |
msgid "Upload in progress"
|
1007 |
msgstr "Envoi en cours"
|
1008 |
|
1009 |
+
#: lib/wfu_constants.php:210
|
1010 |
msgid "Upload in progress with warnings!"
|
1011 |
msgstr "Envoi en cours mais avec des avertissements!"
|
1012 |
|
1013 |
+
#: lib/wfu_constants.php:211
|
1014 |
msgid "Upload in progress but some files already failed!"
|
1015 |
msgstr "Envoi en cours mais certains fichiers ont échoués!"
|
1016 |
|
1017 |
+
#: lib/wfu_constants.php:212
|
1018 |
msgid "Upload in progress but no files uploaded so far!"
|
1019 |
msgstr "Envoi en cours mais aucun fichier n'a été envoyé pour le moment!"
|
1020 |
|
1021 |
+
#: lib/wfu_constants.php:213
|
1022 |
msgid "All files uploaded successfully"
|
1023 |
msgstr "Tous les fichiers ont été envoyés avec succès"
|
1024 |
|
1025 |
+
#: lib/wfu_constants.php:214
|
1026 |
msgid "All files uploaded successfully but there are warnings!"
|
1027 |
msgstr ""
|
1028 |
"Tous les fichiers ont été envoyés avec succès mais avec des avertissements!"
|
1029 |
|
1030 |
+
#: lib/wfu_constants.php:215
|
1031 |
msgid "File uploaded successfully but there are warnings!"
|
1032 |
msgstr "Fichiers envoyés avec succès mais certain avec un avertissement."
|
1033 |
|
1034 |
+
#: lib/wfu_constants.php:216
|
1035 |
msgid "Some files failed to upload!"
|
1036 |
msgstr "Certains fichiers n'ont pas été envoyé"
|
1037 |
|
1038 |
+
#: lib/wfu_constants.php:217
|
1039 |
msgid "All files failed to upload"
|
1040 |
msgstr "Impossible d'envoyer les fichiers"
|
1041 |
|
1042 |
+
#: lib/wfu_constants.php:218
|
1043 |
msgid "File failed to upload"
|
1044 |
msgstr "Impossible d'envoyer le fichier"
|
1045 |
|
1046 |
+
#: lib/wfu_constants.php:219
|
1047 |
msgid "There are no files to upload!"
|
1048 |
msgstr "Il n'y a pas de fichiers à envoyer"
|
1049 |
|
1050 |
+
#: lib/wfu_constants.php:220
|
1051 |
msgid "Test upload message"
|
1052 |
msgstr "Message de test d'upload"
|
1053 |
|
1054 |
+
#: lib/wfu_constants.php:221
|
1055 |
msgid "JSON parse warning!"
|
1056 |
msgstr "Avertissements d'analyse JSON."
|
1057 |
|
1058 |
+
#: lib/wfu_constants.php:222
|
1059 |
msgid "please wait while redirecting..."
|
1060 |
msgstr "Merci de patienter pendant la redirection..."
|
1061 |
|
1062 |
+
#: lib/wfu_constants.php:224
|
1063 |
msgid "Submitting data"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: lib/wfu_constants.php:225
|
1067 |
msgid "Data submitted successfully!"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: lib/wfu_constants.php:226
|
1071 |
msgid "Data were not submitted!"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: lib/wfu_constants.php:227
|
1075 |
msgid "Cancelling upload"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: lib/wfu_constants.php:229
|
1079 |
+
msgid "Upload succeeded!"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: lib/wfu_constants.php:230
|
1083 |
+
msgid "Upload completed but no files were saved!"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: lib/wfu_constants.php:231
|
1087 |
+
msgid "File was not saved due to personal data policy!"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: lib/wfu_constants.php:232
|
1091 |
msgid "Open visual shortcode editor in new window"
|
1092 |
msgstr "Ouvrez l'éditeur de shortcode visuel dans une nouvelle fenêtre"
|
1093 |
|
1094 |
+
#: lib/wfu_constants.php:233
|
1095 |
msgid "loading visual editor"
|
1096 |
msgstr "Chargement de l'éditeur visuel"
|
1097 |
|
1098 |
+
#: lib/wfu_constants.php:234
|
1099 |
msgid "Clear file list?"
|
1100 |
msgstr "Effacer la liste des fichiers ?"
|
1101 |
|
1102 |
+
#: lib/wfu_constants.php:235
|
1103 |
msgid "DROP HERE"
|
1104 |
msgstr "Déposer ici"
|
1105 |
|
1106 |
+
#: lib/wfu_constants.php:237
|
1107 |
msgid "record video"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: lib/wfu_constants.php:238
|
1111 |
msgid "take a picture"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: lib/wfu_constants.php:239
|
1115 |
msgid "turn webcam on/off"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: lib/wfu_constants.php:240
|
1119 |
msgid "go live again"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: lib/wfu_constants.php:241
|
1123 |
msgid "end recording"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: lib/wfu_constants.php:242
|
1127 |
msgid "play"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: lib/wfu_constants.php:243
|
1131 |
msgid "pause"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: lib/wfu_constants.php:244
|
1135 |
msgid "go to the beginning"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: lib/wfu_constants.php:245
|
1139 |
msgid "go to the end"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: lib/wfu_constants.php:247
|
1143 |
msgid "Wordpress File Upload Form"
|
1144 |
msgstr "Wordpress File Upload Formulaire"
|
1145 |
|
1146 |
+
#: lib/wfu_constants.php:248
|
1147 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1148 |
msgstr "Wordpress File Upload extension d'upload pour sidebar."
|
1149 |
|
1150 |
+
#: lib/wfu_constants.php:249
|
1151 |
msgid "Upload Files"
|
1152 |
msgstr "Envoyer des fichiers"
|
1153 |
|
languages/wp-file-upload-it_IT.mo
CHANGED
Binary file
|
languages/wp-file-upload-it_IT.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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: it\n"
|
@@ -105,59 +105,65 @@ msgid ""
|
|
105 |
"By activating this option I agree to let the website keep my personal data"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "File"
|
110 |
msgstr "File"
|
111 |
|
112 |
-
#: lib/wfu_constants.php:
|
113 |
msgid "Date"
|
114 |
msgstr "Data"
|
115 |
|
116 |
-
#: lib/wfu_constants.php:
|
117 |
msgid "Size"
|
118 |
msgstr "Dimensione"
|
119 |
|
120 |
-
#: lib/wfu_constants.php:
|
121 |
msgid "User"
|
122 |
msgstr "Utente"
|
123 |
|
124 |
-
#: lib/wfu_constants.php:
|
125 |
msgid "Page"
|
126 |
msgstr "Pagina"
|
127 |
|
128 |
-
#: lib/wfu_constants.php:
|
129 |
msgid "User Fields"
|
130 |
msgstr "Campi utente"
|
131 |
|
132 |
-
#: lib/wfu_constants.php:
|
133 |
msgid "Download"
|
134 |
msgstr "Scarica"
|
135 |
|
136 |
-
#: lib/wfu_constants.php:
|
137 |
msgid "Download this file"
|
138 |
msgstr "Scarica questo file"
|
139 |
|
140 |
-
#: lib/wfu_constants.php:
|
141 |
msgid "Delete"
|
142 |
msgstr "Cancella"
|
143 |
|
144 |
-
#: lib/wfu_constants.php:
|
145 |
msgid "Delete this file"
|
146 |
msgstr "Cancella questo file"
|
147 |
|
148 |
-
#: lib/wfu_constants.php:
|
149 |
msgid "Sort list based on this column"
|
150 |
msgstr "Ordina la lista in base a questa colonna"
|
151 |
|
152 |
-
#: lib/wfu_constants.php:
|
153 |
msgid "guest"
|
154 |
msgstr "ospite"
|
155 |
|
156 |
-
#: lib/wfu_constants.php:
|
157 |
msgid "unknown"
|
158 |
msgstr "sconosciuto"
|
159 |
|
160 |
-
#: lib/wfu_constants.php:
|
161 |
msgid ""
|
162 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
163 |
"attribute."
|
@@ -165,11 +171,11 @@ msgstr ""
|
|
165 |
"Errore. Non riesco a trovare la destinazione e la cartella FTP. Controlla il "
|
166 |
"dominio nell'attributo 'ftpinfo'."
|
167 |
|
168 |
-
#: lib/wfu_constants.php:
|
169 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
170 |
msgstr "Errore. Informazioni FTP non valide. Controlla l'attributo 'ftpinfo'."
|
171 |
|
172 |
-
#: lib/wfu_constants.php:
|
173 |
msgid ""
|
174 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
175 |
"syntax."
|
@@ -177,7 +183,7 @@ msgstr ""
|
|
177 |
"Errore. Non riesco ad estrarre le informazioni su FTP dall'attributo "
|
178 |
"'ftpinfo'. Controlla la sintassi."
|
179 |
|
180 |
-
#: lib/wfu_constants.php:
|
181 |
msgid ""
|
182 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
183 |
"attribute."
|
@@ -185,39 +191,39 @@ msgstr ""
|
|
185 |
"Errore. Non riesco a risolvere il nome della destinazione FTP. Controlla il "
|
186 |
"dominio nell'attributo 'ftpinfo'"
|
187 |
|
188 |
-
#: lib/wfu_constants.php:
|
189 |
msgid ""
|
190 |
"Error. Could not open source file for ftp upload. Check if file is "
|
191 |
"accessible."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: lib/wfu_constants.php:
|
195 |
msgid "Error. Could not send data to ftp target file."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: lib/wfu_constants.php:
|
199 |
msgid ""
|
200 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
201 |
"attribute."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: lib/wfu_constants.php:
|
205 |
msgid ""
|
206 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
207 |
"'ftpinfo' attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: lib/wfu_constants.php:
|
211 |
msgid ""
|
212 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
213 |
"supports sftp."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: lib/wfu_constants.php:
|
217 |
msgid "Error. The web server does not support sftp."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: lib/wfu_constants.php:
|
221 |
msgid ""
|
222 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
223 |
"preventing the upload of big files.\n"
|
@@ -227,7 +233,7 @@ msgstr ""
|
|
227 |
"direttiva PHP upload_max_filesize (php.ini)\n"
|
228 |
"La direttiva PHP upload_max_filesize è:"
|
229 |
|
230 |
-
#: lib/wfu_constants.php:
|
231 |
msgid ""
|
232 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
233 |
"upload of big files.\n"
|
@@ -237,7 +243,7 @@ msgstr ""
|
|
237 |
"impedito dalla direttiva PHP max_input_time (php.ini)\n"
|
238 |
"La direttiva PHP max_input_time è:"
|
239 |
|
240 |
-
#: lib/wfu_constants.php:
|
241 |
msgid ""
|
242 |
"Error. Permission denied to write to target folder.\n"
|
243 |
"Check and correct read/write permissions of target folder."
|
@@ -246,7 +252,7 @@ msgstr ""
|
|
246 |
"Controlla e correggi i permessi di lettura e scrittura della cartella di "
|
247 |
"destinazione."
|
248 |
|
249 |
-
#: lib/wfu_constants.php:
|
250 |
msgid ""
|
251 |
"Error. This file was rejected because its extension is not correct. Its "
|
252 |
"proper filename is: "
|
@@ -254,7 +260,7 @@ msgstr ""
|
|
254 |
"Errore. Questo file è stato rifiutato perchè l'estensione non è corretta. Il "
|
255 |
"nome del file giusto è: "
|
256 |
|
257 |
-
#: lib/wfu_constants.php:
|
258 |
msgid ""
|
259 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
260 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
@@ -265,7 +271,7 @@ msgstr ""
|
|
265 |
"rifiutato. Cortesemente controlla il log di caricamento dei file per "
|
266 |
"verificare comportamenti sospetti."
|
267 |
|
268 |
-
#: lib/wfu_constants.php:
|
269 |
msgid ""
|
270 |
"File not uploaded in order to prevent overflow of the website. Please "
|
271 |
"contact administrator."
|
@@ -273,37 +279,37 @@ msgstr ""
|
|
273 |
"File non caricato per evitare un sovraccarico del sito web. Cortesemenete "
|
274 |
"contatta l'amministratore."
|
275 |
|
276 |
-
#: lib/wfu_constants.php:
|
277 |
msgid "Target folder doesn't exist."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: lib/wfu_constants.php:
|
281 |
msgid "Upload failed! Missing a temporary folder."
|
282 |
msgstr "Caricamento fallito! Non trovo la cartella temporanea."
|
283 |
|
284 |
-
#: lib/wfu_constants.php:
|
285 |
msgid "Upload failed! Permission denied to write to target folder."
|
286 |
msgstr ""
|
287 |
"Caricamento fallito! Permesso di scrittura negato nella cartella di "
|
288 |
"destinazione."
|
289 |
|
290 |
-
#: lib/wfu_constants.php:
|
291 |
msgid "File not allowed."
|
292 |
msgstr "File non consentito."
|
293 |
|
294 |
-
#: lib/wfu_constants.php:
|
295 |
msgid "File is suspicious and was rejected."
|
296 |
msgstr "Il file è sospetto ed è stato rifiutato."
|
297 |
|
298 |
-
#: lib/wfu_constants.php:
|
299 |
msgid "The uploaded file exceeds the file size limit."
|
300 |
msgstr "Il file caricato supera il limite di dimensione dei file."
|
301 |
|
302 |
-
#: lib/wfu_constants.php:
|
303 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
304 |
msgstr "Il file caricato supera i 2GB e non è supportato da questo server."
|
305 |
|
306 |
-
#: lib/wfu_constants.php:
|
307 |
msgid ""
|
308 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
309 |
"Please contact the administrator."
|
@@ -311,7 +317,7 @@ msgstr ""
|
|
311 |
"Caricamento fallito! Il file caricato supera il limite di dimensione dei "
|
312 |
"file del server. Cortesemente contatta l'amministratore."
|
313 |
|
314 |
-
#: lib/wfu_constants.php:
|
315 |
msgid ""
|
316 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
317 |
"server. Please contact the administrator."
|
@@ -319,7 +325,7 @@ msgstr ""
|
|
319 |
"Caricamento fallito! La durata del caricamento ha superato il limite "
|
320 |
"temporale del server. Cortesemente contatta l'amministratore."
|
321 |
|
322 |
-
#: lib/wfu_constants.php:
|
323 |
msgid ""
|
324 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
325 |
"was specified in the HTML form."
|
@@ -327,19 +333,19 @@ msgstr ""
|
|
327 |
"Caricamento fallito! Il file caricato supera la direttiva MAX_FILE_SIZE che "
|
328 |
"è stata specificata nel form HTML."
|
329 |
|
330 |
-
#: lib/wfu_constants.php:
|
331 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
332 |
msgstr "Caricamento fallito! Il file è stato caricato solo parzialmente."
|
333 |
|
334 |
-
#: lib/wfu_constants.php:
|
335 |
msgid "Upload failed! No file was uploaded."
|
336 |
msgstr "Caricamento fallito! Nessun file caricato."
|
337 |
|
338 |
-
#: lib/wfu_constants.php:
|
339 |
msgid "Upload failed! Failed to write file to disk."
|
340 |
msgstr "Caricamento fallito! Scrittura sul disco fallita."
|
341 |
|
342 |
-
#: lib/wfu_constants.php:
|
343 |
msgid ""
|
344 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
345 |
"administrator."
|
@@ -347,11 +353,11 @@ msgstr ""
|
|
347 |
"Caricamento fallito! E' stato generato un erroe nello spostamento del file "
|
348 |
"temporaneo. Cortesemente contatta l'amministratore di sistema."
|
349 |
|
350 |
-
#: lib/wfu_constants.php:
|
351 |
msgid "Upload cancelled!"
|
352 |
msgstr "Caricamento cancellato! "
|
353 |
|
354 |
-
#: lib/wfu_constants.php:
|
355 |
msgid ""
|
356 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
357 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -362,21 +368,21 @@ msgstr ""
|
|
362 |
"causato questa interruzione; esaminare la lista delle estensioni caricate "
|
363 |
"con phpinfo() potrebbe essere d'aiuto."
|
364 |
|
365 |
-
#: lib/wfu_constants.php:
|
366 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
367 |
msgstr ""
|
368 |
"Caricamento fallito! Un errore è stato generato durante il caricamento del "
|
369 |
"file."
|
370 |
|
371 |
-
#: lib/wfu_constants.php:
|
372 |
msgid "Upload failed!"
|
373 |
msgstr "Caricamento fallito! "
|
374 |
|
375 |
-
#: lib/wfu_constants.php:
|
376 |
msgid "No file!"
|
377 |
msgstr "Nessun file!"
|
378 |
|
379 |
-
#: lib/wfu_constants.php:
|
380 |
msgid ""
|
381 |
"Upload failed! The upload has been canceled by the user or the browser "
|
382 |
"dropped the connection."
|
@@ -384,27 +390,27 @@ msgstr ""
|
|
384 |
"Caricamento fallito! Il caricamento è stato interrotto dall'utente o il "
|
385 |
"browser ha interrotto la connessione."
|
386 |
|
387 |
-
#: lib/wfu_constants.php:
|
388 |
msgid "Upload failed! Unknown error."
|
389 |
msgstr "Caricamento fallito! Errore sconosciuto."
|
390 |
|
391 |
-
#: lib/wfu_constants.php:
|
392 |
msgid "Please contact the administrator."
|
393 |
msgstr "Cortesemente contatta l'amministratore."
|
394 |
|
395 |
-
#: lib/wfu_constants.php:
|
396 |
msgid "No result from remote server!"
|
397 |
msgstr "Nessuna risposta dal server remoto!"
|
398 |
|
399 |
-
#: lib/wfu_constants.php:
|
400 |
msgid " but with warnings"
|
401 |
msgstr "ma con avvertimenti"
|
402 |
|
403 |
-
#: lib/wfu_constants.php:
|
404 |
msgid "Warning: JSON parse error."
|
405 |
msgstr "Attenzione: errore durante l'analisi del JSON"
|
406 |
|
407 |
-
#: lib/wfu_constants.php:
|
408 |
msgid ""
|
409 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
410 |
"not be parsed."
|
@@ -412,20 +418,20 @@ msgstr ""
|
|
412 |
"I parametri di caricamento di questo file, passati come stringa JSON "
|
413 |
"all'handler, non sono analizzabili."
|
414 |
|
415 |
-
#: lib/wfu_constants.php:
|
416 |
msgid ""
|
417 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
418 |
msgstr ""
|
419 |
"UploadStates, passato come stringa JSON all'handler, non sono analizzabili."
|
420 |
|
421 |
-
#: lib/wfu_constants.php:
|
422 |
msgid ""
|
423 |
"Redirection to classic form functionality occurred due to unknown error."
|
424 |
msgstr ""
|
425 |
"Reindirizzamento alle funzionalità classiche del form per un errore "
|
426 |
"sconosciuto."
|
427 |
|
428 |
-
#: lib/wfu_constants.php:
|
429 |
msgid ""
|
430 |
"Redirection to classic form functionality occurred because AJAX is not "
|
431 |
"supported."
|
@@ -433,7 +439,7 @@ msgstr ""
|
|
433 |
"Reindirizzamento alle funzionalità classiche del form perchè AJAX non è "
|
434 |
"supportato."
|
435 |
|
436 |
-
#: lib/wfu_constants.php:
|
437 |
msgid ""
|
438 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
439 |
"supported."
|
@@ -441,57 +447,57 @@ msgstr ""
|
|
441 |
"Reindirizzamento alle funzionalità classiche del form percheè HTML5 non è "
|
442 |
"supportato."
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid ""
|
446 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
447 |
msgstr "Reindirizzamento alle funzionalità classiche del form "
|
448 |
|
449 |
-
#: lib/wfu_constants.php:
|
450 |
msgid "Please enable popup windows from the browser's settings!"
|
451 |
msgstr ""
|
452 |
"Cortesemente abilita le finestre popup dalle impostazioni del tuo browser!"
|
453 |
|
454 |
-
#: lib/wfu_constants.php:
|
455 |
msgid "cannot be empty!"
|
456 |
msgstr "non può essere vuoto!"
|
457 |
|
458 |
-
#: lib/wfu_constants.php:
|
459 |
msgid "number not valid!"
|
460 |
msgstr "numero non valido!"
|
461 |
|
462 |
-
#: lib/wfu_constants.php:
|
463 |
msgid "email not valid!"
|
464 |
msgstr "email non valida!"
|
465 |
|
466 |
-
#: lib/wfu_constants.php:
|
467 |
msgid "emails do not match!"
|
468 |
msgstr "gli indirizzi email non combaciano!"
|
469 |
|
470 |
-
#: lib/wfu_constants.php:
|
471 |
msgid "no base email field in group!"
|
472 |
msgstr "nessun campo email nel gruppo!"
|
473 |
|
474 |
-
#: lib/wfu_constants.php:
|
475 |
msgid "passwords do not match!"
|
476 |
msgstr "le password non combaciano!"
|
477 |
|
478 |
-
#: lib/wfu_constants.php:
|
479 |
msgid "no base password field in group!"
|
480 |
msgstr "nessun campo base per la password nel gruppo!"
|
481 |
|
482 |
-
#: lib/wfu_constants.php:
|
483 |
msgid "checkbox unchecked!"
|
484 |
msgstr "casella di controllo non spuntata!"
|
485 |
|
486 |
-
#: lib/wfu_constants.php:
|
487 |
msgid "no option selected!"
|
488 |
msgstr "nessuna opzione selezionata!"
|
489 |
|
490 |
-
#: lib/wfu_constants.php:
|
491 |
msgid "no item selected!"
|
492 |
msgstr "nessun oggetto selezionato!"
|
493 |
|
494 |
-
#: lib/wfu_constants.php:
|
495 |
msgid ""
|
496 |
"There are more than one instances of the plugin in this page with the same "
|
497 |
"id. Please change it."
|
@@ -499,7 +505,7 @@ msgstr ""
|
|
499 |
"Ci sono più istanze di questo plugin su questa pagina con lo stesso id. "
|
500 |
"Cambia l'id, grazie."
|
501 |
|
502 |
-
#: lib/wfu_constants.php:
|
503 |
msgid ""
|
504 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
505 |
"the page."
|
@@ -507,19 +513,19 @@ msgstr ""
|
|
507 |
"Non posso modificare il codice breve perchè la pagina è stata modificata. "
|
508 |
"Ricarica la pagina, grazie."
|
509 |
|
510 |
-
#: lib/wfu_constants.php:
|
511 |
msgid "Your browser does not support webcam capture!"
|
512 |
msgstr "Il tuo browser non supporta il flusso da webcam!"
|
513 |
|
514 |
-
#: lib/wfu_constants.php:
|
515 |
msgid "Your browser does not support video recording from the webcam!"
|
516 |
msgstr "Il tuo browser non supporta la registrazione dei video dalla webcam!"
|
517 |
|
518 |
-
#: lib/wfu_constants.php:
|
519 |
msgid "No video was recorded!"
|
520 |
msgstr "Nessun video registrato!"
|
521 |
|
522 |
-
#: lib/wfu_constants.php:
|
523 |
msgid ""
|
524 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
525 |
"or use RecaptchaV2 (no account)."
|
@@ -527,7 +533,7 @@ msgstr ""
|
|
527 |
"ERRORE: Captcha non supportato! Hai una versione di PHP vecchia. Aggiornata "
|
528 |
"PHP o use RecaptchaV2 (no account)."
|
529 |
|
530 |
-
#: lib/wfu_constants.php:
|
531 |
msgid ""
|
532 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
533 |
"notify administrator."
|
@@ -535,7 +541,7 @@ msgstr ""
|
|
535 |
"ERRORE: Solo un'istanza di RecaptchaV1 può esistere su una pagina. "
|
536 |
"Cortesemente avvisa l'amministratore."
|
537 |
|
538 |
-
#: lib/wfu_constants.php:
|
539 |
msgid ""
|
540 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
541 |
"use RecaptchaV1 (no account)."
|
@@ -543,11 +549,11 @@ msgstr ""
|
|
543 |
"ERRORE: Solo un'istanza di RecaptchaV1 può esistere su una pagina. "
|
544 |
"Cortesemente usa RecaptchaV1 (no account)."
|
545 |
|
546 |
-
#: lib/wfu_constants.php:
|
547 |
msgid "ERROR: No site key. Please contact administrator!"
|
548 |
msgstr "ERRORE: nessuna chiave sito. Cortesemente contatta l'amministratore!"
|
549 |
|
550 |
-
#: lib/wfu_constants.php:
|
551 |
msgid ""
|
552 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
553 |
"define Google Recaptcha keys."
|
@@ -555,126 +561,126 @@ msgstr ""
|
|
555 |
"ERRORE: nessuna chiave sito è stata definita. Cortesemente definisci le "
|
556 |
"chiavi di Google Recaptcha nelle impostazioni del plugin, nella Dashboard."
|
557 |
|
558 |
-
#: lib/wfu_constants.php:
|
559 |
msgid "Bad captcha image!"
|
560 |
msgstr "Immagine captcha sbagliata!"
|
561 |
|
562 |
-
#: lib/wfu_constants.php:
|
563 |
msgid "No input!"
|
564 |
msgstr "Nessun input!"
|
565 |
|
566 |
-
#: lib/wfu_constants.php:
|
567 |
msgid "Captcha not completed!"
|
568 |
msgstr "Captcha non completato!"
|
569 |
|
570 |
-
#: lib/wfu_constants.php:
|
571 |
msgid "Wrong captcha!"
|
572 |
msgstr "Captcha sbagliato!"
|
573 |
|
574 |
-
#: lib/wfu_constants.php:
|
575 |
msgid "Error refreshing captcha!"
|
576 |
msgstr "Errore nel ricaricamento del captcha!"
|
577 |
|
578 |
-
#: lib/wfu_constants.php:
|
579 |
msgid "Unknown captcha error!"
|
580 |
msgstr "Errore captcha sconosciuto!"
|
581 |
|
582 |
-
#: lib/wfu_constants.php:
|
583 |
msgid "Captcha not supported by your browser!"
|
584 |
msgstr "Captcha non supportato dal tuo browser!"
|
585 |
|
586 |
-
#: lib/wfu_constants.php:
|
587 |
msgid "the secret parameter is missing"
|
588 |
msgstr "manca il parametro segreto"
|
589 |
|
590 |
-
#: lib/wfu_constants.php:
|
591 |
msgid "the secret parameter is invalid or malformed"
|
592 |
msgstr "il parametro segreto non è valido o è malformato"
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid "the response parameter is missing"
|
596 |
msgstr "manca il parametro di risposta"
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "the response parameter is invalid or malformed"
|
600 |
msgstr "il paramentro di risposta manca o è malformato"
|
601 |
|
602 |
-
#: lib/wfu_constants.php:
|
603 |
msgid "Please do not use drag drop due to an internal problem."
|
604 |
msgstr ""
|
605 |
"Cortesemente non usare il trascinamento, è presente un problema interno."
|
606 |
|
607 |
-
#: lib/wfu_constants.php:
|
608 |
#, php-format
|
609 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
610 |
msgstr ""
|
611 |
"Erroe durante il caricamento a blocchi. Un blocco vuoto con ID unico è %d"
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
msgid "Chunked upload is not allowed!"
|
615 |
msgstr "Il caricamento a blocchi non è consentito!"
|
616 |
|
617 |
-
#: lib/wfu_constants.php:
|
618 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
619 |
msgstr "Caricamento a blocchi interrotto per un errore nel blocco precedente!"
|
620 |
|
621 |
-
#: lib/wfu_constants.php:
|
622 |
msgid "Chunked upload failed, final file could not be created!"
|
623 |
msgstr "Caricamento a blocchi fallito, il file finale non può essere creato!"
|
624 |
|
625 |
-
#: lib/wfu_constants.php:
|
626 |
#, php-format
|
627 |
msgid "Could not write file chuck to destination on chunk %d"
|
628 |
msgstr ""
|
629 |
"Non riesco a scrivere il blocco del file nella destinazione nel blocco %d"
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
#, php-format
|
633 |
msgid "Could not enlarge destination file on chunk %d"
|
634 |
msgstr "Non posso allargare il file di destinazione nel blocco %d"
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
#, php-format
|
638 |
msgid "Could not open file handles on chunk %d"
|
639 |
msgstr "Non riesco ad a maneggiare i file nel chunk %d"
|
640 |
|
641 |
-
#: lib/wfu_constants.php:
|
642 |
msgid "You are not allowed to download this file!"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: lib/wfu_constants.php:
|
646 |
msgid "File does not exist!"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: lib/wfu_constants.php:
|
650 |
msgid "Could not download file!"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid "You are not allowed to delete this file!"
|
655 |
msgstr "Non hai il permesso di cancellare questo file!"
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid "File was not deleted!"
|
659 |
msgstr "Il file non è stato cancellato!"
|
660 |
|
661 |
-
#: lib/wfu_constants.php:
|
662 |
msgid "No file was deleted!"
|
663 |
msgstr "Nessun file cancellato!"
|
664 |
|
665 |
-
#: lib/wfu_constants.php:
|
666 |
msgid "Some files were not deleted!"
|
667 |
msgstr "Alcuni file non sono stati cancellati!"
|
668 |
|
669 |
-
#: lib/wfu_constants.php:
|
670 |
msgid "Upload skipped! File already exists."
|
671 |
msgstr "Caricamento saltato! Il file esiste già."
|
672 |
|
673 |
-
#: lib/wfu_constants.php:
|
674 |
msgid "The extension of the file does not match its contents."
|
675 |
msgstr "L'estensione del file non corrisponde al contenuto del file."
|
676 |
|
677 |
-
#: lib/wfu_constants.php:
|
678 |
msgid ""
|
679 |
"Upload succeeded but the file is suspicious because its contents do not "
|
680 |
"match its extension. Its proper filename is: "
|
@@ -683,24 +689,24 @@ msgstr ""
|
|
683 |
"non corrisponde alla sua estensione. Il nome del file corretto dovrebbe "
|
684 |
"essere: "
|
685 |
|
686 |
-
#: lib/wfu_constants.php:
|
687 |
msgid "No files have been selected!"
|
688 |
msgstr "Nessun file selezionato!"
|
689 |
|
690 |
-
#: lib/wfu_constants.php:
|
691 |
msgid "Please complete the consent question before continuing the upload!"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: lib/wfu_constants.php:
|
695 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
696 |
msgstr "WPFilebase Plugin non aggiornato perchè nessun file è stato caricato."
|
697 |
|
698 |
-
#: lib/wfu_constants.php:
|
699 |
msgid "Notification email was not sent because there were no files uploaded."
|
700 |
msgstr ""
|
701 |
"L'email di notifica non è stata inviata perchè nessun file è stato caricato."
|
702 |
|
703 |
-
#: lib/wfu_constants.php:
|
704 |
msgid ""
|
705 |
"Notification email was not sent because no recipients were defined. Please "
|
706 |
"check notifyrecipients attribute in the shortcode."
|
@@ -709,7 +715,7 @@ msgstr ""
|
|
709 |
"destinatario. Cortesemente controlla l'attributo notifyrecipients nei codici "
|
710 |
"brevi."
|
711 |
|
712 |
-
#: lib/wfu_constants.php:
|
713 |
msgid ""
|
714 |
"Notification email was not sent due to an error. Please check "
|
715 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -717,7 +723,7 @@ msgstr ""
|
|
717 |
"L'email di notifica non è stata inviata a causa di un errore. Cortesemente "
|
718 |
"controlla gli attributi notifyrecipients,notifysubject e notifymessage."
|
719 |
|
720 |
-
#: lib/wfu_constants.php:
|
721 |
msgid ""
|
722 |
"Redirection not executed because redirection link is empty. Please check "
|
723 |
"redirectlink attribute."
|
@@ -725,18 +731,18 @@ msgstr ""
|
|
725 |
"Reindirizzamento non avvenuto perchè il link di destinazione è vuoto. "
|
726 |
"Cortesemente controlla l'attributo redirectlink."
|
727 |
|
728 |
-
#: lib/wfu_constants.php:
|
729 |
msgid ""
|
730 |
"Redirection not executed because not all files were successfully uploaded."
|
731 |
msgstr ""
|
732 |
"Reindirizzamento non avvenuto perchè non tutti i file sono stati caricati "
|
733 |
"correttamente."
|
734 |
|
735 |
-
#: lib/wfu_constants.php:
|
736 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
737 |
msgstr "Possibile attacco Denial-Of-Service su {SITE}"
|
738 |
|
739 |
-
#: lib/wfu_constants.php:
|
740 |
msgid ""
|
741 |
"Hello admin\n"
|
742 |
"\n"
|
@@ -774,19 +780,19 @@ msgstr ""
|
|
774 |
"\n"
|
775 |
"Grazie"
|
776 |
|
777 |
-
#: lib/wfu_constants.php:
|
778 |
msgid ""
|
779 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
780 |
"details please contact info@iptanus.com."
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: lib/wfu_constants.php:
|
784 |
msgid ""
|
785 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
786 |
"plugin functions. Please read this :article: for resolution."
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: lib/wfu_constants.php:
|
790 |
msgid ""
|
791 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
792 |
"message persists, contact administrator."
|
@@ -794,7 +800,7 @@ msgstr ""
|
|
794 |
"Aggiuta del codice breve nella pagina/post fallita. Prova ancora. Se il "
|
795 |
"messaggio persiste contatta l'amministratore."
|
796 |
|
797 |
-
#: lib/wfu_constants.php:
|
798 |
msgid ""
|
799 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
800 |
"again to edit the shortcode."
|
@@ -802,7 +808,7 @@ msgstr ""
|
|
802 |
"Modifica del codice breve fallita perchè il contenuto della pagina è "
|
803 |
"cambiato. Prova a modificare ancora il codice breve."
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid ""
|
807 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
808 |
"again to delete it."
|
@@ -810,7 +816,7 @@ msgstr ""
|
|
810 |
"Eliminazione del codice breve fallita perchè il contenuto della pagina è "
|
811 |
"cambiato. Prova ad eliminare ancora il codice breve."
|
812 |
|
813 |
-
#: lib/wfu_constants.php:
|
814 |
msgid ""
|
815 |
"The page containing the shortcode has been modified and it is no longer "
|
816 |
"valid. Please go back to reload the shortcode."
|
@@ -818,7 +824,7 @@ msgstr ""
|
|
818 |
"La pagina contenente il codice breve è stata modificata e non è più valida. "
|
819 |
"Cortesemente torna indietro e ricarica il codice breve."
|
820 |
|
821 |
-
#: lib/wfu_constants.php:
|
822 |
msgid ""
|
823 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
824 |
"back to reload the shortcode."
|
@@ -826,7 +832,7 @@ msgstr ""
|
|
826 |
"Ricaricamento del codice breve fallita perchè il contenuto della pagina è "
|
827 |
"cambiato. Prova a ricaricare ancora il codice breve."
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid ""
|
831 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
832 |
"go back and reload the shortcode."
|
@@ -834,39 +840,39 @@ msgstr ""
|
|
834 |
"Ricaricamento del codice breve fallita. Prova ancora. Se il problema "
|
835 |
"persiste, prova a ricaricare ancora il codice breve."
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "This is a test message"
|
839 |
msgstr "Questo è un messaggio di prova"
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "This is a test administrator message"
|
843 |
msgstr "Questo è un messaggio di prova dell'amministratore"
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "File testfile 1 under test"
|
847 |
msgstr "File testfile1 in fase di test"
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "File testfile 1 message"
|
851 |
msgstr "File testfile 1 messaggio"
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid "File testfile 1 administrator message"
|
855 |
msgstr "File testfile 1 messaggio amministratore"
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "File testfile 2 under test"
|
859 |
msgstr "File testfile 2 in fase di test"
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "File testfile 2 message"
|
863 |
msgstr "File testfile 2 messaggio"
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "File testfile 2 administrator message"
|
867 |
msgstr "File testfile 2 messaggio amministratore"
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid ""
|
871 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
872 |
"current user."
|
@@ -874,7 +880,7 @@ msgstr ""
|
|
874 |
"Inserisci la variabile %userid% nel testo. Verrà sostituita dall'id "
|
875 |
"dell'utente corrente."
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid ""
|
879 |
"Insert variable %username% inside text. It will be replaced by the username "
|
880 |
"of the current user."
|
@@ -882,7 +888,7 @@ msgstr ""
|
|
882 |
"Inserisci la variabile %username% nel testo. Verrà sostituita dal nome "
|
883 |
"utente dell'utente corrente."
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid ""
|
887 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
888 |
"the current user."
|
@@ -890,7 +896,7 @@ msgstr ""
|
|
890 |
"Inserisci la variabile %useremail% nel testo. Verrà sostituita dall'email "
|
891 |
"dell'utente corrente."
|
892 |
|
893 |
-
#: lib/wfu_constants.php:
|
894 |
msgid ""
|
895 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
896 |
"of the uploaded file."
|
@@ -898,7 +904,7 @@ msgstr ""
|
|
898 |
"Inserisci la variabile %filename% nel testo. Verrà sostituita dal nome del "
|
899 |
"file caricato."
|
900 |
|
901 |
-
#: lib/wfu_constants.php:
|
902 |
msgid ""
|
903 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
904 |
"filepath of the uploaded file."
|
@@ -906,7 +912,7 @@ msgstr ""
|
|
906 |
"Inserisci la variabile %filepath% nel testo. Verrà sostituita dal percorso "
|
907 |
"completo del file caricato."
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid ""
|
911 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
912 |
"the website."
|
@@ -914,7 +920,7 @@ msgstr ""
|
|
914 |
"Inserisci la variabile %blogid% nel testo. Verrà sostituita dall'id "
|
915 |
"dell'articolo del sito."
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid ""
|
919 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
920 |
"current page."
|
@@ -922,7 +928,7 @@ msgstr ""
|
|
922 |
"Inserisci la variabile %pageid% nel testo. Verrà sostituita dall'id della "
|
923 |
"pagina corrente."
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid ""
|
927 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
928 |
"the current page."
|
@@ -930,7 +936,7 @@ msgstr ""
|
|
930 |
"Inserisci la variabile %pagetitle% nel testo. Verrà sostituita dall titolo "
|
931 |
"della pagina corrente."
|
932 |
|
933 |
-
#: lib/wfu_constants.php:
|
934 |
msgid ""
|
935 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
936 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -939,219 +945,236 @@ msgstr ""
|
|
939 |
"Inserisci la variabile %userdataXXX% nel testo. Scegli il campo utente dal "
|
940 |
"menu a tendina. Verrà sostituita dal valore inserito dalll'utente nel campo."
|
941 |
|
942 |
-
#: lib/wfu_constants.php:
|
943 |
msgid "Insert variable %n% inside text to denote a line change."
|
944 |
msgstr ""
|
945 |
"Inserisci la varibaile %n% nel testo per avere una nuova linea (newline)"
|
946 |
|
947 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
948 |
msgid "Test Mode"
|
949 |
msgstr "Modalità di test"
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid "select dir..."
|
953 |
msgstr "scegli cartella..."
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "type dir"
|
957 |
msgstr "digita cartella..."
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "Upload path: %filepath%"
|
961 |
msgstr "Percorso di caricamento: %filepath%"
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "Failed upload path: %filepath%"
|
965 |
msgstr "Fallimento nel percorso di caricamento: %filepath%"
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid " (required)"
|
969 |
msgstr " (richiesto)"
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
973 |
msgstr ""
|
974 |
"I file sono in fase di caricamento. Sei sicuro di volere uscire da questa "
|
975 |
"pagina?"
|
976 |
|
977 |
-
#: lib/wfu_constants.php:
|
978 |
msgid "checking captcha..."
|
979 |
msgstr "controllo il captcha..."
|
980 |
|
981 |
-
#: lib/wfu_constants.php:
|
982 |
msgid "refreshing..."
|
983 |
msgstr "aggiornamento..."
|
984 |
|
985 |
-
#: lib/wfu_constants.php:
|
986 |
msgid "correct captcha"
|
987 |
msgstr "captcha corretto"
|
988 |
|
989 |
-
#: lib/wfu_constants.php:
|
990 |
msgid "click to continue the upload"
|
991 |
msgstr "clicca per continuare il caricamento"
|
992 |
|
993 |
-
#: lib/wfu_constants.php:
|
994 |
msgid "Are you sure you want to delete this file?"
|
995 |
msgstr "Sei sicuro che vuoi cancellare questo file?"
|
996 |
|
997 |
-
#: lib/wfu_constants.php:
|
998 |
msgid "Are you sure you want to delete these files?"
|
999 |
msgstr "Sei sicuro che vuoi cancellare questi file?"
|
1000 |
|
1001 |
-
#: lib/wfu_constants.php:
|
1002 |
msgid "Bulk Actions"
|
1003 |
msgstr "Azioni in massa (bulk)"
|
1004 |
|
1005 |
-
#: lib/wfu_constants.php:
|
1006 |
msgid "Apply"
|
1007 |
msgstr "Applica"
|
1008 |
|
1009 |
-
#: lib/wfu_constants.php:
|
1010 |
msgid "of "
|
1011 |
msgstr "di "
|
1012 |
|
1013 |
-
#: lib/wfu_constants.php:
|
1014 |
msgid "Are you sure that you want to cancel the upload?"
|
1015 |
msgstr "Sei sicuro di voler cancellare il caricamento?"
|
1016 |
|
1017 |
-
#: lib/wfu_constants.php:
|
1018 |
msgid "cancel upload of this file"
|
1019 |
msgstr "cancella il caricamento di questo file"
|
1020 |
|
1021 |
-
#: lib/wfu_constants.php:
|
1022 |
msgid "Upload in progress"
|
1023 |
msgstr "Caricamento in corso"
|
1024 |
|
1025 |
-
#: lib/wfu_constants.php:
|
1026 |
msgid "Upload in progress with warnings!"
|
1027 |
msgstr "Caricamento in corso con avvertimenti!"
|
1028 |
|
1029 |
-
#: lib/wfu_constants.php:
|
1030 |
msgid "Upload in progress but some files already failed!"
|
1031 |
msgstr "Caricamento in corso ma alcuni file hanno già fallito!"
|
1032 |
|
1033 |
-
#: lib/wfu_constants.php:
|
1034 |
msgid "Upload in progress but no files uploaded so far!"
|
1035 |
msgstr "Caricamento in corso ma nessun file è stato caricato per ora!"
|
1036 |
|
1037 |
-
#: lib/wfu_constants.php:
|
1038 |
msgid "All files uploaded successfully"
|
1039 |
msgstr "Tutti i file sono stati caricati correttamente"
|
1040 |
|
1041 |
-
#: lib/wfu_constants.php:
|
1042 |
msgid "All files uploaded successfully but there are warnings!"
|
1043 |
msgstr ""
|
1044 |
"Tutti i file sono stati caricati correttamente ma ci sono degli avvertimenti"
|
1045 |
|
1046 |
-
#: lib/wfu_constants.php:
|
1047 |
msgid "File uploaded successfully but there are warnings!"
|
1048 |
msgstr "File caricato correttamente ma con degli avvertimenti!"
|
1049 |
|
1050 |
-
#: lib/wfu_constants.php:
|
1051 |
msgid "Some files failed to upload!"
|
1052 |
msgstr "Alcuni file non sono stati caricati!"
|
1053 |
|
1054 |
-
#: lib/wfu_constants.php:
|
1055 |
msgid "All files failed to upload"
|
1056 |
msgstr "Tutti i file hanno fallito il caricamento"
|
1057 |
|
1058 |
-
#: lib/wfu_constants.php:
|
1059 |
msgid "File failed to upload"
|
1060 |
msgstr "Il file ha fallito il caricamento"
|
1061 |
|
1062 |
-
#: lib/wfu_constants.php:
|
1063 |
msgid "There are no files to upload!"
|
1064 |
msgstr "Non ci sono file da caricare!"
|
1065 |
|
1066 |
-
#: lib/wfu_constants.php:
|
1067 |
msgid "Test upload message"
|
1068 |
msgstr "Prova il messaggio di caricamento"
|
1069 |
|
1070 |
-
#: lib/wfu_constants.php:
|
1071 |
msgid "JSON parse warning!"
|
1072 |
msgstr "Avvertimento nell'analisi del JSON!"
|
1073 |
|
1074 |
-
#: lib/wfu_constants.php:
|
1075 |
msgid "please wait while redirecting..."
|
1076 |
msgstr "Un attimo ancora, grazie..."
|
1077 |
|
1078 |
-
#: lib/wfu_constants.php:
|
1079 |
msgid "Submitting data"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: lib/wfu_constants.php:
|
1083 |
msgid "Data submitted successfully!"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: lib/wfu_constants.php:
|
1087 |
msgid "Data were not submitted!"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: lib/wfu_constants.php:
|
1091 |
msgid "Cancelling upload"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1095 |
msgid "Open visual shortcode editor in new window"
|
1096 |
msgstr "Apri l'editor visuale per i codici brevi in una nuova finestra"
|
1097 |
|
1098 |
-
#: lib/wfu_constants.php:
|
1099 |
msgid "loading visual editor"
|
1100 |
msgstr "Caricamento dell'editor visuale"
|
1101 |
|
1102 |
-
#: lib/wfu_constants.php:
|
1103 |
msgid "Clear file list?"
|
1104 |
msgstr "Pulire la lista dei file?"
|
1105 |
|
1106 |
-
#: lib/wfu_constants.php:
|
1107 |
msgid "DROP HERE"
|
1108 |
msgstr "TRASCINA QUI"
|
1109 |
|
1110 |
-
#: lib/wfu_constants.php:
|
1111 |
msgid "record video"
|
1112 |
msgstr "registra video"
|
1113 |
|
1114 |
-
#: lib/wfu_constants.php:
|
1115 |
msgid "take a picture"
|
1116 |
msgstr "scatta una foto"
|
1117 |
|
1118 |
-
#: lib/wfu_constants.php:
|
1119 |
msgid "turn webcam on/off"
|
1120 |
msgstr "accendi o spegni la webcam"
|
1121 |
|
1122 |
-
#: lib/wfu_constants.php:
|
1123 |
msgid "go live again"
|
1124 |
msgstr "torna in diretta"
|
1125 |
|
1126 |
-
#: lib/wfu_constants.php:
|
1127 |
msgid "end recording"
|
1128 |
msgstr "termina registrazione"
|
1129 |
|
1130 |
-
#: lib/wfu_constants.php:
|
1131 |
msgid "play"
|
1132 |
msgstr "riproduci"
|
1133 |
|
1134 |
-
#: lib/wfu_constants.php:
|
1135 |
msgid "pause"
|
1136 |
msgstr "pausa"
|
1137 |
|
1138 |
-
#: lib/wfu_constants.php:
|
1139 |
msgid "go to the beginning"
|
1140 |
msgstr "vai all'inizio"
|
1141 |
|
1142 |
-
#: lib/wfu_constants.php:
|
1143 |
msgid "go to the end"
|
1144 |
msgstr "vai alla fine"
|
1145 |
|
1146 |
-
#: lib/wfu_constants.php:
|
1147 |
msgid "Wordpress File Upload Form"
|
1148 |
msgstr "Wordpress File Upload Form"
|
1149 |
|
1150 |
-
#: lib/wfu_constants.php:
|
1151 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1152 |
msgstr "Wordpress File Upload plugin per barre laterali"
|
1153 |
|
1154 |
-
#: lib/wfu_constants.php:
|
1155 |
msgid "Upload Files"
|
1156 |
msgstr "Carica Files"
|
1157 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:40+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:40+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: it\n"
|
105 |
"By activating this option I agree to let the website keep my personal data"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: lib/wfu_constants.php:34
|
109 |
+
msgid ""
|
110 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
111 |
+
"continue!"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/wfu_constants.php:36
|
115 |
msgid "File"
|
116 |
msgstr "File"
|
117 |
|
118 |
+
#: lib/wfu_constants.php:37
|
119 |
msgid "Date"
|
120 |
msgstr "Data"
|
121 |
|
122 |
+
#: lib/wfu_constants.php:38
|
123 |
msgid "Size"
|
124 |
msgstr "Dimensione"
|
125 |
|
126 |
+
#: lib/wfu_constants.php:39
|
127 |
msgid "User"
|
128 |
msgstr "Utente"
|
129 |
|
130 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
131 |
msgid "Page"
|
132 |
msgstr "Pagina"
|
133 |
|
134 |
+
#: lib/wfu_constants.php:41
|
135 |
msgid "User Fields"
|
136 |
msgstr "Campi utente"
|
137 |
|
138 |
+
#: lib/wfu_constants.php:42
|
139 |
msgid "Download"
|
140 |
msgstr "Scarica"
|
141 |
|
142 |
+
#: lib/wfu_constants.php:43
|
143 |
msgid "Download this file"
|
144 |
msgstr "Scarica questo file"
|
145 |
|
146 |
+
#: lib/wfu_constants.php:44
|
147 |
msgid "Delete"
|
148 |
msgstr "Cancella"
|
149 |
|
150 |
+
#: lib/wfu_constants.php:45
|
151 |
msgid "Delete this file"
|
152 |
msgstr "Cancella questo file"
|
153 |
|
154 |
+
#: lib/wfu_constants.php:46
|
155 |
msgid "Sort list based on this column"
|
156 |
msgstr "Ordina la lista in base a questa colonna"
|
157 |
|
158 |
+
#: lib/wfu_constants.php:47
|
159 |
msgid "guest"
|
160 |
msgstr "ospite"
|
161 |
|
162 |
+
#: lib/wfu_constants.php:48
|
163 |
msgid "unknown"
|
164 |
msgstr "sconosciuto"
|
165 |
|
166 |
+
#: lib/wfu_constants.php:50
|
167 |
msgid ""
|
168 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
169 |
"attribute."
|
171 |
"Errore. Non riesco a trovare la destinazione e la cartella FTP. Controlla il "
|
172 |
"dominio nell'attributo 'ftpinfo'."
|
173 |
|
174 |
+
#: lib/wfu_constants.php:51
|
175 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
176 |
msgstr "Errore. Informazioni FTP non valide. Controlla l'attributo 'ftpinfo'."
|
177 |
|
178 |
+
#: lib/wfu_constants.php:52
|
179 |
msgid ""
|
180 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
181 |
"syntax."
|
183 |
"Errore. Non riesco ad estrarre le informazioni su FTP dall'attributo "
|
184 |
"'ftpinfo'. Controlla la sintassi."
|
185 |
|
186 |
+
#: lib/wfu_constants.php:53
|
187 |
msgid ""
|
188 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
189 |
"attribute."
|
191 |
"Errore. Non riesco a risolvere il nome della destinazione FTP. Controlla il "
|
192 |
"dominio nell'attributo 'ftpinfo'"
|
193 |
|
194 |
+
#: lib/wfu_constants.php:54
|
195 |
msgid ""
|
196 |
"Error. Could not open source file for ftp upload. Check if file is "
|
197 |
"accessible."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: lib/wfu_constants.php:55
|
201 |
msgid "Error. Could not send data to ftp target file."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: lib/wfu_constants.php:56
|
205 |
msgid ""
|
206 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
207 |
"attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: lib/wfu_constants.php:57
|
211 |
msgid ""
|
212 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
213 |
"'ftpinfo' attribute."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: lib/wfu_constants.php:58
|
217 |
msgid ""
|
218 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
219 |
"supports sftp."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: lib/wfu_constants.php:59
|
223 |
msgid "Error. The web server does not support sftp."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: lib/wfu_constants.php:60
|
227 |
msgid ""
|
228 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
229 |
"preventing the upload of big files.\n"
|
233 |
"direttiva PHP upload_max_filesize (php.ini)\n"
|
234 |
"La direttiva PHP upload_max_filesize è:"
|
235 |
|
236 |
+
#: lib/wfu_constants.php:61
|
237 |
msgid ""
|
238 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
239 |
"upload of big files.\n"
|
243 |
"impedito dalla direttiva PHP max_input_time (php.ini)\n"
|
244 |
"La direttiva PHP max_input_time è:"
|
245 |
|
246 |
+
#: lib/wfu_constants.php:62
|
247 |
msgid ""
|
248 |
"Error. Permission denied to write to target folder.\n"
|
249 |
"Check and correct read/write permissions of target folder."
|
252 |
"Controlla e correggi i permessi di lettura e scrittura della cartella di "
|
253 |
"destinazione."
|
254 |
|
255 |
+
#: lib/wfu_constants.php:63
|
256 |
msgid ""
|
257 |
"Error. This file was rejected because its extension is not correct. Its "
|
258 |
"proper filename is: "
|
260 |
"Errore. Questo file è stato rifiutato perchè l'estensione non è corretta. Il "
|
261 |
"nome del file giusto è: "
|
262 |
|
263 |
+
#: lib/wfu_constants.php:64
|
264 |
msgid ""
|
265 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
266 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
271 |
"rifiutato. Cortesemente controlla il log di caricamento dei file per "
|
272 |
"verificare comportamenti sospetti."
|
273 |
|
274 |
+
#: lib/wfu_constants.php:65
|
275 |
msgid ""
|
276 |
"File not uploaded in order to prevent overflow of the website. Please "
|
277 |
"contact administrator."
|
279 |
"File non caricato per evitare un sovraccarico del sito web. Cortesemenete "
|
280 |
"contatta l'amministratore."
|
281 |
|
282 |
+
#: lib/wfu_constants.php:66
|
283 |
msgid "Target folder doesn't exist."
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: lib/wfu_constants.php:67
|
287 |
msgid "Upload failed! Missing a temporary folder."
|
288 |
msgstr "Caricamento fallito! Non trovo la cartella temporanea."
|
289 |
|
290 |
+
#: lib/wfu_constants.php:68
|
291 |
msgid "Upload failed! Permission denied to write to target folder."
|
292 |
msgstr ""
|
293 |
"Caricamento fallito! Permesso di scrittura negato nella cartella di "
|
294 |
"destinazione."
|
295 |
|
296 |
+
#: lib/wfu_constants.php:69
|
297 |
msgid "File not allowed."
|
298 |
msgstr "File non consentito."
|
299 |
|
300 |
+
#: lib/wfu_constants.php:70
|
301 |
msgid "File is suspicious and was rejected."
|
302 |
msgstr "Il file è sospetto ed è stato rifiutato."
|
303 |
|
304 |
+
#: lib/wfu_constants.php:71
|
305 |
msgid "The uploaded file exceeds the file size limit."
|
306 |
msgstr "Il file caricato supera il limite di dimensione dei file."
|
307 |
|
308 |
+
#: lib/wfu_constants.php:72
|
309 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
310 |
msgstr "Il file caricato supera i 2GB e non è supportato da questo server."
|
311 |
|
312 |
+
#: lib/wfu_constants.php:73
|
313 |
msgid ""
|
314 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
315 |
"Please contact the administrator."
|
317 |
"Caricamento fallito! Il file caricato supera il limite di dimensione dei "
|
318 |
"file del server. Cortesemente contatta l'amministratore."
|
319 |
|
320 |
+
#: lib/wfu_constants.php:74
|
321 |
msgid ""
|
322 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
323 |
"server. Please contact the administrator."
|
325 |
"Caricamento fallito! La durata del caricamento ha superato il limite "
|
326 |
"temporale del server. Cortesemente contatta l'amministratore."
|
327 |
|
328 |
+
#: lib/wfu_constants.php:75
|
329 |
msgid ""
|
330 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
331 |
"was specified in the HTML form."
|
333 |
"Caricamento fallito! Il file caricato supera la direttiva MAX_FILE_SIZE che "
|
334 |
"è stata specificata nel form HTML."
|
335 |
|
336 |
+
#: lib/wfu_constants.php:76
|
337 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
338 |
msgstr "Caricamento fallito! Il file è stato caricato solo parzialmente."
|
339 |
|
340 |
+
#: lib/wfu_constants.php:77
|
341 |
msgid "Upload failed! No file was uploaded."
|
342 |
msgstr "Caricamento fallito! Nessun file caricato."
|
343 |
|
344 |
+
#: lib/wfu_constants.php:78
|
345 |
msgid "Upload failed! Failed to write file to disk."
|
346 |
msgstr "Caricamento fallito! Scrittura sul disco fallita."
|
347 |
|
348 |
+
#: lib/wfu_constants.php:79
|
349 |
msgid ""
|
350 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
351 |
"administrator."
|
353 |
"Caricamento fallito! E' stato generato un erroe nello spostamento del file "
|
354 |
"temporaneo. Cortesemente contatta l'amministratore di sistema."
|
355 |
|
356 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
357 |
msgid "Upload cancelled!"
|
358 |
msgstr "Caricamento cancellato! "
|
359 |
|
360 |
+
#: lib/wfu_constants.php:81
|
361 |
msgid ""
|
362 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
363 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
368 |
"causato questa interruzione; esaminare la lista delle estensioni caricate "
|
369 |
"con phpinfo() potrebbe essere d'aiuto."
|
370 |
|
371 |
+
#: lib/wfu_constants.php:82
|
372 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
373 |
msgstr ""
|
374 |
"Caricamento fallito! Un errore è stato generato durante il caricamento del "
|
375 |
"file."
|
376 |
|
377 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
378 |
msgid "Upload failed!"
|
379 |
msgstr "Caricamento fallito! "
|
380 |
|
381 |
+
#: lib/wfu_constants.php:84
|
382 |
msgid "No file!"
|
383 |
msgstr "Nessun file!"
|
384 |
|
385 |
+
#: lib/wfu_constants.php:85
|
386 |
msgid ""
|
387 |
"Upload failed! The upload has been canceled by the user or the browser "
|
388 |
"dropped the connection."
|
390 |
"Caricamento fallito! Il caricamento è stato interrotto dall'utente o il "
|
391 |
"browser ha interrotto la connessione."
|
392 |
|
393 |
+
#: lib/wfu_constants.php:86
|
394 |
msgid "Upload failed! Unknown error."
|
395 |
msgstr "Caricamento fallito! Errore sconosciuto."
|
396 |
|
397 |
+
#: lib/wfu_constants.php:87
|
398 |
msgid "Please contact the administrator."
|
399 |
msgstr "Cortesemente contatta l'amministratore."
|
400 |
|
401 |
+
#: lib/wfu_constants.php:88
|
402 |
msgid "No result from remote server!"
|
403 |
msgstr "Nessuna risposta dal server remoto!"
|
404 |
|
405 |
+
#: lib/wfu_constants.php:89
|
406 |
msgid " but with warnings"
|
407 |
msgstr "ma con avvertimenti"
|
408 |
|
409 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
410 |
msgid "Warning: JSON parse error."
|
411 |
msgstr "Attenzione: errore durante l'analisi del JSON"
|
412 |
|
413 |
+
#: lib/wfu_constants.php:91
|
414 |
msgid ""
|
415 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
416 |
"not be parsed."
|
418 |
"I parametri di caricamento di questo file, passati come stringa JSON "
|
419 |
"all'handler, non sono analizzabili."
|
420 |
|
421 |
+
#: lib/wfu_constants.php:93
|
422 |
msgid ""
|
423 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
424 |
msgstr ""
|
425 |
"UploadStates, passato come stringa JSON all'handler, non sono analizzabili."
|
426 |
|
427 |
+
#: lib/wfu_constants.php:94
|
428 |
msgid ""
|
429 |
"Redirection to classic form functionality occurred due to unknown error."
|
430 |
msgstr ""
|
431 |
"Reindirizzamento alle funzionalità classiche del form per un errore "
|
432 |
"sconosciuto."
|
433 |
|
434 |
+
#: lib/wfu_constants.php:95
|
435 |
msgid ""
|
436 |
"Redirection to classic form functionality occurred because AJAX is not "
|
437 |
"supported."
|
439 |
"Reindirizzamento alle funzionalità classiche del form perchè AJAX non è "
|
440 |
"supportato."
|
441 |
|
442 |
+
#: lib/wfu_constants.php:96
|
443 |
msgid ""
|
444 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
445 |
"supported."
|
447 |
"Reindirizzamento alle funzionalità classiche del form percheè HTML5 non è "
|
448 |
"supportato."
|
449 |
|
450 |
+
#: lib/wfu_constants.php:97
|
451 |
msgid ""
|
452 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
453 |
msgstr "Reindirizzamento alle funzionalità classiche del form "
|
454 |
|
455 |
+
#: lib/wfu_constants.php:98
|
456 |
msgid "Please enable popup windows from the browser's settings!"
|
457 |
msgstr ""
|
458 |
"Cortesemente abilita le finestre popup dalle impostazioni del tuo browser!"
|
459 |
|
460 |
+
#: lib/wfu_constants.php:99
|
461 |
msgid "cannot be empty!"
|
462 |
msgstr "non può essere vuoto!"
|
463 |
|
464 |
+
#: lib/wfu_constants.php:100
|
465 |
msgid "number not valid!"
|
466 |
msgstr "numero non valido!"
|
467 |
|
468 |
+
#: lib/wfu_constants.php:101
|
469 |
msgid "email not valid!"
|
470 |
msgstr "email non valida!"
|
471 |
|
472 |
+
#: lib/wfu_constants.php:102
|
473 |
msgid "emails do not match!"
|
474 |
msgstr "gli indirizzi email non combaciano!"
|
475 |
|
476 |
+
#: lib/wfu_constants.php:103
|
477 |
msgid "no base email field in group!"
|
478 |
msgstr "nessun campo email nel gruppo!"
|
479 |
|
480 |
+
#: lib/wfu_constants.php:104
|
481 |
msgid "passwords do not match!"
|
482 |
msgstr "le password non combaciano!"
|
483 |
|
484 |
+
#: lib/wfu_constants.php:105
|
485 |
msgid "no base password field in group!"
|
486 |
msgstr "nessun campo base per la password nel gruppo!"
|
487 |
|
488 |
+
#: lib/wfu_constants.php:106
|
489 |
msgid "checkbox unchecked!"
|
490 |
msgstr "casella di controllo non spuntata!"
|
491 |
|
492 |
+
#: lib/wfu_constants.php:107
|
493 |
msgid "no option selected!"
|
494 |
msgstr "nessuna opzione selezionata!"
|
495 |
|
496 |
+
#: lib/wfu_constants.php:108
|
497 |
msgid "no item selected!"
|
498 |
msgstr "nessun oggetto selezionato!"
|
499 |
|
500 |
+
#: lib/wfu_constants.php:109
|
501 |
msgid ""
|
502 |
"There are more than one instances of the plugin in this page with the same "
|
503 |
"id. Please change it."
|
505 |
"Ci sono più istanze di questo plugin su questa pagina con lo stesso id. "
|
506 |
"Cambia l'id, grazie."
|
507 |
|
508 |
+
#: lib/wfu_constants.php:110
|
509 |
msgid ""
|
510 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
511 |
"the page."
|
513 |
"Non posso modificare il codice breve perchè la pagina è stata modificata. "
|
514 |
"Ricarica la pagina, grazie."
|
515 |
|
516 |
+
#: lib/wfu_constants.php:111
|
517 |
msgid "Your browser does not support webcam capture!"
|
518 |
msgstr "Il tuo browser non supporta il flusso da webcam!"
|
519 |
|
520 |
+
#: lib/wfu_constants.php:112
|
521 |
msgid "Your browser does not support video recording from the webcam!"
|
522 |
msgstr "Il tuo browser non supporta la registrazione dei video dalla webcam!"
|
523 |
|
524 |
+
#: lib/wfu_constants.php:113
|
525 |
msgid "No video was recorded!"
|
526 |
msgstr "Nessun video registrato!"
|
527 |
|
528 |
+
#: lib/wfu_constants.php:114
|
529 |
msgid ""
|
530 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
531 |
"or use RecaptchaV2 (no account)."
|
533 |
"ERRORE: Captcha non supportato! Hai una versione di PHP vecchia. Aggiornata "
|
534 |
"PHP o use RecaptchaV2 (no account)."
|
535 |
|
536 |
+
#: lib/wfu_constants.php:115
|
537 |
msgid ""
|
538 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
539 |
"notify administrator."
|
541 |
"ERRORE: Solo un'istanza di RecaptchaV1 può esistere su una pagina. "
|
542 |
"Cortesemente avvisa l'amministratore."
|
543 |
|
544 |
+
#: lib/wfu_constants.php:116
|
545 |
msgid ""
|
546 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
547 |
"use RecaptchaV1 (no account)."
|
549 |
"ERRORE: Solo un'istanza di RecaptchaV1 può esistere su una pagina. "
|
550 |
"Cortesemente usa RecaptchaV1 (no account)."
|
551 |
|
552 |
+
#: lib/wfu_constants.php:117
|
553 |
msgid "ERROR: No site key. Please contact administrator!"
|
554 |
msgstr "ERRORE: nessuna chiave sito. Cortesemente contatta l'amministratore!"
|
555 |
|
556 |
+
#: lib/wfu_constants.php:118
|
557 |
msgid ""
|
558 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
559 |
"define Google Recaptcha keys."
|
561 |
"ERRORE: nessuna chiave sito è stata definita. Cortesemente definisci le "
|
562 |
"chiavi di Google Recaptcha nelle impostazioni del plugin, nella Dashboard."
|
563 |
|
564 |
+
#: lib/wfu_constants.php:119
|
565 |
msgid "Bad captcha image!"
|
566 |
msgstr "Immagine captcha sbagliata!"
|
567 |
|
568 |
+
#: lib/wfu_constants.php:120
|
569 |
msgid "No input!"
|
570 |
msgstr "Nessun input!"
|
571 |
|
572 |
+
#: lib/wfu_constants.php:121
|
573 |
msgid "Captcha not completed!"
|
574 |
msgstr "Captcha non completato!"
|
575 |
|
576 |
+
#: lib/wfu_constants.php:122
|
577 |
msgid "Wrong captcha!"
|
578 |
msgstr "Captcha sbagliato!"
|
579 |
|
580 |
+
#: lib/wfu_constants.php:123
|
581 |
msgid "Error refreshing captcha!"
|
582 |
msgstr "Errore nel ricaricamento del captcha!"
|
583 |
|
584 |
+
#: lib/wfu_constants.php:124
|
585 |
msgid "Unknown captcha error!"
|
586 |
msgstr "Errore captcha sconosciuto!"
|
587 |
|
588 |
+
#: lib/wfu_constants.php:125
|
589 |
msgid "Captcha not supported by your browser!"
|
590 |
msgstr "Captcha non supportato dal tuo browser!"
|
591 |
|
592 |
+
#: lib/wfu_constants.php:126
|
593 |
msgid "the secret parameter is missing"
|
594 |
msgstr "manca il parametro segreto"
|
595 |
|
596 |
+
#: lib/wfu_constants.php:127
|
597 |
msgid "the secret parameter is invalid or malformed"
|
598 |
msgstr "il parametro segreto non è valido o è malformato"
|
599 |
|
600 |
+
#: lib/wfu_constants.php:128
|
601 |
msgid "the response parameter is missing"
|
602 |
msgstr "manca il parametro di risposta"
|
603 |
|
604 |
+
#: lib/wfu_constants.php:129
|
605 |
msgid "the response parameter is invalid or malformed"
|
606 |
msgstr "il paramentro di risposta manca o è malformato"
|
607 |
|
608 |
+
#: lib/wfu_constants.php:130
|
609 |
msgid "Please do not use drag drop due to an internal problem."
|
610 |
msgstr ""
|
611 |
"Cortesemente non usare il trascinamento, è presente un problema interno."
|
612 |
|
613 |
+
#: lib/wfu_constants.php:131
|
614 |
#, php-format
|
615 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
616 |
msgstr ""
|
617 |
"Erroe durante il caricamento a blocchi. Un blocco vuoto con ID unico è %d"
|
618 |
|
619 |
+
#: lib/wfu_constants.php:132
|
620 |
msgid "Chunked upload is not allowed!"
|
621 |
msgstr "Il caricamento a blocchi non è consentito!"
|
622 |
|
623 |
+
#: lib/wfu_constants.php:133
|
624 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
625 |
msgstr "Caricamento a blocchi interrotto per un errore nel blocco precedente!"
|
626 |
|
627 |
+
#: lib/wfu_constants.php:134
|
628 |
msgid "Chunked upload failed, final file could not be created!"
|
629 |
msgstr "Caricamento a blocchi fallito, il file finale non può essere creato!"
|
630 |
|
631 |
+
#: lib/wfu_constants.php:135
|
632 |
#, php-format
|
633 |
msgid "Could not write file chuck to destination on chunk %d"
|
634 |
msgstr ""
|
635 |
"Non riesco a scrivere il blocco del file nella destinazione nel blocco %d"
|
636 |
|
637 |
+
#: lib/wfu_constants.php:136
|
638 |
#, php-format
|
639 |
msgid "Could not enlarge destination file on chunk %d"
|
640 |
msgstr "Non posso allargare il file di destinazione nel blocco %d"
|
641 |
|
642 |
+
#: lib/wfu_constants.php:137
|
643 |
#, php-format
|
644 |
msgid "Could not open file handles on chunk %d"
|
645 |
msgstr "Non riesco ad a maneggiare i file nel chunk %d"
|
646 |
|
647 |
+
#: lib/wfu_constants.php:138
|
648 |
msgid "You are not allowed to download this file!"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: lib/wfu_constants.php:139
|
652 |
msgid "File does not exist!"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: lib/wfu_constants.php:140
|
656 |
msgid "Could not download file!"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/wfu_constants.php:141
|
660 |
msgid "You are not allowed to delete this file!"
|
661 |
msgstr "Non hai il permesso di cancellare questo file!"
|
662 |
|
663 |
+
#: lib/wfu_constants.php:142
|
664 |
msgid "File was not deleted!"
|
665 |
msgstr "Il file non è stato cancellato!"
|
666 |
|
667 |
+
#: lib/wfu_constants.php:143
|
668 |
msgid "No file was deleted!"
|
669 |
msgstr "Nessun file cancellato!"
|
670 |
|
671 |
+
#: lib/wfu_constants.php:144
|
672 |
msgid "Some files were not deleted!"
|
673 |
msgstr "Alcuni file non sono stati cancellati!"
|
674 |
|
675 |
+
#: lib/wfu_constants.php:146
|
676 |
msgid "Upload skipped! File already exists."
|
677 |
msgstr "Caricamento saltato! Il file esiste già."
|
678 |
|
679 |
+
#: lib/wfu_constants.php:147
|
680 |
msgid "The extension of the file does not match its contents."
|
681 |
msgstr "L'estensione del file non corrisponde al contenuto del file."
|
682 |
|
683 |
+
#: lib/wfu_constants.php:148
|
684 |
msgid ""
|
685 |
"Upload succeeded but the file is suspicious because its contents do not "
|
686 |
"match its extension. Its proper filename is: "
|
689 |
"non corrisponde alla sua estensione. Il nome del file corretto dovrebbe "
|
690 |
"essere: "
|
691 |
|
692 |
+
#: lib/wfu_constants.php:149
|
693 |
msgid "No files have been selected!"
|
694 |
msgstr "Nessun file selezionato!"
|
695 |
|
696 |
+
#: lib/wfu_constants.php:150
|
697 |
msgid "Please complete the consent question before continuing the upload!"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: lib/wfu_constants.php:151
|
701 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
702 |
msgstr "WPFilebase Plugin non aggiornato perchè nessun file è stato caricato."
|
703 |
|
704 |
+
#: lib/wfu_constants.php:152
|
705 |
msgid "Notification email was not sent because there were no files uploaded."
|
706 |
msgstr ""
|
707 |
"L'email di notifica non è stata inviata perchè nessun file è stato caricato."
|
708 |
|
709 |
+
#: lib/wfu_constants.php:153
|
710 |
msgid ""
|
711 |
"Notification email was not sent because no recipients were defined. Please "
|
712 |
"check notifyrecipients attribute in the shortcode."
|
715 |
"destinatario. Cortesemente controlla l'attributo notifyrecipients nei codici "
|
716 |
"brevi."
|
717 |
|
718 |
+
#: lib/wfu_constants.php:154
|
719 |
msgid ""
|
720 |
"Notification email was not sent due to an error. Please check "
|
721 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
723 |
"L'email di notifica non è stata inviata a causa di un errore. Cortesemente "
|
724 |
"controlla gli attributi notifyrecipients,notifysubject e notifymessage."
|
725 |
|
726 |
+
#: lib/wfu_constants.php:155
|
727 |
msgid ""
|
728 |
"Redirection not executed because redirection link is empty. Please check "
|
729 |
"redirectlink attribute."
|
731 |
"Reindirizzamento non avvenuto perchè il link di destinazione è vuoto. "
|
732 |
"Cortesemente controlla l'attributo redirectlink."
|
733 |
|
734 |
+
#: lib/wfu_constants.php:156
|
735 |
msgid ""
|
736 |
"Redirection not executed because not all files were successfully uploaded."
|
737 |
msgstr ""
|
738 |
"Reindirizzamento non avvenuto perchè non tutti i file sono stati caricati "
|
739 |
"correttamente."
|
740 |
|
741 |
+
#: lib/wfu_constants.php:157
|
742 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
743 |
msgstr "Possibile attacco Denial-Of-Service su {SITE}"
|
744 |
|
745 |
+
#: lib/wfu_constants.php:158
|
746 |
msgid ""
|
747 |
"Hello admin\n"
|
748 |
"\n"
|
780 |
"\n"
|
781 |
"Grazie"
|
782 |
|
783 |
+
#: lib/wfu_constants.php:159
|
784 |
msgid ""
|
785 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
786 |
"details please contact info@iptanus.com."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: lib/wfu_constants.php:160
|
790 |
msgid ""
|
791 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
792 |
"plugin functions. Please read this :article: for resolution."
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: lib/wfu_constants.php:162
|
796 |
msgid ""
|
797 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
798 |
"message persists, contact administrator."
|
800 |
"Aggiuta del codice breve nella pagina/post fallita. Prova ancora. Se il "
|
801 |
"messaggio persiste contatta l'amministratore."
|
802 |
|
803 |
+
#: lib/wfu_constants.php:163
|
804 |
msgid ""
|
805 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
806 |
"again to edit the shortcode."
|
808 |
"Modifica del codice breve fallita perchè il contenuto della pagina è "
|
809 |
"cambiato. Prova a modificare ancora il codice breve."
|
810 |
|
811 |
+
#: lib/wfu_constants.php:164
|
812 |
msgid ""
|
813 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
814 |
"again to delete it."
|
816 |
"Eliminazione del codice breve fallita perchè il contenuto della pagina è "
|
817 |
"cambiato. Prova ad eliminare ancora il codice breve."
|
818 |
|
819 |
+
#: lib/wfu_constants.php:165
|
820 |
msgid ""
|
821 |
"The page containing the shortcode has been modified and it is no longer "
|
822 |
"valid. Please go back to reload the shortcode."
|
824 |
"La pagina contenente il codice breve è stata modificata e non è più valida. "
|
825 |
"Cortesemente torna indietro e ricarica il codice breve."
|
826 |
|
827 |
+
#: lib/wfu_constants.php:166
|
828 |
msgid ""
|
829 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
830 |
"back to reload the shortcode."
|
832 |
"Ricaricamento del codice breve fallita perchè il contenuto della pagina è "
|
833 |
"cambiato. Prova a ricaricare ancora il codice breve."
|
834 |
|
835 |
+
#: lib/wfu_constants.php:167
|
836 |
msgid ""
|
837 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
838 |
"go back and reload the shortcode."
|
840 |
"Ricaricamento del codice breve fallita. Prova ancora. Se il problema "
|
841 |
"persiste, prova a ricaricare ancora il codice breve."
|
842 |
|
843 |
+
#: lib/wfu_constants.php:169
|
844 |
msgid "This is a test message"
|
845 |
msgstr "Questo è un messaggio di prova"
|
846 |
|
847 |
+
#: lib/wfu_constants.php:170
|
848 |
msgid "This is a test administrator message"
|
849 |
msgstr "Questo è un messaggio di prova dell'amministratore"
|
850 |
|
851 |
+
#: lib/wfu_constants.php:171
|
852 |
msgid "File testfile 1 under test"
|
853 |
msgstr "File testfile1 in fase di test"
|
854 |
|
855 |
+
#: lib/wfu_constants.php:172
|
856 |
msgid "File testfile 1 message"
|
857 |
msgstr "File testfile 1 messaggio"
|
858 |
|
859 |
+
#: lib/wfu_constants.php:173
|
860 |
msgid "File testfile 1 administrator message"
|
861 |
msgstr "File testfile 1 messaggio amministratore"
|
862 |
|
863 |
+
#: lib/wfu_constants.php:174
|
864 |
msgid "File testfile 2 under test"
|
865 |
msgstr "File testfile 2 in fase di test"
|
866 |
|
867 |
+
#: lib/wfu_constants.php:175
|
868 |
msgid "File testfile 2 message"
|
869 |
msgstr "File testfile 2 messaggio"
|
870 |
|
871 |
+
#: lib/wfu_constants.php:176
|
872 |
msgid "File testfile 2 administrator message"
|
873 |
msgstr "File testfile 2 messaggio amministratore"
|
874 |
|
875 |
+
#: lib/wfu_constants.php:178
|
876 |
msgid ""
|
877 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
878 |
"current user."
|
880 |
"Inserisci la variabile %userid% nel testo. Verrà sostituita dall'id "
|
881 |
"dell'utente corrente."
|
882 |
|
883 |
+
#: lib/wfu_constants.php:179
|
884 |
msgid ""
|
885 |
"Insert variable %username% inside text. It will be replaced by the username "
|
886 |
"of the current user."
|
888 |
"Inserisci la variabile %username% nel testo. Verrà sostituita dal nome "
|
889 |
"utente dell'utente corrente."
|
890 |
|
891 |
+
#: lib/wfu_constants.php:180
|
892 |
msgid ""
|
893 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
894 |
"the current user."
|
896 |
"Inserisci la variabile %useremail% nel testo. Verrà sostituita dall'email "
|
897 |
"dell'utente corrente."
|
898 |
|
899 |
+
#: lib/wfu_constants.php:181
|
900 |
msgid ""
|
901 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
902 |
"of the uploaded file."
|
904 |
"Inserisci la variabile %filename% nel testo. Verrà sostituita dal nome del "
|
905 |
"file caricato."
|
906 |
|
907 |
+
#: lib/wfu_constants.php:182
|
908 |
msgid ""
|
909 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
910 |
"filepath of the uploaded file."
|
912 |
"Inserisci la variabile %filepath% nel testo. Verrà sostituita dal percorso "
|
913 |
"completo del file caricato."
|
914 |
|
915 |
+
#: lib/wfu_constants.php:183
|
916 |
msgid ""
|
917 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
918 |
"the website."
|
920 |
"Inserisci la variabile %blogid% nel testo. Verrà sostituita dall'id "
|
921 |
"dell'articolo del sito."
|
922 |
|
923 |
+
#: lib/wfu_constants.php:184
|
924 |
msgid ""
|
925 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
926 |
"current page."
|
928 |
"Inserisci la variabile %pageid% nel testo. Verrà sostituita dall'id della "
|
929 |
"pagina corrente."
|
930 |
|
931 |
+
#: lib/wfu_constants.php:185
|
932 |
msgid ""
|
933 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
934 |
"the current page."
|
936 |
"Inserisci la variabile %pagetitle% nel testo. Verrà sostituita dall titolo "
|
937 |
"della pagina corrente."
|
938 |
|
939 |
+
#: lib/wfu_constants.php:186
|
940 |
msgid ""
|
941 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
942 |
"drop-down list. It will be replaced by the value that the user entered in "
|
945 |
"Inserisci la variabile %userdataXXX% nel testo. Scegli il campo utente dal "
|
946 |
"menu a tendina. Verrà sostituita dal valore inserito dalll'utente nel campo."
|
947 |
|
948 |
+
#: lib/wfu_constants.php:187
|
949 |
msgid "Insert variable %n% inside text to denote a line change."
|
950 |
msgstr ""
|
951 |
"Inserisci la varibaile %n% nel testo per avere una nuova linea (newline)"
|
952 |
|
953 |
+
#: lib/wfu_constants.php:189
|
954 |
+
#, php-format
|
955 |
+
msgid "File %filename% uploaded successfully but not saved"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: lib/wfu_constants.php:190
|
959 |
msgid "Test Mode"
|
960 |
msgstr "Modalità di test"
|
961 |
|
962 |
+
#: lib/wfu_constants.php:191
|
963 |
msgid "select dir..."
|
964 |
msgstr "scegli cartella..."
|
965 |
|
966 |
+
#: lib/wfu_constants.php:192
|
967 |
msgid "type dir"
|
968 |
msgstr "digita cartella..."
|
969 |
|
970 |
+
#: lib/wfu_constants.php:193
|
971 |
msgid "Upload path: %filepath%"
|
972 |
msgstr "Percorso di caricamento: %filepath%"
|
973 |
|
974 |
+
#: lib/wfu_constants.php:194
|
975 |
msgid "Failed upload path: %filepath%"
|
976 |
msgstr "Fallimento nel percorso di caricamento: %filepath%"
|
977 |
|
978 |
+
#: lib/wfu_constants.php:195
|
979 |
msgid " (required)"
|
980 |
msgstr " (richiesto)"
|
981 |
|
982 |
+
#: lib/wfu_constants.php:196
|
983 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
984 |
msgstr ""
|
985 |
"I file sono in fase di caricamento. Sei sicuro di volere uscire da questa "
|
986 |
"pagina?"
|
987 |
|
988 |
+
#: lib/wfu_constants.php:197
|
989 |
msgid "checking captcha..."
|
990 |
msgstr "controllo il captcha..."
|
991 |
|
992 |
+
#: lib/wfu_constants.php:198
|
993 |
msgid "refreshing..."
|
994 |
msgstr "aggiornamento..."
|
995 |
|
996 |
+
#: lib/wfu_constants.php:199
|
997 |
msgid "correct captcha"
|
998 |
msgstr "captcha corretto"
|
999 |
|
1000 |
+
#: lib/wfu_constants.php:200
|
1001 |
msgid "click to continue the upload"
|
1002 |
msgstr "clicca per continuare il caricamento"
|
1003 |
|
1004 |
+
#: lib/wfu_constants.php:201
|
1005 |
msgid "Are you sure you want to delete this file?"
|
1006 |
msgstr "Sei sicuro che vuoi cancellare questo file?"
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:202
|
1009 |
msgid "Are you sure you want to delete these files?"
|
1010 |
msgstr "Sei sicuro che vuoi cancellare questi file?"
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:203
|
1013 |
msgid "Bulk Actions"
|
1014 |
msgstr "Azioni in massa (bulk)"
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:204
|
1017 |
msgid "Apply"
|
1018 |
msgstr "Applica"
|
1019 |
|
1020 |
+
#: lib/wfu_constants.php:206
|
1021 |
msgid "of "
|
1022 |
msgstr "di "
|
1023 |
|
1024 |
+
#: lib/wfu_constants.php:207
|
1025 |
msgid "Are you sure that you want to cancel the upload?"
|
1026 |
msgstr "Sei sicuro di voler cancellare il caricamento?"
|
1027 |
|
1028 |
+
#: lib/wfu_constants.php:208
|
1029 |
msgid "cancel upload of this file"
|
1030 |
msgstr "cancella il caricamento di questo file"
|
1031 |
|
1032 |
+
#: lib/wfu_constants.php:209
|
1033 |
msgid "Upload in progress"
|
1034 |
msgstr "Caricamento in corso"
|
1035 |
|
1036 |
+
#: lib/wfu_constants.php:210
|
1037 |
msgid "Upload in progress with warnings!"
|
1038 |
msgstr "Caricamento in corso con avvertimenti!"
|
1039 |
|
1040 |
+
#: lib/wfu_constants.php:211
|
1041 |
msgid "Upload in progress but some files already failed!"
|
1042 |
msgstr "Caricamento in corso ma alcuni file hanno già fallito!"
|
1043 |
|
1044 |
+
#: lib/wfu_constants.php:212
|
1045 |
msgid "Upload in progress but no files uploaded so far!"
|
1046 |
msgstr "Caricamento in corso ma nessun file è stato caricato per ora!"
|
1047 |
|
1048 |
+
#: lib/wfu_constants.php:213
|
1049 |
msgid "All files uploaded successfully"
|
1050 |
msgstr "Tutti i file sono stati caricati correttamente"
|
1051 |
|
1052 |
+
#: lib/wfu_constants.php:214
|
1053 |
msgid "All files uploaded successfully but there are warnings!"
|
1054 |
msgstr ""
|
1055 |
"Tutti i file sono stati caricati correttamente ma ci sono degli avvertimenti"
|
1056 |
|
1057 |
+
#: lib/wfu_constants.php:215
|
1058 |
msgid "File uploaded successfully but there are warnings!"
|
1059 |
msgstr "File caricato correttamente ma con degli avvertimenti!"
|
1060 |
|
1061 |
+
#: lib/wfu_constants.php:216
|
1062 |
msgid "Some files failed to upload!"
|
1063 |
msgstr "Alcuni file non sono stati caricati!"
|
1064 |
|
1065 |
+
#: lib/wfu_constants.php:217
|
1066 |
msgid "All files failed to upload"
|
1067 |
msgstr "Tutti i file hanno fallito il caricamento"
|
1068 |
|
1069 |
+
#: lib/wfu_constants.php:218
|
1070 |
msgid "File failed to upload"
|
1071 |
msgstr "Il file ha fallito il caricamento"
|
1072 |
|
1073 |
+
#: lib/wfu_constants.php:219
|
1074 |
msgid "There are no files to upload!"
|
1075 |
msgstr "Non ci sono file da caricare!"
|
1076 |
|
1077 |
+
#: lib/wfu_constants.php:220
|
1078 |
msgid "Test upload message"
|
1079 |
msgstr "Prova il messaggio di caricamento"
|
1080 |
|
1081 |
+
#: lib/wfu_constants.php:221
|
1082 |
msgid "JSON parse warning!"
|
1083 |
msgstr "Avvertimento nell'analisi del JSON!"
|
1084 |
|
1085 |
+
#: lib/wfu_constants.php:222
|
1086 |
msgid "please wait while redirecting..."
|
1087 |
msgstr "Un attimo ancora, grazie..."
|
1088 |
|
1089 |
+
#: lib/wfu_constants.php:224
|
1090 |
msgid "Submitting data"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: lib/wfu_constants.php:225
|
1094 |
msgid "Data submitted successfully!"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: lib/wfu_constants.php:226
|
1098 |
msgid "Data were not submitted!"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: lib/wfu_constants.php:227
|
1102 |
msgid "Cancelling upload"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: lib/wfu_constants.php:229
|
1106 |
+
msgid "Upload succeeded!"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: lib/wfu_constants.php:230
|
1110 |
+
msgid "Upload completed but no files were saved!"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: lib/wfu_constants.php:231
|
1114 |
+
msgid "File was not saved due to personal data policy!"
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: lib/wfu_constants.php:232
|
1118 |
msgid "Open visual shortcode editor in new window"
|
1119 |
msgstr "Apri l'editor visuale per i codici brevi in una nuova finestra"
|
1120 |
|
1121 |
+
#: lib/wfu_constants.php:233
|
1122 |
msgid "loading visual editor"
|
1123 |
msgstr "Caricamento dell'editor visuale"
|
1124 |
|
1125 |
+
#: lib/wfu_constants.php:234
|
1126 |
msgid "Clear file list?"
|
1127 |
msgstr "Pulire la lista dei file?"
|
1128 |
|
1129 |
+
#: lib/wfu_constants.php:235
|
1130 |
msgid "DROP HERE"
|
1131 |
msgstr "TRASCINA QUI"
|
1132 |
|
1133 |
+
#: lib/wfu_constants.php:237
|
1134 |
msgid "record video"
|
1135 |
msgstr "registra video"
|
1136 |
|
1137 |
+
#: lib/wfu_constants.php:238
|
1138 |
msgid "take a picture"
|
1139 |
msgstr "scatta una foto"
|
1140 |
|
1141 |
+
#: lib/wfu_constants.php:239
|
1142 |
msgid "turn webcam on/off"
|
1143 |
msgstr "accendi o spegni la webcam"
|
1144 |
|
1145 |
+
#: lib/wfu_constants.php:240
|
1146 |
msgid "go live again"
|
1147 |
msgstr "torna in diretta"
|
1148 |
|
1149 |
+
#: lib/wfu_constants.php:241
|
1150 |
msgid "end recording"
|
1151 |
msgstr "termina registrazione"
|
1152 |
|
1153 |
+
#: lib/wfu_constants.php:242
|
1154 |
msgid "play"
|
1155 |
msgstr "riproduci"
|
1156 |
|
1157 |
+
#: lib/wfu_constants.php:243
|
1158 |
msgid "pause"
|
1159 |
msgstr "pausa"
|
1160 |
|
1161 |
+
#: lib/wfu_constants.php:244
|
1162 |
msgid "go to the beginning"
|
1163 |
msgstr "vai all'inizio"
|
1164 |
|
1165 |
+
#: lib/wfu_constants.php:245
|
1166 |
msgid "go to the end"
|
1167 |
msgstr "vai alla fine"
|
1168 |
|
1169 |
+
#: lib/wfu_constants.php:247
|
1170 |
msgid "Wordpress File Upload Form"
|
1171 |
msgstr "Wordpress File Upload Form"
|
1172 |
|
1173 |
+
#: lib/wfu_constants.php:248
|
1174 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1175 |
msgstr "Wordpress File Upload plugin per barre laterali"
|
1176 |
|
1177 |
+
#: lib/wfu_constants.php:249
|
1178 |
msgid "Upload Files"
|
1179 |
msgstr "Carica Files"
|
1180 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -104,59 +104,65 @@ msgid ""
|
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "File"
|
109 |
msgstr "Bestand"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
112 |
msgid "Date"
|
113 |
msgstr "Datum"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Size"
|
117 |
msgstr "Grootte"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "User"
|
121 |
msgstr "Gebruiker"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "Page"
|
125 |
msgstr "Pagina"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "User Fields"
|
129 |
msgstr "Gebruikersvelden"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Download"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download this file"
|
137 |
msgstr "Download dit bestand"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Delete"
|
141 |
msgstr "Verwijderen"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete this file"
|
145 |
msgstr "Verwijder dit bestand"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Sort list based on this column"
|
149 |
msgstr "Sorteer lijst gebaseerd op deze kolom"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "guest"
|
153 |
msgstr "gast"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "unknown"
|
157 |
msgstr "onbekend"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid ""
|
161 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
162 |
"attribute."
|
@@ -164,11 +170,11 @@ msgstr ""
|
|
164 |
"Fout. Kon het ftp doel filedir niet vinden. Controleer het domein in "
|
165 |
"'ftpinfo' attribuut."
|
166 |
|
167 |
-
#: lib/wfu_constants.php:
|
168 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
169 |
msgstr "Fout. Foutieve ftp informatie. Controleer 'ftpinfo' attribuut."
|
170 |
|
171 |
-
#: lib/wfu_constants.php:
|
172 |
msgid ""
|
173 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
174 |
"syntax."
|
@@ -176,7 +182,7 @@ msgstr ""
|
|
176 |
"Fout. Kon geen ftp informatie halen uit 'ftpinfo' attribuut. Controleer de "
|
177 |
"syntax."
|
178 |
|
179 |
-
#: lib/wfu_constants.php:
|
180 |
msgid ""
|
181 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
182 |
"attribute."
|
@@ -184,39 +190,39 @@ msgstr ""
|
|
184 |
"Fout. Kon het ftp bestandsnaamdoel niet vinden. Controleer het domein in "
|
185 |
"'ftpinfo' attribuut."
|
186 |
|
187 |
-
#: lib/wfu_constants.php:
|
188 |
msgid ""
|
189 |
"Error. Could not open source file for ftp upload. Check if file is "
|
190 |
"accessible."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: lib/wfu_constants.php:
|
194 |
msgid "Error. Could not send data to ftp target file."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: lib/wfu_constants.php:
|
198 |
msgid ""
|
199 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
200 |
"attribute."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: lib/wfu_constants.php:
|
204 |
msgid ""
|
205 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
206 |
"'ftpinfo' attribute."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: lib/wfu_constants.php:
|
210 |
msgid ""
|
211 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
212 |
"supports sftp."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: lib/wfu_constants.php:
|
216 |
msgid "Error. The web server does not support sftp."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: lib/wfu_constants.php:
|
220 |
msgid ""
|
221 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
222 |
"preventing the upload of big files.\n"
|
@@ -226,7 +232,7 @@ msgstr ""
|
|
226 |
"weerhoudt je om grote bestanden te uploaden.\n"
|
227 |
"De PHP directive upload_max_filesize limiet is: "
|
228 |
|
229 |
-
#: lib/wfu_constants.php:
|
230 |
msgid ""
|
231 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
232 |
"upload of big files.\n"
|
@@ -236,7 +242,7 @@ msgstr ""
|
|
236 |
"van grote bestanden.\n"
|
237 |
"PHP directive max_input_time limiet is: "
|
238 |
|
239 |
-
#: lib/wfu_constants.php:
|
240 |
msgid ""
|
241 |
"Error. Permission denied to write to target folder.\n"
|
242 |
"Check and correct read/write permissions of target folder."
|
@@ -244,7 +250,7 @@ msgstr ""
|
|
244 |
"Fout. Geen toestemming tot schrijven naar doelmap.\n"
|
245 |
"Controleer en corrigeer de lees/schrijf rechten van de doelmap."
|
246 |
|
247 |
-
#: lib/wfu_constants.php:
|
248 |
msgid ""
|
249 |
"Error. This file was rejected because its extension is not correct. Its "
|
250 |
"proper filename is: "
|
@@ -252,50 +258,50 @@ msgstr ""
|
|
252 |
"Fout. Dit bestand werd geweigerd omdat de extensie niet correct is. De "
|
253 |
"correcte bestandnaam is: "
|
254 |
|
255 |
-
#: lib/wfu_constants.php:
|
256 |
msgid ""
|
257 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
258 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
259 |
"suspicious behaviour."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: lib/wfu_constants.php:
|
263 |
msgid ""
|
264 |
"File not uploaded in order to prevent overflow of the website. Please "
|
265 |
"contact administrator."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: lib/wfu_constants.php:
|
269 |
msgid "Target folder doesn't exist."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: lib/wfu_constants.php:
|
273 |
msgid "Upload failed! Missing a temporary folder."
|
274 |
msgstr "Upload mislukt! Er ontbreekt een tijdelijke map."
|
275 |
|
276 |
-
#: lib/wfu_constants.php:
|
277 |
msgid "Upload failed! Permission denied to write to target folder."
|
278 |
msgstr "Upload mislukt! Toestemming ontbreekt om te schrijven naar doelmap."
|
279 |
|
280 |
-
#: lib/wfu_constants.php:
|
281 |
msgid "File not allowed."
|
282 |
msgstr "Bestand niet toegelaten."
|
283 |
|
284 |
-
#: lib/wfu_constants.php:
|
285 |
msgid "File is suspicious and was rejected."
|
286 |
msgstr "Bestand is dubieus en werd niet toegelaten."
|
287 |
|
288 |
-
#: lib/wfu_constants.php:
|
289 |
msgid "The uploaded file exceeds the file size limit."
|
290 |
msgstr "Het geüploade bestand overschrijdt de toegestane grootte."
|
291 |
|
292 |
-
#: lib/wfu_constants.php:
|
293 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
294 |
msgstr ""
|
295 |
"Het geüploade bestand overschrijdt 2GB en wordt niet ondersteund door deze "
|
296 |
"server."
|
297 |
|
298 |
-
#: lib/wfu_constants.php:
|
299 |
msgid ""
|
300 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
301 |
"Please contact the administrator."
|
@@ -303,7 +309,7 @@ msgstr ""
|
|
303 |
"Upload mislukt! Het geüploade bestand overschrijdt de bestandsgrootte van de "
|
304 |
"server. Neem contact op met de beheerder."
|
305 |
|
306 |
-
#: lib/wfu_constants.php:
|
307 |
msgid ""
|
308 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
309 |
"server. Please contact the administrator."
|
@@ -311,7 +317,7 @@ msgstr ""
|
|
311 |
"Upload mislukt! De duur van de upload overschreed de termijn van de server. "
|
312 |
"Neem contact op met de beheerder."
|
313 |
|
314 |
-
#: lib/wfu_constants.php:
|
315 |
msgid ""
|
316 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
317 |
"was specified in the HTML form."
|
@@ -319,20 +325,20 @@ msgstr ""
|
|
319 |
"Upload mislukt! Het geüploade bestand is groter dan de MAX_FILE_SIZE "
|
320 |
"aangegeven voor dit HTML formulier."
|
321 |
|
322 |
-
#: lib/wfu_constants.php:
|
323 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
324 |
msgstr "Upload mislukt! Het geüploade bestand is slechts deels geüpload."
|
325 |
|
326 |
-
#: lib/wfu_constants.php:
|
327 |
msgid "Upload failed! No file was uploaded."
|
328 |
msgstr "Upload mislukt! Er werd geen bestand geüpload."
|
329 |
|
330 |
-
#: lib/wfu_constants.php:
|
331 |
msgid "Upload failed! Failed to write file to disk."
|
332 |
msgstr ""
|
333 |
"Upload mislukt! Het is niet gelukt het bestand naar de schijf te schrijven."
|
334 |
|
335 |
-
#: lib/wfu_constants.php:
|
336 |
msgid ""
|
337 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
338 |
"administrator."
|
@@ -340,11 +346,11 @@ msgstr ""
|
|
340 |
"Upload mislukt! Er is een fout opgetreden tijdens het verplaatsen van het "
|
341 |
"tijdelijke bestand. Contacteer de beheerder."
|
342 |
|
343 |
-
#: lib/wfu_constants.php:
|
344 |
msgid "Upload cancelled!"
|
345 |
msgstr "Upload geannuleerd!"
|
346 |
|
347 |
-
#: lib/wfu_constants.php:
|
348 |
msgid ""
|
349 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
350 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -354,19 +360,19 @@ msgstr ""
|
|
354 |
"mogelijkheid om te achterhalen welke extensie de oorzaak is; onderzoek van "
|
355 |
"de lijst met actieve extensies met phpinfo() kan nuttig zijn."
|
356 |
|
357 |
-
#: lib/wfu_constants.php:
|
358 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
359 |
msgstr "Upload mislukt! Een fout is opgetreden tijdens het uploaden."
|
360 |
|
361 |
-
#: lib/wfu_constants.php:
|
362 |
msgid "Upload failed!"
|
363 |
msgstr "Upload mislukt!"
|
364 |
|
365 |
-
#: lib/wfu_constants.php:
|
366 |
msgid "No file!"
|
367 |
msgstr "Geen bestand!"
|
368 |
|
369 |
-
#: lib/wfu_constants.php:
|
370 |
msgid ""
|
371 |
"Upload failed! The upload has been canceled by the user or the browser "
|
372 |
"dropped the connection."
|
@@ -374,27 +380,27 @@ msgstr ""
|
|
374 |
"Upload mislukt! De upload werd geannuleerd door de gebruiker of de "
|
375 |
"verbinding met de server werd verbroken."
|
376 |
|
377 |
-
#: lib/wfu_constants.php:
|
378 |
msgid "Upload failed! Unknown error."
|
379 |
msgstr "Upload mislukt! Onbekende fout."
|
380 |
|
381 |
-
#: lib/wfu_constants.php:
|
382 |
msgid "Please contact the administrator."
|
383 |
msgstr "Contacteer de beheerder."
|
384 |
|
385 |
-
#: lib/wfu_constants.php:
|
386 |
msgid "No result from remote server!"
|
387 |
msgstr "Geen resultaten van de server!"
|
388 |
|
389 |
-
#: lib/wfu_constants.php:
|
390 |
msgid " but with warnings"
|
391 |
msgstr " maar met waarschuwingen"
|
392 |
|
393 |
-
#: lib/wfu_constants.php:
|
394 |
msgid "Warning: JSON parse error."
|
395 |
msgstr "Opgelet: JSON parseerfout."
|
396 |
|
397 |
-
#: lib/wfu_constants.php:
|
398 |
msgid ""
|
399 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
400 |
"not be parsed."
|
@@ -402,20 +408,20 @@ msgstr ""
|
|
402 |
"De uploadparameters van dit bestand, doorgegeven als JSON string to the "
|
403 |
"handler, kon niet worden ontleed."
|
404 |
|
405 |
-
#: lib/wfu_constants.php:
|
406 |
msgid ""
|
407 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
408 |
msgstr ""
|
409 |
"UploadStates, doorgegeven als JSON string to the handler, kon niet worden "
|
410 |
"ontleed."
|
411 |
|
412 |
-
#: lib/wfu_constants.php:
|
413 |
msgid ""
|
414 |
"Redirection to classic form functionality occurred due to unknown error."
|
415 |
msgstr ""
|
416 |
"Doorsturen naar classic form functionaliteit trad op door onbekende fout."
|
417 |
|
418 |
-
#: lib/wfu_constants.php:
|
419 |
msgid ""
|
420 |
"Redirection to classic form functionality occurred because AJAX is not "
|
421 |
"supported."
|
@@ -423,7 +429,7 @@ msgstr ""
|
|
423 |
"Doorsturen naar classic form functionaliteit trad op omdat AJAX niet wordt "
|
424 |
"ondersteund."
|
425 |
|
426 |
-
#: lib/wfu_constants.php:
|
427 |
msgid ""
|
428 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
429 |
"supported."
|
@@ -431,57 +437,57 @@ msgstr ""
|
|
431 |
"Doorsturen naar classic form functionaliteit trad op omdat HTML5 niet wordt "
|
432 |
"ondersteund."
|
433 |
|
434 |
-
#: lib/wfu_constants.php:
|
435 |
msgid ""
|
436 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
437 |
msgstr ""
|
438 |
"Doorsturen naar classic form functionaliteit trad op wegens JSON parseerfout."
|
439 |
|
440 |
-
#: lib/wfu_constants.php:
|
441 |
msgid "Please enable popup windows from the browser's settings!"
|
442 |
msgstr "Activeer popup vensters in de browserinstellingen!"
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid "cannot be empty!"
|
446 |
msgstr "kan niet leeg zijn!"
|
447 |
|
448 |
-
#: lib/wfu_constants.php:
|
449 |
msgid "number not valid!"
|
450 |
msgstr "nummer niet geldig!"
|
451 |
|
452 |
-
#: lib/wfu_constants.php:
|
453 |
msgid "email not valid!"
|
454 |
msgstr "e-mail niet geldig!"
|
455 |
|
456 |
-
#: lib/wfu_constants.php:
|
457 |
msgid "emails do not match!"
|
458 |
msgstr "e-mails komen niet overeen!"
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "no base email field in group!"
|
462 |
msgstr "geen hoofd e-mailveld in de groep!"
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid "passwords do not match!"
|
466 |
msgstr "Wachtwoorden komen niet overeen!"
|
467 |
|
468 |
-
#: lib/wfu_constants.php:
|
469 |
msgid "no base password field in group!"
|
470 |
msgstr "geen hoofd wachtwoordveld in de groep!"
|
471 |
|
472 |
-
#: lib/wfu_constants.php:
|
473 |
msgid "checkbox unchecked!"
|
474 |
msgstr "checkbox niet aangevinkt!"
|
475 |
|
476 |
-
#: lib/wfu_constants.php:
|
477 |
msgid "no option selected!"
|
478 |
msgstr "geen optie geselecteerd!"
|
479 |
|
480 |
-
#: lib/wfu_constants.php:
|
481 |
msgid "no item selected!"
|
482 |
msgstr "geen item geselecteerd!"
|
483 |
|
484 |
-
#: lib/wfu_constants.php:
|
485 |
msgid ""
|
486 |
"There are more than one instances of the plugin in this page with the same "
|
487 |
"id. Please change it."
|
@@ -489,7 +495,7 @@ msgstr ""
|
|
489 |
"Er is meer dan één verzoek van deze plugin op deze pagina met dezelfde id. "
|
490 |
"Pas dit aan."
|
491 |
|
492 |
-
#: lib/wfu_constants.php:
|
493 |
msgid ""
|
494 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
495 |
"the page."
|
@@ -497,19 +503,19 @@ msgstr ""
|
|
497 |
"Kan de shortcode niet aanpassen omdat de pagina werd aangepast. Herlaadt de "
|
498 |
"pagina."
|
499 |
|
500 |
-
#: lib/wfu_constants.php:
|
501 |
msgid "Your browser does not support webcam capture!"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: lib/wfu_constants.php:
|
505 |
msgid "Your browser does not support video recording from the webcam!"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: lib/wfu_constants.php:
|
509 |
msgid "No video was recorded!"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: lib/wfu_constants.php:
|
513 |
msgid ""
|
514 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
515 |
"or use RecaptchaV2 (no account)."
|
@@ -517,7 +523,7 @@ msgstr ""
|
|
517 |
"FOUT: Captcha niet ondersteund! Je gebruikt een oude PHP versie. Upgrade "
|
518 |
"jouw PHP of gebruik RecaptchaV2 (geen account)."
|
519 |
|
520 |
-
#: lib/wfu_constants.php:
|
521 |
msgid ""
|
522 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
523 |
"notify administrator."
|
@@ -525,7 +531,7 @@ msgstr ""
|
|
525 |
"FOUT: slechts één versie van RecaptchaV1 kan bestaan op dezelfde pagina. "
|
526 |
"Informeer de beheerder."
|
527 |
|
528 |
-
#: lib/wfu_constants.php:
|
529 |
msgid ""
|
530 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
531 |
"use RecaptchaV1 (no account)."
|
@@ -533,11 +539,11 @@ msgstr ""
|
|
533 |
"FOUT: slechts één versie van RecaptchaV1 kan bestaan op dezelfde pagina. "
|
534 |
"Gebruik RecaptchaV1 (geen account)."
|
535 |
|
536 |
-
#: lib/wfu_constants.php:
|
537 |
msgid "ERROR: No site key. Please contact administrator!"
|
538 |
msgstr "FOUT: Geen websitesleutel. Contacteer de beheerder!"
|
539 |
|
540 |
-
#: lib/wfu_constants.php:
|
541 |
msgid ""
|
542 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
543 |
"define Google Recaptcha keys."
|
@@ -545,123 +551,123 @@ msgstr ""
|
|
545 |
"FOUT: Geen websitesleutel gedefinieerd! Ga naar de plugin instellingen in "
|
546 |
"het Dashboard om de Google Recaptcha sleutels te bepalen."
|
547 |
|
548 |
-
#: lib/wfu_constants.php:
|
549 |
msgid "Bad captcha image!"
|
550 |
msgstr "Foute captcha afbeelding!"
|
551 |
|
552 |
-
#: lib/wfu_constants.php:
|
553 |
msgid "No input!"
|
554 |
msgstr "Geen invoer!"
|
555 |
|
556 |
-
#: lib/wfu_constants.php:
|
557 |
msgid "Captcha not completed!"
|
558 |
msgstr "Captcha niet voltooid!"
|
559 |
|
560 |
-
#: lib/wfu_constants.php:
|
561 |
msgid "Wrong captcha!"
|
562 |
msgstr "Foute captcha!"
|
563 |
|
564 |
-
#: lib/wfu_constants.php:
|
565 |
msgid "Error refreshing captcha!"
|
566 |
msgstr "Fout bij het verversen van de captcha!"
|
567 |
|
568 |
-
#: lib/wfu_constants.php:
|
569 |
msgid "Unknown captcha error!"
|
570 |
msgstr "Onbekende captchafout!"
|
571 |
|
572 |
-
#: lib/wfu_constants.php:
|
573 |
msgid "Captcha not supported by your browser!"
|
574 |
msgstr "Captcha niet ondersteund door jouw browser!"
|
575 |
|
576 |
-
#: lib/wfu_constants.php:
|
577 |
msgid "the secret parameter is missing"
|
578 |
msgstr "de geheime parameter ontbreekt"
|
579 |
|
580 |
-
#: lib/wfu_constants.php:
|
581 |
msgid "the secret parameter is invalid or malformed"
|
582 |
msgstr "de geheime parameter is ongeldig of foutief gevormd"
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "the response parameter is missing"
|
586 |
msgstr "de antwoord parameter ontbreekt"
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "the response parameter is invalid or malformed"
|
590 |
msgstr "de antwoord parameter is ongeldig of foutief gevormd"
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "Please do not use drag drop due to an internal problem."
|
594 |
msgstr "Gebruik geen drag drop wegens een intern probleem."
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
#, php-format
|
598 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
599 |
msgstr "Fout tijdens blok-upload. Unieke ID is leeg in blok %d"
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "Chunked upload is not allowed!"
|
603 |
msgstr "Blok upload is niet toegestaan!"
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
607 |
msgstr "Blok upload werd afgebroken wegens een fout in vorige blok!"
|
608 |
|
609 |
-
#: lib/wfu_constants.php:
|
610 |
msgid "Chunked upload failed, final file could not be created!"
|
611 |
msgstr "Blok upload mislukt, laatste bestand kon niet worden aangemaakt!"
|
612 |
|
613 |
-
#: lib/wfu_constants.php:
|
614 |
#, php-format
|
615 |
msgid "Could not write file chuck to destination on chunk %d"
|
616 |
msgstr "Kon bestandsblok niet wegschrijven naar bestemming op blok %d"
|
617 |
|
618 |
-
#: lib/wfu_constants.php:
|
619 |
#, php-format
|
620 |
msgid "Could not enlarge destination file on chunk %d"
|
621 |
msgstr "Kon het bestemmingsbestand niet vergroten op blok %d"
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
#, php-format
|
625 |
msgid "Could not open file handles on chunk %d"
|
626 |
msgstr "Kon het bestand op blok %d niet openen"
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
msgid "You are not allowed to download this file!"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: lib/wfu_constants.php:
|
633 |
msgid "File does not exist!"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
msgid "Could not download file!"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: lib/wfu_constants.php:
|
641 |
msgid "You are not allowed to delete this file!"
|
642 |
msgstr "Je hebt geen toestemming om dit bestand te verwijderen!"
|
643 |
|
644 |
-
#: lib/wfu_constants.php:
|
645 |
msgid "File was not deleted!"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid "No file was deleted!"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: lib/wfu_constants.php:
|
653 |
msgid "Some files were not deleted!"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: lib/wfu_constants.php:
|
657 |
msgid "Upload skipped! File already exists."
|
658 |
msgstr "Upload overgeslagen! Bestand bestaat al."
|
659 |
|
660 |
-
#: lib/wfu_constants.php:
|
661 |
msgid "The extension of the file does not match its contents."
|
662 |
msgstr "De extensie van het bestand komt niet overeen met zijn inhoud."
|
663 |
|
664 |
-
#: lib/wfu_constants.php:
|
665 |
msgid ""
|
666 |
"Upload succeeded but the file is suspicious because its contents do not "
|
667 |
"match its extension. Its proper filename is: "
|
@@ -669,26 +675,26 @@ msgstr ""
|
|
669 |
"Upload is gelukt maar het bestand is dubieus omdat zijn inhoud niet overeen "
|
670 |
"komt met de extensie. De correcte bestandsnaam is "
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid "No files have been selected!"
|
674 |
msgstr "Er werden geen bestanden geselecteerd!"
|
675 |
|
676 |
-
#: lib/wfu_constants.php:
|
677 |
msgid "Please complete the consent question before continuing the upload!"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: lib/wfu_constants.php:
|
681 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
682 |
msgstr ""
|
683 |
"WPFilebase Plugin werd niet geüpdatet omdat er geen bestanden werden "
|
684 |
"geüpload."
|
685 |
|
686 |
-
#: lib/wfu_constants.php:
|
687 |
msgid "Notification email was not sent because there were no files uploaded."
|
688 |
msgstr ""
|
689 |
"Er werd geen meldingsmail verstuurd omdat er geen bestanden werden geüpload."
|
690 |
|
691 |
-
#: lib/wfu_constants.php:
|
692 |
msgid ""
|
693 |
"Notification email was not sent because no recipients were defined. Please "
|
694 |
"check notifyrecipients attribute in the shortcode."
|
@@ -696,7 +702,7 @@ msgstr ""
|
|
696 |
"Er werd geen meldingsmail verstuurd omdat er geen ontvangers werden "
|
697 |
"toegekend. Controleer de notifyrecipients attribuut in de shortcode."
|
698 |
|
699 |
-
#: lib/wfu_constants.php:
|
700 |
msgid ""
|
701 |
"Notification email was not sent due to an error. Please check "
|
702 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -704,7 +710,7 @@ msgstr ""
|
|
704 |
"Meldingsmail werd niet verstuurd wegens een fout. Controleer "
|
705 |
"notifyrecipients, notifysubject en notifymessage attributen op fouten."
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"Redirection not executed because redirection link is empty. Please check "
|
710 |
"redirectlink attribute."
|
@@ -712,18 +718,18 @@ msgstr ""
|
|
712 |
"Omleiding niet uitgevoerd omdat de omleidingslink ontbreekt. Controleer het "
|
713 |
"omleidingslink attribuut."
|
714 |
|
715 |
-
#: lib/wfu_constants.php:
|
716 |
msgid ""
|
717 |
"Redirection not executed because not all files were successfully uploaded."
|
718 |
msgstr ""
|
719 |
"Omleiding werd niet uitgevoerd omdat niet alle bestanden correct werden "
|
720 |
"geüpload."
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: lib/wfu_constants.php:
|
727 |
msgid ""
|
728 |
"Hello admin\n"
|
729 |
"\n"
|
@@ -743,19 +749,19 @@ msgid ""
|
|
743 |
"Thanks"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: lib/wfu_constants.php:
|
747 |
msgid ""
|
748 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
749 |
"details please contact info@iptanus.com."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid ""
|
754 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
755 |
"plugin functions. Please read this :article: for resolution."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: lib/wfu_constants.php:
|
759 |
msgid ""
|
760 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
761 |
"message persists, contact administrator."
|
@@ -763,7 +769,7 @@ msgstr ""
|
|
763 |
"De shortcode toevoegen aan de pagina/post is mislukt. Probeer opnieuw. "
|
764 |
"Contacteer de beheerder wanneer dit bericht blijft verschijnen."
|
765 |
|
766 |
-
#: lib/wfu_constants.php:
|
767 |
msgid ""
|
768 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
769 |
"again to edit the shortcode."
|
@@ -771,7 +777,7 @@ msgstr ""
|
|
771 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
772 |
"veranderd. Probeer de shortcode opnieuw aan te passen."
|
773 |
|
774 |
-
#: lib/wfu_constants.php:
|
775 |
msgid ""
|
776 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
777 |
"again to delete it."
|
@@ -779,7 +785,7 @@ msgstr ""
|
|
779 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
780 |
"veranderd. Probeer opnieuw te verwijderen."
|
781 |
|
782 |
-
#: lib/wfu_constants.php:
|
783 |
msgid ""
|
784 |
"The page containing the shortcode has been modified and it is no longer "
|
785 |
"valid. Please go back to reload the shortcode."
|
@@ -787,7 +793,7 @@ msgstr ""
|
|
787 |
"De pagina die de shortcode bevat werd aangepast en is daardoor niet langer "
|
788 |
"geldig. Ga terug om de shortcode te herladen."
|
789 |
|
790 |
-
#: lib/wfu_constants.php:
|
791 |
msgid ""
|
792 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
793 |
"back to reload the shortcode."
|
@@ -795,7 +801,7 @@ msgstr ""
|
|
795 |
"Het updaten van de shortcode is mislukt omdat de inhoud van de pagina werd "
|
796 |
"gewijzigd. Ga terug om de shortcode te herladen."
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid ""
|
800 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
801 |
"go back and reload the shortcode."
|
@@ -803,39 +809,39 @@ msgstr ""
|
|
803 |
"Updaten van de shortcode is mislukt. Probeer opnieuw. Als het probleem zich "
|
804 |
"blijft voordoen, ga dan terug en herlaadt de shortcode."
|
805 |
|
806 |
-
#: lib/wfu_constants.php:
|
807 |
msgid "This is a test message"
|
808 |
msgstr "Dit is een testbericht"
|
809 |
|
810 |
-
#: lib/wfu_constants.php:
|
811 |
msgid "This is a test administrator message"
|
812 |
msgstr "Dit is een test beheerdersbericht"
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid "File testfile 1 under test"
|
816 |
msgstr "Bestand testfile 1 onder test"
|
817 |
|
818 |
-
#: lib/wfu_constants.php:
|
819 |
msgid "File testfile 1 message"
|
820 |
msgstr "Bestand testfile 1 bericht"
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid "File testfile 1 administrator message"
|
824 |
msgstr "Bestand testfile 1 beheerdersbericht"
|
825 |
|
826 |
-
#: lib/wfu_constants.php:
|
827 |
msgid "File testfile 2 under test"
|
828 |
msgstr "Bestand tesfile 2 onder test"
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "File testfile 2 message"
|
832 |
msgstr "Bestand testfile 2 bericht"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "File testfile 2 administrator message"
|
836 |
msgstr "Bestand testfile 2 beheerdersbericht"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid ""
|
840 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
841 |
"current user."
|
@@ -843,7 +849,7 @@ msgstr ""
|
|
843 |
"Plaats de variabele %userid% in de tekst. Het zal worden vervangen door de "
|
844 |
"id van de huidige gebruiker."
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid ""
|
848 |
"Insert variable %username% inside text. It will be replaced by the username "
|
849 |
"of the current user."
|
@@ -851,7 +857,7 @@ msgstr ""
|
|
851 |
"Plaats de variabele %username% in de tekst. Het zal worden vervangen door de "
|
852 |
"gebruikersnaam van de huidige gebruiker."
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid ""
|
856 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
857 |
"the current user."
|
@@ -859,7 +865,7 @@ msgstr ""
|
|
859 |
"Plaats de variabele %usermail% in de tekst. Het zal worden vervangen door "
|
860 |
"het e-mailadres van de huidige gebruiker."
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid ""
|
864 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
865 |
"of the uploaded file."
|
@@ -867,7 +873,7 @@ msgstr ""
|
|
867 |
"Plaats de variabele %filename% in de tekst. Het zal worden vervangen door de "
|
868 |
"bestandsnaam van het geüploade bestand."
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid ""
|
872 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
873 |
"filepath of the uploaded file."
|
@@ -875,7 +881,7 @@ msgstr ""
|
|
875 |
"Plaats de variabele %filepath% in de tekst. Het zal worden vervangen door "
|
876 |
"het volledige bestandspad van het geüploade bestand."
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid ""
|
880 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
881 |
"the website."
|
@@ -883,7 +889,7 @@ msgstr ""
|
|
883 |
"Plaats de variabele %blogid% in de tekst. Het zal worden vervangen door de "
|
884 |
"blog id van de website."
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid ""
|
888 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
889 |
"current page."
|
@@ -891,7 +897,7 @@ msgstr ""
|
|
891 |
"Plaats de variabele %pageid% in de tekst. Het zal worden vervangen door de "
|
892 |
"id van de huidige pagina."
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid ""
|
896 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
897 |
"the current page."
|
@@ -899,7 +905,7 @@ msgstr ""
|
|
899 |
"Plaats de variabele %pagetitle% in de tekst. Het zal worden vervangen door "
|
900 |
"de titel van de huidige pagina."
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid ""
|
904 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
905 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -909,217 +915,234 @@ msgstr ""
|
|
909 |
"via het uitklaplijst. Het zal worden vervangen door de data die de gebruiker "
|
910 |
"in dit veld heeft ingevuld."
|
911 |
|
912 |
-
#: lib/wfu_constants.php:
|
913 |
msgid "Insert variable %n% inside text to denote a line change."
|
914 |
msgstr ""
|
915 |
"Plaats de variabele %n% in de tekst om verder te gaan naar de volgende regel."
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
918 |
msgid "Test Mode"
|
919 |
msgstr "Test Modus"
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "select dir..."
|
923 |
msgstr "selecteer dir..."
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "type dir"
|
927 |
msgstr "type dir"
|
928 |
|
929 |
-
#: lib/wfu_constants.php:
|
930 |
msgid "Upload path: %filepath%"
|
931 |
msgstr "Uploadpad: %filepath%"
|
932 |
|
933 |
-
#: lib/wfu_constants.php:
|
934 |
msgid "Failed upload path: %filepath%"
|
935 |
msgstr "Foutief uploadpad: %filepath%"
|
936 |
|
937 |
-
#: lib/wfu_constants.php:
|
938 |
msgid " (required)"
|
939 |
msgstr "(verplicht)"
|
940 |
|
941 |
-
#: lib/wfu_constants.php:
|
942 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
943 |
msgstr ""
|
944 |
"Bestanden worden geüpload. Ben je zeker dat je de pagina wilt verlaten?"
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "checking captcha..."
|
948 |
msgstr "captcha controleren..."
|
949 |
|
950 |
-
#: lib/wfu_constants.php:
|
951 |
msgid "refreshing..."
|
952 |
msgstr "verversen..."
|
953 |
|
954 |
-
#: lib/wfu_constants.php:
|
955 |
msgid "correct captcha"
|
956 |
msgstr "correcte captcha"
|
957 |
|
958 |
-
#: lib/wfu_constants.php:
|
959 |
msgid "click to continue the upload"
|
960 |
msgstr "Klik om door te gaan met uploaden"
|
961 |
|
962 |
-
#: lib/wfu_constants.php:
|
963 |
msgid "Are you sure you want to delete this file?"
|
964 |
msgstr "Ben je zeker dat je dit bestand wilt verwijderen?"
|
965 |
|
966 |
-
#: lib/wfu_constants.php:
|
967 |
msgid "Are you sure you want to delete these files?"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: lib/wfu_constants.php:
|
971 |
msgid "Bulk Actions"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: lib/wfu_constants.php:
|
975 |
msgid "Apply"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: lib/wfu_constants.php:
|
979 |
msgid "of "
|
980 |
msgstr "van "
|
981 |
|
982 |
-
#: lib/wfu_constants.php:
|
983 |
msgid "Are you sure that you want to cancel the upload?"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: lib/wfu_constants.php:
|
987 |
msgid "cancel upload of this file"
|
988 |
msgstr "uploaden van dit bestand annuleren"
|
989 |
|
990 |
-
#: lib/wfu_constants.php:
|
991 |
msgid "Upload in progress"
|
992 |
msgstr "Upload is bezig"
|
993 |
|
994 |
-
#: lib/wfu_constants.php:
|
995 |
msgid "Upload in progress with warnings!"
|
996 |
msgstr "Upload is bezig met waarschuwingen!"
|
997 |
|
998 |
-
#: lib/wfu_constants.php:
|
999 |
msgid "Upload in progress but some files already failed!"
|
1000 |
msgstr "Upload is bezig maar sommige bestanden zijn reeds mislukt!"
|
1001 |
|
1002 |
-
#: lib/wfu_constants.php:
|
1003 |
msgid "Upload in progress but no files uploaded so far!"
|
1004 |
msgstr "Upload is bezig maar er werden tot nu toe nog geen bestanden geüpload!"
|
1005 |
|
1006 |
-
#: lib/wfu_constants.php:
|
1007 |
msgid "All files uploaded successfully"
|
1008 |
msgstr "Alle bestanden met succes geüpload"
|
1009 |
|
1010 |
-
#: lib/wfu_constants.php:
|
1011 |
msgid "All files uploaded successfully but there are warnings!"
|
1012 |
msgstr "Alle bestanden zijn succesvol geüpload maar er zijn waarschuwingen!"
|
1013 |
|
1014 |
-
#: lib/wfu_constants.php:
|
1015 |
msgid "File uploaded successfully but there are warnings!"
|
1016 |
msgstr "Bestand werd succesvol geüpload maar er zijn waarschuwingen!"
|
1017 |
|
1018 |
-
#: lib/wfu_constants.php:
|
1019 |
msgid "Some files failed to upload!"
|
1020 |
msgstr "Sommige bestanden werden niet geüpload!"
|
1021 |
|
1022 |
-
#: lib/wfu_constants.php:
|
1023 |
msgid "All files failed to upload"
|
1024 |
msgstr "Upload mislukt voor alle bestanden"
|
1025 |
|
1026 |
-
#: lib/wfu_constants.php:
|
1027 |
msgid "File failed to upload"
|
1028 |
msgstr "Upload mislukt voor bestand"
|
1029 |
|
1030 |
-
#: lib/wfu_constants.php:
|
1031 |
msgid "There are no files to upload!"
|
1032 |
msgstr "Er zijn geen bestanden om te uploaden!"
|
1033 |
|
1034 |
-
#: lib/wfu_constants.php:
|
1035 |
msgid "Test upload message"
|
1036 |
msgstr "Test upload berciht"
|
1037 |
|
1038 |
-
#: lib/wfu_constants.php:
|
1039 |
msgid "JSON parse warning!"
|
1040 |
msgstr "JSON parseer waarschuwing!"
|
1041 |
|
1042 |
-
#: lib/wfu_constants.php:
|
1043 |
msgid "please wait while redirecting..."
|
1044 |
msgstr "wacht a.u.b. terwijl je wordt doorverwezen..."
|
1045 |
|
1046 |
-
#: lib/wfu_constants.php:
|
1047 |
msgid "Submitting data"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: lib/wfu_constants.php:
|
1051 |
msgid "Data submitted successfully!"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: lib/wfu_constants.php:
|
1055 |
msgid "Data were not submitted!"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: lib/wfu_constants.php:
|
1059 |
msgid "Cancelling upload"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
msgid "Open visual shortcode editor in new window"
|
1064 |
msgstr "Open de visuele shortcode editor in een nieuw venster"
|
1065 |
|
1066 |
-
#: lib/wfu_constants.php:
|
1067 |
msgid "loading visual editor"
|
1068 |
msgstr "laden visuele editor"
|
1069 |
|
1070 |
-
#: lib/wfu_constants.php:
|
1071 |
msgid "Clear file list?"
|
1072 |
msgstr "Bestandenlijst wissen?"
|
1073 |
|
1074 |
-
#: lib/wfu_constants.php:
|
1075 |
msgid "DROP HERE"
|
1076 |
msgstr "PLAATS HIER"
|
1077 |
|
1078 |
-
#: lib/wfu_constants.php:
|
1079 |
msgid "record video"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: lib/wfu_constants.php:
|
1083 |
msgid "take a picture"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: lib/wfu_constants.php:
|
1087 |
msgid "turn webcam on/off"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: lib/wfu_constants.php:
|
1091 |
msgid "go live again"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: lib/wfu_constants.php:
|
1095 |
msgid "end recording"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: lib/wfu_constants.php:
|
1099 |
msgid "play"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: lib/wfu_constants.php:
|
1103 |
msgid "pause"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: lib/wfu_constants.php:
|
1107 |
msgid "go to the beginning"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: lib/wfu_constants.php:
|
1111 |
msgid "go to the end"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: lib/wfu_constants.php:
|
1115 |
msgid "Wordpress File Upload Form"
|
1116 |
msgstr "Wordpress File Upload Formulier"
|
1117 |
|
1118 |
-
#: lib/wfu_constants.php:
|
1119 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1120 |
msgstr "Wordpress File Upload plugin uploader voor zijbalken"
|
1121 |
|
1122 |
-
#: lib/wfu_constants.php:
|
1123 |
msgid "Upload Files"
|
1124 |
msgstr "Upload Bestanden"
|
1125 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:41+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:41+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: nl_NL\n"
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lib/wfu_constants.php:34
|
108 |
+
msgid ""
|
109 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
110 |
+
"continue!"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
msgid "File"
|
115 |
msgstr "Bestand"
|
116 |
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
msgid "Date"
|
119 |
msgstr "Datum"
|
120 |
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
msgid "Size"
|
123 |
msgstr "Grootte"
|
124 |
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
msgid "User"
|
127 |
msgstr "Gebruiker"
|
128 |
|
129 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
130 |
msgid "Page"
|
131 |
msgstr "Pagina"
|
132 |
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
msgid "User Fields"
|
135 |
msgstr "Gebruikersvelden"
|
136 |
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
msgid "Download"
|
139 |
msgstr "Download"
|
140 |
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
msgid "Download this file"
|
143 |
msgstr "Download dit bestand"
|
144 |
|
145 |
+
#: lib/wfu_constants.php:44
|
146 |
msgid "Delete"
|
147 |
msgstr "Verwijderen"
|
148 |
|
149 |
+
#: lib/wfu_constants.php:45
|
150 |
msgid "Delete this file"
|
151 |
msgstr "Verwijder dit bestand"
|
152 |
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
msgid "Sort list based on this column"
|
155 |
msgstr "Sorteer lijst gebaseerd op deze kolom"
|
156 |
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
msgid "guest"
|
159 |
msgstr "gast"
|
160 |
|
161 |
+
#: lib/wfu_constants.php:48
|
162 |
msgid "unknown"
|
163 |
msgstr "onbekend"
|
164 |
|
165 |
+
#: lib/wfu_constants.php:50
|
166 |
msgid ""
|
167 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
168 |
"attribute."
|
170 |
"Fout. Kon het ftp doel filedir niet vinden. Controleer het domein in "
|
171 |
"'ftpinfo' attribuut."
|
172 |
|
173 |
+
#: lib/wfu_constants.php:51
|
174 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
175 |
msgstr "Fout. Foutieve ftp informatie. Controleer 'ftpinfo' attribuut."
|
176 |
|
177 |
+
#: lib/wfu_constants.php:52
|
178 |
msgid ""
|
179 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
180 |
"syntax."
|
182 |
"Fout. Kon geen ftp informatie halen uit 'ftpinfo' attribuut. Controleer de "
|
183 |
"syntax."
|
184 |
|
185 |
+
#: lib/wfu_constants.php:53
|
186 |
msgid ""
|
187 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
188 |
"attribute."
|
190 |
"Fout. Kon het ftp bestandsnaamdoel niet vinden. Controleer het domein in "
|
191 |
"'ftpinfo' attribuut."
|
192 |
|
193 |
+
#: lib/wfu_constants.php:54
|
194 |
msgid ""
|
195 |
"Error. Could not open source file for ftp upload. Check if file is "
|
196 |
"accessible."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: lib/wfu_constants.php:55
|
200 |
msgid "Error. Could not send data to ftp target file."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: lib/wfu_constants.php:56
|
204 |
msgid ""
|
205 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
206 |
"attribute."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: lib/wfu_constants.php:57
|
210 |
msgid ""
|
211 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
212 |
"'ftpinfo' attribute."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: lib/wfu_constants.php:58
|
216 |
msgid ""
|
217 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
218 |
"supports sftp."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: lib/wfu_constants.php:59
|
222 |
msgid "Error. The web server does not support sftp."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: lib/wfu_constants.php:60
|
226 |
msgid ""
|
227 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
228 |
"preventing the upload of big files.\n"
|
232 |
"weerhoudt je om grote bestanden te uploaden.\n"
|
233 |
"De PHP directive upload_max_filesize limiet is: "
|
234 |
|
235 |
+
#: lib/wfu_constants.php:61
|
236 |
msgid ""
|
237 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
238 |
"upload of big files.\n"
|
242 |
"van grote bestanden.\n"
|
243 |
"PHP directive max_input_time limiet is: "
|
244 |
|
245 |
+
#: lib/wfu_constants.php:62
|
246 |
msgid ""
|
247 |
"Error. Permission denied to write to target folder.\n"
|
248 |
"Check and correct read/write permissions of target folder."
|
250 |
"Fout. Geen toestemming tot schrijven naar doelmap.\n"
|
251 |
"Controleer en corrigeer de lees/schrijf rechten van de doelmap."
|
252 |
|
253 |
+
#: lib/wfu_constants.php:63
|
254 |
msgid ""
|
255 |
"Error. This file was rejected because its extension is not correct. Its "
|
256 |
"proper filename is: "
|
258 |
"Fout. Dit bestand werd geweigerd omdat de extensie niet correct is. De "
|
259 |
"correcte bestandnaam is: "
|
260 |
|
261 |
+
#: lib/wfu_constants.php:64
|
262 |
msgid ""
|
263 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
264 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
265 |
"suspicious behaviour."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: lib/wfu_constants.php:65
|
269 |
msgid ""
|
270 |
"File not uploaded in order to prevent overflow of the website. Please "
|
271 |
"contact administrator."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: lib/wfu_constants.php:66
|
275 |
msgid "Target folder doesn't exist."
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: lib/wfu_constants.php:67
|
279 |
msgid "Upload failed! Missing a temporary folder."
|
280 |
msgstr "Upload mislukt! Er ontbreekt een tijdelijke map."
|
281 |
|
282 |
+
#: lib/wfu_constants.php:68
|
283 |
msgid "Upload failed! Permission denied to write to target folder."
|
284 |
msgstr "Upload mislukt! Toestemming ontbreekt om te schrijven naar doelmap."
|
285 |
|
286 |
+
#: lib/wfu_constants.php:69
|
287 |
msgid "File not allowed."
|
288 |
msgstr "Bestand niet toegelaten."
|
289 |
|
290 |
+
#: lib/wfu_constants.php:70
|
291 |
msgid "File is suspicious and was rejected."
|
292 |
msgstr "Bestand is dubieus en werd niet toegelaten."
|
293 |
|
294 |
+
#: lib/wfu_constants.php:71
|
295 |
msgid "The uploaded file exceeds the file size limit."
|
296 |
msgstr "Het geüploade bestand overschrijdt de toegestane grootte."
|
297 |
|
298 |
+
#: lib/wfu_constants.php:72
|
299 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
300 |
msgstr ""
|
301 |
"Het geüploade bestand overschrijdt 2GB en wordt niet ondersteund door deze "
|
302 |
"server."
|
303 |
|
304 |
+
#: lib/wfu_constants.php:73
|
305 |
msgid ""
|
306 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
307 |
"Please contact the administrator."
|
309 |
"Upload mislukt! Het geüploade bestand overschrijdt de bestandsgrootte van de "
|
310 |
"server. Neem contact op met de beheerder."
|
311 |
|
312 |
+
#: lib/wfu_constants.php:74
|
313 |
msgid ""
|
314 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
315 |
"server. Please contact the administrator."
|
317 |
"Upload mislukt! De duur van de upload overschreed de termijn van de server. "
|
318 |
"Neem contact op met de beheerder."
|
319 |
|
320 |
+
#: lib/wfu_constants.php:75
|
321 |
msgid ""
|
322 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
323 |
"was specified in the HTML form."
|
325 |
"Upload mislukt! Het geüploade bestand is groter dan de MAX_FILE_SIZE "
|
326 |
"aangegeven voor dit HTML formulier."
|
327 |
|
328 |
+
#: lib/wfu_constants.php:76
|
329 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
330 |
msgstr "Upload mislukt! Het geüploade bestand is slechts deels geüpload."
|
331 |
|
332 |
+
#: lib/wfu_constants.php:77
|
333 |
msgid "Upload failed! No file was uploaded."
|
334 |
msgstr "Upload mislukt! Er werd geen bestand geüpload."
|
335 |
|
336 |
+
#: lib/wfu_constants.php:78
|
337 |
msgid "Upload failed! Failed to write file to disk."
|
338 |
msgstr ""
|
339 |
"Upload mislukt! Het is niet gelukt het bestand naar de schijf te schrijven."
|
340 |
|
341 |
+
#: lib/wfu_constants.php:79
|
342 |
msgid ""
|
343 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
344 |
"administrator."
|
346 |
"Upload mislukt! Er is een fout opgetreden tijdens het verplaatsen van het "
|
347 |
"tijdelijke bestand. Contacteer de beheerder."
|
348 |
|
349 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
350 |
msgid "Upload cancelled!"
|
351 |
msgstr "Upload geannuleerd!"
|
352 |
|
353 |
+
#: lib/wfu_constants.php:81
|
354 |
msgid ""
|
355 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
356 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
360 |
"mogelijkheid om te achterhalen welke extensie de oorzaak is; onderzoek van "
|
361 |
"de lijst met actieve extensies met phpinfo() kan nuttig zijn."
|
362 |
|
363 |
+
#: lib/wfu_constants.php:82
|
364 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
365 |
msgstr "Upload mislukt! Een fout is opgetreden tijdens het uploaden."
|
366 |
|
367 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
368 |
msgid "Upload failed!"
|
369 |
msgstr "Upload mislukt!"
|
370 |
|
371 |
+
#: lib/wfu_constants.php:84
|
372 |
msgid "No file!"
|
373 |
msgstr "Geen bestand!"
|
374 |
|
375 |
+
#: lib/wfu_constants.php:85
|
376 |
msgid ""
|
377 |
"Upload failed! The upload has been canceled by the user or the browser "
|
378 |
"dropped the connection."
|
380 |
"Upload mislukt! De upload werd geannuleerd door de gebruiker of de "
|
381 |
"verbinding met de server werd verbroken."
|
382 |
|
383 |
+
#: lib/wfu_constants.php:86
|
384 |
msgid "Upload failed! Unknown error."
|
385 |
msgstr "Upload mislukt! Onbekende fout."
|
386 |
|
387 |
+
#: lib/wfu_constants.php:87
|
388 |
msgid "Please contact the administrator."
|
389 |
msgstr "Contacteer de beheerder."
|
390 |
|
391 |
+
#: lib/wfu_constants.php:88
|
392 |
msgid "No result from remote server!"
|
393 |
msgstr "Geen resultaten van de server!"
|
394 |
|
395 |
+
#: lib/wfu_constants.php:89
|
396 |
msgid " but with warnings"
|
397 |
msgstr " maar met waarschuwingen"
|
398 |
|
399 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
400 |
msgid "Warning: JSON parse error."
|
401 |
msgstr "Opgelet: JSON parseerfout."
|
402 |
|
403 |
+
#: lib/wfu_constants.php:91
|
404 |
msgid ""
|
405 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
406 |
"not be parsed."
|
408 |
"De uploadparameters van dit bestand, doorgegeven als JSON string to the "
|
409 |
"handler, kon niet worden ontleed."
|
410 |
|
411 |
+
#: lib/wfu_constants.php:93
|
412 |
msgid ""
|
413 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
414 |
msgstr ""
|
415 |
"UploadStates, doorgegeven als JSON string to the handler, kon niet worden "
|
416 |
"ontleed."
|
417 |
|
418 |
+
#: lib/wfu_constants.php:94
|
419 |
msgid ""
|
420 |
"Redirection to classic form functionality occurred due to unknown error."
|
421 |
msgstr ""
|
422 |
"Doorsturen naar classic form functionaliteit trad op door onbekende fout."
|
423 |
|
424 |
+
#: lib/wfu_constants.php:95
|
425 |
msgid ""
|
426 |
"Redirection to classic form functionality occurred because AJAX is not "
|
427 |
"supported."
|
429 |
"Doorsturen naar classic form functionaliteit trad op omdat AJAX niet wordt "
|
430 |
"ondersteund."
|
431 |
|
432 |
+
#: lib/wfu_constants.php:96
|
433 |
msgid ""
|
434 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
435 |
"supported."
|
437 |
"Doorsturen naar classic form functionaliteit trad op omdat HTML5 niet wordt "
|
438 |
"ondersteund."
|
439 |
|
440 |
+
#: lib/wfu_constants.php:97
|
441 |
msgid ""
|
442 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
443 |
msgstr ""
|
444 |
"Doorsturen naar classic form functionaliteit trad op wegens JSON parseerfout."
|
445 |
|
446 |
+
#: lib/wfu_constants.php:98
|
447 |
msgid "Please enable popup windows from the browser's settings!"
|
448 |
msgstr "Activeer popup vensters in de browserinstellingen!"
|
449 |
|
450 |
+
#: lib/wfu_constants.php:99
|
451 |
msgid "cannot be empty!"
|
452 |
msgstr "kan niet leeg zijn!"
|
453 |
|
454 |
+
#: lib/wfu_constants.php:100
|
455 |
msgid "number not valid!"
|
456 |
msgstr "nummer niet geldig!"
|
457 |
|
458 |
+
#: lib/wfu_constants.php:101
|
459 |
msgid "email not valid!"
|
460 |
msgstr "e-mail niet geldig!"
|
461 |
|
462 |
+
#: lib/wfu_constants.php:102
|
463 |
msgid "emails do not match!"
|
464 |
msgstr "e-mails komen niet overeen!"
|
465 |
|
466 |
+
#: lib/wfu_constants.php:103
|
467 |
msgid "no base email field in group!"
|
468 |
msgstr "geen hoofd e-mailveld in de groep!"
|
469 |
|
470 |
+
#: lib/wfu_constants.php:104
|
471 |
msgid "passwords do not match!"
|
472 |
msgstr "Wachtwoorden komen niet overeen!"
|
473 |
|
474 |
+
#: lib/wfu_constants.php:105
|
475 |
msgid "no base password field in group!"
|
476 |
msgstr "geen hoofd wachtwoordveld in de groep!"
|
477 |
|
478 |
+
#: lib/wfu_constants.php:106
|
479 |
msgid "checkbox unchecked!"
|
480 |
msgstr "checkbox niet aangevinkt!"
|
481 |
|
482 |
+
#: lib/wfu_constants.php:107
|
483 |
msgid "no option selected!"
|
484 |
msgstr "geen optie geselecteerd!"
|
485 |
|
486 |
+
#: lib/wfu_constants.php:108
|
487 |
msgid "no item selected!"
|
488 |
msgstr "geen item geselecteerd!"
|
489 |
|
490 |
+
#: lib/wfu_constants.php:109
|
491 |
msgid ""
|
492 |
"There are more than one instances of the plugin in this page with the same "
|
493 |
"id. Please change it."
|
495 |
"Er is meer dan één verzoek van deze plugin op deze pagina met dezelfde id. "
|
496 |
"Pas dit aan."
|
497 |
|
498 |
+
#: lib/wfu_constants.php:110
|
499 |
msgid ""
|
500 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
501 |
"the page."
|
503 |
"Kan de shortcode niet aanpassen omdat de pagina werd aangepast. Herlaadt de "
|
504 |
"pagina."
|
505 |
|
506 |
+
#: lib/wfu_constants.php:111
|
507 |
msgid "Your browser does not support webcam capture!"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: lib/wfu_constants.php:112
|
511 |
msgid "Your browser does not support video recording from the webcam!"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: lib/wfu_constants.php:113
|
515 |
msgid "No video was recorded!"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: lib/wfu_constants.php:114
|
519 |
msgid ""
|
520 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
521 |
"or use RecaptchaV2 (no account)."
|
523 |
"FOUT: Captcha niet ondersteund! Je gebruikt een oude PHP versie. Upgrade "
|
524 |
"jouw PHP of gebruik RecaptchaV2 (geen account)."
|
525 |
|
526 |
+
#: lib/wfu_constants.php:115
|
527 |
msgid ""
|
528 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
529 |
"notify administrator."
|
531 |
"FOUT: slechts één versie van RecaptchaV1 kan bestaan op dezelfde pagina. "
|
532 |
"Informeer de beheerder."
|
533 |
|
534 |
+
#: lib/wfu_constants.php:116
|
535 |
msgid ""
|
536 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
537 |
"use RecaptchaV1 (no account)."
|
539 |
"FOUT: slechts één versie van RecaptchaV1 kan bestaan op dezelfde pagina. "
|
540 |
"Gebruik RecaptchaV1 (geen account)."
|
541 |
|
542 |
+
#: lib/wfu_constants.php:117
|
543 |
msgid "ERROR: No site key. Please contact administrator!"
|
544 |
msgstr "FOUT: Geen websitesleutel. Contacteer de beheerder!"
|
545 |
|
546 |
+
#: lib/wfu_constants.php:118
|
547 |
msgid ""
|
548 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
549 |
"define Google Recaptcha keys."
|
551 |
"FOUT: Geen websitesleutel gedefinieerd! Ga naar de plugin instellingen in "
|
552 |
"het Dashboard om de Google Recaptcha sleutels te bepalen."
|
553 |
|
554 |
+
#: lib/wfu_constants.php:119
|
555 |
msgid "Bad captcha image!"
|
556 |
msgstr "Foute captcha afbeelding!"
|
557 |
|
558 |
+
#: lib/wfu_constants.php:120
|
559 |
msgid "No input!"
|
560 |
msgstr "Geen invoer!"
|
561 |
|
562 |
+
#: lib/wfu_constants.php:121
|
563 |
msgid "Captcha not completed!"
|
564 |
msgstr "Captcha niet voltooid!"
|
565 |
|
566 |
+
#: lib/wfu_constants.php:122
|
567 |
msgid "Wrong captcha!"
|
568 |
msgstr "Foute captcha!"
|
569 |
|
570 |
+
#: lib/wfu_constants.php:123
|
571 |
msgid "Error refreshing captcha!"
|
572 |
msgstr "Fout bij het verversen van de captcha!"
|
573 |
|
574 |
+
#: lib/wfu_constants.php:124
|
575 |
msgid "Unknown captcha error!"
|
576 |
msgstr "Onbekende captchafout!"
|
577 |
|
578 |
+
#: lib/wfu_constants.php:125
|
579 |
msgid "Captcha not supported by your browser!"
|
580 |
msgstr "Captcha niet ondersteund door jouw browser!"
|
581 |
|
582 |
+
#: lib/wfu_constants.php:126
|
583 |
msgid "the secret parameter is missing"
|
584 |
msgstr "de geheime parameter ontbreekt"
|
585 |
|
586 |
+
#: lib/wfu_constants.php:127
|
587 |
msgid "the secret parameter is invalid or malformed"
|
588 |
msgstr "de geheime parameter is ongeldig of foutief gevormd"
|
589 |
|
590 |
+
#: lib/wfu_constants.php:128
|
591 |
msgid "the response parameter is missing"
|
592 |
msgstr "de antwoord parameter ontbreekt"
|
593 |
|
594 |
+
#: lib/wfu_constants.php:129
|
595 |
msgid "the response parameter is invalid or malformed"
|
596 |
msgstr "de antwoord parameter is ongeldig of foutief gevormd"
|
597 |
|
598 |
+
#: lib/wfu_constants.php:130
|
599 |
msgid "Please do not use drag drop due to an internal problem."
|
600 |
msgstr "Gebruik geen drag drop wegens een intern probleem."
|
601 |
|
602 |
+
#: lib/wfu_constants.php:131
|
603 |
#, php-format
|
604 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
605 |
msgstr "Fout tijdens blok-upload. Unieke ID is leeg in blok %d"
|
606 |
|
607 |
+
#: lib/wfu_constants.php:132
|
608 |
msgid "Chunked upload is not allowed!"
|
609 |
msgstr "Blok upload is niet toegestaan!"
|
610 |
|
611 |
+
#: lib/wfu_constants.php:133
|
612 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
613 |
msgstr "Blok upload werd afgebroken wegens een fout in vorige blok!"
|
614 |
|
615 |
+
#: lib/wfu_constants.php:134
|
616 |
msgid "Chunked upload failed, final file could not be created!"
|
617 |
msgstr "Blok upload mislukt, laatste bestand kon niet worden aangemaakt!"
|
618 |
|
619 |
+
#: lib/wfu_constants.php:135
|
620 |
#, php-format
|
621 |
msgid "Could not write file chuck to destination on chunk %d"
|
622 |
msgstr "Kon bestandsblok niet wegschrijven naar bestemming op blok %d"
|
623 |
|
624 |
+
#: lib/wfu_constants.php:136
|
625 |
#, php-format
|
626 |
msgid "Could not enlarge destination file on chunk %d"
|
627 |
msgstr "Kon het bestemmingsbestand niet vergroten op blok %d"
|
628 |
|
629 |
+
#: lib/wfu_constants.php:137
|
630 |
#, php-format
|
631 |
msgid "Could not open file handles on chunk %d"
|
632 |
msgstr "Kon het bestand op blok %d niet openen"
|
633 |
|
634 |
+
#: lib/wfu_constants.php:138
|
635 |
msgid "You are not allowed to download this file!"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: lib/wfu_constants.php:139
|
639 |
msgid "File does not exist!"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: lib/wfu_constants.php:140
|
643 |
msgid "Could not download file!"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: lib/wfu_constants.php:141
|
647 |
msgid "You are not allowed to delete this file!"
|
648 |
msgstr "Je hebt geen toestemming om dit bestand te verwijderen!"
|
649 |
|
650 |
+
#: lib/wfu_constants.php:142
|
651 |
msgid "File was not deleted!"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: lib/wfu_constants.php:143
|
655 |
msgid "No file was deleted!"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: lib/wfu_constants.php:144
|
659 |
msgid "Some files were not deleted!"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: lib/wfu_constants.php:146
|
663 |
msgid "Upload skipped! File already exists."
|
664 |
msgstr "Upload overgeslagen! Bestand bestaat al."
|
665 |
|
666 |
+
#: lib/wfu_constants.php:147
|
667 |
msgid "The extension of the file does not match its contents."
|
668 |
msgstr "De extensie van het bestand komt niet overeen met zijn inhoud."
|
669 |
|
670 |
+
#: lib/wfu_constants.php:148
|
671 |
msgid ""
|
672 |
"Upload succeeded but the file is suspicious because its contents do not "
|
673 |
"match its extension. Its proper filename is: "
|
675 |
"Upload is gelukt maar het bestand is dubieus omdat zijn inhoud niet overeen "
|
676 |
"komt met de extensie. De correcte bestandsnaam is "
|
677 |
|
678 |
+
#: lib/wfu_constants.php:149
|
679 |
msgid "No files have been selected!"
|
680 |
msgstr "Er werden geen bestanden geselecteerd!"
|
681 |
|
682 |
+
#: lib/wfu_constants.php:150
|
683 |
msgid "Please complete the consent question before continuing the upload!"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: lib/wfu_constants.php:151
|
687 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
688 |
msgstr ""
|
689 |
"WPFilebase Plugin werd niet geüpdatet omdat er geen bestanden werden "
|
690 |
"geüpload."
|
691 |
|
692 |
+
#: lib/wfu_constants.php:152
|
693 |
msgid "Notification email was not sent because there were no files uploaded."
|
694 |
msgstr ""
|
695 |
"Er werd geen meldingsmail verstuurd omdat er geen bestanden werden geüpload."
|
696 |
|
697 |
+
#: lib/wfu_constants.php:153
|
698 |
msgid ""
|
699 |
"Notification email was not sent because no recipients were defined. Please "
|
700 |
"check notifyrecipients attribute in the shortcode."
|
702 |
"Er werd geen meldingsmail verstuurd omdat er geen ontvangers werden "
|
703 |
"toegekend. Controleer de notifyrecipients attribuut in de shortcode."
|
704 |
|
705 |
+
#: lib/wfu_constants.php:154
|
706 |
msgid ""
|
707 |
"Notification email was not sent due to an error. Please check "
|
708 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
710 |
"Meldingsmail werd niet verstuurd wegens een fout. Controleer "
|
711 |
"notifyrecipients, notifysubject en notifymessage attributen op fouten."
|
712 |
|
713 |
+
#: lib/wfu_constants.php:155
|
714 |
msgid ""
|
715 |
"Redirection not executed because redirection link is empty. Please check "
|
716 |
"redirectlink attribute."
|
718 |
"Omleiding niet uitgevoerd omdat de omleidingslink ontbreekt. Controleer het "
|
719 |
"omleidingslink attribuut."
|
720 |
|
721 |
+
#: lib/wfu_constants.php:156
|
722 |
msgid ""
|
723 |
"Redirection not executed because not all files were successfully uploaded."
|
724 |
msgstr ""
|
725 |
"Omleiding werd niet uitgevoerd omdat niet alle bestanden correct werden "
|
726 |
"geüpload."
|
727 |
|
728 |
+
#: lib/wfu_constants.php:157
|
729 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: lib/wfu_constants.php:158
|
733 |
msgid ""
|
734 |
"Hello admin\n"
|
735 |
"\n"
|
749 |
"Thanks"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: lib/wfu_constants.php:159
|
753 |
msgid ""
|
754 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
755 |
"details please contact info@iptanus.com."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: lib/wfu_constants.php:160
|
759 |
msgid ""
|
760 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
761 |
"plugin functions. Please read this :article: for resolution."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: lib/wfu_constants.php:162
|
765 |
msgid ""
|
766 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
767 |
"message persists, contact administrator."
|
769 |
"De shortcode toevoegen aan de pagina/post is mislukt. Probeer opnieuw. "
|
770 |
"Contacteer de beheerder wanneer dit bericht blijft verschijnen."
|
771 |
|
772 |
+
#: lib/wfu_constants.php:163
|
773 |
msgid ""
|
774 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
775 |
"again to edit the shortcode."
|
777 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
778 |
"veranderd. Probeer de shortcode opnieuw aan te passen."
|
779 |
|
780 |
+
#: lib/wfu_constants.php:164
|
781 |
msgid ""
|
782 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
783 |
"again to delete it."
|
785 |
"De shortcode aanpassen is mislukt omdat de inhoud van de pagina is "
|
786 |
"veranderd. Probeer opnieuw te verwijderen."
|
787 |
|
788 |
+
#: lib/wfu_constants.php:165
|
789 |
msgid ""
|
790 |
"The page containing the shortcode has been modified and it is no longer "
|
791 |
"valid. Please go back to reload the shortcode."
|
793 |
"De pagina die de shortcode bevat werd aangepast en is daardoor niet langer "
|
794 |
"geldig. Ga terug om de shortcode te herladen."
|
795 |
|
796 |
+
#: lib/wfu_constants.php:166
|
797 |
msgid ""
|
798 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
799 |
"back to reload the shortcode."
|
801 |
"Het updaten van de shortcode is mislukt omdat de inhoud van de pagina werd "
|
802 |
"gewijzigd. Ga terug om de shortcode te herladen."
|
803 |
|
804 |
+
#: lib/wfu_constants.php:167
|
805 |
msgid ""
|
806 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
807 |
"go back and reload the shortcode."
|
809 |
"Updaten van de shortcode is mislukt. Probeer opnieuw. Als het probleem zich "
|
810 |
"blijft voordoen, ga dan terug en herlaadt de shortcode."
|
811 |
|
812 |
+
#: lib/wfu_constants.php:169
|
813 |
msgid "This is a test message"
|
814 |
msgstr "Dit is een testbericht"
|
815 |
|
816 |
+
#: lib/wfu_constants.php:170
|
817 |
msgid "This is a test administrator message"
|
818 |
msgstr "Dit is een test beheerdersbericht"
|
819 |
|
820 |
+
#: lib/wfu_constants.php:171
|
821 |
msgid "File testfile 1 under test"
|
822 |
msgstr "Bestand testfile 1 onder test"
|
823 |
|
824 |
+
#: lib/wfu_constants.php:172
|
825 |
msgid "File testfile 1 message"
|
826 |
msgstr "Bestand testfile 1 bericht"
|
827 |
|
828 |
+
#: lib/wfu_constants.php:173
|
829 |
msgid "File testfile 1 administrator message"
|
830 |
msgstr "Bestand testfile 1 beheerdersbericht"
|
831 |
|
832 |
+
#: lib/wfu_constants.php:174
|
833 |
msgid "File testfile 2 under test"
|
834 |
msgstr "Bestand tesfile 2 onder test"
|
835 |
|
836 |
+
#: lib/wfu_constants.php:175
|
837 |
msgid "File testfile 2 message"
|
838 |
msgstr "Bestand testfile 2 bericht"
|
839 |
|
840 |
+
#: lib/wfu_constants.php:176
|
841 |
msgid "File testfile 2 administrator message"
|
842 |
msgstr "Bestand testfile 2 beheerdersbericht"
|
843 |
|
844 |
+
#: lib/wfu_constants.php:178
|
845 |
msgid ""
|
846 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
847 |
"current user."
|
849 |
"Plaats de variabele %userid% in de tekst. Het zal worden vervangen door de "
|
850 |
"id van de huidige gebruiker."
|
851 |
|
852 |
+
#: lib/wfu_constants.php:179
|
853 |
msgid ""
|
854 |
"Insert variable %username% inside text. It will be replaced by the username "
|
855 |
"of the current user."
|
857 |
"Plaats de variabele %username% in de tekst. Het zal worden vervangen door de "
|
858 |
"gebruikersnaam van de huidige gebruiker."
|
859 |
|
860 |
+
#: lib/wfu_constants.php:180
|
861 |
msgid ""
|
862 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
863 |
"the current user."
|
865 |
"Plaats de variabele %usermail% in de tekst. Het zal worden vervangen door "
|
866 |
"het e-mailadres van de huidige gebruiker."
|
867 |
|
868 |
+
#: lib/wfu_constants.php:181
|
869 |
msgid ""
|
870 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
871 |
"of the uploaded file."
|
873 |
"Plaats de variabele %filename% in de tekst. Het zal worden vervangen door de "
|
874 |
"bestandsnaam van het geüploade bestand."
|
875 |
|
876 |
+
#: lib/wfu_constants.php:182
|
877 |
msgid ""
|
878 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
879 |
"filepath of the uploaded file."
|
881 |
"Plaats de variabele %filepath% in de tekst. Het zal worden vervangen door "
|
882 |
"het volledige bestandspad van het geüploade bestand."
|
883 |
|
884 |
+
#: lib/wfu_constants.php:183
|
885 |
msgid ""
|
886 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
887 |
"the website."
|
889 |
"Plaats de variabele %blogid% in de tekst. Het zal worden vervangen door de "
|
890 |
"blog id van de website."
|
891 |
|
892 |
+
#: lib/wfu_constants.php:184
|
893 |
msgid ""
|
894 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
895 |
"current page."
|
897 |
"Plaats de variabele %pageid% in de tekst. Het zal worden vervangen door de "
|
898 |
"id van de huidige pagina."
|
899 |
|
900 |
+
#: lib/wfu_constants.php:185
|
901 |
msgid ""
|
902 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
903 |
"the current page."
|
905 |
"Plaats de variabele %pagetitle% in de tekst. Het zal worden vervangen door "
|
906 |
"de titel van de huidige pagina."
|
907 |
|
908 |
+
#: lib/wfu_constants.php:186
|
909 |
msgid ""
|
910 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
911 |
"drop-down list. It will be replaced by the value that the user entered in "
|
915 |
"via het uitklaplijst. Het zal worden vervangen door de data die de gebruiker "
|
916 |
"in dit veld heeft ingevuld."
|
917 |
|
918 |
+
#: lib/wfu_constants.php:187
|
919 |
msgid "Insert variable %n% inside text to denote a line change."
|
920 |
msgstr ""
|
921 |
"Plaats de variabele %n% in de tekst om verder te gaan naar de volgende regel."
|
922 |
|
923 |
+
#: lib/wfu_constants.php:189
|
924 |
+
#, php-format
|
925 |
+
msgid "File %filename% uploaded successfully but not saved"
|
926 |
+
msgstr ""
|
927 |
+
|
928 |
+
#: lib/wfu_constants.php:190
|
929 |
msgid "Test Mode"
|
930 |
msgstr "Test Modus"
|
931 |
|
932 |
+
#: lib/wfu_constants.php:191
|
933 |
msgid "select dir..."
|
934 |
msgstr "selecteer dir..."
|
935 |
|
936 |
+
#: lib/wfu_constants.php:192
|
937 |
msgid "type dir"
|
938 |
msgstr "type dir"
|
939 |
|
940 |
+
#: lib/wfu_constants.php:193
|
941 |
msgid "Upload path: %filepath%"
|
942 |
msgstr "Uploadpad: %filepath%"
|
943 |
|
944 |
+
#: lib/wfu_constants.php:194
|
945 |
msgid "Failed upload path: %filepath%"
|
946 |
msgstr "Foutief uploadpad: %filepath%"
|
947 |
|
948 |
+
#: lib/wfu_constants.php:195
|
949 |
msgid " (required)"
|
950 |
msgstr "(verplicht)"
|
951 |
|
952 |
+
#: lib/wfu_constants.php:196
|
953 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
954 |
msgstr ""
|
955 |
"Bestanden worden geüpload. Ben je zeker dat je de pagina wilt verlaten?"
|
956 |
|
957 |
+
#: lib/wfu_constants.php:197
|
958 |
msgid "checking captcha..."
|
959 |
msgstr "captcha controleren..."
|
960 |
|
961 |
+
#: lib/wfu_constants.php:198
|
962 |
msgid "refreshing..."
|
963 |
msgstr "verversen..."
|
964 |
|
965 |
+
#: lib/wfu_constants.php:199
|
966 |
msgid "correct captcha"
|
967 |
msgstr "correcte captcha"
|
968 |
|
969 |
+
#: lib/wfu_constants.php:200
|
970 |
msgid "click to continue the upload"
|
971 |
msgstr "Klik om door te gaan met uploaden"
|
972 |
|
973 |
+
#: lib/wfu_constants.php:201
|
974 |
msgid "Are you sure you want to delete this file?"
|
975 |
msgstr "Ben je zeker dat je dit bestand wilt verwijderen?"
|
976 |
|
977 |
+
#: lib/wfu_constants.php:202
|
978 |
msgid "Are you sure you want to delete these files?"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: lib/wfu_constants.php:203
|
982 |
msgid "Bulk Actions"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: lib/wfu_constants.php:204
|
986 |
msgid "Apply"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: lib/wfu_constants.php:206
|
990 |
msgid "of "
|
991 |
msgstr "van "
|
992 |
|
993 |
+
#: lib/wfu_constants.php:207
|
994 |
msgid "Are you sure that you want to cancel the upload?"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: lib/wfu_constants.php:208
|
998 |
msgid "cancel upload of this file"
|
999 |
msgstr "uploaden van dit bestand annuleren"
|
1000 |
|
1001 |
+
#: lib/wfu_constants.php:209
|
1002 |
msgid "Upload in progress"
|
1003 |
msgstr "Upload is bezig"
|
1004 |
|
1005 |
+
#: lib/wfu_constants.php:210
|
1006 |
msgid "Upload in progress with warnings!"
|
1007 |
msgstr "Upload is bezig met waarschuwingen!"
|
1008 |
|
1009 |
+
#: lib/wfu_constants.php:211
|
1010 |
msgid "Upload in progress but some files already failed!"
|
1011 |
msgstr "Upload is bezig maar sommige bestanden zijn reeds mislukt!"
|
1012 |
|
1013 |
+
#: lib/wfu_constants.php:212
|
1014 |
msgid "Upload in progress but no files uploaded so far!"
|
1015 |
msgstr "Upload is bezig maar er werden tot nu toe nog geen bestanden geüpload!"
|
1016 |
|
1017 |
+
#: lib/wfu_constants.php:213
|
1018 |
msgid "All files uploaded successfully"
|
1019 |
msgstr "Alle bestanden met succes geüpload"
|
1020 |
|
1021 |
+
#: lib/wfu_constants.php:214
|
1022 |
msgid "All files uploaded successfully but there are warnings!"
|
1023 |
msgstr "Alle bestanden zijn succesvol geüpload maar er zijn waarschuwingen!"
|
1024 |
|
1025 |
+
#: lib/wfu_constants.php:215
|
1026 |
msgid "File uploaded successfully but there are warnings!"
|
1027 |
msgstr "Bestand werd succesvol geüpload maar er zijn waarschuwingen!"
|
1028 |
|
1029 |
+
#: lib/wfu_constants.php:216
|
1030 |
msgid "Some files failed to upload!"
|
1031 |
msgstr "Sommige bestanden werden niet geüpload!"
|
1032 |
|
1033 |
+
#: lib/wfu_constants.php:217
|
1034 |
msgid "All files failed to upload"
|
1035 |
msgstr "Upload mislukt voor alle bestanden"
|
1036 |
|
1037 |
+
#: lib/wfu_constants.php:218
|
1038 |
msgid "File failed to upload"
|
1039 |
msgstr "Upload mislukt voor bestand"
|
1040 |
|
1041 |
+
#: lib/wfu_constants.php:219
|
1042 |
msgid "There are no files to upload!"
|
1043 |
msgstr "Er zijn geen bestanden om te uploaden!"
|
1044 |
|
1045 |
+
#: lib/wfu_constants.php:220
|
1046 |
msgid "Test upload message"
|
1047 |
msgstr "Test upload berciht"
|
1048 |
|
1049 |
+
#: lib/wfu_constants.php:221
|
1050 |
msgid "JSON parse warning!"
|
1051 |
msgstr "JSON parseer waarschuwing!"
|
1052 |
|
1053 |
+
#: lib/wfu_constants.php:222
|
1054 |
msgid "please wait while redirecting..."
|
1055 |
msgstr "wacht a.u.b. terwijl je wordt doorverwezen..."
|
1056 |
|
1057 |
+
#: lib/wfu_constants.php:224
|
1058 |
msgid "Submitting data"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: lib/wfu_constants.php:225
|
1062 |
msgid "Data submitted successfully!"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: lib/wfu_constants.php:226
|
1066 |
msgid "Data were not submitted!"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: lib/wfu_constants.php:227
|
1070 |
msgid "Cancelling upload"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
+
#: lib/wfu_constants.php:229
|
1074 |
+
msgid "Upload succeeded!"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: lib/wfu_constants.php:230
|
1078 |
+
msgid "Upload completed but no files were saved!"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: lib/wfu_constants.php:231
|
1082 |
+
msgid "File was not saved due to personal data policy!"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: lib/wfu_constants.php:232
|
1086 |
msgid "Open visual shortcode editor in new window"
|
1087 |
msgstr "Open de visuele shortcode editor in een nieuw venster"
|
1088 |
|
1089 |
+
#: lib/wfu_constants.php:233
|
1090 |
msgid "loading visual editor"
|
1091 |
msgstr "laden visuele editor"
|
1092 |
|
1093 |
+
#: lib/wfu_constants.php:234
|
1094 |
msgid "Clear file list?"
|
1095 |
msgstr "Bestandenlijst wissen?"
|
1096 |
|
1097 |
+
#: lib/wfu_constants.php:235
|
1098 |
msgid "DROP HERE"
|
1099 |
msgstr "PLAATS HIER"
|
1100 |
|
1101 |
+
#: lib/wfu_constants.php:237
|
1102 |
msgid "record video"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: lib/wfu_constants.php:238
|
1106 |
msgid "take a picture"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: lib/wfu_constants.php:239
|
1110 |
msgid "turn webcam on/off"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: lib/wfu_constants.php:240
|
1114 |
msgid "go live again"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: lib/wfu_constants.php:241
|
1118 |
msgid "end recording"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: lib/wfu_constants.php:242
|
1122 |
msgid "play"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: lib/wfu_constants.php:243
|
1126 |
msgid "pause"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: lib/wfu_constants.php:244
|
1130 |
msgid "go to the beginning"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: lib/wfu_constants.php:245
|
1134 |
msgid "go to the end"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: lib/wfu_constants.php:247
|
1138 |
msgid "Wordpress File Upload Form"
|
1139 |
msgstr "Wordpress File Upload Formulier"
|
1140 |
|
1141 |
+
#: lib/wfu_constants.php:248
|
1142 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1143 |
msgstr "Wordpress File Upload plugin uploader voor zijbalken"
|
1144 |
|
1145 |
+
#: lib/wfu_constants.php:249
|
1146 |
msgid "Upload Files"
|
1147 |
msgstr "Upload Bestanden"
|
1148 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -105,59 +105,65 @@ msgid ""
|
|
105 |
"By activating this option I agree to let the website keep my personal data"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "File"
|
110 |
msgstr "Plik"
|
111 |
|
112 |
-
#: lib/wfu_constants.php:
|
113 |
msgid "Date"
|
114 |
msgstr "Data"
|
115 |
|
116 |
-
#: lib/wfu_constants.php:
|
117 |
msgid "Size"
|
118 |
msgstr "Rozmiar"
|
119 |
|
120 |
-
#: lib/wfu_constants.php:
|
121 |
msgid "User"
|
122 |
msgstr "Użytkownik"
|
123 |
|
124 |
-
#: lib/wfu_constants.php:
|
125 |
msgid "Page"
|
126 |
msgstr "Strona"
|
127 |
|
128 |
-
#: lib/wfu_constants.php:
|
129 |
msgid "User Fields"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: lib/wfu_constants.php:
|
133 |
msgid "Download"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: lib/wfu_constants.php:
|
137 |
msgid "Download this file"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: lib/wfu_constants.php:
|
141 |
msgid "Delete"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: lib/wfu_constants.php:
|
145 |
msgid "Delete this file"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: lib/wfu_constants.php:
|
149 |
msgid "Sort list based on this column"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: lib/wfu_constants.php:
|
153 |
msgid "guest"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: lib/wfu_constants.php:
|
157 |
msgid "unknown"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: lib/wfu_constants.php:
|
161 |
msgid ""
|
162 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
163 |
"attribute."
|
@@ -165,11 +171,11 @@ msgstr ""
|
|
165 |
"Błąd. Nie można rozpoznać ftp cel filedir. Sprawdzanie domeny atrybutu "
|
166 |
"'ftpinfo'."
|
167 |
|
168 |
-
#: lib/wfu_constants.php:
|
169 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
170 |
msgstr "Błąd. Informacje nieprawidłowe ftp. Sprawdź atrybut \"ftpinfo\"."
|
171 |
|
172 |
-
#: lib/wfu_constants.php:
|
173 |
msgid ""
|
174 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
175 |
"syntax."
|
@@ -177,7 +183,7 @@ msgstr ""
|
|
177 |
"Błąd. Nie można wyodrębnić informacje ftp z atrybutu 'ftpinfo'. Sprawdzanie "
|
178 |
"składni."
|
179 |
|
180 |
-
#: lib/wfu_constants.php:
|
181 |
msgid ""
|
182 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
183 |
"attribute."
|
@@ -185,39 +191,39 @@ msgstr ""
|
|
185 |
"Błąd. Nie można rozpoznać ftp pliku miejsce docelowe. Sprawdzanie domeny "
|
186 |
"atrybutu 'ftpinfo'."
|
187 |
|
188 |
-
#: lib/wfu_constants.php:
|
189 |
msgid ""
|
190 |
"Error. Could not open source file for ftp upload. Check if file is "
|
191 |
"accessible."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: lib/wfu_constants.php:
|
195 |
msgid "Error. Could not send data to ftp target file."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: lib/wfu_constants.php:
|
199 |
msgid ""
|
200 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
201 |
"attribute."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: lib/wfu_constants.php:
|
205 |
msgid ""
|
206 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
207 |
"'ftpinfo' attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: lib/wfu_constants.php:
|
211 |
msgid ""
|
212 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
213 |
"supports sftp."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: lib/wfu_constants.php:
|
217 |
msgid "Error. The web server does not support sftp."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: lib/wfu_constants.php:
|
221 |
msgid ""
|
222 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
223 |
"preventing the upload of big files.\n"
|
@@ -227,7 +233,7 @@ msgstr ""
|
|
227 |
"przesyłanie dużych plików.\n"
|
228 |
"PHP dyrektywy upload_max_filesize wynosi:"
|
229 |
|
230 |
-
#: lib/wfu_constants.php:
|
231 |
msgid ""
|
232 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
233 |
"upload of big files.\n"
|
@@ -237,60 +243,60 @@ msgstr ""
|
|
237 |
"przesyłanie dużych plików.\n"
|
238 |
"Limit PHP max_input_time dyrektywy jest:"
|
239 |
|
240 |
-
#: lib/wfu_constants.php:
|
241 |
msgid ""
|
242 |
"Error. Permission denied to write to target folder.\n"
|
243 |
"Check and correct read/write permissions of target folder."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: lib/wfu_constants.php:
|
247 |
msgid ""
|
248 |
"Error. This file was rejected because its extension is not correct. Its "
|
249 |
"proper filename is: "
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: lib/wfu_constants.php:
|
253 |
msgid ""
|
254 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
255 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
256 |
"suspicious behaviour."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: lib/wfu_constants.php:
|
260 |
msgid ""
|
261 |
"File not uploaded in order to prevent overflow of the website. Please "
|
262 |
"contact administrator."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: lib/wfu_constants.php:
|
266 |
msgid "Target folder doesn't exist."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: lib/wfu_constants.php:
|
270 |
msgid "Upload failed! Missing a temporary folder."
|
271 |
msgstr "Brak folderu tymczasowego"
|
272 |
|
273 |
-
#: lib/wfu_constants.php:
|
274 |
msgid "Upload failed! Permission denied to write to target folder."
|
275 |
msgstr "Nie udało się utworzyć folderu"
|
276 |
|
277 |
-
#: lib/wfu_constants.php:
|
278 |
msgid "File not allowed."
|
279 |
msgstr "Rozszerzenie pliku nie jest dozwolone."
|
280 |
|
281 |
-
#: lib/wfu_constants.php:
|
282 |
msgid "File is suspicious and was rejected."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: lib/wfu_constants.php:
|
286 |
msgid "The uploaded file exceeds the file size limit."
|
287 |
msgstr "Przesłany plik przekracza limit rozmiaru pliku."
|
288 |
|
289 |
-
#: lib/wfu_constants.php:
|
290 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
291 |
msgstr "Przesłany plik przekracza 2GB i nie jest obsługiwana przez ten serwer."
|
292 |
|
293 |
-
#: lib/wfu_constants.php:
|
294 |
msgid ""
|
295 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
296 |
"Please contact the administrator."
|
@@ -298,7 +304,7 @@ msgstr ""
|
|
298 |
"Wysyłanie nie powiodło się! Przesłany plik przekracza limit rozmiaru pliku z "
|
299 |
"serwera. Proszę skontaktuj się z administratorem."
|
300 |
|
301 |
-
#: lib/wfu_constants.php:
|
302 |
msgid ""
|
303 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
304 |
"server. Please contact the administrator."
|
@@ -306,7 +312,7 @@ msgstr ""
|
|
306 |
"Wysyłanie nie powiodło się! Czas trwania upload przekroczony limit czasu "
|
307 |
"serwera. Proszę skontaktuj się z administratorem."
|
308 |
|
309 |
-
#: lib/wfu_constants.php:
|
310 |
msgid ""
|
311 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
312 |
"was specified in the HTML form."
|
@@ -314,50 +320,50 @@ msgstr ""
|
|
314 |
"Wysyłanie nie powiodło się! Przesłany plik przekracza dyrektywy "
|
315 |
"MAX_FILE_SIZE, który został określony w formularzu HTML."
|
316 |
|
317 |
-
#: lib/wfu_constants.php:
|
318 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
319 |
msgstr ""
|
320 |
"Wysyłanie nie powiodło się! Przesłany plik został tylko częściowo przesłane."
|
321 |
|
322 |
-
#: lib/wfu_constants.php:
|
323 |
msgid "Upload failed! No file was uploaded."
|
324 |
msgstr "Wysyłanie nie powiodło się! Plik nie został przesłany."
|
325 |
|
326 |
-
#: lib/wfu_constants.php:
|
327 |
msgid "Upload failed! Failed to write file to disk."
|
328 |
msgstr "Wysyłanie nie powiodło się! Nie udało się zapisać plik na dysk."
|
329 |
|
330 |
-
#: lib/wfu_constants.php:
|
331 |
msgid ""
|
332 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
333 |
"administrator."
|
334 |
msgstr "Wystąpił nieznany błąd. Skontaktuj się z administratorem serwisu."
|
335 |
|
336 |
-
#: lib/wfu_constants.php:
|
337 |
msgid "Upload cancelled!"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: lib/wfu_constants.php:
|
341 |
msgid ""
|
342 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
343 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
344 |
"the list of loaded extensions with phpinfo() may help."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: lib/wfu_constants.php:
|
348 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
349 |
msgstr ""
|
350 |
"Wysyłanie nie powiodło się! Wystąpił błąd podczas attemting wgrać plik."
|
351 |
|
352 |
-
#: lib/wfu_constants.php:
|
353 |
msgid "Upload failed!"
|
354 |
msgstr "BŁĄD PRZESYŁANIA!!!"
|
355 |
|
356 |
-
#: lib/wfu_constants.php:
|
357 |
msgid "No file!"
|
358 |
msgstr "Brak pliku"
|
359 |
|
360 |
-
#: lib/wfu_constants.php:
|
361 |
msgid ""
|
362 |
"Upload failed! The upload has been canceled by the user or the browser "
|
363 |
"dropped the connection."
|
@@ -365,27 +371,27 @@ msgstr ""
|
|
365 |
"Wysyłanie nie powiodło się! Wysyłanie zostało anulowane przez użytkownika "
|
366 |
"lub utracone połączenie."
|
367 |
|
368 |
-
#: lib/wfu_constants.php:
|
369 |
msgid "Upload failed! Unknown error."
|
370 |
msgstr "Wysyłanie nie powiodło się! Nieznany błąd."
|
371 |
|
372 |
-
#: lib/wfu_constants.php:
|
373 |
msgid "Please contact the administrator."
|
374 |
msgstr "Proszę skontaktuj się z administratorem."
|
375 |
|
376 |
-
#: lib/wfu_constants.php:
|
377 |
msgid "No result from remote server!"
|
378 |
msgstr "Nie wynik z serwera zdalnego!"
|
379 |
|
380 |
-
#: lib/wfu_constants.php:
|
381 |
msgid " but with warnings"
|
382 |
msgstr "Ostrzeżenia"
|
383 |
|
384 |
-
#: lib/wfu_constants.php:
|
385 |
msgid "Warning: JSON parse error."
|
386 |
msgstr "\"Błąd analizowania\""
|
387 |
|
388 |
-
#: lib/wfu_constants.php:
|
389 |
msgid ""
|
390 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
391 |
"not be parsed."
|
@@ -393,27 +399,27 @@ msgstr ""
|
|
393 |
"Przekazywania parametrów tego pliku, przekazywana jako ciąg JSON do obsługi, "
|
394 |
"nie można przeanalizować."
|
395 |
|
396 |
-
#: lib/wfu_constants.php:
|
397 |
msgid ""
|
398 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
399 |
msgstr ""
|
400 |
"UploadStates, przekazywana jako ciąg JSON do obsługi, nie można "
|
401 |
"przeanalizować."
|
402 |
|
403 |
-
#: lib/wfu_constants.php:
|
404 |
msgid ""
|
405 |
"Redirection to classic form functionality occurred due to unknown error."
|
406 |
msgstr ""
|
407 |
"Przekierowanie do klasycznej postaci funkcji wystąpił z powodu nieznanego "
|
408 |
"błędu."
|
409 |
|
410 |
-
#: lib/wfu_constants.php:
|
411 |
msgid ""
|
412 |
"Redirection to classic form functionality occurred because AJAX is not "
|
413 |
"supported."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: lib/wfu_constants.php:
|
417 |
msgid ""
|
418 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
419 |
"supported."
|
@@ -421,58 +427,58 @@ msgstr ""
|
|
421 |
"Przekierowanie do klasycznej postaci funkcji wystąpił, ponieważ HTML5 jest "
|
422 |
"nieobsługiwana."
|
423 |
|
424 |
-
#: lib/wfu_constants.php:
|
425 |
msgid ""
|
426 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
427 |
msgstr ""
|
428 |
"Przekierowanie do klasycznej postaci funkcji wystąpił ze względu na błąd "
|
429 |
"analizy JSON."
|
430 |
|
431 |
-
#: lib/wfu_constants.php:
|
432 |
msgid "Please enable popup windows from the browser's settings!"
|
433 |
msgstr "Proszę włączyć wyskakujące okienka z ustawień przeglądarki!"
|
434 |
|
435 |
-
#: lib/wfu_constants.php:
|
436 |
msgid "cannot be empty!"
|
437 |
msgstr "Pole nie może być puste!"
|
438 |
|
439 |
-
#: lib/wfu_constants.php:
|
440 |
msgid "number not valid!"
|
441 |
msgstr "Błędny numer!"
|
442 |
|
443 |
-
#: lib/wfu_constants.php:
|
444 |
msgid "email not valid!"
|
445 |
msgstr "Niepoprawny e-mail!"
|
446 |
|
447 |
-
#: lib/wfu_constants.php:
|
448 |
msgid "emails do not match!"
|
449 |
msgstr "e-maile nie pasują!"
|
450 |
|
451 |
-
#: lib/wfu_constants.php:
|
452 |
msgid "no base email field in group!"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: lib/wfu_constants.php:
|
456 |
msgid "passwords do not match!"
|
457 |
msgstr "Hasła nie są identyczne"
|
458 |
|
459 |
-
#: lib/wfu_constants.php:
|
460 |
msgid "no base password field in group!"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: lib/wfu_constants.php:
|
464 |
msgid "checkbox unchecked!"
|
465 |
msgstr "niezaznaczone pole wyboru!"
|
466 |
|
467 |
-
#: lib/wfu_constants.php:
|
468 |
msgid "no option selected!"
|
469 |
msgstr "Nie wybrano żadnej opcji"
|
470 |
|
471 |
-
#: lib/wfu_constants.php:
|
472 |
msgid "no item selected!"
|
473 |
msgstr "Nie wybrano żadnego elementu."
|
474 |
|
475 |
-
#: lib/wfu_constants.php:
|
476 |
msgid ""
|
477 |
"There are more than one instances of the plugin in this page with the same "
|
478 |
"id. Please change it."
|
@@ -480,7 +486,7 @@ msgstr ""
|
|
480 |
"Tu są więcej niż jednego wystąpienia o plugin na tej stronie o tym samym "
|
481 |
"identyfikatorze. Zmień go."
|
482 |
|
483 |
-
#: lib/wfu_constants.php:
|
484 |
msgid ""
|
485 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
486 |
"the page."
|
@@ -488,188 +494,188 @@ msgstr ""
|
|
488 |
"Nie można edytować shortkode, ponieważ strona została zmodyfikowana. Proszę "
|
489 |
"odświeżyć stronę."
|
490 |
|
491 |
-
#: lib/wfu_constants.php:
|
492 |
msgid "Your browser does not support webcam capture!"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: lib/wfu_constants.php:
|
496 |
msgid "Your browser does not support video recording from the webcam!"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: lib/wfu_constants.php:
|
500 |
msgid "No video was recorded!"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: lib/wfu_constants.php:
|
504 |
msgid ""
|
505 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
506 |
"or use RecaptchaV2 (no account)."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: lib/wfu_constants.php:
|
510 |
msgid ""
|
511 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
512 |
"notify administrator."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: lib/wfu_constants.php:
|
516 |
msgid ""
|
517 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
518 |
"use RecaptchaV1 (no account)."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: lib/wfu_constants.php:
|
522 |
msgid "ERROR: No site key. Please contact administrator!"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: lib/wfu_constants.php:
|
526 |
msgid ""
|
527 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
528 |
"define Google Recaptcha keys."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: lib/wfu_constants.php:
|
532 |
msgid "Bad captcha image!"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: lib/wfu_constants.php:
|
536 |
msgid "No input!"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: lib/wfu_constants.php:
|
540 |
msgid "Captcha not completed!"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: lib/wfu_constants.php:
|
544 |
msgid "Wrong captcha!"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: lib/wfu_constants.php:
|
548 |
msgid "Error refreshing captcha!"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: lib/wfu_constants.php:
|
552 |
msgid "Unknown captcha error!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: lib/wfu_constants.php:
|
556 |
msgid "Captcha not supported by your browser!"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: lib/wfu_constants.php:
|
560 |
msgid "the secret parameter is missing"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: lib/wfu_constants.php:
|
564 |
msgid "the secret parameter is invalid or malformed"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
msgid "the response parameter is missing"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: lib/wfu_constants.php:
|
572 |
msgid "the response parameter is invalid or malformed"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: lib/wfu_constants.php:
|
576 |
msgid "Please do not use drag drop due to an internal problem."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
#, php-format
|
581 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "Chunked upload is not allowed!"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "Chunked upload failed, final file could not be created!"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
#, php-format
|
598 |
msgid "Could not write file chuck to destination on chunk %d"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
#, php-format
|
603 |
msgid "Could not enlarge destination file on chunk %d"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
#, php-format
|
608 |
msgid "Could not open file handles on chunk %d"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: lib/wfu_constants.php:
|
612 |
msgid "You are not allowed to download this file!"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid "File does not exist!"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: lib/wfu_constants.php:
|
620 |
msgid "Could not download file!"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid "You are not allowed to delete this file!"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: lib/wfu_constants.php:
|
628 |
msgid "File was not deleted!"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: lib/wfu_constants.php:
|
632 |
msgid "No file was deleted!"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: lib/wfu_constants.php:
|
636 |
msgid "Some files were not deleted!"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: lib/wfu_constants.php:
|
640 |
msgid "Upload skipped! File already exists."
|
641 |
msgstr "Przepraszamy, ten plik już istnieje!"
|
642 |
|
643 |
-
#: lib/wfu_constants.php:
|
644 |
msgid "The extension of the file does not match its contents."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: lib/wfu_constants.php:
|
648 |
msgid ""
|
649 |
"Upload succeeded but the file is suspicious because its contents do not "
|
650 |
"match its extension. Its proper filename is: "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid "No files have been selected!"
|
655 |
msgstr "Nie wybrano żadnych plików"
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid "Please complete the consent question before continuing the upload!"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: lib/wfu_constants.php:
|
662 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
663 |
msgstr ""
|
664 |
"WPFilebase Plugin nie aktualizowane, ponieważ nie było tam plików przesłane."
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid "Notification email was not sent because there were no files uploaded."
|
668 |
msgstr ""
|
669 |
"Powiadomienia e-mail nie została wysłana, ponieważ nie zostały przesłane "
|
670 |
"pliki."
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid ""
|
674 |
"Notification email was not sent because no recipients were defined. Please "
|
675 |
"check notifyrecipients attribute in the shortcode."
|
@@ -677,7 +683,7 @@ msgstr ""
|
|
677 |
"Powiadomienia e-mail nie zostały wysłane, ponieważ nie ma odbiorców "
|
678 |
"zdefiniowanych. Sprawdź atrybut notifyrecipients w kodzie."
|
679 |
|
680 |
-
#: lib/wfu_constants.php:
|
681 |
msgid ""
|
682 |
"Notification email was not sent due to an error. Please check "
|
683 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -685,7 +691,7 @@ msgstr ""
|
|
685 |
"Powiadomienia e-mail nie został wysłany z powodu błędu. Proszę sprawdzić "
|
686 |
"notifyrecipients, notifysubject i notifymessage atrybuty dla błędów."
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid ""
|
690 |
"Redirection not executed because redirection link is empty. Please check "
|
691 |
"redirectlink attribute."
|
@@ -693,18 +699,18 @@ msgstr ""
|
|
693 |
"Przekierowania nie wykonany, ponieważ link przekierowania jest pusty. "
|
694 |
"Sprawdź atrybut redirectlink."
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid ""
|
698 |
"Redirection not executed because not all files were successfully uploaded."
|
699 |
msgstr ""
|
700 |
"Przekierowania nie wykonany, ponieważ nie wszystkie pliki zostały pomyślnie "
|
701 |
"załadowane."
|
702 |
|
703 |
-
#: lib/wfu_constants.php:
|
704 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"Hello admin\n"
|
710 |
"\n"
|
@@ -724,19 +730,19 @@ msgid ""
|
|
724 |
"Thanks"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: lib/wfu_constants.php:
|
728 |
msgid ""
|
729 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
730 |
"details please contact info@iptanus.com."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid ""
|
735 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
736 |
"plugin functions. Please read this :article: for resolution."
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: lib/wfu_constants.php:
|
740 |
msgid ""
|
741 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
742 |
"message persists, contact administrator."
|
@@ -744,7 +750,7 @@ msgstr ""
|
|
744 |
"Nie można dodać shortcode do strony/post. Proszę spróbować ponownie. Jeśli "
|
745 |
"komunikat będzie się powtarzał, skontaktuj się z administratorem."
|
746 |
|
747 |
-
#: lib/wfu_constants.php:
|
748 |
msgid ""
|
749 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
750 |
"again to edit the shortcode."
|
@@ -752,7 +758,7 @@ msgstr ""
|
|
752 |
"Nie można edytować shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
753 |
"ponownie."
|
754 |
|
755 |
-
#: lib/wfu_constants.php:
|
756 |
msgid ""
|
757 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
758 |
"again to delete it."
|
@@ -760,7 +766,7 @@ msgstr ""
|
|
760 |
"Nie można usunąć shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
761 |
"ponownie."
|
762 |
|
763 |
-
#: lib/wfu_constants.php:
|
764 |
msgid ""
|
765 |
"The page containing the shortcode has been modified and it is no longer "
|
766 |
"valid. Please go back to reload the shortcode."
|
@@ -768,7 +774,7 @@ msgstr ""
|
|
768 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
769 |
"przeładować shortcode."
|
770 |
|
771 |
-
#: lib/wfu_constants.php:
|
772 |
msgid ""
|
773 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
774 |
"back to reload the shortcode."
|
@@ -776,7 +782,7 @@ msgstr ""
|
|
776 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
777 |
"przeładować shortcode."
|
778 |
|
779 |
-
#: lib/wfu_constants.php:
|
780 |
msgid ""
|
781 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
782 |
"go back and reload the shortcode."
|
@@ -784,39 +790,39 @@ msgstr ""
|
|
784 |
"Nie można zaktualizować shortcode. Proszę spróbować ponownie. Jeśli problem "
|
785 |
"nie ustąpi, wrócić i ponownie załadować shortcode."
|
786 |
|
787 |
-
#: lib/wfu_constants.php:
|
788 |
msgid "This is a test message"
|
789 |
msgstr "To jest wiadomość testowa"
|
790 |
|
791 |
-
#: lib/wfu_constants.php:
|
792 |
msgid "This is a test administrator message"
|
793 |
msgstr "To jest wiadomość testowa administratora"
|
794 |
|
795 |
-
#: lib/wfu_constants.php:
|
796 |
msgid "File testfile 1 under test"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: lib/wfu_constants.php:
|
800 |
msgid "File testfile 1 message"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: lib/wfu_constants.php:
|
804 |
msgid "File testfile 1 administrator message"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: lib/wfu_constants.php:
|
808 |
msgid "File testfile 2 under test"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: lib/wfu_constants.php:
|
812 |
msgid "File testfile 2 message"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: lib/wfu_constants.php:
|
816 |
msgid "File testfile 2 administrator message"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: lib/wfu_constants.php:
|
820 |
msgid ""
|
821 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
822 |
"current user."
|
@@ -824,7 +830,7 @@ msgstr ""
|
|
824 |
"Wstaw zmienną % userid % wewnątrz tekstu. Zostanie on zastąpiony przez "
|
825 |
"identyfikator bieżącego użytkownika."
|
826 |
|
827 |
-
#: lib/wfu_constants.php:
|
828 |
msgid ""
|
829 |
"Insert variable %username% inside text. It will be replaced by the username "
|
830 |
"of the current user."
|
@@ -832,7 +838,7 @@ msgstr ""
|
|
832 |
"Wstaw zmiennej % username % wewnątrz tekstu. To będzie brzmienie nazwy "
|
833 |
"użytkownika bieżącego użytkownika."
|
834 |
|
835 |
-
#: lib/wfu_constants.php:
|
836 |
msgid ""
|
837 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
838 |
"the current user."
|
@@ -840,7 +846,7 @@ msgstr ""
|
|
840 |
"Wstaw zmiennej % useremail % wewnątrz tekstu. To zostanie zastąpiony przez e-"
|
841 |
"mail bieżącego użytkownika."
|
842 |
|
843 |
-
#: lib/wfu_constants.php:
|
844 |
msgid ""
|
845 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
846 |
"of the uploaded file."
|
@@ -848,7 +854,7 @@ msgstr ""
|
|
848 |
"Wstaw nazwę zmiennej % wewnątrz tekstu. To zostanie zastąpiony przez nazwę "
|
849 |
"pliku przesłane."
|
850 |
|
851 |
-
#: lib/wfu_constants.php:
|
852 |
msgid ""
|
853 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
854 |
"filepath of the uploaded file."
|
@@ -856,7 +862,7 @@ msgstr ""
|
|
856 |
"Wstaw zmienną % filepath wewnątrz tekstu. To zostanie zastąpiony przez pełną "
|
857 |
"filepath przesyłanego pliku."
|
858 |
|
859 |
-
#: lib/wfu_constants.php:
|
860 |
msgid ""
|
861 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
862 |
"the website."
|
@@ -864,13 +870,13 @@ msgstr ""
|
|
864 |
"Wstaw zmiennej % blogid % wewnątrz tekstu. To zostanie zastąpiony przez "
|
865 |
"identyfikator blog strony internetowej."
|
866 |
|
867 |
-
#: lib/wfu_constants.php:
|
868 |
msgid ""
|
869 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
870 |
"current page."
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid ""
|
875 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
876 |
"the current page."
|
@@ -878,7 +884,7 @@ msgstr ""
|
|
878 |
"Wstaw zmienną % pagetitle wewnątrz tekstu. To będzie brzmienie tytułu "
|
879 |
"bieżącej strony."
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid ""
|
883 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
884 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -888,215 +894,232 @@ msgstr ""
|
|
888 |
"listy rozwijanej. To zostaną zastąpione przez wartości, które użytkownik "
|
889 |
"wpisuje w tej dziedzinie."
|
890 |
|
891 |
-
#: lib/wfu_constants.php:
|
892 |
msgid "Insert variable %n% inside text to denote a line change."
|
893 |
msgstr "Wstaw zmienną %n % wewnątrz tekstu do oznaczenia linii zmiany."
|
894 |
|
895 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
896 |
msgid "Test Mode"
|
897 |
msgstr "Tryb testowy"
|
898 |
|
899 |
-
#: lib/wfu_constants.php:
|
900 |
msgid "select dir..."
|
901 |
msgstr "Wybierz dir..."
|
902 |
|
903 |
-
#: lib/wfu_constants.php:
|
904 |
msgid "type dir"
|
905 |
msgstr "Typ dir"
|
906 |
|
907 |
-
#: lib/wfu_constants.php:
|
908 |
msgid "Upload path: %filepath%"
|
909 |
msgstr "Wgraj %filepath%"
|
910 |
|
911 |
-
#: lib/wfu_constants.php:
|
912 |
msgid "Failed upload path: %filepath%"
|
913 |
msgstr "Nieudane przesyłanie: %filepath%"
|
914 |
|
915 |
-
#: lib/wfu_constants.php:
|
916 |
msgid " (required)"
|
917 |
msgstr "*"
|
918 |
|
919 |
-
#: lib/wfu_constants.php:
|
920 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
921 |
msgstr "Obecnie wysyłane są pliki. Czy na pewno chcesz zamknąć stronę?"
|
922 |
|
923 |
-
#: lib/wfu_constants.php:
|
924 |
msgid "checking captcha..."
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: lib/wfu_constants.php:
|
928 |
msgid "refreshing..."
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: lib/wfu_constants.php:
|
932 |
msgid "correct captcha"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: lib/wfu_constants.php:
|
936 |
msgid "click to continue the upload"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: lib/wfu_constants.php:
|
940 |
msgid "Are you sure you want to delete this file?"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: lib/wfu_constants.php:
|
944 |
msgid "Are you sure you want to delete these files?"
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: lib/wfu_constants.php:
|
948 |
msgid "Bulk Actions"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
952 |
msgid "Apply"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "of "
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "Are you sure that you want to cancel the upload?"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "cancel upload of this file"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "Upload in progress"
|
969 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid "Upload in progress with warnings!"
|
973 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
974 |
|
975 |
-
#: lib/wfu_constants.php:
|
976 |
msgid "Upload in progress but some files already failed!"
|
977 |
msgstr "Przesyłanie w toku, ale niektóre pliki zostały anulowane!"
|
978 |
|
979 |
-
#: lib/wfu_constants.php:
|
980 |
msgid "Upload in progress but no files uploaded so far!"
|
981 |
msgstr "Przesyłanie w toku, ale jeszcze nie przesłano żadnego pliku!"
|
982 |
|
983 |
-
#: lib/wfu_constants.php:
|
984 |
msgid "All files uploaded successfully"
|
985 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
986 |
|
987 |
-
#: lib/wfu_constants.php:
|
988 |
msgid "All files uploaded successfully but there are warnings!"
|
989 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
990 |
|
991 |
-
#: lib/wfu_constants.php:
|
992 |
msgid "File uploaded successfully but there are warnings!"
|
993 |
msgstr "Plik został pomyślnie przesłany, ale z ostrzeżeniem!"
|
994 |
|
995 |
-
#: lib/wfu_constants.php:
|
996 |
msgid "Some files failed to upload!"
|
997 |
msgstr "Niektóre pliki zostały anulowane!"
|
998 |
|
999 |
-
#: lib/wfu_constants.php:
|
1000 |
msgid "All files failed to upload"
|
1001 |
msgstr "Wszystkie pliki zostały anulowane"
|
1002 |
|
1003 |
-
#: lib/wfu_constants.php:
|
1004 |
msgid "File failed to upload"
|
1005 |
msgstr "Nie udało się przesłać pliku"
|
1006 |
|
1007 |
-
#: lib/wfu_constants.php:
|
1008 |
msgid "There are no files to upload!"
|
1009 |
msgstr "Brak plików do wysłania"
|
1010 |
|
1011 |
-
#: lib/wfu_constants.php:
|
1012 |
msgid "Test upload message"
|
1013 |
msgstr "To jest wiadomość testowa"
|
1014 |
|
1015 |
-
#: lib/wfu_constants.php:
|
1016 |
msgid "JSON parse warning!"
|
1017 |
msgstr "JSON analizować ostrzeżenie!"
|
1018 |
|
1019 |
-
#: lib/wfu_constants.php:
|
1020 |
msgid "please wait while redirecting..."
|
1021 |
msgstr "Proszę czekać, za chwilę zostaniesz przekierowany..."
|
1022 |
|
1023 |
-
#: lib/wfu_constants.php:
|
1024 |
msgid "Submitting data"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: lib/wfu_constants.php:
|
1028 |
msgid "Data submitted successfully!"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: lib/wfu_constants.php:
|
1032 |
msgid "Data were not submitted!"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: lib/wfu_constants.php:
|
1036 |
msgid "Cancelling upload"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
msgid "Open visual shortcode editor in new window"
|
1041 |
msgstr "Otwórz edytor w nowym oknie"
|
1042 |
|
1043 |
-
#: lib/wfu_constants.php:
|
1044 |
msgid "loading visual editor"
|
1045 |
msgstr "Ładowanie wizualnego edytora"
|
1046 |
|
1047 |
-
#: lib/wfu_constants.php:
|
1048 |
msgid "Clear file list?"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: lib/wfu_constants.php:
|
1052 |
msgid "DROP HERE"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: lib/wfu_constants.php:
|
1056 |
msgid "record video"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: lib/wfu_constants.php:
|
1060 |
msgid "take a picture"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: lib/wfu_constants.php:
|
1064 |
msgid "turn webcam on/off"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: lib/wfu_constants.php:
|
1068 |
msgid "go live again"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: lib/wfu_constants.php:
|
1072 |
msgid "end recording"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: lib/wfu_constants.php:
|
1076 |
msgid "play"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: lib/wfu_constants.php:
|
1080 |
msgid "pause"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: lib/wfu_constants.php:
|
1084 |
msgid "go to the beginning"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: lib/wfu_constants.php:
|
1088 |
msgid "go to the end"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: lib/wfu_constants.php:
|
1092 |
msgid "Wordpress File Upload Form"
|
1093 |
msgstr "Formularz przesyłania plików WPFU"
|
1094 |
|
1095 |
-
#: lib/wfu_constants.php:
|
1096 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: lib/wfu_constants.php:
|
1100 |
msgid "Upload Files"
|
1101 |
msgstr ""
|
1102 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:41+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pl_PL\n"
|
105 |
"By activating this option I agree to let the website keep my personal data"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: lib/wfu_constants.php:34
|
109 |
+
msgid ""
|
110 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
111 |
+
"continue!"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/wfu_constants.php:36
|
115 |
msgid "File"
|
116 |
msgstr "Plik"
|
117 |
|
118 |
+
#: lib/wfu_constants.php:37
|
119 |
msgid "Date"
|
120 |
msgstr "Data"
|
121 |
|
122 |
+
#: lib/wfu_constants.php:38
|
123 |
msgid "Size"
|
124 |
msgstr "Rozmiar"
|
125 |
|
126 |
+
#: lib/wfu_constants.php:39
|
127 |
msgid "User"
|
128 |
msgstr "Użytkownik"
|
129 |
|
130 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
131 |
msgid "Page"
|
132 |
msgstr "Strona"
|
133 |
|
134 |
+
#: lib/wfu_constants.php:41
|
135 |
msgid "User Fields"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: lib/wfu_constants.php:42
|
139 |
msgid "Download"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: lib/wfu_constants.php:43
|
143 |
msgid "Download this file"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: lib/wfu_constants.php:44
|
147 |
msgid "Delete"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: lib/wfu_constants.php:45
|
151 |
msgid "Delete this file"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: lib/wfu_constants.php:46
|
155 |
msgid "Sort list based on this column"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: lib/wfu_constants.php:47
|
159 |
msgid "guest"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: lib/wfu_constants.php:48
|
163 |
msgid "unknown"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: lib/wfu_constants.php:50
|
167 |
msgid ""
|
168 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
169 |
"attribute."
|
171 |
"Błąd. Nie można rozpoznać ftp cel filedir. Sprawdzanie domeny atrybutu "
|
172 |
"'ftpinfo'."
|
173 |
|
174 |
+
#: lib/wfu_constants.php:51
|
175 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
176 |
msgstr "Błąd. Informacje nieprawidłowe ftp. Sprawdź atrybut \"ftpinfo\"."
|
177 |
|
178 |
+
#: lib/wfu_constants.php:52
|
179 |
msgid ""
|
180 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
181 |
"syntax."
|
183 |
"Błąd. Nie można wyodrębnić informacje ftp z atrybutu 'ftpinfo'. Sprawdzanie "
|
184 |
"składni."
|
185 |
|
186 |
+
#: lib/wfu_constants.php:53
|
187 |
msgid ""
|
188 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
189 |
"attribute."
|
191 |
"Błąd. Nie można rozpoznać ftp pliku miejsce docelowe. Sprawdzanie domeny "
|
192 |
"atrybutu 'ftpinfo'."
|
193 |
|
194 |
+
#: lib/wfu_constants.php:54
|
195 |
msgid ""
|
196 |
"Error. Could not open source file for ftp upload. Check if file is "
|
197 |
"accessible."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: lib/wfu_constants.php:55
|
201 |
msgid "Error. Could not send data to ftp target file."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: lib/wfu_constants.php:56
|
205 |
msgid ""
|
206 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
207 |
"attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: lib/wfu_constants.php:57
|
211 |
msgid ""
|
212 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
213 |
"'ftpinfo' attribute."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: lib/wfu_constants.php:58
|
217 |
msgid ""
|
218 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
219 |
"supports sftp."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: lib/wfu_constants.php:59
|
223 |
msgid "Error. The web server does not support sftp."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: lib/wfu_constants.php:60
|
227 |
msgid ""
|
228 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
229 |
"preventing the upload of big files.\n"
|
233 |
"przesyłanie dużych plików.\n"
|
234 |
"PHP dyrektywy upload_max_filesize wynosi:"
|
235 |
|
236 |
+
#: lib/wfu_constants.php:61
|
237 |
msgid ""
|
238 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
239 |
"upload of big files.\n"
|
243 |
"przesyłanie dużych plików.\n"
|
244 |
"Limit PHP max_input_time dyrektywy jest:"
|
245 |
|
246 |
+
#: lib/wfu_constants.php:62
|
247 |
msgid ""
|
248 |
"Error. Permission denied to write to target folder.\n"
|
249 |
"Check and correct read/write permissions of target folder."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: lib/wfu_constants.php:63
|
253 |
msgid ""
|
254 |
"Error. This file was rejected because its extension is not correct. Its "
|
255 |
"proper filename is: "
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: lib/wfu_constants.php:64
|
259 |
msgid ""
|
260 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
261 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
262 |
"suspicious behaviour."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: lib/wfu_constants.php:65
|
266 |
msgid ""
|
267 |
"File not uploaded in order to prevent overflow of the website. Please "
|
268 |
"contact administrator."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: lib/wfu_constants.php:66
|
272 |
msgid "Target folder doesn't exist."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: lib/wfu_constants.php:67
|
276 |
msgid "Upload failed! Missing a temporary folder."
|
277 |
msgstr "Brak folderu tymczasowego"
|
278 |
|
279 |
+
#: lib/wfu_constants.php:68
|
280 |
msgid "Upload failed! Permission denied to write to target folder."
|
281 |
msgstr "Nie udało się utworzyć folderu"
|
282 |
|
283 |
+
#: lib/wfu_constants.php:69
|
284 |
msgid "File not allowed."
|
285 |
msgstr "Rozszerzenie pliku nie jest dozwolone."
|
286 |
|
287 |
+
#: lib/wfu_constants.php:70
|
288 |
msgid "File is suspicious and was rejected."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: lib/wfu_constants.php:71
|
292 |
msgid "The uploaded file exceeds the file size limit."
|
293 |
msgstr "Przesłany plik przekracza limit rozmiaru pliku."
|
294 |
|
295 |
+
#: lib/wfu_constants.php:72
|
296 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
297 |
msgstr "Przesłany plik przekracza 2GB i nie jest obsługiwana przez ten serwer."
|
298 |
|
299 |
+
#: lib/wfu_constants.php:73
|
300 |
msgid ""
|
301 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
302 |
"Please contact the administrator."
|
304 |
"Wysyłanie nie powiodło się! Przesłany plik przekracza limit rozmiaru pliku z "
|
305 |
"serwera. Proszę skontaktuj się z administratorem."
|
306 |
|
307 |
+
#: lib/wfu_constants.php:74
|
308 |
msgid ""
|
309 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
310 |
"server. Please contact the administrator."
|
312 |
"Wysyłanie nie powiodło się! Czas trwania upload przekroczony limit czasu "
|
313 |
"serwera. Proszę skontaktuj się z administratorem."
|
314 |
|
315 |
+
#: lib/wfu_constants.php:75
|
316 |
msgid ""
|
317 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
318 |
"was specified in the HTML form."
|
320 |
"Wysyłanie nie powiodło się! Przesłany plik przekracza dyrektywy "
|
321 |
"MAX_FILE_SIZE, który został określony w formularzu HTML."
|
322 |
|
323 |
+
#: lib/wfu_constants.php:76
|
324 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
325 |
msgstr ""
|
326 |
"Wysyłanie nie powiodło się! Przesłany plik został tylko częściowo przesłane."
|
327 |
|
328 |
+
#: lib/wfu_constants.php:77
|
329 |
msgid "Upload failed! No file was uploaded."
|
330 |
msgstr "Wysyłanie nie powiodło się! Plik nie został przesłany."
|
331 |
|
332 |
+
#: lib/wfu_constants.php:78
|
333 |
msgid "Upload failed! Failed to write file to disk."
|
334 |
msgstr "Wysyłanie nie powiodło się! Nie udało się zapisać plik na dysk."
|
335 |
|
336 |
+
#: lib/wfu_constants.php:79
|
337 |
msgid ""
|
338 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
339 |
"administrator."
|
340 |
msgstr "Wystąpił nieznany błąd. Skontaktuj się z administratorem serwisu."
|
341 |
|
342 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
343 |
msgid "Upload cancelled!"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: lib/wfu_constants.php:81
|
347 |
msgid ""
|
348 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
349 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
350 |
"the list of loaded extensions with phpinfo() may help."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: lib/wfu_constants.php:82
|
354 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
355 |
msgstr ""
|
356 |
"Wysyłanie nie powiodło się! Wystąpił błąd podczas attemting wgrać plik."
|
357 |
|
358 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
359 |
msgid "Upload failed!"
|
360 |
msgstr "BŁĄD PRZESYŁANIA!!!"
|
361 |
|
362 |
+
#: lib/wfu_constants.php:84
|
363 |
msgid "No file!"
|
364 |
msgstr "Brak pliku"
|
365 |
|
366 |
+
#: lib/wfu_constants.php:85
|
367 |
msgid ""
|
368 |
"Upload failed! The upload has been canceled by the user or the browser "
|
369 |
"dropped the connection."
|
371 |
"Wysyłanie nie powiodło się! Wysyłanie zostało anulowane przez użytkownika "
|
372 |
"lub utracone połączenie."
|
373 |
|
374 |
+
#: lib/wfu_constants.php:86
|
375 |
msgid "Upload failed! Unknown error."
|
376 |
msgstr "Wysyłanie nie powiodło się! Nieznany błąd."
|
377 |
|
378 |
+
#: lib/wfu_constants.php:87
|
379 |
msgid "Please contact the administrator."
|
380 |
msgstr "Proszę skontaktuj się z administratorem."
|
381 |
|
382 |
+
#: lib/wfu_constants.php:88
|
383 |
msgid "No result from remote server!"
|
384 |
msgstr "Nie wynik z serwera zdalnego!"
|
385 |
|
386 |
+
#: lib/wfu_constants.php:89
|
387 |
msgid " but with warnings"
|
388 |
msgstr "Ostrzeżenia"
|
389 |
|
390 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
391 |
msgid "Warning: JSON parse error."
|
392 |
msgstr "\"Błąd analizowania\""
|
393 |
|
394 |
+
#: lib/wfu_constants.php:91
|
395 |
msgid ""
|
396 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
397 |
"not be parsed."
|
399 |
"Przekazywania parametrów tego pliku, przekazywana jako ciąg JSON do obsługi, "
|
400 |
"nie można przeanalizować."
|
401 |
|
402 |
+
#: lib/wfu_constants.php:93
|
403 |
msgid ""
|
404 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
405 |
msgstr ""
|
406 |
"UploadStates, przekazywana jako ciąg JSON do obsługi, nie można "
|
407 |
"przeanalizować."
|
408 |
|
409 |
+
#: lib/wfu_constants.php:94
|
410 |
msgid ""
|
411 |
"Redirection to classic form functionality occurred due to unknown error."
|
412 |
msgstr ""
|
413 |
"Przekierowanie do klasycznej postaci funkcji wystąpił z powodu nieznanego "
|
414 |
"błędu."
|
415 |
|
416 |
+
#: lib/wfu_constants.php:95
|
417 |
msgid ""
|
418 |
"Redirection to classic form functionality occurred because AJAX is not "
|
419 |
"supported."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: lib/wfu_constants.php:96
|
423 |
msgid ""
|
424 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
425 |
"supported."
|
427 |
"Przekierowanie do klasycznej postaci funkcji wystąpił, ponieważ HTML5 jest "
|
428 |
"nieobsługiwana."
|
429 |
|
430 |
+
#: lib/wfu_constants.php:97
|
431 |
msgid ""
|
432 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
433 |
msgstr ""
|
434 |
"Przekierowanie do klasycznej postaci funkcji wystąpił ze względu na błąd "
|
435 |
"analizy JSON."
|
436 |
|
437 |
+
#: lib/wfu_constants.php:98
|
438 |
msgid "Please enable popup windows from the browser's settings!"
|
439 |
msgstr "Proszę włączyć wyskakujące okienka z ustawień przeglądarki!"
|
440 |
|
441 |
+
#: lib/wfu_constants.php:99
|
442 |
msgid "cannot be empty!"
|
443 |
msgstr "Pole nie może być puste!"
|
444 |
|
445 |
+
#: lib/wfu_constants.php:100
|
446 |
msgid "number not valid!"
|
447 |
msgstr "Błędny numer!"
|
448 |
|
449 |
+
#: lib/wfu_constants.php:101
|
450 |
msgid "email not valid!"
|
451 |
msgstr "Niepoprawny e-mail!"
|
452 |
|
453 |
+
#: lib/wfu_constants.php:102
|
454 |
msgid "emails do not match!"
|
455 |
msgstr "e-maile nie pasują!"
|
456 |
|
457 |
+
#: lib/wfu_constants.php:103
|
458 |
msgid "no base email field in group!"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: lib/wfu_constants.php:104
|
462 |
msgid "passwords do not match!"
|
463 |
msgstr "Hasła nie są identyczne"
|
464 |
|
465 |
+
#: lib/wfu_constants.php:105
|
466 |
msgid "no base password field in group!"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: lib/wfu_constants.php:106
|
470 |
msgid "checkbox unchecked!"
|
471 |
msgstr "niezaznaczone pole wyboru!"
|
472 |
|
473 |
+
#: lib/wfu_constants.php:107
|
474 |
msgid "no option selected!"
|
475 |
msgstr "Nie wybrano żadnej opcji"
|
476 |
|
477 |
+
#: lib/wfu_constants.php:108
|
478 |
msgid "no item selected!"
|
479 |
msgstr "Nie wybrano żadnego elementu."
|
480 |
|
481 |
+
#: lib/wfu_constants.php:109
|
482 |
msgid ""
|
483 |
"There are more than one instances of the plugin in this page with the same "
|
484 |
"id. Please change it."
|
486 |
"Tu są więcej niż jednego wystąpienia o plugin na tej stronie o tym samym "
|
487 |
"identyfikatorze. Zmień go."
|
488 |
|
489 |
+
#: lib/wfu_constants.php:110
|
490 |
msgid ""
|
491 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
492 |
"the page."
|
494 |
"Nie można edytować shortkode, ponieważ strona została zmodyfikowana. Proszę "
|
495 |
"odświeżyć stronę."
|
496 |
|
497 |
+
#: lib/wfu_constants.php:111
|
498 |
msgid "Your browser does not support webcam capture!"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: lib/wfu_constants.php:112
|
502 |
msgid "Your browser does not support video recording from the webcam!"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: lib/wfu_constants.php:113
|
506 |
msgid "No video was recorded!"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: lib/wfu_constants.php:114
|
510 |
msgid ""
|
511 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
512 |
"or use RecaptchaV2 (no account)."
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: lib/wfu_constants.php:115
|
516 |
msgid ""
|
517 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
518 |
"notify administrator."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: lib/wfu_constants.php:116
|
522 |
msgid ""
|
523 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
524 |
"use RecaptchaV1 (no account)."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: lib/wfu_constants.php:117
|
528 |
msgid "ERROR: No site key. Please contact administrator!"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: lib/wfu_constants.php:118
|
532 |
msgid ""
|
533 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
534 |
"define Google Recaptcha keys."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: lib/wfu_constants.php:119
|
538 |
msgid "Bad captcha image!"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: lib/wfu_constants.php:120
|
542 |
msgid "No input!"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: lib/wfu_constants.php:121
|
546 |
msgid "Captcha not completed!"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: lib/wfu_constants.php:122
|
550 |
msgid "Wrong captcha!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: lib/wfu_constants.php:123
|
554 |
msgid "Error refreshing captcha!"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: lib/wfu_constants.php:124
|
558 |
msgid "Unknown captcha error!"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: lib/wfu_constants.php:125
|
562 |
msgid "Captcha not supported by your browser!"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: lib/wfu_constants.php:126
|
566 |
msgid "the secret parameter is missing"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: lib/wfu_constants.php:127
|
570 |
msgid "the secret parameter is invalid or malformed"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: lib/wfu_constants.php:128
|
574 |
msgid "the response parameter is missing"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: lib/wfu_constants.php:129
|
578 |
msgid "the response parameter is invalid or malformed"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: lib/wfu_constants.php:130
|
582 |
msgid "Please do not use drag drop due to an internal problem."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: lib/wfu_constants.php:131
|
586 |
#, php-format
|
587 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: lib/wfu_constants.php:132
|
591 |
msgid "Chunked upload is not allowed!"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: lib/wfu_constants.php:133
|
595 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: lib/wfu_constants.php:134
|
599 |
msgid "Chunked upload failed, final file could not be created!"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: lib/wfu_constants.php:135
|
603 |
#, php-format
|
604 |
msgid "Could not write file chuck to destination on chunk %d"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: lib/wfu_constants.php:136
|
608 |
#, php-format
|
609 |
msgid "Could not enlarge destination file on chunk %d"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: lib/wfu_constants.php:137
|
613 |
#, php-format
|
614 |
msgid "Could not open file handles on chunk %d"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: lib/wfu_constants.php:138
|
618 |
msgid "You are not allowed to download this file!"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: lib/wfu_constants.php:139
|
622 |
msgid "File does not exist!"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: lib/wfu_constants.php:140
|
626 |
msgid "Could not download file!"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: lib/wfu_constants.php:141
|
630 |
msgid "You are not allowed to delete this file!"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: lib/wfu_constants.php:142
|
634 |
msgid "File was not deleted!"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: lib/wfu_constants.php:143
|
638 |
msgid "No file was deleted!"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: lib/wfu_constants.php:144
|
642 |
msgid "Some files were not deleted!"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: lib/wfu_constants.php:146
|
646 |
msgid "Upload skipped! File already exists."
|
647 |
msgstr "Przepraszamy, ten plik już istnieje!"
|
648 |
|
649 |
+
#: lib/wfu_constants.php:147
|
650 |
msgid "The extension of the file does not match its contents."
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: lib/wfu_constants.php:148
|
654 |
msgid ""
|
655 |
"Upload succeeded but the file is suspicious because its contents do not "
|
656 |
"match its extension. Its proper filename is: "
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/wfu_constants.php:149
|
660 |
msgid "No files have been selected!"
|
661 |
msgstr "Nie wybrano żadnych plików"
|
662 |
|
663 |
+
#: lib/wfu_constants.php:150
|
664 |
msgid "Please complete the consent question before continuing the upload!"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: lib/wfu_constants.php:151
|
668 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
669 |
msgstr ""
|
670 |
"WPFilebase Plugin nie aktualizowane, ponieważ nie było tam plików przesłane."
|
671 |
|
672 |
+
#: lib/wfu_constants.php:152
|
673 |
msgid "Notification email was not sent because there were no files uploaded."
|
674 |
msgstr ""
|
675 |
"Powiadomienia e-mail nie została wysłana, ponieważ nie zostały przesłane "
|
676 |
"pliki."
|
677 |
|
678 |
+
#: lib/wfu_constants.php:153
|
679 |
msgid ""
|
680 |
"Notification email was not sent because no recipients were defined. Please "
|
681 |
"check notifyrecipients attribute in the shortcode."
|
683 |
"Powiadomienia e-mail nie zostały wysłane, ponieważ nie ma odbiorców "
|
684 |
"zdefiniowanych. Sprawdź atrybut notifyrecipients w kodzie."
|
685 |
|
686 |
+
#: lib/wfu_constants.php:154
|
687 |
msgid ""
|
688 |
"Notification email was not sent due to an error. Please check "
|
689 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
691 |
"Powiadomienia e-mail nie został wysłany z powodu błędu. Proszę sprawdzić "
|
692 |
"notifyrecipients, notifysubject i notifymessage atrybuty dla błędów."
|
693 |
|
694 |
+
#: lib/wfu_constants.php:155
|
695 |
msgid ""
|
696 |
"Redirection not executed because redirection link is empty. Please check "
|
697 |
"redirectlink attribute."
|
699 |
"Przekierowania nie wykonany, ponieważ link przekierowania jest pusty. "
|
700 |
"Sprawdź atrybut redirectlink."
|
701 |
|
702 |
+
#: lib/wfu_constants.php:156
|
703 |
msgid ""
|
704 |
"Redirection not executed because not all files were successfully uploaded."
|
705 |
msgstr ""
|
706 |
"Przekierowania nie wykonany, ponieważ nie wszystkie pliki zostały pomyślnie "
|
707 |
"załadowane."
|
708 |
|
709 |
+
#: lib/wfu_constants.php:157
|
710 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: lib/wfu_constants.php:158
|
714 |
msgid ""
|
715 |
"Hello admin\n"
|
716 |
"\n"
|
730 |
"Thanks"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: lib/wfu_constants.php:159
|
734 |
msgid ""
|
735 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
736 |
"details please contact info@iptanus.com."
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: lib/wfu_constants.php:160
|
740 |
msgid ""
|
741 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
742 |
"plugin functions. Please read this :article: for resolution."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: lib/wfu_constants.php:162
|
746 |
msgid ""
|
747 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
748 |
"message persists, contact administrator."
|
750 |
"Nie można dodać shortcode do strony/post. Proszę spróbować ponownie. Jeśli "
|
751 |
"komunikat będzie się powtarzał, skontaktuj się z administratorem."
|
752 |
|
753 |
+
#: lib/wfu_constants.php:163
|
754 |
msgid ""
|
755 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
756 |
"again to edit the shortcode."
|
758 |
"Nie można edytować shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
759 |
"ponownie."
|
760 |
|
761 |
+
#: lib/wfu_constants.php:164
|
762 |
msgid ""
|
763 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
764 |
"again to delete it."
|
766 |
"Nie można usunąć shortcode, bo zmieniła się zawartość strony. Spróbuj "
|
767 |
"ponownie."
|
768 |
|
769 |
+
#: lib/wfu_constants.php:165
|
770 |
msgid ""
|
771 |
"The page containing the shortcode has been modified and it is no longer "
|
772 |
"valid. Please go back to reload the shortcode."
|
774 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
775 |
"przeładować shortcode."
|
776 |
|
777 |
+
#: lib/wfu_constants.php:166
|
778 |
msgid ""
|
779 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
780 |
"back to reload the shortcode."
|
782 |
"Strona zawierająca shortcode został zmodyfikowana. Proszę wrócić i "
|
783 |
"przeładować shortcode."
|
784 |
|
785 |
+
#: lib/wfu_constants.php:167
|
786 |
msgid ""
|
787 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
788 |
"go back and reload the shortcode."
|
790 |
"Nie można zaktualizować shortcode. Proszę spróbować ponownie. Jeśli problem "
|
791 |
"nie ustąpi, wrócić i ponownie załadować shortcode."
|
792 |
|
793 |
+
#: lib/wfu_constants.php:169
|
794 |
msgid "This is a test message"
|
795 |
msgstr "To jest wiadomość testowa"
|
796 |
|
797 |
+
#: lib/wfu_constants.php:170
|
798 |
msgid "This is a test administrator message"
|
799 |
msgstr "To jest wiadomość testowa administratora"
|
800 |
|
801 |
+
#: lib/wfu_constants.php:171
|
802 |
msgid "File testfile 1 under test"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: lib/wfu_constants.php:172
|
806 |
msgid "File testfile 1 message"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: lib/wfu_constants.php:173
|
810 |
msgid "File testfile 1 administrator message"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: lib/wfu_constants.php:174
|
814 |
msgid "File testfile 2 under test"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: lib/wfu_constants.php:175
|
818 |
msgid "File testfile 2 message"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: lib/wfu_constants.php:176
|
822 |
msgid "File testfile 2 administrator message"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: lib/wfu_constants.php:178
|
826 |
msgid ""
|
827 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
828 |
"current user."
|
830 |
"Wstaw zmienną % userid % wewnątrz tekstu. Zostanie on zastąpiony przez "
|
831 |
"identyfikator bieżącego użytkownika."
|
832 |
|
833 |
+
#: lib/wfu_constants.php:179
|
834 |
msgid ""
|
835 |
"Insert variable %username% inside text. It will be replaced by the username "
|
836 |
"of the current user."
|
838 |
"Wstaw zmiennej % username % wewnątrz tekstu. To będzie brzmienie nazwy "
|
839 |
"użytkownika bieżącego użytkownika."
|
840 |
|
841 |
+
#: lib/wfu_constants.php:180
|
842 |
msgid ""
|
843 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
844 |
"the current user."
|
846 |
"Wstaw zmiennej % useremail % wewnątrz tekstu. To zostanie zastąpiony przez e-"
|
847 |
"mail bieżącego użytkownika."
|
848 |
|
849 |
+
#: lib/wfu_constants.php:181
|
850 |
msgid ""
|
851 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
852 |
"of the uploaded file."
|
854 |
"Wstaw nazwę zmiennej % wewnątrz tekstu. To zostanie zastąpiony przez nazwę "
|
855 |
"pliku przesłane."
|
856 |
|
857 |
+
#: lib/wfu_constants.php:182
|
858 |
msgid ""
|
859 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
860 |
"filepath of the uploaded file."
|
862 |
"Wstaw zmienną % filepath wewnątrz tekstu. To zostanie zastąpiony przez pełną "
|
863 |
"filepath przesyłanego pliku."
|
864 |
|
865 |
+
#: lib/wfu_constants.php:183
|
866 |
msgid ""
|
867 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
868 |
"the website."
|
870 |
"Wstaw zmiennej % blogid % wewnątrz tekstu. To zostanie zastąpiony przez "
|
871 |
"identyfikator blog strony internetowej."
|
872 |
|
873 |
+
#: lib/wfu_constants.php:184
|
874 |
msgid ""
|
875 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
876 |
"current page."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: lib/wfu_constants.php:185
|
880 |
msgid ""
|
881 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
882 |
"the current page."
|
884 |
"Wstaw zmienną % pagetitle wewnątrz tekstu. To będzie brzmienie tytułu "
|
885 |
"bieżącej strony."
|
886 |
|
887 |
+
#: lib/wfu_constants.php:186
|
888 |
msgid ""
|
889 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
890 |
"drop-down list. It will be replaced by the value that the user entered in "
|
894 |
"listy rozwijanej. To zostaną zastąpione przez wartości, które użytkownik "
|
895 |
"wpisuje w tej dziedzinie."
|
896 |
|
897 |
+
#: lib/wfu_constants.php:187
|
898 |
msgid "Insert variable %n% inside text to denote a line change."
|
899 |
msgstr "Wstaw zmienną %n % wewnątrz tekstu do oznaczenia linii zmiany."
|
900 |
|
901 |
+
#: lib/wfu_constants.php:189
|
902 |
+
#, php-format
|
903 |
+
msgid "File %filename% uploaded successfully but not saved"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: lib/wfu_constants.php:190
|
907 |
msgid "Test Mode"
|
908 |
msgstr "Tryb testowy"
|
909 |
|
910 |
+
#: lib/wfu_constants.php:191
|
911 |
msgid "select dir..."
|
912 |
msgstr "Wybierz dir..."
|
913 |
|
914 |
+
#: lib/wfu_constants.php:192
|
915 |
msgid "type dir"
|
916 |
msgstr "Typ dir"
|
917 |
|
918 |
+
#: lib/wfu_constants.php:193
|
919 |
msgid "Upload path: %filepath%"
|
920 |
msgstr "Wgraj %filepath%"
|
921 |
|
922 |
+
#: lib/wfu_constants.php:194
|
923 |
msgid "Failed upload path: %filepath%"
|
924 |
msgstr "Nieudane przesyłanie: %filepath%"
|
925 |
|
926 |
+
#: lib/wfu_constants.php:195
|
927 |
msgid " (required)"
|
928 |
msgstr "*"
|
929 |
|
930 |
+
#: lib/wfu_constants.php:196
|
931 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
932 |
msgstr "Obecnie wysyłane są pliki. Czy na pewno chcesz zamknąć stronę?"
|
933 |
|
934 |
+
#: lib/wfu_constants.php:197
|
935 |
msgid "checking captcha..."
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: lib/wfu_constants.php:198
|
939 |
msgid "refreshing..."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: lib/wfu_constants.php:199
|
943 |
msgid "correct captcha"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: lib/wfu_constants.php:200
|
947 |
msgid "click to continue the upload"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: lib/wfu_constants.php:201
|
951 |
msgid "Are you sure you want to delete this file?"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: lib/wfu_constants.php:202
|
955 |
msgid "Are you sure you want to delete these files?"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: lib/wfu_constants.php:203
|
959 |
msgid "Bulk Actions"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: lib/wfu_constants.php:204
|
963 |
msgid "Apply"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: lib/wfu_constants.php:206
|
967 |
msgid "of "
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: lib/wfu_constants.php:207
|
971 |
msgid "Are you sure that you want to cancel the upload?"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: lib/wfu_constants.php:208
|
975 |
msgid "cancel upload of this file"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: lib/wfu_constants.php:209
|
979 |
msgid "Upload in progress"
|
980 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
981 |
|
982 |
+
#: lib/wfu_constants.php:210
|
983 |
msgid "Upload in progress with warnings!"
|
984 |
msgstr "Trwa przesyłanie Plików. Prosimy cierpliwie czekać."
|
985 |
|
986 |
+
#: lib/wfu_constants.php:211
|
987 |
msgid "Upload in progress but some files already failed!"
|
988 |
msgstr "Przesyłanie w toku, ale niektóre pliki zostały anulowane!"
|
989 |
|
990 |
+
#: lib/wfu_constants.php:212
|
991 |
msgid "Upload in progress but no files uploaded so far!"
|
992 |
msgstr "Przesyłanie w toku, ale jeszcze nie przesłano żadnego pliku!"
|
993 |
|
994 |
+
#: lib/wfu_constants.php:213
|
995 |
msgid "All files uploaded successfully"
|
996 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
997 |
|
998 |
+
#: lib/wfu_constants.php:214
|
999 |
msgid "All files uploaded successfully but there are warnings!"
|
1000 |
msgstr "Przesyłanie plików zakończyło się powodzeniem"
|
1001 |
|
1002 |
+
#: lib/wfu_constants.php:215
|
1003 |
msgid "File uploaded successfully but there are warnings!"
|
1004 |
msgstr "Plik został pomyślnie przesłany, ale z ostrzeżeniem!"
|
1005 |
|
1006 |
+
#: lib/wfu_constants.php:216
|
1007 |
msgid "Some files failed to upload!"
|
1008 |
msgstr "Niektóre pliki zostały anulowane!"
|
1009 |
|
1010 |
+
#: lib/wfu_constants.php:217
|
1011 |
msgid "All files failed to upload"
|
1012 |
msgstr "Wszystkie pliki zostały anulowane"
|
1013 |
|
1014 |
+
#: lib/wfu_constants.php:218
|
1015 |
msgid "File failed to upload"
|
1016 |
msgstr "Nie udało się przesłać pliku"
|
1017 |
|
1018 |
+
#: lib/wfu_constants.php:219
|
1019 |
msgid "There are no files to upload!"
|
1020 |
msgstr "Brak plików do wysłania"
|
1021 |
|
1022 |
+
#: lib/wfu_constants.php:220
|
1023 |
msgid "Test upload message"
|
1024 |
msgstr "To jest wiadomość testowa"
|
1025 |
|
1026 |
+
#: lib/wfu_constants.php:221
|
1027 |
msgid "JSON parse warning!"
|
1028 |
msgstr "JSON analizować ostrzeżenie!"
|
1029 |
|
1030 |
+
#: lib/wfu_constants.php:222
|
1031 |
msgid "please wait while redirecting..."
|
1032 |
msgstr "Proszę czekać, za chwilę zostaniesz przekierowany..."
|
1033 |
|
1034 |
+
#: lib/wfu_constants.php:224
|
1035 |
msgid "Submitting data"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: lib/wfu_constants.php:225
|
1039 |
msgid "Data submitted successfully!"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: lib/wfu_constants.php:226
|
1043 |
msgid "Data were not submitted!"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: lib/wfu_constants.php:227
|
1047 |
msgid "Cancelling upload"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: lib/wfu_constants.php:229
|
1051 |
+
msgid "Upload succeeded!"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: lib/wfu_constants.php:230
|
1055 |
+
msgid "Upload completed but no files were saved!"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: lib/wfu_constants.php:231
|
1059 |
+
msgid "File was not saved due to personal data policy!"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: lib/wfu_constants.php:232
|
1063 |
msgid "Open visual shortcode editor in new window"
|
1064 |
msgstr "Otwórz edytor w nowym oknie"
|
1065 |
|
1066 |
+
#: lib/wfu_constants.php:233
|
1067 |
msgid "loading visual editor"
|
1068 |
msgstr "Ładowanie wizualnego edytora"
|
1069 |
|
1070 |
+
#: lib/wfu_constants.php:234
|
1071 |
msgid "Clear file list?"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: lib/wfu_constants.php:235
|
1075 |
msgid "DROP HERE"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: lib/wfu_constants.php:237
|
1079 |
msgid "record video"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: lib/wfu_constants.php:238
|
1083 |
msgid "take a picture"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: lib/wfu_constants.php:239
|
1087 |
msgid "turn webcam on/off"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: lib/wfu_constants.php:240
|
1091 |
msgid "go live again"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: lib/wfu_constants.php:241
|
1095 |
msgid "end recording"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: lib/wfu_constants.php:242
|
1099 |
msgid "play"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: lib/wfu_constants.php:243
|
1103 |
msgid "pause"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: lib/wfu_constants.php:244
|
1107 |
msgid "go to the beginning"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: lib/wfu_constants.php:245
|
1111 |
msgid "go to the end"
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: lib/wfu_constants.php:247
|
1115 |
msgid "Wordpress File Upload Form"
|
1116 |
msgstr "Formularz przesyłania plików WPFU"
|
1117 |
|
1118 |
+
#: lib/wfu_constants.php:248
|
1119 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: lib/wfu_constants.php:249
|
1123 |
msgid "Upload Files"
|
1124 |
msgstr ""
|
1125 |
|
languages/wp-file-upload-pt_BR.mo
CHANGED
Binary file
|
languages/wp-file-upload-pt_BR.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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Jon Hanson <jon@quickbrasil.org>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -105,59 +105,65 @@ msgid ""
|
|
105 |
msgstr ""
|
106 |
"Ao ativar esta opção, concordo em deixar o site manter meus dados pessoais"
|
107 |
|
108 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "File"
|
110 |
msgstr "Arquivo"
|
111 |
|
112 |
-
#: lib/wfu_constants.php:
|
113 |
msgid "Date"
|
114 |
msgstr "Data"
|
115 |
|
116 |
-
#: lib/wfu_constants.php:
|
117 |
msgid "Size"
|
118 |
msgstr "Tamanho"
|
119 |
|
120 |
-
#: lib/wfu_constants.php:
|
121 |
msgid "User"
|
122 |
msgstr "Usuário"
|
123 |
|
124 |
-
#: lib/wfu_constants.php:
|
125 |
msgid "Page"
|
126 |
msgstr "Página"
|
127 |
|
128 |
-
#: lib/wfu_constants.php:
|
129 |
msgid "User Fields"
|
130 |
msgstr "Campos do usuário"
|
131 |
|
132 |
-
#: lib/wfu_constants.php:
|
133 |
msgid "Download"
|
134 |
msgstr "Baixar"
|
135 |
|
136 |
-
#: lib/wfu_constants.php:
|
137 |
msgid "Download this file"
|
138 |
msgstr "Baixar este arquivo"
|
139 |
|
140 |
-
#: lib/wfu_constants.php:
|
141 |
msgid "Delete"
|
142 |
msgstr "Excluir"
|
143 |
|
144 |
-
#: lib/wfu_constants.php:
|
145 |
msgid "Delete this file"
|
146 |
msgstr "Excluir este arquivo"
|
147 |
|
148 |
-
#: lib/wfu_constants.php:
|
149 |
msgid "Sort list based on this column"
|
150 |
msgstr "Ordenar lista com base nesta coluna"
|
151 |
|
152 |
-
#: lib/wfu_constants.php:
|
153 |
msgid "guest"
|
154 |
msgstr "convidado"
|
155 |
|
156 |
-
#: lib/wfu_constants.php:
|
157 |
msgid "unknown"
|
158 |
msgstr "desconhecido"
|
159 |
|
160 |
-
#: lib/wfu_constants.php:
|
161 |
msgid ""
|
162 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
163 |
"attribute."
|
@@ -165,11 +171,11 @@ msgstr ""
|
|
165 |
"Erro. Não foi possível encontrar o filedir de destino do FTP. Verifique o "
|
166 |
"domínio no atributo 'ftpinfo'."
|
167 |
|
168 |
-
#: lib/wfu_constants.php:
|
169 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
170 |
msgstr "Erro. Informações inválidas de FTP. Verifique o atributo 'ftpinfo'."
|
171 |
|
172 |
-
#: lib/wfu_constants.php:
|
173 |
msgid ""
|
174 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
175 |
"syntax."
|
@@ -177,7 +183,7 @@ msgstr ""
|
|
177 |
"Erro. Não foi possível extrair informações de FTP do atributo 'ftpinfo'. "
|
178 |
"Verifique sua sintaxe."
|
179 |
|
180 |
-
#: lib/wfu_constants.php:
|
181 |
msgid ""
|
182 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
183 |
"attribute."
|
@@ -185,7 +191,7 @@ msgstr ""
|
|
185 |
"Erro. Não foi possível encontrar o nome do arquivo de destino do ftp. "
|
186 |
"Verifique o domínio no atributo 'ftpinfo'."
|
187 |
|
188 |
-
#: lib/wfu_constants.php:
|
189 |
msgid ""
|
190 |
"Error. Could not open source file for ftp upload. Check if file is "
|
191 |
"accessible."
|
@@ -193,11 +199,11 @@ msgstr ""
|
|
193 |
"Erro. Não foi possível abrir o arquivo de origem para o envio do ftp. "
|
194 |
"Verifique se o arquivo está acessível."
|
195 |
|
196 |
-
#: lib/wfu_constants.php:
|
197 |
msgid "Error. Could not send data to ftp target file."
|
198 |
msgstr "Erro. Não foi possível enviar dados para o arquivo de destino do ftp."
|
199 |
|
200 |
-
#: lib/wfu_constants.php:
|
201 |
msgid ""
|
202 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
203 |
"attribute."
|
@@ -205,7 +211,7 @@ msgstr ""
|
|
205 |
"Erro. Não foi possível conectar-se ao host FTP. Verifique o domínio no "
|
206 |
"atributo 'ftpinfo'."
|
207 |
|
208 |
-
#: lib/wfu_constants.php:
|
209 |
msgid ""
|
210 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
211 |
"'ftpinfo' attribute."
|
@@ -213,7 +219,7 @@ msgstr ""
|
|
213 |
"Erro. Não foi possível autenticar para o host FTP. Verifique o nome e a "
|
214 |
"senha do usuário no atributo 'ftpinfo'."
|
215 |
|
216 |
-
#: lib/wfu_constants.php:
|
217 |
msgid ""
|
218 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
219 |
"supports sftp."
|
@@ -221,11 +227,11 @@ msgstr ""
|
|
221 |
"Erro. Não foi possível inicializar o subsistema sftp. Por favor, verifique "
|
222 |
"se o servidor suporta sftp."
|
223 |
|
224 |
-
#: lib/wfu_constants.php:
|
225 |
msgid "Error. The web server does not support sftp."
|
226 |
msgstr "Erro. O servidor web não suporta sftp."
|
227 |
|
228 |
-
#: lib/wfu_constants.php:
|
229 |
msgid ""
|
230 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
231 |
"preventing the upload of big files.\n"
|
@@ -235,7 +241,7 @@ msgstr ""
|
|
235 |
"upload_max_filesize está impedindo o envio de arquivos grandes.\n"
|
236 |
"O limite de upload_max_filesize da diretiva do PHP é: "
|
237 |
|
238 |
-
#: lib/wfu_constants.php:
|
239 |
msgid ""
|
240 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
241 |
"upload of big files.\n"
|
@@ -245,7 +251,7 @@ msgstr ""
|
|
245 |
"o envio de arquivos grandes.\n"
|
246 |
"A diretiva do PHP max_input_time limit é: "
|
247 |
|
248 |
-
#: lib/wfu_constants.php:
|
249 |
msgid ""
|
250 |
"Error. Permission denied to write to target folder.\n"
|
251 |
"Check and correct read/write permissions of target folder."
|
@@ -253,7 +259,7 @@ msgstr ""
|
|
253 |
"Erro. Permissão negada para gravar na pasta de destino.\n"
|
254 |
"Verifique e corrija as permissões de leitura / gravação da pasta de destino."
|
255 |
|
256 |
-
#: lib/wfu_constants.php:
|
257 |
msgid ""
|
258 |
"Error. This file was rejected because its extension is not correct. Its "
|
259 |
"proper filename is: "
|
@@ -261,7 +267,7 @@ msgstr ""
|
|
261 |
"Erro. Este arquivo foi rejeitado porque sua extensão não está correta. Seu "
|
262 |
"nome de arquivo correto é: "
|
263 |
|
264 |
-
#: lib/wfu_constants.php:
|
265 |
msgid ""
|
266 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
267 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
@@ -271,7 +277,7 @@ msgstr ""
|
|
271 |
"um ataque de Denial-Of-Service, portanto, o arquivo foi rejeitado. Por "
|
272 |
"favor, verifique o log de envio para comportamento suspeito."
|
273 |
|
274 |
-
#: lib/wfu_constants.php:
|
275 |
msgid ""
|
276 |
"File not uploaded in order to prevent overflow of the website. Please "
|
277 |
"contact administrator."
|
@@ -279,35 +285,35 @@ msgstr ""
|
|
279 |
"Arquivo não enviado para evitar o estouro de limite de tráfego do site. Por "
|
280 |
"favor, entre em contato com o administrador."
|
281 |
|
282 |
-
#: lib/wfu_constants.php:
|
283 |
msgid "Target folder doesn't exist."
|
284 |
msgstr "Pasta de destino não existe."
|
285 |
|
286 |
-
#: lib/wfu_constants.php:
|
287 |
msgid "Upload failed! Missing a temporary folder."
|
288 |
msgstr "O envio falhou! Faltando uma pasta temporária."
|
289 |
|
290 |
-
#: lib/wfu_constants.php:
|
291 |
msgid "Upload failed! Permission denied to write to target folder."
|
292 |
msgstr "O envio falhou! Permissão negada para gravar na pasta de destino."
|
293 |
|
294 |
-
#: lib/wfu_constants.php:
|
295 |
msgid "File not allowed."
|
296 |
msgstr "Arquivo não permitido."
|
297 |
|
298 |
-
#: lib/wfu_constants.php:
|
299 |
msgid "File is suspicious and was rejected."
|
300 |
msgstr "O arquivo é suspeito e foi rejeitado."
|
301 |
|
302 |
-
#: lib/wfu_constants.php:
|
303 |
msgid "The uploaded file exceeds the file size limit."
|
304 |
msgstr "O arquivo enviado excede o limite de tamanho de arquivo."
|
305 |
|
306 |
-
#: lib/wfu_constants.php:
|
307 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
308 |
msgstr "O arquivo enviado excede 2 GB e não é suportado por este servidor."
|
309 |
|
310 |
-
#: lib/wfu_constants.php:
|
311 |
msgid ""
|
312 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
313 |
"Please contact the administrator."
|
@@ -315,7 +321,7 @@ msgstr ""
|
|
315 |
"O envio falhou! O arquivo enviado excede o limite de tamanho de arquivo do "
|
316 |
"servidor. Por favor contate o administrador."
|
317 |
|
318 |
-
#: lib/wfu_constants.php:
|
319 |
msgid ""
|
320 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
321 |
"server. Please contact the administrator."
|
@@ -323,7 +329,7 @@ msgstr ""
|
|
323 |
"O envio falhou! A duração do envio excedeu o limite de tempo do servidor. "
|
324 |
"Por favor contate o administrador."
|
325 |
|
326 |
-
#: lib/wfu_constants.php:
|
327 |
msgid ""
|
328 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
329 |
"was specified in the HTML form."
|
@@ -331,19 +337,19 @@ msgstr ""
|
|
331 |
"O envio falhou! O arquivo enviado excede a diretiva MAX_FILE_SIZE "
|
332 |
"especificada no formulário HTML."
|
333 |
|
334 |
-
#: lib/wfu_constants.php:
|
335 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
336 |
msgstr "O envio falhou! O arquivo enviado foi apenas parcialmente carregado."
|
337 |
|
338 |
-
#: lib/wfu_constants.php:
|
339 |
msgid "Upload failed! No file was uploaded."
|
340 |
msgstr "O envio falhou! Nenhum arquivo foi enviado."
|
341 |
|
342 |
-
#: lib/wfu_constants.php:
|
343 |
msgid "Upload failed! Failed to write file to disk."
|
344 |
msgstr "O envio falhou! Falha ao gravar o arquivo no disco."
|
345 |
|
346 |
-
#: lib/wfu_constants.php:
|
347 |
msgid ""
|
348 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
349 |
"administrator."
|
@@ -351,11 +357,11 @@ msgstr ""
|
|
351 |
"O envio falhou! Ocorreu um erro ao mover o arquivo temporário. Por favor, "
|
352 |
"entre em contato com o administrador."
|
353 |
|
354 |
-
#: lib/wfu_constants.php:
|
355 |
msgid "Upload cancelled!"
|
356 |
msgstr "Envio cancelado!"
|
357 |
|
358 |
-
#: lib/wfu_constants.php:
|
359 |
msgid ""
|
360 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
361 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -365,19 +371,19 @@ msgstr ""
|
|
365 |
"uma maneira de determinar qual extensão causou a parada do envio do arquivo; "
|
366 |
"Examinar a lista de extensões carregadas com phpinfo() pode ajudar."
|
367 |
|
368 |
-
#: lib/wfu_constants.php:
|
369 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
370 |
msgstr "O envio falhou! Ocorreu um erro ao tentar carregar o arquivo."
|
371 |
|
372 |
-
#: lib/wfu_constants.php:
|
373 |
msgid "Upload failed!"
|
374 |
msgstr "O envio falhou!"
|
375 |
|
376 |
-
#: lib/wfu_constants.php:
|
377 |
msgid "No file!"
|
378 |
msgstr "Nenhum arquivo!"
|
379 |
|
380 |
-
#: lib/wfu_constants.php:
|
381 |
msgid ""
|
382 |
"Upload failed! The upload has been canceled by the user or the browser "
|
383 |
"dropped the connection."
|
@@ -385,27 +391,27 @@ msgstr ""
|
|
385 |
"O envio falhou! O envio foi cancelado pelo usuário ou o navegador perdeu a "
|
386 |
"conexão."
|
387 |
|
388 |
-
#: lib/wfu_constants.php:
|
389 |
msgid "Upload failed! Unknown error."
|
390 |
msgstr "O envio falhou! Erro desconhecido."
|
391 |
|
392 |
-
#: lib/wfu_constants.php:
|
393 |
msgid "Please contact the administrator."
|
394 |
msgstr "Por favor contate o administrador."
|
395 |
|
396 |
-
#: lib/wfu_constants.php:
|
397 |
msgid "No result from remote server!"
|
398 |
msgstr "Nenhum resultado do servidor remoto!"
|
399 |
|
400 |
-
#: lib/wfu_constants.php:
|
401 |
msgid " but with warnings"
|
402 |
msgstr " mas com problemas"
|
403 |
|
404 |
-
#: lib/wfu_constants.php:
|
405 |
msgid "Warning: JSON parse error."
|
406 |
msgstr "Aviso: erro de parse do JSON."
|
407 |
|
408 |
-
#: lib/wfu_constants.php:
|
409 |
msgid ""
|
410 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
411 |
"not be parsed."
|
@@ -413,21 +419,21 @@ msgstr ""
|
|
413 |
"Os parâmetros de envio desse arquivo, transmitidos como string JSON para o "
|
414 |
"interpretador, não puderam ser traduzidos."
|
415 |
|
416 |
-
#: lib/wfu_constants.php:
|
417 |
msgid ""
|
418 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
419 |
msgstr ""
|
420 |
"UploadStates, transmitidos como string JSON para o interpretador, não "
|
421 |
"puderam ser traduzidos."
|
422 |
|
423 |
-
#: lib/wfu_constants.php:
|
424 |
msgid ""
|
425 |
"Redirection to classic form functionality occurred due to unknown error."
|
426 |
msgstr ""
|
427 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
428 |
"devido a erro desconhecido."
|
429 |
|
430 |
-
#: lib/wfu_constants.php:
|
431 |
msgid ""
|
432 |
"Redirection to classic form functionality occurred because AJAX is not "
|
433 |
"supported."
|
@@ -435,7 +441,7 @@ msgstr ""
|
|
435 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
436 |
"porque o AJAX não é suportado."
|
437 |
|
438 |
-
#: lib/wfu_constants.php:
|
439 |
msgid ""
|
440 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
441 |
"supported."
|
@@ -443,58 +449,58 @@ msgstr ""
|
|
443 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
444 |
"porque o HTML5 não é suportado."
|
445 |
|
446 |
-
#: lib/wfu_constants.php:
|
447 |
msgid ""
|
448 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
449 |
msgstr ""
|
450 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
451 |
"devido ao erro de análise JSON."
|
452 |
|
453 |
-
#: lib/wfu_constants.php:
|
454 |
msgid "Please enable popup windows from the browser's settings!"
|
455 |
msgstr "Por favor, habilite as janelas pop-up nas configurações do navegador!"
|
456 |
|
457 |
-
#: lib/wfu_constants.php:
|
458 |
msgid "cannot be empty!"
|
459 |
msgstr "não pode estar vazio!"
|
460 |
|
461 |
-
#: lib/wfu_constants.php:
|
462 |
msgid "number not valid!"
|
463 |
msgstr "número não válido!"
|
464 |
|
465 |
-
#: lib/wfu_constants.php:
|
466 |
msgid "email not valid!"
|
467 |
msgstr "email não válido!"
|
468 |
|
469 |
-
#: lib/wfu_constants.php:
|
470 |
msgid "emails do not match!"
|
471 |
msgstr "emails não coincidem!"
|
472 |
|
473 |
-
#: lib/wfu_constants.php:
|
474 |
msgid "no base email field in group!"
|
475 |
msgstr "nenhum campo de e-mail base no grupo!"
|
476 |
|
477 |
-
#: lib/wfu_constants.php:
|
478 |
msgid "passwords do not match!"
|
479 |
msgstr "as senhas não coincidem!"
|
480 |
|
481 |
-
#: lib/wfu_constants.php:
|
482 |
msgid "no base password field in group!"
|
483 |
msgstr "nenhum campo de senha base no grupo!"
|
484 |
|
485 |
-
#: lib/wfu_constants.php:
|
486 |
msgid "checkbox unchecked!"
|
487 |
msgstr "caixa de seleção desmarcada!"
|
488 |
|
489 |
-
#: lib/wfu_constants.php:
|
490 |
msgid "no option selected!"
|
491 |
msgstr "nenhuma opção selecionada!"
|
492 |
|
493 |
-
#: lib/wfu_constants.php:
|
494 |
msgid "no item selected!"
|
495 |
msgstr "nenhum item selecionado!"
|
496 |
|
497 |
-
#: lib/wfu_constants.php:
|
498 |
msgid ""
|
499 |
"There are more than one instances of the plugin in this page with the same "
|
500 |
"id. Please change it."
|
@@ -502,7 +508,7 @@ msgstr ""
|
|
502 |
"Existe mais de uma instância do plugin nesta página com o mesmo id. Por "
|
503 |
"favor mude isto."
|
504 |
|
505 |
-
#: lib/wfu_constants.php:
|
506 |
msgid ""
|
507 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
508 |
"the page."
|
@@ -510,19 +516,19 @@ msgstr ""
|
|
510 |
"Não é possível editar o shortcode porque a página foi modificada. Por favor "
|
511 |
"recarregue a página."
|
512 |
|
513 |
-
#: lib/wfu_constants.php:
|
514 |
msgid "Your browser does not support webcam capture!"
|
515 |
msgstr "Seu navegador não suporta captura de webcam!"
|
516 |
|
517 |
-
#: lib/wfu_constants.php:
|
518 |
msgid "Your browser does not support video recording from the webcam!"
|
519 |
msgstr "Seu navegador não suporta gravação de vídeo da webcam!"
|
520 |
|
521 |
-
#: lib/wfu_constants.php:
|
522 |
msgid "No video was recorded!"
|
523 |
msgstr "Nenhum vídeo foi gravado!"
|
524 |
|
525 |
-
#: lib/wfu_constants.php:
|
526 |
msgid ""
|
527 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
528 |
"or use RecaptchaV2 (no account)."
|
@@ -530,7 +536,7 @@ msgstr ""
|
|
530 |
"ERRO: Captcha não suportado! Você tem uma versão antiga do PHP. Atualize seu "
|
531 |
"PHP ou use RecaptchaV2 (sem conta)."
|
532 |
|
533 |
-
#: lib/wfu_constants.php:
|
534 |
msgid ""
|
535 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
536 |
"notify administrator."
|
@@ -538,7 +544,7 @@ msgstr ""
|
|
538 |
"ERRO: Apenas uma instância do RecaptchaV1 pode existir na mesma página. Por "
|
539 |
"favor, notifique o administrador."
|
540 |
|
541 |
-
#: lib/wfu_constants.php:
|
542 |
msgid ""
|
543 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
544 |
"use RecaptchaV1 (no account)."
|
@@ -546,12 +552,12 @@ msgstr ""
|
|
546 |
"ERRO: Apenas uma instância do RecaptchaV1 pode existir na mesma página. Por "
|
547 |
"favor use RecaptchaV1 (sem conta)."
|
548 |
|
549 |
-
#: lib/wfu_constants.php:
|
550 |
msgid "ERROR: No site key. Please contact administrator!"
|
551 |
msgstr ""
|
552 |
"ERRO: nenhuma chave de site. Por favor, entre em contato com o administrador!"
|
553 |
|
554 |
-
#: lib/wfu_constants.php:
|
555 |
msgid ""
|
556 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
557 |
"define Google Recaptcha keys."
|
@@ -559,124 +565,124 @@ msgstr ""
|
|
559 |
"ERRO: Nenhuma chave de site definida! Acesse as configurações do plug-in no "
|
560 |
"Painel para definir as chaves do Google Recaptcha."
|
561 |
|
562 |
-
#: lib/wfu_constants.php:
|
563 |
msgid "Bad captcha image!"
|
564 |
msgstr "Imagem do captcha ruim!"
|
565 |
|
566 |
-
#: lib/wfu_constants.php:
|
567 |
msgid "No input!"
|
568 |
msgstr "Sem entrada!"
|
569 |
|
570 |
-
#: lib/wfu_constants.php:
|
571 |
msgid "Captcha not completed!"
|
572 |
msgstr "Captcha não concluído!"
|
573 |
|
574 |
-
#: lib/wfu_constants.php:
|
575 |
msgid "Wrong captcha!"
|
576 |
msgstr "Captcha errado!"
|
577 |
|
578 |
-
#: lib/wfu_constants.php:
|
579 |
msgid "Error refreshing captcha!"
|
580 |
msgstr "Erro ao atualizar o captcha!"
|
581 |
|
582 |
-
#: lib/wfu_constants.php:
|
583 |
msgid "Unknown captcha error!"
|
584 |
msgstr "Erro de captcha desconhecido!"
|
585 |
|
586 |
-
#: lib/wfu_constants.php:
|
587 |
msgid "Captcha not supported by your browser!"
|
588 |
msgstr "Captcha não suportado pelo seu navegador!"
|
589 |
|
590 |
-
#: lib/wfu_constants.php:
|
591 |
msgid "the secret parameter is missing"
|
592 |
msgstr "o parâmetro secreto está faltando"
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid "the secret parameter is invalid or malformed"
|
596 |
msgstr "o parâmetro secreto é inválido ou mal informado"
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "the response parameter is missing"
|
600 |
msgstr "o parâmetro de resposta está ausente"
|
601 |
|
602 |
-
#: lib/wfu_constants.php:
|
603 |
msgid "the response parameter is invalid or malformed"
|
604 |
msgstr "o parâmetro de resposta é inválido ou mal informado"
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
msgid "Please do not use drag drop due to an internal problem."
|
608 |
msgstr "Por favor, não use o recurso de arrastar devido a um problema interno."
|
609 |
|
610 |
-
#: lib/wfu_constants.php:
|
611 |
#, php-format
|
612 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
613 |
msgstr "Erro durante o envio em partes. ID exclusivo vazio no fragmento %d"
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid "Chunked upload is not allowed!"
|
617 |
msgstr "Envio em partes não é permitido!"
|
618 |
|
619 |
-
#: lib/wfu_constants.php:
|
620 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
621 |
msgstr "Envio em partes abortado devido a erro no fragmento anterior!"
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
msgid "Chunked upload failed, final file could not be created!"
|
625 |
msgstr "O envio em partes falhou, o arquivo final não pôde ser criado!"
|
626 |
|
627 |
-
#: lib/wfu_constants.php:
|
628 |
#, php-format
|
629 |
msgid "Could not write file chuck to destination on chunk %d"
|
630 |
msgstr ""
|
631 |
"Não foi possível gravar o mandril de arquivos no destino no fragmento %d"
|
632 |
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
#, php-format
|
635 |
msgid "Could not enlarge destination file on chunk %d"
|
636 |
msgstr "Não foi possível ampliar o arquivo de destino no fragmento %d"
|
637 |
|
638 |
-
#: lib/wfu_constants.php:
|
639 |
#, php-format
|
640 |
msgid "Could not open file handles on chunk %d"
|
641 |
msgstr "Não foi possível abrir interpretadores de arquivo no fragmento %d"
|
642 |
|
643 |
-
#: lib/wfu_constants.php:
|
644 |
msgid "You are not allowed to download this file!"
|
645 |
msgstr "Você não tem permissão para baixar este arquivo!"
|
646 |
|
647 |
-
#: lib/wfu_constants.php:
|
648 |
msgid "File does not exist!"
|
649 |
msgstr "Arquivo não existe!"
|
650 |
|
651 |
-
#: lib/wfu_constants.php:
|
652 |
msgid "Could not download file!"
|
653 |
msgstr "Não foi possível baixar o arquivo!"
|
654 |
|
655 |
-
#: lib/wfu_constants.php:
|
656 |
msgid "You are not allowed to delete this file!"
|
657 |
msgstr "Você não tem permissão para excluir este arquivo!"
|
658 |
|
659 |
-
#: lib/wfu_constants.php:
|
660 |
msgid "File was not deleted!"
|
661 |
msgstr "Arquivo não foi excluído!"
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid "No file was deleted!"
|
665 |
msgstr "Nenhum arquivo foi excluído!"
|
666 |
|
667 |
-
#: lib/wfu_constants.php:
|
668 |
msgid "Some files were not deleted!"
|
669 |
msgstr "Alguns arquivos não foram excluídos!"
|
670 |
|
671 |
-
#: lib/wfu_constants.php:
|
672 |
msgid "Upload skipped! File already exists."
|
673 |
msgstr "Envio ignorado! O arquivo já existe."
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid "The extension of the file does not match its contents."
|
677 |
msgstr "A extensão do arquivo não corresponde ao seu conteúdo."
|
678 |
|
679 |
-
#: lib/wfu_constants.php:
|
680 |
msgid ""
|
681 |
"Upload succeeded but the file is suspicious because its contents do not "
|
682 |
"match its extension. Its proper filename is: "
|
@@ -684,25 +690,25 @@ msgstr ""
|
|
684 |
"O envio foi bem-sucedido, mas o arquivo é suspeito porque seu conteúdo não "
|
685 |
"corresponde à sua extensão. Seu nome de arquivo correto é: "
|
686 |
|
687 |
-
#: lib/wfu_constants.php:
|
688 |
msgid "No files have been selected!"
|
689 |
msgstr "Nenhum arquivo foi selecionado!"
|
690 |
|
691 |
-
#: lib/wfu_constants.php:
|
692 |
msgid "Please complete the consent question before continuing the upload!"
|
693 |
msgstr ""
|
694 |
"Por favor, preencha a questão do consentimento antes de continuar o envio!"
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
698 |
msgstr "Plugin WPFilebase não atualizado porque não havia arquivos enviados."
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid "Notification email was not sent because there were no files uploaded."
|
702 |
msgstr ""
|
703 |
"O e-mail de notificação não foi enviado porque não havia arquivos enviados."
|
704 |
|
705 |
-
#: lib/wfu_constants.php:
|
706 |
msgid ""
|
707 |
"Notification email was not sent because no recipients were defined. Please "
|
708 |
"check notifyrecipients attribute in the shortcode."
|
@@ -710,7 +716,7 @@ msgstr ""
|
|
710 |
"O e-mail de notificação não foi enviado porque nenhum destinatário foi "
|
711 |
"definido. Por favor, verifique o atributo notifyRecipients no shortcode."
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid ""
|
715 |
"Notification email was not sent due to an error. Please check "
|
716 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -719,7 +725,7 @@ msgstr ""
|
|
719 |
"verifique os atributos notifyRecipients, notifysubject e notifymessage para "
|
720 |
"erros."
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid ""
|
724 |
"Redirection not executed because redirection link is empty. Please check "
|
725 |
"redirectlink attribute."
|
@@ -727,18 +733,18 @@ msgstr ""
|
|
727 |
"Redirecionamento não executado porque o link de redirecionamento está vazio. "
|
728 |
"Por favor, verifique o atributo redirectlink."
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid ""
|
732 |
"Redirection not executed because not all files were successfully uploaded."
|
733 |
msgstr ""
|
734 |
"Redirecionamento não executado porque nem todos os arquivos foram enviados "
|
735 |
"com sucesso."
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
739 |
msgstr "Ataque potencial de Denial-Of-Service em {SITE}"
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid ""
|
743 |
"Hello admin\n"
|
744 |
"\n"
|
@@ -775,7 +781,7 @@ msgstr ""
|
|
775 |
"\n"
|
776 |
"Obrigado"
|
777 |
|
778 |
-
#: lib/wfu_constants.php:
|
779 |
msgid ""
|
780 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
781 |
"details please contact info@iptanus.com."
|
@@ -783,13 +789,13 @@ msgstr ""
|
|
783 |
"Você ativou uma alternativa insegura Iptanus Services Server. Para mais "
|
784 |
"detalhes, entre em contato com info@iptanus.com."
|
785 |
|
786 |
-
#: lib/wfu_constants.php:
|
787 |
msgid ""
|
788 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
789 |
"plugin functions. Please read this :article: for resolution."
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: lib/wfu_constants.php:
|
793 |
msgid ""
|
794 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
795 |
"message persists, contact administrator."
|
@@ -797,7 +803,7 @@ msgstr ""
|
|
797 |
"Falha ao adicionar o shortcode à página / postagem. Por favor, tente "
|
798 |
"novamente. Se a mensagem persistir, entre em contato com o administrador."
|
799 |
|
800 |
-
#: lib/wfu_constants.php:
|
801 |
msgid ""
|
802 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
803 |
"again to edit the shortcode."
|
@@ -805,7 +811,7 @@ msgstr ""
|
|
805 |
"Falha ao editar o shortcode porque o conteúdo da página foi alterado. Tente "
|
806 |
"novamente editar o shortcode."
|
807 |
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
msgid ""
|
810 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
811 |
"again to delete it."
|
@@ -813,7 +819,7 @@ msgstr ""
|
|
813 |
"Falha ao excluir o shortcode porque o conteúdo da página foi alterado. Tente "
|
814 |
"novamente excluí-lo."
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid ""
|
818 |
"The page containing the shortcode has been modified and it is no longer "
|
819 |
"valid. Please go back to reload the shortcode."
|
@@ -821,7 +827,7 @@ msgstr ""
|
|
821 |
"A página que contém o shortcode foi modificada e não é mais válida. Por "
|
822 |
"favor, volte para recarregar o shortcode."
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid ""
|
826 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
827 |
"back to reload the shortcode."
|
@@ -829,7 +835,7 @@ msgstr ""
|
|
829 |
"Falha ao atualizar o shortcode porque o conteúdo da página foi alterado. "
|
830 |
"Volte para recarregar o shortcode."
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid ""
|
834 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
835 |
"go back and reload the shortcode."
|
@@ -837,39 +843,39 @@ msgstr ""
|
|
837 |
"Falha ao atualizar o shortcode. Por favor, tente novamente. Se o problema "
|
838 |
"persistir, volte e recarregue o código de acesso."
|
839 |
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
msgid "This is a test message"
|
842 |
msgstr "Esta é uma mensagem de teste"
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "This is a test administrator message"
|
846 |
msgstr "Esta é uma mensagem do administrador de teste"
|
847 |
|
848 |
-
#: lib/wfu_constants.php:
|
849 |
msgid "File testfile 1 under test"
|
850 |
msgstr "Arquivo testfile 1 sob teste"
|
851 |
|
852 |
-
#: lib/wfu_constants.php:
|
853 |
msgid "File testfile 1 message"
|
854 |
msgstr "Arquivo testfile 1 message"
|
855 |
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
msgid "File testfile 1 administrator message"
|
858 |
msgstr "Mensagem do administrador do arquivo testfile 1"
|
859 |
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
msgid "File testfile 2 under test"
|
862 |
msgstr "Arquivo de teste 2 sob teste"
|
863 |
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
msgid "File testfile 2 message"
|
866 |
msgstr "Mensagem do arquivo de teste 2"
|
867 |
|
868 |
-
#: lib/wfu_constants.php:
|
869 |
msgid "File testfile 2 administrator message"
|
870 |
msgstr "Mensagem do administrador do arquivo testfile 2"
|
871 |
|
872 |
-
#: lib/wfu_constants.php:
|
873 |
msgid ""
|
874 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
875 |
"current user."
|
@@ -877,7 +883,7 @@ msgstr ""
|
|
877 |
"Insira a variável %userid% dentro do texto. Será substituído pelo id do "
|
878 |
"usuário atual."
|
879 |
|
880 |
-
#: lib/wfu_constants.php:
|
881 |
msgid ""
|
882 |
"Insert variable %username% inside text. It will be replaced by the username "
|
883 |
"of the current user."
|
@@ -885,7 +891,7 @@ msgstr ""
|
|
885 |
"Insira a variável %username% dentro do texto. Ele será substituído pelo nome "
|
886 |
"de usuário atual."
|
887 |
|
888 |
-
#: lib/wfu_constants.php:
|
889 |
msgid ""
|
890 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
891 |
"the current user."
|
@@ -893,7 +899,7 @@ msgstr ""
|
|
893 |
"Insira a variável %useremail% dentro do texto. Ele será substituído pelo e-"
|
894 |
"mail do usuário atual."
|
895 |
|
896 |
-
#: lib/wfu_constants.php:
|
897 |
msgid ""
|
898 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
899 |
"of the uploaded file."
|
@@ -901,7 +907,7 @@ msgstr ""
|
|
901 |
"Insira a variável %filename% no texto. Ele será substituído pelo nome do "
|
902 |
"arquivo do arquivo enviado."
|
903 |
|
904 |
-
#: lib/wfu_constants.php:
|
905 |
msgid ""
|
906 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
907 |
"filepath of the uploaded file."
|
@@ -909,7 +915,7 @@ msgstr ""
|
|
909 |
"Insira a variável %filepath% dentro do texto. Ele será substituído pelo "
|
910 |
"caminho de arquivo completo do arquivo enviado."
|
911 |
|
912 |
-
#: lib/wfu_constants.php:
|
913 |
msgid ""
|
914 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
915 |
"the website."
|
@@ -917,7 +923,7 @@ msgstr ""
|
|
917 |
"Insira a variável %blogid% dentro do texto. Ele será substituído pelo ID do "
|
918 |
"blog do site."
|
919 |
|
920 |
-
#: lib/wfu_constants.php:
|
921 |
msgid ""
|
922 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
923 |
"current page."
|
@@ -925,7 +931,7 @@ msgstr ""
|
|
925 |
"Insira a variável %pageid% dentro do texto. Será substituído pelo id da "
|
926 |
"página atual."
|
927 |
|
928 |
-
#: lib/wfu_constants.php:
|
929 |
msgid ""
|
930 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
931 |
"the current page."
|
@@ -933,7 +939,7 @@ msgstr ""
|
|
933 |
"Insira a variável %pagetitle% dentro do texto. Será substituído pelo título "
|
934 |
"da página atual."
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid ""
|
938 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
939 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -943,218 +949,235 @@ msgstr ""
|
|
943 |
"lista suspensa. Ele será substituído pelo valor que o usuário inseriu nesse "
|
944 |
"campo."
|
945 |
|
946 |
-
#: lib/wfu_constants.php:
|
947 |
msgid "Insert variable %n% inside text to denote a line change."
|
948 |
msgstr ""
|
949 |
"Insira a variável %n% dentro do texto para indicar uma mudança de linha."
|
950 |
|
951 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
952 |
msgid "Test Mode"
|
953 |
msgstr "Modo de teste"
|
954 |
|
955 |
-
#: lib/wfu_constants.php:
|
956 |
msgid "select dir..."
|
957 |
msgstr "selecione dir ..."
|
958 |
|
959 |
-
#: lib/wfu_constants.php:
|
960 |
msgid "type dir"
|
961 |
msgstr "digite dir"
|
962 |
|
963 |
-
#: lib/wfu_constants.php:
|
964 |
msgid "Upload path: %filepath%"
|
965 |
msgstr "Caminho de upload: %filepath%"
|
966 |
|
967 |
-
#: lib/wfu_constants.php:
|
968 |
msgid "Failed upload path: %filepath%"
|
969 |
msgstr "Caminho de upload com falha: %filepath%"
|
970 |
|
971 |
-
#: lib/wfu_constants.php:
|
972 |
msgid " (required)"
|
973 |
msgstr " (requerido)"
|
974 |
|
975 |
-
#: lib/wfu_constants.php:
|
976 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
977 |
msgstr ""
|
978 |
"Arquivos estão sendo enviados. Tem certeza de que deseja sair da página?"
|
979 |
|
980 |
-
#: lib/wfu_constants.php:
|
981 |
msgid "checking captcha..."
|
982 |
msgstr "verificando o captcha ..."
|
983 |
|
984 |
-
#: lib/wfu_constants.php:
|
985 |
msgid "refreshing..."
|
986 |
msgstr "atualizando..."
|
987 |
|
988 |
-
#: lib/wfu_constants.php:
|
989 |
msgid "correct captcha"
|
990 |
msgstr "captcha correto"
|
991 |
|
992 |
-
#: lib/wfu_constants.php:
|
993 |
msgid "click to continue the upload"
|
994 |
msgstr "clique para continuar o envio"
|
995 |
|
996 |
-
#: lib/wfu_constants.php:
|
997 |
msgid "Are you sure you want to delete this file?"
|
998 |
msgstr "Tem certeza de que deseja excluir este arquivo?"
|
999 |
|
1000 |
-
#: lib/wfu_constants.php:
|
1001 |
msgid "Are you sure you want to delete these files?"
|
1002 |
msgstr "Tem certeza de que deseja excluir estes arquivos?"
|
1003 |
|
1004 |
-
#: lib/wfu_constants.php:
|
1005 |
msgid "Bulk Actions"
|
1006 |
msgstr "Ações em massa"
|
1007 |
|
1008 |
-
#: lib/wfu_constants.php:
|
1009 |
msgid "Apply"
|
1010 |
msgstr "Submeter"
|
1011 |
|
1012 |
-
#: lib/wfu_constants.php:
|
1013 |
msgid "of "
|
1014 |
msgstr "de "
|
1015 |
|
1016 |
-
#: lib/wfu_constants.php:
|
1017 |
msgid "Are you sure that you want to cancel the upload?"
|
1018 |
msgstr "Tem certeza de que deseja cancelar o envio?"
|
1019 |
|
1020 |
-
#: lib/wfu_constants.php:
|
1021 |
msgid "cancel upload of this file"
|
1022 |
msgstr "cancelar o envio deste arquivo"
|
1023 |
|
1024 |
-
#: lib/wfu_constants.php:
|
1025 |
msgid "Upload in progress"
|
1026 |
msgstr "Envio em andamento"
|
1027 |
|
1028 |
-
#: lib/wfu_constants.php:
|
1029 |
msgid "Upload in progress with warnings!"
|
1030 |
msgstr "Envio em andamento com problemas!"
|
1031 |
|
1032 |
-
#: lib/wfu_constants.php:
|
1033 |
msgid "Upload in progress but some files already failed!"
|
1034 |
msgstr "Envio em andamento, mas alguns arquivos já falharam!"
|
1035 |
|
1036 |
-
#: lib/wfu_constants.php:
|
1037 |
msgid "Upload in progress but no files uploaded so far!"
|
1038 |
msgstr "Envio em andamento, mas nenhum arquivo enviado até o momento!"
|
1039 |
|
1040 |
-
#: lib/wfu_constants.php:
|
1041 |
msgid "All files uploaded successfully"
|
1042 |
msgstr "Todos os arquivos enviados com sucesso"
|
1043 |
|
1044 |
-
#: lib/wfu_constants.php:
|
1045 |
msgid "All files uploaded successfully but there are warnings!"
|
1046 |
msgstr "Todos os arquivos foram enviados com sucesso, mas há problemas!"
|
1047 |
|
1048 |
-
#: lib/wfu_constants.php:
|
1049 |
msgid "File uploaded successfully but there are warnings!"
|
1050 |
msgstr "Arquivo enviado com sucesso, mas há problemas!"
|
1051 |
|
1052 |
-
#: lib/wfu_constants.php:
|
1053 |
msgid "Some files failed to upload!"
|
1054 |
msgstr "Alguns arquivos não foram enviados!"
|
1055 |
|
1056 |
-
#: lib/wfu_constants.php:
|
1057 |
msgid "All files failed to upload"
|
1058 |
msgstr "Nenhum arquivo foi enviado"
|
1059 |
|
1060 |
-
#: lib/wfu_constants.php:
|
1061 |
msgid "File failed to upload"
|
1062 |
msgstr "Falha no envio do arquivo"
|
1063 |
|
1064 |
-
#: lib/wfu_constants.php:
|
1065 |
msgid "There are no files to upload!"
|
1066 |
msgstr "Não há arquivos para envio!"
|
1067 |
|
1068 |
-
#: lib/wfu_constants.php:
|
1069 |
msgid "Test upload message"
|
1070 |
msgstr "Testar mensagem de envio"
|
1071 |
|
1072 |
-
#: lib/wfu_constants.php:
|
1073 |
msgid "JSON parse warning!"
|
1074 |
msgstr "JSON analisar parse!"
|
1075 |
|
1076 |
-
#: lib/wfu_constants.php:
|
1077 |
msgid "please wait while redirecting..."
|
1078 |
msgstr "por favor aguarde enquanto redireciona ..."
|
1079 |
|
1080 |
-
#: lib/wfu_constants.php:
|
1081 |
msgid "Submitting data"
|
1082 |
msgstr "Enviando dados"
|
1083 |
|
1084 |
-
#: lib/wfu_constants.php:
|
1085 |
msgid "Data submitted successfully!"
|
1086 |
msgstr "Dados enviados com sucesso!"
|
1087 |
|
1088 |
-
#: lib/wfu_constants.php:
|
1089 |
msgid "Data were not submitted!"
|
1090 |
msgstr "Os dados não foram enviados!"
|
1091 |
|
1092 |
-
#: lib/wfu_constants.php:
|
1093 |
msgid "Cancelling upload"
|
1094 |
msgstr "Cancelando o envio"
|
1095 |
|
1096 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1097 |
msgid "Open visual shortcode editor in new window"
|
1098 |
msgstr "Abra o editor de shortcode visual em uma nova janela"
|
1099 |
|
1100 |
-
#: lib/wfu_constants.php:
|
1101 |
msgid "loading visual editor"
|
1102 |
msgstr "carregando editor visual"
|
1103 |
|
1104 |
-
#: lib/wfu_constants.php:
|
1105 |
msgid "Clear file list?"
|
1106 |
msgstr "Apagar lista de arquivos?"
|
1107 |
|
1108 |
-
#: lib/wfu_constants.php:
|
1109 |
msgid "DROP HERE"
|
1110 |
msgstr "SOLTAR AQUI"
|
1111 |
|
1112 |
-
#: lib/wfu_constants.php:
|
1113 |
msgid "record video"
|
1114 |
msgstr "gravar vídeo"
|
1115 |
|
1116 |
-
#: lib/wfu_constants.php:
|
1117 |
msgid "take a picture"
|
1118 |
msgstr "tirar uma foto"
|
1119 |
|
1120 |
-
#: lib/wfu_constants.php:
|
1121 |
msgid "turn webcam on/off"
|
1122 |
msgstr "ligar / desligar a webcam"
|
1123 |
|
1124 |
-
#: lib/wfu_constants.php:
|
1125 |
msgid "go live again"
|
1126 |
msgstr "ao vivo novamente"
|
1127 |
|
1128 |
-
#: lib/wfu_constants.php:
|
1129 |
msgid "end recording"
|
1130 |
msgstr "finalizar gravação"
|
1131 |
|
1132 |
-
#: lib/wfu_constants.php:
|
1133 |
msgid "play"
|
1134 |
msgstr "exibir"
|
1135 |
|
1136 |
-
#: lib/wfu_constants.php:
|
1137 |
msgid "pause"
|
1138 |
msgstr "pausar"
|
1139 |
|
1140 |
-
#: lib/wfu_constants.php:
|
1141 |
msgid "go to the beginning"
|
1142 |
msgstr "ir para o início"
|
1143 |
|
1144 |
-
#: lib/wfu_constants.php:
|
1145 |
msgid "go to the end"
|
1146 |
msgstr "ir para o fim"
|
1147 |
|
1148 |
-
#: lib/wfu_constants.php:
|
1149 |
msgid "Wordpress File Upload Form"
|
1150 |
msgstr "Formulário de Envio de Arquivos do Wordpress"
|
1151 |
|
1152 |
-
#: lib/wfu_constants.php:
|
1153 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1154 |
msgstr ""
|
1155 |
"Carregador de plugins de Envio de Arquivos do Wordpress para barras laterais"
|
1156 |
|
1157 |
-
#: lib/wfu_constants.php:
|
1158 |
msgid "Upload Files"
|
1159 |
msgstr "Enviar arquivos"
|
1160 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:41+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:41+0200\n"
|
7 |
"Last-Translator: Jon Hanson <jon@quickbrasil.org>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: pt_BR\n"
|
105 |
msgstr ""
|
106 |
"Ao ativar esta opção, concordo em deixar o site manter meus dados pessoais"
|
107 |
|
108 |
+
#: lib/wfu_constants.php:34
|
109 |
+
msgid ""
|
110 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
111 |
+
"continue!"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/wfu_constants.php:36
|
115 |
msgid "File"
|
116 |
msgstr "Arquivo"
|
117 |
|
118 |
+
#: lib/wfu_constants.php:37
|
119 |
msgid "Date"
|
120 |
msgstr "Data"
|
121 |
|
122 |
+
#: lib/wfu_constants.php:38
|
123 |
msgid "Size"
|
124 |
msgstr "Tamanho"
|
125 |
|
126 |
+
#: lib/wfu_constants.php:39
|
127 |
msgid "User"
|
128 |
msgstr "Usuário"
|
129 |
|
130 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
131 |
msgid "Page"
|
132 |
msgstr "Página"
|
133 |
|
134 |
+
#: lib/wfu_constants.php:41
|
135 |
msgid "User Fields"
|
136 |
msgstr "Campos do usuário"
|
137 |
|
138 |
+
#: lib/wfu_constants.php:42
|
139 |
msgid "Download"
|
140 |
msgstr "Baixar"
|
141 |
|
142 |
+
#: lib/wfu_constants.php:43
|
143 |
msgid "Download this file"
|
144 |
msgstr "Baixar este arquivo"
|
145 |
|
146 |
+
#: lib/wfu_constants.php:44
|
147 |
msgid "Delete"
|
148 |
msgstr "Excluir"
|
149 |
|
150 |
+
#: lib/wfu_constants.php:45
|
151 |
msgid "Delete this file"
|
152 |
msgstr "Excluir este arquivo"
|
153 |
|
154 |
+
#: lib/wfu_constants.php:46
|
155 |
msgid "Sort list based on this column"
|
156 |
msgstr "Ordenar lista com base nesta coluna"
|
157 |
|
158 |
+
#: lib/wfu_constants.php:47
|
159 |
msgid "guest"
|
160 |
msgstr "convidado"
|
161 |
|
162 |
+
#: lib/wfu_constants.php:48
|
163 |
msgid "unknown"
|
164 |
msgstr "desconhecido"
|
165 |
|
166 |
+
#: lib/wfu_constants.php:50
|
167 |
msgid ""
|
168 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
169 |
"attribute."
|
171 |
"Erro. Não foi possível encontrar o filedir de destino do FTP. Verifique o "
|
172 |
"domínio no atributo 'ftpinfo'."
|
173 |
|
174 |
+
#: lib/wfu_constants.php:51
|
175 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
176 |
msgstr "Erro. Informações inválidas de FTP. Verifique o atributo 'ftpinfo'."
|
177 |
|
178 |
+
#: lib/wfu_constants.php:52
|
179 |
msgid ""
|
180 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
181 |
"syntax."
|
183 |
"Erro. Não foi possível extrair informações de FTP do atributo 'ftpinfo'. "
|
184 |
"Verifique sua sintaxe."
|
185 |
|
186 |
+
#: lib/wfu_constants.php:53
|
187 |
msgid ""
|
188 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
189 |
"attribute."
|
191 |
"Erro. Não foi possível encontrar o nome do arquivo de destino do ftp. "
|
192 |
"Verifique o domínio no atributo 'ftpinfo'."
|
193 |
|
194 |
+
#: lib/wfu_constants.php:54
|
195 |
msgid ""
|
196 |
"Error. Could not open source file for ftp upload. Check if file is "
|
197 |
"accessible."
|
199 |
"Erro. Não foi possível abrir o arquivo de origem para o envio do ftp. "
|
200 |
"Verifique se o arquivo está acessível."
|
201 |
|
202 |
+
#: lib/wfu_constants.php:55
|
203 |
msgid "Error. Could not send data to ftp target file."
|
204 |
msgstr "Erro. Não foi possível enviar dados para o arquivo de destino do ftp."
|
205 |
|
206 |
+
#: lib/wfu_constants.php:56
|
207 |
msgid ""
|
208 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
209 |
"attribute."
|
211 |
"Erro. Não foi possível conectar-se ao host FTP. Verifique o domínio no "
|
212 |
"atributo 'ftpinfo'."
|
213 |
|
214 |
+
#: lib/wfu_constants.php:57
|
215 |
msgid ""
|
216 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
217 |
"'ftpinfo' attribute."
|
219 |
"Erro. Não foi possível autenticar para o host FTP. Verifique o nome e a "
|
220 |
"senha do usuário no atributo 'ftpinfo'."
|
221 |
|
222 |
+
#: lib/wfu_constants.php:58
|
223 |
msgid ""
|
224 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
225 |
"supports sftp."
|
227 |
"Erro. Não foi possível inicializar o subsistema sftp. Por favor, verifique "
|
228 |
"se o servidor suporta sftp."
|
229 |
|
230 |
+
#: lib/wfu_constants.php:59
|
231 |
msgid "Error. The web server does not support sftp."
|
232 |
msgstr "Erro. O servidor web não suporta sftp."
|
233 |
|
234 |
+
#: lib/wfu_constants.php:60
|
235 |
msgid ""
|
236 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
237 |
"preventing the upload of big files.\n"
|
241 |
"upload_max_filesize está impedindo o envio de arquivos grandes.\n"
|
242 |
"O limite de upload_max_filesize da diretiva do PHP é: "
|
243 |
|
244 |
+
#: lib/wfu_constants.php:61
|
245 |
msgid ""
|
246 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
247 |
"upload of big files.\n"
|
251 |
"o envio de arquivos grandes.\n"
|
252 |
"A diretiva do PHP max_input_time limit é: "
|
253 |
|
254 |
+
#: lib/wfu_constants.php:62
|
255 |
msgid ""
|
256 |
"Error. Permission denied to write to target folder.\n"
|
257 |
"Check and correct read/write permissions of target folder."
|
259 |
"Erro. Permissão negada para gravar na pasta de destino.\n"
|
260 |
"Verifique e corrija as permissões de leitura / gravação da pasta de destino."
|
261 |
|
262 |
+
#: lib/wfu_constants.php:63
|
263 |
msgid ""
|
264 |
"Error. This file was rejected because its extension is not correct. Its "
|
265 |
"proper filename is: "
|
267 |
"Erro. Este arquivo foi rejeitado porque sua extensão não está correta. Seu "
|
268 |
"nome de arquivo correto é: "
|
269 |
|
270 |
+
#: lib/wfu_constants.php:64
|
271 |
msgid ""
|
272 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
273 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
277 |
"um ataque de Denial-Of-Service, portanto, o arquivo foi rejeitado. Por "
|
278 |
"favor, verifique o log de envio para comportamento suspeito."
|
279 |
|
280 |
+
#: lib/wfu_constants.php:65
|
281 |
msgid ""
|
282 |
"File not uploaded in order to prevent overflow of the website. Please "
|
283 |
"contact administrator."
|
285 |
"Arquivo não enviado para evitar o estouro de limite de tráfego do site. Por "
|
286 |
"favor, entre em contato com o administrador."
|
287 |
|
288 |
+
#: lib/wfu_constants.php:66
|
289 |
msgid "Target folder doesn't exist."
|
290 |
msgstr "Pasta de destino não existe."
|
291 |
|
292 |
+
#: lib/wfu_constants.php:67
|
293 |
msgid "Upload failed! Missing a temporary folder."
|
294 |
msgstr "O envio falhou! Faltando uma pasta temporária."
|
295 |
|
296 |
+
#: lib/wfu_constants.php:68
|
297 |
msgid "Upload failed! Permission denied to write to target folder."
|
298 |
msgstr "O envio falhou! Permissão negada para gravar na pasta de destino."
|
299 |
|
300 |
+
#: lib/wfu_constants.php:69
|
301 |
msgid "File not allowed."
|
302 |
msgstr "Arquivo não permitido."
|
303 |
|
304 |
+
#: lib/wfu_constants.php:70
|
305 |
msgid "File is suspicious and was rejected."
|
306 |
msgstr "O arquivo é suspeito e foi rejeitado."
|
307 |
|
308 |
+
#: lib/wfu_constants.php:71
|
309 |
msgid "The uploaded file exceeds the file size limit."
|
310 |
msgstr "O arquivo enviado excede o limite de tamanho de arquivo."
|
311 |
|
312 |
+
#: lib/wfu_constants.php:72
|
313 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
314 |
msgstr "O arquivo enviado excede 2 GB e não é suportado por este servidor."
|
315 |
|
316 |
+
#: lib/wfu_constants.php:73
|
317 |
msgid ""
|
318 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
319 |
"Please contact the administrator."
|
321 |
"O envio falhou! O arquivo enviado excede o limite de tamanho de arquivo do "
|
322 |
"servidor. Por favor contate o administrador."
|
323 |
|
324 |
+
#: lib/wfu_constants.php:74
|
325 |
msgid ""
|
326 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
327 |
"server. Please contact the administrator."
|
329 |
"O envio falhou! A duração do envio excedeu o limite de tempo do servidor. "
|
330 |
"Por favor contate o administrador."
|
331 |
|
332 |
+
#: lib/wfu_constants.php:75
|
333 |
msgid ""
|
334 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
335 |
"was specified in the HTML form."
|
337 |
"O envio falhou! O arquivo enviado excede a diretiva MAX_FILE_SIZE "
|
338 |
"especificada no formulário HTML."
|
339 |
|
340 |
+
#: lib/wfu_constants.php:76
|
341 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
342 |
msgstr "O envio falhou! O arquivo enviado foi apenas parcialmente carregado."
|
343 |
|
344 |
+
#: lib/wfu_constants.php:77
|
345 |
msgid "Upload failed! No file was uploaded."
|
346 |
msgstr "O envio falhou! Nenhum arquivo foi enviado."
|
347 |
|
348 |
+
#: lib/wfu_constants.php:78
|
349 |
msgid "Upload failed! Failed to write file to disk."
|
350 |
msgstr "O envio falhou! Falha ao gravar o arquivo no disco."
|
351 |
|
352 |
+
#: lib/wfu_constants.php:79
|
353 |
msgid ""
|
354 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
355 |
"administrator."
|
357 |
"O envio falhou! Ocorreu um erro ao mover o arquivo temporário. Por favor, "
|
358 |
"entre em contato com o administrador."
|
359 |
|
360 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
361 |
msgid "Upload cancelled!"
|
362 |
msgstr "Envio cancelado!"
|
363 |
|
364 |
+
#: lib/wfu_constants.php:81
|
365 |
msgid ""
|
366 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
367 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
371 |
"uma maneira de determinar qual extensão causou a parada do envio do arquivo; "
|
372 |
"Examinar a lista de extensões carregadas com phpinfo() pode ajudar."
|
373 |
|
374 |
+
#: lib/wfu_constants.php:82
|
375 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
376 |
msgstr "O envio falhou! Ocorreu um erro ao tentar carregar o arquivo."
|
377 |
|
378 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
379 |
msgid "Upload failed!"
|
380 |
msgstr "O envio falhou!"
|
381 |
|
382 |
+
#: lib/wfu_constants.php:84
|
383 |
msgid "No file!"
|
384 |
msgstr "Nenhum arquivo!"
|
385 |
|
386 |
+
#: lib/wfu_constants.php:85
|
387 |
msgid ""
|
388 |
"Upload failed! The upload has been canceled by the user or the browser "
|
389 |
"dropped the connection."
|
391 |
"O envio falhou! O envio foi cancelado pelo usuário ou o navegador perdeu a "
|
392 |
"conexão."
|
393 |
|
394 |
+
#: lib/wfu_constants.php:86
|
395 |
msgid "Upload failed! Unknown error."
|
396 |
msgstr "O envio falhou! Erro desconhecido."
|
397 |
|
398 |
+
#: lib/wfu_constants.php:87
|
399 |
msgid "Please contact the administrator."
|
400 |
msgstr "Por favor contate o administrador."
|
401 |
|
402 |
+
#: lib/wfu_constants.php:88
|
403 |
msgid "No result from remote server!"
|
404 |
msgstr "Nenhum resultado do servidor remoto!"
|
405 |
|
406 |
+
#: lib/wfu_constants.php:89
|
407 |
msgid " but with warnings"
|
408 |
msgstr " mas com problemas"
|
409 |
|
410 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
411 |
msgid "Warning: JSON parse error."
|
412 |
msgstr "Aviso: erro de parse do JSON."
|
413 |
|
414 |
+
#: lib/wfu_constants.php:91
|
415 |
msgid ""
|
416 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
417 |
"not be parsed."
|
419 |
"Os parâmetros de envio desse arquivo, transmitidos como string JSON para o "
|
420 |
"interpretador, não puderam ser traduzidos."
|
421 |
|
422 |
+
#: lib/wfu_constants.php:93
|
423 |
msgid ""
|
424 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
425 |
msgstr ""
|
426 |
"UploadStates, transmitidos como string JSON para o interpretador, não "
|
427 |
"puderam ser traduzidos."
|
428 |
|
429 |
+
#: lib/wfu_constants.php:94
|
430 |
msgid ""
|
431 |
"Redirection to classic form functionality occurred due to unknown error."
|
432 |
msgstr ""
|
433 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
434 |
"devido a erro desconhecido."
|
435 |
|
436 |
+
#: lib/wfu_constants.php:95
|
437 |
msgid ""
|
438 |
"Redirection to classic form functionality occurred because AJAX is not "
|
439 |
"supported."
|
441 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
442 |
"porque o AJAX não é suportado."
|
443 |
|
444 |
+
#: lib/wfu_constants.php:96
|
445 |
msgid ""
|
446 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
447 |
"supported."
|
449 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
450 |
"porque o HTML5 não é suportado."
|
451 |
|
452 |
+
#: lib/wfu_constants.php:97
|
453 |
msgid ""
|
454 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
455 |
msgstr ""
|
456 |
"O redirecionamento para a funcionalidade de formulário clássico ocorreu "
|
457 |
"devido ao erro de análise JSON."
|
458 |
|
459 |
+
#: lib/wfu_constants.php:98
|
460 |
msgid "Please enable popup windows from the browser's settings!"
|
461 |
msgstr "Por favor, habilite as janelas pop-up nas configurações do navegador!"
|
462 |
|
463 |
+
#: lib/wfu_constants.php:99
|
464 |
msgid "cannot be empty!"
|
465 |
msgstr "não pode estar vazio!"
|
466 |
|
467 |
+
#: lib/wfu_constants.php:100
|
468 |
msgid "number not valid!"
|
469 |
msgstr "número não válido!"
|
470 |
|
471 |
+
#: lib/wfu_constants.php:101
|
472 |
msgid "email not valid!"
|
473 |
msgstr "email não válido!"
|
474 |
|
475 |
+
#: lib/wfu_constants.php:102
|
476 |
msgid "emails do not match!"
|
477 |
msgstr "emails não coincidem!"
|
478 |
|
479 |
+
#: lib/wfu_constants.php:103
|
480 |
msgid "no base email field in group!"
|
481 |
msgstr "nenhum campo de e-mail base no grupo!"
|
482 |
|
483 |
+
#: lib/wfu_constants.php:104
|
484 |
msgid "passwords do not match!"
|
485 |
msgstr "as senhas não coincidem!"
|
486 |
|
487 |
+
#: lib/wfu_constants.php:105
|
488 |
msgid "no base password field in group!"
|
489 |
msgstr "nenhum campo de senha base no grupo!"
|
490 |
|
491 |
+
#: lib/wfu_constants.php:106
|
492 |
msgid "checkbox unchecked!"
|
493 |
msgstr "caixa de seleção desmarcada!"
|
494 |
|
495 |
+
#: lib/wfu_constants.php:107
|
496 |
msgid "no option selected!"
|
497 |
msgstr "nenhuma opção selecionada!"
|
498 |
|
499 |
+
#: lib/wfu_constants.php:108
|
500 |
msgid "no item selected!"
|
501 |
msgstr "nenhum item selecionado!"
|
502 |
|
503 |
+
#: lib/wfu_constants.php:109
|
504 |
msgid ""
|
505 |
"There are more than one instances of the plugin in this page with the same "
|
506 |
"id. Please change it."
|
508 |
"Existe mais de uma instância do plugin nesta página com o mesmo id. Por "
|
509 |
"favor mude isto."
|
510 |
|
511 |
+
#: lib/wfu_constants.php:110
|
512 |
msgid ""
|
513 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
514 |
"the page."
|
516 |
"Não é possível editar o shortcode porque a página foi modificada. Por favor "
|
517 |
"recarregue a página."
|
518 |
|
519 |
+
#: lib/wfu_constants.php:111
|
520 |
msgid "Your browser does not support webcam capture!"
|
521 |
msgstr "Seu navegador não suporta captura de webcam!"
|
522 |
|
523 |
+
#: lib/wfu_constants.php:112
|
524 |
msgid "Your browser does not support video recording from the webcam!"
|
525 |
msgstr "Seu navegador não suporta gravação de vídeo da webcam!"
|
526 |
|
527 |
+
#: lib/wfu_constants.php:113
|
528 |
msgid "No video was recorded!"
|
529 |
msgstr "Nenhum vídeo foi gravado!"
|
530 |
|
531 |
+
#: lib/wfu_constants.php:114
|
532 |
msgid ""
|
533 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
534 |
"or use RecaptchaV2 (no account)."
|
536 |
"ERRO: Captcha não suportado! Você tem uma versão antiga do PHP. Atualize seu "
|
537 |
"PHP ou use RecaptchaV2 (sem conta)."
|
538 |
|
539 |
+
#: lib/wfu_constants.php:115
|
540 |
msgid ""
|
541 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
542 |
"notify administrator."
|
544 |
"ERRO: Apenas uma instância do RecaptchaV1 pode existir na mesma página. Por "
|
545 |
"favor, notifique o administrador."
|
546 |
|
547 |
+
#: lib/wfu_constants.php:116
|
548 |
msgid ""
|
549 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
550 |
"use RecaptchaV1 (no account)."
|
552 |
"ERRO: Apenas uma instância do RecaptchaV1 pode existir na mesma página. Por "
|
553 |
"favor use RecaptchaV1 (sem conta)."
|
554 |
|
555 |
+
#: lib/wfu_constants.php:117
|
556 |
msgid "ERROR: No site key. Please contact administrator!"
|
557 |
msgstr ""
|
558 |
"ERRO: nenhuma chave de site. Por favor, entre em contato com o administrador!"
|
559 |
|
560 |
+
#: lib/wfu_constants.php:118
|
561 |
msgid ""
|
562 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
563 |
"define Google Recaptcha keys."
|
565 |
"ERRO: Nenhuma chave de site definida! Acesse as configurações do plug-in no "
|
566 |
"Painel para definir as chaves do Google Recaptcha."
|
567 |
|
568 |
+
#: lib/wfu_constants.php:119
|
569 |
msgid "Bad captcha image!"
|
570 |
msgstr "Imagem do captcha ruim!"
|
571 |
|
572 |
+
#: lib/wfu_constants.php:120
|
573 |
msgid "No input!"
|
574 |
msgstr "Sem entrada!"
|
575 |
|
576 |
+
#: lib/wfu_constants.php:121
|
577 |
msgid "Captcha not completed!"
|
578 |
msgstr "Captcha não concluído!"
|
579 |
|
580 |
+
#: lib/wfu_constants.php:122
|
581 |
msgid "Wrong captcha!"
|
582 |
msgstr "Captcha errado!"
|
583 |
|
584 |
+
#: lib/wfu_constants.php:123
|
585 |
msgid "Error refreshing captcha!"
|
586 |
msgstr "Erro ao atualizar o captcha!"
|
587 |
|
588 |
+
#: lib/wfu_constants.php:124
|
589 |
msgid "Unknown captcha error!"
|
590 |
msgstr "Erro de captcha desconhecido!"
|
591 |
|
592 |
+
#: lib/wfu_constants.php:125
|
593 |
msgid "Captcha not supported by your browser!"
|
594 |
msgstr "Captcha não suportado pelo seu navegador!"
|
595 |
|
596 |
+
#: lib/wfu_constants.php:126
|
597 |
msgid "the secret parameter is missing"
|
598 |
msgstr "o parâmetro secreto está faltando"
|
599 |
|
600 |
+
#: lib/wfu_constants.php:127
|
601 |
msgid "the secret parameter is invalid or malformed"
|
602 |
msgstr "o parâmetro secreto é inválido ou mal informado"
|
603 |
|
604 |
+
#: lib/wfu_constants.php:128
|
605 |
msgid "the response parameter is missing"
|
606 |
msgstr "o parâmetro de resposta está ausente"
|
607 |
|
608 |
+
#: lib/wfu_constants.php:129
|
609 |
msgid "the response parameter is invalid or malformed"
|
610 |
msgstr "o parâmetro de resposta é inválido ou mal informado"
|
611 |
|
612 |
+
#: lib/wfu_constants.php:130
|
613 |
msgid "Please do not use drag drop due to an internal problem."
|
614 |
msgstr "Por favor, não use o recurso de arrastar devido a um problema interno."
|
615 |
|
616 |
+
#: lib/wfu_constants.php:131
|
617 |
#, php-format
|
618 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
619 |
msgstr "Erro durante o envio em partes. ID exclusivo vazio no fragmento %d"
|
620 |
|
621 |
+
#: lib/wfu_constants.php:132
|
622 |
msgid "Chunked upload is not allowed!"
|
623 |
msgstr "Envio em partes não é permitido!"
|
624 |
|
625 |
+
#: lib/wfu_constants.php:133
|
626 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
627 |
msgstr "Envio em partes abortado devido a erro no fragmento anterior!"
|
628 |
|
629 |
+
#: lib/wfu_constants.php:134
|
630 |
msgid "Chunked upload failed, final file could not be created!"
|
631 |
msgstr "O envio em partes falhou, o arquivo final não pôde ser criado!"
|
632 |
|
633 |
+
#: lib/wfu_constants.php:135
|
634 |
#, php-format
|
635 |
msgid "Could not write file chuck to destination on chunk %d"
|
636 |
msgstr ""
|
637 |
"Não foi possível gravar o mandril de arquivos no destino no fragmento %d"
|
638 |
|
639 |
+
#: lib/wfu_constants.php:136
|
640 |
#, php-format
|
641 |
msgid "Could not enlarge destination file on chunk %d"
|
642 |
msgstr "Não foi possível ampliar o arquivo de destino no fragmento %d"
|
643 |
|
644 |
+
#: lib/wfu_constants.php:137
|
645 |
#, php-format
|
646 |
msgid "Could not open file handles on chunk %d"
|
647 |
msgstr "Não foi possível abrir interpretadores de arquivo no fragmento %d"
|
648 |
|
649 |
+
#: lib/wfu_constants.php:138
|
650 |
msgid "You are not allowed to download this file!"
|
651 |
msgstr "Você não tem permissão para baixar este arquivo!"
|
652 |
|
653 |
+
#: lib/wfu_constants.php:139
|
654 |
msgid "File does not exist!"
|
655 |
msgstr "Arquivo não existe!"
|
656 |
|
657 |
+
#: lib/wfu_constants.php:140
|
658 |
msgid "Could not download file!"
|
659 |
msgstr "Não foi possível baixar o arquivo!"
|
660 |
|
661 |
+
#: lib/wfu_constants.php:141
|
662 |
msgid "You are not allowed to delete this file!"
|
663 |
msgstr "Você não tem permissão para excluir este arquivo!"
|
664 |
|
665 |
+
#: lib/wfu_constants.php:142
|
666 |
msgid "File was not deleted!"
|
667 |
msgstr "Arquivo não foi excluído!"
|
668 |
|
669 |
+
#: lib/wfu_constants.php:143
|
670 |
msgid "No file was deleted!"
|
671 |
msgstr "Nenhum arquivo foi excluído!"
|
672 |
|
673 |
+
#: lib/wfu_constants.php:144
|
674 |
msgid "Some files were not deleted!"
|
675 |
msgstr "Alguns arquivos não foram excluídos!"
|
676 |
|
677 |
+
#: lib/wfu_constants.php:146
|
678 |
msgid "Upload skipped! File already exists."
|
679 |
msgstr "Envio ignorado! O arquivo já existe."
|
680 |
|
681 |
+
#: lib/wfu_constants.php:147
|
682 |
msgid "The extension of the file does not match its contents."
|
683 |
msgstr "A extensão do arquivo não corresponde ao seu conteúdo."
|
684 |
|
685 |
+
#: lib/wfu_constants.php:148
|
686 |
msgid ""
|
687 |
"Upload succeeded but the file is suspicious because its contents do not "
|
688 |
"match its extension. Its proper filename is: "
|
690 |
"O envio foi bem-sucedido, mas o arquivo é suspeito porque seu conteúdo não "
|
691 |
"corresponde à sua extensão. Seu nome de arquivo correto é: "
|
692 |
|
693 |
+
#: lib/wfu_constants.php:149
|
694 |
msgid "No files have been selected!"
|
695 |
msgstr "Nenhum arquivo foi selecionado!"
|
696 |
|
697 |
+
#: lib/wfu_constants.php:150
|
698 |
msgid "Please complete the consent question before continuing the upload!"
|
699 |
msgstr ""
|
700 |
"Por favor, preencha a questão do consentimento antes de continuar o envio!"
|
701 |
|
702 |
+
#: lib/wfu_constants.php:151
|
703 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
704 |
msgstr "Plugin WPFilebase não atualizado porque não havia arquivos enviados."
|
705 |
|
706 |
+
#: lib/wfu_constants.php:152
|
707 |
msgid "Notification email was not sent because there were no files uploaded."
|
708 |
msgstr ""
|
709 |
"O e-mail de notificação não foi enviado porque não havia arquivos enviados."
|
710 |
|
711 |
+
#: lib/wfu_constants.php:153
|
712 |
msgid ""
|
713 |
"Notification email was not sent because no recipients were defined. Please "
|
714 |
"check notifyrecipients attribute in the shortcode."
|
716 |
"O e-mail de notificação não foi enviado porque nenhum destinatário foi "
|
717 |
"definido. Por favor, verifique o atributo notifyRecipients no shortcode."
|
718 |
|
719 |
+
#: lib/wfu_constants.php:154
|
720 |
msgid ""
|
721 |
"Notification email was not sent due to an error. Please check "
|
722 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
725 |
"verifique os atributos notifyRecipients, notifysubject e notifymessage para "
|
726 |
"erros."
|
727 |
|
728 |
+
#: lib/wfu_constants.php:155
|
729 |
msgid ""
|
730 |
"Redirection not executed because redirection link is empty. Please check "
|
731 |
"redirectlink attribute."
|
733 |
"Redirecionamento não executado porque o link de redirecionamento está vazio. "
|
734 |
"Por favor, verifique o atributo redirectlink."
|
735 |
|
736 |
+
#: lib/wfu_constants.php:156
|
737 |
msgid ""
|
738 |
"Redirection not executed because not all files were successfully uploaded."
|
739 |
msgstr ""
|
740 |
"Redirecionamento não executado porque nem todos os arquivos foram enviados "
|
741 |
"com sucesso."
|
742 |
|
743 |
+
#: lib/wfu_constants.php:157
|
744 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
745 |
msgstr "Ataque potencial de Denial-Of-Service em {SITE}"
|
746 |
|
747 |
+
#: lib/wfu_constants.php:158
|
748 |
msgid ""
|
749 |
"Hello admin\n"
|
750 |
"\n"
|
781 |
"\n"
|
782 |
"Obrigado"
|
783 |
|
784 |
+
#: lib/wfu_constants.php:159
|
785 |
msgid ""
|
786 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
787 |
"details please contact info@iptanus.com."
|
789 |
"Você ativou uma alternativa insegura Iptanus Services Server. Para mais "
|
790 |
"detalhes, entre em contato com info@iptanus.com."
|
791 |
|
792 |
+
#: lib/wfu_constants.php:160
|
793 |
msgid ""
|
794 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
795 |
"plugin functions. Please read this :article: for resolution."
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: lib/wfu_constants.php:162
|
799 |
msgid ""
|
800 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
801 |
"message persists, contact administrator."
|
803 |
"Falha ao adicionar o shortcode à página / postagem. Por favor, tente "
|
804 |
"novamente. Se a mensagem persistir, entre em contato com o administrador."
|
805 |
|
806 |
+
#: lib/wfu_constants.php:163
|
807 |
msgid ""
|
808 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
809 |
"again to edit the shortcode."
|
811 |
"Falha ao editar o shortcode porque o conteúdo da página foi alterado. Tente "
|
812 |
"novamente editar o shortcode."
|
813 |
|
814 |
+
#: lib/wfu_constants.php:164
|
815 |
msgid ""
|
816 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
817 |
"again to delete it."
|
819 |
"Falha ao excluir o shortcode porque o conteúdo da página foi alterado. Tente "
|
820 |
"novamente excluí-lo."
|
821 |
|
822 |
+
#: lib/wfu_constants.php:165
|
823 |
msgid ""
|
824 |
"The page containing the shortcode has been modified and it is no longer "
|
825 |
"valid. Please go back to reload the shortcode."
|
827 |
"A página que contém o shortcode foi modificada e não é mais válida. Por "
|
828 |
"favor, volte para recarregar o shortcode."
|
829 |
|
830 |
+
#: lib/wfu_constants.php:166
|
831 |
msgid ""
|
832 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
833 |
"back to reload the shortcode."
|
835 |
"Falha ao atualizar o shortcode porque o conteúdo da página foi alterado. "
|
836 |
"Volte para recarregar o shortcode."
|
837 |
|
838 |
+
#: lib/wfu_constants.php:167
|
839 |
msgid ""
|
840 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
841 |
"go back and reload the shortcode."
|
843 |
"Falha ao atualizar o shortcode. Por favor, tente novamente. Se o problema "
|
844 |
"persistir, volte e recarregue o código de acesso."
|
845 |
|
846 |
+
#: lib/wfu_constants.php:169
|
847 |
msgid "This is a test message"
|
848 |
msgstr "Esta é uma mensagem de teste"
|
849 |
|
850 |
+
#: lib/wfu_constants.php:170
|
851 |
msgid "This is a test administrator message"
|
852 |
msgstr "Esta é uma mensagem do administrador de teste"
|
853 |
|
854 |
+
#: lib/wfu_constants.php:171
|
855 |
msgid "File testfile 1 under test"
|
856 |
msgstr "Arquivo testfile 1 sob teste"
|
857 |
|
858 |
+
#: lib/wfu_constants.php:172
|
859 |
msgid "File testfile 1 message"
|
860 |
msgstr "Arquivo testfile 1 message"
|
861 |
|
862 |
+
#: lib/wfu_constants.php:173
|
863 |
msgid "File testfile 1 administrator message"
|
864 |
msgstr "Mensagem do administrador do arquivo testfile 1"
|
865 |
|
866 |
+
#: lib/wfu_constants.php:174
|
867 |
msgid "File testfile 2 under test"
|
868 |
msgstr "Arquivo de teste 2 sob teste"
|
869 |
|
870 |
+
#: lib/wfu_constants.php:175
|
871 |
msgid "File testfile 2 message"
|
872 |
msgstr "Mensagem do arquivo de teste 2"
|
873 |
|
874 |
+
#: lib/wfu_constants.php:176
|
875 |
msgid "File testfile 2 administrator message"
|
876 |
msgstr "Mensagem do administrador do arquivo testfile 2"
|
877 |
|
878 |
+
#: lib/wfu_constants.php:178
|
879 |
msgid ""
|
880 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
881 |
"current user."
|
883 |
"Insira a variável %userid% dentro do texto. Será substituído pelo id do "
|
884 |
"usuário atual."
|
885 |
|
886 |
+
#: lib/wfu_constants.php:179
|
887 |
msgid ""
|
888 |
"Insert variable %username% inside text. It will be replaced by the username "
|
889 |
"of the current user."
|
891 |
"Insira a variável %username% dentro do texto. Ele será substituído pelo nome "
|
892 |
"de usuário atual."
|
893 |
|
894 |
+
#: lib/wfu_constants.php:180
|
895 |
msgid ""
|
896 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
897 |
"the current user."
|
899 |
"Insira a variável %useremail% dentro do texto. Ele será substituído pelo e-"
|
900 |
"mail do usuário atual."
|
901 |
|
902 |
+
#: lib/wfu_constants.php:181
|
903 |
msgid ""
|
904 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
905 |
"of the uploaded file."
|
907 |
"Insira a variável %filename% no texto. Ele será substituído pelo nome do "
|
908 |
"arquivo do arquivo enviado."
|
909 |
|
910 |
+
#: lib/wfu_constants.php:182
|
911 |
msgid ""
|
912 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
913 |
"filepath of the uploaded file."
|
915 |
"Insira a variável %filepath% dentro do texto. Ele será substituído pelo "
|
916 |
"caminho de arquivo completo do arquivo enviado."
|
917 |
|
918 |
+
#: lib/wfu_constants.php:183
|
919 |
msgid ""
|
920 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
921 |
"the website."
|
923 |
"Insira a variável %blogid% dentro do texto. Ele será substituído pelo ID do "
|
924 |
"blog do site."
|
925 |
|
926 |
+
#: lib/wfu_constants.php:184
|
927 |
msgid ""
|
928 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
929 |
"current page."
|
931 |
"Insira a variável %pageid% dentro do texto. Será substituído pelo id da "
|
932 |
"página atual."
|
933 |
|
934 |
+
#: lib/wfu_constants.php:185
|
935 |
msgid ""
|
936 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
937 |
"the current page."
|
939 |
"Insira a variável %pagetitle% dentro do texto. Será substituído pelo título "
|
940 |
"da página atual."
|
941 |
|
942 |
+
#: lib/wfu_constants.php:186
|
943 |
msgid ""
|
944 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
945 |
"drop-down list. It will be replaced by the value that the user entered in "
|
949 |
"lista suspensa. Ele será substituído pelo valor que o usuário inseriu nesse "
|
950 |
"campo."
|
951 |
|
952 |
+
#: lib/wfu_constants.php:187
|
953 |
msgid "Insert variable %n% inside text to denote a line change."
|
954 |
msgstr ""
|
955 |
"Insira a variável %n% dentro do texto para indicar uma mudança de linha."
|
956 |
|
957 |
+
#: lib/wfu_constants.php:189
|
958 |
+
#, php-format
|
959 |
+
msgid "File %filename% uploaded successfully but not saved"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: lib/wfu_constants.php:190
|
963 |
msgid "Test Mode"
|
964 |
msgstr "Modo de teste"
|
965 |
|
966 |
+
#: lib/wfu_constants.php:191
|
967 |
msgid "select dir..."
|
968 |
msgstr "selecione dir ..."
|
969 |
|
970 |
+
#: lib/wfu_constants.php:192
|
971 |
msgid "type dir"
|
972 |
msgstr "digite dir"
|
973 |
|
974 |
+
#: lib/wfu_constants.php:193
|
975 |
msgid "Upload path: %filepath%"
|
976 |
msgstr "Caminho de upload: %filepath%"
|
977 |
|
978 |
+
#: lib/wfu_constants.php:194
|
979 |
msgid "Failed upload path: %filepath%"
|
980 |
msgstr "Caminho de upload com falha: %filepath%"
|
981 |
|
982 |
+
#: lib/wfu_constants.php:195
|
983 |
msgid " (required)"
|
984 |
msgstr " (requerido)"
|
985 |
|
986 |
+
#: lib/wfu_constants.php:196
|
987 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
988 |
msgstr ""
|
989 |
"Arquivos estão sendo enviados. Tem certeza de que deseja sair da página?"
|
990 |
|
991 |
+
#: lib/wfu_constants.php:197
|
992 |
msgid "checking captcha..."
|
993 |
msgstr "verificando o captcha ..."
|
994 |
|
995 |
+
#: lib/wfu_constants.php:198
|
996 |
msgid "refreshing..."
|
997 |
msgstr "atualizando..."
|
998 |
|
999 |
+
#: lib/wfu_constants.php:199
|
1000 |
msgid "correct captcha"
|
1001 |
msgstr "captcha correto"
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:200
|
1004 |
msgid "click to continue the upload"
|
1005 |
msgstr "clique para continuar o envio"
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:201
|
1008 |
msgid "Are you sure you want to delete this file?"
|
1009 |
msgstr "Tem certeza de que deseja excluir este arquivo?"
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:202
|
1012 |
msgid "Are you sure you want to delete these files?"
|
1013 |
msgstr "Tem certeza de que deseja excluir estes arquivos?"
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:203
|
1016 |
msgid "Bulk Actions"
|
1017 |
msgstr "Ações em massa"
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:204
|
1020 |
msgid "Apply"
|
1021 |
msgstr "Submeter"
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:206
|
1024 |
msgid "of "
|
1025 |
msgstr "de "
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:207
|
1028 |
msgid "Are you sure that you want to cancel the upload?"
|
1029 |
msgstr "Tem certeza de que deseja cancelar o envio?"
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:208
|
1032 |
msgid "cancel upload of this file"
|
1033 |
msgstr "cancelar o envio deste arquivo"
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:209
|
1036 |
msgid "Upload in progress"
|
1037 |
msgstr "Envio em andamento"
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:210
|
1040 |
msgid "Upload in progress with warnings!"
|
1041 |
msgstr "Envio em andamento com problemas!"
|
1042 |
|
1043 |
+
#: lib/wfu_constants.php:211
|
1044 |
msgid "Upload in progress but some files already failed!"
|
1045 |
msgstr "Envio em andamento, mas alguns arquivos já falharam!"
|
1046 |
|
1047 |
+
#: lib/wfu_constants.php:212
|
1048 |
msgid "Upload in progress but no files uploaded so far!"
|
1049 |
msgstr "Envio em andamento, mas nenhum arquivo enviado até o momento!"
|
1050 |
|
1051 |
+
#: lib/wfu_constants.php:213
|
1052 |
msgid "All files uploaded successfully"
|
1053 |
msgstr "Todos os arquivos enviados com sucesso"
|
1054 |
|
1055 |
+
#: lib/wfu_constants.php:214
|
1056 |
msgid "All files uploaded successfully but there are warnings!"
|
1057 |
msgstr "Todos os arquivos foram enviados com sucesso, mas há problemas!"
|
1058 |
|
1059 |
+
#: lib/wfu_constants.php:215
|
1060 |
msgid "File uploaded successfully but there are warnings!"
|
1061 |
msgstr "Arquivo enviado com sucesso, mas há problemas!"
|
1062 |
|
1063 |
+
#: lib/wfu_constants.php:216
|
1064 |
msgid "Some files failed to upload!"
|
1065 |
msgstr "Alguns arquivos não foram enviados!"
|
1066 |
|
1067 |
+
#: lib/wfu_constants.php:217
|
1068 |
msgid "All files failed to upload"
|
1069 |
msgstr "Nenhum arquivo foi enviado"
|
1070 |
|
1071 |
+
#: lib/wfu_constants.php:218
|
1072 |
msgid "File failed to upload"
|
1073 |
msgstr "Falha no envio do arquivo"
|
1074 |
|
1075 |
+
#: lib/wfu_constants.php:219
|
1076 |
msgid "There are no files to upload!"
|
1077 |
msgstr "Não há arquivos para envio!"
|
1078 |
|
1079 |
+
#: lib/wfu_constants.php:220
|
1080 |
msgid "Test upload message"
|
1081 |
msgstr "Testar mensagem de envio"
|
1082 |
|
1083 |
+
#: lib/wfu_constants.php:221
|
1084 |
msgid "JSON parse warning!"
|
1085 |
msgstr "JSON analisar parse!"
|
1086 |
|
1087 |
+
#: lib/wfu_constants.php:222
|
1088 |
msgid "please wait while redirecting..."
|
1089 |
msgstr "por favor aguarde enquanto redireciona ..."
|
1090 |
|
1091 |
+
#: lib/wfu_constants.php:224
|
1092 |
msgid "Submitting data"
|
1093 |
msgstr "Enviando dados"
|
1094 |
|
1095 |
+
#: lib/wfu_constants.php:225
|
1096 |
msgid "Data submitted successfully!"
|
1097 |
msgstr "Dados enviados com sucesso!"
|
1098 |
|
1099 |
+
#: lib/wfu_constants.php:226
|
1100 |
msgid "Data were not submitted!"
|
1101 |
msgstr "Os dados não foram enviados!"
|
1102 |
|
1103 |
+
#: lib/wfu_constants.php:227
|
1104 |
msgid "Cancelling upload"
|
1105 |
msgstr "Cancelando o envio"
|
1106 |
|
1107 |
+
#: lib/wfu_constants.php:229
|
1108 |
+
msgid "Upload succeeded!"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: lib/wfu_constants.php:230
|
1112 |
+
msgid "Upload completed but no files were saved!"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: lib/wfu_constants.php:231
|
1116 |
+
msgid "File was not saved due to personal data policy!"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: lib/wfu_constants.php:232
|
1120 |
msgid "Open visual shortcode editor in new window"
|
1121 |
msgstr "Abra o editor de shortcode visual em uma nova janela"
|
1122 |
|
1123 |
+
#: lib/wfu_constants.php:233
|
1124 |
msgid "loading visual editor"
|
1125 |
msgstr "carregando editor visual"
|
1126 |
|
1127 |
+
#: lib/wfu_constants.php:234
|
1128 |
msgid "Clear file list?"
|
1129 |
msgstr "Apagar lista de arquivos?"
|
1130 |
|
1131 |
+
#: lib/wfu_constants.php:235
|
1132 |
msgid "DROP HERE"
|
1133 |
msgstr "SOLTAR AQUI"
|
1134 |
|
1135 |
+
#: lib/wfu_constants.php:237
|
1136 |
msgid "record video"
|
1137 |
msgstr "gravar vídeo"
|
1138 |
|
1139 |
+
#: lib/wfu_constants.php:238
|
1140 |
msgid "take a picture"
|
1141 |
msgstr "tirar uma foto"
|
1142 |
|
1143 |
+
#: lib/wfu_constants.php:239
|
1144 |
msgid "turn webcam on/off"
|
1145 |
msgstr "ligar / desligar a webcam"
|
1146 |
|
1147 |
+
#: lib/wfu_constants.php:240
|
1148 |
msgid "go live again"
|
1149 |
msgstr "ao vivo novamente"
|
1150 |
|
1151 |
+
#: lib/wfu_constants.php:241
|
1152 |
msgid "end recording"
|
1153 |
msgstr "finalizar gravação"
|
1154 |
|
1155 |
+
#: lib/wfu_constants.php:242
|
1156 |
msgid "play"
|
1157 |
msgstr "exibir"
|
1158 |
|
1159 |
+
#: lib/wfu_constants.php:243
|
1160 |
msgid "pause"
|
1161 |
msgstr "pausar"
|
1162 |
|
1163 |
+
#: lib/wfu_constants.php:244
|
1164 |
msgid "go to the beginning"
|
1165 |
msgstr "ir para o início"
|
1166 |
|
1167 |
+
#: lib/wfu_constants.php:245
|
1168 |
msgid "go to the end"
|
1169 |
msgstr "ir para o fim"
|
1170 |
|
1171 |
+
#: lib/wfu_constants.php:247
|
1172 |
msgid "Wordpress File Upload Form"
|
1173 |
msgstr "Formulário de Envio de Arquivos do Wordpress"
|
1174 |
|
1175 |
+
#: lib/wfu_constants.php:248
|
1176 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1177 |
msgstr ""
|
1178 |
"Carregador de plugins de Envio de Arquivos do Wordpress para barras laterais"
|
1179 |
|
1180 |
+
#: lib/wfu_constants.php:249
|
1181 |
msgid "Upload Files"
|
1182 |
msgstr "Enviar arquivos"
|
1183 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sr\n"
|
@@ -105,59 +105,65 @@ msgid ""
|
|
105 |
"By activating this option I agree to let the website keep my personal data"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid "File"
|
110 |
msgstr "Datoteka"
|
111 |
|
112 |
-
#: lib/wfu_constants.php:
|
113 |
msgid "Date"
|
114 |
msgstr "Датум"
|
115 |
|
116 |
-
#: lib/wfu_constants.php:
|
117 |
msgid "Size"
|
118 |
msgstr "Veličina"
|
119 |
|
120 |
-
#: lib/wfu_constants.php:
|
121 |
msgid "User"
|
122 |
msgstr "Korisnik"
|
123 |
|
124 |
-
#: lib/wfu_constants.php:
|
125 |
msgid "Page"
|
126 |
msgstr "Strana"
|
127 |
|
128 |
-
#: lib/wfu_constants.php:
|
129 |
msgid "User Fields"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: lib/wfu_constants.php:
|
133 |
msgid "Download"
|
134 |
msgstr "Preuzimanje"
|
135 |
|
136 |
-
#: lib/wfu_constants.php:
|
137 |
msgid "Download this file"
|
138 |
msgstr "Преузми датотеку"
|
139 |
|
140 |
-
#: lib/wfu_constants.php:
|
141 |
msgid "Delete"
|
142 |
msgstr "Obrišite"
|
143 |
|
144 |
-
#: lib/wfu_constants.php:
|
145 |
msgid "Delete this file"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: lib/wfu_constants.php:
|
149 |
msgid "Sort list based on this column"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: lib/wfu_constants.php:
|
153 |
msgid "guest"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: lib/wfu_constants.php:
|
157 |
msgid "unknown"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: lib/wfu_constants.php:
|
161 |
msgid ""
|
162 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
163 |
"attribute."
|
@@ -165,11 +171,11 @@ msgstr ""
|
|
165 |
"Greška. Ciljni direktorijum datoteke nije mogao biti razrešen. Proverite "
|
166 |
"domen u 'ftpinfo' atributu."
|
167 |
|
168 |
-
#: lib/wfu_constants.php:
|
169 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
170 |
msgstr "Greška. Nevažeći ftp podaci. Proverite 'ftpinfo' atribut."
|
171 |
|
172 |
-
#: lib/wfu_constants.php:
|
173 |
msgid ""
|
174 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
175 |
"syntax."
|
@@ -177,7 +183,7 @@ msgstr ""
|
|
177 |
"Greška. Neuspelo izvlačenje ftp podataka iz 'ftpinfo' atributa. Proverite "
|
178 |
"njegovu sintaksu. "
|
179 |
|
180 |
-
#: lib/wfu_constants.php:
|
181 |
msgid ""
|
182 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
183 |
"attribute."
|
@@ -185,39 +191,39 @@ msgstr ""
|
|
185 |
"Greška. Ftp naziv ciljne datoteke nije mogao biti razrešen. Proverite domen "
|
186 |
"u 'ftpinfo' atributu."
|
187 |
|
188 |
-
#: lib/wfu_constants.php:
|
189 |
msgid ""
|
190 |
"Error. Could not open source file for ftp upload. Check if file is "
|
191 |
"accessible."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: lib/wfu_constants.php:
|
195 |
msgid "Error. Could not send data to ftp target file."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: lib/wfu_constants.php:
|
199 |
msgid ""
|
200 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
201 |
"attribute."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: lib/wfu_constants.php:
|
205 |
msgid ""
|
206 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
207 |
"'ftpinfo' attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: lib/wfu_constants.php:
|
211 |
msgid ""
|
212 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
213 |
"supports sftp."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: lib/wfu_constants.php:
|
217 |
msgid "Error. The web server does not support sftp."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: lib/wfu_constants.php:
|
221 |
msgid ""
|
222 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
223 |
"preventing the upload of big files.\n"
|
@@ -227,7 +233,7 @@ msgstr ""
|
|
227 |
"datoteke, sprečava otpremanje velikih datoteka. \n"
|
228 |
"PHP direktiva ograničenja otpremi_max_veličinu datoteke je:"
|
229 |
|
230 |
-
#: lib/wfu_constants.php:
|
231 |
msgid ""
|
232 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
233 |
"upload of big files.\n"
|
@@ -237,7 +243,7 @@ msgstr ""
|
|
237 |
"otpremanje velikih datoteka. \n"
|
238 |
"PHP direktiva ograničenja max_vreme_unosa je:"
|
239 |
|
240 |
-
#: lib/wfu_constants.php:
|
241 |
msgid ""
|
242 |
"Error. Permission denied to write to target folder.\n"
|
243 |
"Check and correct read/write permissions of target folder."
|
@@ -245,55 +251,55 @@ msgstr ""
|
|
245 |
"Greška. Odbijena je dozvola za pisanje u ciljnoj fascikli. Proverite i "
|
246 |
"ispravite dozvole za čitanje/pisanje u ciljnoj fascikli. "
|
247 |
|
248 |
-
#: lib/wfu_constants.php:
|
249 |
msgid ""
|
250 |
"Error. This file was rejected because its extension is not correct. Its "
|
251 |
"proper filename is: "
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: lib/wfu_constants.php:
|
255 |
msgid ""
|
256 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
257 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
258 |
"suspicious behaviour."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: lib/wfu_constants.php:
|
262 |
msgid ""
|
263 |
"File not uploaded in order to prevent overflow of the website. Please "
|
264 |
"contact administrator."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: lib/wfu_constants.php:
|
268 |
msgid "Target folder doesn't exist."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: lib/wfu_constants.php:
|
272 |
msgid "Upload failed! Missing a temporary folder."
|
273 |
msgstr "Otpremanje neuspešno! Nedostaje privremena fascikla. "
|
274 |
|
275 |
-
#: lib/wfu_constants.php:
|
276 |
msgid "Upload failed! Permission denied to write to target folder."
|
277 |
msgstr "Otpremanje neuspešno! Odbijena dozvola za pisanje u ciljnoj fascikli."
|
278 |
|
279 |
-
#: lib/wfu_constants.php:
|
280 |
msgid "File not allowed."
|
281 |
msgstr "Datoteka nije dozvoljena."
|
282 |
|
283 |
-
#: lib/wfu_constants.php:
|
284 |
msgid "File is suspicious and was rejected."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: lib/wfu_constants.php:
|
288 |
msgid "The uploaded file exceeds the file size limit."
|
289 |
msgstr ""
|
290 |
"Veličina otpremljene datoteke prevazilazi ograničenje veličine datoteke."
|
291 |
|
292 |
-
#: lib/wfu_constants.php:
|
293 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
294 |
msgstr "Otpremljena datoteka je veća od 2GB i nije podržana ovim serverom."
|
295 |
|
296 |
-
#: lib/wfu_constants.php:
|
297 |
msgid ""
|
298 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
299 |
"Please contact the administrator."
|
@@ -301,7 +307,7 @@ msgstr ""
|
|
301 |
"Otpremanje neuspešno! Otpremljena datoteka prevazilazi ograničenje servera "
|
302 |
"za veličinu datoteke. Obratite se administratoru."
|
303 |
|
304 |
-
#: lib/wfu_constants.php:
|
305 |
msgid ""
|
306 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
307 |
"server. Please contact the administrator."
|
@@ -309,7 +315,7 @@ msgstr ""
|
|
309 |
"Otpremanje neuspešno! Trajanje otpremanja prevazišlo je vremensko "
|
310 |
"ograničenje servera. Obratite se administratoru."
|
311 |
|
312 |
-
#: lib/wfu_constants.php:
|
313 |
msgid ""
|
314 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
315 |
"was specified in the HTML form."
|
@@ -317,19 +323,19 @@ msgstr ""
|
|
317 |
"Otpremanje neuspešno! Otpremljena datoteka prevazilazi direktivu "
|
318 |
"MAX_VELIČINA_DATOTEKE koja je navedena u HTML obrascu."
|
319 |
|
320 |
-
#: lib/wfu_constants.php:
|
321 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
322 |
msgstr "Otpremanje neuspešno! Datoteka je samo delimično otpremljena."
|
323 |
|
324 |
-
#: lib/wfu_constants.php:
|
325 |
msgid "Upload failed! No file was uploaded."
|
326 |
msgstr "Otpremanje neuspešno! Nijedna datoteka nije otpremljena."
|
327 |
|
328 |
-
#: lib/wfu_constants.php:
|
329 |
msgid "Upload failed! Failed to write file to disk."
|
330 |
msgstr "Otpremanje neuspešno! Datoteka nije zapisana na disk."
|
331 |
|
332 |
-
#: lib/wfu_constants.php:
|
333 |
msgid ""
|
334 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
335 |
"administrator."
|
@@ -337,11 +343,11 @@ msgstr ""
|
|
337 |
"Otpremanje neuspešno! Došlo je do greške prilikom pomeranja privremene "
|
338 |
"datoteke. Obratite se administratoru."
|
339 |
|
340 |
-
#: lib/wfu_constants.php:
|
341 |
msgid "Upload cancelled!"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: lib/wfu_constants.php:
|
345 |
msgid ""
|
346 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
347 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -351,21 +357,21 @@ msgstr ""
|
|
351 |
"ne obezbeđuje način da se utvrdi koja je ekstenzija zaustavila otpremanje. "
|
352 |
"Možda će pomoći ako pregledate spisak otpremljenih ekstenzija uz phpinfo(). "
|
353 |
|
354 |
-
#: lib/wfu_constants.php:
|
355 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
356 |
msgstr ""
|
357 |
"Otpremanje neuspešno! Došlo je do greške prilikom pokušaja da se otpremi "
|
358 |
"datoteka."
|
359 |
|
360 |
-
#: lib/wfu_constants.php:
|
361 |
msgid "Upload failed!"
|
362 |
msgstr "Otpremanje neuspešno! "
|
363 |
|
364 |
-
#: lib/wfu_constants.php:
|
365 |
msgid "No file!"
|
366 |
msgstr "Nema datoteke!"
|
367 |
|
368 |
-
#: lib/wfu_constants.php:
|
369 |
msgid ""
|
370 |
"Upload failed! The upload has been canceled by the user or the browser "
|
371 |
"dropped the connection."
|
@@ -373,27 +379,27 @@ msgstr ""
|
|
373 |
"Otpremanje neuspešno! Korisnik je otkazao otpremanje ili je pretraživač "
|
374 |
"izgubio internet vezu."
|
375 |
|
376 |
-
#: lib/wfu_constants.php:
|
377 |
msgid "Upload failed! Unknown error."
|
378 |
msgstr "Otpremanje neuspešno! Nepoznata greška."
|
379 |
|
380 |
-
#: lib/wfu_constants.php:
|
381 |
msgid "Please contact the administrator."
|
382 |
msgstr "Obratite se administratoru."
|
383 |
|
384 |
-
#: lib/wfu_constants.php:
|
385 |
msgid "No result from remote server!"
|
386 |
msgstr "Nema rezultata sa udaljenog servera!"
|
387 |
|
388 |
-
#: lib/wfu_constants.php:
|
389 |
msgid " but with warnings"
|
390 |
msgstr "ali sa upozorenjima"
|
391 |
|
392 |
-
#: lib/wfu_constants.php:
|
393 |
msgid "Warning: JSON parse error."
|
394 |
msgstr "Upozorenje: Greška prilikom JSON parsiranja."
|
395 |
|
396 |
-
#: lib/wfu_constants.php:
|
397 |
msgid ""
|
398 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
399 |
"not be parsed."
|
@@ -401,20 +407,20 @@ msgstr ""
|
|
401 |
"Otpremljeni parametri ove datoteke, poslate na obradu kao JSON niz, nisu "
|
402 |
"mogle biti parsirane. "
|
403 |
|
404 |
-
#: lib/wfu_constants.php:
|
405 |
msgid ""
|
406 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
407 |
msgstr ""
|
408 |
"UploadStates, poslate na obradu kao JSON niz, nisu mogle biti parsirane. "
|
409 |
|
410 |
-
#: lib/wfu_constants.php:
|
411 |
msgid ""
|
412 |
"Redirection to classic form functionality occurred due to unknown error."
|
413 |
msgstr ""
|
414 |
"Zbog nepoznate greške došlo je do preusmeravanja na funkcionalnost klasičnog "
|
415 |
"obrasca."
|
416 |
|
417 |
-
#: lib/wfu_constants.php:
|
418 |
msgid ""
|
419 |
"Redirection to classic form functionality occurred because AJAX is not "
|
420 |
"supported."
|
@@ -422,7 +428,7 @@ msgstr ""
|
|
422 |
"Do preusmeravanja na funkcionalnost klasičnog obrasca došlo je zato što nije "
|
423 |
"podržan AJAX."
|
424 |
|
425 |
-
#: lib/wfu_constants.php:
|
426 |
msgid ""
|
427 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
428 |
"supported."
|
@@ -430,58 +436,58 @@ msgstr ""
|
|
430 |
"Do preusmeravanja na funkcionalnost klasičnog obrasca došlo je zato što nije "
|
431 |
"podržan HTML5."
|
432 |
|
433 |
-
#: lib/wfu_constants.php:
|
434 |
msgid ""
|
435 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
436 |
msgstr ""
|
437 |
"Do preusmeravanja na funkcionalnost klasičnog obrasca došlo je zbog JSON "
|
438 |
"greške prilikom parsiranja."
|
439 |
|
440 |
-
#: lib/wfu_constants.php:
|
441 |
msgid "Please enable popup windows from the browser's settings!"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid "cannot be empty!"
|
446 |
msgstr "ne može biti prazno!"
|
447 |
|
448 |
-
#: lib/wfu_constants.php:
|
449 |
msgid "number not valid!"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: lib/wfu_constants.php:
|
453 |
msgid "email not valid!"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: lib/wfu_constants.php:
|
457 |
msgid "emails do not match!"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "no base email field in group!"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid "passwords do not match!"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: lib/wfu_constants.php:
|
469 |
msgid "no base password field in group!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: lib/wfu_constants.php:
|
473 |
msgid "checkbox unchecked!"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: lib/wfu_constants.php:
|
477 |
msgid "no option selected!"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: lib/wfu_constants.php:
|
481 |
msgid "no item selected!"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: lib/wfu_constants.php:
|
485 |
msgid ""
|
486 |
"There are more than one instances of the plugin in this page with the same "
|
487 |
"id. Please change it."
|
@@ -489,7 +495,7 @@ msgstr ""
|
|
489 |
"Na ovoj stranici ima više od jednog primera plugin-a sa istom "
|
490 |
"identifikacijom."
|
491 |
|
492 |
-
#: lib/wfu_constants.php:
|
493 |
msgid ""
|
494 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
495 |
"the page."
|
@@ -497,19 +503,19 @@ msgstr ""
|
|
497 |
"Shortcode ne može da se uredi zato što stranica nije modifikovana. Ponovo "
|
498 |
"učitajte stranicu."
|
499 |
|
500 |
-
#: lib/wfu_constants.php:
|
501 |
msgid "Your browser does not support webcam capture!"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: lib/wfu_constants.php:
|
505 |
msgid "Your browser does not support video recording from the webcam!"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: lib/wfu_constants.php:
|
509 |
msgid "No video was recorded!"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: lib/wfu_constants.php:
|
513 |
msgid ""
|
514 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
515 |
"or use RecaptchaV2 (no account)."
|
@@ -517,23 +523,23 @@ msgstr ""
|
|
517 |
"GREŠKA: Captcha nije podržana! Imate staru PHP verziju. Nadogradite svoj PHP "
|
518 |
"ili koristite RecaptchaV2 (bez naloga)."
|
519 |
|
520 |
-
#: lib/wfu_constants.php:
|
521 |
msgid ""
|
522 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
523 |
"notify administrator."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: lib/wfu_constants.php:
|
527 |
msgid ""
|
528 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
529 |
"use RecaptchaV1 (no account)."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid "ERROR: No site key. Please contact administrator!"
|
534 |
msgstr "GREŠKA: Nema ključa site-a. Obratite se administratoru."
|
535 |
|
536 |
-
#: lib/wfu_constants.php:
|
537 |
msgid ""
|
538 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
539 |
"define Google Recaptcha keys."
|
@@ -541,155 +547,155 @@ msgstr ""
|
|
541 |
"GREŠKA: Ključ site-a nije određen. Idite na kontrolnu tablu podešavanja "
|
542 |
"plugin-a da biste odredili Google Recaptcha ključeve."
|
543 |
|
544 |
-
#: lib/wfu_constants.php:
|
545 |
msgid "Bad captcha image!"
|
546 |
msgstr "Loša captcha slika!"
|
547 |
|
548 |
-
#: lib/wfu_constants.php:
|
549 |
msgid "No input!"
|
550 |
msgstr "Nema unosa!"
|
551 |
|
552 |
-
#: lib/wfu_constants.php:
|
553 |
msgid "Captcha not completed!"
|
554 |
msgstr "Captcha nije kompletan!"
|
555 |
|
556 |
-
#: lib/wfu_constants.php:
|
557 |
msgid "Wrong captcha!"
|
558 |
msgstr "Pogrešan captcha!"
|
559 |
|
560 |
-
#: lib/wfu_constants.php:
|
561 |
msgid "Error refreshing captcha!"
|
562 |
msgstr "Greška u osvežavanju captcha!"
|
563 |
|
564 |
-
#: lib/wfu_constants.php:
|
565 |
msgid "Unknown captcha error!"
|
566 |
msgstr "Nepoznata captcha greška!"
|
567 |
|
568 |
-
#: lib/wfu_constants.php:
|
569 |
msgid "Captcha not supported by your browser!"
|
570 |
msgstr "Vaš pretraživač ne podržava captcha!"
|
571 |
|
572 |
-
#: lib/wfu_constants.php:
|
573 |
msgid "the secret parameter is missing"
|
574 |
msgstr "nedostaje tajni parametar"
|
575 |
|
576 |
-
#: lib/wfu_constants.php:
|
577 |
msgid "the secret parameter is invalid or malformed"
|
578 |
msgstr "tajni parametar je nevažeći ili loše formulisan"
|
579 |
|
580 |
-
#: lib/wfu_constants.php:
|
581 |
msgid "the response parameter is missing"
|
582 |
msgstr "nedostaje parametar odgovora "
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "the response parameter is invalid or malformed"
|
586 |
msgstr "parametar odgovora je nevažeći ili loše formulisan"
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "Please do not use drag drop due to an internal problem."
|
590 |
msgstr ""
|
591 |
"Molimo vas da ne koristite prevlačenje i pozicioniranje zbog internog "
|
592 |
"problema."
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
#, php-format
|
596 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
597 |
msgstr ""
|
598 |
"Došlo je do greške prilikom parcijalnog otpremanja. Jedinstveni ID u "
|
599 |
"jedinici memorije %d"
|
600 |
|
601 |
-
#: lib/wfu_constants.php:
|
602 |
msgid "Chunked upload is not allowed!"
|
603 |
msgstr "Parcijalno otpremanje nije dozvoljeno!"
|
604 |
|
605 |
-
#: lib/wfu_constants.php:
|
606 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
607 |
msgstr ""
|
608 |
"Parcijalno otpremanje prekinuto je zbog greške u prethodnoj jedinici "
|
609 |
"memorije!"
|
610 |
|
611 |
-
#: lib/wfu_constants.php:
|
612 |
msgid "Chunked upload failed, final file could not be created!"
|
613 |
msgstr ""
|
614 |
"Otpremanje u jedinici memorije neuspelo, konačna datoteka ne može se "
|
615 |
"kreirati!"
|
616 |
|
617 |
-
#: lib/wfu_constants.php:
|
618 |
#, php-format
|
619 |
msgid "Could not write file chuck to destination on chunk %d"
|
620 |
msgstr ""
|
621 |
"Ne može se napisati jedinica memorije datoteke u jedinici memorije %d. "
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
#, php-format
|
625 |
msgid "Could not enlarge destination file on chunk %d"
|
626 |
msgstr "Ne može se uvećati odredišna datoteka u jedinici memorije %d."
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
#, php-format
|
630 |
msgid "Could not open file handles on chunk %d"
|
631 |
msgstr "Ne mogu se otvoriti opisi datoteke u jedinici memorije %d"
|
632 |
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
msgid "You are not allowed to download this file!"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: lib/wfu_constants.php:
|
638 |
msgid "File does not exist!"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: lib/wfu_constants.php:
|
642 |
msgid "Could not download file!"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: lib/wfu_constants.php:
|
646 |
msgid "You are not allowed to delete this file!"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: lib/wfu_constants.php:
|
650 |
msgid "File was not deleted!"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid "No file was deleted!"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid "Some files were not deleted!"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: lib/wfu_constants.php:
|
662 |
msgid "Upload skipped! File already exists."
|
663 |
msgstr "Otpremanje preskočeno! Datoteka već postoji."
|
664 |
|
665 |
-
#: lib/wfu_constants.php:
|
666 |
msgid "The extension of the file does not match its contents."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: lib/wfu_constants.php:
|
670 |
msgid ""
|
671 |
"Upload succeeded but the file is suspicious because its contents do not "
|
672 |
"match its extension. Its proper filename is: "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: lib/wfu_constants.php:
|
676 |
msgid "No files have been selected!"
|
677 |
msgstr "Datoteke nisu odabrane!"
|
678 |
|
679 |
-
#: lib/wfu_constants.php:
|
680 |
msgid "Please complete the consent question before continuing the upload!"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
685 |
msgstr ""
|
686 |
"WPFilebase Plugin nije ažuriran zato što nije bilo otpremljenih datoteka."
|
687 |
|
688 |
-
#: lib/wfu_constants.php:
|
689 |
msgid "Notification email was not sent because there were no files uploaded."
|
690 |
msgstr "Mail obaveštenja nije poslat jer nije bilo otpremljenih datoteka."
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid ""
|
694 |
"Notification email was not sent because no recipients were defined. Please "
|
695 |
"check notifyrecipients attribute in the shortcode."
|
@@ -697,7 +703,7 @@ msgstr ""
|
|
697 |
"Mail obaveštenja nije poslat jer nije bilo navedenih primalaca. Proverite "
|
698 |
"notifyrecipients atribut u shortcode-u."
|
699 |
|
700 |
-
#: lib/wfu_constants.php:
|
701 |
msgid ""
|
702 |
"Notification email was not sent due to an error. Please check "
|
703 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -705,7 +711,7 @@ msgstr ""
|
|
705 |
"Mail obaveštenja nije poslat zbog greške. Proverite notifyrecipients, "
|
706 |
"notifysubject i notifymessage atribute da biste našli greške."
|
707 |
|
708 |
-
#: lib/wfu_constants.php:
|
709 |
msgid ""
|
710 |
"Redirection not executed because redirection link is empty. Please check "
|
711 |
"redirectlink attribute."
|
@@ -713,17 +719,17 @@ msgstr ""
|
|
713 |
"Preusmeravanje nije izvršeno zato što je link za preusmeravanje prazan. "
|
714 |
"Proverite redirectlink atribut."
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid ""
|
718 |
"Redirection not executed because not all files were successfully uploaded."
|
719 |
msgstr ""
|
720 |
"Preusmeravanje nije izvršeno zato što nisu sve datoteke uspešno otpremljene."
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: lib/wfu_constants.php:
|
727 |
msgid ""
|
728 |
"Hello admin\n"
|
729 |
"\n"
|
@@ -743,25 +749,25 @@ msgid ""
|
|
743 |
"Thanks"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: lib/wfu_constants.php:
|
747 |
msgid ""
|
748 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
749 |
"details please contact info@iptanus.com."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid ""
|
754 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
755 |
"plugin functions. Please read this :article: for resolution."
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: lib/wfu_constants.php:
|
759 |
msgid ""
|
760 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
761 |
"message persists, contact administrator."
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: lib/wfu_constants.php:
|
765 |
msgid ""
|
766 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
767 |
"again to edit the shortcode."
|
@@ -769,7 +775,7 @@ msgstr ""
|
|
769 |
"Neuspešno uređivanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
770 |
"ponovo da uredite shortcode."
|
771 |
|
772 |
-
#: lib/wfu_constants.php:
|
773 |
msgid ""
|
774 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
775 |
"again to delete it."
|
@@ -777,7 +783,7 @@ msgstr ""
|
|
777 |
"Neuspešno brisanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
778 |
"ponovo da ga obrišete."
|
779 |
|
780 |
-
#: lib/wfu_constants.php:
|
781 |
msgid ""
|
782 |
"The page containing the shortcode has been modified and it is no longer "
|
783 |
"valid. Please go back to reload the shortcode."
|
@@ -785,7 +791,7 @@ msgstr ""
|
|
785 |
"Stranica koja sadrži shortcode je izmenjena i više nije validna. Vratite se "
|
786 |
"da ponovo učitate shortcode."
|
787 |
|
788 |
-
#: lib/wfu_constants.php:
|
789 |
msgid ""
|
790 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
791 |
"back to reload the shortcode."
|
@@ -793,7 +799,7 @@ msgstr ""
|
|
793 |
"Neuspešno ažuriranje shortcode-a zbog izmene sadržaja stranice. Vratite se "
|
794 |
"da ponovo učitate shortcode."
|
795 |
|
796 |
-
#: lib/wfu_constants.php:
|
797 |
msgid ""
|
798 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
799 |
"go back and reload the shortcode."
|
@@ -801,39 +807,39 @@ msgstr ""
|
|
801 |
"Neuspešno ažuriranje shortcode-a. Pokušajte ponovo. Ako se problem ne reši, "
|
802 |
"vratite se i opet učitajte shortcode."
|
803 |
|
804 |
-
#: lib/wfu_constants.php:
|
805 |
msgid "This is a test message"
|
806 |
msgstr "Ovo je poruka testa"
|
807 |
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
msgid "This is a test administrator message"
|
810 |
msgstr "Ovo je poruka testa administratora "
|
811 |
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
msgid "File testfile 1 under test"
|
814 |
msgstr "Datoteka testfile 1 na testiranju"
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
817 |
msgid "File testfile 1 message"
|
818 |
msgstr "Datoteka testfile 1 poruka"
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "File testfile 1 administrator message"
|
822 |
msgstr "Datoteka testfile 1 poruka administratora"
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "File testfile 2 under test"
|
826 |
msgstr "Datoteka testfile 2 na testiranju"
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "File testfile 2 message"
|
830 |
msgstr "Datoteka testfile 2 poruka"
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid "File testfile 2 administrator message"
|
834 |
msgstr "Datoteka testfile 2 poruka administratora"
|
835 |
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
msgid ""
|
838 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
839 |
"current user."
|
@@ -841,7 +847,7 @@ msgstr ""
|
|
841 |
"Unesite promenljivu %idkorisnika% u tekst. Biće zamenjena id-jem tekućeg "
|
842 |
"korisnika."
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid ""
|
846 |
"Insert variable %username% inside text. It will be replaced by the username "
|
847 |
"of the current user."
|
@@ -849,7 +855,7 @@ msgstr ""
|
|
849 |
"Unesite promenljivu %korisničko ime% u tekst. Biće zamenjena korisničkim "
|
850 |
"imenom tekućeg korisnika."
|
851 |
|
852 |
-
#: lib/wfu_constants.php:
|
853 |
msgid ""
|
854 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
855 |
"the current user."
|
@@ -857,7 +863,7 @@ msgstr ""
|
|
857 |
"Unesite promenljivu %mailkorisnika% u tekst. Biće zamenjena mail-om tekućeg "
|
858 |
"korisnika."
|
859 |
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
msgid ""
|
862 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
863 |
"of the uploaded file."
|
@@ -865,7 +871,7 @@ msgstr ""
|
|
865 |
"Unesite promenljivu %nazivdatoteke% u tekst. Biće zamenjena nazivom "
|
866 |
"otpremljene datoteke."
|
867 |
|
868 |
-
#: lib/wfu_constants.php:
|
869 |
msgid ""
|
870 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
871 |
"filepath of the uploaded file."
|
@@ -873,7 +879,7 @@ msgstr ""
|
|
873 |
"Unesite promenljivu %putanjadatoteke% u tekst. Biće zamenjena celom putanjom "
|
874 |
"otpremljene datoteke."
|
875 |
|
876 |
-
#: lib/wfu_constants.php:
|
877 |
msgid ""
|
878 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
879 |
"the website."
|
@@ -881,7 +887,7 @@ msgstr ""
|
|
881 |
"Unesite promenljivu %idbloga% u tekst. Biće zamenjena id-jem bloga web site-"
|
882 |
"a."
|
883 |
|
884 |
-
#: lib/wfu_constants.php:
|
885 |
msgid ""
|
886 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
887 |
"current page."
|
@@ -889,7 +895,7 @@ msgstr ""
|
|
889 |
"Unesite promenljivu %idstranice% u tekst. Biće zamenjena id-jem tekuće "
|
890 |
"stranice."
|
891 |
|
892 |
-
#: lib/wfu_constants.php:
|
893 |
msgid ""
|
894 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
895 |
"the current page."
|
@@ -897,7 +903,7 @@ msgstr ""
|
|
897 |
"Unesite promenljivu %naslovstranice% u tekst. Biće zamenjena naslovom tekuće "
|
898 |
"stranice."
|
899 |
|
900 |
-
#: lib/wfu_constants.php:
|
901 |
msgid ""
|
902 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
903 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -906,215 +912,232 @@ msgstr ""
|
|
906 |
"Unesite promenljivu %korisnički podaciXXX%. Odaberite korisničko polje iz "
|
907 |
"opadajuće liste. Biće zamenjena vrednošću koju je korisnik uneo u ovo polje."
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid "Insert variable %n% inside text to denote a line change."
|
911 |
msgstr "Unesite promenljivu %n% u tekst kako biste označili promenu reda."
|
912 |
|
913 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
914 |
msgid "Test Mode"
|
915 |
msgstr "Režim testiranja"
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid "select dir..."
|
919 |
msgstr "odaberite dir..."
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "type dir"
|
923 |
msgstr "vrsta direktorijuma "
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "Upload path: %filepath%"
|
927 |
msgstr "Putanja otpremanja: %filepath%"
|
928 |
|
929 |
-
#: lib/wfu_constants.php:
|
930 |
msgid "Failed upload path: %filepath%"
|
931 |
msgstr "Putanja otpremanja neuspešna: %filepath%"
|
932 |
|
933 |
-
#: lib/wfu_constants.php:
|
934 |
msgid " (required)"
|
935 |
msgstr "(obavezna)"
|
936 |
|
937 |
-
#: lib/wfu_constants.php:
|
938 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
939 |
msgstr "Datoteke su otpremljene. Da li sigurno želite da napustite stranicu?"
|
940 |
|
941 |
-
#: lib/wfu_constants.php:
|
942 |
msgid "checking captcha..."
|
943 |
msgstr "captcha se proverava..."
|
944 |
|
945 |
-
#: lib/wfu_constants.php:
|
946 |
msgid "refreshing..."
|
947 |
msgstr "osvežava se..."
|
948 |
|
949 |
-
#: lib/wfu_constants.php:
|
950 |
msgid "correct captcha"
|
951 |
msgstr "ispravi captcha"
|
952 |
|
953 |
-
#: lib/wfu_constants.php:
|
954 |
msgid "click to continue the upload"
|
955 |
msgstr "kliknite da biste nastavili otpremanje"
|
956 |
|
957 |
-
#: lib/wfu_constants.php:
|
958 |
msgid "Are you sure you want to delete this file?"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: lib/wfu_constants.php:
|
962 |
msgid "Are you sure you want to delete these files?"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: lib/wfu_constants.php:
|
966 |
msgid "Bulk Actions"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: lib/wfu_constants.php:
|
970 |
msgid "Apply"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: lib/wfu_constants.php:
|
974 |
msgid "of "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: lib/wfu_constants.php:
|
978 |
msgid "Are you sure that you want to cancel the upload?"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: lib/wfu_constants.php:
|
982 |
msgid "cancel upload of this file"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: lib/wfu_constants.php:
|
986 |
msgid "Upload in progress"
|
987 |
msgstr "Otpremanje u toku"
|
988 |
|
989 |
-
#: lib/wfu_constants.php:
|
990 |
msgid "Upload in progress with warnings!"
|
991 |
msgstr "Otpremanje sa upozorenjima u toku!"
|
992 |
|
993 |
-
#: lib/wfu_constants.php:
|
994 |
msgid "Upload in progress but some files already failed!"
|
995 |
msgstr "Otpremanje u toku, ali neke datoteke već nisu uspešno otpremljene!"
|
996 |
|
997 |
-
#: lib/wfu_constants.php:
|
998 |
msgid "Upload in progress but no files uploaded so far!"
|
999 |
msgstr "Otpremanje u toku, ali do sada nisu otpremljene nikakve datoteke!"
|
1000 |
|
1001 |
-
#: lib/wfu_constants.php:
|
1002 |
msgid "All files uploaded successfully"
|
1003 |
msgstr "Sve datoteke uspešno su otpremljene"
|
1004 |
|
1005 |
-
#: lib/wfu_constants.php:
|
1006 |
msgid "All files uploaded successfully but there are warnings!"
|
1007 |
msgstr "Sve datoteke uspešno su otpremljene, ali postoje upozorenja!"
|
1008 |
|
1009 |
-
#: lib/wfu_constants.php:
|
1010 |
msgid "File uploaded successfully but there are warnings!"
|
1011 |
msgstr "Datoteka je uspešno otpremljena, ali postoje upozorenja!"
|
1012 |
|
1013 |
-
#: lib/wfu_constants.php:
|
1014 |
msgid "Some files failed to upload!"
|
1015 |
msgstr "Neke datoteke nisu otpremljene!"
|
1016 |
|
1017 |
-
#: lib/wfu_constants.php:
|
1018 |
msgid "All files failed to upload"
|
1019 |
msgstr "Nijedna datoteka nije otpremljena"
|
1020 |
|
1021 |
-
#: lib/wfu_constants.php:
|
1022 |
msgid "File failed to upload"
|
1023 |
msgstr "Datoteka nije uspešno otpremljena"
|
1024 |
|
1025 |
-
#: lib/wfu_constants.php:
|
1026 |
msgid "There are no files to upload!"
|
1027 |
msgstr "Nema datoteka za otpremanje"
|
1028 |
|
1029 |
-
#: lib/wfu_constants.php:
|
1030 |
msgid "Test upload message"
|
1031 |
msgstr "Testiraj poruku za otpremanje"
|
1032 |
|
1033 |
-
#: lib/wfu_constants.php:
|
1034 |
msgid "JSON parse warning!"
|
1035 |
msgstr "Upozorenje za JSON parsiranje!"
|
1036 |
|
1037 |
-
#: lib/wfu_constants.php:
|
1038 |
msgid "please wait while redirecting..."
|
1039 |
msgstr "Molimo sačekajte preusmeravanje..."
|
1040 |
|
1041 |
-
#: lib/wfu_constants.php:
|
1042 |
msgid "Submitting data"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: lib/wfu_constants.php:
|
1046 |
msgid "Data submitted successfully!"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: lib/wfu_constants.php:
|
1050 |
msgid "Data were not submitted!"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: lib/wfu_constants.php:
|
1054 |
msgid "Cancelling upload"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1058 |
msgid "Open visual shortcode editor in new window"
|
1059 |
msgstr "Otvori vizuelni shortcode uređivač u novom prozoru"
|
1060 |
|
1061 |
-
#: lib/wfu_constants.php:
|
1062 |
msgid "loading visual editor"
|
1063 |
msgstr "učitavanje vizuelnog uređivača"
|
1064 |
|
1065 |
-
#: lib/wfu_constants.php:
|
1066 |
msgid "Clear file list?"
|
1067 |
msgstr "Obriši listu datoteke?"
|
1068 |
|
1069 |
-
#: lib/wfu_constants.php:
|
1070 |
msgid "DROP HERE"
|
1071 |
msgstr "POZICIONIRAJ OVDE"
|
1072 |
|
1073 |
-
#: lib/wfu_constants.php:
|
1074 |
msgid "record video"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: lib/wfu_constants.php:
|
1078 |
msgid "take a picture"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: lib/wfu_constants.php:
|
1082 |
msgid "turn webcam on/off"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: lib/wfu_constants.php:
|
1086 |
msgid "go live again"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: lib/wfu_constants.php:
|
1090 |
msgid "end recording"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: lib/wfu_constants.php:
|
1094 |
msgid "play"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: lib/wfu_constants.php:
|
1098 |
msgid "pause"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: lib/wfu_constants.php:
|
1102 |
msgid "go to the beginning"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: lib/wfu_constants.php:
|
1106 |
msgid "go to the end"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: lib/wfu_constants.php:
|
1110 |
msgid "Wordpress File Upload Form"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: lib/wfu_constants.php:
|
1114 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: lib/wfu_constants.php:
|
1118 |
msgid "Upload Files"
|
1119 |
msgstr ""
|
1120 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:41+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:41+0200\n"
|
7 |
"Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sr\n"
|
105 |
"By activating this option I agree to let the website keep my personal data"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: lib/wfu_constants.php:34
|
109 |
+
msgid ""
|
110 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
111 |
+
"continue!"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: lib/wfu_constants.php:36
|
115 |
msgid "File"
|
116 |
msgstr "Datoteka"
|
117 |
|
118 |
+
#: lib/wfu_constants.php:37
|
119 |
msgid "Date"
|
120 |
msgstr "Датум"
|
121 |
|
122 |
+
#: lib/wfu_constants.php:38
|
123 |
msgid "Size"
|
124 |
msgstr "Veličina"
|
125 |
|
126 |
+
#: lib/wfu_constants.php:39
|
127 |
msgid "User"
|
128 |
msgstr "Korisnik"
|
129 |
|
130 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
131 |
msgid "Page"
|
132 |
msgstr "Strana"
|
133 |
|
134 |
+
#: lib/wfu_constants.php:41
|
135 |
msgid "User Fields"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: lib/wfu_constants.php:42
|
139 |
msgid "Download"
|
140 |
msgstr "Preuzimanje"
|
141 |
|
142 |
+
#: lib/wfu_constants.php:43
|
143 |
msgid "Download this file"
|
144 |
msgstr "Преузми датотеку"
|
145 |
|
146 |
+
#: lib/wfu_constants.php:44
|
147 |
msgid "Delete"
|
148 |
msgstr "Obrišite"
|
149 |
|
150 |
+
#: lib/wfu_constants.php:45
|
151 |
msgid "Delete this file"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: lib/wfu_constants.php:46
|
155 |
msgid "Sort list based on this column"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: lib/wfu_constants.php:47
|
159 |
msgid "guest"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: lib/wfu_constants.php:48
|
163 |
msgid "unknown"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: lib/wfu_constants.php:50
|
167 |
msgid ""
|
168 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
169 |
"attribute."
|
171 |
"Greška. Ciljni direktorijum datoteke nije mogao biti razrešen. Proverite "
|
172 |
"domen u 'ftpinfo' atributu."
|
173 |
|
174 |
+
#: lib/wfu_constants.php:51
|
175 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
176 |
msgstr "Greška. Nevažeći ftp podaci. Proverite 'ftpinfo' atribut."
|
177 |
|
178 |
+
#: lib/wfu_constants.php:52
|
179 |
msgid ""
|
180 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
181 |
"syntax."
|
183 |
"Greška. Neuspelo izvlačenje ftp podataka iz 'ftpinfo' atributa. Proverite "
|
184 |
"njegovu sintaksu. "
|
185 |
|
186 |
+
#: lib/wfu_constants.php:53
|
187 |
msgid ""
|
188 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
189 |
"attribute."
|
191 |
"Greška. Ftp naziv ciljne datoteke nije mogao biti razrešen. Proverite domen "
|
192 |
"u 'ftpinfo' atributu."
|
193 |
|
194 |
+
#: lib/wfu_constants.php:54
|
195 |
msgid ""
|
196 |
"Error. Could not open source file for ftp upload. Check if file is "
|
197 |
"accessible."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: lib/wfu_constants.php:55
|
201 |
msgid "Error. Could not send data to ftp target file."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: lib/wfu_constants.php:56
|
205 |
msgid ""
|
206 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
207 |
"attribute."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: lib/wfu_constants.php:57
|
211 |
msgid ""
|
212 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
213 |
"'ftpinfo' attribute."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: lib/wfu_constants.php:58
|
217 |
msgid ""
|
218 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
219 |
"supports sftp."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: lib/wfu_constants.php:59
|
223 |
msgid "Error. The web server does not support sftp."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: lib/wfu_constants.php:60
|
227 |
msgid ""
|
228 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
229 |
"preventing the upload of big files.\n"
|
233 |
"datoteke, sprečava otpremanje velikih datoteka. \n"
|
234 |
"PHP direktiva ograničenja otpremi_max_veličinu datoteke je:"
|
235 |
|
236 |
+
#: lib/wfu_constants.php:61
|
237 |
msgid ""
|
238 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
239 |
"upload of big files.\n"
|
243 |
"otpremanje velikih datoteka. \n"
|
244 |
"PHP direktiva ograničenja max_vreme_unosa je:"
|
245 |
|
246 |
+
#: lib/wfu_constants.php:62
|
247 |
msgid ""
|
248 |
"Error. Permission denied to write to target folder.\n"
|
249 |
"Check and correct read/write permissions of target folder."
|
251 |
"Greška. Odbijena je dozvola za pisanje u ciljnoj fascikli. Proverite i "
|
252 |
"ispravite dozvole za čitanje/pisanje u ciljnoj fascikli. "
|
253 |
|
254 |
+
#: lib/wfu_constants.php:63
|
255 |
msgid ""
|
256 |
"Error. This file was rejected because its extension is not correct. Its "
|
257 |
"proper filename is: "
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: lib/wfu_constants.php:64
|
261 |
msgid ""
|
262 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
263 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
264 |
"suspicious behaviour."
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: lib/wfu_constants.php:65
|
268 |
msgid ""
|
269 |
"File not uploaded in order to prevent overflow of the website. Please "
|
270 |
"contact administrator."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: lib/wfu_constants.php:66
|
274 |
msgid "Target folder doesn't exist."
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: lib/wfu_constants.php:67
|
278 |
msgid "Upload failed! Missing a temporary folder."
|
279 |
msgstr "Otpremanje neuspešno! Nedostaje privremena fascikla. "
|
280 |
|
281 |
+
#: lib/wfu_constants.php:68
|
282 |
msgid "Upload failed! Permission denied to write to target folder."
|
283 |
msgstr "Otpremanje neuspešno! Odbijena dozvola za pisanje u ciljnoj fascikli."
|
284 |
|
285 |
+
#: lib/wfu_constants.php:69
|
286 |
msgid "File not allowed."
|
287 |
msgstr "Datoteka nije dozvoljena."
|
288 |
|
289 |
+
#: lib/wfu_constants.php:70
|
290 |
msgid "File is suspicious and was rejected."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: lib/wfu_constants.php:71
|
294 |
msgid "The uploaded file exceeds the file size limit."
|
295 |
msgstr ""
|
296 |
"Veličina otpremljene datoteke prevazilazi ograničenje veličine datoteke."
|
297 |
|
298 |
+
#: lib/wfu_constants.php:72
|
299 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
300 |
msgstr "Otpremljena datoteka je veća od 2GB i nije podržana ovim serverom."
|
301 |
|
302 |
+
#: lib/wfu_constants.php:73
|
303 |
msgid ""
|
304 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
305 |
"Please contact the administrator."
|
307 |
"Otpremanje neuspešno! Otpremljena datoteka prevazilazi ograničenje servera "
|
308 |
"za veličinu datoteke. Obratite se administratoru."
|
309 |
|
310 |
+
#: lib/wfu_constants.php:74
|
311 |
msgid ""
|
312 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
313 |
"server. Please contact the administrator."
|
315 |
"Otpremanje neuspešno! Trajanje otpremanja prevazišlo je vremensko "
|
316 |
"ograničenje servera. Obratite se administratoru."
|
317 |
|
318 |
+
#: lib/wfu_constants.php:75
|
319 |
msgid ""
|
320 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
321 |
"was specified in the HTML form."
|
323 |
"Otpremanje neuspešno! Otpremljena datoteka prevazilazi direktivu "
|
324 |
"MAX_VELIČINA_DATOTEKE koja je navedena u HTML obrascu."
|
325 |
|
326 |
+
#: lib/wfu_constants.php:76
|
327 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
328 |
msgstr "Otpremanje neuspešno! Datoteka je samo delimično otpremljena."
|
329 |
|
330 |
+
#: lib/wfu_constants.php:77
|
331 |
msgid "Upload failed! No file was uploaded."
|
332 |
msgstr "Otpremanje neuspešno! Nijedna datoteka nije otpremljena."
|
333 |
|
334 |
+
#: lib/wfu_constants.php:78
|
335 |
msgid "Upload failed! Failed to write file to disk."
|
336 |
msgstr "Otpremanje neuspešno! Datoteka nije zapisana na disk."
|
337 |
|
338 |
+
#: lib/wfu_constants.php:79
|
339 |
msgid ""
|
340 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
341 |
"administrator."
|
343 |
"Otpremanje neuspešno! Došlo je do greške prilikom pomeranja privremene "
|
344 |
"datoteke. Obratite se administratoru."
|
345 |
|
346 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
347 |
msgid "Upload cancelled!"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: lib/wfu_constants.php:81
|
351 |
msgid ""
|
352 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
353 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
357 |
"ne obezbeđuje način da se utvrdi koja je ekstenzija zaustavila otpremanje. "
|
358 |
"Možda će pomoći ako pregledate spisak otpremljenih ekstenzija uz phpinfo(). "
|
359 |
|
360 |
+
#: lib/wfu_constants.php:82
|
361 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
362 |
msgstr ""
|
363 |
"Otpremanje neuspešno! Došlo je do greške prilikom pokušaja da se otpremi "
|
364 |
"datoteka."
|
365 |
|
366 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
367 |
msgid "Upload failed!"
|
368 |
msgstr "Otpremanje neuspešno! "
|
369 |
|
370 |
+
#: lib/wfu_constants.php:84
|
371 |
msgid "No file!"
|
372 |
msgstr "Nema datoteke!"
|
373 |
|
374 |
+
#: lib/wfu_constants.php:85
|
375 |
msgid ""
|
376 |
"Upload failed! The upload has been canceled by the user or the browser "
|
377 |
"dropped the connection."
|
379 |
"Otpremanje neuspešno! Korisnik je otkazao otpremanje ili je pretraživač "
|
380 |
"izgubio internet vezu."
|
381 |
|
382 |
+
#: lib/wfu_constants.php:86
|
383 |
msgid "Upload failed! Unknown error."
|
384 |
msgstr "Otpremanje neuspešno! Nepoznata greška."
|
385 |
|
386 |
+
#: lib/wfu_constants.php:87
|
387 |
msgid "Please contact the administrator."
|
388 |
msgstr "Obratite se administratoru."
|
389 |
|
390 |
+
#: lib/wfu_constants.php:88
|
391 |
msgid "No result from remote server!"
|
392 |
msgstr "Nema rezultata sa udaljenog servera!"
|
393 |
|
394 |
+
#: lib/wfu_constants.php:89
|
395 |
msgid " but with warnings"
|
396 |
msgstr "ali sa upozorenjima"
|
397 |
|
398 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
399 |
msgid "Warning: JSON parse error."
|
400 |
msgstr "Upozorenje: Greška prilikom JSON parsiranja."
|
401 |
|
402 |
+
#: lib/wfu_constants.php:91
|
403 |
msgid ""
|
404 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
405 |
"not be parsed."
|
407 |
"Otpremljeni parametri ove datoteke, poslate na obradu kao JSON niz, nisu "
|
408 |
"mogle biti parsirane. "
|
409 |
|
410 |
+
#: lib/wfu_constants.php:93
|
411 |
msgid ""
|
412 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
413 |
msgstr ""
|
414 |
"UploadStates, poslate na obradu kao JSON niz, nisu mogle biti parsirane. "
|
415 |
|
416 |
+
#: lib/wfu_constants.php:94
|
417 |
msgid ""
|
418 |
"Redirection to classic form functionality occurred due to unknown error."
|
419 |
msgstr ""
|
420 |
"Zbog nepoznate greške došlo je do preusmeravanja na funkcionalnost klasičnog "
|
421 |
"obrasca."
|
422 |
|
423 |
+
#: lib/wfu_constants.php:95
|
424 |
msgid ""
|
425 |
"Redirection to classic form functionality occurred because AJAX is not "
|
426 |
"supported."
|
428 |
"Do preusmeravanja na funkcionalnost klasičnog obrasca došlo je zato što nije "
|
429 |
"podržan AJAX."
|
430 |
|
431 |
+
#: lib/wfu_constants.php:96
|
432 |
msgid ""
|
433 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
434 |
"supported."
|
436 |
"Do preusmeravanja na funkcionalnost klasičnog obrasca došlo je zato što nije "
|
437 |
"podržan HTML5."
|
438 |
|
439 |
+
#: lib/wfu_constants.php:97
|
440 |
msgid ""
|
441 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
442 |
msgstr ""
|
443 |
"Do preusmeravanja na funkcionalnost klasičnog obrasca došlo je zbog JSON "
|
444 |
"greške prilikom parsiranja."
|
445 |
|
446 |
+
#: lib/wfu_constants.php:98
|
447 |
msgid "Please enable popup windows from the browser's settings!"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: lib/wfu_constants.php:99
|
451 |
msgid "cannot be empty!"
|
452 |
msgstr "ne može biti prazno!"
|
453 |
|
454 |
+
#: lib/wfu_constants.php:100
|
455 |
msgid "number not valid!"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: lib/wfu_constants.php:101
|
459 |
msgid "email not valid!"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: lib/wfu_constants.php:102
|
463 |
msgid "emails do not match!"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: lib/wfu_constants.php:103
|
467 |
msgid "no base email field in group!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: lib/wfu_constants.php:104
|
471 |
msgid "passwords do not match!"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: lib/wfu_constants.php:105
|
475 |
msgid "no base password field in group!"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: lib/wfu_constants.php:106
|
479 |
msgid "checkbox unchecked!"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: lib/wfu_constants.php:107
|
483 |
msgid "no option selected!"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: lib/wfu_constants.php:108
|
487 |
msgid "no item selected!"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: lib/wfu_constants.php:109
|
491 |
msgid ""
|
492 |
"There are more than one instances of the plugin in this page with the same "
|
493 |
"id. Please change it."
|
495 |
"Na ovoj stranici ima više od jednog primera plugin-a sa istom "
|
496 |
"identifikacijom."
|
497 |
|
498 |
+
#: lib/wfu_constants.php:110
|
499 |
msgid ""
|
500 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
501 |
"the page."
|
503 |
"Shortcode ne može da se uredi zato što stranica nije modifikovana. Ponovo "
|
504 |
"učitajte stranicu."
|
505 |
|
506 |
+
#: lib/wfu_constants.php:111
|
507 |
msgid "Your browser does not support webcam capture!"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: lib/wfu_constants.php:112
|
511 |
msgid "Your browser does not support video recording from the webcam!"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: lib/wfu_constants.php:113
|
515 |
msgid "No video was recorded!"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: lib/wfu_constants.php:114
|
519 |
msgid ""
|
520 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
521 |
"or use RecaptchaV2 (no account)."
|
523 |
"GREŠKA: Captcha nije podržana! Imate staru PHP verziju. Nadogradite svoj PHP "
|
524 |
"ili koristite RecaptchaV2 (bez naloga)."
|
525 |
|
526 |
+
#: lib/wfu_constants.php:115
|
527 |
msgid ""
|
528 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
529 |
"notify administrator."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: lib/wfu_constants.php:116
|
533 |
msgid ""
|
534 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
535 |
"use RecaptchaV1 (no account)."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: lib/wfu_constants.php:117
|
539 |
msgid "ERROR: No site key. Please contact administrator!"
|
540 |
msgstr "GREŠKA: Nema ključa site-a. Obratite se administratoru."
|
541 |
|
542 |
+
#: lib/wfu_constants.php:118
|
543 |
msgid ""
|
544 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
545 |
"define Google Recaptcha keys."
|
547 |
"GREŠKA: Ključ site-a nije određen. Idite na kontrolnu tablu podešavanja "
|
548 |
"plugin-a da biste odredili Google Recaptcha ključeve."
|
549 |
|
550 |
+
#: lib/wfu_constants.php:119
|
551 |
msgid "Bad captcha image!"
|
552 |
msgstr "Loša captcha slika!"
|
553 |
|
554 |
+
#: lib/wfu_constants.php:120
|
555 |
msgid "No input!"
|
556 |
msgstr "Nema unosa!"
|
557 |
|
558 |
+
#: lib/wfu_constants.php:121
|
559 |
msgid "Captcha not completed!"
|
560 |
msgstr "Captcha nije kompletan!"
|
561 |
|
562 |
+
#: lib/wfu_constants.php:122
|
563 |
msgid "Wrong captcha!"
|
564 |
msgstr "Pogrešan captcha!"
|
565 |
|
566 |
+
#: lib/wfu_constants.php:123
|
567 |
msgid "Error refreshing captcha!"
|
568 |
msgstr "Greška u osvežavanju captcha!"
|
569 |
|
570 |
+
#: lib/wfu_constants.php:124
|
571 |
msgid "Unknown captcha error!"
|
572 |
msgstr "Nepoznata captcha greška!"
|
573 |
|
574 |
+
#: lib/wfu_constants.php:125
|
575 |
msgid "Captcha not supported by your browser!"
|
576 |
msgstr "Vaš pretraživač ne podržava captcha!"
|
577 |
|
578 |
+
#: lib/wfu_constants.php:126
|
579 |
msgid "the secret parameter is missing"
|
580 |
msgstr "nedostaje tajni parametar"
|
581 |
|
582 |
+
#: lib/wfu_constants.php:127
|
583 |
msgid "the secret parameter is invalid or malformed"
|
584 |
msgstr "tajni parametar je nevažeći ili loše formulisan"
|
585 |
|
586 |
+
#: lib/wfu_constants.php:128
|
587 |
msgid "the response parameter is missing"
|
588 |
msgstr "nedostaje parametar odgovora "
|
589 |
|
590 |
+
#: lib/wfu_constants.php:129
|
591 |
msgid "the response parameter is invalid or malformed"
|
592 |
msgstr "parametar odgovora je nevažeći ili loše formulisan"
|
593 |
|
594 |
+
#: lib/wfu_constants.php:130
|
595 |
msgid "Please do not use drag drop due to an internal problem."
|
596 |
msgstr ""
|
597 |
"Molimo vas da ne koristite prevlačenje i pozicioniranje zbog internog "
|
598 |
"problema."
|
599 |
|
600 |
+
#: lib/wfu_constants.php:131
|
601 |
#, php-format
|
602 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
603 |
msgstr ""
|
604 |
"Došlo je do greške prilikom parcijalnog otpremanja. Jedinstveni ID u "
|
605 |
"jedinici memorije %d"
|
606 |
|
607 |
+
#: lib/wfu_constants.php:132
|
608 |
msgid "Chunked upload is not allowed!"
|
609 |
msgstr "Parcijalno otpremanje nije dozvoljeno!"
|
610 |
|
611 |
+
#: lib/wfu_constants.php:133
|
612 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
613 |
msgstr ""
|
614 |
"Parcijalno otpremanje prekinuto je zbog greške u prethodnoj jedinici "
|
615 |
"memorije!"
|
616 |
|
617 |
+
#: lib/wfu_constants.php:134
|
618 |
msgid "Chunked upload failed, final file could not be created!"
|
619 |
msgstr ""
|
620 |
"Otpremanje u jedinici memorije neuspelo, konačna datoteka ne može se "
|
621 |
"kreirati!"
|
622 |
|
623 |
+
#: lib/wfu_constants.php:135
|
624 |
#, php-format
|
625 |
msgid "Could not write file chuck to destination on chunk %d"
|
626 |
msgstr ""
|
627 |
"Ne može se napisati jedinica memorije datoteke u jedinici memorije %d. "
|
628 |
|
629 |
+
#: lib/wfu_constants.php:136
|
630 |
#, php-format
|
631 |
msgid "Could not enlarge destination file on chunk %d"
|
632 |
msgstr "Ne može se uvećati odredišna datoteka u jedinici memorije %d."
|
633 |
|
634 |
+
#: lib/wfu_constants.php:137
|
635 |
#, php-format
|
636 |
msgid "Could not open file handles on chunk %d"
|
637 |
msgstr "Ne mogu se otvoriti opisi datoteke u jedinici memorije %d"
|
638 |
|
639 |
+
#: lib/wfu_constants.php:138
|
640 |
msgid "You are not allowed to download this file!"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: lib/wfu_constants.php:139
|
644 |
msgid "File does not exist!"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: lib/wfu_constants.php:140
|
648 |
msgid "Could not download file!"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: lib/wfu_constants.php:141
|
652 |
msgid "You are not allowed to delete this file!"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: lib/wfu_constants.php:142
|
656 |
msgid "File was not deleted!"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/wfu_constants.php:143
|
660 |
msgid "No file was deleted!"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: lib/wfu_constants.php:144
|
664 |
msgid "Some files were not deleted!"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: lib/wfu_constants.php:146
|
668 |
msgid "Upload skipped! File already exists."
|
669 |
msgstr "Otpremanje preskočeno! Datoteka već postoji."
|
670 |
|
671 |
+
#: lib/wfu_constants.php:147
|
672 |
msgid "The extension of the file does not match its contents."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: lib/wfu_constants.php:148
|
676 |
msgid ""
|
677 |
"Upload succeeded but the file is suspicious because its contents do not "
|
678 |
"match its extension. Its proper filename is: "
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: lib/wfu_constants.php:149
|
682 |
msgid "No files have been selected!"
|
683 |
msgstr "Datoteke nisu odabrane!"
|
684 |
|
685 |
+
#: lib/wfu_constants.php:150
|
686 |
msgid "Please complete the consent question before continuing the upload!"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: lib/wfu_constants.php:151
|
690 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
691 |
msgstr ""
|
692 |
"WPFilebase Plugin nije ažuriran zato što nije bilo otpremljenih datoteka."
|
693 |
|
694 |
+
#: lib/wfu_constants.php:152
|
695 |
msgid "Notification email was not sent because there were no files uploaded."
|
696 |
msgstr "Mail obaveštenja nije poslat jer nije bilo otpremljenih datoteka."
|
697 |
|
698 |
+
#: lib/wfu_constants.php:153
|
699 |
msgid ""
|
700 |
"Notification email was not sent because no recipients were defined. Please "
|
701 |
"check notifyrecipients attribute in the shortcode."
|
703 |
"Mail obaveštenja nije poslat jer nije bilo navedenih primalaca. Proverite "
|
704 |
"notifyrecipients atribut u shortcode-u."
|
705 |
|
706 |
+
#: lib/wfu_constants.php:154
|
707 |
msgid ""
|
708 |
"Notification email was not sent due to an error. Please check "
|
709 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
711 |
"Mail obaveštenja nije poslat zbog greške. Proverite notifyrecipients, "
|
712 |
"notifysubject i notifymessage atribute da biste našli greške."
|
713 |
|
714 |
+
#: lib/wfu_constants.php:155
|
715 |
msgid ""
|
716 |
"Redirection not executed because redirection link is empty. Please check "
|
717 |
"redirectlink attribute."
|
719 |
"Preusmeravanje nije izvršeno zato što je link za preusmeravanje prazan. "
|
720 |
"Proverite redirectlink atribut."
|
721 |
|
722 |
+
#: lib/wfu_constants.php:156
|
723 |
msgid ""
|
724 |
"Redirection not executed because not all files were successfully uploaded."
|
725 |
msgstr ""
|
726 |
"Preusmeravanje nije izvršeno zato što nisu sve datoteke uspešno otpremljene."
|
727 |
|
728 |
+
#: lib/wfu_constants.php:157
|
729 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: lib/wfu_constants.php:158
|
733 |
msgid ""
|
734 |
"Hello admin\n"
|
735 |
"\n"
|
749 |
"Thanks"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: lib/wfu_constants.php:159
|
753 |
msgid ""
|
754 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
755 |
"details please contact info@iptanus.com."
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: lib/wfu_constants.php:160
|
759 |
msgid ""
|
760 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
761 |
"plugin functions. Please read this :article: for resolution."
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: lib/wfu_constants.php:162
|
765 |
msgid ""
|
766 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
767 |
"message persists, contact administrator."
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: lib/wfu_constants.php:163
|
771 |
msgid ""
|
772 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
773 |
"again to edit the shortcode."
|
775 |
"Neuspešno uređivanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
776 |
"ponovo da uredite shortcode."
|
777 |
|
778 |
+
#: lib/wfu_constants.php:164
|
779 |
msgid ""
|
780 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
781 |
"again to delete it."
|
783 |
"Neuspešno brisanje shortcode-a zbog izmene sadržaja stranice. Pokušajte "
|
784 |
"ponovo da ga obrišete."
|
785 |
|
786 |
+
#: lib/wfu_constants.php:165
|
787 |
msgid ""
|
788 |
"The page containing the shortcode has been modified and it is no longer "
|
789 |
"valid. Please go back to reload the shortcode."
|
791 |
"Stranica koja sadrži shortcode je izmenjena i više nije validna. Vratite se "
|
792 |
"da ponovo učitate shortcode."
|
793 |
|
794 |
+
#: lib/wfu_constants.php:166
|
795 |
msgid ""
|
796 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
797 |
"back to reload the shortcode."
|
799 |
"Neuspešno ažuriranje shortcode-a zbog izmene sadržaja stranice. Vratite se "
|
800 |
"da ponovo učitate shortcode."
|
801 |
|
802 |
+
#: lib/wfu_constants.php:167
|
803 |
msgid ""
|
804 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
805 |
"go back and reload the shortcode."
|
807 |
"Neuspešno ažuriranje shortcode-a. Pokušajte ponovo. Ako se problem ne reši, "
|
808 |
"vratite se i opet učitajte shortcode."
|
809 |
|
810 |
+
#: lib/wfu_constants.php:169
|
811 |
msgid "This is a test message"
|
812 |
msgstr "Ovo je poruka testa"
|
813 |
|
814 |
+
#: lib/wfu_constants.php:170
|
815 |
msgid "This is a test administrator message"
|
816 |
msgstr "Ovo je poruka testa administratora "
|
817 |
|
818 |
+
#: lib/wfu_constants.php:171
|
819 |
msgid "File testfile 1 under test"
|
820 |
msgstr "Datoteka testfile 1 na testiranju"
|
821 |
|
822 |
+
#: lib/wfu_constants.php:172
|
823 |
msgid "File testfile 1 message"
|
824 |
msgstr "Datoteka testfile 1 poruka"
|
825 |
|
826 |
+
#: lib/wfu_constants.php:173
|
827 |
msgid "File testfile 1 administrator message"
|
828 |
msgstr "Datoteka testfile 1 poruka administratora"
|
829 |
|
830 |
+
#: lib/wfu_constants.php:174
|
831 |
msgid "File testfile 2 under test"
|
832 |
msgstr "Datoteka testfile 2 na testiranju"
|
833 |
|
834 |
+
#: lib/wfu_constants.php:175
|
835 |
msgid "File testfile 2 message"
|
836 |
msgstr "Datoteka testfile 2 poruka"
|
837 |
|
838 |
+
#: lib/wfu_constants.php:176
|
839 |
msgid "File testfile 2 administrator message"
|
840 |
msgstr "Datoteka testfile 2 poruka administratora"
|
841 |
|
842 |
+
#: lib/wfu_constants.php:178
|
843 |
msgid ""
|
844 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
845 |
"current user."
|
847 |
"Unesite promenljivu %idkorisnika% u tekst. Biće zamenjena id-jem tekućeg "
|
848 |
"korisnika."
|
849 |
|
850 |
+
#: lib/wfu_constants.php:179
|
851 |
msgid ""
|
852 |
"Insert variable %username% inside text. It will be replaced by the username "
|
853 |
"of the current user."
|
855 |
"Unesite promenljivu %korisničko ime% u tekst. Biće zamenjena korisničkim "
|
856 |
"imenom tekućeg korisnika."
|
857 |
|
858 |
+
#: lib/wfu_constants.php:180
|
859 |
msgid ""
|
860 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
861 |
"the current user."
|
863 |
"Unesite promenljivu %mailkorisnika% u tekst. Biće zamenjena mail-om tekućeg "
|
864 |
"korisnika."
|
865 |
|
866 |
+
#: lib/wfu_constants.php:181
|
867 |
msgid ""
|
868 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
869 |
"of the uploaded file."
|
871 |
"Unesite promenljivu %nazivdatoteke% u tekst. Biće zamenjena nazivom "
|
872 |
"otpremljene datoteke."
|
873 |
|
874 |
+
#: lib/wfu_constants.php:182
|
875 |
msgid ""
|
876 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
877 |
"filepath of the uploaded file."
|
879 |
"Unesite promenljivu %putanjadatoteke% u tekst. Biće zamenjena celom putanjom "
|
880 |
"otpremljene datoteke."
|
881 |
|
882 |
+
#: lib/wfu_constants.php:183
|
883 |
msgid ""
|
884 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
885 |
"the website."
|
887 |
"Unesite promenljivu %idbloga% u tekst. Biće zamenjena id-jem bloga web site-"
|
888 |
"a."
|
889 |
|
890 |
+
#: lib/wfu_constants.php:184
|
891 |
msgid ""
|
892 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
893 |
"current page."
|
895 |
"Unesite promenljivu %idstranice% u tekst. Biće zamenjena id-jem tekuće "
|
896 |
"stranice."
|
897 |
|
898 |
+
#: lib/wfu_constants.php:185
|
899 |
msgid ""
|
900 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
901 |
"the current page."
|
903 |
"Unesite promenljivu %naslovstranice% u tekst. Biće zamenjena naslovom tekuće "
|
904 |
"stranice."
|
905 |
|
906 |
+
#: lib/wfu_constants.php:186
|
907 |
msgid ""
|
908 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
909 |
"drop-down list. It will be replaced by the value that the user entered in "
|
912 |
"Unesite promenljivu %korisnički podaciXXX%. Odaberite korisničko polje iz "
|
913 |
"opadajuće liste. Biće zamenjena vrednošću koju je korisnik uneo u ovo polje."
|
914 |
|
915 |
+
#: lib/wfu_constants.php:187
|
916 |
msgid "Insert variable %n% inside text to denote a line change."
|
917 |
msgstr "Unesite promenljivu %n% u tekst kako biste označili promenu reda."
|
918 |
|
919 |
+
#: lib/wfu_constants.php:189
|
920 |
+
#, php-format
|
921 |
+
msgid "File %filename% uploaded successfully but not saved"
|
922 |
+
msgstr ""
|
923 |
+
|
924 |
+
#: lib/wfu_constants.php:190
|
925 |
msgid "Test Mode"
|
926 |
msgstr "Režim testiranja"
|
927 |
|
928 |
+
#: lib/wfu_constants.php:191
|
929 |
msgid "select dir..."
|
930 |
msgstr "odaberite dir..."
|
931 |
|
932 |
+
#: lib/wfu_constants.php:192
|
933 |
msgid "type dir"
|
934 |
msgstr "vrsta direktorijuma "
|
935 |
|
936 |
+
#: lib/wfu_constants.php:193
|
937 |
msgid "Upload path: %filepath%"
|
938 |
msgstr "Putanja otpremanja: %filepath%"
|
939 |
|
940 |
+
#: lib/wfu_constants.php:194
|
941 |
msgid "Failed upload path: %filepath%"
|
942 |
msgstr "Putanja otpremanja neuspešna: %filepath%"
|
943 |
|
944 |
+
#: lib/wfu_constants.php:195
|
945 |
msgid " (required)"
|
946 |
msgstr "(obavezna)"
|
947 |
|
948 |
+
#: lib/wfu_constants.php:196
|
949 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
950 |
msgstr "Datoteke su otpremljene. Da li sigurno želite da napustite stranicu?"
|
951 |
|
952 |
+
#: lib/wfu_constants.php:197
|
953 |
msgid "checking captcha..."
|
954 |
msgstr "captcha se proverava..."
|
955 |
|
956 |
+
#: lib/wfu_constants.php:198
|
957 |
msgid "refreshing..."
|
958 |
msgstr "osvežava se..."
|
959 |
|
960 |
+
#: lib/wfu_constants.php:199
|
961 |
msgid "correct captcha"
|
962 |
msgstr "ispravi captcha"
|
963 |
|
964 |
+
#: lib/wfu_constants.php:200
|
965 |
msgid "click to continue the upload"
|
966 |
msgstr "kliknite da biste nastavili otpremanje"
|
967 |
|
968 |
+
#: lib/wfu_constants.php:201
|
969 |
msgid "Are you sure you want to delete this file?"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: lib/wfu_constants.php:202
|
973 |
msgid "Are you sure you want to delete these files?"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: lib/wfu_constants.php:203
|
977 |
msgid "Bulk Actions"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: lib/wfu_constants.php:204
|
981 |
msgid "Apply"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: lib/wfu_constants.php:206
|
985 |
msgid "of "
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: lib/wfu_constants.php:207
|
989 |
msgid "Are you sure that you want to cancel the upload?"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: lib/wfu_constants.php:208
|
993 |
msgid "cancel upload of this file"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: lib/wfu_constants.php:209
|
997 |
msgid "Upload in progress"
|
998 |
msgstr "Otpremanje u toku"
|
999 |
|
1000 |
+
#: lib/wfu_constants.php:210
|
1001 |
msgid "Upload in progress with warnings!"
|
1002 |
msgstr "Otpremanje sa upozorenjima u toku!"
|
1003 |
|
1004 |
+
#: lib/wfu_constants.php:211
|
1005 |
msgid "Upload in progress but some files already failed!"
|
1006 |
msgstr "Otpremanje u toku, ali neke datoteke već nisu uspešno otpremljene!"
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:212
|
1009 |
msgid "Upload in progress but no files uploaded so far!"
|
1010 |
msgstr "Otpremanje u toku, ali do sada nisu otpremljene nikakve datoteke!"
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:213
|
1013 |
msgid "All files uploaded successfully"
|
1014 |
msgstr "Sve datoteke uspešno su otpremljene"
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:214
|
1017 |
msgid "All files uploaded successfully but there are warnings!"
|
1018 |
msgstr "Sve datoteke uspešno su otpremljene, ali postoje upozorenja!"
|
1019 |
|
1020 |
+
#: lib/wfu_constants.php:215
|
1021 |
msgid "File uploaded successfully but there are warnings!"
|
1022 |
msgstr "Datoteka je uspešno otpremljena, ali postoje upozorenja!"
|
1023 |
|
1024 |
+
#: lib/wfu_constants.php:216
|
1025 |
msgid "Some files failed to upload!"
|
1026 |
msgstr "Neke datoteke nisu otpremljene!"
|
1027 |
|
1028 |
+
#: lib/wfu_constants.php:217
|
1029 |
msgid "All files failed to upload"
|
1030 |
msgstr "Nijedna datoteka nije otpremljena"
|
1031 |
|
1032 |
+
#: lib/wfu_constants.php:218
|
1033 |
msgid "File failed to upload"
|
1034 |
msgstr "Datoteka nije uspešno otpremljena"
|
1035 |
|
1036 |
+
#: lib/wfu_constants.php:219
|
1037 |
msgid "There are no files to upload!"
|
1038 |
msgstr "Nema datoteka za otpremanje"
|
1039 |
|
1040 |
+
#: lib/wfu_constants.php:220
|
1041 |
msgid "Test upload message"
|
1042 |
msgstr "Testiraj poruku za otpremanje"
|
1043 |
|
1044 |
+
#: lib/wfu_constants.php:221
|
1045 |
msgid "JSON parse warning!"
|
1046 |
msgstr "Upozorenje za JSON parsiranje!"
|
1047 |
|
1048 |
+
#: lib/wfu_constants.php:222
|
1049 |
msgid "please wait while redirecting..."
|
1050 |
msgstr "Molimo sačekajte preusmeravanje..."
|
1051 |
|
1052 |
+
#: lib/wfu_constants.php:224
|
1053 |
msgid "Submitting data"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: lib/wfu_constants.php:225
|
1057 |
msgid "Data submitted successfully!"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: lib/wfu_constants.php:226
|
1061 |
msgid "Data were not submitted!"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: lib/wfu_constants.php:227
|
1065 |
msgid "Cancelling upload"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: lib/wfu_constants.php:229
|
1069 |
+
msgid "Upload succeeded!"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: lib/wfu_constants.php:230
|
1073 |
+
msgid "Upload completed but no files were saved!"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: lib/wfu_constants.php:231
|
1077 |
+
msgid "File was not saved due to personal data policy!"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: lib/wfu_constants.php:232
|
1081 |
msgid "Open visual shortcode editor in new window"
|
1082 |
msgstr "Otvori vizuelni shortcode uređivač u novom prozoru"
|
1083 |
|
1084 |
+
#: lib/wfu_constants.php:233
|
1085 |
msgid "loading visual editor"
|
1086 |
msgstr "učitavanje vizuelnog uređivača"
|
1087 |
|
1088 |
+
#: lib/wfu_constants.php:234
|
1089 |
msgid "Clear file list?"
|
1090 |
msgstr "Obriši listu datoteke?"
|
1091 |
|
1092 |
+
#: lib/wfu_constants.php:235
|
1093 |
msgid "DROP HERE"
|
1094 |
msgstr "POZICIONIRAJ OVDE"
|
1095 |
|
1096 |
+
#: lib/wfu_constants.php:237
|
1097 |
msgid "record video"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: lib/wfu_constants.php:238
|
1101 |
msgid "take a picture"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: lib/wfu_constants.php:239
|
1105 |
msgid "turn webcam on/off"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: lib/wfu_constants.php:240
|
1109 |
msgid "go live again"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: lib/wfu_constants.php:241
|
1113 |
msgid "end recording"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: lib/wfu_constants.php:242
|
1117 |
msgid "play"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: lib/wfu_constants.php:243
|
1121 |
msgid "pause"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: lib/wfu_constants.php:244
|
1125 |
msgid "go to the beginning"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: lib/wfu_constants.php:245
|
1129 |
msgid "go to the end"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: lib/wfu_constants.php:247
|
1133 |
msgid "Wordpress File Upload Form"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: lib/wfu_constants.php:248
|
1137 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: lib/wfu_constants.php:249
|
1141 |
msgid "Upload Files"
|
1142 |
msgstr ""
|
1143 |
|
languages/wp-file-upload-sv_SE.mo
CHANGED
Binary file
|
languages/wp-file-upload-sv_SE.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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sv\n"
|
@@ -104,59 +104,65 @@ msgid ""
|
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "File"
|
109 |
msgstr "Fil"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
112 |
msgid "Date"
|
113 |
msgstr "Datum"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Size"
|
117 |
msgstr "Storlek"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "User"
|
121 |
msgstr "Användare"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "Page"
|
125 |
msgstr "Sida"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "User Fields"
|
129 |
msgstr "Användarfält:"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "Download"
|
133 |
msgstr "Ladda ner"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download this file"
|
137 |
msgstr "Ladda ner denna fil"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Delete"
|
141 |
msgstr "Radera"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete this file"
|
145 |
msgstr "Ta bort denna fil"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Sort list based on this column"
|
149 |
msgstr "Sortera listan utifrån denna kolumn"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "guest"
|
153 |
msgstr "gäst"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "unknown"
|
157 |
msgstr "okänd"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid ""
|
161 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
162 |
"attribute."
|
@@ -164,11 +170,11 @@ msgstr ""
|
|
164 |
"Fel. Gick inte att matcha ftp mål filmappen. Kontrollera domänen i 'ftpinfo'-"
|
165 |
"attribut."
|
166 |
|
167 |
-
#: lib/wfu_constants.php:
|
168 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
169 |
msgstr "Fel. Ogiltig ftp information. Kontrollera 'ftpinfo'-attribut."
|
170 |
|
171 |
-
#: lib/wfu_constants.php:
|
172 |
msgid ""
|
173 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
174 |
"syntax."
|
@@ -176,7 +182,7 @@ msgstr ""
|
|
176 |
"Fel. Kunde inte packa upp ftp informationen från 'ftpinfo'-attribut. "
|
177 |
"Kontrollera dess syntax."
|
178 |
|
179 |
-
#: lib/wfu_constants.php:
|
180 |
msgid ""
|
181 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
182 |
"attribute."
|
@@ -184,39 +190,39 @@ msgstr ""
|
|
184 |
"Fel. Gick inte att matcha ftp målfilnamn. Kontrollera domänen i 'ftpinfo'-"
|
185 |
"attribut."
|
186 |
|
187 |
-
#: lib/wfu_constants.php:
|
188 |
msgid ""
|
189 |
"Error. Could not open source file for ftp upload. Check if file is "
|
190 |
"accessible."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: lib/wfu_constants.php:
|
194 |
msgid "Error. Could not send data to ftp target file."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: lib/wfu_constants.php:
|
198 |
msgid ""
|
199 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
200 |
"attribute."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: lib/wfu_constants.php:
|
204 |
msgid ""
|
205 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
206 |
"'ftpinfo' attribute."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: lib/wfu_constants.php:
|
210 |
msgid ""
|
211 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
212 |
"supports sftp."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: lib/wfu_constants.php:
|
216 |
msgid "Error. The web server does not support sftp."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: lib/wfu_constants.php:
|
220 |
msgid ""
|
221 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
222 |
"preventing the upload of big files.\n"
|
@@ -226,7 +232,7 @@ msgstr ""
|
|
226 |
"överföringen av stora filer.\n"
|
227 |
"PHP direktivet upload_max_filesize gräns är: "
|
228 |
|
229 |
-
#: lib/wfu_constants.php:
|
230 |
msgid ""
|
231 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
232 |
"upload of big files.\n"
|
@@ -236,7 +242,7 @@ msgstr ""
|
|
236 |
"överföringen av stora filer.\n"
|
237 |
"PHP direktiv max_input_time gräns är:"
|
238 |
|
239 |
-
#: lib/wfu_constants.php:
|
240 |
msgid ""
|
241 |
"Error. Permission denied to write to target folder.\n"
|
242 |
"Check and correct read/write permissions of target folder."
|
@@ -244,7 +250,7 @@ msgstr ""
|
|
244 |
"Fel. Åtkomst nekad att skriva till målmappen.\n"
|
245 |
"Kontrollera och korrigera Läs-och skrivbehörighet för målmappen."
|
246 |
|
247 |
-
#: lib/wfu_constants.php:
|
248 |
msgid ""
|
249 |
"Error. This file was rejected because its extension is not correct. Its "
|
250 |
"proper filename is: "
|
@@ -252,7 +258,7 @@ msgstr ""
|
|
252 |
"Fel. Den här filen avvisades eftersom filändelsen inte är korrekt. Dess "
|
253 |
"korrekt filnamn är: "
|
254 |
|
255 |
-
#: lib/wfu_constants.php:
|
256 |
msgid ""
|
257 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
258 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
@@ -262,7 +268,7 @@ msgstr ""
|
|
262 |
"Service attack, så filen avslogs. Kontrollera loggen uppladdning för "
|
263 |
"misstänkt beteende."
|
264 |
|
265 |
-
#: lib/wfu_constants.php:
|
266 |
msgid ""
|
267 |
"File not uploaded in order to prevent overflow of the website. Please "
|
268 |
"contact administrator."
|
@@ -270,36 +276,36 @@ msgstr ""
|
|
270 |
"Filen inte laddas upp för att förhindra spill av webbplatsen. Kontakta "
|
271 |
"administratören."
|
272 |
|
273 |
-
#: lib/wfu_constants.php:
|
274 |
msgid "Target folder doesn't exist."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: lib/wfu_constants.php:
|
278 |
msgid "Upload failed! Missing a temporary folder."
|
279 |
msgstr "Det gick inte att ladda upp! Saknas en tillfällig mapp."
|
280 |
|
281 |
-
#: lib/wfu_constants.php:
|
282 |
msgid "Upload failed! Permission denied to write to target folder."
|
283 |
msgstr "Det gick inte att ladda upp! Åtkomst nekad att skriva till målmappen."
|
284 |
|
285 |
-
#: lib/wfu_constants.php:
|
286 |
msgid "File not allowed."
|
287 |
msgstr "Filtyp inte tillåten."
|
288 |
|
289 |
-
#: lib/wfu_constants.php:
|
290 |
msgid "File is suspicious and was rejected."
|
291 |
msgstr "Filen är misstänksam och avvisades."
|
292 |
|
293 |
-
#: lib/wfu_constants.php:
|
294 |
msgid "The uploaded file exceeds the file size limit."
|
295 |
msgstr "Den uppladdade filen överskrider filstorleksgränsen."
|
296 |
|
297 |
-
#: lib/wfu_constants.php:
|
298 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
299 |
msgstr ""
|
300 |
"Den uppladdade filen överskrider 2GB och stöds inte av den här servern."
|
301 |
|
302 |
-
#: lib/wfu_constants.php:
|
303 |
msgid ""
|
304 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
305 |
"Please contact the administrator."
|
@@ -307,7 +313,7 @@ msgstr ""
|
|
307 |
"Det gick inte att ladda upp! Den uppladdade filen överskrider "
|
308 |
"Filstorleksgränsen för servern. Vänligen kontakta administratören."
|
309 |
|
310 |
-
#: lib/wfu_constants.php:
|
311 |
msgid ""
|
312 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
313 |
"server. Please contact the administrator."
|
@@ -315,27 +321,27 @@ msgstr ""
|
|
315 |
"Det gick inte att ladda upp! Varaktigheten av uppladdningen överskridit "
|
316 |
"tidsgränsen för servern. Vänligen kontakta administratören."
|
317 |
|
318 |
-
#: lib/wfu_constants.php:
|
319 |
msgid ""
|
320 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
321 |
"was specified in the HTML form."
|
322 |
msgstr ""
|
323 |
"Den uppladdade filen överstiger MAX_FILE_SIZE som angavs i HTML-formuläret."
|
324 |
|
325 |
-
#: lib/wfu_constants.php:
|
326 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
327 |
msgstr ""
|
328 |
"Det gick inte att ladda upp! Den uppladdade filen laddades bara delvis."
|
329 |
|
330 |
-
#: lib/wfu_constants.php:
|
331 |
msgid "Upload failed! No file was uploaded."
|
332 |
msgstr "Uppladdning misslyckades."
|
333 |
|
334 |
-
#: lib/wfu_constants.php:
|
335 |
msgid "Upload failed! Failed to write file to disk."
|
336 |
msgstr "Det gick inte att ladda upp! Misslyckades att skriva fil till disk."
|
337 |
|
338 |
-
#: lib/wfu_constants.php:
|
339 |
msgid ""
|
340 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
341 |
"administrator."
|
@@ -343,11 +349,11 @@ msgstr ""
|
|
343 |
"Det gick inte att ladda upp! Fel uppstod när flytta temporär fil. Kontakta "
|
344 |
"administratören."
|
345 |
|
346 |
-
#: lib/wfu_constants.php:
|
347 |
msgid "Upload cancelled!"
|
348 |
msgstr "Ladda upp fil/ladda upp filer"
|
349 |
|
350 |
-
#: lib/wfu_constants.php:
|
351 |
msgid ""
|
352 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
353 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -357,20 +363,20 @@ msgstr ""
|
|
357 |
"ger inte ett sätt att fastställa vilka förlängning orsakade filuppladdning "
|
358 |
"att stoppa; Granska listan över inlästa tillägg med phpinfo() kan hjälpa."
|
359 |
|
360 |
-
#: lib/wfu_constants.php:
|
361 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
362 |
msgstr ""
|
363 |
"Det gick inte att ladda upp! Fel uppstod när attemting Ladda upp filen."
|
364 |
|
365 |
-
#: lib/wfu_constants.php:
|
366 |
msgid "Upload failed!"
|
367 |
msgstr "Uppladdning misslyckades"
|
368 |
|
369 |
-
#: lib/wfu_constants.php:
|
370 |
msgid "No file!"
|
371 |
msgstr "Ingen fil"
|
372 |
|
373 |
-
#: lib/wfu_constants.php:
|
374 |
msgid ""
|
375 |
"Upload failed! The upload has been canceled by the user or the browser "
|
376 |
"dropped the connection."
|
@@ -378,27 +384,27 @@ msgstr ""
|
|
378 |
"Det gick inte att ladda upp! Uppladdningen har avbrutits av användaren eller "
|
379 |
"webbläsaren tappade anslutningen."
|
380 |
|
381 |
-
#: lib/wfu_constants.php:
|
382 |
msgid "Upload failed! Unknown error."
|
383 |
msgstr "Det gick inte att ladda upp! Okänt fel."
|
384 |
|
385 |
-
#: lib/wfu_constants.php:
|
386 |
msgid "Please contact the administrator."
|
387 |
msgstr "Vänligen kontakta administratören."
|
388 |
|
389 |
-
#: lib/wfu_constants.php:
|
390 |
msgid "No result from remote server!"
|
391 |
msgstr "Inget resultat från fjärrservern!"
|
392 |
|
393 |
-
#: lib/wfu_constants.php:
|
394 |
msgid " but with warnings"
|
395 |
msgstr " men med varningar"
|
396 |
|
397 |
-
#: lib/wfu_constants.php:
|
398 |
msgid "Warning: JSON parse error."
|
399 |
msgstr "Varning: JSON parse error."
|
400 |
|
401 |
-
#: lib/wfu_constants.php:
|
402 |
msgid ""
|
403 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
404 |
"not be parsed."
|
@@ -406,19 +412,19 @@ msgstr ""
|
|
406 |
"Ladda upp parametrarna för denna fil, passerade som JSON-sträng till "
|
407 |
"hanteraren, kunde inte parsas."
|
408 |
|
409 |
-
#: lib/wfu_constants.php:
|
410 |
msgid ""
|
411 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
412 |
msgstr ""
|
413 |
"UploadStates, passerade som JSON-sträng till hanteraren, kunde inte parsas."
|
414 |
|
415 |
-
#: lib/wfu_constants.php:
|
416 |
msgid ""
|
417 |
"Redirection to classic form functionality occurred due to unknown error."
|
418 |
msgstr ""
|
419 |
"Omdirigering till klassiska formulärfunktioner uppstod på grund av okänt fel."
|
420 |
|
421 |
-
#: lib/wfu_constants.php:
|
422 |
msgid ""
|
423 |
"Redirection to classic form functionality occurred because AJAX is not "
|
424 |
"supported."
|
@@ -426,7 +432,7 @@ msgstr ""
|
|
426 |
"Omdirigering till klassiska formulärfunktioner uppstod eftersom AJAX inte "
|
427 |
"stöds."
|
428 |
|
429 |
-
#: lib/wfu_constants.php:
|
430 |
msgid ""
|
431 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
432 |
"supported."
|
@@ -434,58 +440,58 @@ msgstr ""
|
|
434 |
"Omdirigering till klassiska formulärfunktioner uppstod eftersom HTML5 inte "
|
435 |
"stöds."
|
436 |
|
437 |
-
#: lib/wfu_constants.php:
|
438 |
msgid ""
|
439 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
440 |
msgstr ""
|
441 |
"Omdirigering till klassiska formulärfunktioner uppstod på grund av JSON "
|
442 |
"parse error."
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid "Please enable popup windows from the browser's settings!"
|
446 |
msgstr "Vänligen aktivera popupfönster från webbläsarens inställningar!"
|
447 |
|
448 |
-
#: lib/wfu_constants.php:
|
449 |
msgid "cannot be empty!"
|
450 |
msgstr "kan inte vara tom!"
|
451 |
|
452 |
-
#: lib/wfu_constants.php:
|
453 |
msgid "number not valid!"
|
454 |
msgstr "nummer inte giltig!"
|
455 |
|
456 |
-
#: lib/wfu_constants.php:
|
457 |
msgid "email not valid!"
|
458 |
msgstr "E-postadressen är inte giltig!"
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "emails do not match!"
|
462 |
msgstr "e-post stämmer inte!"
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid "no base email field in group!"
|
466 |
msgstr "ingen bas e-fältet i gruppen!"
|
467 |
|
468 |
-
#: lib/wfu_constants.php:
|
469 |
msgid "passwords do not match!"
|
470 |
msgstr "De två lösenorden matchar inte."
|
471 |
|
472 |
-
#: lib/wfu_constants.php:
|
473 |
msgid "no base password field in group!"
|
474 |
msgstr "ingen bas lösenordsfältet i grupp!"
|
475 |
|
476 |
-
#: lib/wfu_constants.php:
|
477 |
msgid "checkbox unchecked!"
|
478 |
msgstr "kryssrutan avmarkerad!"
|
479 |
|
480 |
-
#: lib/wfu_constants.php:
|
481 |
msgid "no option selected!"
|
482 |
msgstr "Inget alternativ valt"
|
483 |
|
484 |
-
#: lib/wfu_constants.php:
|
485 |
msgid "no item selected!"
|
486 |
msgstr "Inget objekt valt."
|
487 |
|
488 |
-
#: lib/wfu_constants.php:
|
489 |
msgid ""
|
490 |
"There are more than one instances of the plugin in this page with the same "
|
491 |
"id. Please change it."
|
@@ -493,7 +499,7 @@ msgstr ""
|
|
493 |
"I området i närheten finns det flera instanser av plugin i sidan med samma "
|
494 |
"id. Ändra det."
|
495 |
|
496 |
-
#: lib/wfu_constants.php:
|
497 |
msgid ""
|
498 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
499 |
"the page."
|
@@ -501,19 +507,19 @@ msgstr ""
|
|
501 |
"Kan inte redigera kortkoden eftersom sidan har ändrats. Vänligen ladda om "
|
502 |
"sidan."
|
503 |
|
504 |
-
#: lib/wfu_constants.php:
|
505 |
msgid "Your browser does not support webcam capture!"
|
506 |
msgstr "Din webbläsare stöder inte webbkamerainspelning!"
|
507 |
|
508 |
-
#: lib/wfu_constants.php:
|
509 |
msgid "Your browser does not support video recording from the webcam!"
|
510 |
msgstr "Din webbläsare stöder inte videoinspelning från webbkameran!"
|
511 |
|
512 |
-
#: lib/wfu_constants.php:
|
513 |
msgid "No video was recorded!"
|
514 |
msgstr "Ingen video spelades in!"
|
515 |
|
516 |
-
#: lib/wfu_constants.php:
|
517 |
msgid ""
|
518 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
519 |
"or use RecaptchaV2 (no account)."
|
@@ -521,7 +527,7 @@ msgstr ""
|
|
521 |
"FEL: Captcha stöds inte! Du har en gammal PHP-version. Uppgradera din PHP "
|
522 |
"eller använda RecaptchaV2 (inget konto)."
|
523 |
|
524 |
-
#: lib/wfu_constants.php:
|
525 |
msgid ""
|
526 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
527 |
"notify administrator."
|
@@ -529,7 +535,7 @@ msgstr ""
|
|
529 |
"FEL: Endast en koduppladdning av RecaptchaV1 kan finnas på samma sida. "
|
530 |
"Vänligen meddela administratören."
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid ""
|
534 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
535 |
"use RecaptchaV1 (no account)."
|
@@ -537,11 +543,11 @@ msgstr ""
|
|
537 |
"FEL: Endast en koduppladdning av RecaptchaV1 kan finnas på samma sida. "
|
538 |
"Vänligen använd RecaptchaV1 (inget konto)."
|
539 |
|
540 |
-
#: lib/wfu_constants.php:
|
541 |
msgid "ERROR: No site key. Please contact administrator!"
|
542 |
msgstr "FEL: Ingen webbplats nyckel. Vänligen kontakta administratören!"
|
543 |
|
544 |
-
#: lib/wfu_constants.php:
|
545 |
msgid ""
|
546 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
547 |
"define Google Recaptcha keys."
|
@@ -549,11 +555,11 @@ msgstr ""
|
|
549 |
"FEL: Ingen webbplats nyckel definierad! Vänligen gå till plugin "
|
550 |
"inställningar i kontrollpanelen för att definiera Google Recaptcha nycklar."
|
551 |
|
552 |
-
#: lib/wfu_constants.php:
|
553 |
msgid "Bad captcha image!"
|
554 |
msgstr "Dåliga captcha-bild!"
|
555 |
|
556 |
-
#: lib/wfu_constants.php:
|
557 |
msgid "No input!"
|
558 |
msgstr ""
|
559 |
"aria-required är en form input WAI ARIA tag. Screen readers använder detta "
|
@@ -563,115 +569,115 @@ msgstr ""
|
|
563 |
"snart att accepteras av HTML validator, så du kan utan risk ignorera de "
|
564 |
"valideringsfel som den kommer att orsaka."
|
565 |
|
566 |
-
#: lib/wfu_constants.php:
|
567 |
msgid "Captcha not completed!"
|
568 |
msgstr "CAPTCHA inte klar!"
|
569 |
|
570 |
-
#: lib/wfu_constants.php:
|
571 |
msgid "Wrong captcha!"
|
572 |
msgstr "Fel captcha!"
|
573 |
|
574 |
-
#: lib/wfu_constants.php:
|
575 |
msgid "Error refreshing captcha!"
|
576 |
msgstr "Fel uppdaterar captcha!"
|
577 |
|
578 |
-
#: lib/wfu_constants.php:
|
579 |
msgid "Unknown captcha error!"
|
580 |
msgstr "Okänd captcha fel!"
|
581 |
|
582 |
-
#: lib/wfu_constants.php:
|
583 |
msgid "Captcha not supported by your browser!"
|
584 |
msgstr "CAPTCHA stöds inte av din webbläsare!"
|
585 |
|
586 |
-
#: lib/wfu_constants.php:
|
587 |
msgid "the secret parameter is missing"
|
588 |
msgstr "den hemliga parametern saknas"
|
589 |
|
590 |
-
#: lib/wfu_constants.php:
|
591 |
msgid "the secret parameter is invalid or malformed"
|
592 |
msgstr "hemliga parametern är ogiltig eller felaktig"
|
593 |
|
594 |
-
#: lib/wfu_constants.php:
|
595 |
msgid "the response parameter is missing"
|
596 |
msgstr "Parametern saknas."
|
597 |
|
598 |
-
#: lib/wfu_constants.php:
|
599 |
msgid "the response parameter is invalid or malformed"
|
600 |
msgstr "Parameterns svar är ogiltigt eller har felaktigt format."
|
601 |
|
602 |
-
#: lib/wfu_constants.php:
|
603 |
msgid "Please do not use drag drop due to an internal problem."
|
604 |
msgstr "Vänligen Använd inte dra på grund av ett internt problem."
|
605 |
|
606 |
-
#: lib/wfu_constants.php:
|
607 |
#, php-format
|
608 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
609 |
msgstr "Fel under segmenterad uppladdning. Unikt ID saknas i segmentet %d"
|
610 |
|
611 |
-
#: lib/wfu_constants.php:
|
612 |
msgid "Chunked upload is not allowed!"
|
613 |
msgstr "Segmentuppladdning är inte tillåtet!"
|
614 |
|
615 |
-
#: lib/wfu_constants.php:
|
616 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
617 |
msgstr "Gruppuppladdning avbröts på grund av fel i tidigare segment!"
|
618 |
|
619 |
-
#: lib/wfu_constants.php:
|
620 |
msgid "Chunked upload failed, final file could not be created!"
|
621 |
msgstr "Uppladdningen av segmentet misslyckades, filen kunde inte skapas!"
|
622 |
|
623 |
-
#: lib/wfu_constants.php:
|
624 |
#, php-format
|
625 |
msgid "Could not write file chuck to destination on chunk %d"
|
626 |
msgstr "Kunde inte skriva filensegmentet till destination på segment %d"
|
627 |
|
628 |
-
#: lib/wfu_constants.php:
|
629 |
#, php-format
|
630 |
msgid "Could not enlarge destination file on chunk %d"
|
631 |
msgstr "Kunde inte förstora målfilen på segment %d"
|
632 |
|
633 |
-
#: lib/wfu_constants.php:
|
634 |
#, php-format
|
635 |
msgid "Could not open file handles on chunk %d"
|
636 |
msgstr "Kunde inte öppna filreferenser på segment %d"
|
637 |
|
638 |
-
#: lib/wfu_constants.php:
|
639 |
msgid "You are not allowed to download this file!"
|
640 |
msgstr "Du har inte tillgång till den här filen."
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid "File does not exist!"
|
644 |
msgstr "Filen finns inte"
|
645 |
|
646 |
-
#: lib/wfu_constants.php:
|
647 |
msgid "Could not download file!"
|
648 |
msgstr "Kunde inte ladda ner fil!"
|
649 |
|
650 |
-
#: lib/wfu_constants.php:
|
651 |
msgid "You are not allowed to delete this file!"
|
652 |
msgstr "Du får inte ta bort denna fil!"
|
653 |
|
654 |
-
#: lib/wfu_constants.php:
|
655 |
msgid "File was not deleted!"
|
656 |
msgstr "Filen var inte bort!"
|
657 |
|
658 |
-
#: lib/wfu_constants.php:
|
659 |
msgid "No file was deleted!"
|
660 |
msgstr "Ingen fil har tagits bort!"
|
661 |
|
662 |
-
#: lib/wfu_constants.php:
|
663 |
msgid "Some files were not deleted!"
|
664 |
msgstr "Vissa filer raderas inte!"
|
665 |
|
666 |
-
#: lib/wfu_constants.php:
|
667 |
msgid "Upload skipped! File already exists."
|
668 |
msgstr "Ladda upp överhoppade! Filen finns redan."
|
669 |
|
670 |
-
#: lib/wfu_constants.php:
|
671 |
msgid "The extension of the file does not match its contents."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: lib/wfu_constants.php:
|
675 |
msgid ""
|
676 |
"Upload succeeded but the file is suspicious because its contents do not "
|
677 |
"match its extension. Its proper filename is: "
|
@@ -679,26 +685,26 @@ msgstr ""
|
|
679 |
"Ladda upp lyckades men filen är misstänksam eftersom innehållet inte matchar "
|
680 |
"dess förlängning. Dess korrekt filnamn är:"
|
681 |
|
682 |
-
#: lib/wfu_constants.php:
|
683 |
msgid "No files have been selected!"
|
684 |
msgstr "Inga filer har valts!"
|
685 |
|
686 |
-
#: lib/wfu_constants.php:
|
687 |
msgid "Please complete the consent question before continuing the upload!"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: lib/wfu_constants.php:
|
691 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
692 |
msgstr ""
|
693 |
"WPFilebase Plugin uppdaterad inte eftersom det fanns inga filer som laddas "
|
694 |
"upp."
|
695 |
|
696 |
-
#: lib/wfu_constants.php:
|
697 |
msgid "Notification email was not sent because there were no files uploaded."
|
698 |
msgstr ""
|
699 |
"E-postmeddelande skickades inte eftersom det fanns inga filer som laddas upp."
|
700 |
|
701 |
-
#: lib/wfu_constants.php:
|
702 |
msgid ""
|
703 |
"Notification email was not sent because no recipients were defined. Please "
|
704 |
"check notifyrecipients attribute in the shortcode."
|
@@ -706,7 +712,7 @@ msgstr ""
|
|
706 |
"E-postmeddelande skickades inte eftersom inga mottagare definierades. "
|
707 |
"Vänligen kontrollera notifyrecipients attribut i kortkod."
|
708 |
|
709 |
-
#: lib/wfu_constants.php:
|
710 |
msgid ""
|
711 |
"Notification email was not sent due to an error. Please check "
|
712 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -714,7 +720,7 @@ msgstr ""
|
|
714 |
"E-postmeddelande skickades inte på grund av ett fel. Kontrollera "
|
715 |
"notifyrecipients, notifysubject och notifymessage attribut för fel."
|
716 |
|
717 |
-
#: lib/wfu_constants.php:
|
718 |
msgid ""
|
719 |
"Redirection not executed because redirection link is empty. Please check "
|
720 |
"redirectlink attribute."
|
@@ -722,16 +728,16 @@ msgstr ""
|
|
722 |
"Omdirigering inte köras eftersom omdirigering länk är tom. Vänligen "
|
723 |
"kontrollera redirectlink attribut."
|
724 |
|
725 |
-
#: lib/wfu_constants.php:
|
726 |
msgid ""
|
727 |
"Redirection not executed because not all files were successfully uploaded."
|
728 |
msgstr "Omdirigering av kördes inte eftersom inte alla filer har laddats."
|
729 |
|
730 |
-
#: lib/wfu_constants.php:
|
731 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
732 |
msgstr "Potentiell Denial-Of-Service Attack på {SIDA}"
|
733 |
|
734 |
-
#: lib/wfu_constants.php:
|
735 |
msgid ""
|
736 |
"Hello admin\n"
|
737 |
"\n"
|
@@ -767,19 +773,19 @@ msgstr ""
|
|
767 |
"\n"
|
768 |
"Tack"
|
769 |
|
770 |
-
#: lib/wfu_constants.php:
|
771 |
msgid ""
|
772 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
773 |
"details please contact info@iptanus.com."
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: lib/wfu_constants.php:
|
777 |
msgid ""
|
778 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
779 |
"plugin functions. Please read this :article: for resolution."
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: lib/wfu_constants.php:
|
783 |
msgid ""
|
784 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
785 |
"message persists, contact administrator."
|
@@ -787,7 +793,7 @@ msgstr ""
|
|
787 |
"Det gick inte att lägga till kortkoden till denna sida/inlägget. Vänligen "
|
788 |
"försök igen. Om meddelandet kvarstår, kontakta administratören."
|
789 |
|
790 |
-
#: lib/wfu_constants.php:
|
791 |
msgid ""
|
792 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
793 |
"again to edit the shortcode."
|
@@ -795,7 +801,7 @@ msgstr ""
|
|
795 |
"Det gick inte att redigera kortkod eftersom innehållet på sidan har ändrats. "
|
796 |
"Försök igen att redigera kortkod."
|
797 |
|
798 |
-
#: lib/wfu_constants.php:
|
799 |
msgid ""
|
800 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
801 |
"again to delete it."
|
@@ -803,7 +809,7 @@ msgstr ""
|
|
803 |
"Kunde inte ta bort kortkod eftersom innehållet på sidan är ändrat. Försök "
|
804 |
"att ta bort den igen."
|
805 |
|
806 |
-
#: lib/wfu_constants.php:
|
807 |
msgid ""
|
808 |
"The page containing the shortcode has been modified and it is no longer "
|
809 |
"valid. Please go back to reload the shortcode."
|
@@ -811,7 +817,7 @@ msgstr ""
|
|
811 |
"Sidan som innehåller kortkod har ändrats och det är inte längre giltig. Gå "
|
812 |
"tillbaka till Ladda kortkod."
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid ""
|
816 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
817 |
"back to reload the shortcode."
|
@@ -819,7 +825,7 @@ msgstr ""
|
|
819 |
"Det gick inte att uppdatera kortkod eftersom innehållet på sidan ändrats. Gå "
|
820 |
"tillbaka till Ladda kortkod."
|
821 |
|
822 |
-
#: lib/wfu_constants.php:
|
823 |
msgid ""
|
824 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
825 |
"go back and reload the shortcode."
|
@@ -827,39 +833,39 @@ msgstr ""
|
|
827 |
"Det gick inte att uppdatera kortkod. Vänligen försök igen. Om problemet "
|
828 |
"kvarstår, gå tillbaka och ladda kortkod."
|
829 |
|
830 |
-
#: lib/wfu_constants.php:
|
831 |
msgid "This is a test message"
|
832 |
msgstr "Testmeddelande skickat"
|
833 |
|
834 |
-
#: lib/wfu_constants.php:
|
835 |
msgid "This is a test administrator message"
|
836 |
msgstr "Detta är ett testmeddelande för administratör"
|
837 |
|
838 |
-
#: lib/wfu_constants.php:
|
839 |
msgid "File testfile 1 under test"
|
840 |
msgstr "Fil testfile 1 under test"
|
841 |
|
842 |
-
#: lib/wfu_constants.php:
|
843 |
msgid "File testfile 1 message"
|
844 |
msgstr "Fil testfile 1 meddelande"
|
845 |
|
846 |
-
#: lib/wfu_constants.php:
|
847 |
msgid "File testfile 1 administrator message"
|
848 |
msgstr "Fil testfile 1 administratör meddelande"
|
849 |
|
850 |
-
#: lib/wfu_constants.php:
|
851 |
msgid "File testfile 2 under test"
|
852 |
msgstr "Fil testfile 2 under test"
|
853 |
|
854 |
-
#: lib/wfu_constants.php:
|
855 |
msgid "File testfile 2 message"
|
856 |
msgstr "Fil testfile 2 meddelande"
|
857 |
|
858 |
-
#: lib/wfu_constants.php:
|
859 |
msgid "File testfile 2 administrator message"
|
860 |
msgstr "Fil testfile 2 administratör meddelande"
|
861 |
|
862 |
-
#: lib/wfu_constants.php:
|
863 |
msgid ""
|
864 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
865 |
"current user."
|
@@ -867,7 +873,7 @@ msgstr ""
|
|
867 |
"Infoga variabeln %userid% inuti texten. Det kommer att ersättas av id för "
|
868 |
"den aktuella användaren."
|
869 |
|
870 |
-
#: lib/wfu_constants.php:
|
871 |
msgid ""
|
872 |
"Insert variable %username% inside text. It will be replaced by the username "
|
873 |
"of the current user."
|
@@ -875,7 +881,7 @@ msgstr ""
|
|
875 |
"Infoga miljövariabeln %username% inuti texten. Det kommer att ersättas av "
|
876 |
"användarnamnet för den aktuella användaren."
|
877 |
|
878 |
-
#: lib/wfu_constants.php:
|
879 |
msgid ""
|
880 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
881 |
"the current user."
|
@@ -883,7 +889,7 @@ msgstr ""
|
|
883 |
"Infoga variabeln %useremail% inuti texten. Det kommer att ersättas av e-post "
|
884 |
"för den aktuella användaren."
|
885 |
|
886 |
-
#: lib/wfu_constants.php:
|
887 |
msgid ""
|
888 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
889 |
"of the uploaded file."
|
@@ -891,7 +897,7 @@ msgstr ""
|
|
891 |
"Infoga variabeln %filnamn% inuti texten. Det kommer att ersättas av "
|
892 |
"filnamnet för den överförda filen."
|
893 |
|
894 |
-
#: lib/wfu_constants.php:
|
895 |
msgid ""
|
896 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
897 |
"filepath of the uploaded file."
|
@@ -899,7 +905,7 @@ msgstr ""
|
|
899 |
"Infoga variabeln %filepath% inuti texten. Det kommer att ersättas av den "
|
900 |
"fullständiga sökvägen för den överförda filen."
|
901 |
|
902 |
-
#: lib/wfu_constants.php:
|
903 |
msgid ""
|
904 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
905 |
"the website."
|
@@ -907,7 +913,7 @@ msgstr ""
|
|
907 |
"Infoga variabeln %blogid% inuti texten. Det kommer att ersättas av blogg id "
|
908 |
"för webbplatsen."
|
909 |
|
910 |
-
#: lib/wfu_constants.php:
|
911 |
msgid ""
|
912 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
913 |
"current page."
|
@@ -915,7 +921,7 @@ msgstr ""
|
|
915 |
"Infoga variabeln %pageid% inuti texten. Det kommer att ersättas av id för "
|
916 |
"den aktuella sidan."
|
917 |
|
918 |
-
#: lib/wfu_constants.php:
|
919 |
msgid ""
|
920 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
921 |
"the current page."
|
@@ -923,7 +929,7 @@ msgstr ""
|
|
923 |
"Infoga variabeln %pagetitle% inuti texten. Det kommer att ersättas av titeln "
|
924 |
"på den aktuella sidan."
|
925 |
|
926 |
-
#: lib/wfu_constants.php:
|
927 |
msgid ""
|
928 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
929 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -933,215 +939,232 @@ msgstr ""
|
|
933 |
"down listan. Det kommer att ersättas av det värde som användaren har angett "
|
934 |
"i fältet."
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid "Insert variable %n% inside text to denote a line change."
|
938 |
msgstr "Infoga variabeln %n% inuti texten betecknar en radändring."
|
939 |
|
940 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
941 |
msgid "Test Mode"
|
942 |
msgstr "Testmod"
|
943 |
|
944 |
-
#: lib/wfu_constants.php:
|
945 |
msgid "select dir..."
|
946 |
msgstr "Välj katalog"
|
947 |
|
948 |
-
#: lib/wfu_constants.php:
|
949 |
msgid "type dir"
|
950 |
msgstr "Typ"
|
951 |
|
952 |
-
#: lib/wfu_constants.php:
|
953 |
msgid "Upload path: %filepath%"
|
954 |
msgstr "Ladda sökväg: %filepath%"
|
955 |
|
956 |
-
#: lib/wfu_constants.php:
|
957 |
msgid "Failed upload path: %filepath%"
|
958 |
msgstr "Misslyckades att ladda upp sökväg: %filepath%"
|
959 |
|
960 |
-
#: lib/wfu_constants.php:
|
961 |
msgid " (required)"
|
962 |
msgstr "(obligatoriskt)"
|
963 |
|
964 |
-
#: lib/wfu_constants.php:
|
965 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
966 |
msgstr "Filer överförs. Är du säker på att du vill stänga sidan?"
|
967 |
|
968 |
-
#: lib/wfu_constants.php:
|
969 |
msgid "checking captcha..."
|
970 |
msgstr "kontrollerar captcha..."
|
971 |
|
972 |
-
#: lib/wfu_constants.php:
|
973 |
msgid "refreshing..."
|
974 |
msgstr "Förnyar..."
|
975 |
|
976 |
-
#: lib/wfu_constants.php:
|
977 |
msgid "correct captcha"
|
978 |
msgstr "rätt captcha"
|
979 |
|
980 |
-
#: lib/wfu_constants.php:
|
981 |
msgid "click to continue the upload"
|
982 |
msgstr "klicka för att fortsätta uppladdningen"
|
983 |
|
984 |
-
#: lib/wfu_constants.php:
|
985 |
msgid "Are you sure you want to delete this file?"
|
986 |
msgstr "Är du säker på att du vill radera denna fil?"
|
987 |
|
988 |
-
#: lib/wfu_constants.php:
|
989 |
msgid "Are you sure you want to delete these files?"
|
990 |
msgstr "Är du säker på att du vill radera dessa filer?"
|
991 |
|
992 |
-
#: lib/wfu_constants.php:
|
993 |
msgid "Bulk Actions"
|
994 |
msgstr "Massåtgärder"
|
995 |
|
996 |
-
#: lib/wfu_constants.php:
|
997 |
msgid "Apply"
|
998 |
msgstr "Utför"
|
999 |
|
1000 |
-
#: lib/wfu_constants.php:
|
1001 |
msgid "of "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: lib/wfu_constants.php:
|
1005 |
msgid "Are you sure that you want to cancel the upload?"
|
1006 |
msgstr "Är du säker på att du vill avbryta uppladdningen?"
|
1007 |
|
1008 |
-
#: lib/wfu_constants.php:
|
1009 |
msgid "cancel upload of this file"
|
1010 |
msgstr "avbryt överföringen av denna fil"
|
1011 |
|
1012 |
-
#: lib/wfu_constants.php:
|
1013 |
msgid "Upload in progress"
|
1014 |
msgstr "Ladda upp pågår"
|
1015 |
|
1016 |
-
#: lib/wfu_constants.php:
|
1017 |
msgid "Upload in progress with warnings!"
|
1018 |
msgstr "Ladda upp fil/ladda upp filer"
|
1019 |
|
1020 |
-
#: lib/wfu_constants.php:
|
1021 |
msgid "Upload in progress but some files already failed!"
|
1022 |
msgstr "Uppladdning pågår men vissa filer redan misslyckats!"
|
1023 |
|
1024 |
-
#: lib/wfu_constants.php:
|
1025 |
msgid "Upload in progress but no files uploaded so far!"
|
1026 |
msgstr "Uppladdning pågår men inga filer uppladdade hittills!"
|
1027 |
|
1028 |
-
#: lib/wfu_constants.php:
|
1029 |
msgid "All files uploaded successfully"
|
1030 |
msgstr "Uppladdningen lyckades"
|
1031 |
|
1032 |
-
#: lib/wfu_constants.php:
|
1033 |
msgid "All files uploaded successfully but there are warnings!"
|
1034 |
msgstr "Alla filer som laddas upp korrekt men det finns varningar!"
|
1035 |
|
1036 |
-
#: lib/wfu_constants.php:
|
1037 |
msgid "File uploaded successfully but there are warnings!"
|
1038 |
msgstr "Filen laddas upp korrekt men det finns varningar!"
|
1039 |
|
1040 |
-
#: lib/wfu_constants.php:
|
1041 |
msgid "Some files failed to upload!"
|
1042 |
msgstr "Vissa filer misslyckades att ladda upp!"
|
1043 |
|
1044 |
-
#: lib/wfu_constants.php:
|
1045 |
msgid "All files failed to upload"
|
1046 |
msgstr "Uppladdning misslyckades."
|
1047 |
|
1048 |
-
#: lib/wfu_constants.php:
|
1049 |
msgid "File failed to upload"
|
1050 |
msgstr "Det gick inte att ladda upp filen"
|
1051 |
|
1052 |
-
#: lib/wfu_constants.php:
|
1053 |
msgid "There are no files to upload!"
|
1054 |
msgstr "Släpp filer för att ladda upp"
|
1055 |
|
1056 |
-
#: lib/wfu_constants.php:
|
1057 |
msgid "Test upload message"
|
1058 |
msgstr "Test uppladdning meddelande"
|
1059 |
|
1060 |
-
#: lib/wfu_constants.php:
|
1061 |
msgid "JSON parse warning!"
|
1062 |
msgstr "JSON syntax varning!"
|
1063 |
|
1064 |
-
#: lib/wfu_constants.php:
|
1065 |
msgid "please wait while redirecting..."
|
1066 |
msgstr "Vänta medan omdirigerar..."
|
1067 |
|
1068 |
-
#: lib/wfu_constants.php:
|
1069 |
msgid "Submitting data"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: lib/wfu_constants.php:
|
1073 |
msgid "Data submitted successfully!"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: lib/wfu_constants.php:
|
1077 |
msgid "Data were not submitted!"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: lib/wfu_constants.php:
|
1081 |
msgid "Cancelling upload"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
msgid "Open visual shortcode editor in new window"
|
1086 |
msgstr "Öppna visual kortkod editor i nytt fönster"
|
1087 |
|
1088 |
-
#: lib/wfu_constants.php:
|
1089 |
msgid "loading visual editor"
|
1090 |
msgstr "lastning visuell redigerare"
|
1091 |
|
1092 |
-
#: lib/wfu_constants.php:
|
1093 |
msgid "Clear file list?"
|
1094 |
msgstr "Rensa fil-lista?"
|
1095 |
|
1096 |
-
#: lib/wfu_constants.php:
|
1097 |
msgid "DROP HERE"
|
1098 |
msgstr "Släpp filen här"
|
1099 |
|
1100 |
-
#: lib/wfu_constants.php:
|
1101 |
msgid "record video"
|
1102 |
msgstr "spela in video"
|
1103 |
|
1104 |
-
#: lib/wfu_constants.php:
|
1105 |
msgid "take a picture"
|
1106 |
msgstr "ta en bild"
|
1107 |
|
1108 |
-
#: lib/wfu_constants.php:
|
1109 |
msgid "turn webcam on/off"
|
1110 |
msgstr "vända webcam på/av"
|
1111 |
|
1112 |
-
#: lib/wfu_constants.php:
|
1113 |
msgid "go live again"
|
1114 |
msgstr "gå live igen"
|
1115 |
|
1116 |
-
#: lib/wfu_constants.php:
|
1117 |
msgid "end recording"
|
1118 |
msgstr "avsluta inspelning"
|
1119 |
|
1120 |
-
#: lib/wfu_constants.php:
|
1121 |
msgid "play"
|
1122 |
msgstr "Spela"
|
1123 |
|
1124 |
-
#: lib/wfu_constants.php:
|
1125 |
msgid "pause"
|
1126 |
msgstr "Paus"
|
1127 |
|
1128 |
-
#: lib/wfu_constants.php:
|
1129 |
msgid "go to the beginning"
|
1130 |
msgstr "Gå till början"
|
1131 |
|
1132 |
-
#: lib/wfu_constants.php:
|
1133 |
msgid "go to the end"
|
1134 |
msgstr "Gå till slutet"
|
1135 |
|
1136 |
-
#: lib/wfu_constants.php:
|
1137 |
msgid "Wordpress File Upload Form"
|
1138 |
msgstr "WordPress filöverföringsformuläret"
|
1139 |
|
1140 |
-
#: lib/wfu_constants.php:
|
1141 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1142 |
msgstr "WordPress-fil ladda upp plugin uploader för sidofält"
|
1143 |
|
1144 |
-
#: lib/wfu_constants.php:
|
1145 |
msgid "Upload Files"
|
1146 |
msgstr "Ladda upp filer"
|
1147 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:41+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:41+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: sv\n"
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lib/wfu_constants.php:34
|
108 |
+
msgid ""
|
109 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
110 |
+
"continue!"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
msgid "File"
|
115 |
msgstr "Fil"
|
116 |
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
msgid "Date"
|
119 |
msgstr "Datum"
|
120 |
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
msgid "Size"
|
123 |
msgstr "Storlek"
|
124 |
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
msgid "User"
|
127 |
msgstr "Användare"
|
128 |
|
129 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
130 |
msgid "Page"
|
131 |
msgstr "Sida"
|
132 |
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
msgid "User Fields"
|
135 |
msgstr "Användarfält:"
|
136 |
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
msgid "Download"
|
139 |
msgstr "Ladda ner"
|
140 |
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
msgid "Download this file"
|
143 |
msgstr "Ladda ner denna fil"
|
144 |
|
145 |
+
#: lib/wfu_constants.php:44
|
146 |
msgid "Delete"
|
147 |
msgstr "Radera"
|
148 |
|
149 |
+
#: lib/wfu_constants.php:45
|
150 |
msgid "Delete this file"
|
151 |
msgstr "Ta bort denna fil"
|
152 |
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
msgid "Sort list based on this column"
|
155 |
msgstr "Sortera listan utifrån denna kolumn"
|
156 |
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
msgid "guest"
|
159 |
msgstr "gäst"
|
160 |
|
161 |
+
#: lib/wfu_constants.php:48
|
162 |
msgid "unknown"
|
163 |
msgstr "okänd"
|
164 |
|
165 |
+
#: lib/wfu_constants.php:50
|
166 |
msgid ""
|
167 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
168 |
"attribute."
|
170 |
"Fel. Gick inte att matcha ftp mål filmappen. Kontrollera domänen i 'ftpinfo'-"
|
171 |
"attribut."
|
172 |
|
173 |
+
#: lib/wfu_constants.php:51
|
174 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
175 |
msgstr "Fel. Ogiltig ftp information. Kontrollera 'ftpinfo'-attribut."
|
176 |
|
177 |
+
#: lib/wfu_constants.php:52
|
178 |
msgid ""
|
179 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
180 |
"syntax."
|
182 |
"Fel. Kunde inte packa upp ftp informationen från 'ftpinfo'-attribut. "
|
183 |
"Kontrollera dess syntax."
|
184 |
|
185 |
+
#: lib/wfu_constants.php:53
|
186 |
msgid ""
|
187 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
188 |
"attribute."
|
190 |
"Fel. Gick inte att matcha ftp målfilnamn. Kontrollera domänen i 'ftpinfo'-"
|
191 |
"attribut."
|
192 |
|
193 |
+
#: lib/wfu_constants.php:54
|
194 |
msgid ""
|
195 |
"Error. Could not open source file for ftp upload. Check if file is "
|
196 |
"accessible."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: lib/wfu_constants.php:55
|
200 |
msgid "Error. Could not send data to ftp target file."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: lib/wfu_constants.php:56
|
204 |
msgid ""
|
205 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
206 |
"attribute."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: lib/wfu_constants.php:57
|
210 |
msgid ""
|
211 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
212 |
"'ftpinfo' attribute."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: lib/wfu_constants.php:58
|
216 |
msgid ""
|
217 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
218 |
"supports sftp."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: lib/wfu_constants.php:59
|
222 |
msgid "Error. The web server does not support sftp."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: lib/wfu_constants.php:60
|
226 |
msgid ""
|
227 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
228 |
"preventing the upload of big files.\n"
|
232 |
"överföringen av stora filer.\n"
|
233 |
"PHP direktivet upload_max_filesize gräns är: "
|
234 |
|
235 |
+
#: lib/wfu_constants.php:61
|
236 |
msgid ""
|
237 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
238 |
"upload of big files.\n"
|
242 |
"överföringen av stora filer.\n"
|
243 |
"PHP direktiv max_input_time gräns är:"
|
244 |
|
245 |
+
#: lib/wfu_constants.php:62
|
246 |
msgid ""
|
247 |
"Error. Permission denied to write to target folder.\n"
|
248 |
"Check and correct read/write permissions of target folder."
|
250 |
"Fel. Åtkomst nekad att skriva till målmappen.\n"
|
251 |
"Kontrollera och korrigera Läs-och skrivbehörighet för målmappen."
|
252 |
|
253 |
+
#: lib/wfu_constants.php:63
|
254 |
msgid ""
|
255 |
"Error. This file was rejected because its extension is not correct. Its "
|
256 |
"proper filename is: "
|
258 |
"Fel. Den här filen avvisades eftersom filändelsen inte är korrekt. Dess "
|
259 |
"korrekt filnamn är: "
|
260 |
|
261 |
+
#: lib/wfu_constants.php:64
|
262 |
msgid ""
|
263 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
264 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
268 |
"Service attack, så filen avslogs. Kontrollera loggen uppladdning för "
|
269 |
"misstänkt beteende."
|
270 |
|
271 |
+
#: lib/wfu_constants.php:65
|
272 |
msgid ""
|
273 |
"File not uploaded in order to prevent overflow of the website. Please "
|
274 |
"contact administrator."
|
276 |
"Filen inte laddas upp för att förhindra spill av webbplatsen. Kontakta "
|
277 |
"administratören."
|
278 |
|
279 |
+
#: lib/wfu_constants.php:66
|
280 |
msgid "Target folder doesn't exist."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: lib/wfu_constants.php:67
|
284 |
msgid "Upload failed! Missing a temporary folder."
|
285 |
msgstr "Det gick inte att ladda upp! Saknas en tillfällig mapp."
|
286 |
|
287 |
+
#: lib/wfu_constants.php:68
|
288 |
msgid "Upload failed! Permission denied to write to target folder."
|
289 |
msgstr "Det gick inte att ladda upp! Åtkomst nekad att skriva till målmappen."
|
290 |
|
291 |
+
#: lib/wfu_constants.php:69
|
292 |
msgid "File not allowed."
|
293 |
msgstr "Filtyp inte tillåten."
|
294 |
|
295 |
+
#: lib/wfu_constants.php:70
|
296 |
msgid "File is suspicious and was rejected."
|
297 |
msgstr "Filen är misstänksam och avvisades."
|
298 |
|
299 |
+
#: lib/wfu_constants.php:71
|
300 |
msgid "The uploaded file exceeds the file size limit."
|
301 |
msgstr "Den uppladdade filen överskrider filstorleksgränsen."
|
302 |
|
303 |
+
#: lib/wfu_constants.php:72
|
304 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
305 |
msgstr ""
|
306 |
"Den uppladdade filen överskrider 2GB och stöds inte av den här servern."
|
307 |
|
308 |
+
#: lib/wfu_constants.php:73
|
309 |
msgid ""
|
310 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
311 |
"Please contact the administrator."
|
313 |
"Det gick inte att ladda upp! Den uppladdade filen överskrider "
|
314 |
"Filstorleksgränsen för servern. Vänligen kontakta administratören."
|
315 |
|
316 |
+
#: lib/wfu_constants.php:74
|
317 |
msgid ""
|
318 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
319 |
"server. Please contact the administrator."
|
321 |
"Det gick inte att ladda upp! Varaktigheten av uppladdningen överskridit "
|
322 |
"tidsgränsen för servern. Vänligen kontakta administratören."
|
323 |
|
324 |
+
#: lib/wfu_constants.php:75
|
325 |
msgid ""
|
326 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
327 |
"was specified in the HTML form."
|
328 |
msgstr ""
|
329 |
"Den uppladdade filen överstiger MAX_FILE_SIZE som angavs i HTML-formuläret."
|
330 |
|
331 |
+
#: lib/wfu_constants.php:76
|
332 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
333 |
msgstr ""
|
334 |
"Det gick inte att ladda upp! Den uppladdade filen laddades bara delvis."
|
335 |
|
336 |
+
#: lib/wfu_constants.php:77
|
337 |
msgid "Upload failed! No file was uploaded."
|
338 |
msgstr "Uppladdning misslyckades."
|
339 |
|
340 |
+
#: lib/wfu_constants.php:78
|
341 |
msgid "Upload failed! Failed to write file to disk."
|
342 |
msgstr "Det gick inte att ladda upp! Misslyckades att skriva fil till disk."
|
343 |
|
344 |
+
#: lib/wfu_constants.php:79
|
345 |
msgid ""
|
346 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
347 |
"administrator."
|
349 |
"Det gick inte att ladda upp! Fel uppstod när flytta temporär fil. Kontakta "
|
350 |
"administratören."
|
351 |
|
352 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
353 |
msgid "Upload cancelled!"
|
354 |
msgstr "Ladda upp fil/ladda upp filer"
|
355 |
|
356 |
+
#: lib/wfu_constants.php:81
|
357 |
msgid ""
|
358 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
359 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
363 |
"ger inte ett sätt att fastställa vilka förlängning orsakade filuppladdning "
|
364 |
"att stoppa; Granska listan över inlästa tillägg med phpinfo() kan hjälpa."
|
365 |
|
366 |
+
#: lib/wfu_constants.php:82
|
367 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
368 |
msgstr ""
|
369 |
"Det gick inte att ladda upp! Fel uppstod när attemting Ladda upp filen."
|
370 |
|
371 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
372 |
msgid "Upload failed!"
|
373 |
msgstr "Uppladdning misslyckades"
|
374 |
|
375 |
+
#: lib/wfu_constants.php:84
|
376 |
msgid "No file!"
|
377 |
msgstr "Ingen fil"
|
378 |
|
379 |
+
#: lib/wfu_constants.php:85
|
380 |
msgid ""
|
381 |
"Upload failed! The upload has been canceled by the user or the browser "
|
382 |
"dropped the connection."
|
384 |
"Det gick inte att ladda upp! Uppladdningen har avbrutits av användaren eller "
|
385 |
"webbläsaren tappade anslutningen."
|
386 |
|
387 |
+
#: lib/wfu_constants.php:86
|
388 |
msgid "Upload failed! Unknown error."
|
389 |
msgstr "Det gick inte att ladda upp! Okänt fel."
|
390 |
|
391 |
+
#: lib/wfu_constants.php:87
|
392 |
msgid "Please contact the administrator."
|
393 |
msgstr "Vänligen kontakta administratören."
|
394 |
|
395 |
+
#: lib/wfu_constants.php:88
|
396 |
msgid "No result from remote server!"
|
397 |
msgstr "Inget resultat från fjärrservern!"
|
398 |
|
399 |
+
#: lib/wfu_constants.php:89
|
400 |
msgid " but with warnings"
|
401 |
msgstr " men med varningar"
|
402 |
|
403 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
404 |
msgid "Warning: JSON parse error."
|
405 |
msgstr "Varning: JSON parse error."
|
406 |
|
407 |
+
#: lib/wfu_constants.php:91
|
408 |
msgid ""
|
409 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
410 |
"not be parsed."
|
412 |
"Ladda upp parametrarna för denna fil, passerade som JSON-sträng till "
|
413 |
"hanteraren, kunde inte parsas."
|
414 |
|
415 |
+
#: lib/wfu_constants.php:93
|
416 |
msgid ""
|
417 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
418 |
msgstr ""
|
419 |
"UploadStates, passerade som JSON-sträng till hanteraren, kunde inte parsas."
|
420 |
|
421 |
+
#: lib/wfu_constants.php:94
|
422 |
msgid ""
|
423 |
"Redirection to classic form functionality occurred due to unknown error."
|
424 |
msgstr ""
|
425 |
"Omdirigering till klassiska formulärfunktioner uppstod på grund av okänt fel."
|
426 |
|
427 |
+
#: lib/wfu_constants.php:95
|
428 |
msgid ""
|
429 |
"Redirection to classic form functionality occurred because AJAX is not "
|
430 |
"supported."
|
432 |
"Omdirigering till klassiska formulärfunktioner uppstod eftersom AJAX inte "
|
433 |
"stöds."
|
434 |
|
435 |
+
#: lib/wfu_constants.php:96
|
436 |
msgid ""
|
437 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
438 |
"supported."
|
440 |
"Omdirigering till klassiska formulärfunktioner uppstod eftersom HTML5 inte "
|
441 |
"stöds."
|
442 |
|
443 |
+
#: lib/wfu_constants.php:97
|
444 |
msgid ""
|
445 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
446 |
msgstr ""
|
447 |
"Omdirigering till klassiska formulärfunktioner uppstod på grund av JSON "
|
448 |
"parse error."
|
449 |
|
450 |
+
#: lib/wfu_constants.php:98
|
451 |
msgid "Please enable popup windows from the browser's settings!"
|
452 |
msgstr "Vänligen aktivera popupfönster från webbläsarens inställningar!"
|
453 |
|
454 |
+
#: lib/wfu_constants.php:99
|
455 |
msgid "cannot be empty!"
|
456 |
msgstr "kan inte vara tom!"
|
457 |
|
458 |
+
#: lib/wfu_constants.php:100
|
459 |
msgid "number not valid!"
|
460 |
msgstr "nummer inte giltig!"
|
461 |
|
462 |
+
#: lib/wfu_constants.php:101
|
463 |
msgid "email not valid!"
|
464 |
msgstr "E-postadressen är inte giltig!"
|
465 |
|
466 |
+
#: lib/wfu_constants.php:102
|
467 |
msgid "emails do not match!"
|
468 |
msgstr "e-post stämmer inte!"
|
469 |
|
470 |
+
#: lib/wfu_constants.php:103
|
471 |
msgid "no base email field in group!"
|
472 |
msgstr "ingen bas e-fältet i gruppen!"
|
473 |
|
474 |
+
#: lib/wfu_constants.php:104
|
475 |
msgid "passwords do not match!"
|
476 |
msgstr "De två lösenorden matchar inte."
|
477 |
|
478 |
+
#: lib/wfu_constants.php:105
|
479 |
msgid "no base password field in group!"
|
480 |
msgstr "ingen bas lösenordsfältet i grupp!"
|
481 |
|
482 |
+
#: lib/wfu_constants.php:106
|
483 |
msgid "checkbox unchecked!"
|
484 |
msgstr "kryssrutan avmarkerad!"
|
485 |
|
486 |
+
#: lib/wfu_constants.php:107
|
487 |
msgid "no option selected!"
|
488 |
msgstr "Inget alternativ valt"
|
489 |
|
490 |
+
#: lib/wfu_constants.php:108
|
491 |
msgid "no item selected!"
|
492 |
msgstr "Inget objekt valt."
|
493 |
|
494 |
+
#: lib/wfu_constants.php:109
|
495 |
msgid ""
|
496 |
"There are more than one instances of the plugin in this page with the same "
|
497 |
"id. Please change it."
|
499 |
"I området i närheten finns det flera instanser av plugin i sidan med samma "
|
500 |
"id. Ändra det."
|
501 |
|
502 |
+
#: lib/wfu_constants.php:110
|
503 |
msgid ""
|
504 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
505 |
"the page."
|
507 |
"Kan inte redigera kortkoden eftersom sidan har ändrats. Vänligen ladda om "
|
508 |
"sidan."
|
509 |
|
510 |
+
#: lib/wfu_constants.php:111
|
511 |
msgid "Your browser does not support webcam capture!"
|
512 |
msgstr "Din webbläsare stöder inte webbkamerainspelning!"
|
513 |
|
514 |
+
#: lib/wfu_constants.php:112
|
515 |
msgid "Your browser does not support video recording from the webcam!"
|
516 |
msgstr "Din webbläsare stöder inte videoinspelning från webbkameran!"
|
517 |
|
518 |
+
#: lib/wfu_constants.php:113
|
519 |
msgid "No video was recorded!"
|
520 |
msgstr "Ingen video spelades in!"
|
521 |
|
522 |
+
#: lib/wfu_constants.php:114
|
523 |
msgid ""
|
524 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
525 |
"or use RecaptchaV2 (no account)."
|
527 |
"FEL: Captcha stöds inte! Du har en gammal PHP-version. Uppgradera din PHP "
|
528 |
"eller använda RecaptchaV2 (inget konto)."
|
529 |
|
530 |
+
#: lib/wfu_constants.php:115
|
531 |
msgid ""
|
532 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
533 |
"notify administrator."
|
535 |
"FEL: Endast en koduppladdning av RecaptchaV1 kan finnas på samma sida. "
|
536 |
"Vänligen meddela administratören."
|
537 |
|
538 |
+
#: lib/wfu_constants.php:116
|
539 |
msgid ""
|
540 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
541 |
"use RecaptchaV1 (no account)."
|
543 |
"FEL: Endast en koduppladdning av RecaptchaV1 kan finnas på samma sida. "
|
544 |
"Vänligen använd RecaptchaV1 (inget konto)."
|
545 |
|
546 |
+
#: lib/wfu_constants.php:117
|
547 |
msgid "ERROR: No site key. Please contact administrator!"
|
548 |
msgstr "FEL: Ingen webbplats nyckel. Vänligen kontakta administratören!"
|
549 |
|
550 |
+
#: lib/wfu_constants.php:118
|
551 |
msgid ""
|
552 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
553 |
"define Google Recaptcha keys."
|
555 |
"FEL: Ingen webbplats nyckel definierad! Vänligen gå till plugin "
|
556 |
"inställningar i kontrollpanelen för att definiera Google Recaptcha nycklar."
|
557 |
|
558 |
+
#: lib/wfu_constants.php:119
|
559 |
msgid "Bad captcha image!"
|
560 |
msgstr "Dåliga captcha-bild!"
|
561 |
|
562 |
+
#: lib/wfu_constants.php:120
|
563 |
msgid "No input!"
|
564 |
msgstr ""
|
565 |
"aria-required är en form input WAI ARIA tag. Screen readers använder detta "
|
569 |
"snart att accepteras av HTML validator, så du kan utan risk ignorera de "
|
570 |
"valideringsfel som den kommer att orsaka."
|
571 |
|
572 |
+
#: lib/wfu_constants.php:121
|
573 |
msgid "Captcha not completed!"
|
574 |
msgstr "CAPTCHA inte klar!"
|
575 |
|
576 |
+
#: lib/wfu_constants.php:122
|
577 |
msgid "Wrong captcha!"
|
578 |
msgstr "Fel captcha!"
|
579 |
|
580 |
+
#: lib/wfu_constants.php:123
|
581 |
msgid "Error refreshing captcha!"
|
582 |
msgstr "Fel uppdaterar captcha!"
|
583 |
|
584 |
+
#: lib/wfu_constants.php:124
|
585 |
msgid "Unknown captcha error!"
|
586 |
msgstr "Okänd captcha fel!"
|
587 |
|
588 |
+
#: lib/wfu_constants.php:125
|
589 |
msgid "Captcha not supported by your browser!"
|
590 |
msgstr "CAPTCHA stöds inte av din webbläsare!"
|
591 |
|
592 |
+
#: lib/wfu_constants.php:126
|
593 |
msgid "the secret parameter is missing"
|
594 |
msgstr "den hemliga parametern saknas"
|
595 |
|
596 |
+
#: lib/wfu_constants.php:127
|
597 |
msgid "the secret parameter is invalid or malformed"
|
598 |
msgstr "hemliga parametern är ogiltig eller felaktig"
|
599 |
|
600 |
+
#: lib/wfu_constants.php:128
|
601 |
msgid "the response parameter is missing"
|
602 |
msgstr "Parametern saknas."
|
603 |
|
604 |
+
#: lib/wfu_constants.php:129
|
605 |
msgid "the response parameter is invalid or malformed"
|
606 |
msgstr "Parameterns svar är ogiltigt eller har felaktigt format."
|
607 |
|
608 |
+
#: lib/wfu_constants.php:130
|
609 |
msgid "Please do not use drag drop due to an internal problem."
|
610 |
msgstr "Vänligen Använd inte dra på grund av ett internt problem."
|
611 |
|
612 |
+
#: lib/wfu_constants.php:131
|
613 |
#, php-format
|
614 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
615 |
msgstr "Fel under segmenterad uppladdning. Unikt ID saknas i segmentet %d"
|
616 |
|
617 |
+
#: lib/wfu_constants.php:132
|
618 |
msgid "Chunked upload is not allowed!"
|
619 |
msgstr "Segmentuppladdning är inte tillåtet!"
|
620 |
|
621 |
+
#: lib/wfu_constants.php:133
|
622 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
623 |
msgstr "Gruppuppladdning avbröts på grund av fel i tidigare segment!"
|
624 |
|
625 |
+
#: lib/wfu_constants.php:134
|
626 |
msgid "Chunked upload failed, final file could not be created!"
|
627 |
msgstr "Uppladdningen av segmentet misslyckades, filen kunde inte skapas!"
|
628 |
|
629 |
+
#: lib/wfu_constants.php:135
|
630 |
#, php-format
|
631 |
msgid "Could not write file chuck to destination on chunk %d"
|
632 |
msgstr "Kunde inte skriva filensegmentet till destination på segment %d"
|
633 |
|
634 |
+
#: lib/wfu_constants.php:136
|
635 |
#, php-format
|
636 |
msgid "Could not enlarge destination file on chunk %d"
|
637 |
msgstr "Kunde inte förstora målfilen på segment %d"
|
638 |
|
639 |
+
#: lib/wfu_constants.php:137
|
640 |
#, php-format
|
641 |
msgid "Could not open file handles on chunk %d"
|
642 |
msgstr "Kunde inte öppna filreferenser på segment %d"
|
643 |
|
644 |
+
#: lib/wfu_constants.php:138
|
645 |
msgid "You are not allowed to download this file!"
|
646 |
msgstr "Du har inte tillgång till den här filen."
|
647 |
|
648 |
+
#: lib/wfu_constants.php:139
|
649 |
msgid "File does not exist!"
|
650 |
msgstr "Filen finns inte"
|
651 |
|
652 |
+
#: lib/wfu_constants.php:140
|
653 |
msgid "Could not download file!"
|
654 |
msgstr "Kunde inte ladda ner fil!"
|
655 |
|
656 |
+
#: lib/wfu_constants.php:141
|
657 |
msgid "You are not allowed to delete this file!"
|
658 |
msgstr "Du får inte ta bort denna fil!"
|
659 |
|
660 |
+
#: lib/wfu_constants.php:142
|
661 |
msgid "File was not deleted!"
|
662 |
msgstr "Filen var inte bort!"
|
663 |
|
664 |
+
#: lib/wfu_constants.php:143
|
665 |
msgid "No file was deleted!"
|
666 |
msgstr "Ingen fil har tagits bort!"
|
667 |
|
668 |
+
#: lib/wfu_constants.php:144
|
669 |
msgid "Some files were not deleted!"
|
670 |
msgstr "Vissa filer raderas inte!"
|
671 |
|
672 |
+
#: lib/wfu_constants.php:146
|
673 |
msgid "Upload skipped! File already exists."
|
674 |
msgstr "Ladda upp överhoppade! Filen finns redan."
|
675 |
|
676 |
+
#: lib/wfu_constants.php:147
|
677 |
msgid "The extension of the file does not match its contents."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: lib/wfu_constants.php:148
|
681 |
msgid ""
|
682 |
"Upload succeeded but the file is suspicious because its contents do not "
|
683 |
"match its extension. Its proper filename is: "
|
685 |
"Ladda upp lyckades men filen är misstänksam eftersom innehållet inte matchar "
|
686 |
"dess förlängning. Dess korrekt filnamn är:"
|
687 |
|
688 |
+
#: lib/wfu_constants.php:149
|
689 |
msgid "No files have been selected!"
|
690 |
msgstr "Inga filer har valts!"
|
691 |
|
692 |
+
#: lib/wfu_constants.php:150
|
693 |
msgid "Please complete the consent question before continuing the upload!"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: lib/wfu_constants.php:151
|
697 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
698 |
msgstr ""
|
699 |
"WPFilebase Plugin uppdaterad inte eftersom det fanns inga filer som laddas "
|
700 |
"upp."
|
701 |
|
702 |
+
#: lib/wfu_constants.php:152
|
703 |
msgid "Notification email was not sent because there were no files uploaded."
|
704 |
msgstr ""
|
705 |
"E-postmeddelande skickades inte eftersom det fanns inga filer som laddas upp."
|
706 |
|
707 |
+
#: lib/wfu_constants.php:153
|
708 |
msgid ""
|
709 |
"Notification email was not sent because no recipients were defined. Please "
|
710 |
"check notifyrecipients attribute in the shortcode."
|
712 |
"E-postmeddelande skickades inte eftersom inga mottagare definierades. "
|
713 |
"Vänligen kontrollera notifyrecipients attribut i kortkod."
|
714 |
|
715 |
+
#: lib/wfu_constants.php:154
|
716 |
msgid ""
|
717 |
"Notification email was not sent due to an error. Please check "
|
718 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
720 |
"E-postmeddelande skickades inte på grund av ett fel. Kontrollera "
|
721 |
"notifyrecipients, notifysubject och notifymessage attribut för fel."
|
722 |
|
723 |
+
#: lib/wfu_constants.php:155
|
724 |
msgid ""
|
725 |
"Redirection not executed because redirection link is empty. Please check "
|
726 |
"redirectlink attribute."
|
728 |
"Omdirigering inte köras eftersom omdirigering länk är tom. Vänligen "
|
729 |
"kontrollera redirectlink attribut."
|
730 |
|
731 |
+
#: lib/wfu_constants.php:156
|
732 |
msgid ""
|
733 |
"Redirection not executed because not all files were successfully uploaded."
|
734 |
msgstr "Omdirigering av kördes inte eftersom inte alla filer har laddats."
|
735 |
|
736 |
+
#: lib/wfu_constants.php:157
|
737 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
738 |
msgstr "Potentiell Denial-Of-Service Attack på {SIDA}"
|
739 |
|
740 |
+
#: lib/wfu_constants.php:158
|
741 |
msgid ""
|
742 |
"Hello admin\n"
|
743 |
"\n"
|
773 |
"\n"
|
774 |
"Tack"
|
775 |
|
776 |
+
#: lib/wfu_constants.php:159
|
777 |
msgid ""
|
778 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
779 |
"details please contact info@iptanus.com."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: lib/wfu_constants.php:160
|
783 |
msgid ""
|
784 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
785 |
"plugin functions. Please read this :article: for resolution."
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: lib/wfu_constants.php:162
|
789 |
msgid ""
|
790 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
791 |
"message persists, contact administrator."
|
793 |
"Det gick inte att lägga till kortkoden till denna sida/inlägget. Vänligen "
|
794 |
"försök igen. Om meddelandet kvarstår, kontakta administratören."
|
795 |
|
796 |
+
#: lib/wfu_constants.php:163
|
797 |
msgid ""
|
798 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
799 |
"again to edit the shortcode."
|
801 |
"Det gick inte att redigera kortkod eftersom innehållet på sidan har ändrats. "
|
802 |
"Försök igen att redigera kortkod."
|
803 |
|
804 |
+
#: lib/wfu_constants.php:164
|
805 |
msgid ""
|
806 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
807 |
"again to delete it."
|
809 |
"Kunde inte ta bort kortkod eftersom innehållet på sidan är ändrat. Försök "
|
810 |
"att ta bort den igen."
|
811 |
|
812 |
+
#: lib/wfu_constants.php:165
|
813 |
msgid ""
|
814 |
"The page containing the shortcode has been modified and it is no longer "
|
815 |
"valid. Please go back to reload the shortcode."
|
817 |
"Sidan som innehåller kortkod har ändrats och det är inte längre giltig. Gå "
|
818 |
"tillbaka till Ladda kortkod."
|
819 |
|
820 |
+
#: lib/wfu_constants.php:166
|
821 |
msgid ""
|
822 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
823 |
"back to reload the shortcode."
|
825 |
"Det gick inte att uppdatera kortkod eftersom innehållet på sidan ändrats. Gå "
|
826 |
"tillbaka till Ladda kortkod."
|
827 |
|
828 |
+
#: lib/wfu_constants.php:167
|
829 |
msgid ""
|
830 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
831 |
"go back and reload the shortcode."
|
833 |
"Det gick inte att uppdatera kortkod. Vänligen försök igen. Om problemet "
|
834 |
"kvarstår, gå tillbaka och ladda kortkod."
|
835 |
|
836 |
+
#: lib/wfu_constants.php:169
|
837 |
msgid "This is a test message"
|
838 |
msgstr "Testmeddelande skickat"
|
839 |
|
840 |
+
#: lib/wfu_constants.php:170
|
841 |
msgid "This is a test administrator message"
|
842 |
msgstr "Detta är ett testmeddelande för administratör"
|
843 |
|
844 |
+
#: lib/wfu_constants.php:171
|
845 |
msgid "File testfile 1 under test"
|
846 |
msgstr "Fil testfile 1 under test"
|
847 |
|
848 |
+
#: lib/wfu_constants.php:172
|
849 |
msgid "File testfile 1 message"
|
850 |
msgstr "Fil testfile 1 meddelande"
|
851 |
|
852 |
+
#: lib/wfu_constants.php:173
|
853 |
msgid "File testfile 1 administrator message"
|
854 |
msgstr "Fil testfile 1 administratör meddelande"
|
855 |
|
856 |
+
#: lib/wfu_constants.php:174
|
857 |
msgid "File testfile 2 under test"
|
858 |
msgstr "Fil testfile 2 under test"
|
859 |
|
860 |
+
#: lib/wfu_constants.php:175
|
861 |
msgid "File testfile 2 message"
|
862 |
msgstr "Fil testfile 2 meddelande"
|
863 |
|
864 |
+
#: lib/wfu_constants.php:176
|
865 |
msgid "File testfile 2 administrator message"
|
866 |
msgstr "Fil testfile 2 administratör meddelande"
|
867 |
|
868 |
+
#: lib/wfu_constants.php:178
|
869 |
msgid ""
|
870 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
871 |
"current user."
|
873 |
"Infoga variabeln %userid% inuti texten. Det kommer att ersättas av id för "
|
874 |
"den aktuella användaren."
|
875 |
|
876 |
+
#: lib/wfu_constants.php:179
|
877 |
msgid ""
|
878 |
"Insert variable %username% inside text. It will be replaced by the username "
|
879 |
"of the current user."
|
881 |
"Infoga miljövariabeln %username% inuti texten. Det kommer att ersättas av "
|
882 |
"användarnamnet för den aktuella användaren."
|
883 |
|
884 |
+
#: lib/wfu_constants.php:180
|
885 |
msgid ""
|
886 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
887 |
"the current user."
|
889 |
"Infoga variabeln %useremail% inuti texten. Det kommer att ersättas av e-post "
|
890 |
"för den aktuella användaren."
|
891 |
|
892 |
+
#: lib/wfu_constants.php:181
|
893 |
msgid ""
|
894 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
895 |
"of the uploaded file."
|
897 |
"Infoga variabeln %filnamn% inuti texten. Det kommer att ersättas av "
|
898 |
"filnamnet för den överförda filen."
|
899 |
|
900 |
+
#: lib/wfu_constants.php:182
|
901 |
msgid ""
|
902 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
903 |
"filepath of the uploaded file."
|
905 |
"Infoga variabeln %filepath% inuti texten. Det kommer att ersättas av den "
|
906 |
"fullständiga sökvägen för den överförda filen."
|
907 |
|
908 |
+
#: lib/wfu_constants.php:183
|
909 |
msgid ""
|
910 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
911 |
"the website."
|
913 |
"Infoga variabeln %blogid% inuti texten. Det kommer att ersättas av blogg id "
|
914 |
"för webbplatsen."
|
915 |
|
916 |
+
#: lib/wfu_constants.php:184
|
917 |
msgid ""
|
918 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
919 |
"current page."
|
921 |
"Infoga variabeln %pageid% inuti texten. Det kommer att ersättas av id för "
|
922 |
"den aktuella sidan."
|
923 |
|
924 |
+
#: lib/wfu_constants.php:185
|
925 |
msgid ""
|
926 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
927 |
"the current page."
|
929 |
"Infoga variabeln %pagetitle% inuti texten. Det kommer att ersättas av titeln "
|
930 |
"på den aktuella sidan."
|
931 |
|
932 |
+
#: lib/wfu_constants.php:186
|
933 |
msgid ""
|
934 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
935 |
"drop-down list. It will be replaced by the value that the user entered in "
|
939 |
"down listan. Det kommer att ersättas av det värde som användaren har angett "
|
940 |
"i fältet."
|
941 |
|
942 |
+
#: lib/wfu_constants.php:187
|
943 |
msgid "Insert variable %n% inside text to denote a line change."
|
944 |
msgstr "Infoga variabeln %n% inuti texten betecknar en radändring."
|
945 |
|
946 |
+
#: lib/wfu_constants.php:189
|
947 |
+
#, php-format
|
948 |
+
msgid "File %filename% uploaded successfully but not saved"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: lib/wfu_constants.php:190
|
952 |
msgid "Test Mode"
|
953 |
msgstr "Testmod"
|
954 |
|
955 |
+
#: lib/wfu_constants.php:191
|
956 |
msgid "select dir..."
|
957 |
msgstr "Välj katalog"
|
958 |
|
959 |
+
#: lib/wfu_constants.php:192
|
960 |
msgid "type dir"
|
961 |
msgstr "Typ"
|
962 |
|
963 |
+
#: lib/wfu_constants.php:193
|
964 |
msgid "Upload path: %filepath%"
|
965 |
msgstr "Ladda sökväg: %filepath%"
|
966 |
|
967 |
+
#: lib/wfu_constants.php:194
|
968 |
msgid "Failed upload path: %filepath%"
|
969 |
msgstr "Misslyckades att ladda upp sökväg: %filepath%"
|
970 |
|
971 |
+
#: lib/wfu_constants.php:195
|
972 |
msgid " (required)"
|
973 |
msgstr "(obligatoriskt)"
|
974 |
|
975 |
+
#: lib/wfu_constants.php:196
|
976 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
977 |
msgstr "Filer överförs. Är du säker på att du vill stänga sidan?"
|
978 |
|
979 |
+
#: lib/wfu_constants.php:197
|
980 |
msgid "checking captcha..."
|
981 |
msgstr "kontrollerar captcha..."
|
982 |
|
983 |
+
#: lib/wfu_constants.php:198
|
984 |
msgid "refreshing..."
|
985 |
msgstr "Förnyar..."
|
986 |
|
987 |
+
#: lib/wfu_constants.php:199
|
988 |
msgid "correct captcha"
|
989 |
msgstr "rätt captcha"
|
990 |
|
991 |
+
#: lib/wfu_constants.php:200
|
992 |
msgid "click to continue the upload"
|
993 |
msgstr "klicka för att fortsätta uppladdningen"
|
994 |
|
995 |
+
#: lib/wfu_constants.php:201
|
996 |
msgid "Are you sure you want to delete this file?"
|
997 |
msgstr "Är du säker på att du vill radera denna fil?"
|
998 |
|
999 |
+
#: lib/wfu_constants.php:202
|
1000 |
msgid "Are you sure you want to delete these files?"
|
1001 |
msgstr "Är du säker på att du vill radera dessa filer?"
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:203
|
1004 |
msgid "Bulk Actions"
|
1005 |
msgstr "Massåtgärder"
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:204
|
1008 |
msgid "Apply"
|
1009 |
msgstr "Utför"
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:206
|
1012 |
msgid "of "
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:207
|
1016 |
msgid "Are you sure that you want to cancel the upload?"
|
1017 |
msgstr "Är du säker på att du vill avbryta uppladdningen?"
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:208
|
1020 |
msgid "cancel upload of this file"
|
1021 |
msgstr "avbryt överföringen av denna fil"
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:209
|
1024 |
msgid "Upload in progress"
|
1025 |
msgstr "Ladda upp pågår"
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:210
|
1028 |
msgid "Upload in progress with warnings!"
|
1029 |
msgstr "Ladda upp fil/ladda upp filer"
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:211
|
1032 |
msgid "Upload in progress but some files already failed!"
|
1033 |
msgstr "Uppladdning pågår men vissa filer redan misslyckats!"
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:212
|
1036 |
msgid "Upload in progress but no files uploaded so far!"
|
1037 |
msgstr "Uppladdning pågår men inga filer uppladdade hittills!"
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:213
|
1040 |
msgid "All files uploaded successfully"
|
1041 |
msgstr "Uppladdningen lyckades"
|
1042 |
|
1043 |
+
#: lib/wfu_constants.php:214
|
1044 |
msgid "All files uploaded successfully but there are warnings!"
|
1045 |
msgstr "Alla filer som laddas upp korrekt men det finns varningar!"
|
1046 |
|
1047 |
+
#: lib/wfu_constants.php:215
|
1048 |
msgid "File uploaded successfully but there are warnings!"
|
1049 |
msgstr "Filen laddas upp korrekt men det finns varningar!"
|
1050 |
|
1051 |
+
#: lib/wfu_constants.php:216
|
1052 |
msgid "Some files failed to upload!"
|
1053 |
msgstr "Vissa filer misslyckades att ladda upp!"
|
1054 |
|
1055 |
+
#: lib/wfu_constants.php:217
|
1056 |
msgid "All files failed to upload"
|
1057 |
msgstr "Uppladdning misslyckades."
|
1058 |
|
1059 |
+
#: lib/wfu_constants.php:218
|
1060 |
msgid "File failed to upload"
|
1061 |
msgstr "Det gick inte att ladda upp filen"
|
1062 |
|
1063 |
+
#: lib/wfu_constants.php:219
|
1064 |
msgid "There are no files to upload!"
|
1065 |
msgstr "Släpp filer för att ladda upp"
|
1066 |
|
1067 |
+
#: lib/wfu_constants.php:220
|
1068 |
msgid "Test upload message"
|
1069 |
msgstr "Test uppladdning meddelande"
|
1070 |
|
1071 |
+
#: lib/wfu_constants.php:221
|
1072 |
msgid "JSON parse warning!"
|
1073 |
msgstr "JSON syntax varning!"
|
1074 |
|
1075 |
+
#: lib/wfu_constants.php:222
|
1076 |
msgid "please wait while redirecting..."
|
1077 |
msgstr "Vänta medan omdirigerar..."
|
1078 |
|
1079 |
+
#: lib/wfu_constants.php:224
|
1080 |
msgid "Submitting data"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: lib/wfu_constants.php:225
|
1084 |
msgid "Data submitted successfully!"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: lib/wfu_constants.php:226
|
1088 |
msgid "Data were not submitted!"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: lib/wfu_constants.php:227
|
1092 |
msgid "Cancelling upload"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: lib/wfu_constants.php:229
|
1096 |
+
msgid "Upload succeeded!"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: lib/wfu_constants.php:230
|
1100 |
+
msgid "Upload completed but no files were saved!"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: lib/wfu_constants.php:231
|
1104 |
+
msgid "File was not saved due to personal data policy!"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: lib/wfu_constants.php:232
|
1108 |
msgid "Open visual shortcode editor in new window"
|
1109 |
msgstr "Öppna visual kortkod editor i nytt fönster"
|
1110 |
|
1111 |
+
#: lib/wfu_constants.php:233
|
1112 |
msgid "loading visual editor"
|
1113 |
msgstr "lastning visuell redigerare"
|
1114 |
|
1115 |
+
#: lib/wfu_constants.php:234
|
1116 |
msgid "Clear file list?"
|
1117 |
msgstr "Rensa fil-lista?"
|
1118 |
|
1119 |
+
#: lib/wfu_constants.php:235
|
1120 |
msgid "DROP HERE"
|
1121 |
msgstr "Släpp filen här"
|
1122 |
|
1123 |
+
#: lib/wfu_constants.php:237
|
1124 |
msgid "record video"
|
1125 |
msgstr "spela in video"
|
1126 |
|
1127 |
+
#: lib/wfu_constants.php:238
|
1128 |
msgid "take a picture"
|
1129 |
msgstr "ta en bild"
|
1130 |
|
1131 |
+
#: lib/wfu_constants.php:239
|
1132 |
msgid "turn webcam on/off"
|
1133 |
msgstr "vända webcam på/av"
|
1134 |
|
1135 |
+
#: lib/wfu_constants.php:240
|
1136 |
msgid "go live again"
|
1137 |
msgstr "gå live igen"
|
1138 |
|
1139 |
+
#: lib/wfu_constants.php:241
|
1140 |
msgid "end recording"
|
1141 |
msgstr "avsluta inspelning"
|
1142 |
|
1143 |
+
#: lib/wfu_constants.php:242
|
1144 |
msgid "play"
|
1145 |
msgstr "Spela"
|
1146 |
|
1147 |
+
#: lib/wfu_constants.php:243
|
1148 |
msgid "pause"
|
1149 |
msgstr "Paus"
|
1150 |
|
1151 |
+
#: lib/wfu_constants.php:244
|
1152 |
msgid "go to the beginning"
|
1153 |
msgstr "Gå till början"
|
1154 |
|
1155 |
+
#: lib/wfu_constants.php:245
|
1156 |
msgid "go to the end"
|
1157 |
msgstr "Gå till slutet"
|
1158 |
|
1159 |
+
#: lib/wfu_constants.php:247
|
1160 |
msgid "Wordpress File Upload Form"
|
1161 |
msgstr "WordPress filöverföringsformuläret"
|
1162 |
|
1163 |
+
#: lib/wfu_constants.php:248
|
1164 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1165 |
msgstr "WordPress-fil ladda upp plugin uploader för sidofält"
|
1166 |
|
1167 |
+
#: lib/wfu_constants.php:249
|
1168 |
msgid "Upload Files"
|
1169 |
msgstr "Ladda upp filer"
|
1170 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -104,113 +104,119 @@ msgid ""
|
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "File"
|
109 |
msgstr "文件"
|
110 |
|
111 |
-
#: lib/wfu_constants.php:
|
112 |
msgid "Date"
|
113 |
msgstr "日期"
|
114 |
|
115 |
-
#: lib/wfu_constants.php:
|
116 |
msgid "Size"
|
117 |
msgstr "大小"
|
118 |
|
119 |
-
#: lib/wfu_constants.php:
|
120 |
msgid "User"
|
121 |
msgstr "用户"
|
122 |
|
123 |
-
#: lib/wfu_constants.php:
|
124 |
msgid "Page"
|
125 |
msgstr "页面"
|
126 |
|
127 |
-
#: lib/wfu_constants.php:
|
128 |
msgid "User Fields"
|
129 |
msgstr "用户区域"
|
130 |
|
131 |
-
#: lib/wfu_constants.php:
|
132 |
msgid "Download"
|
133 |
msgstr "下载"
|
134 |
|
135 |
-
#: lib/wfu_constants.php:
|
136 |
msgid "Download this file"
|
137 |
msgstr "下载这个文件"
|
138 |
|
139 |
-
#: lib/wfu_constants.php:
|
140 |
msgid "Delete"
|
141 |
msgstr "删除"
|
142 |
|
143 |
-
#: lib/wfu_constants.php:
|
144 |
msgid "Delete this file"
|
145 |
msgstr "删除这个文件"
|
146 |
|
147 |
-
#: lib/wfu_constants.php:
|
148 |
msgid "Sort list based on this column"
|
149 |
msgstr "根据该列分类"
|
150 |
|
151 |
-
#: lib/wfu_constants.php:
|
152 |
msgid "guest"
|
153 |
msgstr "客人"
|
154 |
|
155 |
-
#: lib/wfu_constants.php:
|
156 |
msgid "unknown"
|
157 |
msgstr "未知"
|
158 |
|
159 |
-
#: lib/wfu_constants.php:
|
160 |
msgid ""
|
161 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
162 |
"attribute."
|
163 |
msgstr "错误:不能解决 ftp 目标文件目录。请检查 'ftpinfo'属性中的domain"
|
164 |
|
165 |
-
#: lib/wfu_constants.php:
|
166 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
167 |
msgstr "错误:无效 ftp 信息。请检查 'ftpinfo' 属性"
|
168 |
|
169 |
-
#: lib/wfu_constants.php:
|
170 |
msgid ""
|
171 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
172 |
"syntax."
|
173 |
msgstr "错误:不能从 'ftpinfo' 属性中提取 ftp 信息。请检查它的句法"
|
174 |
|
175 |
-
#: lib/wfu_constants.php:
|
176 |
msgid ""
|
177 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
178 |
"attribute."
|
179 |
msgstr "错误:不能解决 ftp 目标文件名。请检查 'ftpinfo'属性中的 domain"
|
180 |
|
181 |
-
#: lib/wfu_constants.php:
|
182 |
msgid ""
|
183 |
"Error. Could not open source file for ftp upload. Check if file is "
|
184 |
"accessible."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: lib/wfu_constants.php:
|
188 |
msgid "Error. Could not send data to ftp target file."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: lib/wfu_constants.php:
|
192 |
msgid ""
|
193 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
194 |
"attribute."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: lib/wfu_constants.php:
|
198 |
msgid ""
|
199 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
200 |
"'ftpinfo' attribute."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: lib/wfu_constants.php:
|
204 |
msgid ""
|
205 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
206 |
"supports sftp."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: lib/wfu_constants.php:
|
210 |
msgid "Error. The web server does not support sftp."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: lib/wfu_constants.php:
|
214 |
msgid ""
|
215 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
216 |
"preventing the upload of big files.\n"
|
@@ -219,7 +225,7 @@ msgstr ""
|
|
219 |
"错误:上传文件PHP directive upload_max_filesize 的限制正在避免加载大文件。"
|
220 |
"PHP directive upload_max_filesize 的限制是:"
|
221 |
|
222 |
-
#: lib/wfu_constants.php:
|
223 |
msgid ""
|
224 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
225 |
"upload of big files.\n"
|
@@ -228,100 +234,100 @@ msgstr ""
|
|
228 |
"错误:上传文件 PHP directive max_input_time 的时间限制正在避免加载大文件。"
|
229 |
"PHP directive upload_max_filesize 的时间限制是:"
|
230 |
|
231 |
-
#: lib/wfu_constants.php:
|
232 |
msgid ""
|
233 |
"Error. Permission denied to write to target folder.\n"
|
234 |
"Check and correct read/write permissions of target folder."
|
235 |
msgstr "错误:拒绝写到目标文件夹。请检查和校对目标文件夹的读/写允许。"
|
236 |
|
237 |
-
#: lib/wfu_constants.php:
|
238 |
msgid ""
|
239 |
"Error. This file was rejected because its extension is not correct. Its "
|
240 |
"proper filename is: "
|
241 |
msgstr "错误:因为扩展名不对,该文件被拒绝。正确的文件名是:"
|
242 |
|
243 |
-
#: lib/wfu_constants.php:
|
244 |
msgid ""
|
245 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
246 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
247 |
"suspicious behaviour."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: lib/wfu_constants.php:
|
251 |
msgid ""
|
252 |
"File not uploaded in order to prevent overflow of the website. Please "
|
253 |
"contact administrator."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: lib/wfu_constants.php:
|
257 |
msgid "Target folder doesn't exist."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: lib/wfu_constants.php:
|
261 |
msgid "Upload failed! Missing a temporary folder."
|
262 |
msgstr "加载失败!丢失一个临时文件夹。"
|
263 |
|
264 |
-
#: lib/wfu_constants.php:
|
265 |
msgid "Upload failed! Permission denied to write to target folder."
|
266 |
msgstr "加载失败!写入目标文件夹被拒绝。"
|
267 |
|
268 |
-
#: lib/wfu_constants.php:
|
269 |
msgid "File not allowed."
|
270 |
msgstr "文件不被允许。"
|
271 |
|
272 |
-
#: lib/wfu_constants.php:
|
273 |
msgid "File is suspicious and was rejected."
|
274 |
msgstr "可疑文件,被拒绝。"
|
275 |
|
276 |
-
#: lib/wfu_constants.php:
|
277 |
msgid "The uploaded file exceeds the file size limit."
|
278 |
msgstr "加载的文件超出文件尺寸限制。"
|
279 |
|
280 |
-
#: lib/wfu_constants.php:
|
281 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
282 |
msgstr "上传文件超出2GB,服务器不支持。"
|
283 |
|
284 |
-
#: lib/wfu_constants.php:
|
285 |
msgid ""
|
286 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
287 |
"Please contact the administrator."
|
288 |
msgstr "上传失败!上传文件超出服务器的文件大小限制。请联系管理员。"
|
289 |
|
290 |
-
#: lib/wfu_constants.php:
|
291 |
msgid ""
|
292 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
293 |
"server. Please contact the administrator."
|
294 |
msgstr "上传失败!上传时间超出服务器的时间限制。请联系管理员。"
|
295 |
|
296 |
-
#: lib/wfu_constants.php:
|
297 |
msgid ""
|
298 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
299 |
"was specified in the HTML form."
|
300 |
msgstr "上传失败!上传文件超出HTML格式中规定的最大文件大小限制。"
|
301 |
|
302 |
-
#: lib/wfu_constants.php:
|
303 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
304 |
msgstr "上传失败!只生产了部分加载文件。"
|
305 |
|
306 |
-
#: lib/wfu_constants.php:
|
307 |
msgid "Upload failed! No file was uploaded."
|
308 |
msgstr "上传失败!文件没有载入。"
|
309 |
|
310 |
-
#: lib/wfu_constants.php:
|
311 |
msgid "Upload failed! Failed to write file to disk."
|
312 |
msgstr "上传失败!写文件到磁盘失败。"
|
313 |
|
314 |
-
#: lib/wfu_constants.php:
|
315 |
msgid ""
|
316 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
317 |
"administrator."
|
318 |
msgstr "上传失败!移动临时文件时出现故障。请联系管理员。"
|
319 |
|
320 |
-
#: lib/wfu_constants.php:
|
321 |
msgid "Upload cancelled!"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: lib/wfu_constants.php:
|
325 |
msgid ""
|
326 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
327 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
@@ -330,146 +336,146 @@ msgstr ""
|
|
330 |
"上传失败!PHP扩展名终止文件加载。PHP 不明确提供那个扩展名造成文件加载终止;检"
|
331 |
"查带 phpinfo() 的加载扩展名列表可能会有帮助。"
|
332 |
|
333 |
-
#: lib/wfu_constants.php:
|
334 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
335 |
msgstr "上传失败!试图加载文件时出现错误。"
|
336 |
|
337 |
-
#: lib/wfu_constants.php:
|
338 |
msgid "Upload failed!"
|
339 |
msgstr "上传失败!"
|
340 |
|
341 |
-
#: lib/wfu_constants.php:
|
342 |
msgid "No file!"
|
343 |
msgstr "没有忘记!"
|
344 |
|
345 |
-
#: lib/wfu_constants.php:
|
346 |
msgid ""
|
347 |
"Upload failed! The upload has been canceled by the user or the browser "
|
348 |
"dropped the connection."
|
349 |
msgstr "上传失败!该上传被用户取消,或者浏览器失去连接。"
|
350 |
|
351 |
-
#: lib/wfu_constants.php:
|
352 |
msgid "Upload failed! Unknown error."
|
353 |
msgstr "上传失败!未知故障。"
|
354 |
|
355 |
-
#: lib/wfu_constants.php:
|
356 |
msgid "Please contact the administrator."
|
357 |
msgstr "请联系管理员。"
|
358 |
|
359 |
-
#: lib/wfu_constants.php:
|
360 |
msgid "No result from remote server!"
|
361 |
msgstr "没有来自远程服务器的结果!"
|
362 |
|
363 |
-
#: lib/wfu_constants.php:
|
364 |
msgid " but with warnings"
|
365 |
msgstr "但是带警告提示"
|
366 |
|
367 |
-
#: lib/wfu_constants.php:
|
368 |
msgid "Warning: JSON parse error."
|
369 |
msgstr "警告:JSON 语法分析错误。"
|
370 |
|
371 |
-
#: lib/wfu_constants.php:
|
372 |
msgid ""
|
373 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
374 |
"not be parsed."
|
375 |
msgstr "加载该文件参数,作为JSON 字符串传到handler,不能进行语法分析。"
|
376 |
|
377 |
-
#: lib/wfu_constants.php:
|
378 |
msgid ""
|
379 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
380 |
msgstr "加载状态,作为为JSON 字符串传到handler,不能进行语法分析。"
|
381 |
|
382 |
-
#: lib/wfu_constants.php:
|
383 |
msgid ""
|
384 |
"Redirection to classic form functionality occurred due to unknown error."
|
385 |
msgstr "由于未知故障,出现重新指向到classic form functionality"
|
386 |
|
387 |
-
#: lib/wfu_constants.php:
|
388 |
msgid ""
|
389 |
"Redirection to classic form functionality occurred because AJAX is not "
|
390 |
"supported."
|
391 |
msgstr "因为不支持 AJAX,出现重新指向到classic form functionality"
|
392 |
|
393 |
-
#: lib/wfu_constants.php:
|
394 |
msgid ""
|
395 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
396 |
"supported."
|
397 |
msgstr "因为不支持 HTML5,出现重新指向到classic form functionality"
|
398 |
|
399 |
-
#: lib/wfu_constants.php:
|
400 |
msgid ""
|
401 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
402 |
msgstr "由于JSON语法分析错误,出现重新指向到classic form functionality"
|
403 |
|
404 |
-
#: lib/wfu_constants.php:
|
405 |
msgid "Please enable popup windows from the browser's settings!"
|
406 |
msgstr "请在浏览器设置中启动 popup 打开窗口!"
|
407 |
|
408 |
-
#: lib/wfu_constants.php:
|
409 |
msgid "cannot be empty!"
|
410 |
msgstr "不能为空白!"
|
411 |
|
412 |
-
#: lib/wfu_constants.php:
|
413 |
msgid "number not valid!"
|
414 |
msgstr "无效数字!"
|
415 |
|
416 |
-
#: lib/wfu_constants.php:
|
417 |
msgid "email not valid!"
|
418 |
msgstr "无效邮件!"
|
419 |
|
420 |
-
#: lib/wfu_constants.php:
|
421 |
msgid "emails do not match!"
|
422 |
msgstr "邮箱不符!"
|
423 |
|
424 |
-
#: lib/wfu_constants.php:
|
425 |
msgid "no base email field in group!"
|
426 |
msgstr "在组中没有基本邮件区域!"
|
427 |
|
428 |
-
#: lib/wfu_constants.php:
|
429 |
msgid "passwords do not match!"
|
430 |
msgstr "口令不符!"
|
431 |
|
432 |
-
#: lib/wfu_constants.php:
|
433 |
msgid "no base password field in group!"
|
434 |
msgstr "在组中没有基本口令区域!"
|
435 |
|
436 |
-
#: lib/wfu_constants.php:
|
437 |
msgid "checkbox unchecked!"
|
438 |
msgstr "检查框没打记号!"
|
439 |
|
440 |
-
#: lib/wfu_constants.php:
|
441 |
msgid "no option selected!"
|
442 |
msgstr "没选择选项!"
|
443 |
|
444 |
-
#: lib/wfu_constants.php:
|
445 |
msgid "no item selected!"
|
446 |
msgstr "没选择任何物件!"
|
447 |
|
448 |
-
#: lib/wfu_constants.php:
|
449 |
msgid ""
|
450 |
"There are more than one instances of the plugin in this page with the same "
|
451 |
"id. Please change it."
|
452 |
msgstr "在这个页面中有多个带相同 ID 的插件实例, 请更改。"
|
453 |
|
454 |
-
#: lib/wfu_constants.php:
|
455 |
msgid ""
|
456 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
457 |
"the page."
|
458 |
msgstr "因为页面被修改,不能编辑短码。请重新加载页面。"
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "Your browser does not support webcam capture!"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid "Your browser does not support video recording from the webcam!"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: lib/wfu_constants.php:
|
469 |
msgid "No video was recorded!"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: lib/wfu_constants.php:
|
473 |
msgid ""
|
474 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
475 |
"or use RecaptchaV2 (no account)."
|
@@ -477,23 +483,23 @@ msgstr ""
|
|
477 |
"错误: Captcha 不支持!你有一个旧 PHP 版本。升级你的 PHP 或使用 "
|
478 |
"RecaptchaV2 。"
|
479 |
|
480 |
-
#: lib/wfu_constants.php:
|
481 |
msgid ""
|
482 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
483 |
"notify administrator."
|
484 |
msgstr "错误:相同页面中只能有一个 RecaptchaV1 实例 存在。请通知管理员。"
|
485 |
|
486 |
-
#: lib/wfu_constants.php:
|
487 |
msgid ""
|
488 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
489 |
"use RecaptchaV1 (no account)."
|
490 |
msgstr "错误:相同页面中只能有一个 RecaptchaV1 实例 存在。请使用 RecaptchaV1 "
|
491 |
|
492 |
-
#: lib/wfu_constants.php:
|
493 |
msgid "ERROR: No site key. Please contact administrator!"
|
494 |
msgstr "错误:没有site key. 请联系管理员!"
|
495 |
|
496 |
-
#: lib/wfu_constants.php:
|
497 |
msgid ""
|
498 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
499 |
"define Google Recaptcha keys."
|
@@ -501,152 +507,152 @@ msgstr ""
|
|
501 |
"错误:没有已定义的 site key! 请在 Dashboard 的插件设置中定义 谷歌 Recaptcha "
|
502 |
"keys。"
|
503 |
|
504 |
-
#: lib/wfu_constants.php:
|
505 |
msgid "Bad captcha image!"
|
506 |
msgstr "损坏的 captcha 图像!"
|
507 |
|
508 |
-
#: lib/wfu_constants.php:
|
509 |
msgid "No input!"
|
510 |
msgstr "没有输入!"
|
511 |
|
512 |
-
#: lib/wfu_constants.php:
|
513 |
msgid "Captcha not completed!"
|
514 |
msgstr "captcha 不完整!"
|
515 |
|
516 |
-
#: lib/wfu_constants.php:
|
517 |
msgid "Wrong captcha!"
|
518 |
msgstr "错误的 captcha!"
|
519 |
|
520 |
-
#: lib/wfu_constants.php:
|
521 |
msgid "Error refreshing captcha!"
|
522 |
msgstr "更新 captcha 故障!"
|
523 |
|
524 |
-
#: lib/wfu_constants.php:
|
525 |
msgid "Unknown captcha error!"
|
526 |
msgstr "未知 captcha 错误!"
|
527 |
|
528 |
-
#: lib/wfu_constants.php:
|
529 |
msgid "Captcha not supported by your browser!"
|
530 |
msgstr "你的浏览器不支持 captcha!"
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid "the secret parameter is missing"
|
534 |
msgstr "秘密参数丢失"
|
535 |
|
536 |
-
#: lib/wfu_constants.php:
|
537 |
msgid "the secret parameter is invalid or malformed"
|
538 |
msgstr "秘密参数无效或出错"
|
539 |
|
540 |
-
#: lib/wfu_constants.php:
|
541 |
msgid "the response parameter is missing"
|
542 |
msgstr "相应参数丢失"
|
543 |
|
544 |
-
#: lib/wfu_constants.php:
|
545 |
msgid "the response parameter is invalid or malformed"
|
546 |
msgstr "相应参数无效或出错"
|
547 |
|
548 |
-
#: lib/wfu_constants.php:
|
549 |
msgid "Please do not use drag drop due to an internal problem."
|
550 |
msgstr "由于内部问题,请不要使用托拽功能。"
|
551 |
|
552 |
-
#: lib/wfu_constants.php:
|
553 |
#, php-format
|
554 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
555 |
msgstr "分片加载时出错。分片 %d 中唯一的ID 空白"
|
556 |
|
557 |
-
#: lib/wfu_constants.php:
|
558 |
msgid "Chunked upload is not allowed!"
|
559 |
msgstr "不允许分片加载!"
|
560 |
|
561 |
-
#: lib/wfu_constants.php:
|
562 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
563 |
msgstr "由于前一分片出错,分片加载终止!"
|
564 |
|
565 |
-
#: lib/wfu_constants.php:
|
566 |
msgid "Chunked upload failed, final file could not be created!"
|
567 |
msgstr "分片加载失败,不能生成最终文件!"
|
568 |
|
569 |
-
#: lib/wfu_constants.php:
|
570 |
#, php-format
|
571 |
msgid "Could not write file chuck to destination on chunk %d"
|
572 |
msgstr "不能将文件分片写到分片 %d 中"
|
573 |
|
574 |
-
#: lib/wfu_constants.php:
|
575 |
#, php-format
|
576 |
msgid "Could not enlarge destination file on chunk %d"
|
577 |
msgstr "不能加大分片 %d 上的目标文件"
|
578 |
|
579 |
-
#: lib/wfu_constants.php:
|
580 |
#, php-format
|
581 |
msgid "Could not open file handles on chunk %d"
|
582 |
msgstr "不能打开分片 %d 上的文件 handles"
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "You are not allowed to download this file!"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "File does not exist!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "Could not download file!"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
msgid "You are not allowed to delete this file!"
|
598 |
msgstr "不允许删除该文件!"
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid "File was not deleted!"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "No file was deleted!"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid "Some files were not deleted!"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: lib/wfu_constants.php:
|
613 |
msgid "Upload skipped! File already exists."
|
614 |
msgstr "跳过加载!文件已经存在。"
|
615 |
|
616 |
-
#: lib/wfu_constants.php:
|
617 |
msgid "The extension of the file does not match its contents."
|
618 |
msgstr "该文件的扩展名与其内容不符。"
|
619 |
|
620 |
-
#: lib/wfu_constants.php:
|
621 |
msgid ""
|
622 |
"Upload succeeded but the file is suspicious because its contents do not "
|
623 |
"match its extension. Its proper filename is: "
|
624 |
msgstr "上传成功,但因为他的内容与其扩展名不符,文件可疑。正确的文件名是:"
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid "No files have been selected!"
|
628 |
msgstr "没有选择文件!"
|
629 |
|
630 |
-
#: lib/wfu_constants.php:
|
631 |
msgid "Please complete the consent question before continuing the upload!"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: lib/wfu_constants.php:
|
635 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
636 |
msgstr "因为没有加载的文件,WPFilebase 插件没更新"
|
637 |
|
638 |
-
#: lib/wfu_constants.php:
|
639 |
msgid "Notification email was not sent because there were no files uploaded."
|
640 |
msgstr "因为没有加载文件,通知邮件没发出。"
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid ""
|
644 |
"Notification email was not sent because no recipients were defined. Please "
|
645 |
"check notifyrecipients attribute in the shortcode."
|
646 |
msgstr ""
|
647 |
"因为没有定义收件人,通知邮件没发出。请检查 短码中的 notifyrecipients 属性"
|
648 |
|
649 |
-
#: lib/wfu_constants.php:
|
650 |
msgid ""
|
651 |
"Notification email was not sent due to an error. Please check "
|
652 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
@@ -654,22 +660,22 @@ msgstr ""
|
|
654 |
"由于出错,通知邮件没发出。请检查 notifyrecipients, notifysubject 和 "
|
655 |
"notifymessage 属性"
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid ""
|
659 |
"Redirection not executed because redirection link is empty. Please check "
|
660 |
"redirectlink attribute."
|
661 |
msgstr "因为重新定位链接空白,重新定位不执行。请检查 redirectlink 属性。"
|
662 |
|
663 |
-
#: lib/wfu_constants.php:
|
664 |
msgid ""
|
665 |
"Redirection not executed because not all files were successfully uploaded."
|
666 |
msgstr "因为不是所有的文件都成功加载,重新定位不执行。"
|
667 |
|
668 |
-
#: lib/wfu_constants.php:
|
669 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: lib/wfu_constants.php:
|
673 |
msgid ""
|
674 |
"Hello admin\n"
|
675 |
"\n"
|
@@ -689,135 +695,135 @@ msgid ""
|
|
689 |
"Thanks"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: lib/wfu_constants.php:
|
693 |
msgid ""
|
694 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
695 |
"details please contact info@iptanus.com."
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: lib/wfu_constants.php:
|
699 |
msgid ""
|
700 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
701 |
"plugin functions. Please read this :article: for resolution."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: lib/wfu_constants.php:
|
705 |
msgid ""
|
706 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
707 |
"message persists, contact administrator."
|
708 |
msgstr "添加短码到 page/post 失败。请重新试一下。 如果仍有错误, 联系管理员。"
|
709 |
|
710 |
-
#: lib/wfu_constants.php:
|
711 |
msgid ""
|
712 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
713 |
"again to edit the shortcode."
|
714 |
msgstr "因为页面内容改变,编辑短码失败。再重新编辑该短码。"
|
715 |
|
716 |
-
#: lib/wfu_constants.php:
|
717 |
msgid ""
|
718 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
719 |
"again to delete it."
|
720 |
msgstr "因为页面内容改变,删除短码失败。再重新删除。"
|
721 |
|
722 |
-
#: lib/wfu_constants.php:
|
723 |
msgid ""
|
724 |
"The page containing the shortcode has been modified and it is no longer "
|
725 |
"valid. Please go back to reload the shortcode."
|
726 |
msgstr "含有短码的页面已经被修改,它不再有效。请回到重新加载该短码。"
|
727 |
|
728 |
-
#: lib/wfu_constants.php:
|
729 |
msgid ""
|
730 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
731 |
"back to reload the shortcode."
|
732 |
msgstr "因为页面内容被修改,更新短码失败。回到重新加载该短码。"
|
733 |
|
734 |
-
#: lib/wfu_constants.php:
|
735 |
msgid ""
|
736 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
737 |
"go back and reload the shortcode."
|
738 |
msgstr "更新短码失败。请重新再试。如果问题仍存在,返回查询加载该短码。"
|
739 |
|
740 |
-
#: lib/wfu_constants.php:
|
741 |
msgid "This is a test message"
|
742 |
msgstr "这是一个测试信息"
|
743 |
|
744 |
-
#: lib/wfu_constants.php:
|
745 |
msgid "This is a test administrator message"
|
746 |
msgstr "这是一个测试管理员信息"
|
747 |
|
748 |
-
#: lib/wfu_constants.php:
|
749 |
msgid "File testfile 1 under test"
|
750 |
msgstr "测试中的文件 testfile 1"
|
751 |
|
752 |
-
#: lib/wfu_constants.php:
|
753 |
msgid "File testfile 1 message"
|
754 |
msgstr "文件 testfile 1 信息"
|
755 |
|
756 |
-
#: lib/wfu_constants.php:
|
757 |
msgid "File testfile 1 administrator message"
|
758 |
msgstr "文件 testfile 1 管理员信息"
|
759 |
|
760 |
-
#: lib/wfu_constants.php:
|
761 |
msgid "File testfile 2 under test"
|
762 |
msgstr "测试中的文件 testfile 2"
|
763 |
|
764 |
-
#: lib/wfu_constants.php:
|
765 |
msgid "File testfile 2 message"
|
766 |
msgstr "文件 testfile 2 信息"
|
767 |
|
768 |
-
#: lib/wfu_constants.php:
|
769 |
msgid "File testfile 2 administrator message"
|
770 |
msgstr "文件 testfile 2 管理员信息"
|
771 |
|
772 |
-
#: lib/wfu_constants.php:
|
773 |
msgid ""
|
774 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
775 |
"current user."
|
776 |
msgstr "在文本中插入变量 %userid%。 它将被当前用户的 ID 替换。"
|
777 |
|
778 |
-
#: lib/wfu_constants.php:
|
779 |
msgid ""
|
780 |
"Insert variable %username% inside text. It will be replaced by the username "
|
781 |
"of the current user."
|
782 |
msgstr "在文本中插入变量 %username%。 它将被当前用户的用户名替换。"
|
783 |
|
784 |
-
#: lib/wfu_constants.php:
|
785 |
msgid ""
|
786 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
787 |
"the current user."
|
788 |
msgstr "在文本中插入变量 %useremail%。 它将被当前用户的邮替换。"
|
789 |
|
790 |
-
#: lib/wfu_constants.php:
|
791 |
msgid ""
|
792 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
793 |
"of the uploaded file."
|
794 |
msgstr "在文本中插入变量 %filename%。 它将被上传文件的文件名替换。"
|
795 |
|
796 |
-
#: lib/wfu_constants.php:
|
797 |
msgid ""
|
798 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
799 |
"filepath of the uploaded file."
|
800 |
msgstr "在文本中插入变量 %filepath%。 它将被上传文件的文件路径替换。"
|
801 |
|
802 |
-
#: lib/wfu_constants.php:
|
803 |
msgid ""
|
804 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
805 |
"the website."
|
806 |
msgstr "在文本中插入变量 %blogid%。 它将被该网站的blog ID替换。"
|
807 |
|
808 |
-
#: lib/wfu_constants.php:
|
809 |
msgid ""
|
810 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
811 |
"current page."
|
812 |
msgstr "在文本中插入变量 %pageid%。 它将被当前页面的 ID 替换。"
|
813 |
|
814 |
-
#: lib/wfu_constants.php:
|
815 |
msgid ""
|
816 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
817 |
"the current page."
|
818 |
msgstr "在文本中插入变量 %pagetitle%。 它将被上传文件的名称替换。"
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid ""
|
822 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
823 |
"drop-down list. It will be replaced by the value that the user entered in "
|
@@ -826,215 +832,232 @@ msgstr ""
|
|
826 |
"在文本中插入变量 %userdataXXX%。从下拉表中选择该用户区域。它将被用户在此区域"
|
827 |
"输入的值替换。"
|
828 |
|
829 |
-
#: lib/wfu_constants.php:
|
830 |
msgid "Insert variable %n% inside text to denote a line change."
|
831 |
msgstr "在文本中插入变量 %n%。表明一行变化。"
|
832 |
|
833 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
834 |
msgid "Test Mode"
|
835 |
msgstr "测试模式"
|
836 |
|
837 |
-
#: lib/wfu_constants.php:
|
838 |
msgid "select dir..."
|
839 |
msgstr "选择 dir ..."
|
840 |
|
841 |
-
#: lib/wfu_constants.php:
|
842 |
msgid "type dir"
|
843 |
msgstr "键入 dir"
|
844 |
|
845 |
-
#: lib/wfu_constants.php:
|
846 |
msgid "Upload path: %filepath%"
|
847 |
msgstr "加载路径:%filepath%"
|
848 |
|
849 |
-
#: lib/wfu_constants.php:
|
850 |
msgid "Failed upload path: %filepath%"
|
851 |
msgstr "加载路径失败: %filepath%"
|
852 |
|
853 |
-
#: lib/wfu_constants.php:
|
854 |
msgid " (required)"
|
855 |
msgstr "(必需)"
|
856 |
|
857 |
-
#: lib/wfu_constants.php:
|
858 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
859 |
msgstr "文件正在加载中,你确定要退出这个页面吗?"
|
860 |
|
861 |
-
#: lib/wfu_constants.php:
|
862 |
msgid "checking captcha..."
|
863 |
msgstr "正在检查 captcha ..."
|
864 |
|
865 |
-
#: lib/wfu_constants.php:
|
866 |
msgid "refreshing..."
|
867 |
msgstr "正在更新 ..."
|
868 |
|
869 |
-
#: lib/wfu_constants.php:
|
870 |
msgid "correct captcha"
|
871 |
msgstr "正确的 captcha"
|
872 |
|
873 |
-
#: lib/wfu_constants.php:
|
874 |
msgid "click to continue the upload"
|
875 |
msgstr "点击继续上传"
|
876 |
|
877 |
-
#: lib/wfu_constants.php:
|
878 |
msgid "Are you sure you want to delete this file?"
|
879 |
msgstr "确定要删除这个文件吗?"
|
880 |
|
881 |
-
#: lib/wfu_constants.php:
|
882 |
msgid "Are you sure you want to delete these files?"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: lib/wfu_constants.php:
|
886 |
msgid "Bulk Actions"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: lib/wfu_constants.php:
|
890 |
msgid "Apply"
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: lib/wfu_constants.php:
|
894 |
msgid "of "
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: lib/wfu_constants.php:
|
898 |
msgid "Are you sure that you want to cancel the upload?"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: lib/wfu_constants.php:
|
902 |
msgid "cancel upload of this file"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: lib/wfu_constants.php:
|
906 |
msgid "Upload in progress"
|
907 |
msgstr "上传正在进行中"
|
908 |
|
909 |
-
#: lib/wfu_constants.php:
|
910 |
msgid "Upload in progress with warnings!"
|
911 |
msgstr "上传正在进行中,有警告提示!"
|
912 |
|
913 |
-
#: lib/wfu_constants.php:
|
914 |
msgid "Upload in progress but some files already failed!"
|
915 |
msgstr "上传正在进行中,有些文件已经加载失败!"
|
916 |
|
917 |
-
#: lib/wfu_constants.php:
|
918 |
msgid "Upload in progress but no files uploaded so far!"
|
919 |
msgstr "上传正在进行中,还没有文件载入!"
|
920 |
|
921 |
-
#: lib/wfu_constants.php:
|
922 |
msgid "All files uploaded successfully"
|
923 |
msgstr "所有危机上传成功"
|
924 |
|
925 |
-
#: lib/wfu_constants.php:
|
926 |
msgid "All files uploaded successfully but there are warnings!"
|
927 |
msgstr "所有文件上传成功,但有警告提示!"
|
928 |
|
929 |
-
#: lib/wfu_constants.php:
|
930 |
msgid "File uploaded successfully but there are warnings!"
|
931 |
msgstr "文件上传成功,但有警告提示!"
|
932 |
|
933 |
-
#: lib/wfu_constants.php:
|
934 |
msgid "Some files failed to upload!"
|
935 |
msgstr "部分文件上传失败!"
|
936 |
|
937 |
-
#: lib/wfu_constants.php:
|
938 |
msgid "All files failed to upload"
|
939 |
msgstr "所以我就上传失败"
|
940 |
|
941 |
-
#: lib/wfu_constants.php:
|
942 |
msgid "File failed to upload"
|
943 |
msgstr "文件上传失败"
|
944 |
|
945 |
-
#: lib/wfu_constants.php:
|
946 |
msgid "There are no files to upload!"
|
947 |
msgstr "没有要上传的文件!"
|
948 |
|
949 |
-
#: lib/wfu_constants.php:
|
950 |
msgid "Test upload message"
|
951 |
msgstr "测试上传信息"
|
952 |
|
953 |
-
#: lib/wfu_constants.php:
|
954 |
msgid "JSON parse warning!"
|
955 |
msgstr "JSON语法分析警告!"
|
956 |
|
957 |
-
#: lib/wfu_constants.php:
|
958 |
msgid "please wait while redirecting..."
|
959 |
msgstr "请等候,正在重新定位 ..."
|
960 |
|
961 |
-
#: lib/wfu_constants.php:
|
962 |
msgid "Submitting data"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: lib/wfu_constants.php:
|
966 |
msgid "Data submitted successfully!"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: lib/wfu_constants.php:
|
970 |
msgid "Data were not submitted!"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: lib/wfu_constants.php:
|
974 |
msgid "Cancelling upload"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
978 |
msgid "Open visual shortcode editor in new window"
|
979 |
msgstr "在新窗口打开视频 shortcode 编辑器"
|
980 |
|
981 |
-
#: lib/wfu_constants.php:
|
982 |
msgid "loading visual editor"
|
983 |
msgstr "加载视频编辑器"
|
984 |
|
985 |
-
#: lib/wfu_constants.php:
|
986 |
msgid "Clear file list?"
|
987 |
msgstr "清除文件列表?"
|
988 |
|
989 |
-
#: lib/wfu_constants.php:
|
990 |
msgid "DROP HERE"
|
991 |
msgstr "放在这里"
|
992 |
|
993 |
-
#: lib/wfu_constants.php:
|
994 |
msgid "record video"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: lib/wfu_constants.php:
|
998 |
msgid "take a picture"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: lib/wfu_constants.php:
|
1002 |
msgid "turn webcam on/off"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: lib/wfu_constants.php:
|
1006 |
msgid "go live again"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: lib/wfu_constants.php:
|
1010 |
msgid "end recording"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: lib/wfu_constants.php:
|
1014 |
msgid "play"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#: lib/wfu_constants.php:
|
1018 |
msgid "pause"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: lib/wfu_constants.php:
|
1022 |
msgid "go to the beginning"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: lib/wfu_constants.php:
|
1026 |
msgid "go to the end"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: lib/wfu_constants.php:
|
1030 |
msgid "Wordpress File Upload Form"
|
1031 |
msgstr "Wordpress 文件上传格式"
|
1032 |
|
1033 |
-
#: lib/wfu_constants.php:
|
1034 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1035 |
msgstr "针对sidebars 的 Wordpress 文件上传插件工具"
|
1036 |
|
1037 |
-
#: lib/wfu_constants.php:
|
1038 |
msgid "Upload Files"
|
1039 |
msgstr "上传文件"
|
1040 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:41+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:41+0200\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: zh_CN\n"
|
104 |
"By activating this option I agree to let the website keep my personal data"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lib/wfu_constants.php:34
|
108 |
+
msgid ""
|
109 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
110 |
+
"continue!"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: lib/wfu_constants.php:36
|
114 |
msgid "File"
|
115 |
msgstr "文件"
|
116 |
|
117 |
+
#: lib/wfu_constants.php:37
|
118 |
msgid "Date"
|
119 |
msgstr "日期"
|
120 |
|
121 |
+
#: lib/wfu_constants.php:38
|
122 |
msgid "Size"
|
123 |
msgstr "大小"
|
124 |
|
125 |
+
#: lib/wfu_constants.php:39
|
126 |
msgid "User"
|
127 |
msgstr "用户"
|
128 |
|
129 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
130 |
msgid "Page"
|
131 |
msgstr "页面"
|
132 |
|
133 |
+
#: lib/wfu_constants.php:41
|
134 |
msgid "User Fields"
|
135 |
msgstr "用户区域"
|
136 |
|
137 |
+
#: lib/wfu_constants.php:42
|
138 |
msgid "Download"
|
139 |
msgstr "下载"
|
140 |
|
141 |
+
#: lib/wfu_constants.php:43
|
142 |
msgid "Download this file"
|
143 |
msgstr "下载这个文件"
|
144 |
|
145 |
+
#: lib/wfu_constants.php:44
|
146 |
msgid "Delete"
|
147 |
msgstr "删除"
|
148 |
|
149 |
+
#: lib/wfu_constants.php:45
|
150 |
msgid "Delete this file"
|
151 |
msgstr "删除这个文件"
|
152 |
|
153 |
+
#: lib/wfu_constants.php:46
|
154 |
msgid "Sort list based on this column"
|
155 |
msgstr "根据该列分类"
|
156 |
|
157 |
+
#: lib/wfu_constants.php:47
|
158 |
msgid "guest"
|
159 |
msgstr "客人"
|
160 |
|
161 |
+
#: lib/wfu_constants.php:48
|
162 |
msgid "unknown"
|
163 |
msgstr "未知"
|
164 |
|
165 |
+
#: lib/wfu_constants.php:50
|
166 |
msgid ""
|
167 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
168 |
"attribute."
|
169 |
msgstr "错误:不能解决 ftp 目标文件目录。请检查 'ftpinfo'属性中的domain"
|
170 |
|
171 |
+
#: lib/wfu_constants.php:51
|
172 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
173 |
msgstr "错误:无效 ftp 信息。请检查 'ftpinfo' 属性"
|
174 |
|
175 |
+
#: lib/wfu_constants.php:52
|
176 |
msgid ""
|
177 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
178 |
"syntax."
|
179 |
msgstr "错误:不能从 'ftpinfo' 属性中提取 ftp 信息。请检查它的句法"
|
180 |
|
181 |
+
#: lib/wfu_constants.php:53
|
182 |
msgid ""
|
183 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
184 |
"attribute."
|
185 |
msgstr "错误:不能解决 ftp 目标文件名。请检查 'ftpinfo'属性中的 domain"
|
186 |
|
187 |
+
#: lib/wfu_constants.php:54
|
188 |
msgid ""
|
189 |
"Error. Could not open source file for ftp upload. Check if file is "
|
190 |
"accessible."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: lib/wfu_constants.php:55
|
194 |
msgid "Error. Could not send data to ftp target file."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: lib/wfu_constants.php:56
|
198 |
msgid ""
|
199 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
200 |
"attribute."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: lib/wfu_constants.php:57
|
204 |
msgid ""
|
205 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
206 |
"'ftpinfo' attribute."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: lib/wfu_constants.php:58
|
210 |
msgid ""
|
211 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
212 |
"supports sftp."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: lib/wfu_constants.php:59
|
216 |
msgid "Error. The web server does not support sftp."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: lib/wfu_constants.php:60
|
220 |
msgid ""
|
221 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
222 |
"preventing the upload of big files.\n"
|
225 |
"错误:上传文件PHP directive upload_max_filesize 的限制正在避免加载大文件。"
|
226 |
"PHP directive upload_max_filesize 的限制是:"
|
227 |
|
228 |
+
#: lib/wfu_constants.php:61
|
229 |
msgid ""
|
230 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
231 |
"upload of big files.\n"
|
234 |
"错误:上传文件 PHP directive max_input_time 的时间限制正在避免加载大文件。"
|
235 |
"PHP directive upload_max_filesize 的时间限制是:"
|
236 |
|
237 |
+
#: lib/wfu_constants.php:62
|
238 |
msgid ""
|
239 |
"Error. Permission denied to write to target folder.\n"
|
240 |
"Check and correct read/write permissions of target folder."
|
241 |
msgstr "错误:拒绝写到目标文件夹。请检查和校对目标文件夹的读/写允许。"
|
242 |
|
243 |
+
#: lib/wfu_constants.php:63
|
244 |
msgid ""
|
245 |
"Error. This file was rejected because its extension is not correct. Its "
|
246 |
"proper filename is: "
|
247 |
msgstr "错误:因为扩展名不对,该文件被拒绝。正确的文件名是:"
|
248 |
|
249 |
+
#: lib/wfu_constants.php:64
|
250 |
msgid ""
|
251 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
252 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
253 |
"suspicious behaviour."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: lib/wfu_constants.php:65
|
257 |
msgid ""
|
258 |
"File not uploaded in order to prevent overflow of the website. Please "
|
259 |
"contact administrator."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: lib/wfu_constants.php:66
|
263 |
msgid "Target folder doesn't exist."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: lib/wfu_constants.php:67
|
267 |
msgid "Upload failed! Missing a temporary folder."
|
268 |
msgstr "加载失败!丢失一个临时文件夹。"
|
269 |
|
270 |
+
#: lib/wfu_constants.php:68
|
271 |
msgid "Upload failed! Permission denied to write to target folder."
|
272 |
msgstr "加载失败!写入目标文件夹被拒绝。"
|
273 |
|
274 |
+
#: lib/wfu_constants.php:69
|
275 |
msgid "File not allowed."
|
276 |
msgstr "文件不被允许。"
|
277 |
|
278 |
+
#: lib/wfu_constants.php:70
|
279 |
msgid "File is suspicious and was rejected."
|
280 |
msgstr "可疑文件,被拒绝。"
|
281 |
|
282 |
+
#: lib/wfu_constants.php:71
|
283 |
msgid "The uploaded file exceeds the file size limit."
|
284 |
msgstr "加载的文件超出文件尺寸限制。"
|
285 |
|
286 |
+
#: lib/wfu_constants.php:72
|
287 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
288 |
msgstr "上传文件超出2GB,服务器不支持。"
|
289 |
|
290 |
+
#: lib/wfu_constants.php:73
|
291 |
msgid ""
|
292 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
293 |
"Please contact the administrator."
|
294 |
msgstr "上传失败!上传文件超出服务器的文件大小限制。请联系管理员。"
|
295 |
|
296 |
+
#: lib/wfu_constants.php:74
|
297 |
msgid ""
|
298 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
299 |
"server. Please contact the administrator."
|
300 |
msgstr "上传失败!上传时间超出服务器的时间限制。请联系管理员。"
|
301 |
|
302 |
+
#: lib/wfu_constants.php:75
|
303 |
msgid ""
|
304 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
305 |
"was specified in the HTML form."
|
306 |
msgstr "上传失败!上传文件超出HTML格式中规定的最大文件大小限制。"
|
307 |
|
308 |
+
#: lib/wfu_constants.php:76
|
309 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
310 |
msgstr "上传失败!只生产了部分加载文件。"
|
311 |
|
312 |
+
#: lib/wfu_constants.php:77
|
313 |
msgid "Upload failed! No file was uploaded."
|
314 |
msgstr "上传失败!文件没有载入。"
|
315 |
|
316 |
+
#: lib/wfu_constants.php:78
|
317 |
msgid "Upload failed! Failed to write file to disk."
|
318 |
msgstr "上传失败!写文件到磁盘失败。"
|
319 |
|
320 |
+
#: lib/wfu_constants.php:79
|
321 |
msgid ""
|
322 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
323 |
"administrator."
|
324 |
msgstr "上传失败!移动临时文件时出现故障。请联系管理员。"
|
325 |
|
326 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
327 |
msgid "Upload cancelled!"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: lib/wfu_constants.php:81
|
331 |
msgid ""
|
332 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
333 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
336 |
"上传失败!PHP扩展名终止文件加载。PHP 不明确提供那个扩展名造成文件加载终止;检"
|
337 |
"查带 phpinfo() 的加载扩展名列表可能会有帮助。"
|
338 |
|
339 |
+
#: lib/wfu_constants.php:82
|
340 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
341 |
msgstr "上传失败!试图加载文件时出现错误。"
|
342 |
|
343 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
344 |
msgid "Upload failed!"
|
345 |
msgstr "上传失败!"
|
346 |
|
347 |
+
#: lib/wfu_constants.php:84
|
348 |
msgid "No file!"
|
349 |
msgstr "没有忘记!"
|
350 |
|
351 |
+
#: lib/wfu_constants.php:85
|
352 |
msgid ""
|
353 |
"Upload failed! The upload has been canceled by the user or the browser "
|
354 |
"dropped the connection."
|
355 |
msgstr "上传失败!该上传被用户取消,或者浏览器失去连接。"
|
356 |
|
357 |
+
#: lib/wfu_constants.php:86
|
358 |
msgid "Upload failed! Unknown error."
|
359 |
msgstr "上传失败!未知故障。"
|
360 |
|
361 |
+
#: lib/wfu_constants.php:87
|
362 |
msgid "Please contact the administrator."
|
363 |
msgstr "请联系管理员。"
|
364 |
|
365 |
+
#: lib/wfu_constants.php:88
|
366 |
msgid "No result from remote server!"
|
367 |
msgstr "没有来自远程服务器的结果!"
|
368 |
|
369 |
+
#: lib/wfu_constants.php:89
|
370 |
msgid " but with warnings"
|
371 |
msgstr "但是带警告提示"
|
372 |
|
373 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
374 |
msgid "Warning: JSON parse error."
|
375 |
msgstr "警告:JSON 语法分析错误。"
|
376 |
|
377 |
+
#: lib/wfu_constants.php:91
|
378 |
msgid ""
|
379 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
380 |
"not be parsed."
|
381 |
msgstr "加载该文件参数,作为JSON 字符串传到handler,不能进行语法分析。"
|
382 |
|
383 |
+
#: lib/wfu_constants.php:93
|
384 |
msgid ""
|
385 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
386 |
msgstr "加载状态,作为为JSON 字符串传到handler,不能进行语法分析。"
|
387 |
|
388 |
+
#: lib/wfu_constants.php:94
|
389 |
msgid ""
|
390 |
"Redirection to classic form functionality occurred due to unknown error."
|
391 |
msgstr "由于未知故障,出现重新指向到classic form functionality"
|
392 |
|
393 |
+
#: lib/wfu_constants.php:95
|
394 |
msgid ""
|
395 |
"Redirection to classic form functionality occurred because AJAX is not "
|
396 |
"supported."
|
397 |
msgstr "因为不支持 AJAX,出现重新指向到classic form functionality"
|
398 |
|
399 |
+
#: lib/wfu_constants.php:96
|
400 |
msgid ""
|
401 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
402 |
"supported."
|
403 |
msgstr "因为不支持 HTML5,出现重新指向到classic form functionality"
|
404 |
|
405 |
+
#: lib/wfu_constants.php:97
|
406 |
msgid ""
|
407 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
408 |
msgstr "由于JSON语法分析错误,出现重新指向到classic form functionality"
|
409 |
|
410 |
+
#: lib/wfu_constants.php:98
|
411 |
msgid "Please enable popup windows from the browser's settings!"
|
412 |
msgstr "请在浏览器设置中启动 popup 打开窗口!"
|
413 |
|
414 |
+
#: lib/wfu_constants.php:99
|
415 |
msgid "cannot be empty!"
|
416 |
msgstr "不能为空白!"
|
417 |
|
418 |
+
#: lib/wfu_constants.php:100
|
419 |
msgid "number not valid!"
|
420 |
msgstr "无效数字!"
|
421 |
|
422 |
+
#: lib/wfu_constants.php:101
|
423 |
msgid "email not valid!"
|
424 |
msgstr "无效邮件!"
|
425 |
|
426 |
+
#: lib/wfu_constants.php:102
|
427 |
msgid "emails do not match!"
|
428 |
msgstr "邮箱不符!"
|
429 |
|
430 |
+
#: lib/wfu_constants.php:103
|
431 |
msgid "no base email field in group!"
|
432 |
msgstr "在组中没有基本邮件区域!"
|
433 |
|
434 |
+
#: lib/wfu_constants.php:104
|
435 |
msgid "passwords do not match!"
|
436 |
msgstr "口令不符!"
|
437 |
|
438 |
+
#: lib/wfu_constants.php:105
|
439 |
msgid "no base password field in group!"
|
440 |
msgstr "在组中没有基本口令区域!"
|
441 |
|
442 |
+
#: lib/wfu_constants.php:106
|
443 |
msgid "checkbox unchecked!"
|
444 |
msgstr "检查框没打记号!"
|
445 |
|
446 |
+
#: lib/wfu_constants.php:107
|
447 |
msgid "no option selected!"
|
448 |
msgstr "没选择选项!"
|
449 |
|
450 |
+
#: lib/wfu_constants.php:108
|
451 |
msgid "no item selected!"
|
452 |
msgstr "没选择任何物件!"
|
453 |
|
454 |
+
#: lib/wfu_constants.php:109
|
455 |
msgid ""
|
456 |
"There are more than one instances of the plugin in this page with the same "
|
457 |
"id. Please change it."
|
458 |
msgstr "在这个页面中有多个带相同 ID 的插件实例, 请更改。"
|
459 |
|
460 |
+
#: lib/wfu_constants.php:110
|
461 |
msgid ""
|
462 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
463 |
"the page."
|
464 |
msgstr "因为页面被修改,不能编辑短码。请重新加载页面。"
|
465 |
|
466 |
+
#: lib/wfu_constants.php:111
|
467 |
msgid "Your browser does not support webcam capture!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: lib/wfu_constants.php:112
|
471 |
msgid "Your browser does not support video recording from the webcam!"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: lib/wfu_constants.php:113
|
475 |
msgid "No video was recorded!"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: lib/wfu_constants.php:114
|
479 |
msgid ""
|
480 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
481 |
"or use RecaptchaV2 (no account)."
|
483 |
"错误: Captcha 不支持!你有一个旧 PHP 版本。升级你的 PHP 或使用 "
|
484 |
"RecaptchaV2 。"
|
485 |
|
486 |
+
#: lib/wfu_constants.php:115
|
487 |
msgid ""
|
488 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
489 |
"notify administrator."
|
490 |
msgstr "错误:相同页面中只能有一个 RecaptchaV1 实例 存在。请通知管理员。"
|
491 |
|
492 |
+
#: lib/wfu_constants.php:116
|
493 |
msgid ""
|
494 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
495 |
"use RecaptchaV1 (no account)."
|
496 |
msgstr "错误:相同页面中只能有一个 RecaptchaV1 实例 存在。请使用 RecaptchaV1 "
|
497 |
|
498 |
+
#: lib/wfu_constants.php:117
|
499 |
msgid "ERROR: No site key. Please contact administrator!"
|
500 |
msgstr "错误:没有site key. 请联系管理员!"
|
501 |
|
502 |
+
#: lib/wfu_constants.php:118
|
503 |
msgid ""
|
504 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
505 |
"define Google Recaptcha keys."
|
507 |
"错误:没有已定义的 site key! 请在 Dashboard 的插件设置中定义 谷歌 Recaptcha "
|
508 |
"keys。"
|
509 |
|
510 |
+
#: lib/wfu_constants.php:119
|
511 |
msgid "Bad captcha image!"
|
512 |
msgstr "损坏的 captcha 图像!"
|
513 |
|
514 |
+
#: lib/wfu_constants.php:120
|
515 |
msgid "No input!"
|
516 |
msgstr "没有输入!"
|
517 |
|
518 |
+
#: lib/wfu_constants.php:121
|
519 |
msgid "Captcha not completed!"
|
520 |
msgstr "captcha 不完整!"
|
521 |
|
522 |
+
#: lib/wfu_constants.php:122
|
523 |
msgid "Wrong captcha!"
|
524 |
msgstr "错误的 captcha!"
|
525 |
|
526 |
+
#: lib/wfu_constants.php:123
|
527 |
msgid "Error refreshing captcha!"
|
528 |
msgstr "更新 captcha 故障!"
|
529 |
|
530 |
+
#: lib/wfu_constants.php:124
|
531 |
msgid "Unknown captcha error!"
|
532 |
msgstr "未知 captcha 错误!"
|
533 |
|
534 |
+
#: lib/wfu_constants.php:125
|
535 |
msgid "Captcha not supported by your browser!"
|
536 |
msgstr "你的浏览器不支持 captcha!"
|
537 |
|
538 |
+
#: lib/wfu_constants.php:126
|
539 |
msgid "the secret parameter is missing"
|
540 |
msgstr "秘密参数丢失"
|
541 |
|
542 |
+
#: lib/wfu_constants.php:127
|
543 |
msgid "the secret parameter is invalid or malformed"
|
544 |
msgstr "秘密参数无效或出错"
|
545 |
|
546 |
+
#: lib/wfu_constants.php:128
|
547 |
msgid "the response parameter is missing"
|
548 |
msgstr "相应参数丢失"
|
549 |
|
550 |
+
#: lib/wfu_constants.php:129
|
551 |
msgid "the response parameter is invalid or malformed"
|
552 |
msgstr "相应参数无效或出错"
|
553 |
|
554 |
+
#: lib/wfu_constants.php:130
|
555 |
msgid "Please do not use drag drop due to an internal problem."
|
556 |
msgstr "由于内部问题,请不要使用托拽功能。"
|
557 |
|
558 |
+
#: lib/wfu_constants.php:131
|
559 |
#, php-format
|
560 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
561 |
msgstr "分片加载时出错。分片 %d 中唯一的ID 空白"
|
562 |
|
563 |
+
#: lib/wfu_constants.php:132
|
564 |
msgid "Chunked upload is not allowed!"
|
565 |
msgstr "不允许分片加载!"
|
566 |
|
567 |
+
#: lib/wfu_constants.php:133
|
568 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
569 |
msgstr "由于前一分片出错,分片加载终止!"
|
570 |
|
571 |
+
#: lib/wfu_constants.php:134
|
572 |
msgid "Chunked upload failed, final file could not be created!"
|
573 |
msgstr "分片加载失败,不能生成最终文件!"
|
574 |
|
575 |
+
#: lib/wfu_constants.php:135
|
576 |
#, php-format
|
577 |
msgid "Could not write file chuck to destination on chunk %d"
|
578 |
msgstr "不能将文件分片写到分片 %d 中"
|
579 |
|
580 |
+
#: lib/wfu_constants.php:136
|
581 |
#, php-format
|
582 |
msgid "Could not enlarge destination file on chunk %d"
|
583 |
msgstr "不能加大分片 %d 上的目标文件"
|
584 |
|
585 |
+
#: lib/wfu_constants.php:137
|
586 |
#, php-format
|
587 |
msgid "Could not open file handles on chunk %d"
|
588 |
msgstr "不能打开分片 %d 上的文件 handles"
|
589 |
|
590 |
+
#: lib/wfu_constants.php:138
|
591 |
msgid "You are not allowed to download this file!"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: lib/wfu_constants.php:139
|
595 |
msgid "File does not exist!"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: lib/wfu_constants.php:140
|
599 |
msgid "Could not download file!"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: lib/wfu_constants.php:141
|
603 |
msgid "You are not allowed to delete this file!"
|
604 |
msgstr "不允许删除该文件!"
|
605 |
|
606 |
+
#: lib/wfu_constants.php:142
|
607 |
msgid "File was not deleted!"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: lib/wfu_constants.php:143
|
611 |
msgid "No file was deleted!"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: lib/wfu_constants.php:144
|
615 |
msgid "Some files were not deleted!"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: lib/wfu_constants.php:146
|
619 |
msgid "Upload skipped! File already exists."
|
620 |
msgstr "跳过加载!文件已经存在。"
|
621 |
|
622 |
+
#: lib/wfu_constants.php:147
|
623 |
msgid "The extension of the file does not match its contents."
|
624 |
msgstr "该文件的扩展名与其内容不符。"
|
625 |
|
626 |
+
#: lib/wfu_constants.php:148
|
627 |
msgid ""
|
628 |
"Upload succeeded but the file is suspicious because its contents do not "
|
629 |
"match its extension. Its proper filename is: "
|
630 |
msgstr "上传成功,但因为他的内容与其扩展名不符,文件可疑。正确的文件名是:"
|
631 |
|
632 |
+
#: lib/wfu_constants.php:149
|
633 |
msgid "No files have been selected!"
|
634 |
msgstr "没有选择文件!"
|
635 |
|
636 |
+
#: lib/wfu_constants.php:150
|
637 |
msgid "Please complete the consent question before continuing the upload!"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: lib/wfu_constants.php:151
|
641 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
642 |
msgstr "因为没有加载的文件,WPFilebase 插件没更新"
|
643 |
|
644 |
+
#: lib/wfu_constants.php:152
|
645 |
msgid "Notification email was not sent because there were no files uploaded."
|
646 |
msgstr "因为没有加载文件,通知邮件没发出。"
|
647 |
|
648 |
+
#: lib/wfu_constants.php:153
|
649 |
msgid ""
|
650 |
"Notification email was not sent because no recipients were defined. Please "
|
651 |
"check notifyrecipients attribute in the shortcode."
|
652 |
msgstr ""
|
653 |
"因为没有定义收件人,通知邮件没发出。请检查 短码中的 notifyrecipients 属性"
|
654 |
|
655 |
+
#: lib/wfu_constants.php:154
|
656 |
msgid ""
|
657 |
"Notification email was not sent due to an error. Please check "
|
658 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
660 |
"由于出错,通知邮件没发出。请检查 notifyrecipients, notifysubject 和 "
|
661 |
"notifymessage 属性"
|
662 |
|
663 |
+
#: lib/wfu_constants.php:155
|
664 |
msgid ""
|
665 |
"Redirection not executed because redirection link is empty. Please check "
|
666 |
"redirectlink attribute."
|
667 |
msgstr "因为重新定位链接空白,重新定位不执行。请检查 redirectlink 属性。"
|
668 |
|
669 |
+
#: lib/wfu_constants.php:156
|
670 |
msgid ""
|
671 |
"Redirection not executed because not all files were successfully uploaded."
|
672 |
msgstr "因为不是所有的文件都成功加载,重新定位不执行。"
|
673 |
|
674 |
+
#: lib/wfu_constants.php:157
|
675 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: lib/wfu_constants.php:158
|
679 |
msgid ""
|
680 |
"Hello admin\n"
|
681 |
"\n"
|
695 |
"Thanks"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: lib/wfu_constants.php:159
|
699 |
msgid ""
|
700 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
701 |
"details please contact info@iptanus.com."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: lib/wfu_constants.php:160
|
705 |
msgid ""
|
706 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
707 |
"plugin functions. Please read this :article: for resolution."
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: lib/wfu_constants.php:162
|
711 |
msgid ""
|
712 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
713 |
"message persists, contact administrator."
|
714 |
msgstr "添加短码到 page/post 失败。请重新试一下。 如果仍有错误, 联系管理员。"
|
715 |
|
716 |
+
#: lib/wfu_constants.php:163
|
717 |
msgid ""
|
718 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
719 |
"again to edit the shortcode."
|
720 |
msgstr "因为页面内容改变,编辑短码失败。再重新编辑该短码。"
|
721 |
|
722 |
+
#: lib/wfu_constants.php:164
|
723 |
msgid ""
|
724 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
725 |
"again to delete it."
|
726 |
msgstr "因为页面内容改变,删除短码失败。再重新删除。"
|
727 |
|
728 |
+
#: lib/wfu_constants.php:165
|
729 |
msgid ""
|
730 |
"The page containing the shortcode has been modified and it is no longer "
|
731 |
"valid. Please go back to reload the shortcode."
|
732 |
msgstr "含有短码的页面已经被修改,它不再有效。请回到重新加载该短码。"
|
733 |
|
734 |
+
#: lib/wfu_constants.php:166
|
735 |
msgid ""
|
736 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
737 |
"back to reload the shortcode."
|
738 |
msgstr "因为页面内容被修改,更新短码失败。回到重新加载该短码。"
|
739 |
|
740 |
+
#: lib/wfu_constants.php:167
|
741 |
msgid ""
|
742 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
743 |
"go back and reload the shortcode."
|
744 |
msgstr "更新短码失败。请重新再试。如果问题仍存在,返回查询加载该短码。"
|
745 |
|
746 |
+
#: lib/wfu_constants.php:169
|
747 |
msgid "This is a test message"
|
748 |
msgstr "这是一个测试信息"
|
749 |
|
750 |
+
#: lib/wfu_constants.php:170
|
751 |
msgid "This is a test administrator message"
|
752 |
msgstr "这是一个测试管理员信息"
|
753 |
|
754 |
+
#: lib/wfu_constants.php:171
|
755 |
msgid "File testfile 1 under test"
|
756 |
msgstr "测试中的文件 testfile 1"
|
757 |
|
758 |
+
#: lib/wfu_constants.php:172
|
759 |
msgid "File testfile 1 message"
|
760 |
msgstr "文件 testfile 1 信息"
|
761 |
|
762 |
+
#: lib/wfu_constants.php:173
|
763 |
msgid "File testfile 1 administrator message"
|
764 |
msgstr "文件 testfile 1 管理员信息"
|
765 |
|
766 |
+
#: lib/wfu_constants.php:174
|
767 |
msgid "File testfile 2 under test"
|
768 |
msgstr "测试中的文件 testfile 2"
|
769 |
|
770 |
+
#: lib/wfu_constants.php:175
|
771 |
msgid "File testfile 2 message"
|
772 |
msgstr "文件 testfile 2 信息"
|
773 |
|
774 |
+
#: lib/wfu_constants.php:176
|
775 |
msgid "File testfile 2 administrator message"
|
776 |
msgstr "文件 testfile 2 管理员信息"
|
777 |
|
778 |
+
#: lib/wfu_constants.php:178
|
779 |
msgid ""
|
780 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
781 |
"current user."
|
782 |
msgstr "在文本中插入变量 %userid%。 它将被当前用户的 ID 替换。"
|
783 |
|
784 |
+
#: lib/wfu_constants.php:179
|
785 |
msgid ""
|
786 |
"Insert variable %username% inside text. It will be replaced by the username "
|
787 |
"of the current user."
|
788 |
msgstr "在文本中插入变量 %username%。 它将被当前用户的用户名替换。"
|
789 |
|
790 |
+
#: lib/wfu_constants.php:180
|
791 |
msgid ""
|
792 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
793 |
"the current user."
|
794 |
msgstr "在文本中插入变量 %useremail%。 它将被当前用户的邮替换。"
|
795 |
|
796 |
+
#: lib/wfu_constants.php:181
|
797 |
msgid ""
|
798 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
799 |
"of the uploaded file."
|
800 |
msgstr "在文本中插入变量 %filename%。 它将被上传文件的文件名替换。"
|
801 |
|
802 |
+
#: lib/wfu_constants.php:182
|
803 |
msgid ""
|
804 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
805 |
"filepath of the uploaded file."
|
806 |
msgstr "在文本中插入变量 %filepath%。 它将被上传文件的文件路径替换。"
|
807 |
|
808 |
+
#: lib/wfu_constants.php:183
|
809 |
msgid ""
|
810 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
811 |
"the website."
|
812 |
msgstr "在文本中插入变量 %blogid%。 它将被该网站的blog ID替换。"
|
813 |
|
814 |
+
#: lib/wfu_constants.php:184
|
815 |
msgid ""
|
816 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
817 |
"current page."
|
818 |
msgstr "在文本中插入变量 %pageid%。 它将被当前页面的 ID 替换。"
|
819 |
|
820 |
+
#: lib/wfu_constants.php:185
|
821 |
msgid ""
|
822 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
823 |
"the current page."
|
824 |
msgstr "在文本中插入变量 %pagetitle%。 它将被上传文件的名称替换。"
|
825 |
|
826 |
+
#: lib/wfu_constants.php:186
|
827 |
msgid ""
|
828 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
829 |
"drop-down list. It will be replaced by the value that the user entered in "
|
832 |
"在文本中插入变量 %userdataXXX%。从下拉表中选择该用户区域。它将被用户在此区域"
|
833 |
"输入的值替换。"
|
834 |
|
835 |
+
#: lib/wfu_constants.php:187
|
836 |
msgid "Insert variable %n% inside text to denote a line change."
|
837 |
msgstr "在文本中插入变量 %n%。表明一行变化。"
|
838 |
|
839 |
+
#: lib/wfu_constants.php:189
|
840 |
+
#, php-format
|
841 |
+
msgid "File %filename% uploaded successfully but not saved"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: lib/wfu_constants.php:190
|
845 |
msgid "Test Mode"
|
846 |
msgstr "测试模式"
|
847 |
|
848 |
+
#: lib/wfu_constants.php:191
|
849 |
msgid "select dir..."
|
850 |
msgstr "选择 dir ..."
|
851 |
|
852 |
+
#: lib/wfu_constants.php:192
|
853 |
msgid "type dir"
|
854 |
msgstr "键入 dir"
|
855 |
|
856 |
+
#: lib/wfu_constants.php:193
|
857 |
msgid "Upload path: %filepath%"
|
858 |
msgstr "加载路径:%filepath%"
|
859 |
|
860 |
+
#: lib/wfu_constants.php:194
|
861 |
msgid "Failed upload path: %filepath%"
|
862 |
msgstr "加载路径失败: %filepath%"
|
863 |
|
864 |
+
#: lib/wfu_constants.php:195
|
865 |
msgid " (required)"
|
866 |
msgstr "(必需)"
|
867 |
|
868 |
+
#: lib/wfu_constants.php:196
|
869 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
870 |
msgstr "文件正在加载中,你确定要退出这个页面吗?"
|
871 |
|
872 |
+
#: lib/wfu_constants.php:197
|
873 |
msgid "checking captcha..."
|
874 |
msgstr "正在检查 captcha ..."
|
875 |
|
876 |
+
#: lib/wfu_constants.php:198
|
877 |
msgid "refreshing..."
|
878 |
msgstr "正在更新 ..."
|
879 |
|
880 |
+
#: lib/wfu_constants.php:199
|
881 |
msgid "correct captcha"
|
882 |
msgstr "正确的 captcha"
|
883 |
|
884 |
+
#: lib/wfu_constants.php:200
|
885 |
msgid "click to continue the upload"
|
886 |
msgstr "点击继续上传"
|
887 |
|
888 |
+
#: lib/wfu_constants.php:201
|
889 |
msgid "Are you sure you want to delete this file?"
|
890 |
msgstr "确定要删除这个文件吗?"
|
891 |
|
892 |
+
#: lib/wfu_constants.php:202
|
893 |
msgid "Are you sure you want to delete these files?"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: lib/wfu_constants.php:203
|
897 |
msgid "Bulk Actions"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: lib/wfu_constants.php:204
|
901 |
msgid "Apply"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: lib/wfu_constants.php:206
|
905 |
msgid "of "
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: lib/wfu_constants.php:207
|
909 |
msgid "Are you sure that you want to cancel the upload?"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: lib/wfu_constants.php:208
|
913 |
msgid "cancel upload of this file"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: lib/wfu_constants.php:209
|
917 |
msgid "Upload in progress"
|
918 |
msgstr "上传正在进行中"
|
919 |
|
920 |
+
#: lib/wfu_constants.php:210
|
921 |
msgid "Upload in progress with warnings!"
|
922 |
msgstr "上传正在进行中,有警告提示!"
|
923 |
|
924 |
+
#: lib/wfu_constants.php:211
|
925 |
msgid "Upload in progress but some files already failed!"
|
926 |
msgstr "上传正在进行中,有些文件已经加载失败!"
|
927 |
|
928 |
+
#: lib/wfu_constants.php:212
|
929 |
msgid "Upload in progress but no files uploaded so far!"
|
930 |
msgstr "上传正在进行中,还没有文件载入!"
|
931 |
|
932 |
+
#: lib/wfu_constants.php:213
|
933 |
msgid "All files uploaded successfully"
|
934 |
msgstr "所有危机上传成功"
|
935 |
|
936 |
+
#: lib/wfu_constants.php:214
|
937 |
msgid "All files uploaded successfully but there are warnings!"
|
938 |
msgstr "所有文件上传成功,但有警告提示!"
|
939 |
|
940 |
+
#: lib/wfu_constants.php:215
|
941 |
msgid "File uploaded successfully but there are warnings!"
|
942 |
msgstr "文件上传成功,但有警告提示!"
|
943 |
|
944 |
+
#: lib/wfu_constants.php:216
|
945 |
msgid "Some files failed to upload!"
|
946 |
msgstr "部分文件上传失败!"
|
947 |
|
948 |
+
#: lib/wfu_constants.php:217
|
949 |
msgid "All files failed to upload"
|
950 |
msgstr "所以我就上传失败"
|
951 |
|
952 |
+
#: lib/wfu_constants.php:218
|
953 |
msgid "File failed to upload"
|
954 |
msgstr "文件上传失败"
|
955 |
|
956 |
+
#: lib/wfu_constants.php:219
|
957 |
msgid "There are no files to upload!"
|
958 |
msgstr "没有要上传的文件!"
|
959 |
|
960 |
+
#: lib/wfu_constants.php:220
|
961 |
msgid "Test upload message"
|
962 |
msgstr "测试上传信息"
|
963 |
|
964 |
+
#: lib/wfu_constants.php:221
|
965 |
msgid "JSON parse warning!"
|
966 |
msgstr "JSON语法分析警告!"
|
967 |
|
968 |
+
#: lib/wfu_constants.php:222
|
969 |
msgid "please wait while redirecting..."
|
970 |
msgstr "请等候,正在重新定位 ..."
|
971 |
|
972 |
+
#: lib/wfu_constants.php:224
|
973 |
msgid "Submitting data"
|
974 |
msgstr ""
|
975 |
|
976 |
+
#: lib/wfu_constants.php:225
|
977 |
msgid "Data submitted successfully!"
|
978 |
msgstr ""
|
979 |
|
980 |
+
#: lib/wfu_constants.php:226
|
981 |
msgid "Data were not submitted!"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: lib/wfu_constants.php:227
|
985 |
msgid "Cancelling upload"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: lib/wfu_constants.php:229
|
989 |
+
msgid "Upload succeeded!"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: lib/wfu_constants.php:230
|
993 |
+
msgid "Upload completed but no files were saved!"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: lib/wfu_constants.php:231
|
997 |
+
msgid "File was not saved due to personal data policy!"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: lib/wfu_constants.php:232
|
1001 |
msgid "Open visual shortcode editor in new window"
|
1002 |
msgstr "在新窗口打开视频 shortcode 编辑器"
|
1003 |
|
1004 |
+
#: lib/wfu_constants.php:233
|
1005 |
msgid "loading visual editor"
|
1006 |
msgstr "加载视频编辑器"
|
1007 |
|
1008 |
+
#: lib/wfu_constants.php:234
|
1009 |
msgid "Clear file list?"
|
1010 |
msgstr "清除文件列表?"
|
1011 |
|
1012 |
+
#: lib/wfu_constants.php:235
|
1013 |
msgid "DROP HERE"
|
1014 |
msgstr "放在这里"
|
1015 |
|
1016 |
+
#: lib/wfu_constants.php:237
|
1017 |
msgid "record video"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: lib/wfu_constants.php:238
|
1021 |
msgid "take a picture"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: lib/wfu_constants.php:239
|
1025 |
msgid "turn webcam on/off"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: lib/wfu_constants.php:240
|
1029 |
msgid "go live again"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: lib/wfu_constants.php:241
|
1033 |
msgid "end recording"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: lib/wfu_constants.php:242
|
1037 |
msgid "play"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: lib/wfu_constants.php:243
|
1041 |
msgid "pause"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: lib/wfu_constants.php:244
|
1045 |
msgid "go to the beginning"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: lib/wfu_constants.php:245
|
1049 |
msgid "go to the end"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: lib/wfu_constants.php:247
|
1053 |
msgid "Wordpress File Upload Form"
|
1054 |
msgstr "Wordpress 文件上传格式"
|
1055 |
|
1056 |
+
#: lib/wfu_constants.php:248
|
1057 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1058 |
msgstr "针对sidebars 的 Wordpress 文件上传插件工具"
|
1059 |
|
1060 |
+
#: lib/wfu_constants.php:249
|
1061 |
msgid "Upload Files"
|
1062 |
msgstr "上传文件"
|
1063 |
|
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: 2018-
|
6 |
-
"PO-Revision-Date: 2018-
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
@@ -102,559 +102,565 @@ msgid ""
|
|
102 |
"By activating this option I agree to let the website keep my personal data"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: lib/wfu_constants.php:
|
106 |
-
msgid "
|
|
|
|
|
107 |
msgstr ""
|
108 |
|
109 |
#: lib/wfu_constants.php:36
|
110 |
-
msgid "
|
111 |
msgstr ""
|
112 |
|
113 |
#: lib/wfu_constants.php:37
|
114 |
-
msgid "
|
115 |
msgstr ""
|
116 |
|
117 |
#: lib/wfu_constants.php:38
|
|
|
|
|
|
|
|
|
118 |
msgid "User"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: lib/wfu_constants.php:
|
122 |
msgid "Page"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: lib/wfu_constants.php:
|
126 |
msgid "User Fields"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: lib/wfu_constants.php:
|
130 |
msgid "Download"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: lib/wfu_constants.php:
|
134 |
msgid "Download this file"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: lib/wfu_constants.php:
|
138 |
msgid "Delete"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: lib/wfu_constants.php:
|
142 |
msgid "Delete this file"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: lib/wfu_constants.php:
|
146 |
msgid "Sort list based on this column"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: lib/wfu_constants.php:
|
150 |
msgid "guest"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: lib/wfu_constants.php:
|
154 |
msgid "unknown"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: lib/wfu_constants.php:
|
158 |
msgid ""
|
159 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
160 |
"attribute."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: lib/wfu_constants.php:
|
164 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: lib/wfu_constants.php:
|
168 |
msgid ""
|
169 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
170 |
"syntax."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: lib/wfu_constants.php:
|
174 |
msgid ""
|
175 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
176 |
"attribute."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: lib/wfu_constants.php:
|
180 |
msgid ""
|
181 |
"Error. Could not open source file for ftp upload. Check if file is "
|
182 |
"accessible."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: lib/wfu_constants.php:
|
186 |
msgid "Error. Could not send data to ftp target file."
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: lib/wfu_constants.php:
|
190 |
msgid ""
|
191 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
192 |
"attribute."
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: lib/wfu_constants.php:
|
196 |
msgid ""
|
197 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
198 |
"'ftpinfo' attribute."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: lib/wfu_constants.php:
|
202 |
msgid ""
|
203 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
204 |
"supports sftp."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: lib/wfu_constants.php:
|
208 |
msgid "Error. The web server does not support sftp."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: lib/wfu_constants.php:
|
212 |
msgid ""
|
213 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
214 |
"preventing the upload of big files.\n"
|
215 |
"PHP directive upload_max_filesize limit is: "
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: lib/wfu_constants.php:
|
219 |
msgid ""
|
220 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
221 |
"upload of big files.\n"
|
222 |
"PHP directive max_input_time limit is: "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: lib/wfu_constants.php:
|
226 |
msgid ""
|
227 |
"Error. Permission denied to write to target folder.\n"
|
228 |
"Check and correct read/write permissions of target folder."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: lib/wfu_constants.php:
|
232 |
msgid ""
|
233 |
"Error. This file was rejected because its extension is not correct. Its "
|
234 |
"proper filename is: "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: lib/wfu_constants.php:
|
238 |
msgid ""
|
239 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
240 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
241 |
"suspicious behaviour."
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: lib/wfu_constants.php:
|
245 |
msgid ""
|
246 |
"File not uploaded in order to prevent overflow of the website. Please "
|
247 |
"contact administrator."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: lib/wfu_constants.php:
|
251 |
msgid "Target folder doesn't exist."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: lib/wfu_constants.php:
|
255 |
msgid "Upload failed! Missing a temporary folder."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: lib/wfu_constants.php:
|
259 |
msgid "Upload failed! Permission denied to write to target folder."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: lib/wfu_constants.php:
|
263 |
msgid "File not allowed."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: lib/wfu_constants.php:
|
267 |
msgid "File is suspicious and was rejected."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: lib/wfu_constants.php:
|
271 |
msgid "The uploaded file exceeds the file size limit."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: lib/wfu_constants.php:
|
275 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: lib/wfu_constants.php:
|
279 |
msgid ""
|
280 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
281 |
"Please contact the administrator."
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: lib/wfu_constants.php:
|
285 |
msgid ""
|
286 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
287 |
"server. Please contact the administrator."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: lib/wfu_constants.php:
|
291 |
msgid ""
|
292 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
293 |
"was specified in the HTML form."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: lib/wfu_constants.php:
|
297 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: lib/wfu_constants.php:
|
301 |
msgid "Upload failed! No file was uploaded."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: lib/wfu_constants.php:
|
305 |
msgid "Upload failed! Failed to write file to disk."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: lib/wfu_constants.php:
|
309 |
msgid ""
|
310 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
311 |
"administrator."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: lib/wfu_constants.php:
|
315 |
msgid "Upload cancelled!"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: lib/wfu_constants.php:
|
319 |
msgid ""
|
320 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
321 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
322 |
"the list of loaded extensions with phpinfo() may help."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: lib/wfu_constants.php:
|
326 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: lib/wfu_constants.php:
|
330 |
msgid "Upload failed!"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: lib/wfu_constants.php:
|
334 |
msgid "No file!"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: lib/wfu_constants.php:
|
338 |
msgid ""
|
339 |
"Upload failed! The upload has been canceled by the user or the browser "
|
340 |
"dropped the connection."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: lib/wfu_constants.php:
|
344 |
msgid "Upload failed! Unknown error."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: lib/wfu_constants.php:
|
348 |
msgid "Please contact the administrator."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: lib/wfu_constants.php:
|
352 |
msgid "No result from remote server!"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: lib/wfu_constants.php:
|
356 |
msgid " but with warnings"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: lib/wfu_constants.php:
|
360 |
msgid "Warning: JSON parse error."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: lib/wfu_constants.php:
|
364 |
msgid ""
|
365 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
366 |
"not be parsed."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: lib/wfu_constants.php:
|
370 |
msgid ""
|
371 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: lib/wfu_constants.php:
|
375 |
msgid ""
|
376 |
"Redirection to classic form functionality occurred due to unknown error."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: lib/wfu_constants.php:
|
380 |
msgid ""
|
381 |
"Redirection to classic form functionality occurred because AJAX is not "
|
382 |
"supported."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: lib/wfu_constants.php:
|
386 |
msgid ""
|
387 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
388 |
"supported."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: lib/wfu_constants.php:
|
392 |
msgid ""
|
393 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: lib/wfu_constants.php:
|
397 |
msgid "Please enable popup windows from the browser's settings!"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: lib/wfu_constants.php:
|
401 |
msgid "cannot be empty!"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: lib/wfu_constants.php:
|
405 |
msgid "number not valid!"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: lib/wfu_constants.php:
|
409 |
msgid "email not valid!"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: lib/wfu_constants.php:
|
413 |
msgid "emails do not match!"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: lib/wfu_constants.php:
|
417 |
msgid "no base email field in group!"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: lib/wfu_constants.php:
|
421 |
msgid "passwords do not match!"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: lib/wfu_constants.php:
|
425 |
msgid "no base password field in group!"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: lib/wfu_constants.php:
|
429 |
msgid "checkbox unchecked!"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: lib/wfu_constants.php:
|
433 |
msgid "no option selected!"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: lib/wfu_constants.php:
|
437 |
msgid "no item selected!"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: lib/wfu_constants.php:
|
441 |
msgid ""
|
442 |
"There are more than one instances of the plugin in this page with the same "
|
443 |
"id. Please change it."
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: lib/wfu_constants.php:
|
447 |
msgid ""
|
448 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
449 |
"the page."
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: lib/wfu_constants.php:
|
453 |
msgid "Your browser does not support webcam capture!"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: lib/wfu_constants.php:
|
457 |
msgid "Your browser does not support video recording from the webcam!"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: lib/wfu_constants.php:
|
461 |
msgid "No video was recorded!"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: lib/wfu_constants.php:
|
465 |
msgid ""
|
466 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
467 |
"or use RecaptchaV2 (no account)."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: lib/wfu_constants.php:
|
471 |
msgid ""
|
472 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
473 |
"notify administrator."
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: lib/wfu_constants.php:
|
477 |
msgid ""
|
478 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
479 |
"use RecaptchaV1 (no account)."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: lib/wfu_constants.php:
|
483 |
msgid "ERROR: No site key. Please contact administrator!"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: lib/wfu_constants.php:
|
487 |
msgid ""
|
488 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
489 |
"define Google Recaptcha keys."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: lib/wfu_constants.php:
|
493 |
msgid "Bad captcha image!"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: lib/wfu_constants.php:
|
497 |
msgid "No input!"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: lib/wfu_constants.php:
|
501 |
msgid "Captcha not completed!"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: lib/wfu_constants.php:
|
505 |
msgid "Wrong captcha!"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: lib/wfu_constants.php:
|
509 |
msgid "Error refreshing captcha!"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: lib/wfu_constants.php:
|
513 |
msgid "Unknown captcha error!"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: lib/wfu_constants.php:
|
517 |
msgid "Captcha not supported by your browser!"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: lib/wfu_constants.php:
|
521 |
msgid "the secret parameter is missing"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: lib/wfu_constants.php:
|
525 |
msgid "the secret parameter is invalid or malformed"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: lib/wfu_constants.php:
|
529 |
msgid "the response parameter is missing"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: lib/wfu_constants.php:
|
533 |
msgid "the response parameter is invalid or malformed"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: lib/wfu_constants.php:
|
537 |
msgid "Please do not use drag drop due to an internal problem."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: lib/wfu_constants.php:
|
541 |
#, php-format
|
542 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: lib/wfu_constants.php:
|
546 |
msgid "Chunked upload is not allowed!"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: lib/wfu_constants.php:
|
550 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: lib/wfu_constants.php:
|
554 |
msgid "Chunked upload failed, final file could not be created!"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: lib/wfu_constants.php:
|
558 |
#, php-format
|
559 |
msgid "Could not write file chuck to destination on chunk %d"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: lib/wfu_constants.php:
|
563 |
#, php-format
|
564 |
msgid "Could not enlarge destination file on chunk %d"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: lib/wfu_constants.php:
|
568 |
#, php-format
|
569 |
msgid "Could not open file handles on chunk %d"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: lib/wfu_constants.php:
|
573 |
msgid "You are not allowed to download this file!"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: lib/wfu_constants.php:
|
577 |
msgid "File does not exist!"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: lib/wfu_constants.php:
|
581 |
msgid "Could not download file!"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: lib/wfu_constants.php:
|
585 |
msgid "You are not allowed to delete this file!"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: lib/wfu_constants.php:
|
589 |
msgid "File was not deleted!"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: lib/wfu_constants.php:
|
593 |
msgid "No file was deleted!"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: lib/wfu_constants.php:
|
597 |
msgid "Some files were not deleted!"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: lib/wfu_constants.php:
|
601 |
msgid "Upload skipped! File already exists."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: lib/wfu_constants.php:
|
605 |
msgid "The extension of the file does not match its contents."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: lib/wfu_constants.php:
|
609 |
msgid ""
|
610 |
"Upload succeeded but the file is suspicious because its contents do not "
|
611 |
"match its extension. Its proper filename is: "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: lib/wfu_constants.php:
|
615 |
msgid "No files have been selected!"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: lib/wfu_constants.php:
|
619 |
msgid "Please complete the consent question before continuing the upload!"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: lib/wfu_constants.php:
|
623 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: lib/wfu_constants.php:
|
627 |
msgid "Notification email was not sent because there were no files uploaded."
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: lib/wfu_constants.php:
|
631 |
msgid ""
|
632 |
"Notification email was not sent because no recipients were defined. Please "
|
633 |
"check notifyrecipients attribute in the shortcode."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: lib/wfu_constants.php:
|
637 |
msgid ""
|
638 |
"Notification email was not sent due to an error. Please check "
|
639 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: lib/wfu_constants.php:
|
643 |
msgid ""
|
644 |
"Redirection not executed because redirection link is empty. Please check "
|
645 |
"redirectlink attribute."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: lib/wfu_constants.php:
|
649 |
msgid ""
|
650 |
"Redirection not executed because not all files were successfully uploaded."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: lib/wfu_constants.php:
|
654 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: lib/wfu_constants.php:
|
658 |
msgid ""
|
659 |
"Hello admin\n"
|
660 |
"\n"
|
@@ -674,349 +680,366 @@ msgid ""
|
|
674 |
"Thanks"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: lib/wfu_constants.php:
|
678 |
msgid ""
|
679 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
680 |
"details please contact info@iptanus.com."
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: lib/wfu_constants.php:
|
684 |
msgid ""
|
685 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
686 |
"plugin functions. Please read this :article: for resolution."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: lib/wfu_constants.php:
|
690 |
msgid ""
|
691 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
692 |
"message persists, contact administrator."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: lib/wfu_constants.php:
|
696 |
msgid ""
|
697 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
698 |
"again to edit the shortcode."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: lib/wfu_constants.php:
|
702 |
msgid ""
|
703 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
704 |
"again to delete it."
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: lib/wfu_constants.php:
|
708 |
msgid ""
|
709 |
"The page containing the shortcode has been modified and it is no longer "
|
710 |
"valid. Please go back to reload the shortcode."
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: lib/wfu_constants.php:
|
714 |
msgid ""
|
715 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
716 |
"back to reload the shortcode."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: lib/wfu_constants.php:
|
720 |
msgid ""
|
721 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
722 |
"go back and reload the shortcode."
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: lib/wfu_constants.php:
|
726 |
msgid "This is a test message"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: lib/wfu_constants.php:
|
730 |
msgid "This is a test administrator message"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: lib/wfu_constants.php:
|
734 |
msgid "File testfile 1 under test"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: lib/wfu_constants.php:
|
738 |
msgid "File testfile 1 message"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: lib/wfu_constants.php:
|
742 |
msgid "File testfile 1 administrator message"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: lib/wfu_constants.php:
|
746 |
msgid "File testfile 2 under test"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: lib/wfu_constants.php:
|
750 |
msgid "File testfile 2 message"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: lib/wfu_constants.php:
|
754 |
msgid "File testfile 2 administrator message"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: lib/wfu_constants.php:
|
758 |
msgid ""
|
759 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
760 |
"current user."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: lib/wfu_constants.php:
|
764 |
msgid ""
|
765 |
"Insert variable %username% inside text. It will be replaced by the username "
|
766 |
"of the current user."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: lib/wfu_constants.php:
|
770 |
msgid ""
|
771 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
772 |
"the current user."
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: lib/wfu_constants.php:
|
776 |
msgid ""
|
777 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
778 |
"of the uploaded file."
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: lib/wfu_constants.php:
|
782 |
msgid ""
|
783 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
784 |
"filepath of the uploaded file."
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: lib/wfu_constants.php:
|
788 |
msgid ""
|
789 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
790 |
"the website."
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: lib/wfu_constants.php:
|
794 |
msgid ""
|
795 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
796 |
"current page."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: lib/wfu_constants.php:
|
800 |
msgid ""
|
801 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
802 |
"the current page."
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: lib/wfu_constants.php:
|
806 |
msgid ""
|
807 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
808 |
"drop-down list. It will be replaced by the value that the user entered in "
|
809 |
"this field."
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: lib/wfu_constants.php:
|
813 |
msgid "Insert variable %n% inside text to denote a line change."
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
817 |
msgid "Test Mode"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: lib/wfu_constants.php:
|
821 |
msgid "select dir..."
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: lib/wfu_constants.php:
|
825 |
msgid "type dir"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: lib/wfu_constants.php:
|
829 |
msgid "Upload path: %filepath%"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: lib/wfu_constants.php:
|
833 |
msgid "Failed upload path: %filepath%"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: lib/wfu_constants.php:
|
837 |
msgid " (required)"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: lib/wfu_constants.php:
|
841 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: lib/wfu_constants.php:
|
845 |
msgid "checking captcha..."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: lib/wfu_constants.php:
|
849 |
msgid "refreshing..."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: lib/wfu_constants.php:
|
853 |
msgid "correct captcha"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: lib/wfu_constants.php:
|
857 |
msgid "click to continue the upload"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: lib/wfu_constants.php:
|
861 |
msgid "Are you sure you want to delete this file?"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: lib/wfu_constants.php:
|
865 |
msgid "Are you sure you want to delete these files?"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: lib/wfu_constants.php:
|
869 |
msgid "Bulk Actions"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: lib/wfu_constants.php:
|
873 |
msgid "Apply"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: lib/wfu_constants.php:
|
877 |
msgid "of "
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: lib/wfu_constants.php:
|
881 |
msgid "Are you sure that you want to cancel the upload?"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: lib/wfu_constants.php:
|
885 |
msgid "cancel upload of this file"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: lib/wfu_constants.php:
|
889 |
msgid "Upload in progress"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: lib/wfu_constants.php:
|
893 |
msgid "Upload in progress with warnings!"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: lib/wfu_constants.php:
|
897 |
msgid "Upload in progress but some files already failed!"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: lib/wfu_constants.php:
|
901 |
msgid "Upload in progress but no files uploaded so far!"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: lib/wfu_constants.php:
|
905 |
msgid "All files uploaded successfully"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: lib/wfu_constants.php:
|
909 |
msgid "All files uploaded successfully but there are warnings!"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: lib/wfu_constants.php:
|
913 |
msgid "File uploaded successfully but there are warnings!"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: lib/wfu_constants.php:
|
917 |
msgid "Some files failed to upload!"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: lib/wfu_constants.php:
|
921 |
msgid "All files failed to upload"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: lib/wfu_constants.php:
|
925 |
msgid "File failed to upload"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: lib/wfu_constants.php:
|
929 |
msgid "There are no files to upload!"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: lib/wfu_constants.php:
|
933 |
msgid "Test upload message"
|
934 |
msgstr ""
|
935 |
|
936 |
-
#: lib/wfu_constants.php:
|
937 |
msgid "JSON parse warning!"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: lib/wfu_constants.php:
|
941 |
msgid "please wait while redirecting..."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: lib/wfu_constants.php:
|
945 |
msgid "Submitting data"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: lib/wfu_constants.php:
|
949 |
msgid "Data submitted successfully!"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: lib/wfu_constants.php:
|
953 |
msgid "Data were not submitted!"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: lib/wfu_constants.php:
|
957 |
msgid "Cancelling upload"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: lib/wfu_constants.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
961 |
msgid "Open visual shortcode editor in new window"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: lib/wfu_constants.php:
|
965 |
msgid "loading visual editor"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: lib/wfu_constants.php:
|
969 |
msgid "Clear file list?"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: lib/wfu_constants.php:
|
973 |
msgid "DROP HERE"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: lib/wfu_constants.php:
|
977 |
msgid "record video"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: lib/wfu_constants.php:
|
981 |
msgid "take a picture"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: lib/wfu_constants.php:
|
985 |
msgid "turn webcam on/off"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: lib/wfu_constants.php:
|
989 |
msgid "go live again"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: lib/wfu_constants.php:
|
993 |
msgid "end recording"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: lib/wfu_constants.php:
|
997 |
msgid "play"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: lib/wfu_constants.php:
|
1001 |
msgid "pause"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: lib/wfu_constants.php:
|
1005 |
msgid "go to the beginning"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: lib/wfu_constants.php:
|
1009 |
msgid "go to the end"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: lib/wfu_constants.php:
|
1013 |
msgid "Wordpress File Upload Form"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: lib/wfu_constants.php:
|
1017 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: lib/wfu_constants.php:
|
1021 |
msgid "Upload Files"
|
1022 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Wordpress File Upload\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-12-22 19:37+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-12-22 19:37+0200\n"
|
7 |
"Last-Translator: nickboss <info@iptanus.com>\n"
|
8 |
"Language-Team: Iptanus Team <info@iptanus.com>\n"
|
9 |
"Language: en\n"
|
102 |
"By activating this option I agree to let the website keep my personal data"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: lib/wfu_constants.php:34
|
106 |
+
msgid ""
|
107 |
+
"You have denied to let the website keep your personal data. Upload cannot "
|
108 |
+
"continue!"
|
109 |
msgstr ""
|
110 |
|
111 |
#: lib/wfu_constants.php:36
|
112 |
+
msgid "File"
|
113 |
msgstr ""
|
114 |
|
115 |
#: lib/wfu_constants.php:37
|
116 |
+
msgid "Date"
|
117 |
msgstr ""
|
118 |
|
119 |
#: lib/wfu_constants.php:38
|
120 |
+
msgid "Size"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: lib/wfu_constants.php:39
|
124 |
msgid "User"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: lib/wfu_constants.php:40 lib/wfu_constants.php:205
|
128 |
msgid "Page"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: lib/wfu_constants.php:41
|
132 |
msgid "User Fields"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: lib/wfu_constants.php:42
|
136 |
msgid "Download"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: lib/wfu_constants.php:43
|
140 |
msgid "Download this file"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: lib/wfu_constants.php:44
|
144 |
msgid "Delete"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: lib/wfu_constants.php:45
|
148 |
msgid "Delete this file"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: lib/wfu_constants.php:46
|
152 |
msgid "Sort list based on this column"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: lib/wfu_constants.php:47
|
156 |
msgid "guest"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: lib/wfu_constants.php:48
|
160 |
msgid "unknown"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: lib/wfu_constants.php:50
|
164 |
msgid ""
|
165 |
"Error. Could not resolve ftp target filedir. Check the domain in 'ftpinfo' "
|
166 |
"attribute."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: lib/wfu_constants.php:51
|
170 |
msgid "Error. Invalid ftp information. Check 'ftpinfo' attribute."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: lib/wfu_constants.php:52
|
174 |
msgid ""
|
175 |
"Error. Could not extract ftp information from 'ftpinfo' attribute. Check its "
|
176 |
"syntax."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: lib/wfu_constants.php:53
|
180 |
msgid ""
|
181 |
"Error. Could not resolve ftp target filename. Check the domain in 'ftpinfo' "
|
182 |
"attribute."
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: lib/wfu_constants.php:54
|
186 |
msgid ""
|
187 |
"Error. Could not open source file for ftp upload. Check if file is "
|
188 |
"accessible."
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: lib/wfu_constants.php:55
|
192 |
msgid "Error. Could not send data to ftp target file."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: lib/wfu_constants.php:56
|
196 |
msgid ""
|
197 |
"Error. Could not connect to ftp host. Check the domain in 'ftpinfo' "
|
198 |
"attribute."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: lib/wfu_constants.php:57
|
202 |
msgid ""
|
203 |
"Error. Could not authenticate to ftp host. Check username and password in "
|
204 |
"'ftpinfo' attribute."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: lib/wfu_constants.php:58
|
208 |
msgid ""
|
209 |
"Error. Could not initialize sftp subsystem. Please check if the server "
|
210 |
"supports sftp."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: lib/wfu_constants.php:59
|
214 |
msgid "Error. The web server does not support sftp."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: lib/wfu_constants.php:60
|
218 |
msgid ""
|
219 |
"Error. The upload size limit of PHP directive upload_max_filesize is "
|
220 |
"preventing the upload of big files.\n"
|
221 |
"PHP directive upload_max_filesize limit is: "
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: lib/wfu_constants.php:61
|
225 |
msgid ""
|
226 |
"The upload time limit of PHP directive max_input_time is preventing the "
|
227 |
"upload of big files.\n"
|
228 |
"PHP directive max_input_time limit is: "
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: lib/wfu_constants.php:62
|
232 |
msgid ""
|
233 |
"Error. Permission denied to write to target folder.\n"
|
234 |
"Check and correct read/write permissions of target folder."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: lib/wfu_constants.php:63
|
238 |
msgid ""
|
239 |
"Error. This file was rejected because its extension is not correct. Its "
|
240 |
"proper filename is: "
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lib/wfu_constants.php:64
|
244 |
msgid ""
|
245 |
"Too many files are uploaded in a short period of time. This may be a Denial-"
|
246 |
"Of-Service attack, so file was rejected. Please check the upload log for "
|
247 |
"suspicious behaviour."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: lib/wfu_constants.php:65
|
251 |
msgid ""
|
252 |
"File not uploaded in order to prevent overflow of the website. Please "
|
253 |
"contact administrator."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: lib/wfu_constants.php:66
|
257 |
msgid "Target folder doesn't exist."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: lib/wfu_constants.php:67
|
261 |
msgid "Upload failed! Missing a temporary folder."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: lib/wfu_constants.php:68
|
265 |
msgid "Upload failed! Permission denied to write to target folder."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: lib/wfu_constants.php:69
|
269 |
msgid "File not allowed."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: lib/wfu_constants.php:70
|
273 |
msgid "File is suspicious and was rejected."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: lib/wfu_constants.php:71
|
277 |
msgid "The uploaded file exceeds the file size limit."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: lib/wfu_constants.php:72
|
281 |
msgid "The uploaded file exceeds 2GB and is not supported by this server."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: lib/wfu_constants.php:73
|
285 |
msgid ""
|
286 |
"Upload failed! The uploaded file exceeds the file size limit of the server. "
|
287 |
"Please contact the administrator."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: lib/wfu_constants.php:74
|
291 |
msgid ""
|
292 |
"Upload failed! The duration of the upload exceeded the time limit of the "
|
293 |
"server. Please contact the administrator."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: lib/wfu_constants.php:75
|
297 |
msgid ""
|
298 |
"Upload failed! The uploaded file exceeds the MAX_FILE_SIZE directive that "
|
299 |
"was specified in the HTML form."
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: lib/wfu_constants.php:76
|
303 |
msgid "Upload failed! The uploaded file was only partially uploaded."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: lib/wfu_constants.php:77
|
307 |
msgid "Upload failed! No file was uploaded."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: lib/wfu_constants.php:78
|
311 |
msgid "Upload failed! Failed to write file to disk."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: lib/wfu_constants.php:79
|
315 |
msgid ""
|
316 |
"Upload failed! Error occured while moving temporary file. Please contact "
|
317 |
"administrator."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: lib/wfu_constants.php:80 lib/wfu_constants.php:228
|
321 |
msgid "Upload cancelled!"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: lib/wfu_constants.php:81
|
325 |
msgid ""
|
326 |
"Upload failed! A PHP extension stopped the file upload. PHP does not provide "
|
327 |
"a way to ascertain which extension caused the file upload to stop; examining "
|
328 |
"the list of loaded extensions with phpinfo() may help."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: lib/wfu_constants.php:82
|
332 |
msgid "Upload failed! Error occured while attemting to upload the file."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: lib/wfu_constants.php:83 lib/wfu_constants.php:223
|
336 |
msgid "Upload failed!"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: lib/wfu_constants.php:84
|
340 |
msgid "No file!"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: lib/wfu_constants.php:85
|
344 |
msgid ""
|
345 |
"Upload failed! The upload has been canceled by the user or the browser "
|
346 |
"dropped the connection."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: lib/wfu_constants.php:86
|
350 |
msgid "Upload failed! Unknown error."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: lib/wfu_constants.php:87
|
354 |
msgid "Please contact the administrator."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: lib/wfu_constants.php:88
|
358 |
msgid "No result from remote server!"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: lib/wfu_constants.php:89
|
362 |
msgid " but with warnings"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: lib/wfu_constants.php:90 lib/wfu_constants.php:92
|
366 |
msgid "Warning: JSON parse error."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: lib/wfu_constants.php:91
|
370 |
msgid ""
|
371 |
"Upload parameters of this file, passed as JSON string to the handler, could "
|
372 |
"not be parsed."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: lib/wfu_constants.php:93
|
376 |
msgid ""
|
377 |
"UploadStates, passed as JSON string to the handler, could not be parsed."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: lib/wfu_constants.php:94
|
381 |
msgid ""
|
382 |
"Redirection to classic form functionality occurred due to unknown error."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: lib/wfu_constants.php:95
|
386 |
msgid ""
|
387 |
"Redirection to classic form functionality occurred because AJAX is not "
|
388 |
"supported."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: lib/wfu_constants.php:96
|
392 |
msgid ""
|
393 |
"Redirection to classic form functionality occurred because HTML5 is not "
|
394 |
"supported."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: lib/wfu_constants.php:97
|
398 |
msgid ""
|
399 |
"Redirection to classic form functionality occurred due to JSON parse error."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: lib/wfu_constants.php:98
|
403 |
msgid "Please enable popup windows from the browser's settings!"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: lib/wfu_constants.php:99
|
407 |
msgid "cannot be empty!"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: lib/wfu_constants.php:100
|
411 |
msgid "number not valid!"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: lib/wfu_constants.php:101
|
415 |
msgid "email not valid!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: lib/wfu_constants.php:102
|
419 |
msgid "emails do not match!"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: lib/wfu_constants.php:103
|
423 |
msgid "no base email field in group!"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: lib/wfu_constants.php:104
|
427 |
msgid "passwords do not match!"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: lib/wfu_constants.php:105
|
431 |
msgid "no base password field in group!"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: lib/wfu_constants.php:106
|
435 |
msgid "checkbox unchecked!"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: lib/wfu_constants.php:107
|
439 |
msgid "no option selected!"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: lib/wfu_constants.php:108
|
443 |
msgid "no item selected!"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: lib/wfu_constants.php:109
|
447 |
msgid ""
|
448 |
"There are more than one instances of the plugin in this page with the same "
|
449 |
"id. Please change it."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: lib/wfu_constants.php:110
|
453 |
msgid ""
|
454 |
"Cannot edit the shortcode because the page has been modified. Please reload "
|
455 |
"the page."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: lib/wfu_constants.php:111
|
459 |
msgid "Your browser does not support webcam capture!"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: lib/wfu_constants.php:112
|
463 |
msgid "Your browser does not support video recording from the webcam!"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: lib/wfu_constants.php:113
|
467 |
msgid "No video was recorded!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: lib/wfu_constants.php:114
|
471 |
msgid ""
|
472 |
"ERROR: Captcha not supported! You have an old PHP version. Upgrade your PHP "
|
473 |
"or use RecaptchaV2 (no account)."
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: lib/wfu_constants.php:115
|
477 |
msgid ""
|
478 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
479 |
"notify administrator."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: lib/wfu_constants.php:116
|
483 |
msgid ""
|
484 |
"ERROR: Only one instance of RecaptchaV1 can exist on the same page. Please "
|
485 |
"use RecaptchaV1 (no account)."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: lib/wfu_constants.php:117
|
489 |
msgid "ERROR: No site key. Please contact administrator!"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: lib/wfu_constants.php:118
|
493 |
msgid ""
|
494 |
"ERROR: No site key defined! Please go to the plugin settings in Dashboard to "
|
495 |
"define Google Recaptcha keys."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: lib/wfu_constants.php:119
|
499 |
msgid "Bad captcha image!"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: lib/wfu_constants.php:120
|
503 |
msgid "No input!"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: lib/wfu_constants.php:121
|
507 |
msgid "Captcha not completed!"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: lib/wfu_constants.php:122
|
511 |
msgid "Wrong captcha!"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: lib/wfu_constants.php:123
|
515 |
msgid "Error refreshing captcha!"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: lib/wfu_constants.php:124
|
519 |
msgid "Unknown captcha error!"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: lib/wfu_constants.php:125
|
523 |
msgid "Captcha not supported by your browser!"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: lib/wfu_constants.php:126
|
527 |
msgid "the secret parameter is missing"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: lib/wfu_constants.php:127
|
531 |
msgid "the secret parameter is invalid or malformed"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: lib/wfu_constants.php:128
|
535 |
msgid "the response parameter is missing"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: lib/wfu_constants.php:129
|
539 |
msgid "the response parameter is invalid or malformed"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: lib/wfu_constants.php:130
|
543 |
msgid "Please do not use drag drop due to an internal problem."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: lib/wfu_constants.php:131
|
547 |
#, php-format
|
548 |
msgid "Error during chunked upload. Unique ID empty in chunk %d"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: lib/wfu_constants.php:132
|
552 |
msgid "Chunked upload is not allowed!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: lib/wfu_constants.php:133
|
556 |
msgid "Chunked upload aborted due to error in previous chunk!"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: lib/wfu_constants.php:134
|
560 |
msgid "Chunked upload failed, final file could not be created!"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: lib/wfu_constants.php:135
|
564 |
#, php-format
|
565 |
msgid "Could not write file chuck to destination on chunk %d"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: lib/wfu_constants.php:136
|
569 |
#, php-format
|
570 |
msgid "Could not enlarge destination file on chunk %d"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: lib/wfu_constants.php:137
|
574 |
#, php-format
|
575 |
msgid "Could not open file handles on chunk %d"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: lib/wfu_constants.php:138
|
579 |
msgid "You are not allowed to download this file!"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: lib/wfu_constants.php:139
|
583 |
msgid "File does not exist!"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: lib/wfu_constants.php:140
|
587 |
msgid "Could not download file!"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: lib/wfu_constants.php:141
|
591 |
msgid "You are not allowed to delete this file!"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: lib/wfu_constants.php:142
|
595 |
msgid "File was not deleted!"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: lib/wfu_constants.php:143
|
599 |
msgid "No file was deleted!"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: lib/wfu_constants.php:144
|
603 |
msgid "Some files were not deleted!"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: lib/wfu_constants.php:146
|
607 |
msgid "Upload skipped! File already exists."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: lib/wfu_constants.php:147
|
611 |
msgid "The extension of the file does not match its contents."
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: lib/wfu_constants.php:148
|
615 |
msgid ""
|
616 |
"Upload succeeded but the file is suspicious because its contents do not "
|
617 |
"match its extension. Its proper filename is: "
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: lib/wfu_constants.php:149
|
621 |
msgid "No files have been selected!"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: lib/wfu_constants.php:150
|
625 |
msgid "Please complete the consent question before continuing the upload!"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: lib/wfu_constants.php:151
|
629 |
msgid "WPFilebase Plugin not updated because there were no files uploaded."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: lib/wfu_constants.php:152
|
633 |
msgid "Notification email was not sent because there were no files uploaded."
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: lib/wfu_constants.php:153
|
637 |
msgid ""
|
638 |
"Notification email was not sent because no recipients were defined. Please "
|
639 |
"check notifyrecipients attribute in the shortcode."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: lib/wfu_constants.php:154
|
643 |
msgid ""
|
644 |
"Notification email was not sent due to an error. Please check "
|
645 |
"notifyrecipients, notifysubject and notifymessage attributes for errors."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: lib/wfu_constants.php:155
|
649 |
msgid ""
|
650 |
"Redirection not executed because redirection link is empty. Please check "
|
651 |
"redirectlink attribute."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: lib/wfu_constants.php:156
|
655 |
msgid ""
|
656 |
"Redirection not executed because not all files were successfully uploaded."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: lib/wfu_constants.php:157
|
660 |
msgid "Potential Denial-Of-Service Attack on {SITE}"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: lib/wfu_constants.php:158
|
664 |
msgid ""
|
665 |
"Hello admin\n"
|
666 |
"\n"
|
680 |
"Thanks"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: lib/wfu_constants.php:159
|
684 |
msgid ""
|
685 |
"You have activated an alternative insecure Iptanus Services Server. For "
|
686 |
"details please contact info@iptanus.com."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: lib/wfu_constants.php:160
|
690 |
msgid ""
|
691 |
"Iptanus Services Server is unreachable. This may cause problems on some "
|
692 |
"plugin functions. Please read this :article: for resolution."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: lib/wfu_constants.php:162
|
696 |
msgid ""
|
697 |
"Failed to add the shortcode to the page/post. Please try again. If the "
|
698 |
"message persists, contact administrator."
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: lib/wfu_constants.php:163
|
702 |
msgid ""
|
703 |
"Failed to edit the shortcode because the contents of the page changed. Try "
|
704 |
"again to edit the shortcode."
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: lib/wfu_constants.php:164
|
708 |
msgid ""
|
709 |
"Failed to delete the shortcode because the contents of the page changed. Try "
|
710 |
"again to delete it."
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: lib/wfu_constants.php:165
|
714 |
msgid ""
|
715 |
"The page containing the shortcode has been modified and it is no longer "
|
716 |
"valid. Please go back to reload the shortcode."
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: lib/wfu_constants.php:166
|
720 |
msgid ""
|
721 |
"Failed to update the shortcode because the contents of the page changed. Go "
|
722 |
"back to reload the shortcode."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: lib/wfu_constants.php:167
|
726 |
msgid ""
|
727 |
"Failed to update the shortcode. Please try again. If the problem persists, "
|
728 |
"go back and reload the shortcode."
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: lib/wfu_constants.php:169
|
732 |
msgid "This is a test message"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: lib/wfu_constants.php:170
|
736 |
msgid "This is a test administrator message"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: lib/wfu_constants.php:171
|
740 |
msgid "File testfile 1 under test"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: lib/wfu_constants.php:172
|
744 |
msgid "File testfile 1 message"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: lib/wfu_constants.php:173
|
748 |
msgid "File testfile 1 administrator message"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: lib/wfu_constants.php:174
|
752 |
msgid "File testfile 2 under test"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: lib/wfu_constants.php:175
|
756 |
msgid "File testfile 2 message"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: lib/wfu_constants.php:176
|
760 |
msgid "File testfile 2 administrator message"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: lib/wfu_constants.php:178
|
764 |
msgid ""
|
765 |
"Insert variable %userid% inside text. It will be replaced by the id of the "
|
766 |
"current user."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: lib/wfu_constants.php:179
|
770 |
msgid ""
|
771 |
"Insert variable %username% inside text. It will be replaced by the username "
|
772 |
"of the current user."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: lib/wfu_constants.php:180
|
776 |
msgid ""
|
777 |
"Insert variable %useremail% inside text. It will be replaced by the email of "
|
778 |
"the current user."
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: lib/wfu_constants.php:181
|
782 |
msgid ""
|
783 |
"Insert variable %filename% inside text. It will be replaced by the filename "
|
784 |
"of the uploaded file."
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: lib/wfu_constants.php:182
|
788 |
msgid ""
|
789 |
"Insert variable %filepath% inside text. It will be replaced by the full "
|
790 |
"filepath of the uploaded file."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: lib/wfu_constants.php:183
|
794 |
msgid ""
|
795 |
"Insert variable %blogid% inside text. It will be replaced by the blog id of "
|
796 |
"the website."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: lib/wfu_constants.php:184
|
800 |
msgid ""
|
801 |
"Insert variable %pageid% inside text. It will be replaced by the id of the "
|
802 |
"current page."
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: lib/wfu_constants.php:185
|
806 |
msgid ""
|
807 |
"Insert variable %pagetitle% inside text. It will be replaced by the title of "
|
808 |
"the current page."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: lib/wfu_constants.php:186
|
812 |
msgid ""
|
813 |
"Insert variable %userdataXXX% inside text. Select the user field from the "
|
814 |
"drop-down list. It will be replaced by the value that the user entered in "
|
815 |
"this field."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: lib/wfu_constants.php:187
|
819 |
msgid "Insert variable %n% inside text to denote a line change."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: lib/wfu_constants.php:189
|
823 |
+
#, php-format
|
824 |
+
msgid "File %filename% uploaded successfully but not saved"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: lib/wfu_constants.php:190
|
828 |
msgid "Test Mode"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: lib/wfu_constants.php:191
|
832 |
msgid "select dir..."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: lib/wfu_constants.php:192
|
836 |
msgid "type dir"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: lib/wfu_constants.php:193
|
840 |
msgid "Upload path: %filepath%"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: lib/wfu_constants.php:194
|
844 |
msgid "Failed upload path: %filepath%"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: lib/wfu_constants.php:195
|
848 |
msgid " (required)"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: lib/wfu_constants.php:196
|
852 |
msgid "Files are being uploaded. Are you sure you want to exit the page?"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: lib/wfu_constants.php:197
|
856 |
msgid "checking captcha..."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: lib/wfu_constants.php:198
|
860 |
msgid "refreshing..."
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: lib/wfu_constants.php:199
|
864 |
msgid "correct captcha"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: lib/wfu_constants.php:200
|
868 |
msgid "click to continue the upload"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: lib/wfu_constants.php:201
|
872 |
msgid "Are you sure you want to delete this file?"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: lib/wfu_constants.php:202
|
876 |
msgid "Are you sure you want to delete these files?"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: lib/wfu_constants.php:203
|
880 |
msgid "Bulk Actions"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: lib/wfu_constants.php:204
|
884 |
msgid "Apply"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: lib/wfu_constants.php:206
|
888 |
msgid "of "
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: lib/wfu_constants.php:207
|
892 |
msgid "Are you sure that you want to cancel the upload?"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: lib/wfu_constants.php:208
|
896 |
msgid "cancel upload of this file"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: lib/wfu_constants.php:209
|
900 |
msgid "Upload in progress"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: lib/wfu_constants.php:210
|
904 |
msgid "Upload in progress with warnings!"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: lib/wfu_constants.php:211
|
908 |
msgid "Upload in progress but some files already failed!"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: lib/wfu_constants.php:212
|
912 |
msgid "Upload in progress but no files uploaded so far!"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: lib/wfu_constants.php:213
|
916 |
msgid "All files uploaded successfully"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: lib/wfu_constants.php:214
|
920 |
msgid "All files uploaded successfully but there are warnings!"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: lib/wfu_constants.php:215
|
924 |
msgid "File uploaded successfully but there are warnings!"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: lib/wfu_constants.php:216
|
928 |
msgid "Some files failed to upload!"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: lib/wfu_constants.php:217
|
932 |
msgid "All files failed to upload"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: lib/wfu_constants.php:218
|
936 |
msgid "File failed to upload"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: lib/wfu_constants.php:219
|
940 |
msgid "There are no files to upload!"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: lib/wfu_constants.php:220
|
944 |
msgid "Test upload message"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: lib/wfu_constants.php:221
|
948 |
msgid "JSON parse warning!"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: lib/wfu_constants.php:222
|
952 |
msgid "please wait while redirecting..."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: lib/wfu_constants.php:224
|
956 |
msgid "Submitting data"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: lib/wfu_constants.php:225
|
960 |
msgid "Data submitted successfully!"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: lib/wfu_constants.php:226
|
964 |
msgid "Data were not submitted!"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: lib/wfu_constants.php:227
|
968 |
msgid "Cancelling upload"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: lib/wfu_constants.php:229
|
972 |
+
msgid "Upload succeeded!"
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: lib/wfu_constants.php:230
|
976 |
+
msgid "Upload completed but no files were saved!"
|
977 |
+
msgstr ""
|
978 |
+
|
979 |
+
#: lib/wfu_constants.php:231
|
980 |
+
msgid "File was not saved due to personal data policy!"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: lib/wfu_constants.php:232
|
984 |
msgid "Open visual shortcode editor in new window"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: lib/wfu_constants.php:233
|
988 |
msgid "loading visual editor"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: lib/wfu_constants.php:234
|
992 |
msgid "Clear file list?"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: lib/wfu_constants.php:235
|
996 |
msgid "DROP HERE"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: lib/wfu_constants.php:237
|
1000 |
msgid "record video"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: lib/wfu_constants.php:238
|
1004 |
msgid "take a picture"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: lib/wfu_constants.php:239
|
1008 |
msgid "turn webcam on/off"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: lib/wfu_constants.php:240
|
1012 |
msgid "go live again"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: lib/wfu_constants.php:241
|
1016 |
msgid "end recording"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: lib/wfu_constants.php:242
|
1020 |
msgid "play"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: lib/wfu_constants.php:243
|
1024 |
msgid "pause"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: lib/wfu_constants.php:244
|
1028 |
msgid "go to the beginning"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: lib/wfu_constants.php:245
|
1032 |
msgid "go to the end"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: lib/wfu_constants.php:247
|
1036 |
msgid "Wordpress File Upload Form"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: lib/wfu_constants.php:248
|
1040 |
msgid "Wordpress File Upload plugin uploader for sidebars"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: lib/wfu_constants.php:249
|
1044 |
msgid "Upload Files"
|
1045 |
msgstr ""
|
lib/wfu_admin_composer.php
CHANGED
@@ -744,7 +744,7 @@ function wfu_shortcode_composer($data = '', $shortcode_tag = 'wordpress_file_upl
|
|
744 |
$fielddefs_array = $def['listitems'];
|
745 |
foreach ( $fielddefs_array as $fielddef ) $fielddefs[$fielddef['type']] = $fielddef;
|
746 |
//initialize editable field properties
|
747 |
-
$fieldprops_basic = array('required', 'donotautocomplete', 'validate', 'typehook', 'labelposition', 'hintposition', 'default', 'data', 'group', 'format');
|
748 |
$fieldprops_default = array ( "type" => "text", "label" => "", "labelposition" => "left", "required" => false, "donotautocomplete" => false, "validate" => false, "default" => "", "data" => "", "group" => "", "format" => "", "hintposition" => "right", "typehook" => false );
|
749 |
//parse shortcode attribute to $fields
|
750 |
$fields = wfu_parse_userdata_attribute($def['value']);
|
@@ -760,10 +760,10 @@ function wfu_shortcode_composer($data = '', $shortcode_tag = 'wordpress_file_upl
|
|
760 |
$template .= $dlp."\t\t\t\t".'<div class="wfu_formdata_action wfu_formdata_action_remove[[remove_disabled]]" onclick="wfu_formdata_remove_field(\'[[key]]\');"><img src="'.WFU_IMAGE_ADMIN_USERDATA_REMOVE.'" ></div>';
|
761 |
$template .= $dlp."\t\t\t\t".'<div class="wfu_formdata_action wfu_formdata_action_up[[up_disabled]]" onclick="wfu_formdata_move_field(\'[[key]]\', \'up\');"><img src="'.WFU_IMAGE_ADMIN_USERDATA_UP.'" ></div>';
|
762 |
$template .= $dlp."\t\t\t\t".'<div class="wfu_formdata_action wfu_formdata_action_down[[down_disabled]]" onclick="wfu_formdata_move_field(\'[[key]]\', \'down\');"><img src="'.WFU_IMAGE_ADMIN_USERDATA_DOWN.'" ></div></td></tr>';
|
763 |
-
$template .= $dlp."\t\t\t\t".'<tr><td class="wfu_formdata_props"><label class="wfu_formdata_label">
|
764 |
$labelpos_options = "";
|
765 |
foreach ( $labelpositions as $pos ) $labelpos_options .= '<option value="'.$pos.'"[[labelposition_'.$pos.'_selected]]>'.$pos.'</option>';
|
766 |
-
$template .=
|
767 |
$template .= '[[R->]]'.$dlp."\t\t\t\t".'<tr><td colspan="2" class="wfu_formdata_props"><input id="wfu_formfield_[[key]]_required" type="checkbox"[[r->]] checked="checked"[[<-r]] title="[[required_hint]]" onchange="wfu_update_formfield_value({target:this});" /><label for="wfu_formfield_[[key]]_required" title="[[required_hint]]"> Required</label></td><td></td></tr>[[<-R]]';
|
768 |
$template .= '[[A->]]'.$dlp."\t\t\t\t".'<tr><td colspan="2" class="wfu_formdata_props"><input id="wfu_formfield_[[key]]_donotautocomplete" type="checkbox"[[a->]] checked="checked"[[<-a]] title="[[donotautocomplete_hint]]" onchange="wfu_update_formfield_value({target:this});" /><label for="wfu_formfield_[[key]]_donotautocomplete" title="[[donotautocomplete_hint]]"> Do not autocomplete</label></td><td></td></tr>[[<-A]]';
|
769 |
$template .= '[[V->]]'.$dlp."\t\t\t\t".'<tr><td colspan="2" class="wfu_formdata_props"><input id="wfu_formfield_[[key]]_validate" type="checkbox"[[v->]] checked="checked"[[<-v]] title="[[validate_hint]]" onchange="wfu_update_formfield_value({target:this});" /><label for="wfu_formfield_[[key]]_validate" title="[[validate_hint]]"> Validate</label></td><td></td></tr>[[<-V]]';
|
@@ -794,6 +794,7 @@ function wfu_shortcode_composer($data = '', $shortcode_tag = 'wordpress_file_upl
|
|
794 |
array_push($typeprops, $prop.': \''.$item[$prop].'\'');
|
795 |
array_push($typeprops, $prop.'_hint: \''.$item[$prop.'_hint'].'\'');
|
796 |
}
|
|
|
797 |
array_push($typeprops, 'data_label: \''.$item['data_label'].'\'');
|
798 |
$echo_str .= $dlp."\t\t\t\t\t".'wfu_attribute_'.$attr.'_typeprops["'.$item['type'].'"] = {'.implode(", ", $typeprops).'};';
|
799 |
}
|
@@ -807,7 +808,7 @@ function wfu_shortcode_composer($data = '', $shortcode_tag = 'wordpress_file_upl
|
|
807 |
$fielddef = $fielddefs[$field["type"]];
|
808 |
$echo_str .= $dlp."\t\t\t".'<div id="wfu_formfield_'.$key.'_container" class="wfu_formdata_line_container">';
|
809 |
//generate html elements from template, replacing variables where applicable
|
810 |
-
$from_template = str_replace(array('[[key]]', '[[t]]', '[[label]]', '[[s]]', '[[d]]', '[[l]]', '[[data_label]]', '[[g]]', '[[f]]', '[[p]]'), array($key, $field['type'], $field['label'], $field['labelposition'], $field['default'], $field['data'], $fielddef['data_label'], $field['group'], $field['format'], $field['hintposition']), $template);
|
811 |
foreach ( $fieldprops_basic as $prop ) $from_template = str_replace('[['.$prop.'_hint]]', str_replace('\r\n', "\r\n", $fielddef[$prop.'_hint']), $from_template);
|
812 |
foreach( $fielddefs as $item ) $from_template = str_replace('[[type_'.$item['type'].'_selected]]', ( $item['type'] == $field['type'] ? ' selected = "selected"' : '' ), $from_template);
|
813 |
foreach( $labelpositions as $pos ) $from_template = str_replace('[[labelposition_'.$pos.'_selected]]', ( $pos == $field['labelposition'] ? ' selected = "selected"' : '' ), $from_template);
|
@@ -821,6 +822,7 @@ function wfu_shortcode_composer($data = '', $shortcode_tag = 'wordpress_file_upl
|
|
821 |
$from_template = preg_replace('/\[\[v\-\>\]\]'.( $field['validate'] ? '|' : '.*' ).'\[\[\<\-v\]\]/', '', $from_template);
|
822 |
$from_template = preg_replace('/\[\[h\-\>\]\]'.( $field['typehook'] ? '|' : '.*' ).'\[\[\<\-h\]\]/', '', $from_template);
|
823 |
//adjust visibility of properties
|
|
|
824 |
$from_template = preg_replace('/\[\[R\-\>\]\]'.( substr($fielddef["required"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-R\]\]/s', '', $from_template);
|
825 |
$from_template = preg_replace('/\[\[A\-\>\]\]'.( substr($fielddef["donotautocomplete"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-A\]\]/s', '', $from_template);
|
826 |
$from_template = preg_replace('/\[\[V\-\>\]\]'.( substr($fielddef["validate"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-V\]\]/s', '', $from_template);
|
744 |
$fielddefs_array = $def['listitems'];
|
745 |
foreach ( $fielddefs_array as $fielddef ) $fielddefs[$fielddef['type']] = $fielddef;
|
746 |
//initialize editable field properties
|
747 |
+
$fieldprops_basic = array('label', 'required', 'donotautocomplete', 'validate', 'typehook', 'labelposition', 'hintposition', 'default', 'data', 'group', 'format');
|
748 |
$fieldprops_default = array ( "type" => "text", "label" => "", "labelposition" => "left", "required" => false, "donotautocomplete" => false, "validate" => false, "default" => "", "data" => "", "group" => "", "format" => "", "hintposition" => "right", "typehook" => false );
|
749 |
//parse shortcode attribute to $fields
|
750 |
$fields = wfu_parse_userdata_attribute($def['value']);
|
760 |
$template .= $dlp."\t\t\t\t".'<div class="wfu_formdata_action wfu_formdata_action_remove[[remove_disabled]]" onclick="wfu_formdata_remove_field(\'[[key]]\');"><img src="'.WFU_IMAGE_ADMIN_USERDATA_REMOVE.'" ></div>';
|
761 |
$template .= $dlp."\t\t\t\t".'<div class="wfu_formdata_action wfu_formdata_action_up[[up_disabled]]" onclick="wfu_formdata_move_field(\'[[key]]\', \'up\');"><img src="'.WFU_IMAGE_ADMIN_USERDATA_UP.'" ></div>';
|
762 |
$template .= $dlp."\t\t\t\t".'<div class="wfu_formdata_action wfu_formdata_action_down[[down_disabled]]" onclick="wfu_formdata_move_field(\'[[key]]\', \'down\');"><img src="'.WFU_IMAGE_ADMIN_USERDATA_DOWN.'" ></div></td></tr>';
|
763 |
+
$template .= $dlp."\t\t\t\t".'<tr><td class="wfu_formdata_props"><label class="wfu_formdata_label" title="[[label_hint]]">[[label_label]]</label></td><td><input type="text" id="wfu_formfield_[[key]]_label" name="wfu_formfield_elements" value="[[label]]" /></td><td></td></tr>';
|
764 |
$labelpos_options = "";
|
765 |
foreach ( $labelpositions as $pos ) $labelpos_options .= '<option value="'.$pos.'"[[labelposition_'.$pos.'_selected]]>'.$pos.'</option>';
|
766 |
+
$template .= '[[S->]]'.$dlp."\t\t\t\t".'<tr><td class="wfu_formdata_props"><label class="wfu_formdata_labelposition" title="[[labelposition_hint]]">Label Position</label></td><td><select id="wfu_formfield_[[key]]_labelposition" value="[[s]]" title="[[labelposition_hint]]" onchange="wfu_update_formfield_value({target:this});">'.$labelpos_options.'</select></td><td></td></tr>[[<-S]]';
|
767 |
$template .= '[[R->]]'.$dlp."\t\t\t\t".'<tr><td colspan="2" class="wfu_formdata_props"><input id="wfu_formfield_[[key]]_required" type="checkbox"[[r->]] checked="checked"[[<-r]] title="[[required_hint]]" onchange="wfu_update_formfield_value({target:this});" /><label for="wfu_formfield_[[key]]_required" title="[[required_hint]]"> Required</label></td><td></td></tr>[[<-R]]';
|
768 |
$template .= '[[A->]]'.$dlp."\t\t\t\t".'<tr><td colspan="2" class="wfu_formdata_props"><input id="wfu_formfield_[[key]]_donotautocomplete" type="checkbox"[[a->]] checked="checked"[[<-a]] title="[[donotautocomplete_hint]]" onchange="wfu_update_formfield_value({target:this});" /><label for="wfu_formfield_[[key]]_donotautocomplete" title="[[donotautocomplete_hint]]"> Do not autocomplete</label></td><td></td></tr>[[<-A]]';
|
769 |
$template .= '[[V->]]'.$dlp."\t\t\t\t".'<tr><td colspan="2" class="wfu_formdata_props"><input id="wfu_formfield_[[key]]_validate" type="checkbox"[[v->]] checked="checked"[[<-v]] title="[[validate_hint]]" onchange="wfu_update_formfield_value({target:this});" /><label for="wfu_formfield_[[key]]_validate" title="[[validate_hint]]"> Validate</label></td><td></td></tr>[[<-V]]';
|
794 |
array_push($typeprops, $prop.': \''.$item[$prop].'\'');
|
795 |
array_push($typeprops, $prop.'_hint: \''.$item[$prop.'_hint'].'\'');
|
796 |
}
|
797 |
+
array_push($typeprops, 'label_label: \''.$item['label_label'].'\'');
|
798 |
array_push($typeprops, 'data_label: \''.$item['data_label'].'\'');
|
799 |
$echo_str .= $dlp."\t\t\t\t\t".'wfu_attribute_'.$attr.'_typeprops["'.$item['type'].'"] = {'.implode(", ", $typeprops).'};';
|
800 |
}
|
808 |
$fielddef = $fielddefs[$field["type"]];
|
809 |
$echo_str .= $dlp."\t\t\t".'<div id="wfu_formfield_'.$key.'_container" class="wfu_formdata_line_container">';
|
810 |
//generate html elements from template, replacing variables where applicable
|
811 |
+
$from_template = str_replace(array('[[key]]', '[[t]]', '[[label]]', '[[s]]', '[[d]]', '[[l]]', '[[label_label]]', '[[data_label]]', '[[g]]', '[[f]]', '[[p]]'), array($key, $field['type'], $field['label'], $field['labelposition'], $field['default'], $field['data'], $fielddef['label_label'], $fielddef['data_label'], $field['group'], $field['format'], $field['hintposition']), $template);
|
812 |
foreach ( $fieldprops_basic as $prop ) $from_template = str_replace('[['.$prop.'_hint]]', str_replace('\r\n', "\r\n", $fielddef[$prop.'_hint']), $from_template);
|
813 |
foreach( $fielddefs as $item ) $from_template = str_replace('[[type_'.$item['type'].'_selected]]', ( $item['type'] == $field['type'] ? ' selected = "selected"' : '' ), $from_template);
|
814 |
foreach( $labelpositions as $pos ) $from_template = str_replace('[[labelposition_'.$pos.'_selected]]', ( $pos == $field['labelposition'] ? ' selected = "selected"' : '' ), $from_template);
|
822 |
$from_template = preg_replace('/\[\[v\-\>\]\]'.( $field['validate'] ? '|' : '.*' ).'\[\[\<\-v\]\]/', '', $from_template);
|
823 |
$from_template = preg_replace('/\[\[h\-\>\]\]'.( $field['typehook'] ? '|' : '.*' ).'\[\[\<\-h\]\]/', '', $from_template);
|
824 |
//adjust visibility of properties
|
825 |
+
$from_template = preg_replace('/\[\[S\-\>\]\]'.( substr($fielddef["labelposition"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-S\]\]/s', '', $from_template);
|
826 |
$from_template = preg_replace('/\[\[R\-\>\]\]'.( substr($fielddef["required"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-R\]\]/s', '', $from_template);
|
827 |
$from_template = preg_replace('/\[\[A\-\>\]\]'.( substr($fielddef["donotautocomplete"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-A\]\]/s', '', $from_template);
|
828 |
$from_template = preg_replace('/\[\[V\-\>\]\]'.( substr($fielddef["validate"], 0, 4) == "show" ? '|' : '.*' ).'\[\[\<\-V\]\]/s', '', $from_template);
|
lib/wfu_ajaxactions.php
CHANGED
@@ -70,9 +70,10 @@ function wfu_ajax_action_send_email_notification() {
|
|
70 |
|
71 |
//retrieve userdata, first get default userdata from $params
|
72 |
$userdata_fields = $params["userdata_fields"];
|
73 |
-
//initialize default values
|
74 |
foreach ( $userdata_fields as $userdata_key => $userdata_field )
|
75 |
-
$
|
|
|
76 |
//then retrieve userdata from session if files exist
|
77 |
if ( $all_files_count > 0 && WFU_USVAR_exists("filedata_".$uniqueid) && is_array(WFU_USVAR("filedata_".$uniqueid)) ) {
|
78 |
foreach ( WFU_USVAR("filedata_".$uniqueid) as $file ) {
|
@@ -256,7 +257,7 @@ function wfu_ajax_action_callback() {
|
|
256 |
//get stored shortcode parameters
|
257 |
$params_str = get_option('wfu_params_'.$arr['unique_id']);
|
258 |
$params = wfu_decode_array_from_string($params_str);
|
259 |
-
|
260 |
//if upload has finished then perform post upload actions
|
261 |
if ( isset($_POST["upload_finished"]) && $_POST["upload_finished"] === "1" ) {
|
262 |
$echo_str = "";
|
@@ -266,6 +267,12 @@ function wfu_ajax_action_callback() {
|
|
266 |
die($echo_str);
|
267 |
}
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
//apply filters to determine if the upload will continue or stop
|
270 |
$ret = array( "status" => "", "echo" => "" );
|
271 |
$attr = array( "sid" => $sid, "unique_id" => $unique_id, "params" => $params );
|
@@ -284,10 +291,12 @@ function wfu_ajax_action_callback() {
|
|
284 |
|
285 |
//update consent status of user
|
286 |
$plugin_options = wfu_decode_plugin_options(get_option( "wordpress_file_upload_options" ));
|
287 |
-
$
|
|
|
288 |
if ( $require_consent ) {
|
289 |
if ( !isset($_POST['consent_result']) ) die();
|
290 |
$consent_result = ( $_POST['consent_result'] == "yes" ? "yes" : ( $_POST['consent_result'] == "no" ? "no" : "" ) );
|
|
|
291 |
wfu_update_user_consent($user, $consent_result);
|
292 |
}
|
293 |
|
70 |
|
71 |
//retrieve userdata, first get default userdata from $params
|
72 |
$userdata_fields = $params["userdata_fields"];
|
73 |
+
//remove any honeypot fields and initialize default values
|
74 |
foreach ( $userdata_fields as $userdata_key => $userdata_field )
|
75 |
+
if ( $userdata_field["type"] == "honeypot" ) unset($userdata_fields[$userdata_key]);
|
76 |
+
else $userdata_fields[$userdata_key]["value"] = "";
|
77 |
//then retrieve userdata from session if files exist
|
78 |
if ( $all_files_count > 0 && WFU_USVAR_exists("filedata_".$uniqueid) && is_array(WFU_USVAR("filedata_".$uniqueid)) ) {
|
79 |
foreach ( WFU_USVAR("filedata_".$uniqueid) as $file ) {
|
257 |
//get stored shortcode parameters
|
258 |
$params_str = get_option('wfu_params_'.$arr['unique_id']);
|
259 |
$params = wfu_decode_array_from_string($params_str);
|
260 |
+
|
261 |
//if upload has finished then perform post upload actions
|
262 |
if ( isset($_POST["upload_finished"]) && $_POST["upload_finished"] === "1" ) {
|
263 |
$echo_str = "";
|
267 |
die($echo_str);
|
268 |
}
|
269 |
|
270 |
+
//check if honeypot userdata fields have been added to the form and if they
|
271 |
+
//contain any data; if wfu_check_remove_honeypot_fields returns true this
|
272 |
+
//means that at least one honeypot field has beed filled with a value and
|
273 |
+
//the upload must be aborted because it was not done by a human
|
274 |
+
if ( $params["userdata"] == "true" && wfu_check_remove_honeypot_fields($params["userdata_fields"], 'hiddeninput_'.$sid.'_userdata_') ) die("force_abortsuccess_code");
|
275 |
+
|
276 |
//apply filters to determine if the upload will continue or stop
|
277 |
$ret = array( "status" => "", "echo" => "" );
|
278 |
$attr = array( "sid" => $sid, "unique_id" => $unique_id, "params" => $params );
|
291 |
|
292 |
//update consent status of user
|
293 |
$plugin_options = wfu_decode_plugin_options(get_option( "wordpress_file_upload_options" ));
|
294 |
+
$params["consent_result"] = wfu_check_user_consent($user);
|
295 |
+
$require_consent = ( $plugin_options["personaldata"] == "1" && ( $params["notrememberconsent"] == "true" || $params["consent_result"] == "" ) && $params["askconsent"] == "true" );
|
296 |
if ( $require_consent ) {
|
297 |
if ( !isset($_POST['consent_result']) ) die();
|
298 |
$consent_result = ( $_POST['consent_result'] == "yes" ? "yes" : ( $_POST['consent_result'] == "no" ? "no" : "" ) );
|
299 |
+
$params["consent_result"] = ( $_POST['consent_result'] == "yes" ? "1" : ( $_POST['consent_result'] == "no" ? "0" : "" ) );
|
300 |
wfu_update_user_consent($user, $consent_result);
|
301 |
}
|
302 |
|
lib/wfu_attributes.php
CHANGED
@@ -136,6 +136,10 @@ function wfu_formfield_definitions() {
|
|
136 |
array(
|
137 |
"type" => "text",
|
138 |
"type_description" => "Simple Text",
|
|
|
|
|
|
|
|
|
139 |
//checkbox properties
|
140 |
"required" => "show/false",
|
141 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -159,24 +163,15 @@ function wfu_formfield_definitions() {
|
|
159 |
"group" => "hide/",
|
160 |
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
161 |
"format" => "hide/",
|
162 |
-
"format_hint" => "enter a format to format user selection"
|
163 |
-
//html templates
|
164 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="[default]" autocomplete="[autocomplete]" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
165 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="Test message" autocomplete="off" readonly="readonly" />',
|
166 |
-
//javascript mandatory code
|
167 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
168 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
169 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
170 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
171 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
172 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field, store) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
173 |
-
//javascript optional code
|
174 |
-
"validate_code" => "",
|
175 |
-
"typehook_code" => ""
|
176 |
),
|
177 |
array(
|
178 |
"type" => "multitext",
|
179 |
"type_description" => "Multiple Lines Text",
|
|
|
|
|
|
|
|
|
180 |
//checkbox properties
|
181 |
"required" => "show/false",
|
182 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -200,24 +195,15 @@ function wfu_formfield_definitions() {
|
|
200 |
"group" => "hide/",
|
201 |
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
202 |
"format" => "hide/",
|
203 |
-
"format_hint" => "enter a format to format user selection"
|
204 |
-
//html templates
|
205 |
-
"template" => '<textarea id="userdata_[sid]_field_[key]" class="file_userdata_message" value="[default]" onfocus="wfu_userdata_focused(this);">[default]</textarea><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
206 |
-
"template_testmode" => '<textarea id="userdata_[sid]_field_[key]" class="file_userdata_message" value="Test message" readonly="readonly">Test message</textarea>',
|
207 |
-
//javascript mandatory code
|
208 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
209 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
210 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
211 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
212 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
213 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field, store) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
214 |
-
//javascript optional code
|
215 |
-
"validate_code" => "",
|
216 |
-
"typehook_code" => ""
|
217 |
),
|
218 |
array(
|
219 |
"type" => "number",
|
220 |
"type_description" => "Number",
|
|
|
|
|
|
|
|
|
221 |
//checkbox properties
|
222 |
"required" => "show/false",
|
223 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -241,24 +227,15 @@ function wfu_formfield_definitions() {
|
|
241 |
"group" => "hide/",
|
242 |
"group_hint" => "if a non-empty group value is set, then another email confirmation field belonging to the same group must have the same email value",
|
243 |
"format" => "show/d",
|
244 |
-
"format_hint" => "enter a format for the number:\\r\\n d for integers\\r\\n f for floating point numbers\\r\\nthe dot (.) symbol is used as a decimal separator"
|
245 |
-
//html templates
|
246 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="[default]" autocomplete="[autocomplete]" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
247 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="Test message" autocomplete="off" readonly="readonly" />',
|
248 |
-
//javascript mandatory code
|
249 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { if (window["userdata_[sid]_codes_[key]"].typehook) window["userdata_[sid]_codes_[key]"].typehook(e); else document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
250 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
251 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
252 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
253 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
254 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
255 |
-
//javascript optional code
|
256 |
-
"validate_code" => 'window["userdata_[sid]_codes_[key]"].validate = function(field) { var re = /^(\+|\-)?[0-9]*$/i; if ("[format]" == "f") re = /^(\+|\-)?[0-9]*?\.?[0-9]*$/i; return (re.test(field.value) ? "" : "'.WFU_ERROR_USERDATANUMBER_INVALID.'"); };',
|
257 |
-
"typehook_code" => 'window["userdata_[sid]_codes_[key]"].typehook = function(e) { var re = /^(\+|\-)?[0-9]*$/i; if ("[format]" == "f") re = /^(\+|\-)?[0-9]*?\.?[0-9]*$/i; if (re.test(e.target.value)) document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; else e.target.value = document.getElementById("hiddeninput_[sid]_userdata_[key]").value; };',
|
258 |
),
|
259 |
array(
|
260 |
"type" => "email",
|
261 |
"type_description" => "Email",
|
|
|
|
|
|
|
|
|
262 |
//checkbox properties
|
263 |
"required" => "show/false",
|
264 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -282,24 +259,15 @@ function wfu_formfield_definitions() {
|
|
282 |
"group" => "show/0",
|
283 |
"group_hint" => "if a non-empty group value is set, then another email confirmation field belonging to the same group must have the same email value",
|
284 |
"format" => "hide/",
|
285 |
-
"format_hint" => "enter a format to format user selection"
|
286 |
-
//html templates
|
287 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message file_userdata_[sid]_emailgroup_[group]" value="[default]" autocomplete="[autocomplete]" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
288 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message file_userdata_emailgroup_[group]" value="Test message" autocomplete="off" readonly="readonly" />',
|
289 |
-
//javascript mandatory code
|
290 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
291 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
292 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
293 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
294 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
295 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
296 |
-
//javascript optional code
|
297 |
-
"validate_code" => 'window["userdata_[sid]_codes_[key]"].validate = function(field) { var re = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i; return (re.test(field.value) ? "" : "'.WFU_ERROR_USERDATAEMAIL_INVALID.'"); };',
|
298 |
-
"typehook_code" => ""
|
299 |
),
|
300 |
array(
|
301 |
"type" => "confirmemail",
|
302 |
"type_description" => "Confirmation Email",
|
|
|
|
|
|
|
|
|
303 |
//checkbox properties
|
304 |
"required" => "show/true",
|
305 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -323,24 +291,15 @@ function wfu_formfield_definitions() {
|
|
323 |
"group" => "show/0",
|
324 |
"group_hint" => "enter a non-empty value to match this email confirmation field with another email field",
|
325 |
"format" => "hide/",
|
326 |
-
"format_hint" => "enter a format to format user selection"
|
327 |
-
//html templates
|
328 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="[default]" autocomplete="[autocomplete]" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
329 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="Test message" autocomplete="off" readonly="readonly" />',
|
330 |
-
//javascript mandatory code
|
331 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
332 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
333 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
334 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
335 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
336 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
337 |
-
//javascript optional code
|
338 |
-
"validate_code" => 'window["userdata_[sid]_codes_[key]"].validate = function(field) { var base = document.querySelector("input.file_userdata_[sid]_emailgroup_[group]"); return (base ? (field.value == base.value ? "" : "'.WFU_ERROR_USERDATACONFIRMEMAIL_NOMATCH.'") : "'.WFU_ERROR_USERDATACONFIRMEMAIL_NOBASE.'"); };',
|
339 |
-
"typehook_code" => ""
|
340 |
),
|
341 |
array(
|
342 |
"type" => "password",
|
343 |
"type_description" => "Password",
|
|
|
|
|
|
|
|
|
344 |
//checkbox properties
|
345 |
"required" => "show/true",
|
346 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -364,24 +323,15 @@ function wfu_formfield_definitions() {
|
|
364 |
"group" => "show/0",
|
365 |
"group_hint" => "if a non-empty group value is set, then another password confirmation field belonging to the same group must have the same password",
|
366 |
"format" => "hide/",
|
367 |
-
"format_hint" => "enter a format to format user selection"
|
368 |
-
//html templates
|
369 |
-
"template" => '<input type="password" id="userdata_[sid]_field_[key]" class="file_userdata_message file_userdata_[sid]_passwordgroup_[group]" value="[default]" autocomplete="[autocomplete]" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
370 |
-
"template_testmode" => '<input type="password" id="userdata_[sid]_field_[key]" class="file_userdata_message file_userdata_passwordgroup_[group]" value="Test message" autocomplete="off" readonly="readonly" />',
|
371 |
-
//javascript mandatory code
|
372 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
373 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
374 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
375 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
376 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
377 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
378 |
-
//javascript optional code
|
379 |
-
"validate_code" => "",
|
380 |
-
"typehook_code" => ""
|
381 |
),
|
382 |
array(
|
383 |
"type" => "confirmpassword",
|
384 |
"type_description" => "Confirmation Password",
|
|
|
|
|
|
|
|
|
385 |
//checkbox properties
|
386 |
"required" => "show/true",
|
387 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
@@ -405,24 +355,15 @@ function wfu_formfield_definitions() {
|
|
405 |
"group" => "show/0",
|
406 |
"group_hint" => "if a non-empty group value is set, then another password confirmation field belonging to the same group must have the same password",
|
407 |
"format" => "hide/",
|
408 |
-
"format_hint" => "enter a format to format user selection"
|
409 |
-
//html templates
|
410 |
-
"template" => '<input type="password" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="[default]" autocomplete="[autocomplete]" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
411 |
-
"template_testmode" => '<input type="password" id="userdata_[sid]_field_[key]" class="file_userdata_message" value="Test message" autocomplete="off" readonly="readonly" />',
|
412 |
-
//javascript mandatory code
|
413 |
-
"init_code" => 'wfu_attach_element_handlers(document.getElementById("userdata_[sid]_field_[key]"), function(e) { document.getElementById("hiddeninput_[sid]_userdata_[key]").value = e.target.value; }); window["userdata_[sid]_codes_[key]"] = {};',
|
414 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
415 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
416 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
417 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.value = "[default]"; store.value = "[default]"; };',
|
418 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
419 |
-
//javascript optional code
|
420 |
-
"validate_code" => 'window["userdata_[sid]_codes_[key]"].validate = function(field) { var base = document.querySelector("input.file_userdata_[sid]_passwordgroup_[group]"); return (base ? (field.value == base.value ? "" : "'.WFU_ERROR_USERDATACONFIRMPASSWORD_NOMATCH.'") : "'.WFU_ERROR_USERDATACONFIRMPASSWORD_NOBASE.'"); };',
|
421 |
-
"typehook_code" => ""
|
422 |
),
|
423 |
array(
|
424 |
"type" => "checkbox",
|
425 |
"type_description" => "Checkbox",
|
|
|
|
|
|
|
|
|
426 |
//checkbox properties
|
427 |
"required" => "show/false",
|
428 |
"required_hint" => "if checked, then this checkbox field must be checked before file upload",
|
@@ -446,24 +387,15 @@ function wfu_formfield_definitions() {
|
|
446 |
"group" => "hide/",
|
447 |
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
448 |
"format" => "show/right",
|
449 |
-
"format_hint" => "define the location of the description in relation to the check box\\r\\npossible values are: top, right, bottom, left"
|
450 |
-
//html templates
|
451 |
-
"template" => '<input type="checkbox" id="userdata_[sid]_field_[key]" class="file_userdata_checkbox" autocomplete="[autocomplete]" onchange="document.getElementById(\'hiddeninput_[sid]_userdata_[key]\').value = (this.checked ? \'true\' : \'false\');" style="display:none;" onfocus="wfu_userdata_focused(this);" /><label id="userdata_[sid]_checklabel_[key]" class="file_userdata_checkbox_description" for="userdata_[sid]_field_[key]" style="display:none;">[data]</label><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
452 |
-
"template_testmode" => '<input type="checkbox" id="userdata_[sid]_field_[key]" class="file_userdata_checkbox" autocomplete="off" readonly="readonly" /><label id="userdata_[sid]_checklabel_[key]" for="userdata_[sid]_field_[key]" style="display:none;">[list]</label>',
|
453 |
-
//javascript mandatory code
|
454 |
-
"init_code" => 'function wfu_checkbox_init() { var f = document.getElementById("userdata_[sid]_field_[key]"); var l = document.getElementById("userdata_[sid]_checklabel_[key]"); var p = f.parentNode; var pos = "[format]"; if (pos == "top") {p.insertBefore(l, f); p.insertBefore(document.createElement("BR"), f);} else if (pos == "bottom") {p.insertBefore(document.createElement("BR"), l);} else if (pos == "left") {p.insertBefore(l, f);} f.style.display = "inline-block"; l.style.display = "inline-block"; f.checked = ("[default]" == "true"); }; wfu_checkbox_init(); window["userdata_[sid]_codes_[key]"] = {};',
|
455 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return (field.checked ? "true" : "false"); };',
|
456 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
457 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
458 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { field.checked = ("[default]" == "true"); store.value = (field.checked ? "true" : "false"); };',
|
459 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value != "true" ? "'.WFU_ERROR_USERDATACHECKBOX_NOTCHECKED.'" : ""); };',
|
460 |
-
//javascript optional code
|
461 |
-
"validate_code" => "",
|
462 |
-
"typehook_code" => ""
|
463 |
),
|
464 |
array(
|
465 |
"type" => "radiobutton",
|
466 |
"type_description" => "Radio button",
|
|
|
|
|
|
|
|
|
467 |
//checkbox properties
|
468 |
"required" => "show/false",
|
469 |
"required_hint" => "if checked, then a radio button must be selected before file upload",
|
@@ -487,24 +419,15 @@ function wfu_formfield_definitions() {
|
|
487 |
"group" => "show/0",
|
488 |
"group_hint" => "all radio buttons having the same group id belong to the same group",
|
489 |
"format" => "show/",
|
490 |
-
"format_hint" => "define the location of the radio labels in relation to their radio buttons (top, right, bottom, left)\\r\\nand the placement of the radio buttons (horizontal, vertical)"
|
491 |
-
//html templates
|
492 |
-
"template" => '<input type="radio" id="userdata_[sid]_field_[key]" class="file_userdata_radiobutton" name="userdata_[sid]_radiogroup_[group]" autocomplete="[autocomplete]" onchange="var items = document.getElementsByName(this.name); for (var i = 0; i < items.length; i++) if (items[i].checked) {document.getElementById(\'hiddeninput_[sid]_userdata_[key]\').value = items[i].value; break;}" style="display:none;" onfocus="wfu_userdata_focused(document.getElementById(\'userdata_[sid]_field_[key]\'));" /><label id="userdata_[sid]_radiolabel_[key]" class="file_userdata_radiobutton_label" for="userdata_[sid]_field_[key]" style="display:none;">[data]</label><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
493 |
-
"template_testmode" => '<input type="radio" id="userdata_[sid]_field_[key]" class="file_userdata_radiobutton" name="userdata_[sid]_radiogroup_[group]" autocomplete="off" readonly="readonly" /><label id="userdata_[sid]_radiolabel_[key]" for="userdata_[sid]_field_[key]" style="display:none;">[list]</label>',
|
494 |
-
//javascript mandatory code
|
495 |
-
"init_code" => 'function wfu_radiobutton_init() { var data = "[data]"; var items = data.split(","); var f = document.getElementById("userdata_[sid]_field_[key]"); var l = document.getElementById("userdata_[sid]_radiolabel_[key]"); var p = f.parentNode; var fo = "[format]"; var pos = (fo.indexOf("top") > -1 ? "top" : (fo.indexOf("bottom") > -1 ? "bottom" : (fo.indexOf("left") > -1 ? "left" : "right"))); var or = (fo.indexOf("vertical") > -1 ? "vertical" : "horizontal"); var def = "[default]"; for (var i = 0; i < items.length; i++) { var f2 = f; var l2 = l; if (i > 0) {var f2 = f.cloneNode(true); f2.id += "_item_" + i; l2 = l.cloneNode(true); l2.id += "_item_" + i; l2.setAttribute("for", f2.id);} f2.value = items[i]; l2.innerHTML = items[i]; var w = document.createElement("DIV"); w.className = "file_userdata_radio_wrapper"; if (pos == "top") {w.appendChild(l2); w.appendChild(document.createElement("BR")); w.appendChild(f2);} else if (pos == "right") {w.appendChild(f2); w.appendChild(l2);} else if (pos == "bottom") {w.appendChild(f2); w.appendChild(document.createElement("BR")); w.appendChild(l2);} else if (pos == "left") {w.appendChild(l2); w.appendChild(f2);} f2.style.display = "inline-block"; l2.style.display = "inline-block"; f2.checked = (def == f2.value); if (i > 0 && or == "vertical") p.appendChild(document.createElement("BR")); p.appendChild(w); } }; wfu_radiobutton_init(); window["userdata_[sid]_codes_[key]"] = {};',
|
496 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { var value = ""; var items = document.getElementsByName(field.name); for (var i = 0; i < items.length; i++) if (items[i].checked) {value = items[i].value; break;} return value; };',
|
497 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { var items = document.getElementsByName(field.name); for (var i = 0; i < items.length; i++) items[i].disabled = true; };',
|
498 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { var items = document.getElementsByName(field.name); for (var i = 0; i < items.length; i++) items[i].disabled = false; };',
|
499 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { var items = document.getElementsByName(field.name); for (var i = 0; i < items.length; i++) {items[i].checked = (items[i].value == "[default]"); if (items[i].checked) store.value = items[i].value;} };',
|
500 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "" ? "'.WFU_ERROR_USERDATARADIO_NOTSELECTED.'" : ""); };',
|
501 |
-
//javascript optional code
|
502 |
-
"validate_code" => "",
|
503 |
-
"typehook_code" => ""
|
504 |
),
|
505 |
array(
|
506 |
"type" => "date",
|
507 |
"type_description" => "Date",
|
|
|
|
|
|
|
|
|
508 |
//checkbox properties
|
509 |
"required" => "show/false",
|
510 |
"required_hint" => "if checked, then a date must be entered before file upload",
|
@@ -528,24 +451,15 @@ function wfu_formfield_definitions() {
|
|
528 |
"group" => "hide/",
|
529 |
"group_hint" => "enter a group value",
|
530 |
"format" => "show/",
|
531 |
-
"format_hint" => "define the format of the date field as follows:\\r\\n d - day of month (no leading zero)\\r\\n dd - day of month (two digit)\\r\\n o - day of the year (no leading zeros)\\r\\n oo - day of the year (three digit)\\r\\n D - day name short\\r\\n DD - day name long\\r\\n m - month of year (no leading zero)\\r\\n mm - month of year (two digit)\\r\\n M - month name short\\r\\n MM - month name long\\r\\n y - year (two digit)\\r\\n yy - year (four digit)\\r\\n @ - Unix timestamp (ms since 01/01/1970)\\r\\n ! - Windows ticks (100ns since 01/01/0001)\\r\\n '...' - literal text\\r\\n '' - single quote\\r\\n anything else - literal text\\r\\nthe format must be in parenthesis ()"
|
532 |
-
//html templates
|
533 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" autocomplete="[autocomplete]" readonly="readonly" onchange="document.getElementById(\'hiddeninput_[sid]_userdata_[key]\').value = this.value;" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
534 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" autocomplete="off" readonly="readonly" />',
|
535 |
-
//javascript mandatory code
|
536 |
-
"init_code" => 'jQuery(function() {var format = "[format]"; format = format.trim(); if (format.substr(0, 1) == "(" && format.substr(format.length - 1, 1) == ")") format = format.substr(1, format.length - 2); else format = ""; if (format == "") format = "yy-mm-dd"; var def = "[default]"; def = def.trim(); if (def.substr(0, 1) == "(" && def.substr(def.length - 1, 1) == ")") def = def.substr(1, def.length - 2); else def = ""; jQuery("#userdata_[sid]_field_[key]").datepicker({dateFormat: format, showButtonPanel: true}).datepicker("setDate", def); }); window["userdata_[sid]_codes_[key]"] = {};',
|
537 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
538 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
539 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
540 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { var def = "[default]"; def = def.trim(); if (def.substr(0, 1) == "(" && def.substr(def.length - 1, 1) == ")") def = def.substr(1, def.length - 2); else def = ""; jQuery("#userdata_[sid]_field_[key]").datepicker("setDate", def); store.value = field.value; };',
|
541 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field, store) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
542 |
-
//javascript optional code
|
543 |
-
"validate_code" => "",
|
544 |
-
"typehook_code" => ""
|
545 |
),
|
546 |
array(
|
547 |
"type" => "time",
|
548 |
"type_description" => "Time",
|
|
|
|
|
|
|
|
|
549 |
//checkbox properties
|
550 |
"required" => "show/false",
|
551 |
"required_hint" => "if checked, then a time must be entered before file upload",
|
@@ -569,24 +483,15 @@ function wfu_formfield_definitions() {
|
|
569 |
"group" => "hide/",
|
570 |
"group_hint" => "enter a group value",
|
571 |
"format" => "show/",
|
572 |
-
"format_hint" => "define the format of the time field as follows:\\r\\n H - hour with no leading 0 (24 hour)\\r\\n HH - hour with leading 0 (24 hour)\\r\\n h - hour with no leading 0 (12 hour)\\r\\n hh - hour with leading 0 (12 hour)\\r\\n m - minute with no leading 0\\r\\n mm - minute with leading 0\\r\\n s - second with no leading 0\\r\\n ss - second with leading 0\\r\\n l - milliseconds always with leading 0\\r\\n c - microseconds always with leading 0\\r\\n t - a or p for AM/PM\\r\\n T - A or P for AM/PM\\r\\n tt - am or pm for AM/PM\\r\\n TT - AM or PM for AM/PM\\r\\n z - timezone as defined by timezoneList\\r\\n Z - timezone in Iso 8601 format (+04:45)\\r\\n '...' - literal text\\r\\nthe format must be in parenthesis ()"
|
573 |
-
//html templates
|
574 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" autocomplete="[autocomplete]" readonly="readonly" onchange="document.getElementById(\'hiddeninput_[sid]_userdata_[key]\').value = this.value;" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
575 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" autocomplete="off" readonly="readonly" />',
|
576 |
-
//javascript mandatory code
|
577 |
-
"init_code" => 'jQuery(function() {var format = "[format]"; format = format.trim(); if (format.substr(0, 1) == "(" && format.substr(format.length - 1, 1) == ")") format = format.substr(1, format.length - 2); else format = ""; if (format == "") format = "HH:mm"; var def = "[default]"; def = def.trim(); if (def.substr(0, 1) == "(" && def.substr(def.length - 1, 1) == ")") def = def.substr(1, def.length - 2); else def = ""; jQuery("#userdata_[sid]_field_[key]").timepicker({timeFormat: format}).datepicker("setTime", def); }); window["userdata_[sid]_codes_[key]"] = {};',
|
578 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
579 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
580 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
581 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { var def = "[default]"; def = def.trim(); if (def.substr(0, 1) == "(" && def.substr(def.length - 1, 1) == ")") def = def.substr(1, def.length - 2); else def = ""; jQuery("#userdata_[sid]_field_[key]").datepicker("setTime", def); store.value = field.value; };',
|
582 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field, store) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
583 |
-
//javascript optional code
|
584 |
-
"validate_code" => "",
|
585 |
-
"typehook_code" => ""
|
586 |
),
|
587 |
array(
|
588 |
"type" => "datetime",
|
589 |
"type_description" => "DateTime",
|
|
|
|
|
|
|
|
|
590 |
//checkbox properties
|
591 |
"required" => "show/false",
|
592 |
"required_hint" => "if checked, then a date and time must be entered before file upload",
|
@@ -610,24 +515,15 @@ function wfu_formfield_definitions() {
|
|
610 |
"group" => "hide/",
|
611 |
"group_hint" => "enter a group value",
|
612 |
"format" => "show/",
|
613 |
-
"format_hint" => "define the format of the datetime field as follows:\\r\\n date(dateformat) where dateformat is:\\r\\n d - day of month (no leading zero)\\r\\n dd - day of month (two digit)\\r\\n o - day of the year (no leading zeros)\\r\\n oo - day of the year (three digit)\\r\\n D - day name short\\r\\n DD - day name long\\r\\n m - month of year (no leading zero)\\r\\n mm - month of year (two digit)\\r\\n M - month name short\\r\\n MM - month name long\\r\\n y - year (two digit)\\r\\n yy - year (four digit)\\r\\n @ - Unix timestamp (ms since 01/01/1970)\\r\\n ! - Windows ticks (100ns since 01/01/0001)\\r\\n '...' - literal text\\r\\n '' - single quote\\r\\n anything else - literal text\\r\\n time(timeformat) where timeformat is:\\r\\n H - hour with no leading 0 (24 hour)\\r\\n HH - hour with leading 0 (24 hour)\\r\\n h - hour with no leading 0 (12 hour)\\r\\n hh - hour with leading 0 (12 hour)\\r\\n m - minute with no leading 0\\r\\n mm - minute with leading 0\\r\\n s - second with no leading 0\\r\\n ss - second with leading 0\\r\\n l - milliseconds always with leading 0\\r\\n c - microseconds always with leading 0\\r\\n t - a or p for AM/PM\\r\\n T - A or P for AM/PM\\r\\n tt - am or pm for AM/PM\\r\\n TT - AM or PM for AM/PM\\r\\n z - timezone as defined by timezoneList\\r\\n Z - timezone in Iso 8601 format (+04:45)\\r\\n '...' - literal text"
|
614 |
-
//html templates
|
615 |
-
"template" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" autocomplete="[autocomplete]" readonly="readonly" onchange="document.getElementById(\'hiddeninput_[sid]_userdata_[key]\').value = this.value;" onfocus="wfu_userdata_focused(this);" /><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
616 |
-
"template_testmode" => '<input type="text" id="userdata_[sid]_field_[key]" class="file_userdata_message" autocomplete="off" readonly="readonly" />',
|
617 |
-
//javascript mandatory code
|
618 |
-
"init_code" => 'jQuery(function() {var format = "[format]"; var dateformat = "yy-mm-dd"; var timeformat = "HH:mm"; var re = /(date|time)\((.*?)\)/g; var f; while ((f = re.exec(format)) !== null) {if (f[1] == "date") dateformat = f[2]; else if (f[1] == "time") timeformat = f[2];} var def = "[default]"; def = def.trim(); if (def.substr(0, 1) == "(" && def.substr(def.length - 1, 1) == ")") def = def.substr(1, def.length - 2); else def = ""; jQuery("#userdata_[sid]_field_[key]").datetimepicker({dateFormat: dateformat, timeFormat: timeformat}).datetimepicker("setDate", def); }); window["userdata_[sid]_codes_[key]"] = {};',
|
619 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
620 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
621 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
622 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { var def = "[default]"; def = def.trim(); if (def.substr(0, 1) == "(" && def.substr(def.length - 1, 1) == ")") def = def.substr(1, def.length - 2); else def = ""; jQuery("#userdata_[sid]_field_[key]").datetimepicker("setDate", def); store.value = field.value; };',
|
623 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field, store) { return (field.value === "") ? "'.WFU_ERROR_USERDATA_EMPTY.'" : ""; };',
|
624 |
-
//javascript optional code
|
625 |
-
"validate_code" => "",
|
626 |
-
"typehook_code" => ""
|
627 |
),
|
628 |
array(
|
629 |
"type" => "list",
|
630 |
"type_description" => "Listbox",
|
|
|
|
|
|
|
|
|
631 |
//checkbox properties
|
632 |
"required" => "show/false",
|
633 |
"required_hint" => "if checked, then a list item must be selected before file upload",
|
@@ -651,24 +547,15 @@ function wfu_formfield_definitions() {
|
|
651 |
"group" => "hide/",
|
652 |
"group_hint" => "all items having the same group id belong to the same group",
|
653 |
"format" => "hide/",
|
654 |
-
"format_hint" => "enter the format of the list"
|
655 |
-
//html templates
|
656 |
-
"template" => '<select id="userdata_[sid]_field_[key]" class="file_userdata_listbox" multiple="multiple" autocomplete="[autocomplete]" value="[default]" onchange="document.getElementById(\'hiddeninput_[sid]_userdata_[key]\').value = this.value;" onfocus="wfu_userdata_focused(this);"><option id="userdata_[sid]_listitem_[key]" style="display:none;"></option></select><input id="userdata_[sid]_props_[key]" type="hidden" value="p:[hintposition]" />',
|
657 |
-
"template_testmode" => '<select id="userdata_[sid]_field_[key]" class="file_userdata_listbox" multiple="multiple" autocomplete="off" readonly="readonly"><option>Test value</option></select>',
|
658 |
-
//javascript mandatory code
|
659 |
-
"init_code" => 'function wfu_listbox_init() { var data = "[data]"; var items = data.split(","); var f = document.getElementById("userdata_[sid]_field_[key]"); var o = document.getElementById("userdata_[sid]_listitem_[key]"); var def = "[default]"; for (var i = 0; i < items.length; i++) { var o2 = o; if (i > 0) o2 = o.cloneNode(true); o2.value = items[i]; o2.innerHTML = items[i]; o2.selected = (o2.value == def); o2.style.display = "block"; if (i > 0) f.appendChild(o2); } }; wfu_listbox_init(); window["userdata_[sid]_codes_[key]"] = {};',
|
660 |
-
"value_code" => 'window["userdata_[sid]_codes_[key]"].value = function(field) { return field.value; };',
|
661 |
-
"lock_code" => 'window["userdata_[sid]_codes_[key]"].lock = function(field) { field.disabled = true; };',
|
662 |
-
"unlock_code" => 'window["userdata_[sid]_codes_[key]"].unlock = function(field) { field.disabled = false; };',
|
663 |
-
"reset_code" => 'window["userdata_[sid]_codes_[key]"].reset = function(field, store) { for (var i = 0; i < field.options.length; i++) {field.options[i].checked = (field.options[i].value == "[default]"); if (field.options[i].checked) store.value = field.options[i].value;} };',
|
664 |
-
"empty_code" => 'window["userdata_[sid]_codes_[key]"].empty = function(field) { return (field.value === "" ? "'.WFU_ERROR_USERDATALIST_NOITEMSELECTED.'" : ""); };',
|
665 |
-
//javascript optional code
|
666 |
-
"validate_code" => "",
|
667 |
-
"typehook_code" => ""
|
668 |
),
|
669 |
array(
|
670 |
"type" => "dropdown",
|
671 |
"type_description" => "Dropdown",
|
|
|
|
|
|
|
|
|
672 |
//checkbox properties
|
673 |
"required" => "show/false",
|
674 |
"required_hint" => "if checked, then an item from the dropdown list must be selected before file upload",
|
@@ -692,20 +579,39 @@ function wfu_formfield_definitions() {
|
|
692 |
"group" => "hide/",
|
693 |
"group_hint" => "all items having the same group id belong to the same group",
|
694 |
"format" => "hide/",
|
695 |
-
"format_hint" => "enter the format of the list"
|
696 |
-
|
697 |
-
|
698 |
-
"
|
699 |
-
|
700 |
-
|
701 |
-
"
|
702 |
-
"
|
703 |
-
"
|
704 |
-
|
705 |
-
"
|
706 |
-
|
707 |
-
"
|
708 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
709 |
)
|
710 |
);
|
711 |
|
@@ -1464,35 +1370,80 @@ function wfu_attribute_definitions() {
|
|
1464 |
"variables" => null,
|
1465 |
"help" => "Determines which data are considered as personal data. By default only userdata are considered as personal data. If the 2nd option is selected, then files will also be considered as personal data. This means that if the users do not give their consent, then the files will not be uploaded on the website, they will only be inluded in the notification email as attachments, if email notifications are active."
|
1466 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1467 |
array(
|
1468 |
"name" => "Consent Format",
|
1469 |
"attribute" => "consentformat",
|
1470 |
"type" => "radio",
|
1471 |
"validator" => "text",
|
1472 |
-
"listitems" => array("
|
1473 |
"value" => WFU_VAR("WFU_CONSENTFORMAT"),
|
1474 |
"mode" => "free",
|
1475 |
"category" => "personaldata",
|
1476 |
"subcategory" => "Consent Appearance",
|
1477 |
"parent" => "",
|
1478 |
-
"dependencies" =>
|
1479 |
"variables" => null,
|
1480 |
"help" => "Determines how consent question will appear to the user. If 'checkbox' is selected then a checkbox will appear inside the upload form which the user needs to tick. If 'radio' is selected then a radio button with 'Yes' and 'No' answers will appear inside the form (this makes sure that the user will select something after all. If 'prompt' is selected then a dialog will appear on the user when pressing the upload button asking for consent."
|
1481 |
),
|
1482 |
array(
|
1483 |
-
"name" => "
|
1484 |
"attribute" => "consentpreselect",
|
1485 |
-
"type" => "
|
1486 |
"validator" => "text",
|
1487 |
-
"listitems" =>
|
1488 |
"value" => WFU_VAR("WFU_CONSENTPRESELECT"),
|
1489 |
"mode" => "free",
|
1490 |
"category" => "personaldata",
|
1491 |
"subcategory" => "Consent Appearance",
|
1492 |
-
"parent" => "
|
1493 |
"dependencies" => null,
|
1494 |
"variables" => null,
|
1495 |
-
"help" => "
|
1496 |
),
|
1497 |
array(
|
1498 |
"name" => "Consent Question for Checkbox",
|
136 |
array(
|
137 |
"type" => "text",
|
138 |
"type_description" => "Simple Text",
|
139 |
+
//label properties
|
140 |
+
"label" => "",
|
141 |
+
"label_label" => "Label",
|
142 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
143 |
//checkbox properties
|
144 |
"required" => "show/false",
|
145 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
163 |
"group" => "hide/",
|
164 |
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
165 |
"format" => "hide/",
|
166 |
+
"format_hint" => "enter a format to format user selection"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
),
|
168 |
array(
|
169 |
"type" => "multitext",
|
170 |
"type_description" => "Multiple Lines Text",
|
171 |
+
//label properties
|
172 |
+
"label" => "",
|
173 |
+
"label_label" => "Label",
|
174 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
175 |
//checkbox properties
|
176 |
"required" => "show/false",
|
177 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
195 |
"group" => "hide/",
|
196 |
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
197 |
"format" => "hide/",
|
198 |
+
"format_hint" => "enter a format to format user selection"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
),
|
200 |
array(
|
201 |
"type" => "number",
|
202 |
"type_description" => "Number",
|
203 |
+
//label properties
|
204 |
+
"label" => "",
|
205 |
+
"label_label" => "Label",
|
206 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
207 |
//checkbox properties
|
208 |
"required" => "show/false",
|
209 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
227 |
"group" => "hide/",
|
228 |
"group_hint" => "if a non-empty group value is set, then another email confirmation field belonging to the same group must have the same email value",
|
229 |
"format" => "show/d",
|
230 |
+
"format_hint" => "enter a format for the number:\\r\\n d for integers\\r\\n f for floating point numbers\\r\\nthe dot (.) symbol is used as a decimal separator"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
),
|
232 |
array(
|
233 |
"type" => "email",
|
234 |
"type_description" => "Email",
|
235 |
+
//label properties
|
236 |
+
"label" => "",
|
237 |
+
"label_label" => "Label",
|
238 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
239 |
//checkbox properties
|
240 |
"required" => "show/false",
|
241 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
259 |
"group" => "show/0",
|
260 |
"group_hint" => "if a non-empty group value is set, then another email confirmation field belonging to the same group must have the same email value",
|
261 |
"format" => "hide/",
|
262 |
+
"format_hint" => "enter a format to format user selection"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
),
|
264 |
array(
|
265 |
"type" => "confirmemail",
|
266 |
"type_description" => "Confirmation Email",
|
267 |
+
//label properties
|
268 |
+
"label" => "",
|
269 |
+
"label_label" => "Label",
|
270 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
271 |
//checkbox properties
|
272 |
"required" => "show/true",
|
273 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
291 |
"group" => "show/0",
|
292 |
"group_hint" => "enter a non-empty value to match this email confirmation field with another email field",
|
293 |
"format" => "hide/",
|
294 |
+
"format_hint" => "enter a format to format user selection"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
),
|
296 |
array(
|
297 |
"type" => "password",
|
298 |
"type_description" => "Password",
|
299 |
+
//label properties
|
300 |
+
"label" => "",
|
301 |
+
"label_label" => "Label",
|
302 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
303 |
//checkbox properties
|
304 |
"required" => "show/true",
|
305 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
323 |
"group" => "show/0",
|
324 |
"group_hint" => "if a non-empty group value is set, then another password confirmation field belonging to the same group must have the same password",
|
325 |
"format" => "hide/",
|
326 |
+
"format_hint" => "enter a format to format user selection"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
),
|
328 |
array(
|
329 |
"type" => "confirmpassword",
|
330 |
"type_description" => "Confirmation Password",
|
331 |
+
//label properties
|
332 |
+
"label" => "",
|
333 |
+
"label_label" => "Label",
|
334 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
335 |
//checkbox properties
|
336 |
"required" => "show/true",
|
337 |
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
355 |
"group" => "show/0",
|
356 |
"group_hint" => "if a non-empty group value is set, then another password confirmation field belonging to the same group must have the same password",
|
357 |
"format" => "hide/",
|
358 |
+
"format_hint" => "enter a format to format user selection"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
),
|
360 |
array(
|
361 |
"type" => "checkbox",
|
362 |
"type_description" => "Checkbox",
|
363 |
+
//label properties
|
364 |
+
"label" => "",
|
365 |
+
"label_label" => "Label",
|
366 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
367 |
//checkbox properties
|
368 |
"required" => "show/false",
|
369 |
"required_hint" => "if checked, then this checkbox field must be checked before file upload",
|
387 |
"group" => "hide/",
|
388 |
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
389 |
"format" => "show/right",
|
390 |
+
"format_hint" => "define the location of the description in relation to the check box\\r\\npossible values are: top, right, bottom, left"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
391 |
),
|
392 |
array(
|
393 |
"type" => "radiobutton",
|
394 |
"type_description" => "Radio button",
|
395 |
+
//label properties
|
396 |
+
"label" => "",
|
397 |
+
"label_label" => "Label",
|
398 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
399 |
//checkbox properties
|
400 |
"required" => "show/false",
|
401 |
"required_hint" => "if checked, then a radio button must be selected before file upload",
|
419 |
"group" => "show/0",
|
420 |
"group_hint" => "all radio buttons having the same group id belong to the same group",
|
421 |
"format" => "show/",
|
422 |
+
"format_hint" => "define the location of the radio labels in relation to their radio buttons (top, right, bottom, left)\\r\\nand the placement of the radio buttons (horizontal, vertical)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
423 |
),
|
424 |
array(
|
425 |
"type" => "date",
|
426 |
"type_description" => "Date",
|
427 |
+
//label properties
|
428 |
+
"label" => "",
|
429 |
+
"label_label" => "Label",
|
430 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
431 |
//checkbox properties
|
432 |
"required" => "show/false",
|
433 |
"required_hint" => "if checked, then a date must be entered before file upload",
|
451 |
"group" => "hide/",
|
452 |
"group_hint" => "enter a group value",
|
453 |
"format" => "show/",
|
454 |
+
"format_hint" => "define the format of the date field as follows:\\r\\n d - day of month (no leading zero)\\r\\n dd - day of month (two digit)\\r\\n o - day of the year (no leading zeros)\\r\\n oo - day of the year (three digit)\\r\\n D - day name short\\r\\n DD - day name long\\r\\n m - month of year (no leading zero)\\r\\n mm - month of year (two digit)\\r\\n M - month name short\\r\\n MM - month name long\\r\\n y - year (two digit)\\r\\n yy - year (four digit)\\r\\n @ - Unix timestamp (ms since 01/01/1970)\\r\\n ! - Windows ticks (100ns since 01/01/0001)\\r\\n '...' - literal text\\r\\n '' - single quote\\r\\n anything else - literal text\\r\\nthe format must be in parenthesis ()"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
),
|
456 |
array(
|
457 |
"type" => "time",
|
458 |
"type_description" => "Time",
|
459 |
+
//label properties
|
460 |
+
"label" => "",
|
461 |
+
"label_label" => "Label",
|
462 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
463 |
//checkbox properties
|
464 |
"required" => "show/false",
|
465 |
"required_hint" => "if checked, then a time must be entered before file upload",
|
483 |
"group" => "hide/",
|
484 |
"group_hint" => "enter a group value",
|
485 |
"format" => "show/",
|
486 |
+
"format_hint" => "define the format of the time field as follows:\\r\\n H - hour with no leading 0 (24 hour)\\r\\n HH - hour with leading 0 (24 hour)\\r\\n h - hour with no leading 0 (12 hour)\\r\\n hh - hour with leading 0 (12 hour)\\r\\n m - minute with no leading 0\\r\\n mm - minute with leading 0\\r\\n s - second with no leading 0\\r\\n ss - second with leading 0\\r\\n l - milliseconds always with leading 0\\r\\n c - microseconds always with leading 0\\r\\n t - a or p for AM/PM\\r\\n T - A or P for AM/PM\\r\\n tt - am or pm for AM/PM\\r\\n TT - AM or PM for AM/PM\\r\\n z - timezone as defined by timezoneList\\r\\n Z - timezone in Iso 8601 format (+04:45)\\r\\n '...' - literal text\\r\\nthe format must be in parenthesis ()"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
),
|
488 |
array(
|
489 |
"type" => "datetime",
|
490 |
"type_description" => "DateTime",
|
491 |
+
//label properties
|
492 |
+
"label" => "",
|
493 |
+
"label_label" => "Label",
|
494 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
495 |
//checkbox properties
|
496 |
"required" => "show/false",
|
497 |
"required_hint" => "if checked, then a date and time must be entered before file upload",
|
515 |
"group" => "hide/",
|
516 |
"group_hint" => "enter a group value",
|
517 |
"format" => "show/",
|
518 |
+
"format_hint" => "define the format of the datetime field as follows:\\r\\n date(dateformat) where dateformat is:\\r\\n d - day of month (no leading zero)\\r\\n dd - day of month (two digit)\\r\\n o - day of the year (no leading zeros)\\r\\n oo - day of the year (three digit)\\r\\n D - day name short\\r\\n DD - day name long\\r\\n m - month of year (no leading zero)\\r\\n mm - month of year (two digit)\\r\\n M - month name short\\r\\n MM - month name long\\r\\n y - year (two digit)\\r\\n yy - year (four digit)\\r\\n @ - Unix timestamp (ms since 01/01/1970)\\r\\n ! - Windows ticks (100ns since 01/01/0001)\\r\\n '...' - literal text\\r\\n '' - single quote\\r\\n anything else - literal text\\r\\n time(timeformat) where timeformat is:\\r\\n H - hour with no leading 0 (24 hour)\\r\\n HH - hour with leading 0 (24 hour)\\r\\n h - hour with no leading 0 (12 hour)\\r\\n hh - hour with leading 0 (12 hour)\\r\\n m - minute with no leading 0\\r\\n mm - minute with leading 0\\r\\n s - second with no leading 0\\r\\n ss - second with leading 0\\r\\n l - milliseconds always with leading 0\\r\\n c - microseconds always with leading 0\\r\\n t - a or p for AM/PM\\r\\n T - A or P for AM/PM\\r\\n tt - am or pm for AM/PM\\r\\n TT - AM or PM for AM/PM\\r\\n z - timezone as defined by timezoneList\\r\\n Z - timezone in Iso 8601 format (+04:45)\\r\\n '...' - literal text"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
519 |
),
|
520 |
array(
|
521 |
"type" => "list",
|
522 |
"type_description" => "Listbox",
|
523 |
+
//label properties
|
524 |
+
"label" => "",
|
525 |
+
"label_label" => "Label",
|
526 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
527 |
//checkbox properties
|
528 |
"required" => "show/false",
|
529 |
"required_hint" => "if checked, then a list item must be selected before file upload",
|
547 |
"group" => "hide/",
|
548 |
"group_hint" => "all items having the same group id belong to the same group",
|
549 |
"format" => "hide/",
|
550 |
+
"format_hint" => "enter the format of the list"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
),
|
552 |
array(
|
553 |
"type" => "dropdown",
|
554 |
"type_description" => "Dropdown",
|
555 |
+
//label properties
|
556 |
+
"label" => "",
|
557 |
+
"label_label" => "Label",
|
558 |
+
"label_hint" => "enter the label that will be shown next to the field",
|
559 |
//checkbox properties
|
560 |
"required" => "show/false",
|
561 |
"required_hint" => "if checked, then an item from the dropdown list must be selected before file upload",
|
579 |
"group" => "hide/",
|
580 |
"group_hint" => "all items having the same group id belong to the same group",
|
581 |
"format" => "hide/",
|
582 |
+
"format_hint" => "enter the format of the list"
|
583 |
+
),
|
584 |
+
array(
|
585 |
+
"type" => "honeypot",
|
586 |
+
"type_description" => "Hidden Honeypot",
|
587 |
+
//label properties
|
588 |
+
"label" => "website",
|
589 |
+
"label_label" => "Name",
|
590 |
+
"label_hint" => "enter the name of the honeypot field; it must be a value that bots can easily recognize, like \'website\' or \'URL\'",
|
591 |
+
//checkbox properties
|
592 |
+
"required" => "hide/false",
|
593 |
+
"required_hint" => "if checked, then this field must have a non-empty value for the file to be uploaded",
|
594 |
+
"donotautocomplete" => "hide/true",
|
595 |
+
"donotautocomplete_hint" => "if checked, then the field will notify the browsers not to fill it with autocomplete data when the plugin is reloaded",
|
596 |
+
"validate" => "hide/false",
|
597 |
+
"validate_hint" => "if checked, then the field value entered by the user will be validated before file upload",
|
598 |
+
"typehook" => "hide/false",
|
599 |
+
"typehook_hint" => "if checked, then text suggestions will be shown below the field as the user types more text inside",
|
600 |
+
//dropdown properties
|
601 |
+
"labelposition" => "hide/none",
|
602 |
+
"labelposition_hint" => "select the position of the field's label; the position is relative to the field",
|
603 |
+
"hintposition" => "hide/none",
|
604 |
+
"hintposition_hint" => "select the position of the hint that will be shown to notify the user that something is wrong\\r\\nthe position is relative to the field",
|
605 |
+
//text properties
|
606 |
+
"default" => "hide/",
|
607 |
+
"default_hint" => "enter a default value for the field or leave it empty if you do not want a default value",
|
608 |
+
"data" => "hide/",
|
609 |
+
"data_label" => "Data",
|
610 |
+
"data_hint" => "complete a list of values to be shown to the user",
|
611 |
+
"group" => "hide/",
|
612 |
+
"group_hint" => "if a value is set, then all fields having the same value will belong to the same group",
|
613 |
+
"format" => "hide/",
|
614 |
+
"format_hint" => "enter a format to format user selection"
|
615 |
)
|
616 |
);
|
617 |
|
1370 |
"variables" => null,
|
1371 |
"help" => "Determines which data are considered as personal data. By default only userdata are considered as personal data. If the 2nd option is selected, then files will also be considered as personal data. This means that if the users do not give their consent, then the files will not be uploaded on the website, they will only be inluded in the notification email as attachments, if email notifications are active."
|
1372 |
),
|
1373 |
+
array(
|
1374 |
+
"name" => "Do Not Remember Consent Answer",
|
1375 |
+
"attribute" => "notrememberconsent",
|
1376 |
+
"type" => "onoff",
|
1377 |
+
"validator" => "text",
|
1378 |
+
"listitems" => null,
|
1379 |
+
"value" => WFU_VAR("WFU_NOTREMEMBERCONSENT"),
|
1380 |
+
"mode" => "free",
|
1381 |
+
"category" => "personaldata",
|
1382 |
+
"subcategory" => "Consent Behaviour",
|
1383 |
+
"parent" => "",
|
1384 |
+
"dependencies" => null,
|
1385 |
+
"variables" => null,
|
1386 |
+
"help" => "If activated the plugin will not remember the consent answer provided by the user and the consent question will always show."
|
1387 |
+
),
|
1388 |
+
array(
|
1389 |
+
"name" => "Consent Denial Rejects Upload",
|
1390 |
+
"attribute" => "consentrejectupload",
|
1391 |
+
"type" => "onoff",
|
1392 |
+
"validator" => "text",
|
1393 |
+
"listitems" => null,
|
1394 |
+
"value" => WFU_VAR("WFU_CONSENTREJECTUPLOAD"),
|
1395 |
+
"mode" => "free",
|
1396 |
+
"category" => "personaldata",
|
1397 |
+
"subcategory" => "Consent Behaviour",
|
1398 |
+
"parent" => "",
|
1399 |
+
"dependencies" => array("consentrejectmessage"),
|
1400 |
+
"variables" => null,
|
1401 |
+
"help" => "If activated and user has denied consent then the upload will be rejected. If deactivated, then the upload will continue regardless of consent answer."
|
1402 |
+
),
|
1403 |
+
array(
|
1404 |
+
"name" => "Reject Message",
|
1405 |
+
"attribute" => "consentrejectmessage",
|
1406 |
+
"type" => "ltext",
|
1407 |
+
"validator" => "text",
|
1408 |
+
"listitems" => null,
|
1409 |
+
"value" => WFU_CONSENTREJECTMESSAGE,
|
1410 |
+
"mode" => "free",
|
1411 |
+
"category" => "personaldata",
|
1412 |
+
"subcategory" => "Consent Behaviour",
|
1413 |
+
"parent" => "consentrejectupload",
|
1414 |
+
"dependencies" => null,
|
1415 |
+
"variables" => null,
|
1416 |
+
"help" => "It defines the message that will appear to the user if upload cannot continue due to consent denial."
|
1417 |
+
),
|
1418 |
array(
|
1419 |
"name" => "Consent Format",
|
1420 |
"attribute" => "consentformat",
|
1421 |
"type" => "radio",
|
1422 |
"validator" => "text",
|
1423 |
+
"listitems" => array("checkbox", "radio", "prompt"),
|
1424 |
"value" => WFU_VAR("WFU_CONSENTFORMAT"),
|
1425 |
"mode" => "free",
|
1426 |
"category" => "personaldata",
|
1427 |
"subcategory" => "Consent Appearance",
|
1428 |
"parent" => "",
|
1429 |
+
"dependencies" => null,
|
1430 |
"variables" => null,
|
1431 |
"help" => "Determines how consent question will appear to the user. If 'checkbox' is selected then a checkbox will appear inside the upload form which the user needs to tick. If 'radio' is selected then a radio button with 'Yes' and 'No' answers will appear inside the form (this makes sure that the user will select something after all. If 'prompt' is selected then a dialog will appear on the user when pressing the upload button asking for consent."
|
1432 |
),
|
1433 |
array(
|
1434 |
+
"name" => "Preselected Answer",
|
1435 |
"attribute" => "consentpreselect",
|
1436 |
+
"type" => "radio",
|
1437 |
"validator" => "text",
|
1438 |
+
"listitems" => array("none", "yes", "no"),
|
1439 |
"value" => WFU_VAR("WFU_CONSENTPRESELECT"),
|
1440 |
"mode" => "free",
|
1441 |
"category" => "personaldata",
|
1442 |
"subcategory" => "Consent Appearance",
|
1443 |
+
"parent" => "",
|
1444 |
"dependencies" => null,
|
1445 |
"variables" => null,
|
1446 |
+
"help" => "Determines whether a default answer will be selected."
|
1447 |
),
|
1448 |
array(
|
1449 |
"name" => "Consent Question for Checkbox",
|
lib/wfu_blocks.php
CHANGED
@@ -396,6 +396,10 @@ function wfu_prepare_message_block($params, $additional_params, $occurrence_inde
|
|
396 |
$header_styles["State16"]['message'] = WFU_UPLOAD_STATE16;
|
397 |
$header_styles["State17"] = wfu_prepare_message_colors(WFU_VAR("WFU_HEADERMESSAGECOLORS_STATE17"));
|
398 |
$header_styles["State17"]['message'] = WFU_UPLOAD_STATE17;
|
|
|
|
|
|
|
|
|
399 |
$data["header_styles"] = $header_styles;
|
400 |
|
401 |
$message_item["title"] = 'wordpress_file_upload_message_'.$data["ID"];
|
@@ -591,7 +595,7 @@ function wfu_prepare_consent_block($params, $additional_params, $occurrence_inde
|
|
591 |
$data["testmode"] = ( $params["testmode"] == "true" );
|
592 |
$data["index"] = $occurrence_index;
|
593 |
$data["format"] = $params["consentformat"];
|
594 |
-
$data["preselected"] =
|
595 |
$data["question"] = preg_replace("/:(\w*):/", "<a href=\"".$params["consentdisclaimer"]."\">$1</a>", $params["consentquestion"]);
|
596 |
$data["params"] = $params;
|
597 |
|
@@ -611,6 +615,11 @@ function wfu_prepare_consent_block($params, $additional_params, $occurrence_inde
|
|
611 |
"};\n\n".$consent_item["js"];
|
612 |
//append javascript variable that checks if consent exists or not
|
613 |
$consent_item["js"] .= "\n\nGlobalData.WFU[".$data["ID"]."].consent_exist = true;";
|
|
|
|
|
|
|
|
|
|
|
614 |
|
615 |
return $consent_item;
|
616 |
}
|
396 |
$header_styles["State16"]['message'] = WFU_UPLOAD_STATE16;
|
397 |
$header_styles["State17"] = wfu_prepare_message_colors(WFU_VAR("WFU_HEADERMESSAGECOLORS_STATE17"));
|
398 |
$header_styles["State17"]['message'] = WFU_UPLOAD_STATE17;
|
399 |
+
$header_styles["State18"] = wfu_prepare_message_colors(WFU_VAR("WFU_HEADERMESSAGECOLORS_STATE18"));
|
400 |
+
$header_styles["State18"]['message'] = WFU_UPLOAD_STATE18;
|
401 |
+
$header_styles["State19"] = wfu_prepare_message_colors(WFU_VAR("WFU_HEADERMESSAGECOLORS_STATE19"));
|
402 |
+
$header_styles["State19"]['message'] = WFU_UPLOAD_STATE19;
|
403 |
$data["header_styles"] = $header_styles;
|
404 |
|
405 |
$message_item["title"] = 'wordpress_file_upload_message_'.$data["ID"];
|
595 |
$data["testmode"] = ( $params["testmode"] == "true" );
|
596 |
$data["index"] = $occurrence_index;
|
597 |
$data["format"] = $params["consentformat"];
|
598 |
+
$data["preselected"] = $params["consentpreselect"];
|
599 |
$data["question"] = preg_replace("/:(\w*):/", "<a href=\"".$params["consentdisclaimer"]."\">$1</a>", $params["consentquestion"]);
|
600 |
$data["params"] = $params;
|
601 |
|
615 |
"};\n\n".$consent_item["js"];
|
616 |
//append javascript variable that checks if consent exists or not
|
617 |
$consent_item["js"] .= "\n\nGlobalData.WFU[".$data["ID"]."].consent_exist = true;";
|
618 |
+
//append additional consent parameters
|
619 |
+
$consent_item["js"] .= "\n\nGlobalData.WFU[".$data["ID"]."].consent.remember_consent = ".( $params["notrememberconsent"] != "true" ? "true" : "false" ).";";
|
620 |
+
$consent_item["js"] .= "\n\nGlobalData.WFU[".$data["ID"]."].consent.no_rejects_upload = ".( $params["consentrejectupload"] == "true" ? "true" : "false" ).";";
|
621 |
+
$consent_item["js"] .= "\n\nGlobalData.WFU[".$data["ID"]."].consent.consent_format = '".$params["consentformat"]."';";
|
622 |
+
$consent_item["js"] .= "\n\nGlobalData.WFU[".$data["ID"]."].consent.consent_question = '".preg_replace("/:(\w):/", "<a href=\"".$params["consentdisclaimer"]."\">$1</a>", $params["consentquestion"])."';";
|
623 |
|
624 |
return $consent_item;
|
625 |
}
|
lib/wfu_constants.php
CHANGED
@@ -22,6 +22,7 @@ function wfu_initialize_i18n_strings() {
|
|
22 |
DEFINE("WFU_VIDEONAME", __('videostream', 'wp-file-upload'));
|
23 |
DEFINE("WFU_IMAGENAME", __('screenshot', 'wp-file-upload'));
|
24 |
DEFINE("WFU_CONSENTQUESTION", __('By activating this option I agree to let the website keep my personal data', 'wp-file-upload'));
|
|
|
25 |
//browser default values
|
26 |
DEFINE("WFU_FILETITLE", __('File', 'wp-file-upload'));
|
27 |
DEFINE("WFU_DATETITLE", __('Date', 'wp-file-upload'));
|
@@ -176,6 +177,7 @@ function wfu_initialize_i18n_strings() {
|
|
176 |
DEFINE("WFU_VARIABLE_TITLE_USERDATAXXX", __("Insert variable %userdataXXX% inside text. Select the user field from the drop-down list. It will be replaced by the value that the user entered in this field.", "wp-file-upload"));
|
177 |
DEFINE("WFU_VARIABLE_TITLE_N", __("Insert variable %n% inside text to denote a line change.", "wp-file-upload"));
|
178 |
//other plugin values
|
|
|
179 |
DEFINE("WFU_NOTIFY_TESTMODE", __("Test Mode", "wp-file-upload"));
|
180 |
DEFINE("WFU_SUBDIR_SELECTDIR", __("select dir...", "wp-file-upload"));
|
181 |
DEFINE("WFU_SUBDIR_TYPEDIR", __("type dir", "wp-file-upload"));
|
@@ -215,6 +217,9 @@ function wfu_initialize_i18n_strings() {
|
|
215 |
DEFINE("WFU_UPLOAD_STATE15", __("Data were not submitted!", "wp-file-upload"));
|
216 |
DEFINE("WFU_UPLOAD_STATE16", __("Cancelling upload", "wp-file-upload"));
|
217 |
DEFINE("WFU_UPLOAD_STATE17", __("Upload cancelled!", "wp-file-upload"));
|
|
|
|
|
|
|
218 |
DEFINE("WFU_PAGE_PLUGINEDITOR_BUTTONTITLE", __("Open visual shortcode editor in new window", "wp-file-upload"));
|
219 |
DEFINE("WFU_PAGE_PLUGINEDITOR_LOADING", __("loading visual editor", "wp-file-upload"));
|
220 |
DEFINE("WFU_CONFIRM_CLEARFILES", __("Clear file list?", "wp-file-upload"));
|
@@ -293,8 +298,10 @@ $GLOBALS["WFU_GLOBALS"] = array(
|
|
293 |
"WFU_MAXRECORDTIME" => array( "Default Maximum Record Time", "string", "10", "The default maximum video recording time in seconds. The default value is 10 seconds." ),
|
294 |
"WFU_ASKCONSENT" => array( "Default Ask Consent State", "string", "false", "The default state of personal data consent request. The default value is false." ),
|
295 |
"WFU_PERSONALDATATYPES" => array( "Default Personal Data Types", "string", "userdata", "The default personal data types. The default value is 'userdata'." ),
|
296 |
-
"
|
297 |
-
"
|
|
|
|
|
298 |
);
|
299 |
//other plugin values
|
300 |
$GLOBALS["WFU_GLOBALS"] += array(
|
@@ -362,7 +369,9 @@ $GLOBALS["WFU_GLOBALS"] += array(
|
|
362 |
"WFU_HEADERMESSAGECOLORS_STATE14" => array( "State 14 Message Colors", "string", "#006600,#EEFFEE,#006666", "The color triplet (text, background and border colors) of message of upload state 14 (data submit succeeded) of the uploader shortcode." ),
|
363 |
"WFU_HEADERMESSAGECOLORS_STATE15" => array( "State 15 Message Colors", "string", "#660000,#FFEEEE,#666600", "The color triplet (text, background and border colors) of message of upload state 15 (data submit failed) of the uploader shortcode." ),
|
364 |
"WFU_HEADERMESSAGECOLORS_STATE16" => array( "State 16 Message Colors", "string", "#666666,#EEEEEE,#333333", "The color triplet (text, background and border colors) of message of upload state 16 (cancelling upload) of the uploader shortcode." ),
|
365 |
-
"WFU_HEADERMESSAGECOLORS_STATE17" => array( "State 17 Message Colors", "string", "#660000,#FFEEEE,#666600", "The color triplet (text, background and border colors) of message of upload state 17 (upload cancelled) of the uploader shortcode." )
|
|
|
|
|
366 |
);
|
367 |
//insert saved values to array
|
368 |
$envars = get_option("wfu_environment_variables", array());
|
22 |
DEFINE("WFU_VIDEONAME", __('videostream', 'wp-file-upload'));
|
23 |
DEFINE("WFU_IMAGENAME", __('screenshot', 'wp-file-upload'));
|
24 |
DEFINE("WFU_CONSENTQUESTION", __('By activating this option I agree to let the website keep my personal data', 'wp-file-upload'));
|
25 |
+
DEFINE("WFU_CONSENTREJECTMESSAGE", __('You have denied to let the website keep your personal data. Upload cannot continue!', 'wp-file-upload'));
|
26 |
//browser default values
|
27 |
DEFINE("WFU_FILETITLE", __('File', 'wp-file-upload'));
|
28 |
DEFINE("WFU_DATETITLE", __('Date', 'wp-file-upload'));
|
177 |
DEFINE("WFU_VARIABLE_TITLE_USERDATAXXX", __("Insert variable %userdataXXX% inside text. Select the user field from the drop-down list. It will be replaced by the value that the user entered in this field.", "wp-file-upload"));
|
178 |
DEFINE("WFU_VARIABLE_TITLE_N", __("Insert variable %n% inside text to denote a line change.", "wp-file-upload"));
|
179 |
//other plugin values
|
180 |
+
DEFINE("WFU_WARNINGMESSAGE_NOSAVE", __('File %filename% uploaded successfully but not saved', 'wp-file-upload'));
|
181 |
DEFINE("WFU_NOTIFY_TESTMODE", __("Test Mode", "wp-file-upload"));
|
182 |
DEFINE("WFU_SUBDIR_SELECTDIR", __("select dir...", "wp-file-upload"));
|
183 |
DEFINE("WFU_SUBDIR_TYPEDIR", __("type dir", "wp-file-upload"));
|
217 |
DEFINE("WFU_UPLOAD_STATE15", __("Data were not submitted!", "wp-file-upload"));
|
218 |
DEFINE("WFU_UPLOAD_STATE16", __("Cancelling upload", "wp-file-upload"));
|
219 |
DEFINE("WFU_UPLOAD_STATE17", __("Upload cancelled!", "wp-file-upload"));
|
220 |
+
DEFINE("WFU_UPLOAD_STATE18", __("Upload succeeded!", "wp-file-upload"));
|
221 |
+
DEFINE("WFU_UPLOAD_STATE19", __("Upload completed but no files were saved!", "wp-file-upload"));
|
222 |
+
DEFINE("WFU_UPLOAD_STATE19_SINGLEFILE", __("File was not saved due to personal data policy!", "wp-file-upload"));
|
223 |
DEFINE("WFU_PAGE_PLUGINEDITOR_BUTTONTITLE", __("Open visual shortcode editor in new window", "wp-file-upload"));
|
224 |
DEFINE("WFU_PAGE_PLUGINEDITOR_LOADING", __("loading visual editor", "wp-file-upload"));
|
225 |
DEFINE("WFU_CONFIRM_CLEARFILES", __("Clear file list?", "wp-file-upload"));
|
298 |
"WFU_MAXRECORDTIME" => array( "Default Maximum Record Time", "string", "10", "The default maximum video recording time in seconds. The default value is 10 seconds." ),
|
299 |
"WFU_ASKCONSENT" => array( "Default Ask Consent State", "string", "false", "The default state of personal data consent request. The default value is false." ),
|
300 |
"WFU_PERSONALDATATYPES" => array( "Default Personal Data Types", "string", "userdata", "The default personal data types. The default value is 'userdata'." ),
|
301 |
+
"WFU_NOTREMEMBERCONSENT" => array( "Default Do Not Remember Consent Answer State", "string", "false", "The default state about remembering or not user's answer on consent question. The default value is true." ),
|
302 |
+
"WFU_CONSENTREJECTUPLOAD" => array( "Default Reject Upload on Consent Denial State", "string", "false", "The default state of continuing or rejecting the upload depending on consent answer. The default value is true." ),
|
303 |
+
"WFU_CONSENTFORMAT" => array( "Default Consent Format", "string", "radio", "The default format of consent question. The default value is 'checkbox'." ),
|
304 |
+
"WFU_CONSENTPRESELECT" => array( "Default Consent Preselect State", "string", "none", "The default preselect state of consent question when checkbox format is active. The default value is false." )
|
305 |
);
|
306 |
//other plugin values
|
307 |
$GLOBALS["WFU_GLOBALS"] += array(
|
369 |
"WFU_HEADERMESSAGECOLORS_STATE14" => array( "State 14 Message Colors", "string", "#006600,#EEFFEE,#006666", "The color triplet (text, background and border colors) of message of upload state 14 (data submit succeeded) of the uploader shortcode." ),
|
370 |
"WFU_HEADERMESSAGECOLORS_STATE15" => array( "State 15 Message Colors", "string", "#660000,#FFEEEE,#666600", "The color triplet (text, background and border colors) of message of upload state 15 (data submit failed) of the uploader shortcode." ),
|
371 |
"WFU_HEADERMESSAGECOLORS_STATE16" => array( "State 16 Message Colors", "string", "#666666,#EEEEEE,#333333", "The color triplet (text, background and border colors) of message of upload state 16 (cancelling upload) of the uploader shortcode." ),
|
372 |
+
"WFU_HEADERMESSAGECOLORS_STATE17" => array( "State 17 Message Colors", "string", "#660000,#FFEEEE,#666600", "The color triplet (text, background and border colors) of message of upload state 17 (upload cancelled) of the uploader shortcode." ),
|
373 |
+
"WFU_HEADERMESSAGECOLORS_STATE18" => array( "State 18 Message Colors", "string", "#006600,#EEFFEE,#006666", "The color triplet (text, background and border colors) of message of upload state 18 (upload succeeded) of the uploader shortcode." ),
|
374 |
+
"WFU_HEADERMESSAGECOLORS_STATE19" => array( "State 19 Message Colors", "string", "#F88017,#FEF2E7,#633309", "The color triplet (text, background and border colors) of message of upload state 19 (upload completed but no files were saved due to personal data policy) of the uploader shortcode." )
|
375 |
);
|
376 |
//insert saved values to array
|
377 |
$envars = get_option("wfu_environment_variables", array());
|
lib/wfu_functions.php
CHANGED
@@ -2203,10 +2203,6 @@ function wfu_get_all_plugin_options() {
|
|
2203 |
array( "wordpress_file_upload_pd_policies", "db", true, true ),
|
2204 |
//last time admin was notified about DOS attack
|
2205 |
array( "wfu_admin_notification_about_DOS", "db", true, false ),
|
2206 |
-
//stored Dropbox authorization object
|
2207 |
-
array( "wfu_Dropbox_WebAuth", "session", true, false ),
|
2208 |
-
//stored Google Client object
|
2209 |
-
array( "wfu_GDrive_Client", "session", true, false ),
|
2210 |
//stored token for adding uploader shortcode
|
2211 |
array( "wfu_add_shortcode_ticket_for_wordpress_file_upload", "session", true, false ),
|
2212 |
//stored token for adding file viewer shortcode
|
@@ -2271,6 +2267,7 @@ function wfu_get_all_plugin_options() {
|
|
2271 |
array( "wfu_start_time_*", "session", true, false )
|
2272 |
);
|
2273 |
|
|
|
2274 |
return $options;
|
2275 |
}
|
2276 |
|
@@ -2650,7 +2647,7 @@ function wfu_send_notification_email($user, $uploaded_file_paths, $userdata_fiel
|
|
2650 |
$plugin_options = wfu_decode_plugin_options(get_option( "wordpress_file_upload_options" ));
|
2651 |
|
2652 |
//get consent status
|
2653 |
-
$consent_revoked = ( $plugin_options["personaldata"] == "1" &&
|
2654 |
$not_store_files = ( $params["personaldatatypes"] == "userdata and files" );
|
2655 |
//create necessary variables
|
2656 |
$only_filename_list = "";
|
@@ -2786,7 +2783,7 @@ function wfu_parse_userdata_attribute($value){
|
|
2786 |
foreach ( $definitions_unindexed as $def ) {
|
2787 |
$default = array();
|
2788 |
$default["type"] = $def["type"];
|
2789 |
-
$default["label"] = "";
|
2790 |
$default["labelposition"] = "".substr($def["labelposition"], 5);
|
2791 |
$default["required"] = ( substr($def["required"], 5) == "true" );
|
2792 |
$default["donotautocomplete"] = ( substr($def["donotautocomplete"], 5) == "true" );
|
@@ -2858,6 +2855,30 @@ function wfu_parse_userdata_attribute($value){
|
|
2858 |
return $fields;
|
2859 |
}
|
2860 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2861 |
//********************* User State Functions ****************************************************************************************************
|
2862 |
|
2863 |
function WFU_USVAR_exists($var) {
|
2203 |
array( "wordpress_file_upload_pd_policies", "db", true, true ),
|
2204 |
//last time admin was notified about DOS attack
|
2205 |
array( "wfu_admin_notification_about_DOS", "db", true, false ),
|
|
|
|
|
|
|
|
|
2206 |
//stored token for adding uploader shortcode
|
2207 |
array( "wfu_add_shortcode_ticket_for_wordpress_file_upload", "session", true, false ),
|
2208 |
//stored token for adding file viewer shortcode
|
2267 |
array( "wfu_start_time_*", "session", true, false )
|
2268 |
);
|
2269 |
|
2270 |
+
|
2271 |
return $options;
|
2272 |
}
|
2273 |
|
2647 |
$plugin_options = wfu_decode_plugin_options(get_option( "wordpress_file_upload_options" ));
|
2648 |
|
2649 |
//get consent status
|
2650 |
+
$consent_revoked = ( $plugin_options["personaldata"] == "1" && $params["consent_result"] == "0" );
|
2651 |
$not_store_files = ( $params["personaldatatypes"] == "userdata and files" );
|
2652 |
//create necessary variables
|
2653 |
$only_filename_list = "";
|
2783 |
foreach ( $definitions_unindexed as $def ) {
|
2784 |
$default = array();
|
2785 |
$default["type"] = $def["type"];
|
2786 |
+
$default["label"] = $def["label"];
|
2787 |
$default["labelposition"] = "".substr($def["labelposition"], 5);
|
2788 |
$default["required"] = ( substr($def["required"], 5) == "true" );
|
2789 |
$default["donotautocomplete"] = ( substr($def["donotautocomplete"], 5) == "true" );
|
2855 |
return $fields;
|
2856 |
}
|
2857 |
|
2858 |
+
function wfu_check_remove_honeypot_fields(&$userdata_fields, $post_key) {
|
2859 |
+
//check if honeypot userdata fields have been added to the form and if they
|
2860 |
+
//contain any data
|
2861 |
+
$honeypot_filled = false;
|
2862 |
+
foreach ( $userdata_fields as $userdata_key => $userdata_field ) {
|
2863 |
+
if ( $userdata_field["type"] == "honeypot" ) {
|
2864 |
+
$val = ( isset($_POST[$post_key.$userdata_key]) ? $_POST[$post_key.$userdata_key] : "" );
|
2865 |
+
//if a non-zero value has been passed to the server, this means
|
2866 |
+
//that it has been filled by a bot
|
2867 |
+
if ( $val != "" ) {
|
2868 |
+
$honeypot_filled = true;
|
2869 |
+
break;
|
2870 |
+
}
|
2871 |
+
//if the honeypot field is empty then remove it from
|
2872 |
+
//userdata_fields array because we do not want to be stored
|
2873 |
+
else unset($userdata_fields[$userdata_key]);
|
2874 |
+
}
|
2875 |
+
}
|
2876 |
+
|
2877 |
+
//if any honeypot field has been filled then return true to denote that
|
2878 |
+
//the upload must be aborted
|
2879 |
+
return $honeypot_filled;
|
2880 |
+
}
|
2881 |
+
|
2882 |
//********************* User State Functions ****************************************************************************************************
|
2883 |
|
2884 |
function WFU_USVAR_exists($var) {
|
lib/wfu_io.php
CHANGED
@@ -38,7 +38,7 @@ function wfu_is_dir($path, $ftpdata) {
|
|
38 |
if ( $conn && @ssh2_auth_password($conn, $ftp_username, $ftp_password) ) {
|
39 |
$sftp = @ssh2_sftp($conn);
|
40 |
if ( $sftp ) {
|
41 |
-
$result = is_dir('ssh2.sftp://'
|
42 |
}
|
43 |
}
|
44 |
}
|
@@ -209,7 +209,7 @@ function wfu_upload_file_sftp($ftp_host, $ftp_port, $ftp_username, $ftp_password
|
|
209 |
$sftp = @ssh2_sftp($conn);
|
210 |
if ( !$sftp ) $ret_message = WFU_ERROR_ADMIN_SFTPINIT_FAIL;
|
211 |
else {
|
212 |
-
$f = @fopen("ssh2.sftp
|
213 |
if ( !$f ) $ret_message = WFU_ERROR_ADMIN_FTPFILE_RESOLVE;
|
214 |
else {
|
215 |
$contents = @file_get_contents($source);
|
38 |
if ( $conn && @ssh2_auth_password($conn, $ftp_username, $ftp_password) ) {
|
39 |
$sftp = @ssh2_sftp($conn);
|
40 |
if ( $sftp ) {
|
41 |
+
$result = is_dir('ssh2.sftp://'.intval($sftp).$path);
|
42 |
}
|
43 |
}
|
44 |
}
|
209 |
$sftp = @ssh2_sftp($conn);
|
210 |
if ( !$sftp ) $ret_message = WFU_ERROR_ADMIN_SFTPINIT_FAIL;
|
211 |
else {
|
212 |
+
$f = @fopen("ssh2.sftp://".intval($sftp)."$target", 'w');
|
213 |
if ( !$f ) $ret_message = WFU_ERROR_ADMIN_FTPFILE_RESOLVE;
|
214 |
else {
|
215 |
$contents = @file_get_contents($source);
|
lib/wfu_processfiles.php
CHANGED
@@ -23,7 +23,7 @@ function wfu_process_files($params, $method) {
|
|
23 |
// determine if this is an upload without a file
|
24 |
$nofileupload = ( $params["allownofile"] == "true" && isset($_POST['nofileupload_'.$sid]) ? ( $_POST['nofileupload_'.$sid] == "1" ) : false );
|
25 |
$force_notifications = ( WFU_VAR("WFU_FORCE_NOTIFICATIONS") == "true" );
|
26 |
-
$consent_revoked = ( $plugin_options["personaldata"] == "1" &&
|
27 |
$not_store_files = ( $params["personaldatatypes"] == "userdata and files" );
|
28 |
$empty_userdata_fields = $params["userdata_fields"];
|
29 |
$store_nothing = ( $consent_revoked && $not_store_files );
|
@@ -626,6 +626,13 @@ function wfu_process_files($params, $method) {
|
|
626 |
}
|
627 |
}
|
628 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
629 |
/* adjust message details and colors according to file result */
|
630 |
/* FileResult: A */
|
631 |
$search = array ('/%username%/', '/%useremail%/', '/%filename%/', '/%filepath%/');
|
@@ -647,7 +654,7 @@ function wfu_process_files($params, $method) {
|
|
647 |
$file_output['color'] = $color_array[0];
|
648 |
$file_output['bgcolor'] = $color_array[1];
|
649 |
$file_output['borcolor'] = $color_array[2];
|
650 |
-
$file_output['header'] = preg_replace($search, $replace, $params['warningmessage']);
|
651 |
/* prepare and prepend details of successful file upload, visible only to administrator */
|
652 |
$file_output['admin_messages'] = wfu_join_strings("<br />", preg_replace($search, $replace, WFU_SUCCESSMESSAGE_DETAILS), $file_output['admin_messages']);
|
653 |
}
|
@@ -829,6 +836,9 @@ function wfu_process_files($params, $method) {
|
|
829 |
else if ( $somefiles_Ok ) $params_output_array["general"]['state'] = 6; //only valid in no-ajax method
|
830 |
else if ( !$somefiles_Ok && $error_count > 0 ) $params_output_array["general"]['state'] = ( !$nofileupload ? 7 : 15 );
|
831 |
else $params_output_array["general"]['state'] = 8;
|
|
|
|
|
|
|
832 |
|
833 |
/* construct safe output */
|
834 |
$sout = $params_output_array["general"]['state'].";".WFU_VAR("WFU_DEFAULTMESSAGECOLORS").";".$files_count;
|
23 |
// determine if this is an upload without a file
|
24 |
$nofileupload = ( $params["allownofile"] == "true" && isset($_POST['nofileupload_'.$sid]) ? ( $_POST['nofileupload_'.$sid] == "1" ) : false );
|
25 |
$force_notifications = ( WFU_VAR("WFU_FORCE_NOTIFICATIONS") == "true" );
|
26 |
+
$consent_revoked = ( $plugin_options["personaldata"] == "1" && $params["consent_result"] == "0" );
|
27 |
$not_store_files = ( $params["personaldatatypes"] == "userdata and files" );
|
28 |
$empty_userdata_fields = $params["userdata_fields"];
|
29 |
$store_nothing = ( $consent_revoked && $not_store_files );
|
626 |
}
|
627 |
}
|
628 |
|
629 |
+
/* in case that the file will not be saved due to personal data policy
|
630 |
+
then convert any success message_type to warning */
|
631 |
+
if ( $store_nothing && $file_output['message_type'] == "success" ) {
|
632 |
+
$file_output['message_type'] = "warning";
|
633 |
+
$file_output['message'] = wfu_join_strings("<br />", $file_output['message'], WFU_UPLOAD_STATE19_SINGLEFILE);
|
634 |
+
}
|
635 |
+
|
636 |
/* adjust message details and colors according to file result */
|
637 |
/* FileResult: A */
|
638 |
$search = array ('/%username%/', '/%useremail%/', '/%filename%/', '/%filepath%/');
|
654 |
$file_output['color'] = $color_array[0];
|
655 |
$file_output['bgcolor'] = $color_array[1];
|
656 |
$file_output['borcolor'] = $color_array[2];
|
657 |
+
$file_output['header'] = preg_replace($search, $replace, ( $store_nothing ? WFU_WARNINGMESSAGE_NOSAVE : $params['warningmessage'] ));
|
658 |
/* prepare and prepend details of successful file upload, visible only to administrator */
|
659 |
$file_output['admin_messages'] = wfu_join_strings("<br />", preg_replace($search, $replace, WFU_SUCCESSMESSAGE_DETAILS), $file_output['admin_messages']);
|
660 |
}
|
836 |
else if ( $somefiles_Ok ) $params_output_array["general"]['state'] = 6; //only valid in no-ajax method
|
837 |
else if ( !$somefiles_Ok && $error_count > 0 ) $params_output_array["general"]['state'] = ( !$nofileupload ? 7 : 15 );
|
838 |
else $params_output_array["general"]['state'] = 8;
|
839 |
+
/* in case that the files will not be saved due to personal data policy
|
840 |
+
then adjust general state accordingly (effective for no-ajax uploads) */
|
841 |
+
if ( !$nofileupload && $somefiles_Ok && $store_nothing ) $params_output_array["general"]['state'] = 19;
|
842 |
|
843 |
/* construct safe output */
|
844 |
$sout = $params_output_array["general"]['state'].";".WFU_VAR("WFU_DEFAULTMESSAGECOLORS").";".$files_count;
|
lib/wfu_template.php
CHANGED
@@ -3831,6 +3831,10 @@ this.initField = function(props) {
|
|
3831 |
field.appendChild(o2);
|
3832 |
}
|
3833 |
}
|
|
|
|
|
|
|
|
|
3834 |
}
|
3835 |
|
3836 |
/**
|
@@ -3856,7 +3860,8 @@ this.attachHandlers = function(props, handlerfunc) {
|
|
3856 |
case "email":
|
3857 |
case "confirmemail":
|
3858 |
case "password":
|
3859 |
-
case "confirmpassword":
|
|
|
3860 |
case "checkbox":
|
3861 |
case "date":
|
3862 |
case "time":
|
@@ -3892,7 +3897,8 @@ this.getValue = function(props) {
|
|
3892 |
case "time":
|
3893 |
case "datetime":
|
3894 |
case "list":
|
3895 |
-
case "dropdown":
|
|
|
3896 |
case "checkbox": value = field.checked; break;
|
3897 |
case "radiobutton":
|
3898 |
var items = document.getElementsByName(field.name);
|
@@ -3923,7 +3929,8 @@ this.setValue = function(props, value) {
|
|
3923 |
case "email":
|
3924 |
case "confirmemail":
|
3925 |
case "password":
|
3926 |
-
case "confirmpassword":
|
|
|
3927 |
case "checkbox": field.checked = value; break;
|
3928 |
case "radiobutton":
|
3929 |
var items = document.getElementsByName(field.name);
|
@@ -3970,6 +3977,8 @@ this.enable = function(props) {
|
|
3970 |
case "radiobutton":
|
3971 |
var items = document.getElementsByName(field.name);
|
3972 |
for (var i = 0; i < items.length; i++) items[i].disabled = false;
|
|
|
|
|
3973 |
}
|
3974 |
}
|
3975 |
|
@@ -4000,6 +4009,8 @@ this.disable = function(props) {
|
|
4000 |
case "radiobutton":
|
4001 |
var items = document.getElementsByName(field.name);
|
4002 |
for (var i = 0; i < items.length; i++) items[i].disabled = true;
|
|
|
|
|
4003 |
}
|
4004 |
}
|
4005 |
|
@@ -4126,6 +4137,8 @@ this._focused = function(obj) {
|
|
4126 |
<select id="userdata_$ID_field_<?php echo $p["key"]; ?>" class="file_userdata_dropdown" autocomplete="<?php echo ( $p["donotautocomplete"] ? 'off' : 'on' ); ?>" form="dummy_$ID" value="<?php echo $p["default"]; ?>" onfocus="GlobalData.WFU[$ID].userdata._focused(this);">
|
4127 |
<option id="userdata_$ID_listitem_<?php echo $p["key"]; ?>" style="display:none;"></option>
|
4128 |
</select>
|
|
|
|
|
4129 |
<?php endif ?>
|
4130 |
<input id="userdata_$ID_props_<?php echo $p["key"]; ?>" type="hidden" value="p:<?php echo $p["hintposition"]; ?>" />
|
4131 |
<?php else: ?>
|
@@ -4163,6 +4176,8 @@ this._focused = function(obj) {
|
|
4163 |
<select id="userdata_$ID_field_<?php echo $p["key"]; ?>" class="file_userdata_dropdown" autocomplete="off" form="dummy_$ID" readonly="readonly">
|
4164 |
<option>Test value</option>
|
4165 |
</select>
|
|
|
|
|
4166 |
<?php endif ?>
|
4167 |
<?php endif ?>
|
4168 |
<!-- ***************** end of HTML code of each field type ***************** -->
|
@@ -4197,8 +4212,8 @@ function wfu_consent_template($data) {?>
|
|
4197 |
* in case that it appears more than once
|
4198 |
* @var $format string format of the consent question, it can be 'checkbox' or
|
4199 |
* 'radio' or 'prompt'
|
4200 |
-
* @var $preselected
|
4201 |
-
*
|
4202 |
* @var $question string the consent question
|
4203 |
* @var $params array all plugin's attributes defined through the shortcode
|
4204 |
*
|
@@ -4236,13 +4251,13 @@ function wfu_consent_template($data) {?>
|
|
4236 |
*/
|
4237 |
this.attachActions = function(completeaction) {
|
4238 |
var box = document.querySelector('#consent_$ID .file_consent_box');
|
4239 |
-
if (box) box.onchange = function() { completeaction(box.checked); };
|
4240 |
else {
|
4241 |
var radioyes = document.querySelector('#consent_$ID .file_consent_radio_yes');
|
4242 |
var radiono = document.querySelector('#consent_$ID .file_consent_radio_no');
|
4243 |
if (radioyes && radiono) {
|
4244 |
-
radioyes.onchange = function() { completeaction(radioyes.checked); };
|
4245 |
-
radiono.onchange = function() { completeaction(radioyes.checked); };
|
4246 |
}
|
4247 |
}
|
4248 |
}
|
@@ -4284,10 +4299,20 @@ this.update = function(action) {
|
|
4284 |
|
4285 |
if (action == "init") {
|
4286 |
var presel = document.querySelector('#consent_$ID .file_consent_preselected');
|
4287 |
-
if (box
|
4288 |
-
box.checked =
|
|
|
4289 |
box.onchange();
|
4290 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4291 |
}
|
4292 |
else if (action == "lock") {
|
4293 |
if (box) box.disabled = true;
|
@@ -4314,8 +4339,8 @@ this.update = function(action) {
|
|
4314 |
the following lines contain the HTML output
|
4315 |
****************************************************************************/ ?>
|
4316 |
<div id="consent_$ID" class="file_consent_container" style="<?php echo $styles; ?>" />
|
4317 |
-
<?php if ( $
|
4318 |
-
<input type="hidden" class="file_consent_preselected" value="<?php echo ( $preselected ? "1" : "0" ); ?>" />
|
4319 |
<?php endif ?>
|
4320 |
<?php if ( !$testmode ): ?>
|
4321 |
<?php if ( $format == "checkbox" ): ?>
|
3831 |
field.appendChild(o2);
|
3832 |
}
|
3833 |
}
|
3834 |
+
else if (props.type == "honeypot") {
|
3835 |
+
var msg_cont = document.getElementById('userdata_$ID_' + props.key);
|
3836 |
+
msg_cont.style.display = "none";
|
3837 |
+
}
|
3838 |
}
|
3839 |
|
3840 |
/**
|
3860 |
case "email":
|
3861 |
case "confirmemail":
|
3862 |
case "password":
|
3863 |
+
case "confirmpassword":
|
3864 |
+
case "honeypot": wfu_attach_element_handlers(field, handlerfunc); break;
|
3865 |
case "checkbox":
|
3866 |
case "date":
|
3867 |
case "time":
|
3897 |
case "time":
|
3898 |
case "datetime":
|
3899 |
case "list":
|
3900 |
+
case "dropdown":
|
3901 |
+
case "honeypot": value = field.value; break;
|
3902 |
case "checkbox": value = field.checked; break;
|
3903 |
case "radiobutton":
|
3904 |
var items = document.getElementsByName(field.name);
|
3929 |
case "email":
|
3930 |
case "confirmemail":
|
3931 |
case "password":
|
3932 |
+
case "confirmpassword":
|
3933 |
+
case "honeypot": field.value = value; break;
|
3934 |
case "checkbox": field.checked = value; break;
|
3935 |
case "radiobutton":
|
3936 |
var items = document.getElementsByName(field.name);
|
3977 |
case "radiobutton":
|
3978 |
var items = document.getElementsByName(field.name);
|
3979 |
for (var i = 0; i < items.length; i++) items[i].disabled = false;
|
3980 |
+
break;
|
3981 |
+
case "honeypot": break;
|
3982 |
}
|
3983 |
}
|
3984 |
|
4009 |
case "radiobutton":
|
4010 |
var items = document.getElementsByName(field.name);
|
4011 |
for (var i = 0; i < items.length; i++) items[i].disabled = true;
|
4012 |
+
break;
|
4013 |
+
case "honeypot": break;
|
4014 |
}
|
4015 |
}
|
4016 |
|
4137 |
<select id="userdata_$ID_field_<?php echo $p["key"]; ?>" class="file_userdata_dropdown" autocomplete="<?php echo ( $p["donotautocomplete"] ? 'off' : 'on' ); ?>" form="dummy_$ID" value="<?php echo $p["default"]; ?>" onfocus="GlobalData.WFU[$ID].userdata._focused(this);">
|
4138 |
<option id="userdata_$ID_listitem_<?php echo $p["key"]; ?>" style="display:none;"></option>
|
4139 |
</select>
|
4140 |
+
<?php elseif ( $p["type"] == "honeypot" ): ?>
|
4141 |
+
<input type="text" id="userdata_$ID_field_<?php echo $p["key"]; ?>" class="file_userdata_message" value="" autocomplete="off" tabindex="-1" name="<?php echo $p["label"]; ?>" />
|
4142 |
<?php endif ?>
|
4143 |
<input id="userdata_$ID_props_<?php echo $p["key"]; ?>" type="hidden" value="p:<?php echo $p["hintposition"]; ?>" />
|
4144 |
<?php else: ?>
|
4176 |
<select id="userdata_$ID_field_<?php echo $p["key"]; ?>" class="file_userdata_dropdown" autocomplete="off" form="dummy_$ID" readonly="readonly">
|
4177 |
<option>Test value</option>
|
4178 |
</select>
|
4179 |
+
<?php elseif ( $p["type"] == "honeypot" ): ?>
|
4180 |
+
<input type="text" id="userdata_$ID_field_<?php echo $p["key"]; ?>" class="file_userdata_message" value="" autocomplete="off" tabindex="-1" name="<?php echo $p["label"]; ?>" />
|
4181 |
<?php endif ?>
|
4182 |
<?php endif ?>
|
4183 |
<!-- ***************** end of HTML code of each field type ***************** -->
|
4212 |
* in case that it appears more than once
|
4213 |
* @var $format string format of the consent question, it can be 'checkbox' or
|
4214 |
* 'radio' or 'prompt'
|
4215 |
+
* @var $preselected string determines if a default answer will be selected, it
|
4216 |
+
* can be 'none', 'yes' or 'no'
|
4217 |
* @var $question string the consent question
|
4218 |
* @var $params array all plugin's attributes defined through the shortcode
|
4219 |
*
|
4251 |
*/
|
4252 |
this.attachActions = function(completeaction) {
|
4253 |
var box = document.querySelector('#consent_$ID .file_consent_box');
|
4254 |
+
if (box) box.onchange = function() { completeaction((box.checked ? "yes" : "no")); };
|
4255 |
else {
|
4256 |
var radioyes = document.querySelector('#consent_$ID .file_consent_radio_yes');
|
4257 |
var radiono = document.querySelector('#consent_$ID .file_consent_radio_no');
|
4258 |
if (radioyes && radiono) {
|
4259 |
+
radioyes.onchange = function() { completeaction((radioyes.checked ? "yes" : (radiono.checked ? "no" : ""))); };
|
4260 |
+
radiono.onchange = function() { completeaction((radioyes.checked ? "yes" : (radiono.checked ? "no" : ""))); };
|
4261 |
}
|
4262 |
}
|
4263 |
}
|
4299 |
|
4300 |
if (action == "init") {
|
4301 |
var presel = document.querySelector('#consent_$ID .file_consent_preselected');
|
4302 |
+
if (box) {
|
4303 |
+
box.checked = false;
|
4304 |
+
if (presel) box.checked = (presel.value == "1");
|
4305 |
box.onchange();
|
4306 |
}
|
4307 |
+
else if (radioyes && radiono) {
|
4308 |
+
radioyes.checked = false;
|
4309 |
+
radiono.checked = false;
|
4310 |
+
if (presel) {
|
4311 |
+
radioyes.checked = (presel.value == "1");
|
4312 |
+
radiono.checked = (presel.value == "0");
|
4313 |
+
}
|
4314 |
+
radioyes.onchange();
|
4315 |
+
}
|
4316 |
}
|
4317 |
else if (action == "lock") {
|
4318 |
if (box) box.disabled = true;
|
4339 |
the following lines contain the HTML output
|
4340 |
****************************************************************************/ ?>
|
4341 |
<div id="consent_$ID" class="file_consent_container" style="<?php echo $styles; ?>" />
|
4342 |
+
<?php if ( $preselected == "yes" || $preselected == "no" ): ?>
|
4343 |
+
<input type="hidden" class="file_consent_preselected" value="<?php echo ( $preselected == "yes" ? "1" : "0" ); ?>" />
|
4344 |
<?php endif ?>
|
4345 |
<?php if ( !$testmode ): ?>
|
4346 |
<?php if ( $format == "checkbox" ): ?>
|
readme.txt
CHANGED
@@ -149,6 +149,16 @@ There is an option in plugin's settings in Dashboard to relax the CSS rules, so
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
= 4.10.0 =
|
153 |
* plugin code improved to support files containing single quote characters (') in their filename
|
154 |
* corrected bug where plugin was deactivated after update
|
@@ -806,6 +816,9 @@ Initial version.
|
|
806 |
|
807 |
== Upgrade Notice ==
|
808 |
|
|
|
|
|
|
|
809 |
= 4.10.0 =
|
810 |
Regular update to introduce some new features and improvements.
|
811 |
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 4.10.1 =
|
153 |
+
* code modified so that vendor libraries are loaded only when necessary
|
154 |
+
* improved process of deleting all plugin options
|
155 |
+
* added honeypot field to userdata fields; this is a security feature, in replacement of captchas, invisible to users that prevents bots from uploading files
|
156 |
+
* added attribute 'Consent Denial Rejects Upload' in uploader shortcode Personal Data tab to stop the upload if the consent answer is no, as well as 'Reject Message' attribute to customize the upload rejection message shown to the user
|
157 |
+
* added attribute 'Do Not Remember Consent Answer' in uploader shortcode Personal Data tab to show the consent question every time (and not only the first time)
|
158 |
+
* attribute 'Preselected Answer' in uploader shortcode Personal Data tab modified to be compatible with either checkbox or radio Consent Format
|
159 |
+
* upload result message adjusted to show the correct upload status in case that files were uploaded but were not saved due to Personal Data policy
|
160 |
+
* code improved for sftp uploads to handle PECL ssh2 bug #73597
|
161 |
+
|
162 |
= 4.10.0 =
|
163 |
* plugin code improved to support files containing single quote characters (') in their filename
|
164 |
* corrected bug where plugin was deactivated after update
|
816 |
|
817 |
== Upgrade Notice ==
|
818 |
|
819 |
+
= 4.10.1 =
|
820 |
+
Regular update to introduce some new features and improvements.
|
821 |
+
|
822 |
= 4.10.0 =
|
823 |
Regular update to introduce some new features and improvements.
|
824 |
|
release_notes.txt
CHANGED
@@ -1,2 +1,9 @@
|
|
1 |
-
<!-- --><span><strong>Version 4.10.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
<!-- -->
|
1 |
+
<!-- --><span><strong>Version 4.10.1</strong> is a <strong>regular</strong> update that introduces the following improvements and additions:</span>
|
2 |
+
<ul style="list-style: disc; padding-left: 30px;">
|
3 |
+
<li>Added <strong>honeypot</strong> field to <strong>userdata fields</strong>. This is a security feature, in replacement of captchas, invisible to users that prevents bots from uploading files.</li>
|
4 |
+
<li>Added attribute <strong>Consent Denial Rejects Upload</strong> in uploader shortcode <strong>Personal Data</strong> tab to stop the upload if the consent answer is no, as well as <strong>Reject Message</strong> attribute to customize the upload rejection message shown to the user</li>
|
5 |
+
<li>Added attribute <strong>Do Not Remember Consent Answer</strong> in uploader shortcode <strong>Personal Data</strong> tab to show the consent question every time (and not only the first time).</li>
|
6 |
+
<li>Attribute <strong>Preselected Answer</strong> in uploader shortcode <strong>Personal Data</strong> tab modified to be compatible with either checkbox or radio Consent Format.</li>
|
7 |
+
</ul>
|
8 |
+
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><!-- -->
|
9 |
<!-- -->
|
wfu_loader.php
CHANGED
@@ -68,6 +68,8 @@ add_action( 'personal_options_update', 'wfu_update_consent_profile_fields' );
|
|
68 |
add_action( 'edit_user_profile_update', 'wfu_update_consent_profile_fields' );
|
69 |
//Media editor custom properties
|
70 |
if ( is_admin() ) add_action( 'attachment_submitbox_misc_actions', 'wfu_media_editor_properties', 11 );
|
|
|
|
|
71 |
//register internal filter that is executed before upload for classic uploader
|
72 |
add_filter("_wfu_before_upload", "wfu_classic_before_upload_handler", 10, 2);
|
73 |
wfu_include_lib();
|
@@ -194,7 +196,7 @@ function wordpress_file_upload_function($incomingfromhandler) {
|
|
194 |
$additional_params = array( );
|
195 |
$additional_params['widths'] = $widths;
|
196 |
$additional_params['heights'] = $heights;
|
197 |
-
$additional_params["require_consent"] = ( $plugin_options["personaldata"] == "1" && wfu_check_user_consent($user) == "" && $params["askconsent"] == "true" );
|
198 |
|
199 |
$uploadedfile = 'uploadedfile_'.$sid;
|
200 |
$hiddeninput = 'hiddeninput_'.$sid;
|
@@ -209,10 +211,13 @@ function wordpress_file_upload_function($incomingfromhandler) {
|
|
209 |
$init_params["testmode"] = ( $params["testmode"] == "true" );
|
210 |
$init_params["widgetid"] = $params["widgetid"];
|
211 |
$init_params["require_consent"] = $additional_params["require_consent"];
|
212 |
-
|
213 |
-
|
|
|
|
|
214 |
//add allow no file flag
|
215 |
$init_params["allownofile"] = ( $params["allownofile"] == "true" );
|
|
|
216 |
//add params related to visual editor button
|
217 |
if ( current_user_can( 'manage_options' ) ) {
|
218 |
$init_params["post_id"] = $post->ID;
|
@@ -302,6 +307,8 @@ function wordpress_file_upload_function($incomingfromhandler) {
|
|
302 |
$init_params["has_filters"] = has_filter("wfu_before_upload");
|
303 |
$init_params["error_header"] = $params["errormessage"];
|
304 |
$init_params["fail_colors"] = $params["failmessagecolors"];
|
|
|
|
|
305 |
}
|
306 |
|
307 |
|
@@ -456,6 +463,14 @@ function wordpress_file_upload_function($incomingfromhandler) {
|
|
456 |
// Check that upload_id is valid
|
457 |
$wfu_checkpass = ( $wfu_checkpass && strlen($unique_id) == 10 );
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
|
460 |
if ( $wfu_checkpass ) {
|
461 |
//process any error messages due to redirection to non-ajax upload
|
@@ -477,11 +492,21 @@ function wordpress_file_upload_function($incomingfromhandler) {
|
|
477 |
$wfu_process_file_array_str = " ";
|
478 |
$js_script_enc = "";
|
479 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
else {
|
481 |
//update consent status of user
|
|
|
482 |
if ( $additional_params["require_consent"] ) {
|
483 |
-
if ( !isset($_POST['
|
484 |
-
$consent_result = ( $_POST['
|
|
|
485 |
wfu_update_user_consent($user, $consent_result);
|
486 |
}
|
487 |
$wfu_process_file_array = wfu_process_files($params, 'no_ajax');
|
@@ -568,6 +593,18 @@ function wfu_classic_before_upload_handler($ret, $attr) {
|
|
568 |
return $ret;
|
569 |
}
|
570 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
571 |
function wfu_execute_after_upload_filters($sid, $unique_id, $params) {
|
572 |
//apply internal filters from extensions
|
573 |
$ret = array( "echo" => "" );
|
68 |
add_action( 'edit_user_profile_update', 'wfu_update_consent_profile_fields' );
|
69 |
//Media editor custom properties
|
70 |
if ( is_admin() ) add_action( 'attachment_submitbox_misc_actions', 'wfu_media_editor_properties', 11 );
|
71 |
+
//register admin filter to check consent status before upload
|
72 |
+
add_filter("wfu_before_upload", "wfu_consent_ask_server_handler", 10, 2);
|
73 |
//register internal filter that is executed before upload for classic uploader
|
74 |
add_filter("_wfu_before_upload", "wfu_classic_before_upload_handler", 10, 2);
|
75 |
wfu_include_lib();
|
196 |
$additional_params = array( );
|
197 |
$additional_params['widths'] = $widths;
|
198 |
$additional_params['heights'] = $heights;
|
199 |
+
$additional_params["require_consent"] = ( $plugin_options["personaldata"] == "1" && ( $params["notrememberconsent"] == "true" || wfu_check_user_consent($user) == "" ) && $params["askconsent"] == "true" );
|
200 |
|
201 |
$uploadedfile = 'uploadedfile_'.$sid;
|
202 |
$hiddeninput = 'hiddeninput_'.$sid;
|
211 |
$init_params["testmode"] = ( $params["testmode"] == "true" );
|
212 |
$init_params["widgetid"] = $params["widgetid"];
|
213 |
$init_params["require_consent"] = $additional_params["require_consent"];
|
214 |
+
//if the following criteria is met, then maybe the server needs to be asked
|
215 |
+
//if upload needs to be rejected or not due to consent denial
|
216 |
+
$init_params["consent_maybe_ask_server"] = ( $plugin_options["personaldata"] == "1" && $params["askconsent"] == "true" && $params["consentrejectupload"] == "true" );
|
217 |
+
$init_params["consent_rejection_message"] = $params["consentrejectmessage"];
|
218 |
//add allow no file flag
|
219 |
$init_params["allownofile"] = ( $params["allownofile"] == "true" );
|
220 |
+
$init_params["not_store_files"] = ( $params["personaldatatypes"] == "userdata and files" );
|
221 |
//add params related to visual editor button
|
222 |
if ( current_user_can( 'manage_options' ) ) {
|
223 |
$init_params["post_id"] = $post->ID;
|
307 |
$init_params["has_filters"] = has_filter("wfu_before_upload");
|
308 |
$init_params["error_header"] = $params["errormessage"];
|
309 |
$init_params["fail_colors"] = $params["failmessagecolors"];
|
310 |
+
$init_params["success_header"] = $params["successmessage"];
|
311 |
+
$init_params["success_colors"] = $params["successmessagecolors"];
|
312 |
}
|
313 |
|
314 |
|
463 |
// Check that upload_id is valid
|
464 |
$wfu_checkpass = ( $wfu_checkpass && strlen($unique_id) == 10 );
|
465 |
|
466 |
+
//check if honeypot userdata fields have been added to the form and if they
|
467 |
+
//contain any data; if wfu_check_remove_honeypot_fields returns true this
|
468 |
+
//means that at least one honeypot field has beed filled with a value and
|
469 |
+
//the upload must be aborted because it was not done by a human; files will
|
470 |
+
//not be saved but a success result will be shown, pretending that they have
|
471 |
+
//been saved
|
472 |
+
$abort_with_success = ( $params["userdata"] == "true" && wfu_check_remove_honeypot_fields($params["userdata_fields"], 'hiddeninput_'.$sid.'_userdata_') );
|
473 |
+
|
474 |
|
475 |
if ( $wfu_checkpass ) {
|
476 |
//process any error messages due to redirection to non-ajax upload
|
492 |
$wfu_process_file_array_str = " ";
|
493 |
$js_script_enc = "";
|
494 |
}
|
495 |
+
//in case that the upload was performed by a bot, then files are not
|
496 |
+
//processed and not saved, however state 18 is returned pretending that
|
497 |
+
//the upload was successful
|
498 |
+
elseif ( $abort_with_success ) {
|
499 |
+
$safe_output = "18;".WFU_VAR("WFU_DEFAULTMESSAGECOLORS").";0";
|
500 |
+
$wfu_process_file_array_str = " ";
|
501 |
+
$js_script_enc = "";
|
502 |
+
}
|
503 |
else {
|
504 |
//update consent status of user
|
505 |
+
$params["consent_result"] = wfu_check_user_consent($user);
|
506 |
if ( $additional_params["require_consent"] ) {
|
507 |
+
if ( !isset($_POST['consentresult_'.$sid]) ) die();
|
508 |
+
$consent_result = ( $_POST['consentresult_'.$sid] == "yes" ? "yes" : ( $_POST['consentresult_'.$sid] == "no" ? "no" : "" ) );
|
509 |
+
$params["consent_result"] = ( $_POST['consentresult_'.$sid] == "yes" ? "1" : ( $_POST['consentresult_'.$sid] == "no" ? "0" : "" ) );
|
510 |
wfu_update_user_consent($user, $consent_result);
|
511 |
}
|
512 |
$wfu_process_file_array = wfu_process_files($params, 'no_ajax');
|
593 |
return $ret;
|
594 |
}
|
595 |
|
596 |
+
function wfu_consent_ask_server_handler($changable_data, $attr) {
|
597 |
+
//run only if consent_check and consent rejection message exist in
|
598 |
+
//$_REQUEST parameters
|
599 |
+
if ( !isset($_REQUEST['consent_check']) || !isset($_REQUEST['consent_rejection_message']) ) return $changable_data;
|
600 |
+
if ( $changable_data["error_message"] != "" ) return $changable_data;
|
601 |
+
$user = wp_get_current_user();
|
602 |
+
if ( wfu_check_user_consent($user) != "1" ) {
|
603 |
+
$changable_data["error_message"] = wp_strip_all_tags($_REQUEST['consent_rejection_message']);
|
604 |
+
}
|
605 |
+
return $changable_data;
|
606 |
+
}
|
607 |
+
|
608 |
function wfu_execute_after_upload_filters($sid, $unique_id, $params) {
|
609 |
//apply internal filters from extensions
|
610 |
$ret = array( "echo" => "" );
|
wordpress_file_upload.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin URI: http://www.iptanus.com/support/wordpress-file-upload
|
5 |
Description: Simple interface to upload files from a page.
|
6 |
-
Version: 4.10.
|
7 |
Author: Nickolas Bossinas
|
8 |
Author URI: http://www.iptanus.com
|
9 |
Text Domain: wp-file-upload
|
3 |
/*
|
4 |
Plugin URI: http://www.iptanus.com/support/wordpress-file-upload
|
5 |
Description: Simple interface to upload files from a page.
|
6 |
+
Version: 4.10.1
|
7 |
Author: Nickolas Bossinas
|
8 |
Author URI: http://www.iptanus.com
|
9 |
Text Domain: wp-file-upload
|