Merge pull request #1 from prasathmani/master

Sync
This commit is contained in:
tnnd 2021-06-10 08:31:55 +08:00 committed by GitHub
commit f3f20f5f6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 545 additions and 308 deletions

View file

@ -1,22 +1,22 @@
# Tiny File Manager
[![Live demo](https://img.shields.io/badge/Live-Demo-brightgreen.svg?style=flat-square)](https://tinyfilemanager.github.io/demo/)
[![Live demo](https://img.shields.io/badge/Help-Docs-lightgrey.svg?style=flat-square)](https://github.com/prasathmani/tinyfilemanager/wiki)
[![GitHub Release](https://img.shields.io/github/release/qubyte/rubidium.svg?style=flat-square)](https://github.com/prasathmani/tinyfilemanager/releases)
[![GitHub License](https://img.shields.io/github/license/prasathmani/tinyfilemanager.svg?style=flat-square)](https://github.com/prasathmani/tinyfilemanager/blob/master/LICENSE)
[![GitHub License](https://img.shields.io/github/license/prasathmani/tinyfilemanager.svg?style=flat-square)](https://github.com/prasathmani/tinyfilemanager/blob/master/LICENSE)
[![Paypal](https://img.shields.io/badge/Donate-Paypal-lightgrey.svg?style=flat-square)](https://www.paypal.me/prasathmani)
> TinyFileManager is web based file manager and it is a simple, fast and small file manager with a single file, multi-language ready web application for storing, uploading, editing and managing files and folders online via web browser. The Application runs on PHP 5.5+, It allows the creation of multiple users and each user can have its own directory and a build-in support for managing text files with cloud9 IDE and it supports syntax highlighting for over 150+ languages and over 35+ themes.
## Demo
[Demo](https://tinyfilemanager.github.io/demo/)
Login Details : admin/admin@123 | user/12345
Login Details : admin/admin@123 | user/12345
## Documentation
Tinyfilemanager is highly documented on the [wiki pages](https://github.com/prasathmani/tinyfilemanager/wiki).
Tinyfilemanager is highly documented on the [wiki pages](https://github.com/prasathmani/tinyfilemanager/wiki).
[![Tiny File Manager](screenshot.gif)](screenshot.gif)
@ -38,13 +38,14 @@ Default username/password: **admin/admin@123** and **user/12345**.
To enable/disable authentication set `$use_auth` to true or false.
:information_source: Rename the `config-sample.php` file into `config.php` to use configuration, it is an additional configuration file, Feel free to remove completely this file and configure "tinyfilemanager.php" as a single file application.
### :loudspeaker: Features
### :loudspeaker: Features
- :cd: Open Source, light and extremely simple
- :iphone: Mobile friendly view for touch devices
- :information_source: Basic features likes Create, Delete, Modify, View, Quick Preview, Download, Copy and Move files
- :arrow_double_up: Ajax Upload, Ability to drag & drop, upload from URL, multiple files upload with file extensions filter
- :information_source: Basic features likes Create, Delete, Modify, View, Quick Preview, Download, Copy and Move files
- :arrow_double_up: Ajax Upload, Ability to drag & drop, upload from URL, multiple files upload with file extensions filter
- :file_folder: Ability to create folders and files
- :gift: Ability to compress, extract files (`zip`, `tar`)
- :sunglasses: Support user permissions - based on session and each user root folder mapping
@ -52,13 +53,12 @@ To enable/disable authentication set `$use_auth` to true or false.
- :pencil2: Cloud9 IDE - Syntax highlighting for over `150+` languages, Over `35+` themes with your favorite programming style
- :page_facing_up: Google/Microsoft doc viewer helps you preview `PDF/DOC/XLS/PPT/etc`. 25 MB can be previewed with the Google Drive viewer
- :zap: Backup files and IP blacklist and whitelist
- :mag_right: Search - Search and filter files using `datatable js`
- :mag_right: Search - Search and filter files using `datatable js`
- :file_folder: Exclude folders and files from listing
- :globe_with_meridians: Multi-language(20+) support and for translations `translation.json` is file required
- :bangbang: lots more...
### <a name=license></a>License, Credit
### <a name=license></a>License, Credit
- Available under the [GNU license](https://github.com/prasathmani/tinyfilemanager/blob/master/LICENSE)
- Original concept and development by github.com/alexantr/filemanager

View file

@ -2,7 +2,7 @@
/*
#################################################################################################################
This is an OPTIONAL configuration file.
This is an OPTIONAL configuration file. rename this file into config.php to use this configuration
The role of this file is to make updating of "tinyfilemanager.php" easier.
So you can:
-Feel free to remove completely this file and configure "tinyfilemanager.php" as a single file application.
@ -24,10 +24,6 @@ $auth_users = array(
'user' => '$2y$10$Fg6Dz8oH9fPoZ2jJan5tZuv6Z4Kp7avtQ9bDfrdRntXtPeiMAZyGO' //12345
);
//set application theme
//options - 'light' and 'dark'
$theme = 'light';
// Readonly users
// e.g. array('users', 'guest', ...)
$readonly_users = array(
@ -67,8 +63,8 @@ $directories_users = array();
$iconv_input_encoding = 'UTF-8';
// date() format for file modification date
// Doc - https://www.php.net/manual/en/function.date.php
$datetime_format = 'd.m.y H:i';
// Doc - https://www.php.net/manual/en/datetime.format.php
$datetime_format = 'd.m.y H:i:s';
// Allowed file extensions for create and rename files
// e.g. 'txt,html,css,js'
@ -81,11 +77,11 @@ $allowed_upload_extensions = '';
// Favicon path. This can be either a full url to an .PNG image, or a path based on the document root.
// full path, e.g http://example.com/favicon.png
// local path, e.g images/icons/favicon.png
$favicon_path = '?img=favicon';
$favicon_path = '';
// Files and folders to excluded from listing
// e.g. array('myfile.html', 'personal-folder', '*.php', ...)
$exclude_items = array();
$exclude_items = array('');
// Online office Docs Viewer
// Availabe rules are 'google', 'microsoft' or false
@ -101,7 +97,7 @@ $sticky_navbar = true;
// max upload file size
$max_upload_size_bytes = 2048;
$max_upload_size_bytes = 5000;
// Possible rules are 'OFF', 'AND' or 'OR'
// OFF => Don't check connection IP, defaults to OFF

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,87 @@
{
"appName": "Tiny File Manager",
"version": "2.4.3",
"version": "2.4.6",
"language": [
{
"name": "Hungarian",
"code": "hu",
"translation": {
"AppName": "Tiny File Manager",
"AppTitle": "Fájl kezelő",
"Login": "Bejelentkezés",
"Username": "Felhasználói név",
"Password": "Jelszó",
"Logout": "Kijelentkezés",
"Move": "Mozgatás",
"Copy": "Másolás",
"Save": "Mentés",
"SelectAll": "Mindet kijelöl",
"UnSelectAll": "Kijelölést megszüntet",
"File": "Fájl",
"Back": "Vissza",
"Size": "Méret",
"Perms": "Jogok",
"Modified": "Módosítás",
"Owner": "Tulajdonos",
"Search": "Keresés",
"NewItem": "Új",
"Folder": "Könyvtár",
"Delete": "Törlés",
"Rename": "Átnevezés",
"CopyTo": "Másolás ide",
"DirectLink": "Közvetlen link",
"UploadingFiles": "Fájlok feltöltése",
"ChangePermissions": "Jogosultságok módosítása",
"Copying": "Másolás",
"CreateNewItem": "Új létrehozása",
"Name": "Név",
"AdvancedEditor": "Haladó szerkesztő",
"RememberMe": "Emlékezzen rám",
"Actions": "Műveletek",
"Upload": "Feltöltés",
"Cancel": "Mégsem",
"InvertSelection": "Kijelöltés megfordítása",
"DestinationFolder": "Célmappa",
"ItemType": "Elem típus",
"ItemName": "Elem név",
"CreateNow": "Elkészít",
"Download": "Letöltés",
"Open": "Megnyitás",
"UnZip": "Kitömörítés",
"UnZipToFolder": "Kitömörítás adott mappába",
"Edit": "Szerkesztés",
"NormalEditor": "Alap szerkesztő",
"BackUp": "Biztonsági mentés",
"SourceFolder": "Forrás könyvtár",
"Files": "Szűrő",
"Change": "Módosítás",
"Settings": "Beállítások",
"Language": "Nyelv",
"MemoryUsed": "Használt memória",
"PartitionSize": "Partició mérete",
"ErrorReporting": "Hibabejelntés",
"ShowHiddenFiles": "Rejtett fájlok megjelenítése",
"Full size": "Teljes méret",
"Help": "Segítség",
"Free of": "ebből szabaf",
"Preview": "Előnézet",
"Help Documents": "Súgó dokumentum",
"Report Issue": "Probléma jelentése",
"Generate": "Generálás",
"FullSize": "Teljes méret",
"FreeOf": "ebből szabad",
"CalculateFolderSize": "Becsült mappa méret",
"ProcessID": "Folyamat azonosító",
"Created": "Készítés",
"HideColumns": "Oszlopok elrejtése",
"Folder is empty": "A mappa üres",
"Check Latest Version": "Új verzió ellenőrzése",
"Generate new password hash": "Új jelszó hash létrehozása",
"You are logged in": "Ön sikeresen bejelentkezett",
"Login failed. Invalid username or password": "Sikertelen bejelentkezés. Hibás felhasználói név vagy jelszó.",
"password_hash not supported, Upgrade PHP version": "password_hash ebben a PHP verzióban nem támogatott"
}
},
{
"name": "Norsk",
"code": "no",
@ -80,9 +160,9 @@
"You are logged in": "Du er innlogget",
"Login failed. Invalid username or password": "Innlogging feilet. Feil brukernavn eller passord",
"password_hash not supported, Upgrade PHP version": "password_hash er ikke støttet, venligst oppdater PHP versjonen"
}
}, {
},
{
"name": "فارسی",
"code": "Fa",
"translation": {
@ -301,61 +381,73 @@
"name": "Français",
"code": "fr",
"translation": {
"Actions": "Actions",
"AdvancedEditor": "Editeur avancé",
"AppName": "Tiny File Manager",
"AppTitle": "Gestionnaire de fichiers",
"Login": "Connexion",
"Username": "Utilisateur",
"Password": "Mot de passe",
"Logout": "Déconnexion",
"Move": "Déplacer",
"Copy": "Copier",
"Save": "Sauvegarder",
"SelectAll": "Tout sélectionner",
"UnSelectAll": "Tout déselectionner",
"File": "Fichier",
"Back": "Retour",
"Size": "Taille",
"Perms": "Permissions",
"Modified": "Modifié le",
"Owner": "Propriétaire",
"Search": "Recherche",
"NewItem": "Nouvel Élément",
"Folder": "Dossier",
"Delete": "Supprimer",
"Rename": "Renommer",
"CopyTo": "Copier vers",
"DirectLink": "Lien direct",
"UploadingFiles": "Envoyer des fichiers",
"ChangePermissions": "Modifier les permissions",
"Copying": "Copier",
"CreateNewItem": "Créer un nouvel élément",
"Name": "Nom",
"AdvancedEditor": "Editeur avancé",
"RememberMe": "Se souvenir de moi",
"Actions": "Actions",
"Upload": "Envoyer",
"BackUp": "Sauvegarder",
"CalculateFolderSize": "Calculer la taille des dossiers",
"Cancel": "Annuler",
"InvertSelection": "Inverser la sélection",
"DestinationFolder": "Dossier destination",
"ItemType": "Type d'élement",
"ItemName": "Nom de l'élément",
"Change": "Modifier",
"ChangePermissions": "Modifier les permissions",
"Check Latest Version": "Vérifier si une nouvelle version existe",
"Copy": "Copier",
"Copying": "Copier",
"CopyTo": "Copier vers",
"CreateNewItem": "Créer un nouvel élément",
"CreateNow": "Créer",
"Delete": "Supprimer",
"DestinationFolder": "Dossier destination",
"DirectLink": "Lien direct",
"Download": "Télécharger",
"Edit": "Editeur",
"ErrorReporting": "Rapport d'erreurs",
"File": "Fichier",
"Files": "Fichiers",
"Folder": "Dossier",
"Free of": "libres sur",
"FreeOf": "Espace libre : ",
"Full size": "Taille totale",
"Generate": "Générer",
"Generate new password hash": "Générer de nouveaux mots de passe 'hashés'",
"Help": "Aide",
"Help Documents": "Documentation",
"HideColumns": "Masquer les colonnes des droits",
"InvertSelection": "Inverser la sélection",
"ItemName": "Nom de l'élément",
"ItemType": "Type d'élement",
"Language": "Langue",
"Login": "Connexion",
"Logout": "Déconnexion",
"MemoryUsed": "Mémoire utilisée",
"Modified": "Modifié le",
"Move": "Déplacer",
"Name": "Nom",
"NewItem": "Nouvel élément",
"NormalEditor": "Éditeur normal",
"Open": "Ouvrir",
"Owner": "Propriétaire",
"PartitionSize": "Taille de la partition",
"Password": "Mot de passe",
"Perms": "Permissions",
"ProcessID": "Identifiant processus",
"RememberMe": "Se souvenir de moi",
"Rename": "Renommer",
"Save": "Sauvegarder",
"Search": "Recherche",
"SelectAll": "Tout sélectionner",
"Settings": "Réglages",
"ShowHiddenFiles": "Afficher les fichiers masqués",
"Size": "Taille",
"SourceFolder": "Dossier Source",
"UnSelectAll": "Tout déselectionner",
"Upload": "Envoyer",
"UploadingFiles": "Envoyer des fichiers",
"Username": "Utilisateur",
"UnZip": "Décompresser",
"UnZipToFolder": "Décompresser dans un dossier",
"Edit": "Editeur",
"NormalEditor": "Éditeur Normal",
"BackUp": "Sauvegarder",
"SourceFolder": "Dossier Source",
"Files": "Fichiers",
"Change": "Modifier",
"Settings": "Réglages",
"Language": "Langue",
"MemoryUsed": "Mémoire utilisée",
"PartitionSize": "Taille de la partition",
"Free of": "libres sur",
"FreeOf": "libres sur"
"You are logged in": "Vous êtes authentifié(e)"
}
},
{
@ -550,7 +642,7 @@
"Change": "Ändern",
"Settings": "Einstellungen",
"Language": "Sprache",
"You are logged in": "Du bist eingeloggt.",
"You are logged in": "Du bist eingeloggt.",
"Login failed. Invalid username or password": "Login fehlgeschlagen. Falscher Benutzername oder Passwort.",
"password_hash not supported, Upgrade PHP version": "password_hash wird nicht unterstützt, aktualisiere die PHP-Version"
}
@ -754,19 +846,19 @@
"enable": "開啟",
"disable": "關閉",
"ErrorReporting": "錯誤報告",
"Help": "幫助",
"ShowHiddenFiles": "顯示隱藏的檔案",
"HideColumns": "不顯示權限以及擁有者",
"CalculateFolderSize": "顯示資料夾大小",
"Help Documents": "幫助文件",
"Report Issue": "回報問題",
"Check Latest Version": "檢查最新版本",
"Generate new password hash": "建立新的密碼 Hash 函數",
"Generate": "建立",
"FullSize": "所有檔案容量",
"MemoryUsed": "使用的記憶體大小",
"PartitionSize" : "剩餘可用空間",
"FreeOf": "硬碟容量:"
"Help": "幫助",
"ShowHiddenFiles": "顯示隱藏的檔案",
"HideColumns": "不顯示權限以及擁有者",
"CalculateFolderSize": "顯示資料夾大小",
"Help Documents": "幫助文件",
"Report Issue": "回報問題",
"Check Latest Version": "檢查最新版本",
"Generate new password hash": "建立新的密碼 Hash 函數",
"Generate": "建立",
"FullSize": "所有檔案容量",
"MemoryUsed": "使用的記憶體大小",
"PartitionSize": "剩餘可用空間",
"FreeOf": "硬碟容量:"
}
},
{
@ -985,7 +1077,52 @@
"Help Documents": "Documentos de Ajuda",
"Check Latest Version": "Verifique a última versão",
"HideColumns": "Ocultar colunas Perms / Owner",
"CalculateFolderSize": "Calcular o tamanho da pasta"
"CalculateFolderSize": "Calcular o tamanho da pasta",
"Advanced Search": "Busca Avançada",
"Nothing selected": "Nada selecionado",
"Renamed from": "Renomeado de",
"Deleted": "Excluído",
"Copied from": "Copiado de",
"to": "Para",
"Not found": "Não encontrado",
"Archive": "Arquivo",
"Select folder": "Selecione uma pasta",
"already exists": "já existe",
"Create archive?": "Criar arquivo?",
"Archive unpacked": "Arquivo descompactado",
"Root path": "Caminho raiz",
"File not found": "Arquivo não encontrado",
"Error while copying fro": "Erro ao copiar para lá",
"Paths must be not equal": "Os caminhos não devem ser iguais",
"Archive not unpacked": "Arquivo não descompactado",
"Archive not created": "Arquivo não criado",
"Permissions changed": "Permissões alteradas",
"Saved Successfully": "Salvo com sucesso ",
"File Saved Successfully": "Arquivo salvo com sucesso ",
"Permissions not changed": "Permissões não alteradas",
"Source path not defined": "Caminho de origem não definido",
"Error while moving from": "Erro ao mudar de",
"Invalid file or folder name": "Nome de arquivo ou pasta inválido",
"File extension is not allowed": "A extensão do arquivo não é permitida",
"Error while renaming from": "Erro ao renomear de",
"Error while deleting items": "Erro ao excluir itens",
"Invalid characters in file name": "Caracteres inválidos no nome do arquivo",
"FILE EXTENSION HAS NOT SUPPORTED": "A EXTENSÃO DE ARQUIVO NÃO É SUPORTADA",
"Selected files and folder deleted": "Arquivos e pastas selecionados excluídos",
"Error while fetching archive info": "Erro ao obter informações do arquivo",
"Delete selected files and folders?": "Excluir arquivos e pastas selecionados?",
"Search file in folder and subfolders...": "Pesquisar arquivo na pasta e nas subpastas ...",
"Access denied. IP restriction applicable": "Acesso negado. Restrição de IP aplicável",
"Invalid characters in file or folder name": "Caracteres inválidos no nome do arquivo ou pasta",
"Operations with archives are not available": "Operações com arquivos não estão disponíveis",
"File or folder with this path already exists": "O arquivo ou pasta com este caminho já existe",
"Folder is empty": "A pasta está vazia",
"Moved from": "Movido de",
"Created": "Criado",
"You are logged in": "Você está logado",
"Login failed. Invalid username or password": "Falha na autenticação. nome de usuário ou senha inválidos"
}
},
{
@ -1449,61 +1586,147 @@
"FreeOf": "voľné z"
}
},
{
"name": "Suomi",
"code": "fi",
"translation": {
"AppName": "Tiny File Manager",
"AppTitle": "File Manager",
"Login": "Kirjautuminen",
"Username": "Käyttäjänimi",
"Password": "Salasana",
"Logout": "Kirjaudu ulos",
"Move": "Siirrä",
"Copy": "Kopioi",
"Save": "Tallenna",
"SelectAll": "Valitse kaikki",
"UnSelectAll": "Poista valinnat",
"File": "Tiedosto",
"Back": "Takaisin",
"Size": "Koko",
"Perms": "Oikeudet",
"Modified": "Muokattu",
"Owner": "Omistaja",
"Search": "Haku",
"NewItem": "Luo uusi...",
"Folder": "Kansio",
"Delete": "Poista",
"Rename": "Nimeä uudelleen",
"CopyTo": "Kopioi kohteeseen",
"DirectLink": "Suora linkki",
"UploadingFiles": "Siirrä tiedostoja",
"ChangePermissions": "Muuta oikeuksia",
"Copying": "Kopioidaan",
"CreateNewItem": "Luo uusi tiedosto tai kansio",
"Name": "Nimi",
"AdvancedEditor": "Edistynyt editori",
"RememberMe": "Muista minut",
"Actions": "Toiminnot",
"Upload": "Vie",
"Cancel": "Peruuta",
"InvertSelection": "Vaihda valinta",
"DestinationFolder": "Kohdekansio",
"ItemType": "Tiedoston tyyppi",
"ItemName": "Nimi",
"CreateNow": "Luo nyt",
"Download": "Lataa",
"Open": "Avaa",
"UnZip": "Pura",
"UnZipToFolder": "Pura kansioon",
"Edit": "Muokkaa",
"NormalEditor": "Editori",
"BackUp": "Varmuuskopioi",
"SourceFolder": "Kohdekansio",
"Files": "Tiedostot",
"Change": "Vaihda",
"Settings": "Asetukset",
"Language": "Kieli",
"MemoryUsed": "Muistia käytetty",
"PartitionSize": "Osion koko",
"ErrorReporting": "Virheraportit",
"ShowHiddenFiles": "Näytä piilotiedostot",
"Preview": "Esikatsele",
"Help": "Apua",
"FullSize": "Täysikokoinen",
"FreeOf": "Vapaana",
"CalculateFolderSize": "Laske kansion koko",
"CheckLatestVersion": "Tarkista päivitykset",
"Generate new password hash": "Luo uusi salasana-hash",
"HideColumns": "Piilota oikeudet-/omistaja-sarakkeet"
}
},
{
"name": "한국어",
"code": "ko",
"translation": {
"AppName": "Tiny File Manager",
"AppTitle": "파일 관리자",
"Login": "로그인",
"Username": "사용자명",
"Tiny File Manager": "Tiny File Manager",
"File Manager": "File Manager",
"Sign in": "로그인",
"Username": "아이디",
"Password": "비밀번호",
"Logout": "로그아웃",
"Sign Out": "로그아웃",
"Move": "이동",
"Copy": "복사",
"Save": "저장",
"SelectAll": "전체 선택",
"UnSelectAll": "전체 해제",
"Select all": "전체 선택",
"Unselect all": "선택 해제",
"File": "파일",
"Back": "뒤로",
"Size": "크기",
"Size": "용량",
"Perms": "권한",
"Modified": "수정된 날짜",
"Modified": "마지막 수정",
"Owner": "소유자",
"Search": "검색",
"NewItem": "새로 만들기",
"New Item": "새로 만들기",
"Folder": "폴더",
"Delete": "삭제",
"Rename": "이름 바꾸기",
"CopyTo": "복사 위치 지정",
"DirectLink": "다이렉트 링크",
"UploadingFiles": "파일 업로드",
"ChangePermissions": "권한 변경",
"Copying": "복사하기",
"CreateNewItem": "새로 만들기",
"Rename": "이름 변경",
"Copy to": "지정된 위치로 복사",
"Direct link": "링크",
"Upload Files": "파일 업로드",
"Change Permissions": "권한 변경",
"Copying": "복사",
"Create New Item": "새로 만들기",
"Name": "이름",
"AdvancedEditor": "고급 편집기",
"RememberMe": "로그인 정보 저장",
"Advanced Editor": "고급 에디터",
"Remember Me": "로그인 정보 저장",
"Actions": "액션",
"Upload": "업로드",
"Cancel": "취소",
"InvertSelection": "선택 반전",
"DestinationFolder": "대상 폴더",
"ItemType": "유형",
"ItemName": "이름",
"CreateNow": "만들기",
"Invert Selection": "선택 반전",
"Destination Folder": "대상 폴더",
"Item Type": "유형",
"Item Name": "이름",
"Create Now": "확인",
"Download": "다운로드",
"Open": "열기",
"UnZip": "압축 풀기",
"UnZipToFolder": "폴더에 압축 풀기",
"UnZip": "압축 해제",
"UnZip to folder": "지정된 폴더에 압축 해제",
"Edit": "편집",
"NormalEditor": "일반 편집기",
"BackUp": "백업",
"SourceFolder": "원본 폴더",
"Files": "파일 목록",
"Change": "변경",
"Normal Editor": "일반 에디터",
"Back Up": "백업",
"Source Folder": "원본 폴더",
"Files": "파일",
"Change": "변경하기",
"Settings": "설정",
"Language": "언어"
"Language": "언어",
"Memory used": "메모리 사용량",
"Partition size": "남은 용량",
"Error Reporting": "오류 보고",
"Show Hidden Files": "숨겨진 파일 보기",
"Full size": "현재 폴더 파일 용량",
"Help": "도움말",
"Free of": "파티션 총 용량:",
"Preview": "미리 보기",
"Help Documents": "참고 문서",
"Report Issue": "이슈 보고",
"Generate": "생성",
"Full Size": "총 용량",
"free of": "사용 가능 용량",
"Calculate folder size": "폴더 용량 표시",
"Check Latest Version": "최신 버전 체크",
"Generate new password hash": "새 비밀번호 해시 생성",
"Hide Perms/Owner columns": "권한/소유자 숨기기"
}
},
{
@ -1677,4 +1900,4 @@
}
}
]
}
}