├── .github └── FUNDING.yml ├── .gitignore ├── Changelog.md ├── LICENSE ├── Privacy_Policy.md ├── README.md ├── TaskList.md ├── res ├── values-bg │ └── strings.xml ├── values-de │ └── strings.xml ├── values-es │ └── strings.xml ├── values-fr │ └── strings.xml ├── values-hi │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-nl │ └── strings.xml ├── values-pl │ └── strings.xml ├── values-pt-rBR │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-uk │ └── strings.xml ├── values-vi │ └── strings.xml ├── values-zh │ └── strings.xml └── values │ └── strings.xml └── screenshots ├── .DS_Store ├── 1.webp ├── 2.webp ├── 3.webp ├── 4.webp ├── 5.webp ├── banner1280.png ├── play_store_512.png └── recording.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | patreon: TiarDev 3 | buy_me_a_coffee: TiarApps 4 | custom: ['https://play.google.com/store/apps/details?id=tiar.ua.slf.pro&hl=ru'] 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | screenshots/Thumbs.db 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- 1 | ## 1.1.8 2 | - [![][new]](#1.1.8) Added Dutch language (thx [GerbenAaltink](https://github.com/Tiarait/HTTP-FS-file-server/pull/48)). 3 | - [![][new]](#1.1.8) Added redirections (still being tested). 4 | - [![][new]](#1.1.8) Added users (login/pass/permissions). 5 | - [![][fix]](#1.1.8) Small client-side fixes. 6 | - [![][dev]](#1.1.8) Raised versions of libraries. 7 | ## 1.1.7 8 | - [![][new]](#1.1.7) Added ads in free version. 9 | ## 1.1.6 10 | - [![][fix]](#1.1.6) Fixed display of a large list of files in the client tree. 11 | - [![][fix]](#1.1.6) Optimization of display of a large number of files in the client. 12 | - [![][new]](#1.1.6) Added the ability to move files. 13 | ## 1.1.4 14 | - [![][fix]](#1.1.4) Fixed WebDav. 15 | ## 1.1.3 16 | - [![][hotfix]](#1.1.3) Hot fix of log file. 17 | - [![][fix]](#1.1.3) Fixed display for TV. 18 | - [![][fix]](#1.1.3) Fixed viewing large files. 19 | ## 1.1.2 20 | - [![][new]](#1.1.2) Redesign. 21 | - [![][new]](#1.1.2) Added more settings. 22 | - [![][new]](#1.1.2) Added more more logs (all logs). 23 | - [![][new]](#1.1.2) Added check connection socket. 24 | - [![][fix]](#1.1.2) Fixed initial file. 25 | - [![][fix]](#1.1.2) Fixed problem when server down. 26 | - [![][pro]](#1.1.2) Pro version. 27 | ## 1.0.29 28 | - [![][fix]](#1.0.29) Fixed video rewind. 29 | - [![][fix]](#1.0.29) Fixed the server name. 30 | ## 1.0.28 31 | - [![][new]](#1.0.28) Added Japanese, Korean, Hindi languages. 32 | - [![][new]](#1.0.28) Added IP selection function (example if you only need localhost). 33 | - [![][fix]](#1.0.28) Fixed IPv6. 34 | ## 1.0.27 35 | - [![][new]](#1.0.27) Added RSS for folders. 36 | - [![][new]](#1.0.27) Added support for recording to SD card. 37 | - [![][new]](#1.0.27) Added support for writing USB cards. 38 | - [![][fix]](#1.0.27) Fixed transition back/next to the client page. 39 | ## 1.0.26 40 | - [![][new]](#1.0.26) Added Vietnamese language. 41 | - [![][fix]](#1.0.26) Fixed webdav style. 42 | - [![][fix]](#1.0.26) Fixed ip without wifi. 43 | - [![][dev]](#1.0.26) Added rwx in api. 44 | ## 1.0.25 45 | - [![][hotfix]](#1.0.25) Fixed crash on dialog welcome message. 46 | ## 1.0.24 47 | - [![][new]](#1.0.24) Added html view for webdav. 48 | - [![][new]](#1.0.24) For client side added grid view. 49 | - [![][new]](#1.0.24) For client side added sorting, selecters. 50 | - [![][new]](#1.0.24) For client side added uploading folder. 51 | - [![][new]](#1.0.24) For client side added download as .zip. 52 | - [![][new]](#1.0.24) For client side added mass delete. 53 | - [![][new]](#1.0.24) For client side added simple review text files. 54 | - [![][new]](#1.0.24) Added welcome dialog message 55 | - [![][hotfix]](#1.0.24) Fixed crash when server stoped (https). 56 | - [![][fix]](#1.0.24) Fixed controls on video and audio. 57 | - [![][hotfix]](#1.0.24) Fixed time responce. 58 | - [![][edit]](#1.0.24) Redesign client side html. 59 | - [![][edit]](#1.0.24) Separately removed the functions of folder size and thumbnails. 60 | ## 1.0.23 61 | - [![][new]](#1.0.23) Added SSL (https) connection. 62 | - [![][new]](#1.0.23) Added Spanish and French languages. 63 | - [![][hotfix]](#1.0.23) WebDav API for connecting to Windows OS has been fixed. 64 | - [![][fix]](#1.0.23) Fixed long first connection to the server. 65 | - [![][fix]](#1.0.23) Fixed minor issues with the UI application. 66 | - [![][edit]](#1.0.23) Edited settings list design. 67 | 68 | > [!WARNING] 69 | > SSL connection is still in development and is needed in tests. 70 | 71 | > [!NOTE] 72 | > A self-signed certificate is used for an SSL connection. Certificate settings will be added in future updates. 73 | 74 | ## ... 75 | 76 | [dev]: https://img.shields.io/badge/DEV-yellow?style=plastic 77 | [fix]: https://img.shields.io/badge/FIX-gray?style=plastic 78 | [hotfix]: https://img.shields.io/badge/FIX-red?style=plastic 79 | [new]: https://img.shields.io/badge/NEW-green?style=plastic 80 | [edit]: https://img.shields.io/badge/EDIT-blue?style=plastic 81 | [pro]: https://img.shields.io/badge/PRO-0bc600?style=plastic 82 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright 2024 Tiarait 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /Privacy_Policy.md: -------------------------------------------------------------------------------- 1 | **Privacy Policy** 2 | 3 | Tiar Apps built the HTTP FS (file server) app as a Free app. This SERVICE is provided by Tiar Develop at no cost and is intended for use as is. 4 | 5 | This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. 6 | 7 | If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. 8 | 9 | The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at HTTP FS (file server) unless otherwise defined in this Privacy Policy. 10 | 11 | **Information Collection and Use** 12 | 13 | For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information, including but not limited to access to the file system. The information that I request will be retained on your device and is not collected by me in any way. 14 | 15 | The app does use third-party services that may collect information used to identify you. 16 | 17 | Link to the privacy policy of third-party service providers used by the app 18 | 19 | * [Google Play Services](https://www.google.com/policies/privacy/) 20 | 21 | **Log Data** 22 | 23 | I want to inform you that whenever you use my Service, in a case of an error in the app I collect data and information (through third-party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing my Service, the time and date of your use of the Service, and other statistics. 24 | 25 | **Cookies** 26 | 27 | Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. 28 | 29 | This Service does not use these “cookies” explicitly. However, the app may use third-party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. 30 | 31 | **Service Providers** 32 | 33 | I may employ third-party companies and individuals due to the following reasons: 34 | 35 | * To facilitate our Service; 36 | * To provide the Service on our behalf; 37 | * To perform Service-related services; or 38 | * To assist us in analyzing how our Service is used. 39 | 40 | I want to inform users of this Service that these third parties have access to their Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose. 41 | 42 | **Security** 43 | 44 | I value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and I cannot guarantee its absolute security. 45 | 46 | **Links to Other Sites** 47 | 48 | This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by me. Therefore, I strongly advise you to review the Privacy Policy of these websites. I have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. 49 | 50 | **Children’s Privacy** 51 | 52 | These Services do not address anyone under the age of 13. I do not knowingly collect personally identifiable information from children under 13 years of age. In the case I discover that a child under 13 has provided me with personal information, I immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact me so that I will be able to do the necessary actions. 53 | 54 | **Changes to This Privacy Policy** 55 | 56 | I may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. I will notify you of any changes by posting the new Privacy Policy on this page. 57 | 58 | This policy is effective as of 2023-01-20 59 | 60 | **Contact Us** 61 | 62 | If you have any questions or suggestions about my Privacy Policy, do not hesitate to contact me at tiar.develop@gmail.com. 63 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | [![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine/) 3 | 4 | [![Issues][issues-shield]][issues-url] [![Android][android-shield]][gp-url] [![LinkedIn][linkedin-shield]][linkedin-url] [![Youtube][youtube-shield]][youtube-url] [![Desktop][desktop-shield]][desktop-url] 5 | 6 | 7 | # HTTP FS - Android App 8 | 9 | [](#) 11 | 12 | This is a http, webdav server for sharing files between users on a Wi-Fi network. 13 | The online file sharing application works like a local HTTP server. 14 | 15 | You can run a server on a Wi-Fi network or create a hotspot and share files by selecting any available folder on your device and providing users on the network with a link to your HTTP server or by scanning a QR code. 16 | 17 | You can download it from [releases](https://github.com/Tiarait/HTTP-FS-file-server/releases/) 18 | 19 | You can also use app like webdav server. Also avalaible on [desktop](https://github.com/Tiarait/HTTP-FS-Desktop) 20 | 21 |

22 | 23 | Get it on Google Play 26 | 27 |

