├── .gitignore ├── .tx └── config ├── LICENSE ├── Makefile ├── appinfo ├── app.php ├── info.xml └── routes.php ├── css └── drop.scss ├── img ├── app-dark.svg └── app.svg ├── js ├── dist │ └── dropzone.js └── drop.js ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── az.js ├── az.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── br.js ├── br.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── cy_GB.js ├── cy_GB.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fo.js ├── fo.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gd.js ├── gd.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── hy.js ├── hy.json ├── ia.js ├── ia.json ├── id.js ├── id.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── kn.js ├── kn.json ├── ko.js ├── ko.json ├── lb.js ├── lb.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── my.js ├── my.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── ps.js ├── ps.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── si.js ├── si.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sr@latin.js ├── sr@latin.json ├── sv.js ├── sv.json ├── ta.js ├── ta.json ├── th.js ├── th.json ├── tk.js ├── tk.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── AppInfo │ └── Application.php ├── BackgroundJob │ └── CleanUpJob.php ├── Capabilities.php └── Controller │ └── DropController.php ├── list.php └── templates └── drop.php /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- 1 | [main] 2 | host = https://www.transifex.com 3 | lang_map = nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja, bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu 4 | 5 | [o:nextcloud:p:nextcloud:r:dropit] 6 | file_filter = translationfiles//dropit.po 7 | source_file = translationfiles/templates/dropit.pot 8 | source_lang = en 9 | type = PO 10 | 11 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for building the project 2 | 3 | app_name=dropit 4 | project_dir=$(CURDIR)/../$(app_name) 5 | build_dir=$(CURDIR)/build/artifacts 6 | sign_dir=$(build_dir)/sign 7 | appstore_dir=$(build_dir)/appstore 8 | source_dir=$(build_dir)/source 9 | package_name=$(app_name) 10 | cert_dir=$(HOME)/.nextcloud/certificates 11 | 12 | appstore: 13 | mkdir -p $(sign_dir) 14 | rsync -a \ 15 | --exclude=.git \ 16 | --exclude=build \ 17 | --exclude=.gitignore \ 18 | --exclude=.travis.yml \ 19 | --exclude=.scrutinizer.yml \ 20 | --exclude=CONTRIBUTING.md \ 21 | --exclude=composer.json \ 22 | --exclude=composer.lock \ 23 | --exclude=composer.phar \ 24 | --exclude=l10n/.tx \ 25 | --exclude=l10n/no-php \ 26 | --exclude=Makefile \ 27 | --exclude=nbproject \ 28 | --exclude=screenshots \ 29 | --exclude=phpunit*xml \ 30 | --exclude=tests \ 31 | --exclude=vendor/bin \ 32 | $(project_dir) $(sign_dir) 33 | @echo "Signing…" 34 | tar -czf $(build_dir)/$(app_name).tar.gz \ 35 | -C $(sign_dir) $(app_name) 36 | openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64 37 | -------------------------------------------------------------------------------- /appinfo/app.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * @author Roeland Jago Douma 6 | * 7 | * @license GNU AGPL version 3 or any later version 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as 11 | * published by the Free Software Foundation, either version 3 of the 12 | * License, or (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU Affero General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * 22 | */ 23 | 24 | $app = \OC::$server->query(\OCA\DropIt\AppInfo\Application::class); 25 | 26 | \OCA\Files\App::getNavigationManager()->add(function () { 27 | $l = \OC::$server->getL10N('dropit'); 28 | return [ 29 | 'id' => 'dropit', 30 | 'appname' => 'dropit', 31 | 'icon' => 'dropit', 32 | 'script' => 'list.php', 33 | 'order' => 1, 34 | 'name' => $l->t('DropIt'), 35 | 'classes' => 'pinned', 36 | ]; 37 | }); 38 | -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | dropit 4 | DropIt 5 | Quickly share text or files by dropping them to your Nextcloud! 6 | Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it. 7 | 0.4.0 8 | agpl 9 | Roeland Jago Douma 10 | DropIt 11 | social 12 | files 13 | https://github.com/rullzer/dropit 14 | https://github.com/rullzer/dropit/issues 15 | https://github.com/rullzer/dropit.git 16 | 17 | 18 | 19 | 20 | 21 | 22 | OCA\DropIt\BackgroundJob\CleanUpJob 23 | 24 | 25 | -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * @author Roeland Jago Douma 6 | * 7 | * @license GNU AGPL version 3 or any later version 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as 11 | * published by the Free Software Foundation, either version 3 of the 12 | * License, or (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU Affero General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * 22 | */ 23 | 24 | return [ 25 | 'routes' => [ 26 | [ 27 | 'name' => 'drop#upload', 28 | 'url' => '/drop', 29 | 'verb' => 'POST', 30 | ], 31 | [ 32 | 'name' => 'drop#text', 33 | 'url' => '/text', 34 | 'verb' => 'POST', 35 | ], 36 | ], 37 | ]; 38 | -------------------------------------------------------------------------------- /css/drop.scss: -------------------------------------------------------------------------------- 1 | $containerMargin: 20px; 2 | 3 | #app-content-dropit { 4 | display: flex; 5 | flex-direction: column; 6 | height: 100%; 7 | 8 | &.hidden { 9 | display: none; 10 | } 11 | 12 | .drop-area, 13 | .text-area, .text-area:hover { 14 | border-radius: 5px; 15 | border: 1.5px dashed var(--color-border) !important; 16 | min-height: 100px; 17 | margin: $containerMargin; 18 | } 19 | 20 | .drop-area { 21 | padding: 30px 8px; 22 | text-align: center; 23 | cursor: pointer; 24 | z-index: 2; 25 | 26 | .icon-download { 27 | background-size: 32px 32px; 28 | width: 32px; 29 | height: 32px; 30 | margin: auto; 31 | margin-bottom: 10px; 32 | opacity: .5; 33 | z-index: 1; 34 | } 35 | p { 36 | opacity: .5; 37 | z-index: 1; 38 | } 39 | .dz-upload { 40 | display: block; 41 | background-color: var(--color-primary); 42 | height: 10px; 43 | } 44 | .dz-success-mark, .dz-error-mark { 45 | display: none; 46 | } 47 | } 48 | 49 | .drop-text { 50 | position: relative; 51 | flex-grow: 1; 52 | display: flex; 53 | flex-direction: column; 54 | min-height: 120px; 55 | .hint { 56 | position: absolute; 57 | width: 100%; 58 | text-align:center; 59 | z-index: 1; 60 | margin-top: 30px; 61 | p { 62 | opacity: .5; 63 | } 64 | .icon-filetype-text { 65 | background-size: 32px 32px; 66 | width: 32px; 67 | height: 32px; 68 | margin: auto; 69 | margin-bottom: 10px; 70 | } 71 | } 72 | .text-area, .text-area:hover { 73 | margin-top: 0; 74 | width: calc(100% - 2 * #{$containerMargin}); 75 | height: 100%; 76 | flex-grow: 1; 77 | z-index: 2; 78 | background-color: transparent !important; 79 | 80 | } 81 | .text-area:focus { 82 | background-color: var(--color-main-background) !important; 83 | } 84 | .text-submit { 85 | position: absolute; 86 | bottom: 30px; 87 | right: 30px; 88 | z-index: 2; 89 | } 90 | } 91 | 92 | .url-share { 93 | display: none; 94 | margin: $containerMargin; 95 | margin-top: 0; 96 | 97 | input { 98 | max-width: 400px; 99 | width: calc(100% - 40px); 100 | } 101 | 102 | .icon-clippy { 103 | display: inline-block; 104 | background-size: 16px 16px; 105 | margin-left: -30px; 106 | position: relative; 107 | top: 2px; 108 | cursor: pointer; 109 | } 110 | } 111 | } 112 | 113 | 114 | .nav-icon-dropit, 115 | .icon-dropit { 116 | @include icon-color('app', 'dropit', $color-black, 1); 117 | } 118 | -------------------------------------------------------------------------------- /img/app-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/app.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/drop.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | var dropzone = new Dropzone( 4 | '#app-content-dropit .drop-area', { 5 | uploadMultiple: false, 6 | createImageThumbnails: false, 7 | url: OC.generateUrl('apps/dropit/drop'), 8 | parallelUploads: 1, 9 | paramName: 'data', 10 | clickable: ['.drop-area', '.drop-area .dz-clickable'], 11 | init: function() { 12 | var self = this; 13 | this.on('drop', function() { 14 | 15 | }); 16 | this.on('complete', function(file) { 17 | self.removeFile(file); 18 | }); 19 | this.on('success', function(file, resp) { 20 | self.removeFile(file); 21 | $('#app-content-dropit #url-drop').val(resp.link); 22 | $('.url-share').slideDown(); 23 | }); 24 | } 25 | } 26 | ); 27 | 28 | document.onpaste = function(event){ 29 | var items = (event.clipboardData || event.originalEvent.clipboardData).items; 30 | for (index in items) { 31 | var item = items[index]; 32 | if (item.kind === 'file') { 33 | dropzone.addFile(item.getAsFile()) 34 | } 35 | } 36 | } 37 | 38 | new Clipboard('#app-content-dropit .copyButton'); 39 | 40 | $('#app-content-dropit .text-submit').on('click', function() { 41 | $.ajax( 42 | OC.generateUrl('apps/dropit/text'), 43 | { 44 | data: {text: $('#app-content-dropit .text-area')[0].value}, 45 | method: "POST", 46 | } 47 | ).done(function(resp) { 48 | $('#app-content-dropit #url-drop').val(resp.link); 49 | $('.url-share').slideDown(); 50 | }); 51 | }); 52 | 53 | $('#app-content-dropit .text-area').on('change', function() { 54 | if (!$.trim($(this).val())) { 55 | $('.drop-text .hint').show(); 56 | } else { 57 | $('.drop-text .hint').hide(); 58 | } 59 | }); 60 | } 61 | ); 62 | -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rullzer/dropit/2fadbce8a1f8ba48639df4f4788170a9f07e56f7/l10n/.gitkeep -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopieer" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopieer" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "أَفْلِته", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "مشاركة نصوصك أو ملفاتك بسرعة بمجرد إفلاتها في نكست كلاود", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "فقط أفلت النصوص أو البيانات بسرعة في نكست كلاود. عندها، لا يهمك أين سيتم تخزينها؛ إهتم فقط بمن ستتم معه المشاركة. ", 7 | "Drop your file here to generate a link" : "قم بإفلات ملفك هنا ليتم توليد رابط ", 8 | "Write here what you want to drop" : "أكتب هنا ما تريد أن تُفلته", 9 | "Drop text" : "أفلت نصاً", 10 | "Link to share" : "رابط المشاركة", 11 | "Copy" : "نسخ" 12 | }, 13 | "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); 14 | -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "أَفْلِته", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "مشاركة نصوصك أو ملفاتك بسرعة بمجرد إفلاتها في نكست كلاود", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "فقط أفلت النصوص أو البيانات بسرعة في نكست كلاود. عندها، لا يهمك أين سيتم تخزينها؛ إهتم فقط بمن ستتم معه المشاركة. ", 5 | "Drop your file here to generate a link" : "قم بإفلات ملفك هنا ليتم توليد رابط ", 6 | "Write here what you want to drop" : "أكتب هنا ما تريد أن تُفلته", 7 | "Drop text" : "أفلت نصاً", 8 | "Link to share" : "رابط المشاركة", 9 | "Copy" : "نسخ" 10 | },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" 11 | } -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Comparti aína testos o ficheros soltándolos en Nextcloud!", 6 | "Drop your file here to generate a link" : "Suelta'l ficheru equí pa xenerar un enllaz", 7 | "Write here what you want to drop" : "Escribi equí lo que quies soltar", 8 | "Copy" : "Copiar" 9 | }, 10 | "nplurals=2; plural=(n != 1);"); 11 | -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Comparti aína testos o ficheros soltándolos en Nextcloud!", 4 | "Drop your file here to generate a link" : "Suelta'l ficheru equí pa xenerar un enllaz", 5 | "Write here what you want to drop" : "Escribi equí lo que quies soltar", 6 | "Copy" : "Copiar" 7 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 8 | } -------------------------------------------------------------------------------- /l10n/az.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopyala" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/az.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopyala" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Капіяваць" 5 | }, 6 | "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); 7 | -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Капіяваць" 3 | },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" 4 | } -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt /Преместете/пуснете/го/", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Бързо споделяне на текстови файлове, чрез местене с мишката в Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Преместете бързо текст и данни в Nextcloud. Функционалността е идеална за случаите когато просто желаете да споделите файл и съхранението му не е от значение. ", 7 | "Drop your file here to generate a link" : "Преместете файл, тук, за да се генерира връзка", 8 | "Write here what you want to drop" : "Въведете текст", 9 | "Drop text" : "Преместете/пуснете/ текст", 10 | "Link to share" : "Връзка за споделяне", 11 | "Copy" : "Копирай" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt /Преместете/пуснете/го/", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Бързо споделяне на текстови файлове, чрез местене с мишката в Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Преместете бързо текст и данни в Nextcloud. Функционалността е идеална за случаите когато просто желаете да споделите файл и съхранението му не е от значение. ", 5 | "Drop your file here to generate a link" : "Преместете файл, тук, за да се генерира връзка", 6 | "Write here what you want to drop" : "Въведете текст", 7 | "Drop text" : "Преместете/пуснете/ текст", 8 | "Link to share" : "Връзка за споделяне", 9 | "Copy" : "Копирай" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Rannit testennoù ha restroù en ul lakaat anezho en o Nexcmoud !", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Lakit testennoù ha roadennoù war o Nextcloud. Pa o peus c'houant rannan ur restr ne rit ket forzh eus pelkec'h eo enrollet.", 7 | "Drop your file here to generate a link" : "Lakait o restr aman evit krouiñ ul liamm", 8 | "Write here what you want to drop" : "Skrivit amañ petra o peus c'houant lakat", 9 | "Drop text" : "Lakit un destenn", 10 | "Link to share" : "Liamm da rannan", 11 | "Copy" : "Eilañ" 12 | }, 13 | "nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); 14 | -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Rannit testennoù ha restroù en ul lakaat anezho en o Nexcmoud !", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Lakit testennoù ha roadennoù war o Nextcloud. Pa o peus c'houant rannan ur restr ne rit ket forzh eus pelkec'h eo enrollet.", 5 | "Drop your file here to generate a link" : "Lakait o restr aman evit krouiñ ul liamm", 6 | "Write here what you want to drop" : "Skrivit amañ petra o peus c'houant lakat", 7 | "Drop text" : "Lakit un destenn", 8 | "Link to share" : "Liamm da rannan", 9 | "Copy" : "Eilañ" 10 | },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" 11 | } -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Deixar-ho anar", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Compartiu ràpidament text o fitxers deixant-los al vostre Nextcloud.", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Deixeu de manera senzilla text i dades ràpidament al vostre Nextcloud. Per a aquells moments que només voleu compartir un fitxer, però no us importa a on emmagatzemar-lo.", 7 | "Drop your file here to generate a link" : "Deixeu anar el vostre fitxer aquí per generar un enllaç", 8 | "Write here what you want to drop" : "Escriviu aquí el que voleu deixar anar", 9 | "Drop text" : "Deixa anar el text", 10 | "Link to share" : "Enllaç per compartir", 11 | "Copy" : "Copia" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Deixar-ho anar", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Compartiu ràpidament text o fitxers deixant-los al vostre Nextcloud.", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Deixeu de manera senzilla text i dades ràpidament al vostre Nextcloud. Per a aquells moments que només voleu compartir un fitxer, però no us importa a on emmagatzemar-lo.", 5 | "Drop your file here to generate a link" : "Deixeu anar el vostre fitxer aquí per generar un enllaç", 6 | "Write here what you want to drop" : "Escriviu aquí el que voleu deixar anar", 7 | "Drop text" : "Deixa anar el text", 8 | "Link to share" : "Enllaç per compartir", 9 | "Copy" : "Copia" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Pohotově sdílejte texty a soubory jejich přetažením do Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Prostě jen přetáhněte text a data do Nextcloud. Určeno pro okamžiky, kdy jen potřebujete nasdílet soubor a je vám jedno, kde je uložený.", 7 | "Drop your file here to generate a link" : "Odkaz vytvoříte přetažením souboru sem", 8 | "Write here what you want to drop" : "Sem zapište co chcete poslat", 9 | "Drop text" : "Doprovodný text", 10 | "Link to share" : "Odkaz pro sdílení", 11 | "Copy" : "Kopírovat" 12 | }, 13 | "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); 14 | -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Pohotově sdílejte texty a soubory jejich přetažením do Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Prostě jen přetáhněte text a data do Nextcloud. Určeno pro okamžiky, kdy jen potřebujete nasdílet soubor a je vám jedno, kde je uložený.", 5 | "Drop your file here to generate a link" : "Odkaz vytvoříte přetažením souboru sem", 6 | "Write here what you want to drop" : "Sem zapište co chcete poslat", 7 | "Drop text" : "Doprovodný text", 8 | "Link to share" : "Odkaz pro sdílení", 9 | "Copy" : "Kopírovat" 10 | },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" 11 | } -------------------------------------------------------------------------------- /l10n/cy_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copïo" 5 | }, 6 | "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); 7 | -------------------------------------------------------------------------------- /l10n/cy_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copïo" 3 | },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" 4 | } -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Del nemt tekst og filer ved at droppe dem til din Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Drop tekst og data nemt til din Nextcloud. Til de gange hvor du vil dele en fil og det ikke har betydning, hvor den er gemt.", 7 | "Drop your file here to generate a link" : "Drop din fil here for at oprette et link", 8 | "Write here what you want to drop" : "Skriv her hvad du vil droppe", 9 | "Drop text" : "Drop tekst", 10 | "Link to share" : "Link at dele", 11 | "Copy" : "Kopier" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Del nemt tekst og filer ved at droppe dem til din Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Drop tekst og data nemt til din Nextcloud. Til de gange hvor du vil dele en fil og det ikke har betydning, hvor den er gemt.", 5 | "Drop your file here to generate a link" : "Drop din fil here for at oprette et link", 6 | "Write here what you want to drop" : "Skriv her hvad du vil droppe", 7 | "Drop text" : "Drop tekst", 8 | "Link to share" : "Link at dele", 9 | "Copy" : "Kopier" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Schnell Text oder Dateien teilen, indem du sie in deine Nextcloud ziehst!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Ziehe einfach Text und Daten auf deine Nextcloud. Immer dann, wenn du Dateien nur teilen möchtest und du dich nicht darum kümmern möchtest, wo diese gespeichert werden.", 7 | "Drop your file here to generate a link" : "Lege deine Datei hier ab, um einen Link zu erzeugen", 8 | "Write here what you want to drop" : "Hier den Text eingeben, der geteilt werden soll", 9 | "Drop text" : "Text speichern", 10 | "Link to share" : "Link zum Teilen", 11 | "Copy" : "Kopieren" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Schnell Text oder Dateien teilen, indem du sie in deine Nextcloud ziehst!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Ziehe einfach Text und Daten auf deine Nextcloud. Immer dann, wenn du Dateien nur teilen möchtest und du dich nicht darum kümmern möchtest, wo diese gespeichert werden.", 5 | "Drop your file here to generate a link" : "Lege deine Datei hier ab, um einen Link zu erzeugen", 6 | "Write here what you want to drop" : "Hier den Text eingeben, der geteilt werden soll", 7 | "Drop text" : "Text speichern", 8 | "Link to share" : "Link zum Teilen", 9 | "Copy" : "Kopieren" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Teilen Sie schnell Text oder Dateien, indem Sie sie einfach in Ihre Nextcloud ziehen!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Ziehen Sie schnell und einfach Text und Daten in Ihre Nextcloud, für die Fälle, in denen Sie einfach Dateien teilen möchten und es Ihnen egal ist, wo diese gespeichert werden.", 7 | "Drop your file here to generate a link" : "Legen Sie Ihre Datei hier ab, um einen Link zu erzeugen", 8 | "Write here what you want to drop" : "Hier den Text eingeben, der geteilt werden soll", 9 | "Drop text" : "Text speichern", 10 | "Link to share" : "Link zum Teilen", 11 | "Copy" : "Kopieren" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Teilen Sie schnell Text oder Dateien, indem Sie sie einfach in Ihre Nextcloud ziehen!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Ziehen Sie schnell und einfach Text und Daten in Ihre Nextcloud, für die Fälle, in denen Sie einfach Dateien teilen möchten und es Ihnen egal ist, wo diese gespeichert werden.", 5 | "Drop your file here to generate a link" : "Legen Sie Ihre Datei hier ab, um einen Link zu erzeugen", 6 | "Write here what you want to drop" : "Hier den Text eingeben, der geteilt werden soll", 7 | "Drop text" : "Text speichern", 8 | "Link to share" : "Link zum Teilen", 9 | "Copy" : "Kopieren" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Διαμοιράστε γρήγορα κείμενο ή αρχεία τοποθετώντας τα στο Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Απλώς αποθέστε τα δεδομένα σας στο Nextcloud. Για τις φορές που θέλετε να διαμοιράσετε ένα αρχείο χωρίς να σας νοιάζει που θα αποθηκευτεί.", 7 | "Drop your file here to generate a link" : "Αποθέστε το αρχείο σας για την δημιουργία συνδέσμου", 8 | "Write here what you want to drop" : "Πληκτρολογήστε εδώ τί θέλετε να αποθέσετε", 9 | "Drop text" : "Απόθεση κειμένου", 10 | "Link to share" : "Σύνδεσμος για διαμοιρασμό", 11 | "Copy" : "Αντιγραφή" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Διαμοιράστε γρήγορα κείμενο ή αρχεία τοποθετώντας τα στο Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Απλώς αποθέστε τα δεδομένα σας στο Nextcloud. Για τις φορές που θέλετε να διαμοιράσετε ένα αρχείο χωρίς να σας νοιάζει που θα αποθηκευτεί.", 5 | "Drop your file here to generate a link" : "Αποθέστε το αρχείο σας για την δημιουργία συνδέσμου", 6 | "Write here what you want to drop" : "Πληκτρολογήστε εδώ τί θέλετε να αποθέσετε", 7 | "Drop text" : "Απόθεση κειμένου", 8 | "Link to share" : "Σύνδεσμος για διαμοιρασμό", 9 | "Copy" : "Αντιγραφή" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Quickly share text or files by dropping them to your Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it.", 7 | "Drop your file here to generate a link" : "Drop your file here to generate a link", 8 | "Write here what you want to drop" : "Write here what you want to drop", 9 | "Drop text" : "Drop text", 10 | "Link to share" : "Link to share", 11 | "Copy" : "Copy" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Quickly share text or files by dropping them to your Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it.", 5 | "Drop your file here to generate a link" : "Drop your file here to generate a link", 6 | "Write here what you want to drop" : "Write here what you want to drop", 7 | "Drop text" : "Drop text", 8 | "Link to share" : "Link to share", 9 | "Copy" : "Copy" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Tujkunhavigo", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Rapide kunhavigu tekston aŭ dosierojn ŝovmetante ilin en via Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Ŝovu kaj demetu tekston kaj datumojn rapide al via Nextcloud. Utilas, kiam vi volas kunhavigi dosieron sen koncerniĝo, pri kie konservi ĝin.", 7 | "Drop your file here to generate a link" : "Ŝovu kaj demetu vian dosieron ĉi tie por farigi ligilon", 8 | "Write here what you want to drop" : "Skribu ĉi tie tion, kion vi volas kunhavigi", 9 | "Drop text" : "Ŝovu kaj demetu tekston", 10 | "Link to share" : "Ligilo al kunhavigo", 11 | "Copy" : "Kopii" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Tujkunhavigo", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Rapide kunhavigu tekston aŭ dosierojn ŝovmetante ilin en via Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Ŝovu kaj demetu tekston kaj datumojn rapide al via Nextcloud. Utilas, kiam vi volas kunhavigi dosieron sen koncerniĝo, pri kie konservi ĝin.", 5 | "Drop your file here to generate a link" : "Ŝovu kaj demetu vian dosieron ĉi tie por farigi ligilon", 6 | "Write here what you want to drop" : "Skribu ĉi tie tion, kion vi volas kunhavigi", 7 | "Drop text" : "Ŝovu kaj demetu tekston", 8 | "Link to share" : "Ligilo al kunhavigo", 9 | "Copy" : "Kopii" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Compartir rápidamente textos o archivos arrastrando y soltándolos en tu NextCloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Simplemente arrastre y suelte el texto y datos a su Nextcloud. Para esos momentos en los que solo quiere compartir un archivo, pero no le importa dónde guardarlo.", 7 | "Drop your file here to generate a link" : "Suelte su archivo aquí para generar un enlace", 8 | "Write here what you want to drop" : "Escriba aquí lo que desea soltar", 9 | "Drop text" : "Soltar texto", 10 | "Link to share" : "Enlace para compartir", 11 | "Copy" : "Copiar" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Compartir rápidamente textos o archivos arrastrando y soltándolos en tu NextCloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Simplemente arrastre y suelte el texto y datos a su Nextcloud. Para esos momentos en los que solo quiere compartir un archivo, pero no le importa dónde guardarlo.", 5 | "Drop your file here to generate a link" : "Suelte su archivo aquí para generar un enlace", 6 | "Write here what you want to drop" : "Escriba aquí lo que desea soltar", 7 | "Drop text" : "Soltar texto", 8 | "Link to share" : "Enlace para compartir", 9 | "Copy" : "Copiar" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Déjalo caer", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Comparte rápidamente texto o archivos soltándolos en tu Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Simplemente suelta texto y datos rápidamente en tu Nextcloud. Para aquellos momentos en los que solo quieres compartir un archivo pero no te importa dónde almacenarlo.", 7 | "Drop your file here to generate a link" : "Suelta tu archivo aquí para generar un enlace.", 8 | "Write here what you want to drop" : "Escribe aquí lo que deseas soltar.", 9 | "Drop text" : "Suelta el texto aquí.", 10 | "Link to share" : "Enlace para compartir.", 11 | "Copy" : "Copiar" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Déjalo caer", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Comparte rápidamente texto o archivos soltándolos en tu Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Simplemente suelta texto y datos rápidamente en tu Nextcloud. Para aquellos momentos en los que solo quieres compartir un archivo pero no te importa dónde almacenarlo.", 5 | "Drop your file here to generate a link" : "Suelta tu archivo aquí para generar un enlace.", 6 | "Write here what you want to drop" : "Escribe aquí lo que deseas soltar.", 7 | "Drop text" : "Suelta el texto aquí.", 8 | "Link to share" : "Enlace para compartir.", 9 | "Copy" : "Copiar" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Comparte textos o archivos rápidamente arrastrándolos a tu Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Solo suelta texto y datos en tu Nextcloud. Para esas ocasiones cuando quieres compartir un archivo pero no te importa donde almacenarlo. ", 7 | "Drop your file here to generate a link" : "Suelta tu archivo aqui para generar una liga", 8 | "Write here what you want to drop" : "Escribe aquí lo que deseas soltar", 9 | "Drop text" : "Suelta texto", 10 | "Link to share" : "Liga al elemento compartido", 11 | "Copy" : "Copiar" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "¡Comparte textos o archivos rápidamente arrastrándolos a tu Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Solo suelta texto y datos en tu Nextcloud. Para esas ocasiones cuando quieres compartir un archivo pero no te importa donde almacenarlo. ", 5 | "Drop your file here to generate a link" : "Suelta tu archivo aqui para generar una liga", 6 | "Write here what you want to drop" : "Escribe aquí lo que deseas soltar", 7 | "Drop text" : "Suelta texto", 8 | "Link to share" : "Liga al elemento compartido", 9 | "Copy" : "Copiar" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 7 | -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 4 | } -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopeeri" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopeeri" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Jaregin", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Sareratu azkar testua edo fitxategiak zure Nextcloud-era jareginda!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Aski duzu testua eta datuak zure Nextcloud-en azkar jaregitea. Oso erabilgarria fitxategi bat sareratu nahi duzunean eta ez dizu axola non gorde.", 7 | "Drop your file here to generate a link" : "Jaregin hemen zure fitxategia esteka bat sortzeko", 8 | "Write here what you want to drop" : "Idatzi hemen jaregin nahi duzuna", 9 | "Drop text" : "Jaregin testua", 10 | "Link to share" : "Partekatzeko esteka", 11 | "Copy" : "Kopiatu" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Jaregin", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Sareratu azkar testua edo fitxategiak zure Nextcloud-era jareginda!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Aski duzu testua eta datuak zure Nextcloud-en azkar jaregitea. Oso erabilgarria fitxategi bat sareratu nahi duzunean eta ez dizu axola non gorde.", 5 | "Drop your file here to generate a link" : "Jaregin hemen zure fitxategia esteka bat sortzeko", 6 | "Write here what you want to drop" : "Idatzi hemen jaregin nahi duzuna", 7 | "Drop text" : "Jaregin testua", 8 | "Link to share" : "Partekatzeko esteka", 9 | "Copy" : "Kopiatu" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "رها کنید", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "به سرعت متن یا فایل‌ها را با قراردادن آنها در Nextcloud خود به اشتراک بگذارید!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "فقط متن و داده را به سرعت در Nextcloud خود رها کنید. برای آن مواقعی که فقط می خواهید یک فایل را به اشتراک بگذارید، اما اهمیتی به محل ذخیره آن ندارید.", 7 | "Drop your file here to generate a link" : "فایل خود را اینجا رها کنید تا پیوند ایجاد شود.", 8 | "Write here what you want to drop" : "آنچه را که می خواهید رها کنید اینجا بنویسید.", 9 | "Drop text" : "رها کردن متن", 10 | "Link to share" : "لینک برای اشتراک گذاری", 11 | "Copy" : "کپی کردن" 12 | }, 13 | "nplurals=2; plural=(n > 1);"); 14 | -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "رها کنید", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "به سرعت متن یا فایل‌ها را با قراردادن آنها در Nextcloud خود به اشتراک بگذارید!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "فقط متن و داده را به سرعت در Nextcloud خود رها کنید. برای آن مواقعی که فقط می خواهید یک فایل را به اشتراک بگذارید، اما اهمیتی به محل ذخیره آن ندارید.", 5 | "Drop your file here to generate a link" : "فایل خود را اینجا رها کنید تا پیوند ایجاد شود.", 6 | "Write here what you want to drop" : "آنچه را که می خواهید رها کنید اینجا بنویسید.", 7 | "Drop text" : "رها کردن متن", 8 | "Link to share" : "لینک برای اشتراک گذاری", 9 | "Copy" : "کپی کردن" 10 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 11 | } -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Quickly share text or files by dropping them to your Nextcloud!" : "Jaa nopeasti tekstiä tai tiedostoja pudottamalla ne Nextcloudiisi!", 5 | "Drop your file here to generate a link" : "Pudota tiedosto tähän luodaksesi linkin", 6 | "Write here what you want to drop" : "Kirjoita tähän teksti, jonka haluat pudottaa", 7 | "Drop text" : "Pudota teksti", 8 | "Link to share" : "Jaettava linkki", 9 | "Copy" : "Kopioi" 10 | }, 11 | "nplurals=2; plural=(n != 1);"); 12 | -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Quickly share text or files by dropping them to your Nextcloud!" : "Jaa nopeasti tekstiä tai tiedostoja pudottamalla ne Nextcloudiisi!", 3 | "Drop your file here to generate a link" : "Pudota tiedosto tähän luodaksesi linkin", 4 | "Write here what you want to drop" : "Kirjoita tähän teksti, jonka haluat pudottaa", 5 | "Drop text" : "Pudota teksti", 6 | "Link to share" : "Jaettava linkki", 7 | "Copy" : "Kopioi" 8 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 9 | } -------------------------------------------------------------------------------- /l10n/fo.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopi" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/fo.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopi" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Partagez rapidement des textes ou des fichiers en les faisant glisser dans votre Nextcloud !", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Déposer rapidement du texte et des données dans votre Nextcloud. Lorsque vous voulez simplement partager un fichier, mais que vous ne vous souciez pas de savoir où le stocker.", 7 | "Drop your file here to generate a link" : "Déposez votre fichier ici pour générer un lien", 8 | "Write here what you want to drop" : "Écrivez ici ce que vous voulez déposer", 9 | "Drop text" : "Déposer le texte", 10 | "Link to share" : "Lien de partage", 11 | "Copy" : "Copier" 12 | }, 13 | "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Partagez rapidement des textes ou des fichiers en les faisant glisser dans votre Nextcloud !", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Déposer rapidement du texte et des données dans votre Nextcloud. Lorsque vous voulez simplement partager un fichier, mais que vous ne vous souciez pas de savoir où le stocker.", 5 | "Drop your file here to generate a link" : "Déposez votre fichier ici pour générer un lien", 6 | "Write here what you want to drop" : "Écrivez ici ce que vous voulez déposer", 7 | "Drop text" : "Déposer le texte", 8 | "Link to share" : "Lien de partage", 9 | "Copy" : "Copier" 10 | },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Roinn téacs nó comhaid go tapa trí iad a chur chuig do Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Just a scaoil téacs agus sonraí go tapa chuig do Nextcloud. Maidir leis na hamanna sin níl uait ach comhad a roinnt ach is cuma cén áit ar cheart é a stóráil.", 7 | "Drop your file here to generate a link" : "Buail do chomhad anseo chun nasc a ghiniúint", 8 | "Write here what you want to drop" : "Scríobh anseo cad ba mhaith leat a scaoileadh", 9 | "Drop text" : "Téacs a scaoileadh", 10 | "Link to share" : "Nasc le roinnt", 11 | "Copy" : "Cóipeáil" 12 | }, 13 | "nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); 14 | -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Roinn téacs nó comhaid go tapa trí iad a chur chuig do Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Just a scaoil téacs agus sonraí go tapa chuig do Nextcloud. Maidir leis na hamanna sin níl uait ach comhad a roinnt ach is cuma cén áit ar cheart é a stóráil.", 5 | "Drop your file here to generate a link" : "Buail do chomhad anseo chun nasc a ghiniúint", 6 | "Write here what you want to drop" : "Scríobh anseo cad ba mhaith leat a scaoileadh", 7 | "Drop text" : "Téacs a scaoileadh", 8 | "Link to share" : "Nasc le roinnt", 9 | "Copy" : "Cóipeáil" 10 | },"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" 11 | } -------------------------------------------------------------------------------- /l10n/gd.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Dèan lethbhreac" 5 | }, 6 | "nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;"); 7 | -------------------------------------------------------------------------------- /l10n/gd.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Dèan lethbhreac" 3 | },"pluralForm" :"nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;" 4 | } -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Compartir rapidamente textos ou ficheiros arrastrándoos e soltándoos no seu NextCloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Simplemente arrastre e solte o texto e datos cara ao seu Nextcloud. Para eses momentos nos que só quere compartir un ficheiro, mais non lle importa onde gardalo.", 7 | "Drop your file here to generate a link" : "Solte aquí o seu ficheiro para xerar unha ligazón", 8 | "Write here what you want to drop" : "Escriba aquí o que quere soltar", 9 | "Drop text" : "Sotar texto", 10 | "Link to share" : "Ligazón para compartir", 11 | "Copy" : "Copiar" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Compartir rapidamente textos ou ficheiros arrastrándoos e soltándoos no seu NextCloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Simplemente arrastre e solte o texto e datos cara ao seu Nextcloud. Para eses momentos nos que só quere compartir un ficheiro, mais non lle importa onde gardalo.", 5 | "Drop your file here to generate a link" : "Solte aquí o seu ficheiro para xerar unha ligazón", 6 | "Write here what you want to drop" : "Escriba aquí o que quere soltar", 7 | "Drop text" : "Sotar texto", 8 | "Link to share" : "Ligazón para compartir", 9 | "Copy" : "Copiar" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "השלכה", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "ניתן לשתף טקסט או קבצים על ידי השלכתם לתוך ה־Nextcloud שלך!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "עליך פשוט להשליך טקסט ונתונים במהירות לתוך ה־Nextcloud שלך. לאותן פעמים שבא לך פשוט לשתף קובץ אבל לא אכפת לך איפה לאחסן אותו.", 7 | "Drop your file here to generate a link" : "ניתן לגרור את הקבצים לכאן כדי לייצר קישור", 8 | "Write here what you want to drop" : "יש לכתוב כאן מה ברצונך להשליך", 9 | "Drop text" : "השלכת טקסט", 10 | "Link to share" : "קישור לשיתוף", 11 | "Copy" : "העתקה" 12 | }, 13 | "nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); 14 | -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "השלכה", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "ניתן לשתף טקסט או קבצים על ידי השלכתם לתוך ה־Nextcloud שלך!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "עליך פשוט להשליך טקסט ונתונים במהירות לתוך ה־Nextcloud שלך. לאותן פעמים שבא לך פשוט לשתף קובץ אבל לא אכפת לך איפה לאחסן אותו.", 5 | "Drop your file here to generate a link" : "ניתן לגרור את הקבצים לכאן כדי לייצר קישור", 6 | "Write here what you want to drop" : "יש לכתוב כאן מה ברצונך להשליך", 7 | "Drop text" : "השלכת טקסט", 8 | "Link to share" : "קישור לשיתוף", 9 | "Copy" : "העתקה" 10 | },"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" 11 | } -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Brzo dijelite tekst ili datoteke tako da ih ispustite u svoj Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Jednostavno ispustite tekst i podatke u svoj Nextcloud. Kada želite brzinski podijeliti datoteku i ne zanima vas gdje će biti pohranjena.", 7 | "Drop your file here to generate a link" : "Ovdje ispustite svoju datoteku kako biste stvorili poveznicu", 8 | "Write here what you want to drop" : "Ovdje napišite što želite ispustiti", 9 | "Drop text" : "Ispusti tekst", 10 | "Link to share" : "Poveznica za dijeljenje", 11 | "Copy" : "Kopiraj" 12 | }, 13 | "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Brzo dijelite tekst ili datoteke tako da ih ispustite u svoj Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Jednostavno ispustite tekst i podatke u svoj Nextcloud. Kada želite brzinski podijeliti datoteku i ne zanima vas gdje će biti pohranjena.", 5 | "Drop your file here to generate a link" : "Ovdje ispustite svoju datoteku kako biste stvorili poveznicu", 6 | "Write here what you want to drop" : "Ovdje napišite što želite ispustiti", 7 | "Drop text" : "Ispusti tekst", 8 | "Link to share" : "Poveznica za dijeljenje", 9 | "Copy" : "Kopiraj" 10 | },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Osszon meg gyorsan szöveget vagy fájlokat azáltal, hogy egyszerűen bedobja őket a Nextcloudba.", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Egyszerűen dobja be a szöveget vagy az adatokat a Nextcloudba. Arra az esetre, ha csak megosztana egy fájlt, de nem érdekli, hogy hol tárolja.", 7 | "Drop your file here to generate a link" : "Dobja ide a fájljait a hivatkozás létrehozásához", 8 | "Write here what you want to drop" : "Írja be ide, hogy mit szeretne átdobni", 9 | "Drop text" : "Szöveg bedobása", 10 | "Link to share" : "Megosztási hivatkozás", 11 | "Copy" : "Másolás" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Osszon meg gyorsan szöveget vagy fájlokat azáltal, hogy egyszerűen bedobja őket a Nextcloudba.", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Egyszerűen dobja be a szöveget vagy az adatokat a Nextcloudba. Arra az esetre, ha csak megosztana egy fájlt, de nem érdekli, hogy hol tárolja.", 5 | "Drop your file here to generate a link" : "Dobja ide a fájljait a hivatkozás létrehozásához", 6 | "Write here what you want to drop" : "Írja be ide, hogy mit szeretne átdobni", 7 | "Drop text" : "Szöveg bedobása", 8 | "Link to share" : "Megosztási hivatkozás", 9 | "Copy" : "Másolás" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/hy.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "պատճենահանել" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/hy.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "պատճենահանել" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiar" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiar" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/id.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Salin" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/id.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Salin" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Slepping", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Deildu skrám eða texta með því að draga/sleppa þeim í þitt eigið Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Dragðu/slepptu texta og gögnum yfir í í þitt eigið Nextcloud. Þetta nýtist þegar þú vilt deila einhverju en nennir ekki að hafa áhyggjur af því nákvæmlega hvar það sé geymt.", 7 | "Drop your file here to generate a link" : "Slepptu skránni hér til að útbúa tengil", 8 | "Write here what you want to drop" : "Skrifaðu hér hvað það er sem þú vilt sleppa", 9 | "Drop text" : "Sleppa texta", 10 | "Link to share" : "Tengill til að deila", 11 | "Copy" : "Afrita" 12 | }, 13 | "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); 14 | -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Slepping", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Deildu skrám eða texta með því að draga/sleppa þeim í þitt eigið Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Dragðu/slepptu texta og gögnum yfir í í þitt eigið Nextcloud. Þetta nýtist þegar þú vilt deila einhverju en nennir ekki að hafa áhyggjur af því nákvæmlega hvar það sé geymt.", 5 | "Drop your file here to generate a link" : "Slepptu skránni hér til að útbúa tengil", 6 | "Write here what you want to drop" : "Skrifaðu hér hvað það er sem þú vilt sleppa", 7 | "Drop text" : "Sleppa texta", 8 | "Link to share" : "Tengill til að deila", 9 | "Copy" : "Afrita" 10 | },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" 11 | } -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Condividi velocemente testo o file rilasciandoli sul tuo Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Rilascia testo e dati velocemente nel tuo Nextcloud. Per quelle volte in cui vuoi solo condividere un file, ma non ti interessa dove archiviarlo.", 7 | "Drop your file here to generate a link" : "Rilascia qui il tuo file per generare un collegamento", 8 | "Write here what you want to drop" : "Scrivi qui cosa vuoi rilasciare", 9 | "Drop text" : "Rilascia testo", 10 | "Link to share" : " Collegamento da condividere", 11 | "Copy" : "Copia" 12 | }, 13 | "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Condividi velocemente testo o file rilasciandoli sul tuo Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Rilascia testo e dati velocemente nel tuo Nextcloud. Per quelle volte in cui vuoi solo condividere un file, ma non ti interessa dove archiviarlo.", 5 | "Drop your file here to generate a link" : "Rilascia qui il tuo file per generare un collegamento", 6 | "Write here what you want to drop" : "Scrivi qui cosa vuoi rilasciare", 7 | "Drop text" : "Rilascia testo", 8 | "Link to share" : " Collegamento da condividere", 9 | "Copy" : "Copia" 10 | },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "テキストやファイルをすぐにNextcloudにドロップして共有できます。", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "保存場所を気にせずテキストやデータを共有したい時は、Nextcloudにドロップするだけで素早く共有できます。", 7 | "Drop your file here to generate a link" : "ここにファイルをドロップしてリンクを生成してください", 8 | "Write here what you want to drop" : "あなたがドロップしたいものをここに書いてください", 9 | "Drop text" : "テキストをドロップする", 10 | "Link to share" : "共有するリンク", 11 | "Copy" : "コピー" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "テキストやファイルをすぐにNextcloudにドロップして共有できます。", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "保存場所を気にせずテキストやデータを共有したい時は、Nextcloudにドロップするだけで素早く共有できます。", 5 | "Drop your file here to generate a link" : "ここにファイルをドロップしてリンクを生成してください", 6 | "Write here what you want to drop" : "あなたがドロップしたいものをここに書いてください", 7 | "Drop text" : "テキストをドロップする", 8 | "Link to share" : "共有するリンク", 9 | "Copy" : "コピー" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copy" 5 | }, 6 | "nplurals=2; plural=(n!=1);"); 7 | -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copy" 3 | },"pluralForm" :"nplurals=2; plural=(n!=1);" 4 | } -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "კოპირება" 5 | }, 6 | "nplurals=2; plural=(n!=1);"); 7 | -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "კოპირება" 3 | },"pluralForm" :"nplurals=2; plural=(n!=1);" 4 | } -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Nɣel" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Nɣel" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/kn.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "ನಕಲಿಸಿ" 5 | }, 6 | "nplurals=2; plural=(n > 1);"); 7 | -------------------------------------------------------------------------------- /l10n/kn.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "ನಕಲಿಸಿ" 3 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 4 | } -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Nextcloud에 텍스트나 파일을 끌어다 놓아서 빠르게 공유하세요!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "파일을 공유하고 싶지만 저장 위치에 신경을 쓰고 싶지 않을 때 Nextcloud에 텍스트와 데이터를 그냥 끌어다 놓으십시오.", 7 | "Drop your file here to generate a link" : "파일을 끌어다 놓으면 링크 생성", 8 | "Write here what you want to drop" : "끌어다 놓을 항목의 정보를 입력하세요.", 9 | "Drop text" : "텍스트 드롭", 10 | "Link to share" : "공유할 링크", 11 | "Copy" : "복사" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Nextcloud에 텍스트나 파일을 끌어다 놓아서 빠르게 공유하세요!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "파일을 공유하고 싶지만 저장 위치에 신경을 쓰고 싶지 않을 때 Nextcloud에 텍스트와 데이터를 그냥 끌어다 놓으십시오.", 5 | "Drop your file here to generate a link" : "파일을 끌어다 놓으면 링크 생성", 6 | "Write here what you want to drop" : "끌어다 놓을 항목의 정보를 입력하세요.", 7 | "Drop text" : "텍스트 드롭", 8 | "Link to share" : "공유할 링크", 9 | "Copy" : "복사" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/lb.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopie" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/lb.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopie" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "ສຳເນົາ" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "ສຳເນົາ" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Drop your file here to generate a link" : "Vilkite savo failą čia, norėdami sugeneruoti nuorodą", 5 | "Link to share" : "Bendrinimo nuoroda", 6 | "Copy" : "Kopijuoti" 7 | }, 8 | "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); 9 | -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Drop your file here to generate a link" : "Vilkite savo failą čia, norėdami sugeneruoti nuorodą", 3 | "Link to share" : "Bendrinimo nuoroda", 4 | "Copy" : "Kopijuoti" 5 | },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" 6 | } -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "MetTo", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Ātri dalies ar teksta datnēm iemetot tos savā Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Vienkārši ātri iemet tekstu un datus savā Nextcloud. Tām reizēm, kad vienkārši vēlies kopīgot datni, bet neuztraucies par to, kur to glabāt.", 7 | "Drop your file here to generate a link" : "Iemet savu datni šeit lai izveidotu linku", 8 | "Write here what you want to drop" : "Šeit uzraksti ko tu gribi iemest", 9 | "Drop text" : "Iemest tekstu", 10 | "Link to share" : "Saite, kuru kopīgot", 11 | "Copy" : "Kopēt" 12 | }, 13 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); 14 | -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "MetTo", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Ātri dalies ar teksta datnēm iemetot tos savā Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Vienkārši ātri iemet tekstu un datus savā Nextcloud. Tām reizēm, kad vienkārši vēlies kopīgot datni, bet neuztraucies par to, kur to glabāt.", 5 | "Drop your file here to generate a link" : "Iemet savu datni šeit lai izveidotu linku", 6 | "Write here what you want to drop" : "Šeit uzraksti ko tu gribi iemest", 7 | "Drop text" : "Iemest tekstu", 8 | "Link to share" : "Saite, kuru kopīgot", 9 | "Copy" : "Kopēt" 10 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" 11 | } -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Копирај" 5 | }, 6 | "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); 7 | -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Копирај" 3 | },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" 4 | } -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Хуулах" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Хуулах" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/my.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "ကူးယူပါ" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/my.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "ကူးယူပါ" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Rask deling av tekst eller filer ved å slippe dem til Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Bare slipp tekst og data raskt til Nextcloud. For de gangene vil du bare dele en fil, men bryr deg ikke om hvor du skal lagre den.", 7 | "Drop your file here to generate a link" : "Slipp filen din her for å generere en lenke", 8 | "Write here what you want to drop" : "Skriv her hva du vil slippe", 9 | "Drop text" : "Slipp tekst her", 10 | "Link to share" : "Lenke for deling", 11 | "Copy" : "Kopier" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Rask deling av tekst eller filer ved å slippe dem til Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Bare slipp tekst og data raskt til Nextcloud. For de gangene vil du bare dele en fil, men bryr deg ikke om hvor du skal lagre den.", 5 | "Drop your file here to generate a link" : "Slipp filen din her for å generere en lenke", 6 | "Write here what you want to drop" : "Skriv her hva du vil slippe", 7 | "Drop text" : "Slipp tekst her", 8 | "Link to share" : "Lenke for deling", 9 | "Copy" : "Kopier" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Deel snel tekst of bestanden door ze te slepen naar je Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Sleep teksten of bestanden naar je Nextcloud. Voor als je een bestand wilt delen, maar niet wilt weten waar je het kwijt kunt.", 7 | "Drop your file here to generate a link" : "Sleep je bestand hier naartoe om een link te genereren", 8 | "Write here what you want to drop" : "Schrijf hier wat je wil plaatsen", 9 | "Drop text" : "Plaats text", 10 | "Link to share" : "Link om te delen", 11 | "Copy" : "Kopieer" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Deel snel tekst of bestanden door ze te slepen naar je Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Sleep teksten of bestanden naar je Nextcloud. Voor als je een bestand wilt delen, maar niet wilt weten waar je het kwijt kunt.", 5 | "Drop your file here to generate a link" : "Sleep je bestand hier naartoe om een link te genereren", 6 | "Write here what you want to drop" : "Schrijf hier wat je wil plaatsen", 7 | "Drop text" : "Plaats text", 8 | "Link to share" : "Link om te delen", 9 | "Copy" : "Kopieer" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopier" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopier" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Link to share" : "Ligam de partejar", 5 | "Copy" : "Copiar" 6 | }, 7 | "nplurals=2; plural=(n > 1);"); 8 | -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Link to share" : "Ligam de partejar", 3 | "Copy" : "Copiar" 4 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 5 | } -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Szybko udostępniaj tekst lub pliki, upuszczając je do Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Po prostu szybko upuść tekst i dane do Nextcloud. W tym czasie w łatwy sposób udostępnisz plik nie przejmując się gdzie go zapisać.", 7 | "Drop your file here to generate a link" : "Upuść plik tutaj aby wygenerować link", 8 | "Write here what you want to drop" : "Napisz tutaj co chcesz upuścić", 9 | "Drop text" : "Upuść tekst", 10 | "Link to share" : "Link do udostępnienia", 11 | "Copy" : "Kopiuj" 12 | }, 13 | "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); 14 | -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Szybko udostępniaj tekst lub pliki, upuszczając je do Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Po prostu szybko upuść tekst i dane do Nextcloud. W tym czasie w łatwy sposób udostępnisz plik nie przejmując się gdzie go zapisać.", 5 | "Drop your file here to generate a link" : "Upuść plik tutaj aby wygenerować link", 6 | "Write here what you want to drop" : "Napisz tutaj co chcesz upuścić", 7 | "Drop text" : "Upuść tekst", 8 | "Link to share" : "Link do udostępnienia", 9 | "Copy" : "Kopiuj" 10 | },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" 11 | } -------------------------------------------------------------------------------- /l10n/ps.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "کاپي کول" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/ps.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "کاپي کول" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Compartilhe rapidamente textos ou arquivos soltando-os no seu Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Solte o texto e os dados rapidamente no seu Nextcloud. Para aqueles momentos em que você deseja apenas compartilhar um arquivo, mas não se importa em onde armazená-lo.", 7 | "Drop your file here to generate a link" : "Solte seu arquivo aqui para gerar um link", 8 | "Write here what you want to drop" : "Escreva aqui o que você quer soltar", 9 | "Drop text" : "Texto", 10 | "Link to share" : "Link para compartilhar", 11 | "Copy" : "Copiar" 12 | }, 13 | "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Compartilhe rapidamente textos ou arquivos soltando-os no seu Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Solte o texto e os dados rapidamente no seu Nextcloud. Para aqueles momentos em que você deseja apenas compartilhar um arquivo, mas não se importa em onde armazená-lo.", 5 | "Drop your file here to generate a link" : "Solte seu arquivo aqui para gerar um link", 6 | "Write here what you want to drop" : "Escreva aqui o que você quer soltar", 7 | "Drop text" : "Texto", 8 | "Link to share" : "Link para compartilhar", 9 | "Copy" : "Copiar" 10 | },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Partilhe rapidamente os textos ou ficheiros largando-os no seu Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Submeta texto e dados rapidamente no seu Nextcloud. Naqueles momentos em que quer partilhar um ficheiro sem se preocupar com onde ele é guardado.", 7 | "Drop your file here to generate a link" : "Submeta o seu ficheiro aqui para gerar um link", 8 | "Write here what you want to drop" : "Escreva aqui aquilo que pretende submeter", 9 | "Drop text" : "Largar texto", 10 | "Link to share" : "Associar para partilhar", 11 | "Copy" : "Copiar" 12 | }, 13 | "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); 14 | -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Partilhe rapidamente os textos ou ficheiros largando-os no seu Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Submeta texto e dados rapidamente no seu Nextcloud. Naqueles momentos em que quer partilhar um ficheiro sem se preocupar com onde ele é guardado.", 5 | "Drop your file here to generate a link" : "Submeta o seu ficheiro aqui para gerar um link", 6 | "Write here what you want to drop" : "Escreva aqui aquilo que pretende submeter", 7 | "Drop text" : "Largar texto", 8 | "Link to share" : "Associar para partilhar", 9 | "Copy" : "Copiar" 10 | },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" 11 | } -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copiază" 5 | }, 6 | "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); 7 | -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copiază" 3 | },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" 4 | } -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Быстрый обмен текстом или файлами при помощи их перетаскивания в Nextcloud.", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Просто перетащите текст и данные в Nextcloud. Предназначено для случаев, когда нужно открыть общий доступ к файлу, место хранения которого не представляет важности.", 7 | "Drop your file here to generate a link" : "Перетащите файл сюда, чтобы сгенерировать ссылку", 8 | "Write here what you want to drop" : "Введите текст, которым хотите поделиться", 9 | "Drop text" : "Поделиться текстом", 10 | "Link to share" : "Поделиться ссылкой", 11 | "Copy" : "Копировать" 12 | }, 13 | "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); 14 | -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Быстрый обмен текстом или файлами при помощи их перетаскивания в Nextcloud.", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Просто перетащите текст и данные в Nextcloud. Предназначено для случаев, когда нужно открыть общий доступ к файлу, место хранения которого не представляет важности.", 5 | "Drop your file here to generate a link" : "Перетащите файл сюда, чтобы сгенерировать ссылку", 6 | "Write here what you want to drop" : "Введите текст, которым хотите поделиться", 7 | "Drop text" : "Поделиться текстом", 8 | "Link to share" : "Поделиться ссылкой", 9 | "Copy" : "Копировать" 10 | },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" 11 | } -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Cumpartzi a lestru testos o documentos trisinende·ddos a su Nextcloud tuu!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Trìsina a lestru testos e datos a su Nextcloud tuu. Pro cussas bortas chi boles isceti cumpartzire unu documentu ma no ti nde importat inoghe.", 7 | "Drop your file here to generate a link" : "Trìsina su documentu inoghe pro generare unu ligàmene", 8 | "Write here what you want to drop" : "Iscrie inoghe ite boles trisinare", 9 | "Drop text" : "Trìsina su testu", 10 | "Link to share" : "Ligàmene de cumpartzire", 11 | "Copy" : "Còpia" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Cumpartzi a lestru testos o documentos trisinende·ddos a su Nextcloud tuu!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Trìsina a lestru testos e datos a su Nextcloud tuu. Pro cussas bortas chi boles isceti cumpartzire unu documentu ma no ti nde importat inoghe.", 5 | "Drop your file here to generate a link" : "Trìsina su documentu inoghe pro generare unu ligàmene", 6 | "Write here what you want to drop" : "Iscrie inoghe ite boles trisinare", 7 | "Drop text" : "Trìsina su testu", 8 | "Link to share" : "Ligàmene de cumpartzire", 9 | "Copy" : "Còpia" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/si.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "පිටපත්" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/si.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "පිටපත්" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Pohotovo sprístupňujte texty a súbory ich pretiahnutím do Nextcloudu.", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Jednuducho len pretiahnite text alebo súbory do Nextcloudu. Určené pre prípady kedy chcete okamžite sprístupniť nejaký súbor alebo text a je vám jedno kde je uložený.", 7 | "Drop your file here to generate a link" : "Odkaz vytvoríte pretiahnutím súboru sem", 8 | "Write here what you want to drop" : "Sem napíšte čo chcete poslať.", 9 | "Drop text" : "Sprievodný text", 10 | "Link to share" : "Odkaz pre zdieľanie", 11 | "Copy" : "Kopírovať" 12 | }, 13 | "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); 14 | -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Pohotovo sprístupňujte texty a súbory ich pretiahnutím do Nextcloudu.", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Jednuducho len pretiahnite text alebo súbory do Nextcloudu. Určené pre prípady kedy chcete okamžite sprístupniť nejaký súbor alebo text a je vám jedno kde je uložený.", 5 | "Drop your file here to generate a link" : "Odkaz vytvoríte pretiahnutím súboru sem", 6 | "Write here what you want to drop" : "Sem napíšte čo chcete poslať.", 7 | "Drop text" : "Sprievodný text", 8 | "Link to share" : "Odkaz pre zdieľanie", 9 | "Copy" : "Kopírovať" 10 | },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" 11 | } -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Hitra izmenjava besedila in datotek z odlaganjem v oblak Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Enostavno spustite besedilo in podatke v oblak Nextcloud in omogočite začasno souporabo.", 7 | "Drop your file here to generate a link" : "Spustite datoteko za ustvarjanje povezave", 8 | "Write here what you want to drop" : "Zapišite, kaj želite spustiti v oblak", 9 | "Drop text" : "Spustite besedilo", 10 | "Link to share" : "Povezava za souporabo", 11 | "Copy" : "Kopiraj" 12 | }, 13 | "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); 14 | -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Hitra izmenjava besedila in datotek z odlaganjem v oblak Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Enostavno spustite besedilo in podatke v oblak Nextcloud in omogočite začasno souporabo.", 5 | "Drop your file here to generate a link" : "Spustite datoteko za ustvarjanje povezave", 6 | "Write here what you want to drop" : "Zapišite, kaj želite spustiti v oblak", 7 | "Drop text" : "Spustite besedilo", 8 | "Link to share" : "Povezava za souporabo", 9 | "Copy" : "Kopiraj" 10 | },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" 11 | } -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopjo" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopjo" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Спусти га", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Брзо делите текст или фајлове спуштањем у Некстклауд!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Само спустите текст или податке у Некстклауд. Онда када само желите да поделите фајл, али вас не занима где се складишти.", 7 | "Drop your file here to generate a link" : "Спустите фајл овде да генеришете везу", 8 | "Write here what you want to drop" : "Запишите овде шта желите да спустите", 9 | "Drop text" : "Спусти текст", 10 | "Link to share" : "Веза дељења", 11 | "Copy" : "Копирај" 12 | }, 13 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); 14 | -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Спусти га", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Брзо делите текст или фајлове спуштањем у Некстклауд!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Само спустите текст или податке у Некстклауд. Онда када само желите да поделите фајл, али вас не занима где се складишти.", 5 | "Drop your file here to generate a link" : "Спустите фајл овде да генеришете везу", 6 | "Write here what you want to drop" : "Запишите овде шта желите да спустите", 7 | "Drop text" : "Спусти текст", 8 | "Link to share" : "Веза дељења", 9 | "Copy" : "Копирај" 10 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" 11 | } -------------------------------------------------------------------------------- /l10n/sr@latin.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Kopiraj" 5 | }, 6 | "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); 7 | -------------------------------------------------------------------------------- /l10n/sr@latin.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Kopiraj" 3 | },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" 4 | } -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Dela snabbt text eller filer genom att släppa dem till ditt Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Bara släpp text och data snabbt till ditt Nextcloud. För de gånger du bara vill dela en fil men bryr dig inte om var den ska lagras.", 7 | "Drop your file here to generate a link" : "Släpp din fil här för att skapa en länk", 8 | "Write here what you want to drop" : "Skriv här vad du vill släppa", 9 | "Drop text" : "Släpp text", 10 | "Link to share" : "Länk för att dela", 11 | "Copy" : "Kopiera" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Dela snabbt text eller filer genom att släppa dem till ditt Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Bara släpp text och data snabbt till ditt Nextcloud. För de gånger du bara vill dela en fil men bryr dig inte om var den ska lagras.", 5 | "Drop your file here to generate a link" : "Släpp din fil här för att skapa en länk", 6 | "Write here what you want to drop" : "Skriv här vad du vill släppa", 7 | "Drop text" : "Släpp text", 8 | "Link to share" : "Länk för att dela", 9 | "Copy" : "Kopiera" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/ta.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Copy" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/ta.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Copy" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "คัดลอก" 5 | }, 6 | "nplurals=1; plural=0;"); 7 | -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "คัดลอก" 3 | },"pluralForm" :"nplurals=1; plural=0;" 4 | } -------------------------------------------------------------------------------- /l10n/tk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Copy" : "Göçüriň" 5 | }, 6 | "nplurals=2; plural=(n != 1);"); 7 | -------------------------------------------------------------------------------- /l10n/tk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Copy" : "Göçüriň" 3 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 4 | } -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Dosyaları sürükleyip Nextcloud üzerine bırakarak hızlıca paylaşabilirsiniz!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Metin ve verileri sürükleyip Nextcloud üzerine bırakın. Yalnızca bir dosyayı paylaşmak istediğinizde ve nerede depolandığının önemi olmadığında.", 7 | "Drop your file here to generate a link" : "Bir bağlantı oluşturmak için dosyanızı sürükleyip buraya bırakın", 8 | "Write here what you want to drop" : "Dosya ile ilgili notlarınızı buraya yazın", 9 | "Drop text" : "Not ekle", 10 | "Link to share" : "Paylaşım bağlantısı", 11 | "Copy" : "Kopyala" 12 | }, 13 | "nplurals=2; plural=(n > 1);"); 14 | -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Dosyaları sürükleyip Nextcloud üzerine bırakarak hızlıca paylaşabilirsiniz!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Metin ve verileri sürükleyip Nextcloud üzerine bırakın. Yalnızca bir dosyayı paylaşmak istediğinizde ve nerede depolandığının önemi olmadığında.", 5 | "Drop your file here to generate a link" : "Bir bağlantı oluşturmak için dosyanızı sürükleyip buraya bırakın", 6 | "Write here what you want to drop" : "Dosya ile ilgili notlarınızı buraya yazın", 7 | "Drop text" : "Not ekle", 8 | "Link to share" : "Paylaşım bağlantısı", 9 | "Copy" : "Kopyala" 10 | },"pluralForm" :"nplurals=2; plural=(n > 1);" 11 | } -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "DropIt", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "تېكىست ياكى ھۆججەتلەرنى Nextcloud غا تاشلاپ تېز ھەمبەھىرلەڭ!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "تېكىست ۋە سانلىق مەلۇماتلارنى Nextcloud غا تېز تاشلاڭ. ئۇ ۋاقىتلاردا سىز پەقەت بىر ھۆججەتنى ئورتاقلاشماقچى ، ئەمما ئۇنى قەيەردە ساقلاشقا پەرۋا قىلماڭ.", 7 | "Drop your file here to generate a link" : "ئۇلىنىش ھاسىل قىلىش ئۈچۈن ھۆججىتىڭىزنى بۇ يەرگە تاشلاڭ", 8 | "Write here what you want to drop" : "تاشلىماقچى بولغان نەرسىنى بۇ يەرگە يېزىڭ", 9 | "Drop text" : "تېكىستنى تاشلاش", 10 | "Link to share" : "ئورتاقلىشىشقا ئۇلىنىش", 11 | "Copy" : "كۆچۈرۈڭ" 12 | }, 13 | "nplurals=2; plural=(n != 1);"); 14 | -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "DropIt", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "تېكىست ياكى ھۆججەتلەرنى Nextcloud غا تاشلاپ تېز ھەمبەھىرلەڭ!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "تېكىست ۋە سانلىق مەلۇماتلارنى Nextcloud غا تېز تاشلاڭ. ئۇ ۋاقىتلاردا سىز پەقەت بىر ھۆججەتنى ئورتاقلاشماقچى ، ئەمما ئۇنى قەيەردە ساقلاشقا پەرۋا قىلماڭ.", 5 | "Drop your file here to generate a link" : "ئۇلىنىش ھاسىل قىلىش ئۈچۈن ھۆججىتىڭىزنى بۇ يەرگە تاشلاڭ", 6 | "Write here what you want to drop" : "تاشلىماقچى بولغان نەرسىنى بۇ يەرگە يېزىڭ", 7 | "Drop text" : "تېكىستنى تاشلاش", 8 | "Link to share" : "ئورتاقلىشىشقا ئۇلىنىش", 9 | "Copy" : "كۆچۈرۈڭ" 10 | },"pluralForm" :"nplurals=2; plural=(n != 1);" 11 | } -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Завантажити", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Швидко поділіться текстовими повідомленнями або файлами, пересунувши їх до Nextcloud!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Легко перетягуйте текстові повідомлення або файли до вашої хмари у Nextcloud. Зручно, коли потрібно просто поділитися файлом й не має значення, де саме його потрібно зберегти.", 7 | "Drop your file here to generate a link" : "Перетягніть ваші файли сюди для створення посилання", 8 | "Write here what you want to drop" : "Зазначте тут те, що ви бажаєте перетягнути", 9 | "Drop text" : "Перетягніть текст", 10 | "Link to share" : "Посилання на спільний ресурс", 11 | "Copy" : "Копіювати" 12 | }, 13 | "nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); 14 | -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Завантажити", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Швидко поділіться текстовими повідомленнями або файлами, пересунувши їх до Nextcloud!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Легко перетягуйте текстові повідомлення або файли до вашої хмари у Nextcloud. Зручно, коли потрібно просто поділитися файлом й не має значення, де саме його потрібно зберегти.", 5 | "Drop your file here to generate a link" : "Перетягніть ваші файли сюди для створення посилання", 6 | "Write here what you want to drop" : "Зазначте тут те, що ви бажаєте перетягнути", 7 | "Drop text" : "Перетягніть текст", 8 | "Link to share" : "Посилання на спільний ресурс", 9 | "Copy" : "Копіювати" 10 | },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);" 11 | } -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "Qo'ying", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "Matn yoki fayllarni Nextcloud-ga tashlab, tezda baham ko'ring!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Matn va maʼlumotlarni tezda Nextcloud-ga qoldiring. Bunday paytlarda siz faqat faylni baham ko'rishni xohlaysiz, lekin uni qayerda saqlashni o'ylamaysiz.", 7 | "Drop your file here to generate a link" : "Havola yaratish uchun faylingizni shu yerga tashlang", 8 | "Write here what you want to drop" : "Nimani tashlamoqchi ekaningizni shu yerga yozing", 9 | "Drop text" : "Matnni tashlang", 10 | "Link to share" : "Ulashish uchun havola", 11 | "Copy" : "Nusxalash" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "Qo'ying", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "Matn yoki fayllarni Nextcloud-ga tashlab, tezda baham ko'ring!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "Matn va maʼlumotlarni tezda Nextcloud-ga qoldiring. Bunday paytlarda siz faqat faylni baham ko'rishni xohlaysiz, lekin uni qayerda saqlashni o'ylamaysiz.", 5 | "Drop your file here to generate a link" : "Havola yaratish uchun faylingizni shu yerga tashlang", 6 | "Write here what you want to drop" : "Nimani tashlamoqchi ekaningizni shu yerga yozing", 7 | "Drop text" : "Matnni tashlang", 8 | "Link to share" : "Ulashish uchun havola", 9 | "Copy" : "Nusxalash" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "Link to share" : "Liên kết cần chia sẻ", 5 | "Copy" : "Sao chép" 6 | }, 7 | "nplurals=1; plural=0;"); 8 | -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "Link to share" : "Liên kết cần chia sẻ", 3 | "Copy" : "Sao chép" 4 | },"pluralForm" :"nplurals=1; plural=0;" 5 | } -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "投送", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "通过拖拽文件到Nextcloud实现快速分享!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "只需将文本和数据快速拖放进您的 Nextcloud。 在您只想分享文件却不在乎存储位置时使用。", 7 | "Drop your file here to generate a link" : "将您的文件拖放在此处以生成链接", 8 | "Write here what you want to drop" : "在这里填写您想放置的内容", 9 | "Drop text" : "放置文本", 10 | "Link to share" : "分享链接", 11 | "Copy" : "复制" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "投送", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "通过拖拽文件到Nextcloud实现快速分享!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "只需将文本和数据快速拖放进您的 Nextcloud。 在您只想分享文件却不在乎存储位置时使用。", 5 | "Drop your file here to generate a link" : "将您的文件拖放在此处以生成链接", 6 | "Write here what you want to drop" : "在这里填写您想放置的内容", 7 | "Drop text" : "放置文本", 8 | "Link to share" : "分享链接", 9 | "Copy" : "复制" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "拖放中心", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "透過托放方式可迅速從Nextcloud分享文字或檔案!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "只需要快速拖放文字與檔案至您的Nextcloud,就可以直接分享您想要的檔案,無須費心管理儲存位置。", 7 | "Drop your file here to generate a link" : "拖放檔案至此便可產生一個連結。", 8 | "Write here what you want to drop" : "在此輸入您想拖放的內容。", 9 | "Drop text" : "拖放文字", 10 | "Link to share" : "分享的連結", 11 | "Copy" : "複製" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "拖放中心", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "透過托放方式可迅速從Nextcloud分享文字或檔案!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "只需要快速拖放文字與檔案至您的Nextcloud,就可以直接分享您想要的檔案,無須費心管理儲存位置。", 5 | "Drop your file here to generate a link" : "拖放檔案至此便可產生一個連結。", 6 | "Write here what you want to drop" : "在此輸入您想拖放的內容。", 7 | "Drop text" : "拖放文字", 8 | "Link to share" : "分享的連結", 9 | "Copy" : "複製" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- 1 | OC.L10N.register( 2 | "dropit", 3 | { 4 | "DropIt" : "拖放中心", 5 | "Quickly share text or files by dropping them to your Nextcloud!" : "透過托放方式可迅速從Nextcloud分享文字或檔案!", 6 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "只需要快速拖放文字與檔案至您的Nextcloud,就可以直接分享您想要的檔案,無須費心管理儲存位置。", 7 | "Drop your file here to generate a link" : "拖放檔案至此便可產生一個連結。", 8 | "Write here what you want to drop" : "在此輸入您想拖放的內容。", 9 | "Drop text" : "拖放文字", 10 | "Link to share" : "分享的連結", 11 | "Copy" : "複製" 12 | }, 13 | "nplurals=1; plural=0;"); 14 | -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- 1 | { "translations": { 2 | "DropIt" : "拖放中心", 3 | "Quickly share text or files by dropping them to your Nextcloud!" : "透過托放方式可迅速從Nextcloud分享文字或檔案!", 4 | "Just drop text and data quickly to your Nextcloud. For those times you just want to share a file but don't care about where to store it." : "只需要快速拖放文字與檔案至您的Nextcloud,就可以直接分享您想要的檔案,無須費心管理儲存位置。", 5 | "Drop your file here to generate a link" : "拖放檔案至此便可產生一個連結。", 6 | "Write here what you want to drop" : "在此輸入您想拖放的內容。", 7 | "Drop text" : "拖放文字", 8 | "Link to share" : "分享的連結", 9 | "Copy" : "複製" 10 | },"pluralForm" :"nplurals=1; plural=0;" 11 | } -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * @author Roeland Jago Douma 6 | * 7 | * @license GNU AGPL version 3 or any later version 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as 11 | * published by the Free Software Foundation, either version 3 of the 12 | * License, or (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU Affero General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * 22 | */ 23 | namespace OCA\DropIt\AppInfo; 24 | 25 | use OCA\DropIt\Capabilities; 26 | use OCP\AppFramework\App; 27 | 28 | class Application extends App { 29 | 30 | /** 31 | * Application constructor. 32 | * 33 | * @param array $urlParams 34 | */ 35 | public function __construct(array $urlParams = []) { 36 | parent::__construct('dropit', $urlParams); 37 | 38 | $container = $this->getContainer(); 39 | $container->registerCapability(Capabilities::class); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /lib/BackgroundJob/CleanUpJob.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * @author Roeland Jago Douma 6 | * 7 | * @license GNU AGPL version 3 or any later version 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as 11 | * published by the Free Software Foundation, either version 3 of the 12 | * License, or (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU Affero General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * 22 | */ 23 | 24 | namespace OCA\DropIt\BackgroundJob; 25 | 26 | use OC\BackgroundJob\TimedJob; 27 | use OCP\AppFramework\Utility\ITimeFactory; 28 | use OCP\Files\File; 29 | use OCP\Files\Folder; 30 | use OCP\Files\IRootFolder; 31 | use OCP\IUser; 32 | use OCP\IUserManager; 33 | 34 | class CleanUpJob extends TimedJob { 35 | /** @var IUserManager */ 36 | private $userManager; 37 | 38 | /** @var IRootFolder */ 39 | private $rootFolder; 40 | 41 | /** @var ITimeFactory */ 42 | private $timeFactory; 43 | 44 | public function __construct(IUserManager $userManager, 45 | IRootFolder $rootFolder, 46 | ITimeFactory $timeFactory) { 47 | // Run once a day 48 | $this->setInterval(24 * 60 * 60); 49 | 50 | $this->userManager = $userManager; 51 | $this->rootFolder = $rootFolder; 52 | $this->timeFactory = $timeFactory; 53 | } 54 | 55 | protected function run($argument) { 56 | $now = new \DateTime(); 57 | $now->setTimestamp($this->timeFactory->getTime()); 58 | 59 | 60 | $this->userManager->callForSeenUsers(function(IUser $user) use ($now) { 61 | $userFolder = $this->rootFolder->getUserFolder($user->getUID()); 62 | 63 | // No DropIt folder, just ignore 64 | if (!$userFolder->nodeExists('DropIt')) { 65 | return; 66 | } 67 | 68 | $dropIt = $userFolder->get('DropIt'); 69 | 70 | // If it isn't a folder just return 71 | if (!($dropIt instanceof Folder)) { 72 | return; 73 | } 74 | 75 | $listing = $dropIt->getDirectoryListing(); 76 | 77 | foreach ($listing as $node) { 78 | // Only process files 79 | if (!($node instanceof File)) { 80 | continue; 81 | } 82 | 83 | // Match on YYYYmmddHHiiss 84 | if (preg_match('/^[0-9]{14}/', $node->getName(), $matches)) { 85 | $filetime = \DateTime::createFromFormat('YmdHis', $matches[0]); 86 | 87 | $diff = $now->diff($filetime); 88 | 89 | // Delete all files older than 14 days 90 | if ($diff->days > 14) { 91 | $node->delete(); 92 | } 93 | } 94 | } 95 | }); 96 | } 97 | 98 | } 99 | -------------------------------------------------------------------------------- /lib/Capabilities.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * @author Roeland Jago Douma 6 | * 7 | * @license GNU AGPL version 3 or any later version 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as 11 | * published by the Free Software Foundation, either version 3 of the 12 | * License, or (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU Affero General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * 22 | */ 23 | 24 | namespace OCA\DropIt; 25 | 26 | use OCP\Capabilities\ICapability; 27 | use OCP\IURLGenerator; 28 | 29 | class Capabilities implements ICapability { 30 | 31 | /** @var IURLGenerator */ 32 | private $urlGenerator; 33 | 34 | public function __construct(IURLGenerator $urlGenerator) { 35 | $this->urlGenerator = $urlGenerator; 36 | } 37 | 38 | public function getCapabilities() { 39 | return [ 40 | 'dropit' => [ 41 | 'enabled' => true, 42 | 'upload' => [ 43 | 'files' => [ 44 | 'url' => $this->urlGenerator->linkToRouteAbsolute('dropit.drop.upload'), 45 | 'param' => 'data', 46 | ], 47 | 'text' => [ 48 | 'url' => $this->urlGenerator->linkToRouteAbsolute('dropit.drop.text'), 49 | 'param' => 'text', 50 | ], 51 | ] 52 | ], 53 | ]; 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /lib/Controller/DropController.php: -------------------------------------------------------------------------------- 1 | 4 | * 5 | * @author Roeland Jago Douma 6 | * 7 | * @license GNU AGPL version 3 or any later version 8 | * 9 | * This program is free software: you can redistribute it and/or modify 10 | * it under the terms of the GNU Affero General Public License as 11 | * published by the Free Software Foundation, either version 3 of the 12 | * License, or (at your option) any later version. 13 | * 14 | * This program is distributed in the hope that it will be useful, 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 | * GNU Affero General Public License for more details. 18 | * 19 | * You should have received a copy of the GNU Affero General Public License 20 | * along with this program. If not, see . 21 | * 22 | */ 23 | 24 | namespace OCA\DropIt\Controller; 25 | 26 | use OCP\AppFramework\Controller; 27 | use OCP\AppFramework\Http; 28 | use OCP\AppFramework\Http\JSONResponse; 29 | use OCP\AppFramework\Utility\ITimeFactory; 30 | use OCP\Constants; 31 | use OCP\Files\IRootFolder; 32 | use OCP\Files\NotFoundException; 33 | use OCP\IRequest; 34 | use OCP\IURLGenerator; 35 | use OCP\Share; 36 | use OCP\Share\IManager as ShareManager; 37 | 38 | class DropController extends Controller { 39 | 40 | /** @var IRootFolder */ 41 | private $rootFolder; 42 | 43 | /** @var string */ 44 | private $userId; 45 | 46 | /** @var ShareManager */ 47 | private $shareManager; 48 | 49 | /** @var ITimeFactory */ 50 | private $timeFactory; 51 | 52 | /** @var IURLGenerator */ 53 | private $urlGenerator; 54 | 55 | /** 56 | * DropController constructor. 57 | * 58 | * @param string $appName 59 | * @param IRequest $request 60 | * @param IRootFolder $rootFolder 61 | * @param string $userId 62 | * @param ShareManager $shareManager 63 | * @param ITimeFactory $timeFactory 64 | * @param IURLGenerator $urlGenerator 65 | */ 66 | public function __construct(string $appName, 67 | IRequest $request, 68 | IRootFolder $rootFolder, 69 | string $userId, 70 | ShareManager $shareManager, 71 | ITimeFactory $timeFactory, 72 | IURLGenerator $urlGenerator) { 73 | parent::__construct($appName, $request); 74 | 75 | $this->rootFolder = $rootFolder; 76 | $this->userId = $userId; 77 | $this->shareManager = $shareManager; 78 | $this->timeFactory = $timeFactory; 79 | $this->urlGenerator = $urlGenerator; 80 | } 81 | 82 | /** 83 | * @NoAdminRequired 84 | * @NoCSRFRequired 85 | * 86 | * @return JSONResponse 87 | */ 88 | public function upload() { 89 | $files = $this->request->files; 90 | 91 | if (count($files) !== 1) { 92 | return new JSONResponse([], Http::STATUS_BAD_REQUEST); 93 | } 94 | 95 | $ts = $this->timeFactory->getTime(); 96 | $dt = new \DateTime(); 97 | $dt->setTimestamp($ts); 98 | 99 | $folder = $this->getFolder(); 100 | 101 | $drop = array_pop($files); 102 | $fileName = $dt->format('YmdHis') . ' - ' . $drop['name']; 103 | 104 | $file = $folder->newFile($fileName); 105 | $file->putContent(file_get_contents($drop['tmp_name'])); 106 | 107 | $share = $this->shareManager->newShare(); 108 | $share->setNode($file); 109 | $share->setShareType(Share::SHARE_TYPE_LINK); 110 | $share->setPermissions(Constants::PERMISSION_READ); 111 | $share->setSharedBy($this->userId); 112 | 113 | $share = $this->shareManager->createShare($share); 114 | 115 | return new JSONResponse([ 116 | 'link' => $this->urlGenerator->linkToRouteAbsolute('files_sharing.sharecontroller.showShare', ['token' => $share->getToken()]), 117 | ]); 118 | } 119 | 120 | /** 121 | * @NoAdminRequired 122 | * @NoCSRFRequired 123 | * 124 | * @param string text 125 | * @return JSONResponse 126 | */ 127 | public function text(string $text) { 128 | $ts = $this->timeFactory->getTime(); 129 | $dt = new \DateTime(); 130 | $dt->setTimestamp($ts); 131 | 132 | $folder = $this->getFolder(); 133 | 134 | $fileName = $dt->format('YmdHis') . '.txt'; 135 | 136 | $file = $folder->newFile($fileName); 137 | $file->putContent($text); 138 | 139 | $share = $this->shareManager->newShare(); 140 | $share->setNode($file); 141 | $share->setShareType(Share::SHARE_TYPE_LINK); 142 | $share->setPermissions(Constants::PERMISSION_READ); 143 | $share->setSharedBy($this->userId); 144 | 145 | $share = $this->shareManager->createShare($share); 146 | 147 | return new JSONResponse([ 148 | 'link' => $this->urlGenerator->linkToRouteAbsolute('files_sharing.sharecontroller.showShare', ['token' => $share->getToken()]), 149 | ]); 150 | } 151 | 152 | /** 153 | * @return \OCP\Files\Folder 154 | */ 155 | private function getFolder() { 156 | $userFolder = $this->rootFolder->getUserFolder($this->userId); 157 | 158 | //Check for DropIt 159 | try { 160 | $dropItFolder = $userFolder->get('DropIt'); 161 | } catch (NotFoundException $e) { 162 | $dropItFolder = $userFolder->newFolder('DropIt'); 163 | } 164 | 165 | return $dropItFolder; 166 | } 167 | } 168 | -------------------------------------------------------------------------------- /list.php: -------------------------------------------------------------------------------- 1 | printPage(); 11 | -------------------------------------------------------------------------------- /templates/drop.php: -------------------------------------------------------------------------------- 1 | 5 |
6 |
7 |

t('Drop your file here to generate a link')); ?>

8 |
9 |
10 |
11 |
12 |

t('Write here what you want to drop')); ?>

13 |
14 | 15 | 16 |
17 | 22 | --------------------------------------------------------------------------------