diff --git a/help b/help index 925ab5f..9d3a7f5 100644 --- a/help +++ b/help @@ -4,6 +4,8 @@ [simple-login-form] //Formularz logowania +[userfiles] //Plik-user + .AnkietyGO { //dkpdf css display:none; } diff --git a/user-files-pl_PL.mo b/user-files-pl_PL.mo deleted file mode 100644 index a3c2e4f..0000000 Binary files a/user-files-pl_PL.mo and /dev/null differ diff --git a/user-files-pl_PL.po b/user-files-pl_PL.po deleted file mode 100644 index 9f41acd..0000000 --- a/user-files-pl_PL.po +++ /dev/null @@ -1,43 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: User File Manager\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-31 19:58+0000\n" -"PO-Revision-Date: 2017-05-31 20:00+0000\n" -"Last-Translator: admin \n" -"Language-Team: Polish\n" -"Language: pl-PL\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 " -"&&(n%100<10||n%100 >= 20)? 1 : 2)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Loco - https://localise.biz/" - -#. Name of the plugin -msgid "User File Manager" -msgstr "Menadżer plików użytkowników " - -#. Description of the plugin -msgid "" -"Plugin to manage files for your users. You can upload files for your users " -"to access, files uploaded to the user account are only viewable by the " -"designated user. Files can be sorted and uploaded by category. Options " -"available for user to add and/or delete files, upload notifications, widgets," -" and shortcode. You can also use custom icons for files." -msgstr "" -"Plugin do zarządzania plikami przeznaczonymi dla Twoich użytkowników. Możesz " -"umieścić na stronie pliki by odpowiedni użytkownicy mieli do nich dostęp. " -"Pliki mogą być posortowane i aktualizowane przez kategorię. " - -#. URI of the plugin -msgid "http://www.whereyoursolutionis.com/user-files-plugin/" -msgstr "http://www.whereyoursolutionis.com/user-files-plugin/" - -#. Author of the plugin -msgid "Innovative Solutions" -msgstr "Innowacyjne rozwiązania" - -#. Author URI of the plugin -msgid "http://www.whereyoursolutionis.com/author/scriptonite/" -msgstr "http://www.whereyoursolutionis.com/author/scriptonite/" diff --git a/user-files.zip b/user-files.zip deleted file mode 100644 index 36b23f3..0000000 Binary files a/user-files.zip and /dev/null differ diff --git a/user-files/functions.php b/user-files/functions.php deleted file mode 100644 index df919ff..0000000 --- a/user-files/functions.php +++ /dev/null @@ -1 +0,0 @@ - '.pathinfo($Thefile, PATHINFO_FILENAME) .''; $getDescr= $wpdb->get_var("SELECT description FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$Thefile ."' and user_id='" .$userID. "'"); if(!empty($getDescr)){ //echo 'Show Notes'; echo ' Show Notes '; }else{ echo ' '; } echo ''. GetTimeStamp($Thefile,$userID) .''; echo ''; $currOpts_defcat = get_option('file_manger_defaultcat'); $getCrntCat = $wpdb->get_var("SELECT category FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$Thefile ."' and user_id='" .$userID. "'"); if (!$getCrntCat) { echo $currOpts_defcat; }else{ echo $getCrntCat; } echo''; if(is_admin() ){ echo ' '; }else{ echo ' '; } if(get_option('file_manger_allow_del')=='yes') { if(is_admin()){ echo ' | '; }else{ echo ' | '; } }else{ echo ''; }//end if } ################################### # List Filtered Admin Files # ################################### function ListFilteredFiles($Thefile,$userID,$tp) { global $wpdb; global $tp; global $post; global $wp_query; $upload_dir = wp_upload_dir(); $ext = pathinfo($Thefile, PATHINFO_EXTENSION); $tExt = SetIcon($ext); echo ' '.pathinfo($Thefile, PATHINFO_FILENAME) .''; $getDescr = $wpdb->get_var("SELECT description FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$Thefile ."' and user_id='" .$userID. "'"); echo ''; echo ''.GetTimeStamp($Thefile,$userNum) .''; echo ''; $currOpts_defcat = get_option('file_manger_defaultcat'); $getCrntCat = $wpdb->get_var("SELECT category FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$Thefile ."' and user_id='" .$userID. "'"); if (!$getCrntCat) { echo $currOpts_defcat; }else{ echo $getCrntCat; } echo''; echo ''; if (is_admin()){ echo ' '; }else{ echo ' '; } if(get_option('file_manger_allow_del')=='yes') { if(is_admin()){ echo ' | '; }else{ echo ' | '; } }else{ echo ''; }//end if $tp++; } ########################## # List Admin Files # ########################## function ListAdminFiles($userNum) { $upload_dir = wp_upload_dir(); global $wpdb; global $tp; global $post; if ($Subhandle = @opendir($upload_dir['basedir'].'/file_uploads/'.$userNum)) { while (false !== ($files = readdir($Subhandle))) { echo ''; if ($files!=".") { if ($files!="..") { $ext = pathinfo($files, PATHINFO_EXTENSION); $tExt = SetIcon($ext); echo ' '.pathinfo($files, PATHINFO_FILENAME).''; $getDescr = $wpdb->get_var("SELECT description FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$files ."' and user_id='" .$userNum. "'"); echo ''; echo ''. GetTimeStamp($files,$userNum) .''; echo ''; $currOpts_defcat = get_option('file_manger_defaultcat'); $getCrntCat = $wpdb->get_var("SELECT category FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$files ."' and user_id='" .$userNum. "'"); if (!$getCrntCat) { echo $currOpts_defcat; }else{ echo $getCrntCat; } echo''; if(is_admin()){ echo ' '; echo ' | Delete '; }else{ echo ' '; echo ' | Delete '; } $tp++; } } echo ''; } }else{ echo __('No Files','userfiles'); } } function show_FM_pages() { add_options_page(__('User Files Settings','userfiles'), __('User Files','userfiles'), 'manage_userfiles_settings', 'file_manager_options', 'files_settings_page' ); add_menu_page( __('Manage Files','userfiles'), __('Manage Files','userfiles'), 'manage_userfiles', 'manage-files-main', 'manage_files_mainpg'); add_submenu_page('manage-files-main', __('Add Files','userfiles'), __('Add Files','userfiles'), 'manage_userfiles','files-add-files', 'manage_files_upload'); add_submenu_page('manage-files-main', __('Categories','userfiles'), __('Categories','userfiles'), 'manage_userfiles','files-add-cats', 'ShowCategories'); add_submenu_page('manage-files-main', __('Manage Icons','userfiles'), __('Manage Icons','userfiles'), 'manage_userfiles','files-add-icons', 'Icon_management'); add_submenu_page('manage-files-main', __('FTP Paths','userfiles'), __('FTP Paths','userfiles'), 'manage_userfiles','files-see-ftp', 'FTP_Paths'); add_submenu_page('manage-files-main', __('Help','userfiles'), __('Help','userfiles'), 'manage_userfiles','files-help-files', 'file_uploader_help'); $currOpts_menu = get_option('file_manger_show_menu'); if (!current_user_can('manage_userfiles') and $currOpts_menu==yes) { add_menu_page( __('Manage Files','userfiles'), __('Manage Files','userfiles'), 'read', 'manage-files-user', 'manage_files_user'); } } function manage_files_user() { global $wpdb; global $post; global $id; wp_enqueue_script('jquery'); wp_register_script( 'notepop', plugins_url( '/user-files/includes/js/divtoggle.js') ); wp_enqueue_script( 'notepop' ); $currOpts_credits = get_option('file_manger_credit'); $upload_dir = wp_upload_dir(); global $current_user; get_currentuserinfo(); if (isset($_GET['deletefile']) && empty($_POST['addfiles'])){ $isitGone = unlink($upload_dir['basedir'].'/file_uploads/'.$_GET['deletefile']); $toUsFl=explode ( "/" , $_GET['deletefile'] ); $wpdb->query("DELETE FROM ".$wpdb->prefix."userfile_data WHERE user_id ='" .$toUsFl[1]. "' AND filename ='".$toUsFl[2]."'"); if(!file_exists($upload_dir['basedir'].'/file_uploads/'.$_GET['deletefile'] )){ echo '
'; echo __('The file has been deleted','userfiles'); echo '
'; } else{ echo '
'; echo __('There was an error deleting the file, please try again!','userfiles'); echo '
'; } } if (isset($_POST['addfiles'])){ $subDir=$current_user->ID; $usFolder = file_exists ( $upload_dir['basedir'].'/file_uploads/'.$subDir); if (!$usFolder) { mkdir ( $upload_dir['basedir'].'/file_uploads/'. $subDir, 0777 , true ); chmod($upload_dir['basedir'].'/file_uploads/'. $subDir,0777); } $target_path = $upload_dir['basedir'].'/file_uploads/'. $subDir.'/'; $target_path = $target_path . basename($_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { echo '
'; echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded
"; $wpdb->insert( $wpdb->prefix . "userfile_data", array( 'id'=> '','user_id'=>$subDir,'category'=>$_POST['curr_cat'],'filename'=>basename( $_FILES['uploadedfile']['name'] ))); $DoMails = get_option('file_manger_notify'); if (!empty($DoMails)){ wp_mail( $DoMails, 'New file at '. get_option('blogname'), $current_user->user_login.' has just uploaded '. basename( $_FILES['uploadedfile']['name']) .' at '. get_option('blogname')); echo __('An adminisrator has successfully been notified of your upload.','userfiles'); } echo '
'; } else{ echo '
'; echo __('There was an error uploading the file, please try again!','userfiles')."
"; echo '
'; } } if($_POST['sorted']){ $user_file_search=$_POST['file_search']; $user_cat_sort= $_POST['showcatsfilter']; if($user_cat_sort=='chge'){ unset($user_cat_sort); } } echo ' '; ?>
Search: ---- ---- '; ?>
'; echo''; echo __('Your Files','userfiles'); echo 'DateCategory'; if ($handle = @opendir($upload_dir['basedir'].'/file_uploads/'.$current_user->ID)) { $rowClass=''; unset($found); $i=1; while (false !== ($file = readdir($handle))) { if ($file!=".") { if ($file!="..") { if($user_file_search){ $searchMatch = strpos(strtolower($file),strtolower($user_file_search)); if($searchMatch === 0 || $searchMatch >0){ ListUserFiles($file,$rowClass,$current_user->ID,$i); $found=true; } }elseif($user_cat_sort){ $isCat = CatFilter($file,$user_cat_sort,$current_user->ID); if($isCat){ ListUserFiles($file,$rowClass,$current_user->ID,$i); $found=true; } }else{ ListUserFiles($file,$rowClass,$current_user->ID,$i); } } } $i++; } if($user_file_search && $found != true) { echo '
'.__('No files found for','userfiles').' '.$user_file_search.'
'; } if($user_cat_sort && $found != true) { echo '
'.__('Nothing found for category','userfiles').' '.$user_cat_sort .'
'; } }else{ echo '
'.__('You have no files','userfiles').'
'; } echo ''; $currOpts_up = get_option('file_manger_allow_up'); if ($currOpts_up=='yes'){ echo '
'; ?> '; } if ($currOpts_credits =='yes'){ echo '

 

'.userfiles_credit().'

'; } } ##################### # Category Filter # ##################### function CatFilter($file,$cate,$tUserid){ global $wpdb; if ($cate=='chge'){ return true; }else{ $currOpts_defcat = get_option('file_manger_defaultcat'); $IsaCat = $wpdb->get_var("SELECT category FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$file ."' and user_id='" .$tUserid. "' and category='".$cate."'"); if ($IsaCat == $cate) { return true; }else{ $IsNoCat = $wpdb->get_var("SELECT category FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$file ."' and user_id='" .$tUserid. "'"); if(empty($IsNoCat) && $currOpts_defcat==$cate){ return true; }else{ return false; } } } } function uploadHelper(){ if (isset($_POST['addfiles'])){ global $wpdb; $upload_dir = wp_upload_dir(); $current_user = wp_get_current_user(); $subDir = $current_user->ID; if (!empty($_POST['curr_cat'])){ $SetCat=$_POST['curr_cat']; }else{ $SetCat=$_POST['widge_cat']; } $usFolder = file_exists ( $upload_dir['basedir'].'/file_uploads/'.$subDir); if (!$usFolder) { mkdir ( $upload_dir['basedir'].'/file_uploads/'. $subDir, 0777 , true ); chmod($upload_dir['basedir'].'/file_uploads/'. $subDir,0777); } $target_path = $upload_dir['basedir'].'/file_uploads/'. $subDir.'/'; $target_path = $target_path . basename($_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { $wpdb->insert($wpdb->prefix . "userfile_data",array('user_id'=>$subDir,'category'=>$SetCat, 'filename'=>basename($_FILES['uploadedfile']['name']) ) ); $messageGo ='
'; $messageGo .= "Your file has been uploaded
"; $DoMails = get_option('file_manger_notify'); if (!empty($DoMails) && $DoMails != ""){ $url = $_SERVER['SERVER_NAME']; $headers[] ='From:"'.get_option('blogname').'" '; wp_mail($DoMails, __('A new file at','userfiles').' '. get_option('blogname'), $current_user->user_login.' '.__('has just uploaded','userfiles').' '. basename( $_FILES['uploadedfile']['name']) .' '.__('to category','userfiles').' '. $SetCat,$headers); $messageGo .= __('An administrator has successfully been notified of your upload.','userfiles'); } $messageGo .= '
'; }else{ $messageGo = '
'; $messageGo .= __('Error with file upload','userfiles'); $messageGo .= '
'; } $_POST['addfiles'] = $messageGo; } } function verifyInstall(){ global $instalVersion; $isInstallOK=get_option('file_manger_upgrade'); if ($isInstallOK!=$instalVersion){ ActivateFileDir(); update_option('file_manger_upgrade',$instalVersion); } } /* function file( $file_id ) { global $wpdb; $GatherFileData = $wpdb->get_var("SELECT * FROM ". $wpdb->prefix . "userfile_meta WHERE file_id = '".$file_id ."' "); $file_array = array(); while($rows = mysql_fetch_array($result)){ $tFile=$rows['meta_key']; $pt=$rows['meta_value']; $file_array[] = $tFile; } return $file_array; } */ ?> \ No newline at end of file diff --git a/user-files/img/bk1.png b/user-files/img/bk1.png deleted file mode 100644 index 1ba9f05..0000000 Binary files a/user-files/img/bk1.png and /dev/null differ diff --git a/user-files/img/bk2.png b/user-files/img/bk2.png deleted file mode 100644 index 45c5805..0000000 Binary files a/user-files/img/bk2.png and /dev/null differ diff --git a/user-files/img/bk3.png b/user-files/img/bk3.png deleted file mode 100644 index 26c56dd..0000000 Binary files a/user-files/img/bk3.png and /dev/null differ diff --git a/user-files/img/delete.png b/user-files/img/delete.png deleted file mode 100644 index c3c6975..0000000 Binary files a/user-files/img/delete.png and /dev/null differ diff --git a/user-files/img/download.png b/user-files/img/download.png deleted file mode 100644 index e431b6d..0000000 Binary files a/user-files/img/download.png and /dev/null differ diff --git a/user-files/img/excel.jpg b/user-files/img/excel.jpg deleted file mode 100644 index 02024bd..0000000 Binary files a/user-files/img/excel.jpg and /dev/null differ diff --git a/user-files/img/jpg.jpg b/user-files/img/jpg.jpg deleted file mode 100644 index 8a47c36..0000000 Binary files a/user-files/img/jpg.jpg and /dev/null differ diff --git a/user-files/img/pdf.jpg b/user-files/img/pdf.jpg deleted file mode 100644 index 0244d2c..0000000 Binary files a/user-files/img/pdf.jpg and /dev/null differ diff --git a/user-files/img/unknown.jpg b/user-files/img/unknown.jpg deleted file mode 100644 index 07afad5..0000000 Binary files a/user-files/img/unknown.jpg and /dev/null differ diff --git a/user-files/img/word.jpg b/user-files/img/word.jpg deleted file mode 100644 index 0006006..0000000 Binary files a/user-files/img/word.jpg and /dev/null differ diff --git a/user-files/img/zip.jpg b/user-files/img/zip.jpg deleted file mode 100644 index 0374b26..0000000 Binary files a/user-files/img/zip.jpg and /dev/null differ diff --git a/user-files/includes/js/divtoggle.js b/user-files/includes/js/divtoggle.js deleted file mode 100644 index 8e2e8c6..0000000 --- a/user-files/includes/js/divtoggle.js +++ /dev/null @@ -1,14 +0,0 @@ -function toggle2(showHideDiv, switchTextDiv) { - var ele = document.getElementById(showHideDiv); - var text = document.getElementById(switchTextDiv); - if(ele.style.display == "block") { - ele.style.display = "none"; - text.innerHTML = "Show Notes"; - } - else { - ele.style.display = "block"; - text.innerHTML = "Hide Notes"; - } -} - - \ No newline at end of file diff --git a/user-files/includes/js/userfile_thickbox.js b/user-files/includes/js/userfile_thickbox.js deleted file mode 100644 index 2f61aaf..0000000 --- a/user-files/includes/js/userfile_thickbox.js +++ /dev/null @@ -1,16 +0,0 @@ -jQuery(document).ready(function() { - -jQuery('#upload_image_button').click(function() { - formfield = jQuery('#upload_image').attr('name'); - tb_show('','media-upload.php?type=image&TB_iframe=true'); - return false; -}); -// send url back to plugin editor - -window.send_to_editor = function(html) { - imgurl = jQuery('img',html).attr('src'); - jQuery('#dfrads_textarea').val(imgurl); - tb_remove(); -} - -}); \ No newline at end of file diff --git a/user-files/includes/lang/userfiles-default.mo b/user-files/includes/lang/userfiles-default.mo deleted file mode 100644 index feec921..0000000 Binary files a/user-files/includes/lang/userfiles-default.mo and /dev/null differ diff --git a/user-files/includes/lang/userfiles-default.pot b/user-files/includes/lang/userfiles-default.pot deleted file mode 100644 index 17d6c2c..0000000 --- a/user-files/includes/lang/userfiles-default.pot +++ /dev/null @@ -1,441 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: User Files\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-25 19:07-0500\n" -"PO-Revision-Date: 2012-08-25 19:12-0500\n" -"Last-Translator: Scriptonite \n" -"Language-Team: Innovative Solutions \n" -"Language: en_US\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-SearchPath-0: G:\\SkyDrive\\web projects\\01-SVN\\user-files" -"\\trunk\n" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:214 -#: projects\01-SVN\user-files\trunk/user_files.php:837 -msgid "No Files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:230 -msgid "User Files Settings" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:230 -#: projects\01-SVN\user-files\trunk/user_files.php:444 -msgid "User Files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:232 -#: projects\01-SVN\user-files\trunk/functions.php:250 -msgid "Manage Files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:234 -#: projects\01-SVN\user-files\trunk/functions.php:445 -#: projects\01-SVN\user-files\trunk/user_files.php:1383 -msgid "Add Files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:236 -msgid "Categories" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:238 -msgid "Manage Icons" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:240 -msgid "FTP Paths" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:243 -msgid "Help" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:280 -#: projects\01-SVN\user-files\trunk/user_files.php:462 -#: projects\01-SVN\user-files\trunk/user_files.php:1236 -msgid "The file has been deleted" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:284 -#: projects\01-SVN\user-files\trunk/user_files.php:466 -#: projects\01-SVN\user-files\trunk/user_files.php:1240 -msgid "There was an error deleting the file, please try again!" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:321 -msgid "An adminisrator has successfully been notified of your upload." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:328 -#: projects\01-SVN\user-files\trunk/user_files.php:1127 -#: projects\01-SVN\user-files\trunk/user_files.php:1861 -msgid "There was an error uploading the file, please try again!" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:355 -#: projects\01-SVN\user-files\trunk/user_files.php:612 -#: projects\01-SVN\user-files\trunk/user_files.php:1278 -msgid "or" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:358 -#: projects\01-SVN\user-files\trunk/user_files.php:615 -#: projects\01-SVN\user-files\trunk/user_files.php:1281 -msgid "Show all categories" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:373 -#: projects\01-SVN\user-files\trunk/user_files.php:657 -#: projects\01-SVN\user-files\trunk/user_files.php:1296 -msgid "Filter" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:381 -#: projects\01-SVN\user-files\trunk/user_files.php:1451 -msgid "Your Files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:421 -#: projects\01-SVN\user-files\trunk/user_files.php:1361 -msgid "No files found for" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:425 -#: projects\01-SVN\user-files\trunk/user_files.php:1365 -msgid "Nothing found for category" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:431 -#: projects\01-SVN\user-files\trunk/user_files.php:1370 -#: projects\01-SVN\user-files\trunk/user_files.php:1485 -#: projects\01-SVN\user-files\trunk/widget.php:49 -msgid "You have no files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:457 -msgid "Choose a file to upload, your upload limit is" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:484 -#: projects\01-SVN\user-files\trunk/user_files.php:1186 -#: projects\01-SVN\user-files\trunk/user_files.php:1422 -#: projects\01-SVN\user-files\trunk/widget.php:150 -msgid "Upload File" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:581 -msgid "A new file at" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:581 -msgid "has just uploaded" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:581 -msgid "to category" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:582 -msgid "An administrator has successfully been notified of your upload." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/functions.php:589 -msgid "Error with file upload" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:244 -#: projects\01-SVN\user-files\trunk/user_files.php:492 -msgid "The folder has been deleted" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:248 -#: projects\01-SVN\user-files\trunk/user_files.php:496 -msgid "There was an error deleting the folder, please try again!" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:262 -msgid "File Manager Options" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:278 -msgid "" -"This will delete all files, folders, categories, icons, etc. Are you sure " -"you want to do this?" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:279 -msgid "Yes" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:279 -msgid "No" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:355 -msgid "Settings Saved" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:373 -msgid "Show Dashboard Widget" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:377 -msgid "Show dashboard menu link" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:380 -msgid "Allow users to add files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:383 -msgid "Allow users to delete files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:387 -msgid "Show credit link on user page? Not expected, but certainly appreciated!" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:387 -msgid "All other banners and ads are visible to user file admins only." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:395 -msgid "Send email upload notifcations to" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:395 -msgid "leave blank to not be notified of uploads" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:399 -msgid "" -"User File Manager supports custom email notifications to be sent out when " -"you upload a file for a user. Variables allowed are" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:403 -msgid "Email Subject" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:414 -msgid "update" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:415 -msgid "Save Options" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:431 -msgid "Uninstall User File Manager" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:565 -msgid "Changes Saved" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:569 -msgid "There was an error changing" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:609 -msgid "Search for File" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:631 -msgid "For all users" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:683 -msgid "Change" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:725 -#: projects\01-SVN\user-files\trunk/user_files.php:796 -#: projects\01-SVN\user-files\trunk/user_files.php:813 -#: projects\01-SVN\user-files\trunk/user_files.php:867 -#: projects\01-SVN\user-files\trunk/user_files.php:930 -msgid "User Login" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:725 -#: projects\01-SVN\user-files\trunk/user_files.php:796 -#: projects\01-SVN\user-files\trunk/user_files.php:813 -#: projects\01-SVN\user-files\trunk/user_files.php:867 -#: projects\01-SVN\user-files\trunk/user_files.php:930 -msgid "User Name" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:725 -#: projects\01-SVN\user-files\trunk/user_files.php:796 -#: projects\01-SVN\user-files\trunk/user_files.php:813 -#: projects\01-SVN\user-files\trunk/user_files.php:867 -#: projects\01-SVN\user-files\trunk/user_files.php:930 -msgid "Delete Folder" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:767 -#: projects\01-SVN\user-files\trunk/user_files.php:802 -#: projects\01-SVN\user-files\trunk/user_files.php:848 -#: projects\01-SVN\user-files\trunk/user_files.php:893 -#: projects\01-SVN\user-files\trunk/user_files.php:936 -msgid "Update" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:778 -msgid "No Files Found" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:841 -msgid "No files found" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:889 -msgid "No files found for this user in category" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:976 -msgid "" -"is the default category. You cannot delete this unless you change the " -"default category." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:993 -msgid "This is already a cataegory." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1003 -msgid " has been added" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1009 -msgid "There was an error adding the category" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1023 -msgid "is now default" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1060 -msgid "Add Category" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1069 -msgid "Upload Files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1122 -msgid "The file " -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1123 -msgid "has been uploaded to " -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1142 -msgid "Files for user" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1180 -msgid "Notify User of Upload" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1395 -#: projects\01-SVN\user-files\trunk/widget.php:123 -msgid "Choose a file to upload, your upload limit is " -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1430 -msgid "You must be logged in to view files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1476 -msgid "Download" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1850 -msgid "The file" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1850 -msgid "has been uploaded" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1881 -msgid "" -"Extension already exists, please delete the current extension set before " -"uploading a new one." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1916 -msgid "You must have both a file and extension" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1930 -msgid "File Deleted" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1935 -msgid "There was an error deleting this extension" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1945 -msgid "Icons" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1962 -msgid "New Icon" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1963 -msgid "Upload Icon file" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1968 -msgid "Extension" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1970 -msgid "Add" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:1991 -msgid "" -"Files can be uploaded to the users folder via FTP as well as through the " -"upload page. If the users has no folder press create folder to create the " -"users file folder." -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:2005 -msgid "User Paths for FTP upload" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:2005 -msgid "User files folder is located" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:2005 -msgid "Folder Number" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/user_files.php:2028 -msgid "Create Folder" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/widget.php:54 -msgid "You must log in to view files" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/widget.php:77 -#: projects\01-SVN\user-files\trunk/widget.php:176 -msgid "Title:" -msgstr "" - -#: G:\SkyDrive\web projects\01-SVN\user-files\trunk/widget.php:157 -msgid "You must login to upload files" -msgstr "" diff --git a/user-files/includes/lang/userfiles-es_ES.mo b/user-files/includes/lang/userfiles-es_ES.mo deleted file mode 100644 index f4cc74e..0000000 Binary files a/user-files/includes/lang/userfiles-es_ES.mo and /dev/null differ diff --git a/user-files/lang/userfiles-default.mo b/user-files/lang/userfiles-default.mo deleted file mode 100644 index 54deffb..0000000 Binary files a/user-files/lang/userfiles-default.mo and /dev/null differ diff --git a/user-files/lang/userfiles-default.pot b/user-files/lang/userfiles-default.pot deleted file mode 100644 index 30313c3..0000000 --- a/user-files/lang/userfiles-default.pot +++ /dev/null @@ -1,599 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: User Files\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-24 20:15-0500\n" -"PO-Revision-Date: 2012-01-24 20:15-0500\n" -"Last-Translator: Scriptonite \n" -"Language-Team: Innovative Solutions \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-Language: English\n" -"X-Poedit-Country: UNITED STATES\n" -"X-Poedit-SearchPath-0: D:\\Asus WebStorage\\web projects\\Wordpress Plugins\\mine\\user-files\\trunk\n" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:195 -#: Plugins\mine\user-files\trunk/user_files.php:768 -msgid "No Files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:211 -msgid "User Files Settings" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:211 -#: Plugins\mine\user-files\trunk/user_files.php:596 -msgid "User Files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:213 -#: Plugins\mine\user-files\trunk/functions.php:231 -msgid "Manage Files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:215 -#: Plugins\mine\user-files\trunk/functions.php:423 -#: Plugins\mine\user-files\trunk/user_files.php:1293 -msgid "Add Files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:217 -msgid "Categories" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:219 -msgid "Manage Icons" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:221 -msgid "FTP Paths" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:224 -msgid "Help" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:261 -#: Plugins\mine\user-files\trunk/user_files.php:413 -#: Plugins\mine\user-files\trunk/user_files.php:1147 -msgid "The file has been deleted" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:265 -#: Plugins\mine\user-files\trunk/user_files.php:417 -#: Plugins\mine\user-files\trunk/user_files.php:1151 -msgid "There was an error deleting the file, please try again!" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:302 -msgid "An adminisrator has successfully been notified of your upload." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:309 -#: Plugins\mine\user-files\trunk/user_files.php:1050 -#: Plugins\mine\user-files\trunk/user_files.php:1657 -msgid "There was an error uploading the file, please try again!" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:336 -#: Plugins\mine\user-files\trunk/user_files.php:543 -#: Plugins\mine\user-files\trunk/user_files.php:1190 -msgid "or" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:339 -#: Plugins\mine\user-files\trunk/user_files.php:546 -#: Plugins\mine\user-files\trunk/user_files.php:1193 -msgid "Show all categories" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:354 -#: Plugins\mine\user-files\trunk/user_files.php:588 -#: Plugins\mine\user-files\trunk/user_files.php:1208 -msgid "Filter" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:362 -#: Plugins\mine\user-files\trunk/user_files.php:1361 -msgid "Your Files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:399 -#: Plugins\mine\user-files\trunk/user_files.php:1271 -msgid "No files found for" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:403 -#: Plugins\mine\user-files\trunk/user_files.php:1275 -msgid "Nothing found for category" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:409 -#: Plugins\mine\user-files\trunk/user_files.php:1280 -#: Plugins\mine\user-files\trunk/user_files.php:1395 -#: Plugins\mine\user-files\trunk/widget.php:46 -msgid "You have no files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:435 -msgid "Choose a file to upload, your upload limit is" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:462 -#: Plugins\mine\user-files\trunk/user_files.php:1109 -#: Plugins\mine\user-files\trunk/user_files.php:1332 -#: Plugins\mine\user-files\trunk/widget.php:147 -msgid "Upload File" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:553 -msgid "A new file at" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:553 -msgid "has just uploaded" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:553 -msgid "to category" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:554 -msgid "An administrator has successfully been notified of your upload." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/functions.php:561 -msgid "Error with file upload" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:201 -#: Plugins\mine\user-files\trunk/user_files.php:443 -msgid "The folder has been deleted" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:205 -#: Plugins\mine\user-files\trunk/user_files.php:447 -msgid "There was an error deleting the folder, please try again!" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:220 -msgid "File Manager Options" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:232 -msgid "This will delete all files, folders, categories, icons, etc. Are you sure you want to do this?" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:233 -msgid "Yes" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:233 -msgid "No" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:309 -msgid "Settings Saved" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:327 -msgid "Show Dashboard Widget" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:331 -msgid "Show dashboard menu link" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:334 -msgid "Allow users to add files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:337 -msgid "Allow users to delete files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:341 -msgid "Show credit link on user page? Not expected, but certainly appreciated!" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:341 -msgid "All other banners and ads are visible to user file admins only." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:349 -msgid "Send email upload notifcations to" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:349 -msgid "leave blank to not be notified of uploads" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:353 -msgid "User File Manager supports custom email notifications to be sent out when you upload a file for a user. Variables allowed are" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:357 -msgid "Email Subject" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:369 -msgid "Save Options" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:385 -msgid "Uninstall User File Manager" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:496 -msgid "Categories have been changes successfully" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:500 -msgid "There was an error changing" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:540 -msgid "Search for File" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:562 -msgid "For all users" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:614 -msgid "Change" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:656 -#: Plugins\mine\user-files\trunk/user_files.php:727 -#: Plugins\mine\user-files\trunk/user_files.php:744 -#: Plugins\mine\user-files\trunk/user_files.php:798 -#: Plugins\mine\user-files\trunk/user_files.php:859 -msgid "User Login" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:656 -#: Plugins\mine\user-files\trunk/user_files.php:727 -#: Plugins\mine\user-files\trunk/user_files.php:744 -#: Plugins\mine\user-files\trunk/user_files.php:798 -#: Plugins\mine\user-files\trunk/user_files.php:859 -msgid "User Name" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:656 -#: Plugins\mine\user-files\trunk/user_files.php:727 -#: Plugins\mine\user-files\trunk/user_files.php:744 -#: Plugins\mine\user-files\trunk/user_files.php:798 -#: Plugins\mine\user-files\trunk/user_files.php:859 -msgid "Delete Folder" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:709 -msgid "No Files Found" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:772 -msgid "No files found" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:820 -msgid "No files found for this user in category" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:903 -msgid "is the default category. You cannot delete this unless you change the default category." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:918 -msgid "This is already a cataegory." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:928 -msgid " has been added" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:932 -msgid "There was an error adding the category" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:946 -msgid "is now default" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:983 -msgid "Add Category" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:994 -msgid "Upload Files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1045 -msgid "The file " -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1046 -msgid "has been uploaded to " -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1065 -msgid "Files for user" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1103 -msgid "Notify User of Upload" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1305 -#: Plugins\mine\user-files\trunk/widget.php:120 -msgid "Choose a file to upload, your upload limit is " -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1340 -msgid "You must be logged in to view files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1386 -msgid "Download" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1646 -msgid "The file" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1646 -msgid "has been uploaded" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1677 -msgid "Extension already exists, please delete the current extension set before uploading a new one." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1712 -msgid "You must have both a file and extension" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1726 -msgid "File Deleted" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1731 -msgid "There was an error deleting this extension" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1740 -msgid "Icons" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1757 -msgid "New Icon" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1758 -msgid "Upload Icon file" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1763 -msgid "Extension" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1765 -msgid "Add" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1785 -msgid "Files can be uploaded to the users folder via FTP as well as through the upload page. If the users has no folder press create folder to create the users file folder." -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1799 -msgid "User Paths for FTP upload" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1799 -msgid "User files folder is located" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1799 -msgid "Folder Number" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/user_files.php:1822 -msgid "Create Folder" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/widget.php:51 -msgid "You must log in to view files" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/widget.php:74 -#: Plugins\mine\user-files\trunk/widget.php:173 -msgid "Title:" -msgstr "" - -#: D:\Asus -#: WebStorage\web projects\Wordpress -#: Plugins\mine\user-files\trunk/widget.php:154 -msgid "You must login to upload files" -msgstr "" - diff --git a/user-files/lang/userfiles-es_ES.mo b/user-files/lang/userfiles-es_ES.mo deleted file mode 100644 index f4cc74e..0000000 Binary files a/user-files/lang/userfiles-es_ES.mo and /dev/null differ diff --git a/user-files/lang/userfiles-fr_FR.mo b/user-files/lang/userfiles-fr_FR.mo deleted file mode 100644 index 3539e68..0000000 Binary files a/user-files/lang/userfiles-fr_FR.mo and /dev/null differ diff --git a/user-files/lang/userfiles-fr_FR.po b/user-files/lang/userfiles-fr_FR.po deleted file mode 100644 index 90826ef..0000000 --- a/user-files/lang/userfiles-fr_FR.po +++ /dev/null @@ -1,493 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: User Files Manager\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-01-01 22:19+0100\n" -"PO-Revision-Date: 2012-01-01 22:19+0100\n" -"Last-Translator: Hubert CAMPAN \n" -"Language-Team: OmniMaki \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-Language: French\n" -"X-Poedit-Country: FRANCE\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-Bookmarks: \n" -"X-Poedit-SearchPath-0: .\n" -"X-Textdomain-Support: yes" - -#: functions.php:195 -#: user_files.php:768 -#@ userfiles -msgid "No Files" -msgstr "Aucun Fichier" - -#: functions.php:211 -#@ userfiles -msgid "User Files Settings" -msgstr "Paramètres de User Files" - -#: functions.php:211 -#: user_files.php:596 -#@ userfiles -msgid "User Files" -msgstr "User Files" - -#: functions.php:213 -#: functions.php:231 -#@ userfiles -msgid "Manage Files" -msgstr "Gérer les Fichiers" - -#: functions.php:215 -#: functions.php:421 -#: user_files.php:1293 -#@ userfiles -#@ default -msgid "Add Files" -msgstr "Ajouter des Fichiers" - -#: functions.php:217 -#@ userfiles -msgid "Categories" -msgstr "Catégories" - -#: functions.php:219 -#@ userfiles -msgid "Manage Icons" -msgstr "Gérer les icones" - -#: functions.php:221 -#@ userfiles -msgid "FTP Paths" -msgstr "Chemins FTP" - -#: functions.php:224 -#@ userfiles -msgid "Help" -msgstr "Aide" - -#: functions.php:261 -#: user_files.php:413 -#: user_files.php:1147 -#@ userfiles -msgid "The file has been deleted" -msgstr "Le fichier a été effacé" - -#: functions.php:265 -#: user_files.php:417 -#: user_files.php:1151 -#@ userfiles -msgid "There was an error deleting the file, please try again!" -msgstr "Il y a eu une erreur à la suppression du fichier, essayez à nouveau!" - -#: functions.php:302 -#@ userfiles -msgid "An adminisrator has successfully been notified of your upload." -msgstr "Un administrateur a été notifié avec succès de votre téléversement." - -#: functions.php:309 -#: user_files.php:1050 -#: user_files.php:1657 -#@ userfiles -msgid "There was an error uploading the file, please try again!" -msgstr "Il y a eu une erreur au téléversement du fichier, veuillez essayer à nouveau!" - -#: functions.php:336 -#: user_files.php:543 -#: user_files.php:1190 -#@ userfiles -#@ default -msgid "or" -msgstr "ou" - -#: functions.php:339 -#: user_files.php:546 -#: user_files.php:1193 -#@ userfiles -#@ default -msgid "Show all categories" -msgstr "Montrer toutes les catégories" - -#: functions.php:397 -#: user_files.php:1271 -#@ userfiles -msgid "No files found for" -msgstr "Aucun fichier pour" - -#: functions.php:401 -#: user_files.php:1275 -#@ userfiles -msgid "Nothing found for category" -msgstr "Aucun fichier pour la catégorie" - -#: functions.php:407 -#: user_files.php:1280 -#: user_files.php:1395 -#: widget.php:49 -#@ userfiles -msgid "You have no files" -msgstr "Vous n'avez aucun fichier" - -#: functions.php:433 -#@ userfiles -msgid "Choose a file to upload, your upload limit is" -msgstr "Sélectionnez un fichier à téléverser, votre limite est" - -#: functions.php:460 -#: user_files.php:1332 -#: widget.php:150 -#@ userfiles -#@ default -msgid "Upload File" -msgstr "Téléverser un fichier" - -#: functions.php:551 -#@ userfiles -msgid "A new file at" -msgstr "Un nouveau fichier à" - -#: functions.php:551 -#@ userfiles -msgid "has just uploaded" -msgstr "vient juste de téléverser" - -#: functions.php:551 -#@ userfiles -msgid "to category" -msgstr "à la catégorie" - -#: functions.php:552 -#@ userfiles -msgid "An administrator has successfully been notified of your upload." -msgstr "Un administrateur a été prévenu avec succès de votre téléversement." - -#: functions.php:559 -#@ userfiles -msgid "Error with file upload" -msgstr "Erreur avec le fichier à téléverser" - -#: functions.php:577 -#@ default -msgid "User Files has been updated, if you experience any issues please deactivate and reactivate the plugin" -msgstr "User Files a été mis à jour, si vous avez le moindre problème veuillez désactiver puis réactiver l'extension" - -#: user_files.php:201 -#: user_files.php:443 -#@ userfiles -msgid "The folder has been deleted" -msgstr "Le répertoire a été effacé" - -#: user_files.php:205 -#: user_files.php:447 -#@ userfiles -msgid "There was an error deleting the folder, please try again!" -msgstr "Il y a eu une erreur à l'effacement du répertoire, veuillez essayer à nouveau!" - -#: user_files.php:220 -#@ default -msgid "File Manager Options" -msgstr "Paramètres du gestionnaire de fichiers" - -#: user_files.php:232 -#@ userfiles -msgid "This will delete all files, folders, categories, icons, etc. Are you sure you want to do this?" -msgstr "Cela va effacer tous les fichiers, répertoires, catégories, icones, etc. Etes-vous sûr de vouloir faire cela?" - -#: user_files.php:233 -#@ userfiles -msgid "Yes" -msgstr "Oui" - -#: user_files.php:233 -#@ userfiles -msgid "No" -msgstr "Non" - -#: user_files.php:309 -#@ userfiles -msgid "Settings Saved" -msgstr "Paramètres Enregistrés" - -#: user_files.php:327 -#@ userfiles -msgid "Show Dashboard Widget" -msgstr "Afficher le Widget dans le Tableau de Bord" - -#: user_files.php:331 -#@ userfiles -msgid "Show dashboard menu link" -msgstr "Afficher la lien vers le Tableau de Bord" - -#: user_files.php:334 -#@ userfiles -msgid "Allow users to add files" -msgstr "Autoriser l'utilisateur à ajouter des fichiers" - -#: user_files.php:337 -#@ userfiles -msgid "Allow users to delete files" -msgstr "Autoriser l'utilisateur à supprimer des fichiers" - -#: user_files.php:341 -#@ userfiles -msgid "Show credit link on user page? Not expected, but certainly appreciated!" -msgstr "Mettre un lien vers notre site ? Inattendu, mais très apprécié!" - -#: user_files.php:341 -#@ userfiles -msgid "All other banners and ads are visible to user file admins only." -msgstr "Toutes les bannières sont visibles seulement au administrateurs." - -#: user_files.php:349 -#@ userfiles -msgid "Send email upload notifcations to" -msgstr "Envoyer une notification de téléversement par email à" - -#: user_files.php:349 -#@ userfiles -msgid "leave blank to not be notified of uploads" -msgstr "Laisser vide pour ne pas notifier" - -#: user_files.php:353 -#@ userfiles -msgid "User File Manager supports custom email notifications to be sent out when you upload a file for a user. Variables allowed are" -msgstr "User File Manager permet de personnaliser l'email de notification permettant de de prévenir l'utilisateur quand un fichier est téléversé pour lui. Voici les variables autorisées :" - -#: user_files.php:357 -#@ userfiles -msgid "Email Subject" -msgstr "Sujet de l'email" - -#: user_files.php:369 -#@ userfiles -msgid "Save Options" -msgstr "Enregistrer les paramètres" - -#: user_files.php:385 -#@ userfiles -msgid "Uninstall User File Manager" -msgstr "Désinstaller User Files Manager" - -#: user_files.php:496 -#@ userfiles -msgid "Categories have been changes successfully" -msgstr "Les catégories ont été modifiées avec succès" - -#: user_files.php:500 -#@ userfiles -msgid "There was an error changing" -msgstr "Il y a eu une erreur à la modification" - -#: user_files.php:562 -#@ default -msgid "For all users" -msgstr "Pour tous les utilisateurs" - -#: user_files.php:656 -#: user_files.php:727 -#: user_files.php:744 -#: user_files.php:798 -#: user_files.php:859 -#@ userfiles -msgid "User Login" -msgstr "Nom d'Accès" - -#: user_files.php:656 -#: user_files.php:727 -#: user_files.php:744 -#: user_files.php:798 -#: user_files.php:859 -#@ userfiles -msgid "User Name" -msgstr "Nom de l'Utilisateur" - -#: user_files.php:656 -#: user_files.php:727 -#: user_files.php:744 -#: user_files.php:798 -#: user_files.php:859 -#@ userfiles -msgid "Delete Folder" -msgstr "Effacer le répertoire" - -#: user_files.php:709 -#@ userfiles -msgid "No Files Found" -msgstr "Aucun fichier trouvé" - -#: user_files.php:772 -#@ userfiles -msgid "No files found" -msgstr "Aucun fichier trouvé" - -#: user_files.php:820 -#@ userfiles -msgid "No files found for this user in category" -msgstr "Aucun fichier trouvé pour cet utilisateur dans la catégorie" - -#: user_files.php:903 -#@ userfiles -msgid "is the default category. You cannot delete this unless you change the default category." -msgstr "est la catégorie par défaut. Vous ne pouvez pas l'effacer à moins que vous ne changiez la catégorie par défaut." - -#: user_files.php:918 -#@ userfiles -msgid "This is already a cataegory." -msgstr "C'est déjà une catégorie." - -#: user_files.php:928 -#@ userfiles -msgid " has been added" -msgstr "a été ajouté" - -#: user_files.php:932 -#@ userfiles -msgid "There was an error adding the category" -msgstr "Il y a eu une erreur à l'ajout de la catégorie" - -#: user_files.php:946 -#@ userfiles -msgid "is now default" -msgstr "est maintenant par défaut" - -#: user_files.php:994 -#@ userfiles -msgid "Upload Files" -msgstr "Téléverser des Fichiers" - -#: user_files.php:1045 -#@ userfiles -msgid "The file " -msgstr "Le fichier " - -#: user_files.php:1046 -#@ userfiles -msgid "has been uploaded to " -msgstr "a été téléversé vers " - -#: user_files.php:1065 -#@ userfiles -msgid "Files for user" -msgstr "Fichiers pour l'utilisateur" - -#: user_files.php:1103 -#@ userfiles -msgid "Notify User of Upload" -msgstr "Notifier l'utilisateur du téléversement" - -#: user_files.php:1305 -#: widget.php:123 -#@ default -msgid "Choose a file to upload, your upload limit is " -msgstr "Choisissez un fichier à téléverser, votre limite est de " - -#: user_files.php:1340 -#@ userfiles -msgid "You must be logged in to view files" -msgstr "Vous devez être connecté pour pouvoir voir les fichiers" - -#: user_files.php:1361 -#@ userfiles -msgid "Your Files" -msgstr "Vos fichiers" - -#: user_files.php:1386 -#@ userfiles -msgid "Download" -msgstr "Télécharger" - -#: user_files.php:1646 -#@ userfiles -msgid "The file" -msgstr "Le fichier" - -#: user_files.php:1646 -#@ userfiles -msgid "has been uploaded" -msgstr "a été téléversé" - -#: user_files.php:1677 -#@ userfiles -msgid "Extension already exists, please delete the current extension set before uploading a new one." -msgstr "L'extension existe déjà, veuillez d'abord effacer le jeu d'extension actuel avant d'en téléverser un nouveau." - -#: user_files.php:1712 -#@ userfiles -msgid "You must have both a file and extension" -msgstr "Vous devez avoir à la fois un fichier et une extension" - -#: user_files.php:1726 -#@ userfiles -msgid "File Deleted" -msgstr "Fichier Effacé" - -#: user_files.php:1731 -#@ userfiles -msgid "There was an error deleting this extension" -msgstr "Il y a eu une erreur à l'effacement de cette extension" - -#: user_files.php:1740 -#@ userfiles -msgid "Icons" -msgstr "Icônes" - -#: user_files.php:1757 -#@ userfiles -msgid "New Icon" -msgstr "Nouvel icône" - -#: user_files.php:1758 -#@ userfiles -msgid "Upload Icon file" -msgstr "Téléverser le Fichier de l'Icône" - -#: user_files.php:1763 -#@ userfiles -msgid "Extension" -msgstr "Extension" - -#: user_files.php:1765 -#@ userfiles -msgid "Add" -msgstr "Ajouter" - -#: user_files.php:1785 -#@ userfiles -msgid "Files can be uploaded to the users folder via FTP as well as through the upload page. If the users has no folder press create folder to create the users file folder." -msgstr "Des fichiers peuvent être téléversés vers le repertoire de l'utilisateur par FTP ainsi que par la page de téléversement. Si l'utilisateur n'a pas de répertoire, veuillez en créer un en cliquant sur le bouton Créer Repertoire." - -#: user_files.php:1799 -#@ userfiles -msgid "User Paths for FTP upload" -msgstr "Chemins FTP d'Utilisateurs pour le téléversement" - -#: user_files.php:1799 -#@ userfiles -msgid "User files folder is located" -msgstr "Le répertoire de fichiers de l'utilisateur a été trouvé" - -#: user_files.php:1799 -#@ userfiles -msgid "Folder Number" -msgstr "Répertoire numéro" - -#: widget.php:54 -#@ userfiles -msgid "You must log in to view files" -msgstr "Vous devez vous connecter pour voir les fichiers" - -#: widget.php:77 -#: widget.php:176 -#@ default -msgid "Title:" -msgstr "Titre:" - -#: widget.php:157 -#@ userfiles -msgid "You must login to upload files" -msgstr "Vous devez vous connecter pour téléverser des fichiers" - diff --git a/user-files/lang/userfiles-pt_BR.mo b/user-files/lang/userfiles-pt_BR.mo deleted file mode 100644 index 98fffbd..0000000 Binary files a/user-files/lang/userfiles-pt_BR.mo and /dev/null differ diff --git a/user-files/lang/userfiles-pt_BR.po b/user-files/lang/userfiles-pt_BR.po deleted file mode 100644 index 2ad442e..0000000 --- a/user-files/lang/userfiles-pt_BR.po +++ /dev/null @@ -1,525 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: User Files\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-09-27 17:47-0500\n" -"PO-Revision-Date: 2012-01-24 22:10-0300\n" -"Last-Translator: Murilo Fernandes \n" -"Language-Team: Murilo \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;gettext;gettext_noop;_e;__\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-Language: Portuguese\n" -"X-Poedit-Country: BRAZIL\n" -"X-Poedit-SearchPath-0: C:\\Users\\Tom\\AppData\\Roaming\\Notepad++\\plugins\\config\\NppFTP\\Cache\\scriptonite.net@ftp.scriptonite.net\\htdocs\\wp-content\\plugins\\user-files\n" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:199 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:768 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:168 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:733 -msgid "No Files" -msgstr "Nenhum arquivo" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:215 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:184 -msgid "User Files Settings" -msgstr "Arquivos de Configurações do Usuário" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:215 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:596 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:184 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:561 -msgid "User Files" -msgstr "Arquivos do usuário" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:217 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:235 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:186 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:204 -msgid "Manage Files" -msgstr "Administrar Arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:219 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:425 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1293 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:188 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:385 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1221 -msgid "Add Files" -msgstr "Enviar arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:221 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:190 -msgid "Categories" -msgstr "Categorias" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:223 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:192 -msgid "Manage Icons" -msgstr "Administrar Ícones" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:225 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:194 -msgid "FTP Paths" -msgstr "Caminhos FTP" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:228 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:197 -msgid "Help" -msgstr "Ajuda" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:265 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:413 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1147 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:229 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:378 -msgid "The file has been deleted" -msgstr "O arquivo foi apagado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:269 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:417 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1151 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:233 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:382 -msgid "There was an error deleting the file, please try again!" -msgstr "Ocorreu um erro ao excluir o arquivo, por favor, tente novamente!" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:306 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:266 -msgid "An adminisrator has successfully been notified of your upload." -msgstr "Um adminisrator foi notificado do seu upload." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:313 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1050 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1582 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:273 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:990 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1471 -msgid "There was an error uploading the file, please try again!" -msgstr "Ocorreu um erro ao enviar o arquivo, por favor tente novamente!" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:340 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:543 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1190 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:300 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:508 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1118 -msgid "or" -msgstr "ou" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:343 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:546 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1193 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:303 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:511 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1121 -msgid "Show all categories" -msgstr "Mostrar todas as categorias" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:401 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1271 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:361 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1199 -msgid "No files found for" -msgstr "Nenhum arquivo encontrado para" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:405 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1275 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:365 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1203 -msgid "Nothing found for category" -msgstr "Nada foi encontrado para a categoria" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:411 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1280 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1395 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:49 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:371 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1208 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1323 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:49 -msgid "You have no files" -msgstr "Você não tem arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:437 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:397 -msgid "Choose a file to upload, your upload limit is" -msgstr "Escolha um arquivo para enviar, o limite de tamanho para o arquivo é" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:464 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1332 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:150 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:424 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1260 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:150 -msgid "Upload File" -msgstr "Enviar arquivo" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:555 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:514 -msgid "A new file at" -msgstr "Um novo arquivo de" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:555 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:514 -msgid "has just uploaded" -msgstr "acaba de ser enviado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:555 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:514 -msgid "to category" -msgstr "para a categoria" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:556 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:515 -msgid "An administrator has successfully been notified of your upload." -msgstr "Um administrador foi notificado do sobre o envio de seu arquivo." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:563 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/functions.php:522 -msgid "Error with file upload" -msgstr "Erro com o envio do arquivo" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/functions.php:581 -msgid "User Files has been updated, if you experience any issues please deactivate and reactivate the plugin" -msgstr "Arquivos do usuário foi atualizado, se você tiver problemas por favor, desativar e reativar o plugin" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:201 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:443 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:189 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:408 -msgid "The folder has been deleted" -msgstr "A pasta foi excluída" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:205 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:447 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:193 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:412 -msgid "There was an error deleting the folder, please try again!" -msgstr "Ocorreu um erro ao excluir a pasta, por favor, tente novamente!" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:220 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:208 -msgid "File Manager Options" -msgstr "Gerenciar opçoes dos arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:232 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:220 -msgid "This will delete all files, folders, categories, icons, etc. Are you sure you want to do this?" -msgstr "Isto irá apagar todos os arquivos, pastas, categorias, ícones, etc. Tem certeza de que quer fazer isso?" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:233 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:221 -msgid "Yes" -msgstr "Sim" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:233 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:221 -msgid "No" -msgstr "Não" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:309 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:290 -msgid "Settings Saved" -msgstr "Configurações salvas" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:327 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:306 -msgid "Show Dashboard Widget" -msgstr "Mostrar o Dashboard Widget" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:331 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:310 -msgid "Show dashboard menu link" -msgstr "Mostrar link do menu dashboard" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:334 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:313 -msgid "Allow users to add files" -msgstr "Permitir aos usuários adicionar arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:337 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:316 -msgid "Allow users to delete files" -msgstr "Permitem aos usuários apagar arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:341 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:320 -msgid "Show credit link on user page? Not expected, but certainly appreciated!" -msgstr "Mostrar créditos do link na página do usuário? Não é necessário, mas certamente apreciada!" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:341 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:320 -msgid "All other banners and ads are visible to user file admins only." -msgstr "Todos os banners e outros anúncios são visíveis apenas para admins dos arquivos." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:349 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:328 -msgid "Send email upload notifcations to" -msgstr "Enviar email para notificar o envio de arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:349 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:328 -msgid "leave blank to not be notified of uploads" -msgstr "deixe em branco para não ser notificado de uploads" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:353 -msgid "User File Manager supports custom email notifications to be sent out when you upload a file for a user. Variables allowed are" -msgstr "Gerenciador de Arquivos suporta notificações de e-mail personalizado para ser enviado quando você fizer o envio de um arquivo para um usuário. Variáveis permitidas são" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:357 -msgid "Email Subject" -msgstr "Assunto do Email" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:369 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:334 -msgid "Save Options" -msgstr "Salvar Opções" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:385 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:350 -msgid "Uninstall User File Manager" -msgstr "Desinstalar o Gerenciador de arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:496 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:461 -msgid "Categories have been changes successfully" -msgstr "Categorias foram alteradas com sucesso" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:500 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:465 -msgid "There was an error changing" -msgstr "Ocorreu um erro ao mudar" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:562 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:527 -msgid "For all users" -msgstr "Para todos os usuários" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:656 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:727 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:744 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:798 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:859 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:621 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:692 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:709 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:763 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:824 -msgid "User Login" -msgstr "Login do usuário" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:656 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:727 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:744 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:798 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:859 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:621 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:692 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:709 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:763 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:824 -msgid "User Name" -msgstr "Nome do usuário" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:656 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:727 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:744 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:798 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:859 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:621 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:692 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:709 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:763 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:824 -msgid "Delete Folder" -msgstr "Deletar pasta" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:709 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:674 -msgid "No Files Found" -msgstr "Nenhum arquivo encontrado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:772 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:737 -msgid "No files found" -msgstr "Nenhum arquivo encontrado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:820 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:785 -msgid "No files found for this user in category" -msgstr "Nenhum arquivo encontrado para este usuário na categoria" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:903 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:868 -msgid "is the default category. You cannot delete this unless you change the default category." -msgstr "é a categoria padrão. Você não pode excluir esta categoria a menos que altere a categoria padrão." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:918 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:883 -msgid "This is already a cataegory." -msgstr "Isso já é uma categoria." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:928 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:893 -msgid " has been added" -msgstr " foi adicionado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:932 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:897 -msgid "There was an error adding the category" -msgstr "Houve um erro a inclusão da categoria" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:946 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:911 -msgid "is now default" -msgstr "agora é padrão" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:994 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:959 -msgid "Upload Files" -msgstr "Enviar arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1045 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:985 -msgid "The file " -msgstr "O arquivo" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1046 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:986 -msgid "has been uploaded to " -msgstr "foi adicionado para" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1065 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1005 -msgid "Files for user" -msgstr "Arquivos para o usuário" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1103 -msgid "Notify User of Upload" -msgstr "Notificar o usuário de upload" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1305 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:123 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1233 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:123 -msgid "Choose a file to upload, your upload limit is " -msgstr "Escolha um arquivo para upload, o limite de upload é" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1340 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1268 -msgid "You must be logged in to view files" -msgstr "Você deve estar logado para ver os arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1361 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1289 -msgid "Your Files" -msgstr "Seus Arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1386 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1314 -msgid "Download" -msgstr "Download" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1458 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1371 -msgid "file not found" -msgstr "arquivo não encontrado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1571 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1460 -msgid "The file" -msgstr "O arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1571 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1460 -msgid "has been uploaded" -msgstr "foi enviado" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1602 -msgid "Extension already exists, please delete the current extension set before uploading a new one." -msgstr "A extensão já existe, por favor, exclua o atual extensão antes de enviar um novo." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1637 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1526 -msgid "You must have both a file and extension" -msgstr "Você deve ter um arquivo e extensão" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1651 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1540 -msgid "File Deleted" -msgstr "Arquivo excluido" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1656 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1545 -msgid "There was an error deleting this extension" -msgstr "Ocorreu um erro ao excluir esta extensão" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1665 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1554 -msgid "Icons" -msgstr "Icones" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1682 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1571 -msgid "New Icon" -msgstr "Novo icone" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1683 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1572 -msgid "Upload Icon file" -msgstr "Enviar aquivo do icone" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1688 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1577 -msgid "Extension" -msgstr "Extensão" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1690 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1579 -msgid "Add" -msgstr "Adicionar" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1710 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1599 -msgid "Files can be uploaded to the users folder via FTP as well as through the upload page. If the users has no folder press create folder to create the users file folder." -msgstr "Os arquivos podem ser carregados na pasta do usuários via FTP, bem como através da página de upload. Se os usuários não tiver sua pasta criada, clique em \"criar pasta\" para que a pasta do usuário seja criada." - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1724 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1613 -msgid "User Paths for FTP upload" -msgstr "Caminhos do usuário para fazer upload pelo FTP" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1724 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1613 -msgid "User files folder is located" -msgstr "Pasta de arquivos do usuário está localizada" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/user_files.php:1724 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1613 -msgid "Folder Number" -msgstr "Número da pasta" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:54 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:54 -msgid "You must log in to view files" -msgstr "Você deve fazer login para ver arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:77 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:176 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:77 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:176 -msgid "Title:" -msgstr "Título:" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/widget.php:157 -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/widget.php:157 -msgid "You must login to upload files" -msgstr "Você deve entrar para fazer upload de arquivos" - -#: C:\Users\Tom\AppData\Roaming\Notepad++\plugins\config\NppFTP\Cache\scriptonite.net@ftp.scriptonite.net\htdocs\wp-content\plugins\user-files/2.0.3/user_files.php:1491 -msgid "Extension already exsists, please delete the current extension set before uploading a new one." -msgstr "Extensão já existe, por favor, apague a extensão atual antes de enviar um novo." - diff --git a/user-files/readme.txt b/user-files/readme.txt deleted file mode 100644 index 90b4d9c..0000000 --- a/user-files/readme.txt +++ /dev/null @@ -1,171 +0,0 @@ -== user files === - -Contributors: Innovative Solutions -Tags: user files, User Files, File Manger -Donate:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RMCSV4J9FALZ6 -Requires at least: 3.0 -Tested up to: 3.4.2 -Stable Tag:2.4.2 - - -User files allows you to upload files for a specific user to download. Custom Icons and categories are available to more easily search and filter files. - -== Description == - -The user files plugin allows you to add upload files for a specific user to download or view. The file upload is limited to the post max of your server. Files are uploaded to a user and can be accesses via an access page, dashboard widget, or both. The user files options page will allow you to turn on page menu and dashboard widget. Other options to allow user to delete their files and add to them. Also adds a file manager page to view all files and which user they belong to. You can delete files individually or delete the users folder. - - -Files can have icons and category, both are customizable. Users and admins can search file names or parts and admins can filter files by category and/or by user. - - - - -== Installation == -1. Upload `user-files.php` to the `/wp-content/plugins/` directory -2. Activate the plugin through the 'Plugins' menu in WordPress - - - -== Frequently Asked Questions == - -= I have just upgraded to the latest version and now my menu items are gone = - -The latest upgrade implemented the custom capability manage_userfiles_settings and manage_userfiles. The manage_userfiles_settings will allow access to the File manager options in the settings menu and the manage_userfiles will create the userfiles admin menu options. - -= Can User File Admins manage all users filefrom the front end in a page? = - -No, there is no in-page option for file management for admins, only users. We have just released a new commercial addon called Front end admin however that will allow you to do this. It currently features multi-file upload for admin and users. - - - - -== Changelog == - -1.0.1 -* Fixed display issue for dashboard widget - - - -1.0.2 -* Added option to allow users to delete their files -* Added option to allow users to add files to their account (suggestion sent in by Pedro Pregnolato) -* Both features can be turned on or off in the File Manager Options settings - - - -1.0.6 -* Fixed user uploads page, user was unable to upload unless they already had files -* Added Shortcode to place file list in template page -* Added help page with short general information - - - -1.0.8 -* Added admin notification option for user uploads. Idea submitted by Aleks Berland. - - - -2.0 -* Added Categories for files -* Added icon support -* Fixed error opening non-existant directory -* Added file search -* Added category filter -* Added files download widget -* Added files upload widget -* Fixed shortcode using output buffer -* Added one-click download function -* Added complete uninstall function -* Added I10n, .pot file available for contributors -* css added for in page display table - - - -2.0.3 -* Fixed bug with custom capabilities and restored manage_options, will add custom caps at a later date. Don't have time to fix it at this time. - - - -2.0.5 -* Fixed bug writing categories to the database. -* Fixed issue with corrupt file downloads on wordpress 3.2 -* Fixed a couple other minor bugs - - - -2.0.6 -* Removed echo causing header sent error messages - - - -2.0.7 -* Fixed error that sometimes caused a 404 error when file download was pressed - - - -2.0.8 -* Fixed misspelling in upload category query - - - -2.1.0 -* Fixed download issues happening on some servers. Thanks to all who reported the bugs through our site and on wordpress.org forums. Thanks to dev123 and etruel. - - - -2.1.1 -* Added email notification option to notify users of uploaded files. -* Added a date column to show the date the file was uploaded (ftp or wordpress) - - - -2.1.5 -* Added a new fix for downloads thnaks to dev123 - - - -2.2.0 -* New download function written which seems to fix any and all corrupt downloads - - - -2.2.1 -* file corruption during sync, we're going to forget this update happened - - - -2.2.2 -* Mail notification fix -* Fix for file corruption due to error with sync software - - - -2.3 -* Mail notification fix (for real) -* Increased limit on category name lenth -* added notes for files* added security for file downloads - - - -2.3.1 -* fixed help file - - - -2.3.2 -* fixed permalink uploading issue - - - -2.3.6 -* Added more compatibility for the USer Files Front End Admin addon* Increased security for files - - - -2.4 -* Fixed download issue with firefox - - - -2.4.1 -* Fixed download bug in widget \ No newline at end of file diff --git a/user-files/style.css b/user-files/style.css deleted file mode 100644 index 55589aa..0000000 --- a/user-files/style.css +++ /dev/null @@ -1,66 +0,0 @@ -table - -{ -border: 1px solid black; -border-spacing:0; -Margin: 15px 0 15px 0; -} - - -th -{ -background-color:#E5E5E5; -text-align:left; -border-bottom:thick solid #000000; -font-size:20px; -font-weight:bold; -padding: 3px 0 3px 4px; - -} - -tr,td -{ -padding: 2px 0 2px 4px; -vertical-align:middle; -padding:2px 6px 2px 4px; -} - -user_files -{ - -border-style:solid; -border-width:2px; - - -} - - -.even_files -{ - -border-collapse:collapse; -background-color:#FFFFFF; -border:0; -} - -.odd_files -{ - -border-collapse:collapse; -background-color:#C7C7C7; -border:0; - -} - - - -/*Line break*/ - -linebreak -{ - -width:100%; -size:3px; -color:#000000; - -} \ No newline at end of file diff --git a/user-files/user_files.php b/user-files/user_files.php deleted file mode 100644 index 71080e0..0000000 --- a/user-files/user_files.php +++ /dev/null @@ -1 +0,0 @@ -get_var("show tables like ".$wpdb->prefix . "userfile_icons") != $wpdb->prefix . "userfile_icons") { $sql1 = "CREATE TABLE IF NOT EXISTS " . $wpdb->prefix . "userfile_icons( id int NOT NULL AUTO_INCREMENT PRIMARY KEY, extension varchar(10) NOT NULL UNIQUE, image varchar (500) NOT NULL );"; } if($wpdb->get_var("show tables like ".$wpdb->prefix . "userfile_category") != $wpdb->prefix . "userfile_category") { $sql2 = "CREATE TABLE IF NOT EXISTS " . $wpdb->prefix . "userfile_category( id int NOT NULL AUTO_INCREMENT PRIMARY KEY, category varchar(50) NOT NULL, UNIQUE (category) );"; } if($wpdb->get_var("show tables like ".$wpdb->prefix . "userfile_data") != $wpdb->prefix . "userfile_data") { $sql3 = "CREATE TABLE IF NOT EXISTS " . $wpdb->prefix . "userfile_data( id int NOT NULL AUTO_INCREMENT PRIMARY KEY, user_id int NOT NULL, category varchar(50) NOT NULL, filename varchar (500) NOT NULL, description longtext NOT NULL );"; } require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql1); dbDelta($sql2); dbDelta($sql3); if($wpdb->get_var("show tables like ".$wpdb->prefix . "userfile_category") == $wpdb->prefix . "userfile_category") { $DumpFiles = $wpdb->get_results("SELECT * FROM ". $wpdb->prefix."userfile_category"); foreach ( $DumpFiles as $SaveFiles ) { $wpdb->insert($wpdb->prefix . "userfile_data", array( 'id'=>$SaveFiles->id,'user_id'=>$SaveFiles->user_id,'category'=>$SaveFiles->category,'filename'=>$SaveFiles->filename)); } $wpdb->query("DROP TABLE ".$wpdb->prefix . "userfile_category"); } $wpdb->query( "ALTER TABLE " . $wpdb->prefix . "userfile_category MODIFY category VARCHAR( 50 )" ); $wpdb->query( "ALTER TABLE " . $wpdb->prefix . "userfile_data MODIFY category VARCHAR( 50 )" ); $wpdb->insert($wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'pdf','image'=>plugins_url( '/user-files/img/pdf.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'doc','image'=>plugins_url( '/user-files/img/word.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'docx','image'=>plugins_url( '/user-files/img/word.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'txt','image'=>plugins_url( '/user-files/img/word.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'jpg','image'=>plugins_url( '/user-files/img/jpg.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'png','image'=>plugins_url( '/user-files/img/jpg.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'gif','image'=>plugins_url( '/user-files/img/jpg.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'jpeg','image'=>plugins_url( '/user-files/img/jpg.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'xls','image'=>plugins_url( '/user-files/img/excel.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'zip','image'=>plugins_url( '/user-files/img/zip.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_icons", array( 'id'=> '','extension'=>'rar','image'=>plugins_url( '/user-files/img/zip.jpg' , dirname(__FILE__) ))); $wpdb->insert( $wpdb->prefix . "userfile_category", array( 'id'=> '','category'=>'misc')); add_option('file_manger_show_dash', 'yes'); add_option('file_manger_show_menu', 'yes'); add_option('file_manger_allow_del', 'no'); add_option('file_manger_allow_up', 'no'); add_option('file_manger_notify', ''); add_option('file_manger_credit'); add_option('file_manger_defaultcat','misc'); add_option('file_manger_upgrade',''); update_option('file_manger_upgrade',$instalVersion); add_option('userfiles_email_subject','New File Upload'); add_option('userfiles_email_message','You have a new file upload. The file is %filename% and has been added to your %category% category.'); $wp_roles->add_cap( 'administrator', 'manage_userfiles' ); $wp_roles->add_cap( 'administrator', 'manage_userfiles_settings' ); } } function DectivateFileDir() { global $wpdb; global $wp_roles; $wp_roles->remove_cap( 'administrator', 'manage_userfiles' ); $wp_roles->remove_cap( 'administrator', 'manage_userfiles_settings' ); $upload_dir = wp_upload_dir(); $isFolder = file_exists ($upload_dir['basedir'].'/file_uploads/'); if ($isFolder) { if ($Subhandle = @opendir($isFolder)) { while (false !== ($subdirs = readdir($Subhandle))) { $files = glob( $subdirs . '*', GLOB_MARK ); foreach( $files as $file ){ if ($file != "." and $file !=".."){ unlink( $file ); } } rmdir( $subdirs ); } } $isitGone = rmdir( $isFolder ); $dir = file_exists ($upload_dir['basedir'].'/userfile_icons/'); $files = glob( $dir . '*', GLOB_MARK ); foreach( $files as $file ){ if ($file != "." and $file !=".."){ unlink( $file ); } } rmdir( $dir ); $wpdb->query('DROP TABLE '.$wpdb->prefix.'userfile_icons'); $wpdb->query('DROP TABLE '.$wpdb->prefix.'userfile_category'); $wpdb->query('DROP TABLE '.$wpdb->prefix.'userfile_data'); $wpdb->query('DROP TABLE '.$wpdb->prefix.'userfile_cats'); delete_option('file_manger_show_dash'); delete_option('file_manger_show_menu'); delete_option('file_manger_allow_up'); delete_option('file_manger_allow_del'); delete_option('file_manger_notify'); delete_option('file_manger_credit'); if ($isitGone) { echo '
'; echo __('The folder has been deleted','userfiles'); echo '
'; } else{ echo '
'; echo __('There was an error deleting the folder, please try again!','userfiles'); echo '
'; } } } function files_settings_page() { echo '

'. __('File Manager Options').'

'; set_abase(); ?>

'; echo __('This will delete all files, folders, categories, icons, etc. Are you sure you want to do this?','userfiles'); echo '
'.__('Yes','userfiles').' | '.__('No','userfiles').''; echo ''; } if ($_POST['update']) { $currOpts_dash = get_option('file_manger_show_dash'); $currOpts_menu = get_option('file_manger_show_menu'); $currOpts_up = get_option('file_manger_allow_up'); $currOpts_del = get_option('file_manger_allow_del'); $currOpts_notify = get_option('file_manger_notify'); $currOpts_credits=get_option('file_manger_credit'); if ($_POST['file_manger_show_dash'] != $currOpts_dash ) { if($_POST['file_manger_show_dash']=='yes') { update_option('file_manger_show_dash','yes' ); }else{ update_option('file_manger_show_dash','no' ); } } if ($_POST['file_manger_dashcats'] != $currOpts_dash ) { update_option('file_manger_dashcats',$_POST['file_manger_dashcats'] ); } if($_POST['file_manger_dashcount'] != $currOpts_menu ) { update_option('file_manger_dashcount',$_POST['file_manger_dashcount'] ); } if($_POST['file_manger_allow_del'] != $currOpts_del ) { if($_POST['file_manger_allow_del']=='yes') { update_option('file_manger_allow_del','yes' ); }else{ update_option('file_manger_allow_del','no' ); } } if($_POST['file_manger_allow_up'] != $currOpts_up ) { if($_POST['file_manger_allow_up']=='yes') { update_option('file_manger_allow_up','yes' ); }else{ update_option('file_manger_allow_up','no' ); } } if($_POST['file_manger_credit'] != $currOpts_credits ) { if($_POST['file_manger_credit']=='yes') { update_option('file_manger_credit','yes' ); }else{ update_option('file_manger_credit','no' ); } } if($_POST['file_manger_notify'] != $currOpts_notify ) { update_option('file_manger_notify',$_POST['file_manger_notify'] ); } if($_POST['userfiles_email_subject'] ) { update_option('userfiles_email_subject',$_POST['userfiles_email_subject'] ); } if($_POST['userfiles_email_message'] ) { update_option('userfiles_email_message',esc_attr($_POST['userfiles_email_message']) ); } echo '

'.__('Settings Saved','userfiles').'
'; } $currOpts_dash = get_option('file_manger_show_dash'); $currOpts_menu = get_option('file_manger_show_menu'); $currOpts_up = get_option('file_manger_allow_up'); $currOpts_del = get_option('file_manger_allow_del'); $currOpts_notify = get_option('file_manger_notify'); $currOpts_credits = get_option('file_manger_credit'); $currOpts_email_Sub=get_option('userfiles_email_subject'); $currOpts_email_mes=get_option('userfiles_email_message'); ?>

M

get_results("SELECT * FROM ". $wpdb->prefix."userfile_category" ); ?> Category:
>
>
>
>
>




%user_first%,%user_last%,%user_login%,%filename%,%category%
:

 

 


This will completely uninstall User File Manager. All files, folders, and settings will be lost. You need to uninstall this before you deactivate the plugin if you wish to remove it completely.

 

'.__('User Files','userfiles').''; set_abase(); global $wpdb; $upload_dir = wp_upload_dir(); if (isset($_GET['deletefile'])){ $isitGone = unlink($upload_dir['basedir'].'/file_uploads/'.$_GET['deletefile']); $toUsFl=explode ( "/" , $_GET['deletefolder'] ); $wpdb->query("DELETE FROM ".$wpdb->prefix."userfile_data WHERE user_id ='" .$toUsFl[1]. "' AND filename ='".$toUsFl[2]."'"); if ($isitGone) { echo '
'; echo __('The file has been deleted','userfiles'); echo '
'; } else{ echo '
'; echo __('There was an error deleting the file, please try again!','userfiles'); echo '
'; } } if (isset($_GET['deletefolder'])){ $dir = $_GET['deletefolder'].'/'; $files = glob( $dir . '*', GLOB_MARK ); foreach( $files as $file ){ if ($file != "." and $file !=".."){ unlink( $file ); } } $cleanDB= $wpdb->query("DELETE FROM ".$wpdb->prefix."userfile_data WHERE user_id ='" .$_GET['deletefolder']. "'"); $isitGone = rmdir( $dir ); if ($isitGone) { echo '
'; echo __('The folder has been deleted','userfiles'); echo '
'; } else{ echo '
'; echo __('There was an error deleting the folder, please try again!','userfiles'); echo '
'; } } if(isset($_POST['change-em']) || isset($_POST['submit'])){ $step=1; unset($err); $CheckCount=$_POST['CheckedCount']; while($step<= $CheckCount) { $upCat=$_POST['change_cat'.$step]; $Set_user=$_POST['changecat_user'.$step]; $Set_file=$_POST['file'.$step]; $Set_cat=$_POST['newCat']; $isIn = $wpdb->get_var("SELECT id FROM ".$wpdb->prefix."userfile_data WHERE user_id='".$Set_user."' AND filename='".$Set_file."'"); if($upCat == "addit" && $Set_cat !='chge'){ if($isIn){ $stickit = $wpdb->update($wpdb->prefix . "userfile_data", array( 'category'=>$Set_cat),array( 'id'=>$isIn)); }else{ $stickit = $wpdb->insert($wpdb->prefix . "userfile_data", array( 'id'=>'','category'=> $Set_cat,'filename'=>$Set_file,'category'=> get_option('file_manger_defaultcat'),'user_id'=>$_POST['changecat_user'.$step])); } if (!$stickit){ $err .=$Set_file.', '; } } $Set_descr=$_POST['notes'.$step]; $isSaved = $_POST['fileid'.$step]; if (isset($Set_descr)){ $isIn = $wpdb->get_var("SELECT id FROM ".$wpdb->prefix."userfile_data WHERE user_id='".$Set_user."' AND filename='".$Set_file."'"); if($isIn){ $stickit = $wpdb->update($wpdb->prefix . "userfile_data", array( 'description'=>$Set_descr),array( 'id'=>$isIn)); }else{ $stickit = $wpdb->insert($wpdb->prefix . "userfile_data", array( 'id'=>'','description'=> $Set_descr,'filename'=>$Set_file,'user_id'=>$_POST['changecat_user'.$step])); } } $step++; } if (!$err) { echo '
'; echo __('Changes Saved','userfiles'); echo '
'; } else{ echo '
'; echo __('There was an error changing','userfiles'). ': ' .$err; echo '
'; } } if($_POST['file_search']) { $file_search_terms=$_POST['file_search']; } if($_POST['catsnuser']) { $SortByCat=$_POST['showcatsfilter']; if($SortByCat=='chge'){ unset($SortByCat); } $SortByUser=$_POST['foruser']; if($SortByUser=='chge'){ unset($SortByUser); } } ?>
---- ---- '; ?> '; ?>
'; ?>
0){ $foundOne = true; if($tp==1){ $endTable=true; echo ''; $userNum=(int)$file; $user_info = get_userdata($userNum); echo ''; echo ''; echo ''; } $ext = pathinfo($files, PATHINFO_EXTENSION); $tExt = SetIcon($ext); echo ''; echo ''; echo ''; echo ''; $tp++; } } } } echo ''; if($endTable){ echo '
'.__('User Login','userfiles').': '.$user_info->user_login.' | '.__('User Name','userfiles').': '.$user_info->first_name. ' '.$user_info->last_name .' ( '.__('Delete Folder','userfiles').')  DateCategory
'.pathinfo($files, PATHINFO_FILENAME).''. GetTimeStamp($files,$userNum) .''; $currOpts_defcat = get_option('file_manger_defaultcat'); $getCrntCat = $wpdb->get_var("SELECT category FROM ". $wpdb->prefix . "userfile_data WHERE filename = '".$files ."' and user_id='" .$userNum. "'"); if (!$getCrntCat) { echo $currOpts_defcat; }else{ echo $getCrntCat; } echo' |

 


'; } } } } } } if($foundOne!=true){ echo '

'; echo __('No Files Found','userfiles'); echo'

'; } //End Search }elseif($SortByCat || $SortByUser){ if($SortByUser){ //Begin sort by user only if(!$SortByCat){ $tp=1; echo ''; $userNum=(int)$SortByUser; $user_info = get_userdata($userNum); echo ''; echo ''; echo ''; ListAdminFiles($userNum); echo '
'.__('User Login','userfiles').': '.$user_info->user_login.' | '.__('User Name','userfiles').': '.$user_info->first_name. ' '.$user_info->last_name .' ( '.__('Delete Folder','userfiles').') DateCategory

 


'; echo ''; //End sort by user only }else{ //Sort by cat and user global $tp; $userNum=(int)$SortByUser; $user_info = get_userdata($userNum); echo ''; echo ''; echo ''; echo ''; unset($found); if ($Subhandle = @opendir($upload_dir['basedir'].'/file_uploads/'.$userNum)) { while (false !== ($files = readdir($Subhandle))) { echo ''; if ($files!=".") { if ($files!="..") { $isCat = CatFilter($files,$SortByCat,$userNum); if($isCat){ ListFilteredFiles($files,$userNum); $found=true; } } } echo ''; } }else{ echo ''; } if($found!=true){ echo ''; } echo ''; } echo '
'.__('User Login','userfiles').': '.$user_info->user_login.' | '.__('User Name','userfiles').': '.$user_info->first_name. ' '.$user_info->last_name .' ( '.__('Delete Folder','userfiles').') DateCategory

'.__('No Files','userfiles').'

'.__('No files found','userfiles').'

 


'; }else{ //Sort by cat only if ($handle = @opendir($upload_dir['basedir'].'/file_uploads')) { while ( ($file = readdir($handle))!== false) { $tp=1; if ($file!=".") { if ($file!="..") { unset($found); echo ''; $userNum=(int)$file; $user_info = get_userdata($userNum); echo ''; echo ''; echo ''; if ($Subhandle = @opendir($upload_dir['basedir'].'/file_uploads/'.$userNum)) { while (false !== ($files = readdir($Subhandle))) { echo ''; if ($files!=".") { if ($files!="..") { $isCat = CatFilter($files,$SortByCat,$userNum); if($isCat){ ListFilteredFiles($files,$userNum,$tp); $found=true; $tp++; } } } echo ''; } if($SortByCat && $found != true){ echo ''; } echo '
'.__('User Login','userfiles').': '.$user_info->user_login.' | '.__('User Name','userfiles').': '.$user_info->first_name. ' '.$user_info->last_name .' ( '.__('Delete Folder','userfiles').') DateCategory

'.__('No files found for this user in category','userfiles').' '.$SortByCat.'

 


'; } } } } echo ''; } } }else{ if ($handle = @opendir($upload_dir['basedir'].'/file_uploads')) { global $tp; $tp=1; while ( ($file = readdir($handle))!== false) { if ($file!=".") { if ($file!="..") { echo ''; $userNum=(int)$file; $user_info = get_userdata($userNum); echo ''; echo ''; echo ''; ListAdminFiles($userNum); echo '
'.__('User Login','userfiles').': '.$user_info->user_login.' | '.__('User Name','userfiles').': '.$user_info->first_name. ' '.$user_info->last_name .' ( '.__('Delete Folder','userfiles').') DateCategory

 


'; //End main page list } } } echo ''; } } //End IF ?>
query("DELETE FROM ". $wpdb->prefix . "userfile_category WHERE category='".$_GET['deletecat'] ."'"); $wpdb->query("UPDATE ".$wpdb->prefix."userfile_data set category='".$currOpts_defcat."' WHERE category='".$_GET['deletecat']."'"); }else{ echo '
'; echo $currOpts_defcat .' '. __('is the default category. You cannot delete this unless you change the default category.','userfiles'); echo '
'; } } $newCat = $_POST['addcat']; if (isset($newCat)){ $isCat = $wpdb->query( "SELECT * FROM ".$wpdb->prefix."userfile_category WHERE category='" .$newCat. "'"); if ($isCat){ $err=1; echo '
'; echo __('This is already a cataegory.','userfiles'); echo '
'; }else{ $dCat = $wpdb->insert( $wpdb->prefix . "userfile_category", array( 'id'=> '','category'=>$newCat)); } if ($dCat) { echo '
'; echo $newCat . __(' has been added','userfiles' ); echo '
'; } else{ echo '
'; echo __('There was an error adding the category','userfiles'); echo '
'; } } $newdefcat=$_GET['defcat']; if (isset($newdefcat)){ update_option('file_manger_defaultcat',$newdefcat); echo '
'; echo $newdefcat.' ' . __('is now default','userfiles' ); echo '
'; } ?>

Manage Catagories

get_results("SELECT * FROM ". $wpdb->prefix . "userfile_category"); echo ''; foreach ($getCats as $c) { echo ''; } echo '
'; echo $c->category.''; if($currOpts_defcat!=$c->category){echo '(Make Default) | ';} echo '(Delete)
'; ?>

'.__('Upload Files','userfiles') .'

'; set_abase(); global $wpdb; $upload_dir = wp_upload_dir(); if (isset($_POST['curr_user'])) { $subDir = $_POST['curr_user']; $usFolder = file_exists ( $upload_dir['basedir'].'/file_uploads/'.$subDir); if (!$usFolder) { mkdir ( $upload_dir['basedir'].'/file_uploads/'. $subDir, 0777 , true ); chmod($upload_dir['basedir'].'/file_uploads/'. $subDir,0777); } $target_path = $upload_dir['basedir'].'/file_uploads/'. $subDir.'/'; $target_path = $target_path . basename($_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { $wpdb->insert( $wpdb->prefix . "userfile_data", array( 'user_id'=>$subDir,'category'=>$_POST['curr_cat'],'filename'=>basename( $_FILES['uploadedfile']['name'] ))); if ($_POST['notify_user'] == 'checked') { $user_info = get_userdata($subDir); $usermailsubject = get_option('userfiles_email_subject'); $usermail = get_option('userfiles_email_message'); $usermail = str_replace('%user_first%',$user_info->first_name,$usermail); $usermail = str_replace('%user_last%',$user_info->last_name,$usermail); $usermail = str_replace('%user_login%',$user_info->user_login,$usermail); $usermail = str_replace('%filename%',basename( $_FILES['uploadedfile']['name']),$usermail); $usermail = str_replace('%category%',$_POST['curr_cat'],$usermail); //$usermail = str_ireplace('%','',$usermail); $headers[] ='From:"'.get_option('blogname').'" <'.get_option('admin_email').'>'; wp_mail($user_info->user_email, $usermailsubject, $usermail, $headers); } echo '
'; echo __("The file ",'userfiles'). basename( $_FILES['uploadedfile']['name']).' '. __("has been uploaded to ",'userfiles').$_POST['curr_cat']; echo '
'; } else{ echo '
'; echo __("There was an error uploading the file, please try again!",'userfiles').'
'; echo '
'; } } ?>
get_col("SELECT ID FROM $wpdb->users ORDER BY $order"); echo __('Files for user','userfiles').':

get_results("SELECT * FROM ". $wpdb->prefix."userfile_category" ); echo 'Category:
query("DELETE FROM ".$wpdb->prefix."userfile_data WHERE user_id ='" .$toUsFl[1]. "' AND filename ='".$toUsFl[2]."'"); if(!file_exists($upload_dir['basedir'].'/file_uploads/'.$theDel_file)){ echo '
'; echo __('The file has been deleted','userfiles'); echo '
'; } else{ echo '
'; echo __('There was an error deleting the file, please try again!','userfiles'); echo '
'; } } if($_POST['sorted']){ $user_file_search=$_POST['file_search']; $user_cat_sort= $_POST['showcatsfilter']; if(!$user_file_search){ unset($user_file_search); } if($user_cat_sort == 'chge'){ unset($user_cat_sort); } } echo $_POST['addfiles'].'

'; ?>

Search: ---- ---- '; ?>
'; echo'Your Files   Date Category   '; if ($handle = @opendir($upload_dir['basedir'].'/file_uploads/'.$current_user->ID)) { $rowClass='even_files'; unset($found); $count=1; while (false !== ($file = readdir($handle))) { if ($file!=".") { if ($file!="..") { if($user_file_search){ $searchMatch = strpos(strtolower($file),strtolower($user_file_search)); if($searchMatch === 0 || $searchMatch >0){ if ($rowClass == 'even_files'){ $rowClass='odd_files'; }else{ $rowClass='even_files'; } ListUserFiles($file,$rowClass,$current_user->ID,$count); $found=true; } }elseif($user_cat_sort){ $isCat = CatFilter($file,$user_cat_sort,$current_user->ID); if($isCat){ if ($rowClass == 'even_files'){ $rowClass='odd_files'; }else{ $rowClass='even_files'; } ListUserFiles($file,$rowClass,$current_user->ID,$count); $found=true; } }else{ if ($rowClass == 'even_files'){ $rowClass='odd_files'; }else{ $rowClass='even_files'; } ListUserFiles($file,$rowClass,$current_user->ID,$count); } } } $count++; } if($user_file_search && $found != true) { echo '
'.__('No files found for','userfiles').' '.$user_file_search.'
'; } if($user_cat_sort && $found != true) { echo '
'.__('Nothing found for category','userfiles').' '.$user_cat_sort .'
'; } }else{ echo '
'.__('You have no files','userfiles').'
'; } echo ''; $currOpts_up = get_option('file_manger_allow_up'); if ($currOpts_up=='yes'){ echo '
'; ?> '; } }else{ echo __('You must be logged in to view files','userfiles'); } if ($currOpts_credits =='yes'){ echo '

 

'.userfiles_credit().'

'; } $sFileManger = ob_get_clean(); return $sFileManger; } #################################### # DASHBOARD WIDGET # #################################### function file_manager_dashboard() { $currOpts_dash = get_option('file_manger_show_dash'); if($currOpts_dash=='yes') { wp_add_dashboard_widget( 'my_wp_file_manager', __( 'Your Files','userfiles'),'my_wp_file_manager' ); } } function my_wp_file_manager() { $upload_dir = wp_upload_dir(); global $current_user; get_currentuserinfo(); if ($handle = @opendir($upload_dir['basedir'].'/file_uploads/'.$current_user->ID)) { while (false !== ($file = readdir($handle))) { if ($file!=".") { if ($file!="..") { $ext = pathinfo($file, PATHINFO_EXTENSION); $tExt = SetIcon($ext); echo '

M

get_results("SELECT * FROM ". $wpdb->prefix."userfile_category" ); ?> Category:
'; echo '
'.pathinfo($file, PATHINFO_FILENAME).'
'; echo '
'; } } ?>

Help File

Quick Help

To allow users to upload files or delete files go to the options page and check the appropriate options.

The options to enable the File manager page and dashboard widgets are in the options. The File Manager users menu item is only available in the admin area. If you wish to show the user the file list in your page you can use the shortcode. If you have options selected for the user upload and/or delete files these options will be available on the page as well.

The sidebar widget can be placed in any area that supports widgets and will list all the files available to the logged in user. No options are available for the widget.
In the options section you can customize an email message to send to users to notify them of an uploaded file. When you upload a file there is a checkbox that controls wether or not the user is notfified of the file
More information and documentation can be found here.
Shortcode for use in template page: [user_file_manager]
ID .'/'; } else { if($current_user->ID == $theDLfile_array[0] || current_user_can('manage_userfiles') ){ $file = $theDLfile_array[1]; $url=$upload_dir['basedir'].'/file_uploads/'.$theDLfile_array[0] .'/'; }else{ ?> login to download this file.'; } } return; } /*DOWNLOAD FUNCTION */ function output_file($file, $name, $mime_type='') { if(!is_readable($file)) wp_die($name.' not found or inaccessible!
'); $size = filesize($file); $name = rawurldecode($name); $known_mime_types=array( "pdf" => "application/pdf", "txt" => "text/plain", "html" => "text/html", "htm" => "text/html", "exe" => "application/octet-stream", "zip" => "application/zip", "doc" => "application/msword", "xls" => "application/vnd.ms-excel", "ppt" => "application/vnd.ms-powerpoint", "gif" => "image/gif", "png" => "image/png", "jpeg"=> "image/jpg", "jpg" => "image/jpg", "php" => "text/plain" ); if($mime_type==''){ $file_extension = strtolower(substr(strrchr($file,"."),1)); if(array_key_exists($file_extension, $known_mime_types)){ $mime_type=$known_mime_types[$file_extension]; } else { $mime_type="application/force-download"; }; }; @ob_end_clean(); //turn off output buffering to decrease cpu usage // required for IE, otherwise Content-Disposition may be ignored if(ini_get('zlib.output_compression')) ini_set('zlib.output_compression', 'Off'); header('Content-Type: ' . $mime_type); header('Content-Disposition: attachment; filename="'.$name.'"'); header("Content-Transfer-Encoding: binary"); header('Accept-Ranges: bytes'); /* The three lines below basically make the download non-cacheable */ header("Cache-control: private"); header('Pragma: private'); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // multipart-download and download resuming support if(isset($_SERVER['HTTP_RANGE'])) { list($a, $range) = explode("=",$_SERVER['HTTP_RANGE'],2); list($range) = explode(",",$range,2); list($range, $range_end) = explode("-", $range); $range=intval($range); if(!$range_end) { $range_end=$size-1; } else { $range_end=intval($range_end); } $new_length = $range_end-$range+1; header("HTTP/1.1 206 Partial Content"); header("Content-Length: $new_length"); header("Content-Range: bytes $range-$range_end/$size"); } else { $new_length=$size; header("Content-Length: ".$size); } /* output the file itself */ $chunksize = 1*(1024*1024); //you may want to change this $bytes_send = 0; if ($file = fopen($file, 'r')) { if(isset($_SERVER['HTTP_RANGE'])) fseek($file, $range); while(!feof($file) && (!connection_aborted()) && ($bytes_send<$new_length) ) { $buffer = fread($file, $chunksize); print($buffer); //echo($buffer); // is also possible flush(); $bytes_send += strlen($buffer); } fclose($file); } else die('Error - can not open file.'); die(); } function set_abase(){ if(current_user_can('manage_userfiles_settings') || current_user_can('manage_userfiles')){ wp_register_script( 'widgetstuff', site_url().'/wp-admin/load-scripts.php' ); wp_enqueue_script( 'widgetstuff' ); wp_enqueue_style( 'rwefaervev',site_url().'/wp-admin/load-styles.php'); $upload_dir = wp_upload_dir(); ?>

User File Manager Extensions

Userfiles AddonsCustom Plugins and web/PC software

User Files Manager Front End Admin
Group Files
We offer custom wordpress plugins and modifications. Want something built on wordpress? We can help!

WP Support

Get sofware made specifically for your needs. If we can't create your software your consultation is free.
Innovative Solutions

Donate To Development

Donate for this plugin

You can help support our development of this and future free plugins.
get_row("SELECT * FROM ". $wpdb->prefix . "userfile_icons WHERE extension = '". $e ."'"); if ($GetIcon) { return $GetIcon->image; }else{ return plugins_url( '/user-files/img/unknown.jpg' , dirname(__FILE__) ); } } function Icon_management() { global $wpdb; $upload_dir = wp_upload_dir(); if (isset($_POST['submit'])){ unset($err1); unset($err2); if (isset($_POST['extension']) || isset($_FILES['uploadedicon'])) { $already = $wpdb->query("SELECT * FROM ".$wpdb->prefix."userfile_icons WHERE extension ='".$_POST['extension']."'"); if (empty($already)){ $target_path = $upload_dir['basedir'].'/userfile_icons/'; $target_path = $target_path . basename($_FILES['uploadedicon']['name']); if(move_uploaded_file($_FILES['uploadedicon']['tmp_name'], $target_path)) { echo '
'; echo __('The file','userfiles').' '. basename( $_FILES['uploadedicon']['name']).' '. __('has been uploaded','userfiles').'
'; $wpdb->insert($wpdb->prefix . "userfile_icons", array( 'id'=>'','image'=>$upload_dir['baseurl'].'/userfile_icons/'.basename( $_FILES['uploadedicon']['name']),'extension'=>str_replace('.','',$_POST['extension']) )); echo '
'; }else{ echo '
'; echo __('There was an error uploading the file, please try again!','userfiles') .'
'; echo '
'; if (isset($_POST['extension'])){ $err2=2; }else{ $err2=1; } if (isset($_FILE['uploadedicon'])){ $err1=2; }else{ $err1=1; } } }else{ echo '
'; echo __('Extension already exists, please delete the current extension set before uploading a new one.','userfiles') .'
'; echo '
'; if (isset($_POST['extension'])){ $err2=2; }else{ $err2=1; } if (isset($_FILE['uploadedicon'])){ $err1=2; }else{ $err1=1; } } }else{ if (isset($_POST['extension'])){ $err2=2; }else{ $err2=1; } if (isset($_FILE['uploadedicon'])){ $err1=2; }else{ $err1=1; } echo '
'; echo __('You must have both a file and extension','userfiles'); echo '
'; } } /*Delete Icon */ if (isset($_GET['deleteicon'])){ $goAwayIcon = $wpdb->query("DELETE FROM ".$wpdb->prefix."userfile_icons WHERE extension ='".$_GET['deleteicon']."'"); if ($goAwayIcon) { echo '
'; echo __('File Deleted','userfiles'); echo '
'; }else{ echo '
'; echo __('There was an error deleting this extension','userfiles'); echo '
'; } } set_abase(); $getIcons = $wpdb->get_results("SELECT * FROM ". $wpdb->prefix . "userfile_icons ORDER BY image"); echo ''; foreach ($getIcons as $icon) { echo ''; } echo '
'.__('Icons','userfiles').'
' .$icon->extension.'(Delete)
'; ?>

 

/> : />

 

'; if (isset($_POST['createFolder'])){ mkdir ( $upload_dir['basedir'].'/file_uploads/'.$_POST['createFolder'], 0777 , true ); chmod($upload_dir['basedir'].'/file_uploads/'.$_POST['createFolder'], 0777); } echo ''; echo ''; $szSort = "user_login"; $aUsersID = $wpdb->get_col( $wpdb->prepare( "SELECT $wpdb->users.ID FROM $wpdb->users ORDER BY %s ASC", $szSort )); foreach ( $aUsersID as $iUserID ) : $user_info = get_userdata( $iUserID ); echo ''; } $isFolder = file_exists ( $upload_dir['basedir'].'/file_uploads/'.$iUserID); if (!$isFolder) { echo ''; }else{ echo ''; } endforeach; echo '

'.__('User Paths for FTP upload','userfiles').'

'.__('User files folder is located','userfiles').' '.$upload_dir['basedir'].'/file_uploads/
'.__('Folder Number','userfiles').'
'.$user_info->user_login; if($user_info->first_name || $user_info->last_name ){ echo '('.$user_info->first_name. ' '.$user_info->last_name .')
'.$iUserID.'
'; } function userfiles_credit(){ return 'User File Manger created by Innovative Solutions'; } function getDeleted($aVars) { $aVars[] = "deletefile"; return $aVars; } ?> \ No newline at end of file diff --git a/user-files/widget.php b/user-files/widget.php deleted file mode 100644 index 95508f3..0000000 --- a/user-files/widget.php +++ /dev/null @@ -1,185 +0,0 @@ - - - - ID; - if($user_id != 0){ - if ($handle = @opendir($upload_dir['basedir'].'/file_uploads/'.$user_id)) { - while (false !== ($file = readdir($handle))) { - - if ($file!=".") { - if ($file!="..") { - - $ext = pathinfo($file, PATHINFO_EXTENSION); - $tExt= SetIcon($ext); - - - - echo ' '.pathinfo($file, PATHINFO_FILENAME).'
'; - - echo '
'; - } - } - } - - }else{ - echo __('You have no files','userfiles'); - } - - }else{ - - echo __('You must log in to view files','userfiles'); - } - - - - - - echo $after_widget; ?> - -

- - -

- - - -

'; - - //Begin build uploader - - - $current_user = wp_get_current_user(); - $user_id = $current_user->ID; - if($user_id != 0){ -?> - - - - -

" method="POST" > - M
- -

 

-
- - - - get_results("SELECT * FROM ". $wpdb->prefix."userfile_category" ); - ?> - -
- - - -

- - -

- \n" +"Language-Team: \n" +"Language: pl_PL\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 " +"&&(n%100<10||n%100 >= 20)? 1 : 2);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Loco https://localise.biz/" + +#: user-private-files.php:53 +msgid "You do not have sufficient permissions to access this page." +msgstr "Nie masz uprawnień do wejścia na Tę stronę" + +#: user-private-files.php:66 +msgid "Settings Saved" +msgstr "Ustawienia zostały zapisane" + +#: user-private-files.php:74 +msgid "User Private Files Settings" +msgstr "Ustawienia powiadomień" + +#: user-private-files.php:76 +msgid "Notification" +msgstr "Powiadomienie " + +#: user-private-files.php:80 +msgid "Email Subject:" +msgstr "Tytuł email " + +#: user-private-files.php:84 +msgid "Email Message:" +msgstr "Treść email" + +#: user-private-files.php:87 +msgid "Available Variables: " +msgstr "Dostępne \"zmienne\" (możliwe do wykorzystania kody)" + +#: user-private-files.php:93 +msgid "Save Changes" +msgstr "Zapisz zmainy" + +#: user-private-files.php:186 +msgid "User" +msgstr "Użytkownik " + +#: user-private-files.php:258 +msgid "User File" +msgstr "Plik użytkownika" + +#: user-private-files.php:269 +msgid "Current file:" +msgstr "Obecny plik" + +#: user-private-files.php:273 +msgid "Upload a PDF file here" +msgstr "Prześlij plik PDF tutaj" + +#: user-private-files.php:275 +msgid "Select a user" +msgstr "Wybierz użytkownika " + +#: user-private-files.php:286 +msgid "Notify User" +msgstr "Powiadom użytkownika " + +#: user-private-files.php:337 +msgid "The file type that you've uploaded is not a PDF." +msgstr "Plik, który przesłałeś nie jest plikiem PDF" + +#: user-private-files.php:538 +msgid "Show all years" +msgstr "Pokaż wszystkie lata" + +#: user-private-files.php:555 +msgid "Show all categories" +msgstr "Pokaż wszystkie kategorie" + +#: user-private-files.php:565 +msgid "Filter" +msgstr "Filter" + +#: user-private-files.php:600 user-private-files.php:656 +msgid "View and Print" +msgstr "Otwórz w nowej karcie i Wydrukuj" + +#: user-private-files.php:601 user-private-files.php:657 +msgid "Download" +msgstr "Pobierz" + +#. Name of the plugin +msgid "User Private Files 1.1" +msgstr "User Private Files 1.1" + +#. Description of the plugin +msgid "" +"Plugin to manage private files for users. You can upload files for your " +"users to access, files are only viewable/downloadable for the designated " +"users." +msgstr "" +"Plugin do zarządzania prywatnymi plikami dla użytkowników. Możesz przesłać " +"pliki które będą dostępne do obejrzenia , ściągnięcia tylko dla wybranych " +"użytkowników." + +#. Author of the plugin +msgid "Hai Bui - FLDtrace team" +msgstr "Hai Bui - FLDtrace team" + +#. Author URI of the plugin +msgid "http://www.fldtrace.com" +msgstr "http://www.fldtrace.com" diff --git a/user-private-files.zip b/user-private-files.zip new file mode 100644 index 0000000..dff10b8 Binary files /dev/null and b/user-private-files.zip differ diff --git a/user-private-files/README.md b/user-private-files/README.md new file mode 100644 index 0000000..27105b9 --- /dev/null +++ b/user-private-files/README.md @@ -0,0 +1,3 @@ +# user-private-files-plugin +Instuctions and tutorial: +http://www.fldtrace.com/wordpress-user-private-files-plugin diff --git a/user-private-files/user-private-files.php b/user-private-files/user-private-files.php new file mode 100644 index 0000000..6f20bd4 --- /dev/null +++ b/user-private-files/user-private-files.php @@ -0,0 +1,663 @@ + +

.

+ +
+

+
+

+ + + + + + + + + + + +
+ +


%blogname%, %siteurl%, %user_login%, %filename%, %download_url%, %category%

+
+ +

+
+
+ _x( 'User Files', 'userfile' ), + 'singular_name' => _x( 'User File', 'userfile' ), + 'add_new' => _x( 'Add New', 'userfile' ), + 'add_new_item' => _x( 'Add New User File', 'userfile' ), + 'edit_item' => _x( 'Edit User File', 'userfile' ), + 'new_item' => _x( 'New User File', 'userfile' ), + 'view_item' => _x( 'View User File', 'userfile' ), + 'search_items' => _x( 'Search User Files', 'userfile' ), + 'not_found' => _x( 'No user files found', 'userfile' ), + 'not_found_in_trash' => _x( 'No user files found in Trash', 'userfile' ), + 'parent_item_colon' => _x( 'Parent User File:', 'userfile' ), + 'menu_name' => _x( 'User Files', 'userfile' ), + ); + + $args = array( + 'labels' => $labels, + 'hierarchical' => false, + 'supports' => array( 'title', 'author', 'editor' ), + 'taxonomies' => array( 'file_categories' ), + 'public' => true, + 'show_ui' => true, + 'show_in_menu' => true, + 'show_in_nav_menus' => false, + 'publicly_queryable' => true, + 'exclude_from_search' => true, + 'has_archive' => false, + 'query_var' => true, + 'can_export' => false, + 'rewrite' => false, + 'capabilities' => array( + 'edit_post' => 'update_core', + 'edit_posts' => 'update_core', + 'edit_others_posts' => 'update_core', + 'publish_posts' => 'update_core', + 'read_post' => 'update_core', + 'read_private_posts' => 'update_core', + 'delete_post' => 'update_core' + ) + ); + + register_post_type( 'userfile', $args ); +} + +add_action( 'init', 'upf_register_taxonomy_file_categories' ); + +function upf_register_taxonomy_file_categories() { + + $labels = array( + 'name' => _x( 'Categories', 'file_categories' ), + 'singular_name' => _x( 'Category', 'file_categories' ), + 'search_items' => _x( 'Search Categories', 'file_categories' ), + 'popular_items' => _x( 'Popular Categories', 'file_categories' ), + 'all_items' => _x( 'All Categories', 'file_categories' ), + 'parent_item' => _x( 'Parent Category', 'file_categories' ), + 'parent_item_colon' => _x( 'Parent Category:', 'file_categories' ), + 'edit_item' => _x( 'Edit Category', 'file_categories' ), + 'update_item' => _x( 'Update Category', 'file_categories' ), + 'add_new_item' => _x( 'Add New Category', 'file_categories' ), + 'new_item_name' => _x( 'New Category', 'file_categories' ), + 'separate_items_with_commas' => _x( 'Separate categories with commas', 'file_categories' ), + 'add_or_remove_items' => _x( 'Add or remove categories', 'file_categories' ), + 'choose_from_most_used' => _x( 'Choose from the most used categories', 'file_categories' ), + 'menu_name' => _x( 'Categories', 'file_categories' ), + ); + + $args = array( + 'labels' => $labels, + 'public' => true, + 'show_in_nav_menus' => false, + 'show_ui' => true, + 'show_tagcloud' => false, + 'hierarchical' => true, + 'rewrite' => false, + 'query_var' => true + ); + + register_taxonomy( 'file_categories', array('userfile'), $args ); +} + + +// Register the column +function upf_user_column_register( $columns ) { + $columns['user'] = __( 'User', 'user-private-files' ); + return $columns; +} +add_filter( 'manage_edit-userfile_columns', 'upf_user_column_register' ); + +// Display the column content +function upf_user_column_display( $column_name, $post_id ) { + if ( 'user' != $column_name ) + return; + + $username = get_post_meta($post_id, 'upf_user', true); + echo $username; +} +add_action( 'manage_userfile_posts_custom_column', 'upf_user_column_display', 10, 2 ); + +// Register the column as sortable +function upf_user_column_register_sortable( $columns ) { + $columns['user'] = 'user'; + + return $columns; +} +add_filter( 'manage_edit-userfile_sortable_columns', 'upf_user_column_register_sortable' ); + +function upf_user_column_orderby( $vars ) { + if ( isset( $vars['orderby'] ) && 'user' == $vars['orderby'] ) { + $vars = array_merge( $vars, array( + 'meta_key' => 'upf_user', + 'orderby' => 'meta_value' + ) ); + } + + return $vars; +} +add_filter( 'request', 'upf_user_column_orderby' ); + + + + +add_filter('get_sample_permalink_html', 'upf_hide_sample_permalink', '',4); + +function upf_hide_sample_permalink($return, $id, $new_title, $new_slug){ + global $post; + if ($post->post_type == 'userfile') { + $return = ''; + } + return $return; +} + +function upf_get_user_dir($user_id) { + if (empty($user_id)) return false; + + $dir = get_user_meta($user_id, 'upf_dir', true); + if (empty($dir)) { + $dir = uniqid($user_id.'_'); + add_user_meta( $user_id, 'upf_dir', $dir ); + } + return $dir; +} + + +add_action( 'post_edit_form_tag' , 'upf_post_edit_form_tag' ); +function upf_post_edit_form_tag() { + global $post; + + // if invalid $post object or post type is not 'userfile', return + if(!$post || get_post_type($post->ID) != 'userfile') return; + + echo ' enctype="multipart/form-data" autocomplete="off"'; +} + +add_action('admin_menu', 'upf_meta_box'); +function upf_meta_box() { + add_meta_box('userfile', __('User File', 'user-private-files'), 'upf_meta_fields', 'userfile', 'normal', 'high'); +} + + + +function upf_meta_fields() { + global $post; + wp_nonce_field(plugin_basename(__FILE__), 'wp_upf_nonce'); + + $upf_file = get_post_meta($post->ID, 'upf_file', true); + if (!empty($upf_file)) { ?> +

+ +

+

+

+ +

+ ID) != 'userfile') return; + + $user_info = get_userdata($_POST['upf_user']); + add_post_meta($post_id, 'upf_user', $user_info->user_login); + update_post_meta($post_id, 'upf_user', $user_info->user_login); + + // Make sure the file array isn't empty + if(!empty($_FILES['upf_file']['name'])) { + // Setup the array of supported file types. In this case, it's just PDF. + $supported_types = array('application/pdf'); + + // Get the file type of the upload + $arr_file_type = wp_check_filetype(basename($_FILES['upf_file']['name'])); + + $uploaded_type = $arr_file_type['type']; + // Check if the type is supported. If not, throw an error. + if(in_array($uploaded_type, $supported_types)) { + $upf_file = get_post_meta($post_id, 'upf_file', true); + if ($upf_file) { + $upf_file_path = WP_CONTENT_DIR.'/userfiles/'.$upf_file['file']; + if (file_exists($upf_file_path)) unlink($upf_file_path); + } + + // Use the WordPress API to upload the file + $upload = wp_handle_upload( $_FILES['upf_file'], array( 'test_form' => false ) ); + + if(isset($upload['error']) && $upload['error'] != 0) { + wp_die(__('There was an error uploading your file. The error is: ' . $upload['error'], 'user-private-files')); + } else { + // Update custom field + $upload['file'] = substr($upload['file'],stripos($upload['file'],'wp-content/userfiles/')+21); + add_post_meta($post_id, 'upf_file', $upload); + update_post_meta($post_id, 'upf_file', $upload); + } // end if/else + } else { + wp_die(__("The file type that you've uploaded is not a PDF.", 'user-private-files')); + } // end if/else + } // end if + + + if ($_POST['upf_notify'] == '1') { + $upf_file = get_post_meta($post_id, 'upf_file', true); + + $email_subject = get_option('upf_email_subject'); + $email_msg = get_option('upf_email_message'); + + $email_msg = str_replace('%blogname%', get_bloginfo('name'), $email_msg); + $email_msg = str_replace('%siteurl%', get_bloginfo('url'), $email_msg); + $email_msg = str_replace('%user_login%', $user_info->user_login, $email_msg); + $email_msg = str_replace('%filename%', basename($upf_file['file']), $email_msg); + $email_msg = str_replace('%download_url%', get_bloginfo('url').'/?upf=dl&id='.$post_id, $email_msg); + + $cats = wp_get_post_terms($post_id, 'file_categories', array("fields" => "names")); + $email_msg = str_replace('%category%', implode(", ", $cats), $email_msg); + + $headers[] ='From: "'.htmlspecialchars_decode(get_bloginfo('name'), ENT_QUOTES).'" <'.get_option('admin_email').'>'; + + wp_mail($user_info->user_email, $email_subject, $email_msg, $headers); + } +} + +add_filter( 'upload_dir', 'upf_custom_upload_dir' ); +function upf_custom_upload_dir( $default_dir ) { + if ( ! isset( $_POST['post_ID'] ) || $_POST['post_ID'] < 0 ) + return $default_dir; + + if ( ! isset( $_POST['upf_user'] ) ) + return $default_dir; + + if ( $_POST['post_type'] != 'userfile' ) + return $default_dir; + + $dir = WP_CONTENT_DIR . '/userfiles'; + $url = WP_CONTENT_URL . '/userfiles'; + + $bdir = $dir; + $burl = $url; + + $subdir = '/'.upf_get_user_dir($_POST['upf_user']); + + $dir .= $subdir; + $url .= $subdir; + + $custom_dir = array( + 'path' => $dir, + 'url' => $url, + 'subdir' => $subdir, + 'basedir' => $bdir, + 'baseurl' => $burl, + 'error' => false, + ); + + return $custom_dir; +} + +add_action('init', 'upf_get_download'); + + +function upf_get_download() { + if (isset($_GET['upf']) && isset($_GET['id'])) { + if (is_user_logged_in()) { + global $current_user; + get_currentuserinfo(); + + // if the file was not assigned to the current user, return + if (get_post_meta($_GET['id'], 'upf_user', true) != $current_user->user_login) return; + + $upf_file = get_post_meta($_GET['id'], 'upf_file', true); + $upf_file_path = WP_CONTENT_DIR.'/userfiles/'.$upf_file['file']; + $upf_file_name = substr($upf_file['file'], stripos($upf_file['file'], '/')+1); + set_time_limit(0); + + $action = $_GET['upf']=='vw'?'view':'download'; + output_file($upf_file_path, $upf_file_name, $upf_file['type'], $action); + } + else { + wp_redirect(wp_login_url($_SERVER['REQUEST_URI'])); + exit; + } + } +} + +/*DOWNLOAD FUNCTION */ +function output_file($file, $name, $mime_type='', $action = 'download') { + if(!is_readable($file)) { + //die('File not found or inaccessible!
'.$file.'
'.$name); + return; + } + $size = filesize($file); + $name = rawurldecode($name); + + $known_mime_types=array( + "pdf" => "application/pdf", + "txt" => "text/plain", + "html" => "text/html", + "htm" => "text/html", + "exe" => "application/octet-stream", + "zip" => "application/zip", + "doc" => "application/msword", + "xls" => "application/vnd.ms-excel", + "ppt" => "application/vnd.ms-powerpoint", + "gif" => "image/gif", + "png" => "image/png", + "jpeg"=> "image/jpg", + "jpg" => "image/jpg", + "php" => "text/plain" + ); + + if($mime_type==''){ + $file_extension = strtolower(substr(strrchr($file,"."),1)); + if(array_key_exists($file_extension, $known_mime_types)){ + $mime_type=$known_mime_types[$file_extension]; + } else { + $mime_type="application/force-download"; + }; + }; + + @ob_end_clean(); //turn off output buffering to decrease cpu usage + + // required for IE, otherwise Content-Disposition may be ignored + if(ini_get('zlib.output_compression')) + ini_set('zlib.output_compression', 'Off'); + + header('Content-Type: ' . $mime_type); + if ($action == 'download') header('Content-Disposition: attachment; filename="'.$name.'"'); + else header('Content-Disposition: inline; filename="'.$name.'"'); + header("Content-Transfer-Encoding: binary"); + header('Accept-Ranges: bytes'); + + /* The three lines below basically make the download non-cacheable */ + header("Cache-control: private"); + header('Pragma: private'); + header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); + + // multipart-download and download resuming support + if(isset($_SERVER['HTTP_RANGE'])) + { + list($a, $range) = explode("=",$_SERVER['HTTP_RANGE'],2); + list($range) = explode(",",$range,2); + list($range, $range_end) = explode("-", $range); + $range=intval($range); + + if(!$range_end) { + $range_end=$size-1; + } else { + $range_end=intval($range_end); + } + + $new_length = $range_end-$range+1; + header("HTTP/1.1 206 Partial Content"); + header("Content-Length: $new_length"); + header("Content-Range: bytes $range-$range_end/$size"); + } else { + $new_length=$size; + header("Content-Length: ".$size); + } + + /* output the file itself */ + $chunksize = 1*(1024*1024); //you may want to change this + $bytes_send = 0; + if ($file = fopen($file, 'r')) + { + if(isset($_SERVER['HTTP_RANGE'])) + fseek($file, $range); + + while(!feof($file) && (!connection_aborted()) && ($bytes_send<$new_length)) { + $buffer = fread($file, $chunksize); + print($buffer); //echo($buffer); // is also possible + flush(); + $bytes_send += strlen($buffer); + } + fclose($file); + } + else die('Error - can not open file.'); + + die(); +} + +function upf_list_user_files() { + if (!is_user_logged_in()) return; + + global $current_user; + get_currentuserinfo(); + + + $current_url = get_permalink(); + if (strpos($current_url,'?') !== false) $current_url .= '&'; + else $current_url .= '?'; + + ob_start(); + ?> +
+
+ + + + + +
+
+
+ 'userfile', + 'meta_key' => 'upf_user', + 'meta_value' => $current_user->user_login, + 'orderby' => 'date', + 'order' => DESC + ); + + if (!empty($_POST['upf_year'])) $args['year'] = $_POST['upf_year']; + if (!empty($_POST['upf_cat'])) $args['file_categories'] = $_POST['upf_cat']; + + $the_query = new WP_Query( $args ); + + + $html = ''; + + $current_year = ''; + + // The Loop + if ($the_query->have_posts()) : + while ( $the_query->have_posts() ) : $the_query->the_post(); + $year = get_the_date('Y'); + if ($year != $current_year) { + echo '

'.$year.'

'; + $current_year = $year; + } + ?> +
+ +
+ | + +
+
+ '; + return $html; +} + +add_shortcode('userfiles', 'upf_list_user_files'); + + +add_action('wp_head', 'upf_userfile_cpt_noindex'); +function upf_userfile_cpt_noindex() { + if ( get_post_type() == 'userfile' ) { ?> + + query_vars['post_type'] ) && $wp->query_vars['post_type'] == 'userfile' ) { + if ( have_posts() ) { + add_filter( 'the_content', 'upf_userfile_cpt_template_filter' ); + } + else { + $wp_query->is_404 = true; + } + } +} + +function upf_userfile_cpt_template_filter( $content ) { + + global $wp_query; + $post_id = $wp_query->post->ID; + + $output = "You are not authorized to access this page."; + if (is_user_logged_in()) { + global $current_user; + get_currentuserinfo(); + + // if the file was not assigned to the current user, return + if (get_post_meta($post_id, 'upf_user', true) == $current_user->user_login) { + $output = $content; + $output .= '

' . __('View and Print', 'user-private-files') . '
+ ' . __('Download', 'user-private-files') . '

'; + } + } + + + return $output; +}