28 | 29 | ## About 30 | With this app, users can easily run a server on a Wi-Fi network or create a hotspot to share files. 31 | 32 | One of the key features of HTTP FS file server is the ability to select any available folder on your device and provide users on the network with a link to your HTTP server or a QR code for easy access. This makes it simple to share files with others without the need for additional file sharing platforms. 33 | 34 | Furthermore, this app allows users to have control over file uploads and downloads. You can choose to block uploads or downloads of files, providing an extra layer of security and control over the shared files. Additionally, you have the option to set a password to access the server, adding an additional level of privacy. 35 | 36 | HTTP FS file server is a free application, making it accessible to anyone who wants to easily share files over a local network. With its user-friendly interface and useful features, this app is a convenient tool for file sharing on Android devices. 37 | ## Features 38 | 39 | The android app lets you: 40 | - Create local http server. 41 | - Supports webdaw api. 42 | - Supports SSL(https) connection. 43 | - ~~Completely ad-free~~. [![][pro]](https://play.google.com/store/apps/details?id=tiar.ua.slf.pro) 44 | - Simple logs to see who is using the server. 45 | - Server can start on boot device. 46 | - Switch between language. 47 | - Selecting a starting file, like index.html. 48 | - Set password and session time for more security. 49 | - Downloads folders and files like .zip. 50 | ## Screenshots 51 | [](/screenshots/1.webp) 54 | [](/screenshots/2.webp) 57 | [](/screenshots/4.webp) 60 | 61 | 62 | [](/screenshots/recording.gif) 65 | 66 | ## License 67 | 68 | HTTP FS is released under the [Apache-2.0](LICENSE). 69 | 70 | [linkedin-url]: https://linkedin.com/in/tiarait 71 | [linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555 72 | [issues-shield]: https://img.shields.io/github/issues/Tiarait/HTTP-FS-file-server.svg?style=for-the-badge 73 | [issues-url]: https://github.com/Tiarait/HTTP-FS-file-server/issues 74 | [version-shield]: https://img.shields.io/badge/Version-1.0.25-blue?style=for-the-badge 75 | [gp-url]: https://play.google.com/store/apps/details?id=tiar.ua.slf 76 | [youtube-shield]: https://img.shields.io/badge/-YOUTUBE-red.svg?style=for-the-badge&logo=youtube&colorB=red 77 | [youtube-url]: https://www.youtube.com/watch?v=inPCdfxVXMg 78 | 79 | [coffee-shield]: https://img.shields.io/badge/-Bye_me_a_coffee-red.svg?style=for-the-badge&logo=buymeacoffee&colorB=grey 80 | [coffee-url]: https://www.buymeacoffee.com/tiarapps 81 | 82 | [android-shield]: https://img.shields.io/badge/Android-5.0+-green?style=for-the-badge 83 | [stand-with-ukraine]: https://img.shields.io/badge/Stand_With-Ukraine-yellow?style=for-the-badge&labelColor=blue 84 | [stand-with-ukraine-url]: https://vshymanskyy.github.io/StandWithUkraine 85 | 86 | [desktop-shield]: https://img.shields.io/badge/-Desktop-red.svg?style=for-the-badge&logo=gnometerminal&colorB=grey 87 | [desktop-url]: https://github.com/Tiarait/HTTP-FS-Desktop/ 88 | 89 | [pro]: https://img.shields.io/badge/PRO-0bc600?style=plastic 90 | 91 | -------------------------------------------------------------------------------- /TaskList.md: -------------------------------------------------------------------------------- 1 | > [!NOTE] 2 | > Its just ideas for app without any time frame. 3 | 4 | > [!IMPORTANT] 5 | > It’s also a priority to make a plus version for more incentive 6 | 7 | - [x] Added SSL (Https) [![][23]][23-link] 8 | - [x] Day/Nigt theme (added for client) 9 | - [ ] Custom headers 10 | - [ ] FTP server 11 | - [ ] Proxy server 12 | - [x] Redesign [![][1-2]][1-2-link] 13 | - [x] Rest Api (done but not public) 14 | - [ ] Public server 15 | - [x] Pro version App [![][1-2]][1-2-link] 16 | - [ ] Working with the archive 17 | - [ ] Moving the files [![][1-6]][1-6-link] 18 | - [x] Folder tree [![][1-2]][1-2-link] 19 | - [ ] Block Ip adress 20 | - [ ] Admin panel 21 | - [ ] Execute comand like adb 22 | - [ ] Block Ip adress 23 | - [ ] Server settings 24 | - [ ] FAQ 25 | - [ ] ~~Sync folders~~ (impossible without a client on PC) 26 | 27 | [23]: https://img.shields.io/badge/DONE-1.0.23-grey?style=flat&labelColor=green 28 | [23-link]: https://github.com/Tiarait/HTTP-FS-file-server/blob/main/Changelog.md#1023 29 | 30 | [1-2]: https://img.shields.io/badge/DONE-1.1.2-grey?style=flat&labelColor=green 31 | [1-2-link]: https://github.com/Tiarait/HTTP-FS-file-server/blob/main/Changelog.md#112 32 | [1-6]: https://img.shields.io/badge/DONE-1.1.6-grey?style=flat&labelColor=green 33 | [1-6-link]: https://github.com/Tiarait/HTTP-FS-file-server/blob/main/Changelog.md#116 34 | -------------------------------------------------------------------------------- /res/values-bg/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Начало 3 | Настройки 4 | Относно 5 | Версия %s 6 | Логи 7 | Уеб 8 | 9 | Споделяне 10 | Сървър: 11 | ВайФай: 12 | Порт: 13 | 14 | Правата за достъп трябва да бъдат предоставени на приложението за правилна работа. 15 | ОК 16 | Изход 17 | 18 | Порт 19 | 20 | Настройки на приложението 21 | Настройки на сървъра 22 | 23 | Път на директория 24 | 25 | Първоначален файл 26 | Използване на парола 27 | Парола 28 | Време на сесията (мин) 29 | Разрешения 30 | Четене 31 | Писане 32 | 33 | Тип сървър 34 | Стартиране на сървър с устройство 35 | Стартиране на сървър с приложение 36 | 37 | 38 | Грешка, няма разрешение! 39 | 40 | 41 | Файлове 42 | Качване на файл 43 | Папка 44 | файлове 45 | Моето име 46 | Размер 47 | Дата 48 | Отказ 49 | Качване 50 | Този файл не може да бъде отворен. Искате ли да го ЗАПАЗИТЕ? 51 | Да 52 | Не 53 | Преименуване 54 | Преместване 55 | Изтегляне като zip 56 | Изтегляне 57 | Изтриване 58 | Създаване на папка 59 | Създаване на файл 60 | Задръжте за копиране 61 | Копирано 62 | 63 | Файлът е празен 64 | Изтриване на регистрационния файл? 65 | Щракнете дълго, за да изчистите филтъра 66 | Записите ще бъдат поставени на пауза през това време.\nМожете да деактивирате регистрационните файлове в настройките. 67 | Изберете език 68 | По подразбиране 69 | Спри 70 | "Сървърът работи " 71 | Тази функция може да не работи на някои устройства, и някои устройства може да изискват допълнителни системни разрешения. 72 | в процес на разработка 73 | Изглежда, че WiFi е деактивиран! 74 | За да използвате сървъра, потребителите трябва да са в една и съща Wi-Fi мрежа. 75 | Настройки 76 | Щракнете тук, за да стартирате файловия сървър 77 | И тук, за да покаже информация или QR 78 | Обратна връзка 79 | По късно 80 | Можете да дадете разрешение на известията, за да може приложението да работи правилно. Или отложете за по-късно (това не засяга функционалността) 81 | Оценете това приложение 82 | Още приложения от мен 83 | Здравейте на всички, аз съм разработчик от Украйна. Ако имате някакви предложения за приложение или сътрудничество - пишете ми. Не забравяйте да оцените приложението - само това ви мотивира да продължите да работите по приложението. 84 | За автора 85 | Към основния 86 | Опресняване 87 | Моето име 88 | Излез от профила си 89 | Искате ли да излезете от всички потребители? 90 | Сертификат за износ 91 | Сертификат за износ 92 | 93 | Настройки на клиента 94 | Разход на батерията 95 | Разрешения за батерия 96 | Вземете размера на папката 97 | Вземете миниатюри 98 | Съобщение за добре дошли 99 | Направете го празно, за да го скриете 100 | Тип 101 | Изглед 102 | Списък 103 | Решетка 104 | Сортиране 105 | Избрано 106 | Изберете 107 | Изтегли като .zip 108 | Относно приложението 109 | Подарете за кафе 110 | Добре дошли!
Ако приложението Ви е харесало, можете да ме подкрепите по удобен за Вас начин. Можете също така да намерите всички новини за актуализации, промени и грешки в GitHub.
]]>
111 | 112 | Защита срещу запис! 113 | Изглежда, че SD картата не е монтирана. Препоръчително е да изберете друга карта.\n\n 114 | Изглежда, че сте избрали грешната папка.\n\n 115 | Не е намерена активност за обработка\nACTION_OPEN_DOCUMENT_TREE\n\nТози устройство не поддържа Android Storage Access Framework 116 | При Android ≥ 5 външната SD карта е защитена срещу запис. Трябва да изберете директорията от специален диалог на Android, за да предоставите права за запис на HTTP FS. \n\nВ следващия диалог, моля, отидете до основната директория на външната SD карта и кликнете в долната част на бутона «Изберете» 117 | Повторен опит 118 | 119 | Добре дошли в PRO версията!
За всички проблеми или предложения можете да пишете на адрес tiar.develop@gmail.com.
]]>
120 | Хаптична вибрация 121 | Размазване в диалози 122 | Разрешения 123 | Разрешения за папки 124 | Интерфейси 125 | Сигурност 126 | Отвори връзката? 127 | Връзката ще се отвори във вашия браузър по подразбиране, който не е свързан с приложението 128 | Вход 129 | Логин 130 | Влезте, за да продължите 131 | Качване 132 | Създаване 133 | Тема 134 | На цял екран 135 | В нов раздел 136 | Файл 137 | Сървърът е недостъпен 138 | Повторение 139 | Скриване 140 | Откажи всичко 141 | Изчисти кеша 142 | Скриване на файловете 143 | Добавяне 144 | Pro версията е налична в Google Play. 145 | Път до файла 146 | Твърдо пренасочване 147 | 148 | Изход от приложението? 149 | Да излезете напълно от приложението (спрете всички работещи процеси)? 150 | Необходимо е разрешение 151 | Приложението изисква достъп до файловата система на устройството, за да функционира. \nОсновната функция на приложението е стартирането на файлов сървър Http/WebDAV, който ви позволява да управлявате файловата система на вашето устройство. 152 | 153 | Пренасочвания 154 | 155 | Потребители 156 | Потребител 157 |
-------------------------------------------------------------------------------- /res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Startseite 3 | Einstellungen 4 | Info 5 | Version %s 6 | Protokolle 7 | Web 8 | 9 | Teilen 10 | Server: 11 | WLAN: 12 | Port: 13 | 14 | Für den korrekten Betrieb müssen der Anwendung Zugriffsrechte gewährt werden. 15 | OK 16 | Beenden 17 | 18 | Port 19 | 20 | App-Einstellungen 21 | Servereinstellungen 22 | 23 | Verzeichnispfad 24 | 25 | Ausgangsdatei 26 | Passwort verwenden 27 | Passwort 28 | Sitzungszeit (min) 29 | Berechtigungen 30 | Lesen 31 | Schreiben 32 | 33 | Servertyp 34 | Server mit Gerät starten 35 | Server mit App starten 36 | 37 | 38 | Fehler, keine Berechtigung! 39 | 40 | 41 | Dateien 42 | Datei hochladen 43 | Ordner 44 | Dateien 45 | Name 46 | Größe 47 | Datum 48 | Abbrechen 49 | Hochladen 50 | Diese Datei kann nicht geöffnet werden. Möchten Sie es BEHALTEN? 51 | Ja 52 | Nein 53 | Umbenennen 54 | Verschieben 55 | Als Zip herunterladen 56 | Herunterladen 57 | Löschen 58 | Ordner erstellen 59 | Erstelle Datei 60 | Zum Kopieren gedrückt halten 61 | Kopiert 62 | 63 | Die Datei ist leer 64 | Logdatei löschen? 65 | Langes Klicken, um den Filter zu löschen 66 | Die Protokolle werden in dieser Zeit angehalten.\nSie können Protokolle in den Einstellungen deaktivieren. 67 | Sprache auswählen 68 | Standard 69 | Stopp 70 | "Server läuft " 71 | Diese Funktion funktioniert möglicherweise nicht auf allen Geräten, und einige Geräte benötigen möglicherweise zusätzliche Systemberechtigungen. 72 | in entwicklung 73 | Sieht so aus, als wäre WLAN deaktiviert! 74 | Um den Server verwenden zu können, müssen sich die Benutzer im selben Wi-Fi-Netzwerk befinden. 75 | Einstellungen 76 | Klicken Sie hier, um den Dateiserver zu starten 77 | Und hier, um Informationen oder QR anzuzeigen 78 | Feedback 79 | Später 80 | Sie können Benachrichtigungen die Berechtigung zum Benachrichtigen erteilen, damit die App ordnungsgemäß funktioniert. Oder auf später verschieben (beeinflusst die Funktionalität nicht) 81 | Bewerte diese App 82 | Weitere Apps von mir 83 | Die laufende Entwicklung des Projekts wurde vorübergehend gestoppt, bis sich die Umstände ändern oder Hindernisse beseitigt werden. Diese App wird bald auf Git veröffentlicht. Sie können aber weiterhin Ihre Vorschläge schreiben, die ich bei der weiteren Entwicklung berücksichtigen werde. 84 | Über den Autor 85 | Zur Hauptsache 86 | Aktualisierung 87 | Name 88 | Ausloggen 89 | Möchten Sie alle Benutzer abmelden? 90 | Zertifikat 91 | Exportzertifikat 92 | 93 | 94 | Client-Einstellungen 95 | Batterieverbrauch 96 | Batterieberechtigungen 97 | Größe des Ordners abrufen 98 | Miniaturen abrufen 99 | Willkommensdialog-Nachricht 100 | Leer lassen, um zu verbergen 101 | Typ 102 | Ansicht 103 | Liste 104 | Raster 105 | Sortierung 106 | Ausgewählt 107 | Auswählen 108 | Als .zip herunterladen 109 | Über die App 110 | Für einen Kaffee spenden 111 | Willkommen!
Wenn Ihnen die Anwendung gefallen hat, können Sie mich auf eine für Sie bequeme Weise unterstützen. Alle Neuigkeiten zu Updates, Änderungen und Fehlern finden Sie auch auf GitHub.
]]>
112 | 113 | Schreibschutz! 114 | Es scheint, als sei die SD-Karte nicht eingebunden. Es wird empfohlen, eine andere Karte auszuwählen.\n\n 115 | Es scheint, als hättest du den falschen Ordner ausgewählt.\n\n 116 | Keine Aktivität gefunden, um die Absicht\nACTION_OPEN_DOCUMENT_TREE\nzu handhaben\n\nDieses Gerät scheint das Android Storage Access Framework nicht zu unterstützen 117 | Bei Android ≥ 5 ist die externe SD-Karte schreibgeschützt. Du musst das Verzeichnis aus einem speziellen Android-Dialog auswählen, um HTTP FS Schreibrechte zu geben. \n\nIm nächsten Dialog gehe bitte zum Root der externen SD-Karte und klicke auf den Knopf unten, «Auswählen» 118 | Wiederholen 119 | 120 | Willkommen in der PRO-Version!
Für Probleme oder Vorschläge können Sie an tiar.develop@gmail.com schreiben.
]]>
121 | Haptische Vibration 122 | Unschärfe in Dialogen 123 | Berechtigungen 124 | Berechtigungen für Ordner 125 | Schnittstellen 126 | Sicherheit 127 | Link öffnen? 128 | Der Link wird in Ihrem Standardbrowser geöffnet, der nicht mit der Anwendung verbunden ist. 129 | Anmelden 130 | Zum Fortfahren anmelden 131 | Login 132 | Hochladen 133 | Erstellen 134 | Thema 135 | Im Vollbildmodus 136 | In neuem Tab 137 | Datei 138 | Server ist offline 139 | Wiederholen 140 | Ausblenden 141 | Alle abbrechen 142 | Cache löschen 143 | Dateien ausblenden 144 | Hinzufügen 145 | Die Pro-Version ist im Google Play Store verfügbar. 146 | Pfad zur Datei 147 | Harte Weiterleitung 148 | 149 | Anwendung beenden? 150 | Anwendung vollständig beenden (alle laufenden Prozesse stoppen)? 151 | Berechtigung erforderlich 152 | Die Anwendung benötigt Zugriff auf das Dateisystem des Geräts, um zu funktionieren. \nDie Hauptfunktion der Anwendung ist das Starten eines Http/WebDAV-Dateiservers, der es Ihnen ermöglicht, das Dateisystem Ihres Geräts zu verwalten. 153 | 154 | Weiterleitungen 155 | 156 | Benutzer 157 | Benutzer 158 |
-------------------------------------------------------------------------------- /res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Inicio 3 | Configuración 4 | Acerca de 5 | Versión %s 6 | Registros 7 | Web 8 | 9 | Compartir 10 | Servidor: 11 | WiFi: 12 | Puerto: 13 | 14 | Es necesario conceder permisos para que la aplicación funcione correctamente. 15 | Puede dar permisos de notificación para que la aplicación funcione correctamente o posponerlo hasta más tarde (esto no afectará la funcionalidad). 16 | OK 17 | Configuración 18 | Salir 19 | Más tarde 20 | 21 | PUERTO 22 | 23 | Nombre 24 | 25 | Configuración de la aplicación 26 | Configuración del servidor 27 | 28 | Ruta de la carpeta 29 | 30 | Archivo inicial 31 | 32 | Usar contraseña 33 | Contraseña 34 | Tiempo de sesión (min) 35 | Permisos 36 | Lectura 37 | Escritura 38 | 39 | Tipo de servidor 40 | Iniciar servidor con el dispositivo 41 | Esta función puede no funcionar en algunos dispositivos y algunos dispositivos pueden requerir permisos adicionales del sistema. 42 | en desarrollo 43 | Iniciar servidor con la aplicación 44 | 45 | Comentarios 46 | 47 | Haz clic aquí para iniciar el servidor de archivos 48 | Y aquí para mostrar información o el código QR 49 | 50 | Error, sin permisos! 51 | Parece que el WiFi está desactivado. 52 | Para utilizar el servidor, los usuarios deben estar en la misma red Wi-Fi. 53 | 54 | Archivos 55 | Subir archivo 56 | Carpeta 57 | archivos 58 | Nombre 59 | Tamaño 60 | Fecha 61 | Cancelar 62 | Subiendo 63 | Este archivo no se puede abrir. ¿Quieres GUARDARLO? 64 | 65 | No 66 | Renombrar 67 | Mover 68 | Descargar como zip 69 | Descargar 70 | Eliminar 71 | Crear carpeta 72 | Crear archivo 73 | Pulsa prolongadamente para copiar 74 | Copiado 75 | El archivo está vacío 76 | ¿Eliminar archivo de registro? 77 | Pulsa prolongadamente para borrar el filtro 78 | Los registros se pausarán en este momento.\nPuedes desactivar los registros en la configuración 79 | 80 | Seleccionar idioma 81 | Predeterminado 82 | 83 | Detener 84 | "Servidor en ejecución " 85 | 86 | Cerrar sesión 87 | ¿Desea cerrar la sesión de todos los usuarios? 88 | 89 | Califica esta aplicación 90 | Más aplicaciones de mi parte 91 | Hola a todos, soy un desarrollador de Ucrania. Si tienes alguna sugerencia para una aplicación o cooperación, escríbeme. No olvides calificar la aplicación, ya que esto es lo que me motiva a seguir trabajando en ella. 92 | Acerca del autor 93 | Inicio 94 | Actualizar 95 | Certificado 96 | Exportar certificado 97 | 98 | 99 | Configuración del cliente 100 | Consumo de batería 101 | Permisos de batería 102 | Obtener tamaño de carpeta 103 | Obtener miniaturas 104 | Mensaje de bienvenida 105 | Dejar en blanco para ocultar 106 | Tipo 107 | Vista 108 | Lista 109 | Cuadrícula 110 | Clasificación 111 | Seleccionado 112 | Seleccionar 113 | Descargar como .zip 114 | Acerca de la aplicación 115 | Donar para un café 116 | ¡Bienvenido!
Si te gustó la aplicación, puedes apoyarme de una manera conveniente para ti. También puedes encontrar todas las noticias sobre actualizaciones, cambios y errores en GitHub.
]]>
117 | 118 | ¡Protección de escritura! 119 | Parece que la tarjeta SD está desmontada. Recomendamos elegir otra tarjeta.\n\n 120 | Parece que has elegido la carpeta incorrecta.\n\n 121 | No se encontró ninguna actividad para manejar la intención\nACTION_OPEN_DOCUMENT_TREE\n\nEste dispositivo no parece admitir el Marco de Acceso a Almacenamiento de Android 122 | En Android ≥ 5, la tarjeta SD externa está protegida contra escritura. Debes elegir el directorio desde un cuadro de diálogo especial de Android para dar derechos de escritura a HTTP FS. \n\nEn el próximo cuadro de diálogo, ve a la raíz de la tarjeta SD externa y haz clic en el botón en la parte inferior, «Seleccionar» 123 | Reintentar 124 | 125 | ¡Bienvenido a la versión PRO!
Para cualquier problema o sugerencia, puede escribir a tiar.develop@gmail.com.
]]>
126 | Vibración háptica 127 | Desenfoque en los diálogos 128 | Permisos 129 | Permisos para carpetas 130 | Interfaces 131 | Seguridad 132 | ¿Abrir enlace? 133 | El enlace se abrirá en su navegador predeterminado, que no está relacionado con la aplicación. 134 | Iniciar sesión 135 | Inicia sesión para continuar 136 | Acceso 137 | Subir 138 | Crear 139 | Tema 140 | En pantalla completa 141 | En una nueva pestaña 142 | Archivo 143 | El servidor está fuera de línea 144 | Repetir 145 | Ocultar 146 | Cancelar todo 147 | Limpiar caché 148 | Ocultar archivos 149 | Agregar 150 | La versión Pro está disponible en Google Play. 151 | Ruta del archivo 152 | Redirección forzada 153 | 154 | ¿Salir de la aplicación? 155 | ¿Salir completamente de la aplicación (detener todos los procesos en ejecución)? 156 | Se requiere permiso 157 | La aplicación requiere acceso al sistema de archivos del dispositivo para funcionar. \nLa función principal de la aplicación es iniciar un servidor de archivos Http/WebDAV, que le permite administrar el sistema de archivos de su dispositivo. 158 | 159 | Redirecciones 160 | 161 | Usuarios 162 | Usuario 163 |
-------------------------------------------------------------------------------- /res/values-fr/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Accueil 3 | Paramètres 4 | À propos 5 | Version %s 6 | Journaux 7 | Web 8 | 9 | Partager 10 | Serveur : 11 | WiFi : 12 | Port : 13 | 14 | Les autorisations doivent être accordées pour que l\'application fonctionne correctement. 15 | Vous pouvez accorder la permission de notifications pour que l\'application fonctionne correctement ou la reporter à plus tard (cela n\'affecte pas la fonctionnalité). 16 | OK 17 | Paramètres 18 | Quitter 19 | Plus tard 20 | 21 | PORT 22 | 23 | Nom 24 | 25 | Paramètres de l\'application 26 | Paramètres du serveur 27 | 28 | Chemin du dossier 29 | 30 | Fichier initial 31 | 32 | Utiliser un mot de passe 33 | Mot de passe 34 | Durée de la session (min) 35 | Autorisations 36 | Lecture 37 | Écriture 38 | 39 | Type de serveur 40 | Démarrer le serveur avec l\'appareil 41 | Cette fonction peut ne pas fonctionner sur certains appareils et certains appareils peuvent nécessiter une autorisation système supplémentaire 42 | en cours de développement 43 | Démarrer le serveur avec l\'application 44 | 45 | Retour d\'information 46 | 47 | Cliquez ici pour démarrer le serveur de fichiers 48 | Et ici pour afficher les infos ou le QR 49 | 50 | Erreur, pas de permission! 51 | Il semble que le WiFi soit désactivé! 52 | Pour utiliser le serveur, les utilisateurs doivent être sur le même réseau Wi-Fi. 53 | 54 | Fichiers 55 | Télécharger un fichier 56 | Dossier 57 | fichiers 58 | Nom 59 | Taille 60 | Date 61 | Annuler 62 | Téléchargement en cours 63 | Ce fichier ne peut pas être ouvert. Voulez-vous ENREGISTRER? 64 | Oui 65 | Non 66 | Renommer 67 | Déplacer 68 | Télécharger comme zip 69 | Télécharger 70 | Supprimer 71 | Créer un dossier 72 | Créer un fichier 73 | Appuyez longuement pour copier 74 | Copié 75 | Le fichier est vide 76 | Supprimer le fichier journal? 77 | Appuyez longuement pour effacer le filtre 78 | Les journaux seront mis en pause pendant ce temps.\nVous pouvez désactiver les journaux dans les paramètres 79 | 80 | Sélectionner la langue 81 | Par défaut 82 | 83 | Arrêter 84 | Serveur en cours d\'exécution 85 | 86 | Déconnexion 87 | Voulez-vous déconnecter tous les utilisateurs? 88 | 89 | Noter cette application 90 | Plus d\'applications de ma part 91 | Bonjour à tous, je suis un développeur ukrainien. Si vous avez des suggestions pour une application ou une collaboration, écrivez-moi. N\'oubliez pas de noter l\'application, car c\'est cela qui me motive à continuer de travailler dessus. 92 | À propos de l\'auteur 93 | Accueil 94 | Actualiser 95 | Certificat 96 | Exporter le certificat 97 | 98 | Paramètres du client 99 | Consommation de la batterie 100 | Permissions de la batterie 101 | Obtenir la taille du dossier 102 | Obtenir des miniatures 103 | Message de bienvenue 104 | Laissez vide pour masquer 105 | Type 106 | Vue 107 | Liste 108 | Grille 109 | Tri 110 | Sélectionné 111 | Sélectionner 112 | Télécharger au format .zip 113 | À propos de l\'application 114 | Offrir un café 115 | Bienvenue!
Si vous avez aimé l\'application, vous pouvez me soutenir d\'une manière qui vous convient. Vous pouvez également trouver toutes les nouvelles sur les mises à jour, les changements et les bugs sur GitHub.
]]>
116 | 117 | Protection d\'écriture ! 118 | Il semble que la carte SD soit démontée. Il est recommandé de choisir une autre carte.\n\n 119 | Il semble que vous ayez choisi le mauvais dossier.\n\n 120 | Aucune activité trouvée pour gérer l\'intention\nACTION_OPEN_DOCUMENT_TREE\n\nCet appareil ne semble pas prendre en charge le Android Storage Access Framework 121 | Sur Android ≥ 5, la carte SD externe est en écriture protégée. Vous devez choisir le répertoire dans une boîte de dialogue Android spéciale pour donner à HTTP FS les droits d\'écriture. \n\nDans la prochaine boîte de dialogue, veuillez accéder à la racine de la carte SD externe et cliquer sur le bouton en bas, «Sélectionner» 122 | Réessayer 123 | 124 | Bienvenue dans la version PRO !
Pour tout problème ou suggestion, vous pouvez écrire à tiar.develop@gmail.com.
]]>
125 | Vibration haptique 126 | Flou dans les dialogues 127 | Autorisations 128 | Autorisations pour les dossiers 129 | Interfaces 130 | Sécurité 131 | Ouvrir le lien ? 132 | Le lien sera ouvert dans votre navigateur par défaut, qui n\'est pas lié à l\'application 133 | Connexion 134 | Connectez-vous pour continuer 135 | Se connecter 136 | Téléverser 137 | Créer 138 | Thème 139 | En plein écran 140 | Dans un nouvel onglet 141 | Fichier 142 | Le serveur est hors ligne 143 | Répéter 144 | Masquer 145 | Tout annuler 146 | Effacer le cache 147 | Masquer les fichiers 148 | Ajouter 149 | La version Pro est disponible sur Google Play. 150 | Chemin du fichier 151 | Redirection forcée 152 | 153 | Quitter l\'application ? 154 | Quitter complètement l\'application (arrêter tous les processus en cours) ? 155 | Permission requise 156 | L\'application nécessite un accès au système de fichiers de l\'appareil pour fonctionner. \nLa fonction principale de l\'application est de lancer un serveur de fichiers Http/WebDAV, ce qui vous permet de gérer le système de fichiers de votre appareil. 157 | 158 | Redirections 159 | 160 | Utilisateurs 161 | Utilisateur 162 |
-------------------------------------------------------------------------------- /res/values-hi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | होम 3 | सेटिंग्स 4 | बारे में 5 | संस्करण %s 6 | लॉग 7 | वेब 8 | 9 | शेयर 10 | सर्वर: 11 | वाई-फाई: 12 | पोर्ट: 13 | 14 | एप्लिकेशन के सही तरीके से काम करने के लिए अनुमतियों को प्रदान की जानी चाहिए। 15 | आप अधिसूचनाएँ प्राप्त करने के लिए अधिसूचनाओं की अनुमति दे सकते हैं ताकि एप्लिकेशन को सही ढंग से काम करने के लिए। या इसे बाद में स्थगित करें (इसका कोई प्रभाव नहीं होता) 16 | ठीक 17 | सेटिंग्स 18 | बाहर निकलें 19 | बाद में 20 | 21 | पोर्ट 22 | नाम 23 | 24 | एप्लिकेशन सेटिंग्स 25 | सर्वर सेटिंग्स 26 | 27 | फ़ोल्डर का पथ 28 | 29 | प्रारंभिक फ़ाइल 30 | 31 | पासवर्ड का उपयोग करें 32 | पासवर्ड 33 | सत्र का समय (मिनट) 34 | अनुमतियाँ 35 | पढ़ें 36 | लिखें 37 | 38 | सर्वर प्रकार 39 | 40 | 41 | डिवाइस के साथ सर्वर शुरू करें 42 | यह फ़ंक्शन कुछ डिवाइस पर काम नहीं कर सकता और कुछ डिवाइस अतिरिक्त सिस्टम अनुमति की आवश्यकता हो सकती है 43 | विकास के तहत 44 | एप्लिकेशन के साथ सर्वर शुरू करें 45 | 46 | प्रतिक्रिया 47 | 48 | 49 | फ़ाइल सर्वर को शुरू करने के लिए यहाँ क्लिक करें 50 | और यहाँ जानकारी या क्यूआर दिखाने के लिए 51 | 52 | त्रुटि कोई अनुमति नहीं! 53 | वाई-फ़ाई अक्षम दिखता है! 54 | सर्वर का उपयोग करने के लिए उपयोगकर्ताओं को एक ही वाई-फाई नेटवर्क पर होना चाहिए। 55 | 56 | 57 | फ़ाइलें 58 | फ़ाइल अपलोड करें 59 | फ़ोल्डर 60 | फ़ाइलें 61 | नाम 62 | आकार 63 | तारीख 64 | रद्द करें 65 | अपलोड हो रहा है 66 | इस फ़ाइल को खोला नहीं जा सकता है। क्या आप इसे सहेजना चाहते हैं? 67 | हां 68 | नहीं 69 | नाम बदलें 70 | हटाएँ 71 | ज़िप के रूप में डाउनलोड करें 72 | डाउनलोड 73 | हटाएं 74 | फ़ोल्डर बनाएं 75 | फ़ाइल बनाएं 76 | कॉपी करने के लिए लंबा दबाएं 77 | कॉपी किया गया 78 | फ़ाइल खाली है 79 | लॉग फ़ाइल हटाएं? 80 | फ़िल्टर साफ करने के लिए लंबा क्लिक करें 81 | इस समय लॉग्स ठहरे होंगे।\nआप सेटिंग्स में लॉग्स को अक्षम कर सकते हैं 82 | 83 | भाषा का चयन करें 84 | डिफ़ॉल्ट 85 | 86 | रोकें 87 | "सर्वर चल रहा है " 88 | 89 | लॉगआउट 90 | क्या आप सभी उपयोगकर्ताओं को लॉगआउट करना चाहते हैं? 91 | 92 | इस एप्लिकेशन को रेट करें 93 | मेरे अन्य एप्लिकेशन 94 | नमस्ते सभी, मैं एक यूक्रेन से डेवलपर हूं। यदि आपके पास किसी एप्लिकेशन या सहयोग के लिए कोई सुझाव हैं - मुझे लिखें। एप्लिकेशन को रेट करना न भूलें - केवल यह आपको ऐप पर काम करने के लिए प्रेरित करता है। 95 | लेखक के बारे में 96 | होम 97 | ताजगी 98 | प्रमाणपत्र 99 | प्रमाणपत्र निर्यात करें 100 | 101 | ग्राहक सेटिंग्स 102 | बैटरी खर्च 103 | बैटरी अनुमतियाँ 104 | फ़ोल्डर का आकार प्राप्त करें 105 | थंबनेल्स प्राप्त करें 106 | स्वागत संदेश डायलॉग 107 | छिपाने के लिए खाली करें 108 | प्रकार 109 | दृश्य 110 | सूची 111 | ग्रिड 112 | क्रमबद्ध करना 113 | चयनित 114 | चुनें 115 | .zip के रूप में डाउनलोड करें 116 | एप्लिकेशन के बारे में 117 | कॉफ़ी के लिए दें 118 | स्वागत है!
यदि आपको यह ऐप पसंद आया, तो आप मुझे अपने सुविधाजनक तरीके से समर्थन कर सकते हैं। आप GitHub पर सभी अपडेट, परिवर्तन और बग के बारे में समाचार भी पा सकते हैं।
]]>
119 | 120 | लेखन सुरक्षा! 121 | ऐसा लगता है कि एसडी कार्ड को अनमाउंट किया गया है। किसी अलग कार्ड का चयन करने की सिफारिश की जाती है।\n\n 122 | ऐसा लगता है कि आपने गलत फ़ोल्डर का चयन किया है।\n\n 123 | किसी एक्टिविटी को संविधान\nACTION_OPEN_DOCUMENT_TREE\n\nको हैंडल करने के लिए नहीं मिला\n\nइस डिवाइस पर Android Storage Access Framework का समर्थन नहीं दिखता है 124 | Android ≥ 5 पर, बाहरी एसडी कार्ड लेखन से सुरक्षित है। HTTP FS लेखन अधिकार देने के लिए आपको एक विशेष Android डायलॉग से निर्देशिका चुनने की आवश्यकता है। \n\nअगले संवाद में, कृपया बाहरी एसडी-कार्ड के रूट में जाएं और नीचे बटन पर क्लिक करें, «चयन करें» 125 | पुनः प्रयास करें 126 | 127 | PRO संस्करण में आपका स्वागत है!
किसी भी समस्या या सुझाव के लिए, आप tiar.develop@gmail.com पर लिख सकते हैं।
]]>
128 | हैप्टिक्स वाइब्रेशन 129 | डायलॉग में धुंधलाप 130 | अनुमतियाँ 131 | फ़ोल्डरों के लिए अनुमतियाँ 132 | इंटरफेस 133 | सुरक्षा 134 | लिंक खोलें? 135 | लिंक आपके डिफ़ॉल्ट ब्राउज़र में खोला जाएगा, जो ऐप्लिकेशन से संबंधित नहीं है 136 | लॉग इन करें 137 | जारी रखने के लिए लॉगिन करें 138 | लॉग इन करें 139 | अपलोड 140 | बनाएँ 141 | थीम 142 | पूर्ण स्क्रीन पर 143 | नए टैब में 144 | फ़ाइल 145 | सर्वर ऑफ़लाइन है 146 | दोहराएँ 147 | छुपाएँ 148 | सभी को रद्द करें 149 | कैश को साफ़ करें 150 | फ़ाइलें छुपाएँ 151 | जोड़ें 152 | प्रो संस्करण Google Play पर उपलब्ध है। 153 | फ़ाइल का मार्ग 154 | कठिन पुनर्निर्देशन 155 | 156 | एप्लिकेशन से बाहर निकलें? 157 | पूरी तरह से एप्लिकेशन बंद करें (सभी चल रही प्रक्रियाओं को रोकें)? 158 | अनुमति आवश्यक 159 | एप्लिकेशन को कार्य करने के लिए डिवाइस की फ़ाइल प्रणाली तक पहुँच की आवश्यकता है। \nएप्लिकेशन का मुख्य कार्य एक Http/WebDAV फ़ाइल सर्वर शुरू करना है, जो आपको अपने डिवाइस की फ़ाइल प्रणाली को प्रबंधित करने की अनुमति देता है। 160 | 161 | पुनर्निर्देशन 162 | 163 | उपयोगकर्ता 164 | उपयोगकर्ता 165 |
166 | -------------------------------------------------------------------------------- /res/values-ja/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ホーム 3 | 設定 4 | 情報 5 | バージョン %s 6 | ログ 7 | ウェブ 8 | 9 | 共有 10 | サーバー: 11 | WiFi: 12 | ポート: 13 | 14 | アプリケーションが正常に動作するためには、権限が必要です。 15 | アプリケーションが正常に動作するためには、通知の許可が必要です。後で設定することもできます(これは機能に影響しません) 16 | OK 17 | 設定 18 | 終了 19 | 後で 20 | 21 | ポート 22 | 名前 23 | 24 | アプリ設定 25 | サーバー設定 26 | 27 | フォルダーへのパス 28 | 29 | 初期ファイル 30 | 31 | パスワードを使用する 32 | パスワード 33 | セッション時間(分) 34 | 権限 35 | 読み取り 36 | 書き込み 37 | 38 | サーバータイプ 39 | 40 | デバイスでサーバーを起動 41 | この機能は一部のデバイスで動作しない場合があり、一部のデバイスでは追加のシステム権限が必要になる場合があります 42 | 開発中 43 | アプリでサーバーを起動 44 | 45 | フィードバック 46 | 47 | 48 | ここをクリックしてファイルサーバーを起動します 49 | そして、情報またはQRコードを表示するにはこちら 50 | 51 | エラー:許可がありません! 52 | WiFiが無効になっているようです! 53 | サーバーを使用するには、ユーザーが同じWi-Fiネットワークに接続している必要があります。 54 | 55 | 56 | ファイル 57 | ファイルをアップロード 58 | フォルダー 59 | ファイル 60 | 名前 61 | サイズ 62 | 日付 63 | キャンセル 64 | アップロード中 65 | このファイルを開くことができません。保存しますか? 66 | はい 67 | いいえ 68 | 名前を変更 69 | 移動 70 | zipファイルとしてダウンロード 71 | ダウンロード 72 | 削除 73 | フォルダーを作成 74 | ファイルを作成 75 | コピーするには長押ししてください 76 | コピーされました 77 | ファイルは空です 78 | ログファイルを削除しますか? 79 | フィルターをクリアするには長押ししてください 80 | この時間にログが一時停止されます。\n設定でログを無効にできます 81 | 82 | 言語を選択 83 | デフォルト 84 | 85 | 停止 86 | "サーバーが実行中 " 87 | 88 | ログアウト 89 | すべてのユーザーをログアウトしますか? 90 | 91 | このアプリを評価する 92 | 他のアプリ 93 | みなさん、こんにちは。私はウクライナ出身の開発者です。アプリや共同作業に関する提案がある場合は、お知らせください。アプリを評価することを忘れないでください。これだけが、アプリの開発を続ける動機になります。 94 | 作者について 95 | ホーム 96 | 更新 97 | 証明書 98 | 証明書をエクスポート 99 | 100 | クライアント設定 101 | バッテリー消費 102 | バッテリー許可 103 | フォルダーサイズを取得 104 | サムネイルを取得 105 | ウェルカムダイアログのメッセージ 106 | 非表示にするには空白にします 107 | タイプ 108 | 表示 109 | リスト 110 | グリッド 111 | 並べ替え 112 | 選択済み 113 | 選択 114 | .zip としてダウンロード 115 | アプリについて 116 | コーヒーをプレゼント 117 | ようこそ!
アプリケーションを気に入っていただけた場合は、便利な方法でサポートできます。また、GitHubでアップデート、変更、バグに関するすべてのニュースを見つけることができます。
]]>
118 | 119 | 書き込み保護! 120 | SDカードがアンマウントされているようです。別のカードを選択することをお勧めします。\n\n 121 | 間違ったフォルダーを選択したようです。\n\n 122 | 意図されたアクションを処理するアクティビティが見つかりません\nACTION_OPEN_DOCUMENT_TREE\n\nこのデバイスは Android Storage Access Framework をサポートしていないようです 123 | Android 5以上では、外部SDカードは書き込み保護されています。HTTP FSの書き込み権限を付与するために、特別なAndroidダイアログからディレクトリを選択する必要があります。\n\n次のダイアログでは、外部SDカードのルートに移動して、下部のボタン「選択」をクリックしてください。 124 | 再試行 125 | 126 | PRO版へようこそ!
問題や提案がある場合は、tiar.develop@gmail.com までご連絡ください。
]]>
127 | 触覚振動 128 | ダイアログのぼかし 129 | 権限 130 | フォルダの権限 131 | インターフェース 132 | セキュリティ 133 | リンクを開く? 134 | リンクは、アプリケーションとは関係のないデフォルトのブラウザで開かれます 135 | ログイン 136 | 続行するにはログインしてください 137 | ログイン 138 | アップロード 139 | 作成 140 | テーマ 141 | 全画面で 142 | 新しいタブで 143 | ファイル 144 | サーバーがオフラインです 145 | 繰り返す 146 | 非表示 147 | すべてキャンセル 148 | キャッシュをクリア 149 | ファイルを非表示 150 | 追加 151 | Pro版はGoogle Playで利用できます。 152 | ファイルのパス 153 | ハードリダイレクト 154 | 155 | アプリケーションを終了しますか? 156 | アプリケーションを完全に終了しますか(すべての実行中のプロセスを停止しますか)? 157 | 権限が必要です 158 | アプリケーションが機能するには、デバイスのファイルシステムへのアクセスが必要です。 \nアプリケーションの主な機能は、Http/WebDAVファイルサーバーを起動して、デバイスのファイルシステムを管理できるようにすることです。 159 | 160 | リダイレクト 161 | 162 | ユーザー 163 | ユーザー 164 |
165 | -------------------------------------------------------------------------------- /res/values-ko/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 설정 4 | 정보 5 | 버전 %s 6 | 로그 7 | 8 | 9 | 공유 10 | 서버: 11 | WiFi: 12 | 포트: 13 | 14 | 애플리케이션의 정상 작동에 필요한 권한이 있어야 합니다. 15 | 애플리케이션이 정상적으로 작동하려면 알림 허용이 필요합니다. 나중에 설정할 수도 있습니다(이는 기능에 영향을 주지 않습니다). 16 | 확인 17 | 설정 18 | 종료 19 | 나중에 20 | 21 | 포트 22 | 이름 23 | 24 | 앱 설정 25 | 서버 설정 26 | 27 | 폴더 경로 28 | 29 | 초기 파일 30 | 31 | 비밀번호 사용 32 | 비밀번호 33 | 세션 시간(분) 34 | 권한 35 | 읽기 36 | 쓰기 37 | 38 | 서버 유형 39 | 40 | 장치와 함께 서버 시작 41 | 이 기능은 일부 장치에서 작동하지 않을 수 있으며, 일부 장치에서는 추가 시스템 권한이 필요할 수 있습니다. 42 | 개발 중 43 | 앱으로 서버 시작 44 | 45 | 피드백 46 | 47 | 48 | 여기를 클릭하여 파일 서버를 시작하세요 49 | 정보 또는 QR을 표시하려면 여기를 클릭하세요 50 | 51 | 오류: 권한 없음! 52 | WiFi가 비활성화된 것 같습니다! 53 | 서버를 사용하려면 사용자가 동일한 Wi-Fi 네트워크에 연결되어 있어야 합니다. 54 | 55 | 56 | 파일 57 | 파일 업로드 58 | 폴더 59 | 파일 60 | 이름 61 | 크기 62 | 날짜 63 | 취소 64 | 업로드 중 65 | 이 파일을 열 수 없습니다. 저장하시겠습니까? 66 | 67 | 아니오 68 | 이름 변경 69 | 이동 70 | zip 파일로 다운로드 71 | 다운로드 72 | 삭제 73 | 폴더 생성 74 | 파일 생성 75 | 복사하려면 길게 누르세요 76 | 복사됨 77 | 파일이 비어 있습니다 78 | 로그 파일을 삭제하시겠습니까? 79 | 필터를 지우려면 길게 클릭하세요 80 | 이 시간에는 로그가 일시 중지됩니다.\n설정에서 로그를 비활성화할 수 있습니다 81 | 82 | 언어 선택 83 | 기본값 84 | 85 | 중지 86 | "서버 실행 중 " 87 | 88 | 로그아웃 89 | 모든 사용자 로그아웃 하시겠습니까? 90 | 91 | 이 앱 평가하기 92 | 나의 다른 앱 93 | 안녕하세요, 저는 우크라이나 출신 개발자입니다. 앱이나 협력에 대한 제안이 있으면 저에게 연락해주세요. 앱을 평가하는 것만이 앱 개발을 계속 진행하는 동기가 됩니다. 94 | 저자 소개 95 | 96 | 새로 고침 97 | 인증서 98 | 인증서 내보내기 99 | 100 | 클라이언트 설정 101 | 배터리 소비 102 | 배터리 권한 103 | 폴더 크기 가져오기 104 | 썸네일 가져오기 105 | 환영 대화 상자 메시지 106 | 숨기려면 공백으로 만듭니다 107 | 유형 108 | 보기 109 | 목록 110 | 그리드 111 | 정렬 112 | 선택됨 113 | 선택 114 | .zip으로 다운로드 115 | 앱 정보 116 | 커피 사주기 117 | 환영합니다!
애플리케이션을 마음에 드셨다면, 편리한 방법으로 저를 지원할 수 있습니다. GitHub에서 업데이트, 변경 사항 및 버그에 대한 모든 소식을 확인할 수도 있습니다.
]]>
118 | 119 | 쓰기 보호! 120 | SD 카드가 마운트 해제되었습니다. 다른 카드를 선택하는 것이 좋습니다.\n\n 121 | 잘못된 폴더를 선택한 것 같습니다.\n\n 122 | 인텐트를 처리할 활동을 찾을 수 없습니다\nACTION_OPEN_DOCUMENT_TREE\n\n이 장치는 Android 저장소 액세스 프레임워크를 지원하지 않는 것으로 보입니다 123 | Android 5 이상에서는 외부 SD 카드가 쓰기 보호됩니다. HTTP FS 쓰기 권한을 부여하려면 특별한 Android 대화 상자에서 디렉터리를 선택해야 합니다.\n\n다음 대화 상자에서 외부 SD 카드의 루트로 이동한 다음, 아래쪽의 「선택」 버튼을 클릭하십시오. 124 | 재시도 125 | 126 | PRO 버전에 오신 것을 환영합니다!
문제 또는 제안이 있으시면 tiar.develop@gmail.com으로 문의 주시기 바랍니다.
]]>
127 | 진동 햅틱 128 | 대화 상자에서 흐림 129 | 권한 130 | 폴더 권한 131 | 인터페이스 132 | 보안 133 | 링크 열기? 134 | 링크는 애플리케이션과 관련이 없는 기본 브라우저에서 열립니다 135 | 로그인 136 | 계속하려면 로그인하세요 137 | 로그인 138 | 업로드 139 | 만들기 140 | 테마 141 | 전체 화면으로 142 | 새 탭에서 143 | 파일 144 | 서버가 오프라인 상태입니다 145 | 반복 146 | 숨기기 147 | 모두 취소 148 | 캐시 지우기 149 | 파일 숨기기 150 | 추가 151 | Pro 버전은 Google Play에서 이용할 수 있습니다. 152 | 파일 경로 153 | 하드 리디렉션 154 | 155 | 응용 프로그램을 종료하시겠습니까? 156 | 응용 프로그램을 완전히 종료하시겠습니까 (모든 실행 중인 프로세스를 중지하시겠습니까)? 157 | 권한 필요 158 | 응용 프로그램이 제대로 작동하려면 장치의 파일 시스템에 대한 액세스가 필요합니다. \n응용 프로그램의 주요 기능은 Http/WebDAV 파일 서버를 시작하여 장치의 파일 시스템을 관리할 수 있도록 하는 것입니다. 159 | 160 | 리디렉션 161 | 162 | 사용자 163 | 사용자 164 |
165 | -------------------------------------------------------------------------------- /res/values-nl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Home 3 | Instellingen 4 | Over 5 | Versie %s 6 | Logs 7 | Web 8 | 9 | Gedeeld 10 | Server: 11 | WiFi: 12 | Poort: 13 | 14 | Rechten moeten worden verleend om de applicatie goed te laten werken. 15 | Je kunt notificatiepermissies geven om de applicatie goed te laten werken. Je kunt het ook later alsnog configureren. 16 | OK 17 | Instellingen 18 | Sluiten 19 | Later 20 | 21 | POORT 22 | Name 23 | 24 | Applicatieinstellingen 25 | Server instellingen 26 | 27 | Locatie 28 | 29 | Initieel bestand 30 | 31 | Gebruik wachtwoord 32 | Wachtwoord 33 | Sessietijd (min) 34 | Rechten 35 | Lezen 36 | Schrijven 37 | 38 | Server type 39 | 40 | 41 | Start server met het apparaat 42 | Deze functie werken niet op alle apparaten and kan extra rechten nodig hebben. 43 | onder ontwikkeling 44 | Start server met app 45 | 46 | Reageren 47 | 48 | 49 | Click hier om de bestandsserver te starten 50 | End hier om informatie te zien of QR 51 | 52 | Fout, geen rechten! 53 | WiFi lijkt uitgeschakeld! 54 | Om de server te gebruiken moeten gebruikers op hetzelfde netwerk zitten. 55 | 56 | 57 | Bestanden 58 | Bestand uploaden 59 | Map 60 | bestanden 61 | Naam 62 | Grootte 63 | Datum 64 | Annuleren 65 | Uploading 66 | Dit bestand kan niet worden geopend. Wil je het OPSLAAN? 67 | Ja 68 | Nee 69 | Hernoem 70 | Verplaats 71 | Download als zip 72 | Download 73 | Verwijder 74 | Maak map 75 | Maak bestand 76 | Lang ingedrukt houden om te kopieren 77 | Gekopieerd 78 | Bestand is leeg 79 | Verwijder logbestand? 80 | Langzaam klikken om het filter te verwijderen 81 | Logs worden gepauzeerd op dit moment.\nJe kan logs uitschakelen in instellingen 82 | 83 | Selecteer taal 84 | Standaard 85 | 86 | Stop 87 | "Server runt " 88 | 89 | Logout 90 | Alle gebruikers uitloggen? 91 | 92 | Rate deze app 93 | Meer apps van mij 94 | Hallo allemaal, Ik ben een ontwikkelaar uit Oekraine. Als je een suggestie hebt voor een app of samen wil werken - stuur mij een bericht. Vergeet niet de app te raten - alleen dit motiveert mij er aan te werken. 95 | Over maker 96 | Home 97 | Ververs 98 | Certificaat 99 | Exporteer certificaat 100 | 101 | Client instellingen 102 | Batterijgebruik 103 | Batterijrechten 104 | Verkrijg grootte van map 105 | Verkrijg thumbails 106 | Welkom dialoogbericht 107 | Houd leeg om te verbergen 108 | Type 109 | Weergave 110 | Lijst 111 | Raster 112 | Sorteren 113 | Geselecteerd 114 | Selecteer 115 | Download als .zip 116 | Over app 117 | Geef mij een koffie 118 | Welkom!
Als je de applicatie leuk vindt, Je kan mij steunen is een eenvoudige manier voor je. Je vindt hier ook nieuws, wijzigingen en foutrapportage op GitHub.
]]>
119 | 120 | Schrijfbeveiliging! 121 | De SD-kaart lijkt niet te zijn gekoppeld. Probeer een andere SD-kaart.\n\n 122 | Het lijkt erop dat je de verkeerde map hebt gekozen.\n\n 123 | Geen activiteit gevonden om naar actie te handelen\nACTION_OPEN_DOCUMENT_TREE\n\nDit apparaat lijkt geen ondersteuning te bieden voor Android Storage Access Framework 124 | Op Android ≥ 5, de externe SD-kaart is tegen schrijven beveiligd. Je moet de map kiezen via een speciaal Android dialoog om HTTP FS schrijfrechten te geven. \n\nIn het volgende dialog, ga naar de hoofddirectory van de SD-kaart en klik op de knop beneden, «Selecteer» 125 | Probeer opnieuw 126 | 127 | Welcome to the PRO version!
For any problems or suggestions, you can write to tiar.develop@gmail.com.
]]>
128 | Hapticsvibratie 129 | Vervaging in dialogen 130 | Permissies 131 | Rechten voor mappen 132 | Koppelingen 133 | Beveiliging 134 | Open link? 135 | De link word geopend in je standaardbrowser wat geen onderdeel is van deze app 136 | Login 137 | Login om verder te gaan 138 | Login 139 | Upload 140 | Maak 141 | Thema 142 | Op volledig scherm 143 | In nieuw tabblad 144 | Bestand 145 | Server is offline 146 | Herhaal 147 | Verberg 148 | Annuleer alle 149 | Leeg cache 150 | Verberg bestanden 151 | Toevoegen 152 | De Pro-versie is beschikbaar op Google Play. 153 | Pad naar bestand 154 | Harde doorverwijzing 155 | 156 | App sluiten? 157 | Sluit app volldig (stop alle achtergrondprocessen)? 158 | Heeft rechten nodig 159 | De app heeft rechten tot het bestandssysteem van het apparaat om te kunnen functioneren. \nDe hoofdfunctie van deze app is het start van een Http/WebDAV bestandsserver wat jou toegang geeft om je apparaat te beheren. 160 | 161 | Doorverwijzingen 162 | 163 | Gebruikers 164 | Gebruiker 165 | Van 166 | naar 167 | Bestand or url 168 | Controleer verbinding 169 |
-------------------------------------------------------------------------------- /res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Strona główna 3 | Ustawienia 4 | Informacje 5 | Wersja %s 6 | Dzienniki 7 | Sieć 8 | 9 | Udostępnij 10 | Serwer: 11 | Wi-Fi: 12 | Port: 13 | 14 | Prawa dostępu muszą być przyznane aplikacji do poprawnego działania. 15 | OK 16 | Wyjdź 17 | 18 | Port 19 | 20 | Ustawienia aplikacji 21 | Ustawienia serwera 22 | 23 | Ścieżka do katalogu 24 | 25 | Plik początkowy 26 | Użyj hasła 27 | Hasło 28 | Czas sesji (min) 29 | Uprawnienia 30 | Odczyt 31 | Zapisz 32 | 33 | Typ serwera 34 | Uruchom serwer z urządzeniem 35 | Uruchom serwer z aplikacją 36 | 37 | 38 | Błąd, brak pozwolenia! 39 | 40 | 41 | Pliki 42 | Prześlij plik 43 | Folder 44 | pliki 45 | Moje imię 46 | Rozmiar 47 | Data 48 | Anuluj 49 | Przesyłanie 50 | Nie można otworzyć tego pliku. Czy chcesz go ZACHOWAĆ? 51 | Tak 52 | Nie 53 | Zmień nazwę 54 | Przenieś 55 | Pobierz jako ZIP 56 | Pobierz 57 | Usuń 58 | Utwórz folder 59 | Utwórz plik 60 | Przytrzymaj, aby skopiować 61 | Skopiowano 62 | 63 | Plik jest pusty 64 | Usunąć plik dziennika? 65 | Długie kliknięcie, aby wyczyścić filtr 66 | Logi zostaną w tym czasie wstrzymane.\nMożesz wyłączyć ustawienia logowania. 67 | Wybierz język 68 | Domyślne 69 | Zatrzymaj 70 | "Serwer działa " 71 | Ta funkcja może nie działać na niektórych urządzeniach, a niektóre urządzenia mogą wymagać dodatkowych uprawnień systemowych. 72 | w budowie 73 | Wygląda na to, że Wi-Fi jest wyłączone! 74 | Aby korzystać z serwera, użytkownicy muszą być w tej samej sieci Wi-Fi. 75 | Ustawienia 76 | Kliknij tutaj, aby uruchomić serwer plików 77 | A tutaj, aby pokazać informacje lub QR kod 78 | Informacja zwrotna 79 | Później 80 | Możesz zezwolić powiadomieniom na powiadamianie o poprawnym działaniu aplikacji. Lub odłożyć na później (nie ma to wpływu na funkcjonalność) 81 | Oceń tę aplikację 82 | Więcej aplikacji ode mnie 83 | Witam wszystkich, jestem programistą z Ukrainy. Jeśli masz jakieś sugestie dotyczące aplikacji lub współpracy - napisz do mnie. Nie zapomnij ocenić aplikacji - tylko to zmotywuje Cię do dalszej pracy nad aplikacją. 84 | О autorze 85 | Do głównej 86 | Odświeżać 87 | Moje imię 88 | Wyloguj 89 | Chcesz wylogować wszystkich użytkowników? 90 | Certyfikat 91 | Certyfikat eksportowy 92 | 93 | Ustawienia klienta 94 | Zużycie baterii 95 | Uprawnienia baterii 96 | Pobierz rozmiar folderu 97 | Pobierz miniatury 98 | Wiadomość powitalna 99 | Wprowadź puste, aby ukryć 100 | Typ 101 | Widok 102 | Lista 103 | Siatka 104 | Sortowanie 105 | Wybrane 106 | Wybierz 107 | Pobierz jako .zip 108 | O aplikacji 109 | Podaruj kawę 110 | Witamy!
Jeśli spodobała Ci się aplikacja, możesz wesprzeć mnie w wygodny dla Ciebie sposób. Możesz także znaleźć wszystkie wiadomości o aktualizacjach, zmianach i błędach na GitHubie.
]]>
111 | 112 | Ochrona przed zapisem! 113 | Wygląda na to, że karta SD jest odmontowana. Zaleca się wybranie innej karty.\n\n 114 | Wygląda na to, że wybrałeś złą folder.\n\n 115 | Nie znaleziono aktywności do obsługi intencji\nACTION_OPEN_DOCUMENT_TREE\n\nWygląda na to, że to urządzenie nie obsługuje Android Storage Access Framework 116 | Na Androidzie ≥ 5 zewnętrzna karta SD jest chroniona przed zapisem. Musisz wybrać katalog z specjalnego okna dialogowego Androida, aby nadać HTTP FS prawa do zapisu. \n\nW następnym oknie dialogowym przejdź do katalogu głównego zewnętrznej karty SD i kliknij przycisk na dole, «Wybierz» 117 | Ponów 118 | 119 | Witamy w wersji PRO!
W razie problemów lub sugestii możesz napisać na tiar.develop@gmail.com.
]]>
120 | Wibracje haptyczne 121 | Rozmycie w oknach dialogowych 122 | Uprawnienia 123 | Uprawnienia dla folderów 124 | Interfejsy 125 | Bezpieczeństwo 126 | Otworzyć link? 127 | Link zostanie otwarty w domyślnej przeglądarce, która nie jest powiązana z aplikacją 128 | Zaloguj się 129 | Zaloguj się, aby kontynuować 130 | Login 131 | Prześlij 132 | Utwórz 133 | Motyw 134 | Na pełnym ekranie 135 | W nowej karcie 136 | Plik 137 | Serwer jest offline 138 | Powtórz 139 | Ukryj 140 | Anuluj wszystko 141 | Wyczyść pamięć podręczną 142 | Ukryj pliki 143 | Dodaj 144 | Wersja Pro jest dostępna w Google Play. 145 | Ścieżka do pliku 146 | Twarde przekierowanie 147 | 148 | Wyjść z aplikacji? 149 | Całkowicie zamknąć aplikację (zatrzymać wszystkie uruchomione procesy)? 150 | Wymagane uprawnienia 151 | Aplikacja wymaga dostępu do systemu plików urządzenia, aby działać poprawnie. \nGłówna funkcja aplikacji to uruchomienie serwera plików Http/WebDAV, który umożliwia zarządzanie systemem plików urządzenia. 152 | 153 | Przekierowania 154 | 155 | Użytkownicy 156 | Użytkownik 157 |
-------------------------------------------------------------------------------- /res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Página inicial 3 | Configurações 4 | Sobre 5 | Versão %s 6 | Logs 7 | Web 8 | 9 | Compartilhar 10 | Servidor: 11 | Wi-Fi: 12 | Porta: 13 | 14 | Para o correto funcionamento do aplicativo, é necessário conceder permissões de acesso. 15 | OK 16 | Sair 17 | 18 | Porta 19 | 20 | Configurações do aplicativo 21 | Configurações do servidor 22 | 23 | Caminho do diretório 24 | 25 | Arquivo inicial 26 | Usar senha 27 | Senha 28 | Tempo de sessão (min) 29 | Permissões 30 | Leitura 31 | Escrita 32 | 33 | Tipo de servidor 34 | Iniciar servidor com o dispositivo 35 | Iniciar servidor com o aplicativo 36 | 37 | 38 | Erro, permissão negada! 39 | 40 | 41 | Arquivos 42 | Fazer upload de arquivo 43 | Pasta 44 | arquivos 45 | Nome 46 | Tamanho 47 | Data 48 | Cancelar 49 | Fazendo upload 50 | Este arquivo não pode ser aberto. Deseja SALVÁ-LO? 51 | Sim 52 | Não 53 | Renomear 54 | Mover 55 | Baixar como zip 56 | Baixar 57 | Excluir 58 | Criar pasta 59 | Criar arquivo 60 | Mantenha pressionado para copiar 61 | Copiado 62 | 63 | O arquivo está vazio 64 | Excluir arquivo de log? 65 | Clique longo para limpar o filtro 66 | Os registros serão pausados neste momento.\nVocê pode desativar os registros nas configurações. 67 | Selecionar idioma 68 | Padrão 69 | Parar 70 | Servidor em execução 71 | Esta função pode não funcionar em alguns dispositivos e alguns dispositivos podem exigir permissões adicionais do sistema. 72 | em desenvolvimento 73 | Parece que o Wi-Fi está desativado! 74 | Configurações 75 | Para usar o servidor, os usuários devem estar na mesma rede Wi-Fi. 76 | Clique aqui para iniciar o servidor de arquivos 77 | E aqui para mostrar informações ou QR 78 | Feedback 79 | Mais tarde 80 | Você pode conceder permissão de notificação para o aplicativo funcionar corretamente. Ou adiar para mais tarde (isso não afetará a funcionalidade). 81 | Avalie este aplicativo 82 | Mais aplicativos 83 | Olá a todos, eu sou um desenvolvedor da Ucrânia. Se você tiver alguma sugestão para o aplicativo ou para colaboração, me avise. Não se esqueça de avaliar o aplicativo, pois isso me motiva a continuar trabalhando nele. 84 | Sobre o autor 85 | Início 86 | Atualizar 87 | Nome 88 | Sair 89 | Quer desconectar todos os usuários? 90 | Certificado 91 | Certificado de exportação 92 | 93 | 94 | Configurações do cliente 95 | Despesa de bateria 96 | Permissões de bateria 97 | Obter tamanho da pasta 98 | Obter miniaturas 99 | Mensagem de boas-vindas 100 | Deixe em branco para ocultar 101 | Tipo 102 | Visualização 103 | Lista 104 | Grade 105 | Ordenação 106 | Selecionado 107 | Selecionar 108 | Baixar como .zip 109 | Sobre o aplicativo 110 | Doe para o café 111 | Bem-vindo!
Se você gostou do aplicativo, pode me apoiar de uma maneira conveniente para você. Você também pode encontrar todas as novidades sobre atualizações, mudanças e bugs no GitHub.
]]>
112 | 113 | Proteção contra gravação! 114 | Parece que o cartão SD está desmontado. Recomenda-se escolher um cartão diferente.\n\n 115 | Parece que você escolheu a pasta errada.\n\n 116 | Nenhuma atividade encontrada para lidar com o intent\nACTION_OPEN_DOCUMENT_TREE\n\nEste dispositivo parece não suportar o Framework de Acesso ao Armazenamento do Android 117 | No Android ≥ 5, o cartão SD externo está protegido contra gravação. Você precisa escolher o diretório em uma caixa de diálogo especial do Android para dar direitos de gravação ao HTTP FS. \n\nNa próxima caixa de diálogo, vá até a raiz do cartão SD externo e clique no botão na parte inferior, «Selecionar» 118 | Tentar novamente 119 | 120 | Bem-vindo à versão PRO!
Para qualquer problema ou sugestão, você pode entrar em contato pelo email tiar.develop@gmail.com.
]]>
121 | Vibração tátil 122 | Desfoque em diálogos 123 | Permissões 124 | Permissões de pastas 125 | Interfaces 126 | Segurança 127 | Abrir link? 128 | O link será aberto no seu navegador padrão, que não está relacionado ao aplicativo 129 | Entrar 130 | Faça login para continuar 131 | Conecte-se 132 | Enviar 133 | Criar 134 | Tema 135 | Em tela cheia 136 | Em nova aba 137 | Arquivo 138 | Servidor está offline 139 | Repetir 140 | Ocultar 141 | Cancelar tudo 142 | Limpar cache 143 | Ocultar arquivos 144 | Adicionar 145 | A versão Pro está disponível na Google Play. 146 | Caminho do arquivo 147 | Redirecionamento rígido 148 | 149 | Sair do aplicativo? 150 | Sair completamente do aplicativo (parar todos os processos em execução)? 151 | Permissão necessária 152 | O aplicativo requer acesso ao sistema de arquivos do dispositivo para funcionar corretamente. \nA principal função do aplicativo é iniciar um servidor de arquivos Http/WebDAV, que permite gerenciar o sistema de arquivos do dispositivo. 153 | 154 | Redirecionamentos 155 | 156 | Usuários 157 | Usuário 158 |
-------------------------------------------------------------------------------- /res/values-pt/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Início 3 | Configurações 4 | Sobre 5 | Versão %s 6 | Registos 7 | Web 8 | 9 | Partilhar 10 | Servidor: 11 | Wi-Fi: 12 | Porta: 13 | 14 | Para um funcionamento correto da aplicação, é necessário conceder permissões de acesso. 15 | OK 16 | Sair 17 | 18 | Porta 19 | 20 | Configurações da aplicação 21 | Configurações do servidor 22 | 23 | Caminho do diretório 24 | 25 | Arquivo inicial 26 | Utilizar palavra-passe 27 | Palavra-passe 28 | Duração da sessão (min) 29 | Permissões 30 | Leitura 31 | Escrita 32 | 33 | Tipo de servidor 34 | Iniciar servidor com o dispositivo 35 | Iniciar servidor com a aplicação 36 | 37 | 38 | Erro, permissão negada! 39 | 40 | 41 | Ficheiros 42 | Carregar ficheiro 43 | Pasta 44 | ficheiros 45 | Nome 46 | Tamanho 47 | Data 48 | Cancelar 49 | A carregar 50 | Este ficheiro não pode ser aberto. Deseja GUARDÁ-LO? 51 | Sim 52 | Não 53 | Renomear 54 | Mover 55 | Transferir como zip 56 | Transferir 57 | Eliminar 58 | Criar pasta 59 | Criar ficheiro 60 | Mantenha pressionado para copiar 61 | Copiado 62 | 63 | O arquivo está vazio 64 | Excluir arquivo de log? 65 | Clique longo para limpar o filtro 66 | Os registros serão pausados neste momento.\nVocê pode desativar os registros nas configurações. 67 | Selecionar idioma 68 | Padrão 69 | Parar 70 | Servidor em execução 71 | Esta função pode não funcionar em alguns dispositivos e alguns dispositivos podem exigir permissões adicionais do sistema. 72 | Em desenvolvimento 73 | Parece que o Wi-Fi está desligado! 74 | Definições 75 | Para utilizar o servidor, os utilizadores devem estar na mesma rede Wi-Fi. 76 | Clique aqui para iniciar o servidor de ficheiros 77 | E aqui para mostrar informações ou QR 78 | Feedback 79 | Mais tarde 80 | Pode conceder permissões de notificação para o bom funcionamento da aplicação. Ou adiar para mais tarde (não afeta as funcionalidades) 81 | Avalie esta aplicação 82 | Mais aplicações 83 | Olá a todos, sou um programador da Ucrânia. Se tiverem sugestões para a aplicação ou interesse em colaborar, por favor, contactem-me. Não se esqueçam de avaliar a aplicação - isso motiva-me a continuar a trabalhar nela. 84 | Sobre o autor 85 | Início 86 | Atualizar 87 | Nome 88 | Sair 89 | Quer desconectar todos os usuários? 90 | Certificado 91 | Certificado de exportação 92 | 93 | Configurações do cliente 94 | Despesa de bateria 95 | Permissões de bateria 96 | Obter tamanho da pasta 97 | Obter miniaturas 98 | Mensagem de boas-vindas 99 | Deixe em branco para ocultar 100 | Tipo 101 | Visualização 102 | Lista 103 | Grade 104 | Ordenação 105 | Selecionado 106 | Selecionar 107 | Baixar como .zip 108 | Sobre o aplicativo 109 | Doe para o café 110 | Bem-vindo!
Se você gostou do aplicativo, pode me apoiar de uma maneira conveniente para você. Você também pode encontrar todas as novidades sobre atualizações, mudanças e bugs no GitHub.
]]>
111 | 112 | Proteção contra gravação! 113 | Parece que o cartão SD está desmontado. Recomenda-se escolher um cartão diferente.\n\n 114 | Parece que você escolheu a pasta errada.\n\n 115 | Nenhuma atividade encontrada para lidar com o intent\nACTION_OPEN_DOCUMENT_TREE\n\nEste dispositivo parece não suportar o Framework de Acesso ao Armazenamento do Android 116 | No Android ≥ 5, o cartão SD externo está protegido contra gravação. Você precisa escolher o diretório em uma caixa de diálogo especial do Android para dar direitos de gravação ao HTTP FS. \n\nNa próxima caixa de diálogo, vá até a raiz do cartão SD externo e clique no botão na parte inferior, «Selecionar» 117 | Tentar novamente 118 | 119 | Bem-vindo à versão PRO!
Para quaisquer problemas ou sugestões, pode contactar através do email tiar.develop@gmail.com.
]]>
120 | Vibração tátil 121 | Desfoque em diálogos 122 | Permissões 123 | Permissões das pastas 124 | Interfaces 125 | Segurança 126 | Abrir ligação? 127 | A ligação será aberta no seu navegador padrão, que não está relacionado com a aplicação 128 | Iniciar sessão 129 | Inicie sessão para continuar 130 | Conecte-se 131 | Carregar 132 | Criar 133 | Tema 134 | Em ecrã completo 135 | Em nova aba 136 | Ficheiro 137 | O servidor está offline 138 | Repetir 139 | Ocultar 140 | Cancelar tudo 141 | Limpar cache 142 | Ocultar ficheiros 143 | Adicionar 144 | A versão Pro está disponível na Google Play. 145 | Caminho para o ficheiro 146 | Redirecionamento rígido 147 | 148 | Sair da aplicação? 149 | Sair completamente da aplicação (parar todos os processos em execução)? 150 | Permissão necessária 151 | A aplicação requer acesso ao sistema de ficheiros do dispositivo para funcionar corretamente. \nA principal funcionalidade da aplicação é iniciar um servidor de ficheiros Http/WebDAV, que permite gerir o sistema de ficheiros do seu dispositivo. 152 | 153 | Redirecionamentos 154 | 155 | Usuários 156 | Usuário 157 |
-------------------------------------------------------------------------------- /res/values-uk/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Головна 3 | Налаштування 4 | Логи 5 | Веб 6 | 7 | Поділитися 8 | Сервер: 9 | ВайФай: 10 | Порт: 11 | 12 | Для коректної роботи додатку необхідно надати права доступу. 13 | Ок 14 | Вихід 15 | 16 | Порт 17 | 18 | Налаштування додатку 19 | Налаштування сервера 20 | 21 | Шлях до директорії 22 | 23 | Початковий файл 24 | Використати пароль 25 | Пароль 26 | Час сессії (хв) 27 | Дозволи 28 | Читання 29 | Запис 30 | 31 | Тип сервера 32 | Запуск сервера з девайсом 33 | Запуск сервера з додатком 34 | 35 | 36 | Помилка, немає дозволу! 37 | 38 | 39 | Файли 40 | Завантажити файл 41 | Папка 42 | файли 43 | Ім\'я 44 | Розмір 45 | Дата 46 | Скасувати 47 | Завантаження 48 | Цей файл не можу бути відкритий. Бажаєте ЗБЕРЕГТИ його? 49 | Так 50 | Ні 51 | Перейменувати 52 | Перемістити 53 | Завантажити як zip 54 | Завантажити 55 | Видалити 56 | Створити папку 57 | Створити файл 58 | Утримуйте, щоб скопіювати 59 | Cкопійовано 60 | 61 | Файл порожній 62 | Видалити файл журналу? 63 | Затисніть щоб очистити фільтр 64 | Запис логів буде призупинено.\nВимкнути логи ви можете в налаштуваннях. 65 | Оберіть мову 66 | За замовчуванням 67 | Зупинити 68 | "Сервер працює " 69 | Ця функція може не працювати на деяких пристроях, і деякі пристрої можуть вимагати додаткових системних дозволів. 70 | в розробці 71 | Схоже що WiFi вимкнено! 72 | Налаштування 73 | Щоб використовувати сервер, користувачі повинні бути в одній мережі Wi-Fi. 74 | Натисніть тут, щоб запустити файловий сервер 75 | І тут, щоб показати інформацію або QR 76 | Зворотній зв\'язок 77 | Пізніше 78 | Ви можете надати дозвіл на оповіщення, щоб додаток працював коректно. Або відкласти на потім (на функціонал це не вплине) 79 | 80 | Інфо 81 | Версія %s 82 | Оцініть цей застосунок 83 | Більше моїх застосунків 84 | Привіт всім, я розробник із України. Якщо ви маєте якісь пропозиції щодо додатку або співпраці - напишіть мені. Незабудьте оцінити додаток - саме це мотивує надалі працювати над ним. 85 | Про автора 86 | На головну 87 | Оновити 88 | Ім\'я 89 | Вийти 90 | Хочете вийти з системи для всіх користувачів? 91 | Сертифікат 92 | Експорт сертифіката 93 | 94 | Налаштування клієнта 95 | Витрати батареї 96 | Дозволи для батареї 97 | Отримання розміру папки 98 | Отримання мініатюр 99 | Привітальний діалог 100 | Зробіть порожнім, щоб приховати 101 | Тип 102 | Вигляд 103 | Список 104 | Сітка 105 | Сортування 106 | Вибрано 107 | Вибрати 108 | Завантажити як .zip 109 | Про додаток 110 | Дати на каву 111 | Ласкаво просимо!
Якщо вам сподобалася програма, ви можете підтримати мене зручним для вас способом. Ви також можете знайти всі новини про оновлення, зміни та помилки на GitHub.
]]>
112 | 113 | Захист від запису! 114 | Здається, SD-карту не змонтовано. Рекомендується вибрати іншу карту.\n\n 115 | Здається, ви вибрали неправильну папку.\n\n 116 | Не вдалося знайти дію для обробки \nACTION_OPEN_DOCUMENT_TREE\n\nСхоже, що Ваш пристрій не підтримує Android Storage Access Framework 117 | На Android ≥ 5 зовнішня SD-карта захищена від запису. Вам потрібно вибрати каталог із спеціального діалогового вікна Android, щоб надати HTTP FS права на запис.\n\nНа наступному діалоговому вікні перейдіть в корінь зовнішньої SD-карти і натисніть кнопку «Вибрати» внизу 118 | Повторити 119 | 120 | Ласкаво просимо до версії PRO!
З будь-яких питань або пропозицій ви можете звернутися за адресою електронної пошти tiar.develop@gmail.com.
]]>
121 | Тактильна вібрація 122 | Розмиття в діалогах 123 | Дозволи 124 | Дозволи для папок 125 | Інтерфейси 126 | Безпека 127 | Відкрити посилання? 128 | Посилання відкриється у вашому стандартному браузері, який не має відношення до додатка 129 | Увійти 130 | Логін 131 | Щоб продовжити, увійдіть 132 | Завантажити 133 | Створити 134 | Тема 135 | На весь екран 136 | У новій вкладці 137 | Файл 138 | Сервер відключено 139 | Повторити 140 | Приховати 141 | Скасувати все 142 | Очистити кеш 143 | Приховати файли 144 | Додати 145 | Версія Pro доступна в Google Play. 146 | Шлях до файлу 147 | Жорстке перенаправлення 148 | 149 | Вийти з додатку? 150 | Повністю закрити додаток (зупинити всі запущені процеси)? 151 | Необхідний дозвіл 152 | Додатку потрібен доступ до файлової системи пристрою для належної роботи. \nОсновна функція додатку - запуск файлівого сервера Http/WebDAV, який дозволяє керувати файловою системою вашого пристрою. 153 | 154 | Переадресації 155 | 156 | Користувачі 157 | Користувач 158 |
-------------------------------------------------------------------------------- /res/values-vi/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Trang chủ 3 | Cài đặt 4 | Về 5 | Phiên bản %s 6 | Logs 7 | Web 8 | 9 | Chia sẻ 10 | Máy chủ: 11 | WiFi: 12 | Cổng: 13 | 14 | Cần cấp quyền để ứng dụng hoạt động đúng cách. 15 | Bạn có thể cấp quyền thông báo để ứng dụng hoạt động đúng cách hoặc hoãn lại cho sau (điều này không ảnh hưởng đến chức năng). 16 | OK 17 | Cài đặt 18 | Thoát 19 | Sau 20 | 21 | CỔNG 22 | Tên 23 | 24 | Cài đặt ứng dụng 25 | Cài đặt máy chủ 26 | 27 | Đường dẫn đến thư mục 28 | 29 | Tệp khởi đầu 30 | 31 | Sử dụng mật khẩu 32 | Mật khẩu 33 | Thời gian phiên (phút) 34 | Quyền 35 | Đọc 36 | Ghi 37 | 38 | Loại máy chủ 39 | 40 | Khởi động máy chủ với thiết bị 41 | Chức năng này có thể không hoạt động trên một số thiết bị và một số thiết bị có thể yêu cầu thêm quyền hệ thống 42 | Đang phát triển 43 | Khởi động máy chủ với ứng dụng 44 | 45 | Phản hồi 46 | 47 | Nhấn vào đây để khởi động máy chủ tệp 48 | Và ở đây để hiển thị thông tin hoặc mã QR 49 | 50 | Lỗi, không có quyền! 51 | Dường như WiFi đã bị tắt! 52 | Để sử dụng máy chủ, người dùng phải ở trên cùng một mạng Wi-Fi. 53 | 54 | Tệp tin 55 | Tải lên tệp tin 56 | Thư mục 57 | tệp tin 58 | Tên 59 | Kích thước 60 | Ngày 61 | Hủy bỏ 62 | Đang tải lên 63 | Không thể mở tệp tin này. Bạn có muốn LƯU nó không? 64 | 65 | Không 66 | Đổi tên 67 | Di chuyển 68 | Tải xuống dưới dạng zip 69 | Tải xuống 70 | Xóa 71 | Tạo thư mục 72 | Tạo tệp tin 73 | Nhấn và giữ để sao chép 74 | Đã sao chép 75 | Tệp tin trống 76 | Xóa tệp tin log? 77 | Nhấn và giữ để xóa bộ lọc 78 | Logs sẽ tạm dừng trong khoảng thời gian này.\nBạn có thể tắt logs trong cài đặt 79 | Chọn ngôn ngữ 80 | Mặc định 81 | 82 | Dừng 83 | "Máy chủ đang chạy " 84 | 85 | Đăng xuất 86 | Muốn đăng xuất tất cả người dùng? 87 | 88 | Đánh giá 5 sao cho ứng dụng này 89 | Nhiều ứng dụng khác của tôi 90 | Chào mọi người, tôi là một nhà phát triển đến từ Ukraina. Nếu bạn có bất kỳ đề xuất nào cho ứng dụng hoặc hợp tác, hãy viết cho tôi. Đừng quên đánh giá ứng dụng - chỉ điều này khuyến khích bạn tiếp tục công việc trên ứng dụng. 91 | Về tác giả 92 | Trang chủ 93 | Làm mới 94 | Chứng chỉ 95 | Xuất chứng chỉ 96 | 97 | Cài đặt của người dùng 98 | Tiêu thụ pin 99 | Quyền pin 100 | Nhận kích thước của thư mục 101 | Nhận hình thu nhỏ 102 | Thông điệp chào mừng 103 | Để trống để ẩn 104 | Loại 105 | Xem 106 | Danh sách 107 | Lưới 108 | Sắp xếp 109 | Đã chọn 110 | Chọn 111 | Tải xuống dưới dạng .zip 112 | Về ứng dụng 113 | Ủng hộ cà phê 114 | Chào mừng!
Nếu bạn thích ứng dụng này, bạn có thể hỗ trợ tôi bằng cách thuận tiện cho bạn. Bạn cũng có thể tìm thấy tất cả các tin tức về cập nhật, thay đổi và lỗi trên GitHub.
]]>
115 | 116 | Bảo vệ Ghi! 117 | Dường như thẻ SD không được gắn. Khuyến nghị chọn một thẻ khác.\n\n 118 | Dường như bạn đã chọn sai thư mục.\n\n 119 | Không tìm thấy hoạt động để xử lý ý định\nACTION_OPEN_DOCUMENT_TREE\n\nThiết bị này dường như không hỗ trợ Khung truy cập Lưu trữ Android 120 | Trên Android ≥ 5, thẻ SD ngoại vi được bảo vệ ghi. Bạn cần chọn thư mục từ hộp thoại Android đặc biệt để cung cấp quyền ghi cho HTTP FS.\n\nTrong hộp thoại tiếp theo, vui lòng chuyển đến gốc của thẻ SD ngoại vi và nhấp vào nút ở dưới cùng, «Chọn» 121 | Thử lại 122 | 123 | Chào mừng đến phiên bản PRO!
Nếu có vấn đề hoặc đề xuất, bạn có thể liên hệ qua email tiar.develop@gmail.com.
]]>
124 | Rung haptic 125 | Mờ trong hộp thoại 126 | Quyền hạn 127 | Quyền hạn của thư mục 128 | Giao diện 129 | Bảo mật 130 | Mở liên kết? 131 | Liên kết sẽ được mở trong trình duyệt mặc định của bạn, không liên quan đến ứng dụng 132 | Đăng nhập 133 | Đăng nhập để tiếp tục 134 | Đăng nhập 135 | Tải lên 136 | Tạo 137 | Chủ đề 138 | Trên toàn màn hình 139 | Trong tab mới 140 | Tập tin 141 | Máy chủ đang ngoại tuyến 142 | Lặp lại 143 | Ẩn 144 | Hủy tất cả 145 | Xóa bộ nhớ cache 146 | Ẩn tập tin 147 | Thêm 148 | Phiên bản Pro có sẵn trên Google Play. 149 | Đường dẫn đến tập tin 150 | Chuyển hướng cứng 151 | 152 | Thoát ứng dụng? 153 | Thoát hoàn toàn khỏi ứng dụng (dừng tất cả các quy trình đang chạy)? 154 | Yêu cầu quyền truy cập 155 | Ứng dụng yêu cầu quyền truy cập vào hệ thống tệp của thiết bị để hoạt động. \nChức năng chính của ứng dụng là khởi chạy một máy chủ tệp Http/WebDAV, cho phép bạn quản lý hệ thống tệp của thiết bị. 156 | 157 | Chuyển hướng 158 | 159 | Người dùng 160 | Người dùng 161 |
-------------------------------------------------------------------------------- /res/values-zh/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 首頁 3 | 設定 4 | 關於 5 | 版本 %s 6 | 日誌 7 | 網頁 8 | 9 | 分享 10 | 伺服器: 11 | 无线上网: 12 | 埠: 13 | 14 | 應用程式需要授權才能正確運作。 15 | 您可以授權通知以使應用程式正常運作。或者稍後再延遲(不會影響功能)。 16 | 確定 17 | 設定 18 | 退出 19 | 稍後 20 | 21 | 22 | 23 | 名稱 24 | 25 | 應用程式設定 26 | 伺服器設定 27 | 28 | 資料夾路徑 29 | 30 | 初始文件 31 | 使用密碼 32 | 密碼 33 | 會話時間(分鐘) 34 | 權限 35 | 讀取 36 | 寫入 37 | 38 | 服务器类型 39 | 使用裝置啟動伺服器 40 | 此功能可能在某些設備上無法運作,並且某些設備可能需要額外的系統權限。 41 | 開發中 42 | 啟動伺服器與應用程式 43 | 44 | 意見回饋 45 | 46 | 點擊這裡啟動檔案伺服器 47 | 以及這裡顯示資訊或QR碼 48 | 49 | 錯誤,無權限! 50 | 看起來Wi-Fi已關閉! 51 | 要使用伺服器,用戶必須在相同的Wi-Fi網路上。 52 | 53 | 檔案 54 | 上傳檔案 55 | 資料夾 56 | 檔案 57 | 名稱 58 | 大小 59 | 日期 60 | 取消 61 | 上傳中 62 | 無法打開此檔案。要儲存嗎? 63 | 64 | 65 | 重新命名 66 | 移動 67 | 下載為ZIP 68 | 下載 69 | 刪除 70 | 建立資料夾 71 | 建立檔案 72 | 長按以複製 73 | 已複製 74 | 75 | 檔案是空的 76 | 刪除日誌檔案嗎? 77 | 長按以清除篩選器 78 | 在此期間日誌將被暫停。\n您可以在設定中禁用日誌。 79 | 選擇語言 80 | 默認 81 | 82 | 停止 83 | 伺服器運行中 84 | 85 | 登出 86 | 要登出所有用戶嗎? 87 | 88 | 評價此應用程式 89 | 更多我的應用程式 90 | 大家好,我是來自烏克蘭的開發者。如果您對應用程式有任何建議或合作的想法 - 請與我聯繫。不要忘記評價應用程式 - 這是唯一能激勵我繼續開發的動力。 91 | 關於作者 92 | 首頁 93 | 刷新 94 | 证书 95 | 出口证书 96 | 97 | 98 | 客户端设置 99 | 电池消耗 100 | 电池权限 101 | 获取文件夹大小 102 | 获取缩略图 103 | 欢迎对话消息 104 | 留空以隐藏 105 | 类型 106 | 查看 107 | 列表 108 | 网格 109 | 排序 110 | 已选择 111 | 选择 112 | 下载为 .zip 113 | 关于应用 114 | 赞助咖啡 115 | 歡迎!
如果您喜歡這個應用程式,您可以通過您方便的方式支持我。您還可以在GitHub上找到有關更新、變更和錯誤的所有新聞。
]]>
116 | 117 | 写保护! 118 | 似乎 SD 卡未挂载。建议选择其他卡。\n\n 119 | 似乎您选择了错误的文件夹。\n\n 120 | 找不到处理意图\nACTION_OPEN_DOCUMENT_TREE\n\n此设备似乎不支持 Android 存储访问框架 121 | 在 Android ≥ 5 上,外部 SD 卡受到写保护。您需要从一个特殊的 Android 对话框中选择目录,以授予 HTTP FS 写入权限。\n\n在下一个对话框中,请转到外部 SD 卡的根目录,并单击底部的按钮,«选择» 122 | 重试 123 | 124 | 欢迎使用 PRO 版本!
如有问题或建议,请发送邮件至tiar.develop@gmail.com
]]>
125 | 触觉振动 126 | 对话框模糊 127 | 权限 128 | 文件夹权限 129 | 接口 130 | 安全 131 | 打开链接? 132 | 链接将在默认浏览器中打开,与应用程序无关 133 | 登录 134 | 登录以继续 135 | 登录 136 | 上传 137 | 创建 138 | 主题 139 | 全屏 140 | 新标签页中 141 | 文件 142 | 服务器已离线 143 | 重复 144 | 隐藏 145 | 取消全部 146 | 清除缓存 147 | 隐藏文件 148 | 添加 149 | Pro 版本可在 Google Play 上获取。 150 | 文件路径 151 | 强制重定向 152 | 153 | 退出应用程序? 154 | 完全退出应用程序(停止所有运行的进程)? 155 | 需要权限 156 | 应用程序需要访问设备的文件系统才能正常运行。\n应用程序的主要功能是启动一个 Http/WebDAV 文件服务器,允许您管理设备的文件系统。 157 | 158 | 重定向 159 | 160 | 用戶 161 | 用戶 162 |
-------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8080 4 | port_value 5 | name_client_value 6 | name_serv_value 7 | path_value 8 | version_value 9 | file_value 10 | usefile_value 11 | file_redirect_value 12 | secure_key 13 | pass_key 14 | session_key 15 | session_num_key 16 | permissions_key 17 | permissions_key_read 18 | permissions_key_write 19 | ssl_key 20 | servtype_key0 21 | client_con 22 | CIO 23 | Netty 24 | Netty (custom) 25 | Jetty 26 | WebDAV 27 | webdav_key 28 | RSS 29 | rss_key 30 | start_app_key 31 | show_logs 32 | show_logs_all 33 | start_server_key 34 | feedback_key 35 | battery_folder_size_key 36 | battery_thumbnail_key 37 | welcome_dialog_key 38 | welcome_dialog_show_key 39 | battery_key 40 | permission_folder_key 41 | use_vibro 42 | use_blur 43 | 44 | Български 45 | Deutsch 46 | Dutch 47 | English 48 | Español 49 | Français 50 | हिंदी 51 | 日本語 52 | 한국인 53 | Polska 54 | Portuguese 55 | Portuguese (Brazilian) 56 | Українська 57 | Tiếng Việt 58 | 漢語 59 | 60 | HTTP FS 61 | 62 | Home 63 | Settings 64 | About 65 | Version %s 66 | Logs 67 | Web 68 | 69 | Share 70 | Server: 71 | WiFi: 72 | Port: 73 | 74 | Permissions must be granted for the application to work correctly. 75 | You can give notifications permission for notifications in order for the application to work correctly. Or postpone it until later (this does not affect functionality) 76 | OK 77 | Settings 78 | Exit 79 | Later 80 | 81 | PORT 82 | Name 83 | 84 | App settings 85 | Server settings 86 | 87 | Path to folder 88 | 89 | Initial file 90 | 91 | Use password 92 | Password 93 | Session time (min) 94 | Permissions 95 | Read 96 | Write 97 | 98 | Server type 99 | 100 | 101 | Start server with device 102 | This function may not work on some devices and some devices may require additional system permission 103 | under development 104 | Start server with app 105 | 106 | Feedback 107 | 108 | 109 | Click here to start the file server 110 | And here to show info or QR 111 | 112 | Error no permission! 113 | Look like WiFi is disabled! 114 | To use the server, users must be on the same Wi-Fi network. 115 | 116 | 117 | Files 118 | Upload file 119 | Folder 120 | files 121 | Name 122 | Size 123 | Date 124 | Cancel 125 | Uploading 126 | This file cannot be opened. Want to SAVE it? 127 | Yes 128 | No 129 | Rename 130 | Move 131 | Download as zip 132 | Download 133 | Delete 134 | Create folder 135 | Create file 136 | Long press to copy 137 | Copied 138 | File is empty 139 | Delete log file? 140 | Long click to clear filter 141 | Logs will be paused in this time.\nYou can disable logs in settings 142 | 143 | Select Language 144 | Default 145 | 146 | Stop 147 | "Server running " 148 | 149 | Logout 150 | Want to log out all users? 151 | 152 | Rate this app 153 | More apps from me 154 | Hello everyone, I\'m a developer from Ukraine. If you have any suggestions for an app or cooperation - write to me. Do not forget to rate the application - only this motivates you to continue working on the app. 155 | About author 156 | Home 157 | Refresh 158 | Certificate 159 | Export certificate 160 | 161 | Client settings 162 | Battery expense 163 | Battery permissions 164 | Get size of folder 165 | Get thumbnails 166 | Welcome dialog massage 167 | Make blank to hide 168 | Type 169 | View 170 | List 171 | Grid 172 | Sorting 173 | Selected 174 | Select 175 | Download as .zip 176 | About app 177 | Give for coffee 178 | Welcome!
If you liked the application, You can support me in a way convenient for you. You can also find all the news about updates, changes and bugs on the GitHub.
]]>
179 | 180 | Write protection! 181 | It seems like the SD card is unmounted. Recommend choosing a different card.\n\n 182 | It seems like you have chosen the wrong folder.\n\n 183 | No activity found to handle intent\nACTION_OPEN_DOCUMENT_TREE\n\nThis device does not appear to support the Android Storage Access Framework 184 | On Android ≥ 5, the external SD card is write protected. You need to choose the directory from a special Android dialog to give HTTP FS write rights. \n\nIb the next dialog, please go to the root of the external SD-card and click on the button at the bottom, «Select» 185 | Retry 186 | 187 | Welcome to the PRO version!
For any problems or suggestions, you can write to tiar.develop@gmail.com.
]]>
188 | Haptics vibration 189 | Blur in dialogs 190 | Permissions 191 | Permissions for folders 192 | Interfaces 193 | Security 194 | Open link? 195 | The link will be opened in your default browser which is not related to the application 196 | Login 197 | Login to continue 198 | Login 199 | Upload 200 | Create 201 | Theme 202 | On full screen 203 | In new tab 204 | File 205 | Server is offline 206 | Repeat 207 | Hide 208 | Cancel all 209 | Clear cache 210 | Hide files 211 | Add 212 | The Pro version is available on the Google Play. 213 | Path to file 214 | Hard redirect 215 | 216 | Exit the application? 217 | Quit the application completely (stop all running processes)? 218 | Need require permission 219 | The application requires access to the device\'s file system to function. \nThe main feature of the application is launching a Http/WebDAV file server, which allows you to manage your device\'s file system. 220 | 221 | Redirects 222 | 223 | Users 224 | User 225 | From 226 | to 227 | File or url 228 | Check connection socket 229 |
-------------------------------------------------------------------------------- /screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/.DS_Store -------------------------------------------------------------------------------- /screenshots/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/1.webp -------------------------------------------------------------------------------- /screenshots/2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/2.webp -------------------------------------------------------------------------------- /screenshots/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/3.webp -------------------------------------------------------------------------------- /screenshots/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/4.webp -------------------------------------------------------------------------------- /screenshots/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/5.webp -------------------------------------------------------------------------------- /screenshots/banner1280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/banner1280.png -------------------------------------------------------------------------------- /screenshots/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/play_store_512.png -------------------------------------------------------------------------------- /screenshots/recording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiarait/HTTP-FS-file-server/26c4c72c8b84e4b13f2c149cf1120338d5b7ba04/screenshots/recording.gif --------------------------------------------------------------------------------