├── .gitignore ├── .gitmodules ├── COPYING ├── MANIFEST.in ├── Makefile ├── README ├── TODO ├── bin └── httpripper ├── debian ├── changelog ├── compat ├── control ├── copyright ├── files ├── python-module-stampdir │ └── httpripper ├── rules └── watch ├── httpripper ├── __init__.py ├── httpripper.py └── prox.py ├── install.sh ├── po ├── Makefile ├── de.po ├── es.po ├── fr.po ├── httpripper-ar.po ├── httpripper-bg.po ├── httpripper-bs.po ├── httpripper-ca.po ├── httpripper-cs.po ├── httpripper-cy.po ├── httpripper-da.po ├── httpripper-de.po ├── httpripper-el.po ├── httpripper-en_GB.po ├── httpripper-es.po ├── httpripper-eu.po ├── httpripper-fi.po ├── httpripper-fr.po ├── httpripper-gl.po ├── httpripper-he.po ├── httpripper-hu.po ├── httpripper-id.po ├── httpripper-it.po ├── httpripper-ms.po ├── httpripper-nds.po ├── httpripper-nl.po ├── httpripper-pl.po ├── httpripper-pt.po ├── httpripper-pt_BR.po ├── httpripper-ro.po ├── httpripper-ru.po ├── httpripper-sk.po ├── httpripper-sr.po ├── httpripper-sv.po ├── httpripper-te.po ├── httpripper-th.po ├── httpripper-tr.po ├── httpripper-uk.po ├── httpripper-zh_CN.po ├── httpripper-zh_TW.po ├── httpripper.pot ├── id.po ├── make.py ├── pt_BR.po └── sr.po ├── setup.py └── share ├── applications └── httpripper.desktop ├── icons └── hicolor │ ├── 32x32 │ └── httpripper.png │ └── scalable │ └── httpripper.svg ├── locale ├── ar │ └── LC_MESSAGES │ │ └── httpripper.mo ├── bg │ └── LC_MESSAGES │ │ └── httpripper.mo ├── bs │ └── LC_MESSAGES │ │ └── httpripper.mo ├── ca │ └── LC_MESSAGES │ │ └── httpripper.mo ├── cs │ └── LC_MESSAGES │ │ └── httpripper.mo ├── cy │ └── LC_MESSAGES │ │ └── httpripper.mo ├── da │ └── LC_MESSAGES │ │ └── httpripper.mo ├── de │ └── LC_MESSAGES │ │ └── httpripper.mo ├── el │ └── LC_MESSAGES │ │ └── httpripper.mo ├── en_GB │ └── LC_MESSAGES │ │ └── httpripper.mo ├── es │ └── LC_MESSAGES │ │ └── httpripper.mo ├── eu │ └── LC_MESSAGES │ │ └── httpripper.mo ├── fi │ └── LC_MESSAGES │ │ └── httpripper.mo ├── fr │ └── LC_MESSAGES │ │ └── httpripper.mo ├── gl │ └── LC_MESSAGES │ │ └── httpripper.mo ├── he │ └── LC_MESSAGES │ │ └── httpripper.mo ├── hu │ └── LC_MESSAGES │ │ └── httpripper.mo ├── id │ └── LC_MESSAGES │ │ └── httpripper.mo ├── it │ └── LC_MESSAGES │ │ └── httpripper.mo ├── ms │ └── LC_MESSAGES │ │ └── httpripper.mo ├── nds │ └── LC_MESSAGES │ │ └── httpripper.mo ├── nl │ └── LC_MESSAGES │ │ └── httpripper.mo ├── pl │ └── LC_MESSAGES │ │ └── httpripper.mo ├── pt │ └── LC_MESSAGES │ │ └── httpripper.mo ├── pt_BR │ └── LC_MESSAGES │ │ └── httpripper.mo ├── ro │ └── LC_MESSAGES │ │ └── httpripper.mo ├── ru │ └── LC_MESSAGES │ │ └── httpripper.mo ├── sk │ └── LC_MESSAGES │ │ └── httpripper.mo ├── sr │ └── LC_MESSAGES │ │ └── httpripper.mo ├── sv │ └── LC_MESSAGES │ │ └── httpripper.mo ├── te │ └── LC_MESSAGES │ │ └── httpripper.mo ├── th │ └── LC_MESSAGES │ │ └── httpripper.mo ├── tr │ └── LC_MESSAGES │ │ └── httpripper.mo ├── uk │ └── LC_MESSAGES │ │ └── httpripper.mo ├── zh_CN │ └── LC_MESSAGES │ │ └── httpripper.mo └── zh_TW │ └── LC_MESSAGES │ └── httpripper.mo └── pixmaps └── httpripper.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | *.pyo 4 | /build 5 | /MANIFEST 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "x29a"] 2 | path = x29a 3 | url = http://29a.ch/git/x29a/ 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 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 General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include share * 2 | include COPYING install.sh 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | DESTDIR=/ 2 | PROJECT=httpripper_ 3 | 4 | all: 5 | @echo "make source - Create source package" 6 | @echo "make install - Install on local system" 7 | @echo "make buildrpm - Generate a rpm package" 8 | @echo "make builddeb - Generate a deb package" 9 | @echo "make clean - Get rid of scratch and byte files" 10 | 11 | source: 12 | python setup.py sdist $(COMPILE) 13 | 14 | install: 15 | python setup.py install --root $(DESTDIR) $(COMPILE) 16 | 17 | buildrpm: 18 | python setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall 19 | 20 | builddeb: 21 | # build the source package in the parent directory 22 | # then rename it to project_version.orig.tar.gz 23 | python setup.py sdist $(COMPILE) --dist-dir=../ --prune 24 | rename -f 's/$(PROJECT)-(.*)\.tar\.gz/$(PROJECT)_$$1\.orig\.tar\.gz/' ../* 25 | # build the package 26 | dpkg-buildpackage -i -I -rfakeroot 27 | 28 | clean: 29 | python setup.py clean 30 | $(MAKE) -f $(CURDIR)/debian/rules clean 31 | rm -rf build/ MANIFEST 32 | find . -name '*.pyc' -delete 33 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | ================= 2 | httpripper Manual 3 | ================= 4 | 5 | About 6 | ===== 7 | HTTP Ripper is a generic ripper for the web 8 | It is free software licensed under the terms of the GNU General Public License 3 9 | or later. 10 | 11 | Generic Installation 12 | ==================== 13 | To install use you need to have the following libraries installed: 14 | * Python 2.5 15 | * PyGTK >= 2.10 16 | Normally these libraries are already installed on your system. 17 | 18 | To install httpripper execute: ``python setup.py install`` as superuser (root). If you are using a gnome based system like ubuntu you can just doubleclick ``install.sh`` and select run. 19 | 20 | Usage 21 | ===== 22 | Start HTTPRipper. It will display the hostname/port it's running on. 23 | Configure your browser to use it as proxy. Hit the record button ;) 24 | For information on how to use httpripper please visit the website. 25 | 26 | Recommendations 27 | =============== 28 | Tired of manually switching proxies? Use use a proxyswitcher 29 | like (http://foxyproxy.mozdev.org/). 30 | 31 | Hacking 32 | ======= 33 | If you want to hack on httpripper just clone my git repository:: 34 | http://github.com/jwagner/httpripper 35 | 36 | And don't forget to init the submodules (needs git 1.5.3 or newer!) 37 | 38 | $ git submodule init 39 | $ git submodule update 40 | 41 | If you have any questions or a patch just drop me a mail. 42 | 43 | License 44 | ======= 45 | Copyright (C) 2008-2010 Jonas Wagner 46 | 47 | This program is free software: you can redistribute it and/or modify 48 | it under the terms of the GNU General Public License as published by 49 | the Free Software Foundation, either version 3 of the License, or 50 | (at your option) any later version. 51 | 52 | This program is distributed in the hope that it will be useful, 53 | but WITHOUT ANY WARRANTY; without even the implied warranty of 54 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 55 | GNU General Public License for more details. 56 | 57 | You should have received a copy of the GNU General Public License 58 | along with this program. If not, see . 59 | 60 | 61 | Bugreports / Questions 62 | ====================== 63 | If you encounter any bugs in httpproxy or have suggestions or just want to 64 | thank me - I would like to hear about it! 65 | 66 | Contact 67 | ======= 68 | You can reach my by e-mail: veers at gmx dot ch 69 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | [ ] Progress Indicator? 2 | [ ] Remember last save location? 3 | -------------------------------------------------------------------------------- /bin/httpripper: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | from httpripper import httpripper 4 | httpripper.main() 5 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | httpripper (1.1.1) stable; urgency=low 2 | 3 | * Initial release. 4 | 5 | -- Jonas Wagner Sat, 24 Jul 2010 18:56:50 +0200 6 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: httpripper 2 | Section: universal/gnome 3 | Priority: optional 4 | Maintainer: Jonas Wagner 5 | Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 0.4.49) 6 | XS-Python-Version: >=2.5 7 | Standards-Version: 3.8.4 8 | 9 | Package: httpripper 10 | Architecture: all 11 | Homepage: http://29a.ch/httpripper/ 12 | XB-Python-Version: ${python:Versions} 13 | Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 (>= 2.10), python (>= 2.6) 14 | Description: HTTP Ripper is a tool to rip content out of the web 15 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | This package was debianized by Jonas Wagner 2 | on Sat, 18 Oct 2008 20:13:44 +0200. 3 | 4 | It was downloaded from http://29a.ch/httpripper/ 5 | 6 | Upstream Author: 7 | 8 | Jonas Wagner 9 | 10 | Files: * 11 | Copyright: 12 | 2009-2010, Jonas Wagner 13 | License: GPL 14 | 15 | Files: debian/* 16 | Copyright: 17 | 2010, Jonas Wagner 18 | License: GPL 19 | 20 | License: GPL 21 | This package is free software; you can redistribute it and/or modify 22 | it under the terms of the GNU General Public License as published by 23 | the Free Software Foundation; either version 2 of the License, or 24 | (at your option) any later version. 25 | 26 | This package is distributed in the hope that it will be useful, 27 | but WITHOUT ANY WARRANTY; without even the implied warranty of 28 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 29 | GNU General Public License for more details. 30 | 31 | You should have received a copy of the GNU General Public License 32 | along with this package; if not, see . 33 | 34 | On Debian systems, the complete text of the GNU General 35 | Public License can be found in `/usr/share/common-licenses/GPL-3'. 36 | -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- 1 | httpripper_1.1.1_all.deb universal/gnome optional 2 | -------------------------------------------------------------------------------- /debian/python-module-stampdir/httpripper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/debian/python-module-stampdir/httpripper -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | 4 | DEB_PYTHON_SYSTEM := pysupport 5 | 6 | include /usr/share/cdbs/1/rules/debhelper.mk 7 | include /usr/share/cdbs/1/class/python-distutils.mk 8 | 9 | clean:: 10 | rm -rf build build-stamp configure-stamp build/ MANIFEST 11 | dh_clean 12 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- 1 | version=3 2 | http://29a.ch/httpripper/httpripper-(.+)\.tar\.gz 3 | -------------------------------------------------------------------------------- /httpripper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/httpripper/__init__.py -------------------------------------------------------------------------------- /httpripper/httpripper.py: -------------------------------------------------------------------------------- 1 | """ 2 | Author: Jonas Wagner 3 | 4 | HTTPRipper a generic ripper for the web 5 | Copyright (C) 2008-2010 Jonas Wagner 6 | 7 | This program is free software: you can redistribute it and/or modify 8 | it under the terms of the GNU General Public License as published by 9 | the Free Software Foundation, either version 3 of the License, or 10 | (at your option) any later version. 11 | 12 | This program is distributed in the hope that it will be useful, 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 | GNU General Public License for more details. 16 | 17 | You should have received a copy of the GNU General Public License 18 | along with this program. If not, see . 19 | """ 20 | 21 | import datetime 22 | import logging 23 | import os 24 | from os import path 25 | import shutil 26 | import socket 27 | import SocketServer 28 | import sys 29 | import tempfile 30 | import threading 31 | import time 32 | from urlparse import urlparse 33 | 34 | 35 | # configure gettext 36 | import locale 37 | locale.setlocale(locale.LC_ALL, "") 38 | 39 | import gettext 40 | try: 41 | PREFIX = path.abspath(path.join(path.dirname(sys.modules["__main__"].__file__), os.pardir)) 42 | except AttributeError: 43 | # frozen 44 | PREFIX = path.abspath(".") 45 | LANGUAGES = [locale.getdefaultlocale()[0] or "en_US", "en_US"] 46 | LOCALE_PATH = os.path.join(PREFIX, "share", "locale") 47 | gettext.bindtextdomain('httpripper', LOCALE_PATH) 48 | gettext.textdomain('httpripper') 49 | gettext.translation('httpripper', LOCALE_PATH, 50 | languages=LANGUAGES, fallback = True).install(unicode=1) 51 | 52 | 53 | import gtk, gobject, pango 54 | 55 | # always enable button images 56 | gtk.settings_get_default().set_long_property("gtk-button-images", True, "main") 57 | 58 | 59 | from x29a import mygtk 60 | from x29a.utils import byteformat 61 | mygtk.install() 62 | 63 | import prox as proxpy 64 | 65 | try: 66 | __file__ 67 | except NameError: 68 | # frozen 69 | sys.stderr.write = lambda *x: None 70 | 71 | try: 72 | import gconf 73 | except ImportError: 74 | logging.debug("disabling proxy configuration") 75 | def get_proxy(): 76 | return None, None, False, None 77 | def set_proxy(host, port, on, mode="manual"): 78 | pass 79 | else: 80 | logging.debug("enabling proxy configuration") 81 | gconf_client = gconf.client_get_default() 82 | def get_proxy(): 83 | proxy = ( 84 | gconf_client.get_string("/system/http_proxy/host"), 85 | gconf_client.get_int("/system/http_proxy/port"), 86 | gconf_client.get_bool("/system/http_proxy/use_http_proxy"), 87 | gconf_client.get_string("/system/proxy/mode") 88 | ) 89 | logging.debug("get_proxy() -> %r", proxy) 90 | return proxy 91 | 92 | def set_proxy(host, port, enabled, mode="manual"): 93 | logging.debug("set_proxy(%r, %r, %r, %r)", host, port, enabled, mode) 94 | gconf_client.set_string("/system/http_proxy/host", host), 95 | gconf_client.set_int("/system/http_proxy/port", port), 96 | gconf_client.set_bool("/system/http_proxy/use_http_proxy", enabled) 97 | gconf_client.set_string("/system/proxy/mode", mode) 98 | 99 | NAME = "HTTP Ripper" 100 | VERSION = "1.1.1" 101 | WEBSITE = "http://29a.ch/httpripper/" 102 | 103 | def llabel(s): 104 | """a left aligned label""" 105 | l = gtk.Label(s) 106 | l.set_property("xalign", 0.0) 107 | return l 108 | 109 | def byteformatdatafunc(column, cell, model, treeiter): 110 | n = int(cell.get_property('text')) 111 | cell.set_property('text', byteformat(n)) 112 | 113 | def get_unused_filename(name): 114 | if path.exists(name): 115 | root, ext = path.splitext(name) 116 | i = 1 117 | while path.exists(root + str(i) + ext): 118 | i += 1 119 | return root + str(i) + ext 120 | return name 121 | 122 | class ContentTypeFilter(gtk.ComboBox): 123 | """A combobox to choose a prefix to filter mimetypes""" 124 | content_types = [ 125 | ("text-x-generic", _("Any"), ""), 126 | ("audio-x-generic", _("Audio"), "audio"), 127 | ("image-x-generic", _("Image"), "image"), 128 | ("video-x-generic", _("Video"), "video"), 129 | ] 130 | def __init__(self): 131 | self.model = mygtk.ListStore(icon=gtk.gdk.Pixbuf, name=str, prefix=str) 132 | for icon, name, prefix in self.content_types: 133 | self.model.append(icon=mygtk.iconfactory.get_icon(icon, 16), name=name, prefix=prefix) 134 | gtk.ComboBox.__init__(self, self.model) 135 | pixbuf_cell = gtk.CellRendererPixbuf() 136 | self.pack_start(pixbuf_cell, False) 137 | self.add_attribute(pixbuf_cell, 'pixbuf', self.model.columns.icon) 138 | text_cell = gtk.CellRendererText() 139 | self.pack_start(text_cell, True) 140 | self.add_attribute(text_cell, 'text', self.model.columns.name) 141 | self.set_active(0) 142 | 143 | @property 144 | def prefix(self): 145 | i = self.get_active() 146 | return self.model.get_value(self.model.get_iter(self.get_active()), 147 | self.model. columns.prefix) 148 | 149 | 150 | class MainWindow(gtk.Window): 151 | """the main window of httpripper""" 152 | def __init__(self): 153 | gtk.Window.__init__(self) 154 | self.port = 8080 155 | while True: 156 | try: 157 | self.server = HTTPProxyServer(self) 158 | break 159 | except socket.error: 160 | self.port += 1 161 | self.server.start() 162 | self.set_title(NAME) 163 | self.set_icon(mygtk.iconfactory.get_icon("httpripper", 32)) 164 | self.set_default_size(600, 600) 165 | self.vbox = gtk.VBox() 166 | self.add(self.vbox) 167 | self.info = gtk.Label( 168 | _("HTTPRipper is running on localhost: %i") % self.port) 169 | self.vbox.pack_start(self.info, False, False) 170 | self.model = mygtk.ListStore(date=str, url=str, size=int, path=str, 171 | icon=str, content_type=str) 172 | self.model_filtered = self.model.filter_new() 173 | self.model_filtered.set_visible_func(self.row_visible) 174 | self.model_sort = gtk.TreeModelSort(self.model_filtered) 175 | self.treeview = gtk.TreeView(self.model_sort) 176 | self.treeview.set_rules_hint(True) 177 | self.treeview.get_selection().set_mode(gtk.SELECTION_MULTIPLE) 178 | self.treeview.connect("row-activated", self.save_file) 179 | self.treeview.set_search_column(self.model.columns.url) 180 | 181 | # add rows 182 | col = self.treeview.insert_column_with_attributes(0, _("Time"), 183 | gtk.CellRendererText(), text=self.model.columns.date) 184 | col.set_sort_column_id(self.model.columns.date) 185 | 186 | col = self.treeview.insert_column_with_attributes(1, _("Size"), 187 | gtk.CellRendererText(), text=self.model.columns.size) 188 | col.set_cell_data_func(col.get_cell_renderers()[0], byteformatdatafunc) 189 | col.set_sort_column_id(self.model.columns.size) 190 | 191 | renderer = gtk.CellRendererText() 192 | col = self.treeview.insert_column_with_attributes(2, _("Content-Type"), 193 | renderer, text=self.model.columns.content_type) 194 | renderer.set_property("ellipsize", pango.ELLIPSIZE_END) 195 | renderer.set_property("width", 100) 196 | col.set_sort_column_id(self.model.columns.content_type) 197 | 198 | col = self.treeview.insert_column_with_attributes(3, _("URL"), 199 | gtk.CellRendererText(), text=self.model.columns.url) 200 | col.set_expand(True) 201 | col.set_sort_column_id(self.model.columns.url) 202 | 203 | col = self.treeview.insert_column_with_attributes(0, "", 204 | gtk.CellRendererPixbuf(), 205 | **({"icon_name": self.model.columns.icon})) 206 | 207 | self.vbox.pack_start(mygtk.scrolled(self.treeview)) 208 | #self.treeview.set_fixed_height_mode(True) # makes it a bit faster 209 | 210 | # filtering 211 | self.filter_content_type = ContentTypeFilter() 212 | self.filter_size = gtk.Entry() 213 | self.filter_size.connect("changed", lambda entry: self.model_filtered.refilter()) 214 | self.filter_content_type.connect("changed", lambda combobox: self.model_filtered.refilter()) 215 | self.filter_expander = gtk.Expander(label=_("Filter")) 216 | self.filter_expander.add( 217 | mygtk.make_table([ 218 | (llabel(_("Content-Type")), llabel(_("is")), self.filter_content_type), 219 | (llabel(_("Size")), llabel(_("at least (KiB)")), self.filter_size), 220 | ]) 221 | ) 222 | self.vbox.pack_start(self.filter_expander, False, False) 223 | 224 | # buttons at the buttom 225 | self.buttonbox = gtk.HButtonBox() 226 | self.vbox.pack_end(self.buttonbox, False, False) 227 | 228 | self.button_record = gtk.ToggleButton(gtk.STOCK_MEDIA_RECORD) 229 | self.button_record.set_use_stock(True) 230 | self.button_record.connect("clicked", self.record) 231 | self.buttonbox.pack_start(self.button_record) 232 | 233 | self.button_save = gtk.Button(stock=gtk.STOCK_SAVE_AS) 234 | self.button_save.connect("clicked", self.save) 235 | self.buttonbox.pack_start(self.button_save) 236 | 237 | self.button_clear = gtk.Button(stock=gtk.STOCK_CLEAR) 238 | self.button_clear.connect("clicked", self.clear) 239 | self.buttonbox.pack_start(self.button_clear) 240 | 241 | self.button_about = gtk.Button(stock=gtk.STOCK_ABOUT) 242 | self.button_about.connect("clicked", self.about) 243 | self.buttonbox.pack_start(self.button_about) 244 | 245 | self.connect("destroy", self.clear) 246 | self.connect("destroy", lambda *args: self.server.shutdown()) 247 | self.connect("destroy", gtk.main_quit) 248 | 249 | host, port, enabled, mode = get_proxy() 250 | if host == "localhost" and port == self.port and enabled: 251 | self.button_record.set_active(True) 252 | 253 | def save(self, sender): 254 | """save the selected files""" 255 | model, rows = self.treeview.get_selection().get_selected_rows() 256 | if len(rows) == 1: 257 | self.save_file(self.treeview, rows[0], None) 258 | elif len(rows) > 1: 259 | self.save_files(model, rows) 260 | 261 | def save_files(self, model, rows): 262 | """called to save multiple selected files""" 263 | dialog = gtk.FileChooserDialog( 264 | title=_("Save As"), 265 | parent=self, 266 | action=gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER, 267 | buttons=(# ugly pygtk problem 268 | _("Cancel").encode("utf8"), gtk.RESPONSE_CANCEL, 269 | _("Save").encode("utf8"), gtk.RESPONSE_OK 270 | ) 271 | ) 272 | if dialog.run() == gtk.RESPONSE_OK: 273 | for row in map(model.get_iter, rows): 274 | filepath = model.get_value(row, self.model.columns.path) 275 | url = model.get_value(row, self.model.columns.url) 276 | name = path.basename(url).split("?")[0] 277 | dest = get_unused_filename(path.join(dialog.get_filename(), name)) 278 | shutil.copy(filepath, dest) 279 | dialog.destroy() 280 | 281 | def save_file(self, treeview, treepath, view_column): 282 | """called to save a single file""" 283 | model = treeview.get_model() 284 | row = model.get_iter(treepath) 285 | filepath = model.get_value(row, self.model.columns.path) 286 | url = model.get_value(row, self.model.columns.url) 287 | name = urlparse(url).path.split("/")[-1] 288 | dialog = gtk.FileChooserDialog( 289 | title=_("Save As"), 290 | parent=self, 291 | action=gtk.FILE_CHOOSER_ACTION_SAVE, 292 | buttons=( # ugly pygtk problem 293 | _("Cancel").encode("utf8"), gtk.RESPONSE_CANCEL, 294 | _("Save").encode("utf8"), gtk.RESPONSE_OK 295 | ) 296 | ) 297 | dialog.set_current_name(name) 298 | if dialog.run() == gtk.RESPONSE_OK: 299 | shutil.copy(filepath, dialog.get_filename()) 300 | dialog.destroy() 301 | 302 | def row_visible(self, model, iter_): 303 | content_type = self.model.get_value(iter_, self.model.columns.content_type) 304 | prefix = self.filter_content_type.prefix 305 | if prefix: 306 | if not content_type: 307 | return False 308 | if not content_type.startswith(prefix): 309 | return False 310 | try: 311 | size = int(self.filter_size.get_text())*1024 312 | except ValueError: 313 | size = 0 314 | if size and size > self.model.get_value(iter_, self.model.columns.size): 315 | return False 316 | return True 317 | 318 | def new_file(self, url, filepath, content_type): 319 | """called by the proxy where there is a new file""" 320 | self.model.append( 321 | date=datetime.datetime.now().time().strftime("%H:%M:%S"), 322 | url=url, 323 | size=path.getsize(filepath), 324 | icon="gtk-save", 325 | path=filepath, 326 | content_type=content_type 327 | ) 328 | 329 | def clear(self, sender): 330 | """clear the model and remove all files""" 331 | for row in self.model: 332 | filepath = row[self.model.columns.path] 333 | os.remove(filepath) 334 | self.model.clear() 335 | self.treeview.columns_autosize() 336 | 337 | def record(self, sender=None): 338 | self.server.record = sender.get_active() 339 | if self.server.record: 340 | self.old_proxy = get_proxy() 341 | set_proxy("localhost", self.port, True) 342 | elif self.old_proxy: 343 | host, port, enabled, mode = get_proxy() 344 | if host == "localhost" and port == self.port and enabled: 345 | set_proxy(host, port, False) 346 | else: 347 | set_proxy(*self.old_proxy) 348 | 349 | 350 | def about(self, sender): 351 | """show an about dialog""" 352 | about = gtk.AboutDialog() 353 | about.set_transient_for(self) 354 | about.set_logo(mygtk.iconfactory.get_icon("httpripper", 128)) 355 | about.set_name(NAME) 356 | about.set_version(VERSION) 357 | # about.set_comments("") 358 | about.set_authors(["Jonas Wagner"]) 359 | about.set_translator_credits(_("translator-credits")) 360 | about.set_copyright("Copyright (c) 2008-2010 Jonas Wagner") 361 | about.set_website(WEBSITE) 362 | about.set_website_label(WEBSITE) 363 | about.set_license(""" 364 | Copyright (C) 2008-2010 Jonas Wagner 365 | This program is free software; you can redistribute it and/or modify 366 | it under the terms of the GNU General Public License as published by 367 | the Free Software Foundation; either version 3 of the License, or 368 | (at your option) any later version. 369 | 370 | This program is distributed in the hope that it will be useful, 371 | but WITHOUT ANY WARRANTY; without even the implied warranty of 372 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 373 | GNU General Public License for more details. 374 | """) 375 | about.run() 376 | about.destroy() 377 | 378 | class Tee(object): 379 | """A filelike that writes it's data to two others""" 380 | def __init__(self, f1, f2): 381 | self.f1 = f1 382 | self.f2 = f2 383 | 384 | def write(self, data): 385 | self.f1.write(data) 386 | self.f2.write(data) 387 | 388 | class HTTPProxyHandler(proxpy.HTTPProxyHandler): 389 | """handles a single request to the proxy""" 390 | def forward_response_body(self, f1, f2, contentlength): 391 | """forwardes the content to the client and (if record is true) logs it""" 392 | if self.server.record: 393 | fd, name = tempfile.mkstemp(dir=self.server.tempdir) 394 | f3 = os.fdopen(fd, "w+b", 0) 395 | f2 = Tee(f2, f3) 396 | self.forward(f1, f2, contentlength) 397 | if self.server.record: 398 | content_type = self.responseheaders.get("Content-Type") 399 | if content_type: 400 | content_type = content_type[0] 401 | self.server.on_new_file(self.url, name, content_type) 402 | 403 | class HTTPProxyServer(proxpy.HTTPProxyServer, threading.Thread): 404 | """accepts client connections, deletes all files on shutdown""" 405 | def __init__(self, mainwin): 406 | threading.Thread.__init__(self) 407 | proxpy.HTTPProxyServer.__init__(self, ("127.0.0.1", mainwin.port), HTTPProxyHandler) 408 | self.skip_headers.append("If-") 409 | self.tempdir = tempfile.mkdtemp(prefix="httpripper") 410 | self.record = False 411 | self.setDaemon(True) 412 | self.mainwin = mainwin 413 | 414 | def run(self): 415 | self.serve_forever() 416 | 417 | def shutdown(self): 418 | shutil.rmtree(self.tempdir) 419 | self.socket.close() 420 | 421 | def on_new_file(self, url, filepath, content_type): 422 | gobject.idle_add(self.mainwin.new_file, url, filepath, content_type) 423 | 424 | def main(): 425 | """the entry point""" 426 | level = "DEBUG" in sys.argv and logging.DEBUG or logging.ERROR 427 | if sys.platform == "win32": 428 | def release_gil_on_stupid_operating_system(): 429 | """fix for a stupid problem with threads and gtk on windows!""" 430 | time.sleep(0.001) 431 | return True 432 | gobject.timeout_add(25, release_gil_on_stupid_operating_system) 433 | logging.basicConfig(filename="httpripper.log", level=level) 434 | else: 435 | logging.basicConfig(level=level) 436 | gtk.gdk.threads_init() 437 | win = MainWindow() 438 | win.show_all() 439 | old_proxy = get_proxy() 440 | try: 441 | gtk.main() 442 | finally: 443 | set_proxy(*old_proxy) 444 | 445 | if __name__ == "__main__": 446 | main() 447 | -------------------------------------------------------------------------------- /httpripper/prox.py: -------------------------------------------------------------------------------- 1 | """ 2 | A http proxy based on the SocketServer Module 3 | Author: Jonas Wagner 4 | 5 | HTTPRipper a generic ripper for the web 6 | Copyright (C) 2008-2009 Jonas Wagner 7 | 8 | This program is free software: you can redistribute it and/or modify 9 | it under the terms of the GNU General Public License as published by 10 | the Free Software Foundation, either version 3 of the License, or 11 | (at your option) any later version. 12 | 13 | This program is distributed in the hope that it will be useful, 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | GNU General Public License for more details. 17 | 18 | You should have received a copy of the GNU General Public License 19 | along with this program. If not, see . 20 | """ 21 | 22 | import SocketServer 23 | import socket 24 | from urlparse import urlparse 25 | import logging 26 | from collections import defaultdict 27 | 28 | BUFSIZE = 2**16 29 | 30 | logger = logging 31 | 32 | socket.setdefaulttimeout(30) 33 | 34 | 35 | class HTTPProxyHandler(SocketServer.StreamRequestHandler): 36 | """handles a connection from the client, can handle multiple requests""" 37 | 38 | def parse_request(self): 39 | """parse a request line""" 40 | request = "" 41 | while not request: 42 | request = self.rfile.readline().strip() 43 | logger.debug("request %r", request) 44 | method, rawurl, version = request.split(" ") 45 | return method, rawurl, version 46 | 47 | def parse_header(self, f): 48 | """read the httpheaders from the file like f into a dictionary""" 49 | logger.debug("processing headers") 50 | headers = defaultdict(list) 51 | for line in f: 52 | if not line.strip(): 53 | break 54 | key, value = line.split(": ", 1) 55 | headers[key].append(value.strip()) 56 | return headers 57 | 58 | def write_headers(self, f, headers): 59 | """ 60 | Forward the dictionary containing httpheaders *headers* 61 | to the file f. Writes a newline at the end. 62 | """ 63 | logger.debug("forwarding headers %r", headers) 64 | for name, values in headers.items(): 65 | for header in self.server.skip_headers: 66 | if name.startswith(header): 67 | continue 68 | else: 69 | for value in values: 70 | f.write("%s: %s\r\n" % (name, value)) 71 | f.write("\r\n") 72 | 73 | def forward(self, f1, f2, maxlen=0): 74 | """forward maxlen bytes from f1 to f2""" 75 | logger.debug("forwarding %r bytes", maxlen) 76 | left = maxlen or 1000000000 77 | while left: 78 | data = f1.read(min(left, BUFSIZE)) 79 | if not data: 80 | break 81 | f2.write(data) 82 | left -= len(data) 83 | 84 | forward_request_body = forward 85 | forward_response_body = forward 86 | 87 | def request_url(self, method, rawurl, version): 88 | """create a new socket and write the requestline""" 89 | url = urlparse(rawurl) 90 | request = "%s %s%s %s\r\n" % (method, url.path or "/", 91 | url.query and "?" + url.query or "", version) 92 | logging.debug("request_url(%r, %r, %r) request: %r", method, rawurl, version, request) 93 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 94 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 95 | s.connect((url.hostname, int(url.port or 80))) 96 | s.sendall(request) 97 | return s, s.makefile("rwb", BUFSIZE) 98 | 99 | def __repr__(self): 100 | return "HTTPProxyRequestHandler(%r)" % self.url 101 | 102 | def handle(self): 103 | try: 104 | self._handle() 105 | except: 106 | logger.exception("An error occured while handling request %r", self) 107 | raise 108 | 109 | def handle_connect(self): 110 | host, port = self.url.split(":") 111 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 112 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 113 | s.connect((host, int(port))) 114 | while True: 115 | r, w, x = select([self.request, s]) 116 | 117 | def _handle(self): 118 | """Handle client requests""" 119 | while True: 120 | method, url, version = self.parse_request() 121 | self.url = url 122 | self.requestheaders = self.parse_header(self.rfile) 123 | self.requestheaders["Connection"] = ["close"] 124 | sock, request = self.request_url(method, url, version) 125 | self.write_headers(request, self.requestheaders) 126 | if method in ("POST", "PUT") and "Content-Length" in self.requestheaders: 127 | self.forward_request_body(self.rfile, request, 128 | int(self.requestheaders["Content-Length"][0])) 129 | sock.shutdown(socket.SHUT_WR) 130 | if method == "CONNECT": 131 | self.handle_connect() 132 | continue 133 | # forward status line 134 | self.wfile.write(request.readline()) 135 | self.responseheaders = self.parse_header(request) 136 | self.write_headers(self.wfile, self.responseheaders) 137 | try: 138 | clen = int(self.responseheaders.get("Content-Length")[0]) 139 | except (KeyError, TypeError, ValueError, IndexError): 140 | clen = None 141 | self.forward_response_body(request, self.wfile, clen) 142 | try: 143 | request.close() 144 | sock.shutdown(socket.SHUT_RD) 145 | except: 146 | pass 147 | sock.close() 148 | if self.requestheaders.get("Proxy-Connection") != ["keep-alive"]: 149 | break 150 | break 151 | 152 | 153 | class HTTPProxyServer(SocketServer.ThreadingMixIn, SocketServer.TCPServer): 154 | allow_reuse_address = True 155 | daemon_threads = True 156 | timeout = 90 157 | request_queue_size = 64 158 | 159 | def __init__(self, addr, handler=HTTPProxyHandler): 160 | SocketServer.TCPServer.__init__(self, addr, handler) 161 | self.skip_headers = ["Proxy-"] 162 | 163 | def handle_error(self, request, addr): 164 | pass 165 | 166 | 167 | #unfinished carp 168 | class HTTPProxy2ProxyHandler(HTTPProxyHandler): 169 | 170 | def request_url(self, method, rawurl, version): 171 | """create a new socket and write the requestline""" 172 | request = "%s %s%s %s\r\n" % (method, rawurl, version) 173 | logging.debug("request_url(%r, %r, %r) request: %r", method, rawurl, version, request) 174 | s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 175 | s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) 176 | s.connect(self.server.proxy_addr) 177 | s.sendall(request) 178 | return s, s.makefile("rwb", BUFSIZE) 179 | 180 | 181 | class HTTPProxy2ProxyServer(HTTPProxyServer): 182 | 183 | def __init__(self, addr, proxy_addr): 184 | HTTPServer.__init__(self, addr) 185 | self.skip_headers = ["Proxy-"] 186 | self.proxy_addr = proxy_addr 187 | 188 | 189 | def make_http_proxy(addr): 190 | import urllib 191 | proxies = urllib.getproxies() 192 | try: 193 | proxy_url = proxies["http"] 194 | except KeyError: 195 | return HTTPProxyServer(addr) 196 | url = urlparse(proxy_url) 197 | return HTTPProxy2ProxyServer(addr, (url.hostname, url.port or 8080)) 198 | 199 | if __name__ == "__main__": 200 | logging.basicConfig(level=logging.DEBUG) 201 | server = HTTPProxyServer(("localhost", 8080)) 202 | server.serve_forever() 203 | 204 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | gksu -u root python setup.py install 3 | zenity --info --text "HTTP Ripper has been installed" 4 | -------------------------------------------------------------------------------- /po/Makefile: -------------------------------------------------------------------------------- 1 | all: mo 2 | mo: *.po 3 | msgfmt --output-file=../share/locale/sv/LC_MESSAGES/httpripper.mo httpripper-sv.po 4 | msgfmt --output-file=../share/locale/he/LC_MESSAGES/httpripper.mo httpripper-he.po 5 | msgfmt --output-file=../share/locale/es/LC_MESSAGES/httpripper.mo httpripper-es.po 6 | msgfmt --output-file=../share/locale/cy/LC_MESSAGES/httpripper.mo httpripper-cy.po 7 | msgfmt --output-file=../share/locale/sk/LC_MESSAGES/httpripper.mo httpripper-sk.po 8 | msgfmt --output-file=../share/locale/sr/LC_MESSAGES/httpripper.mo httpripper-sr.po 9 | msgfmt --output-file=../share/locale/el/LC_MESSAGES/httpripper.mo httpripper-el.po 10 | msgfmt --output-file=../share/locale/pt/LC_MESSAGES/httpripper.mo httpripper-pt.po 11 | msgfmt --output-file=../share/locale/es/LC_MESSAGES/httpripper.mo es.po 12 | msgfmt --output-file=../share/locale/ru/LC_MESSAGES/httpripper.mo httpripper-ru.po 13 | msgfmt --output-file=../share/locale/bs/LC_MESSAGES/httpripper.mo httpripper-bs.po 14 | msgfmt --output-file=../share/locale/de/LC_MESSAGES/httpripper.mo httpripper-de.po 15 | msgfmt --output-file=../share/locale/uk/LC_MESSAGES/httpripper.mo httpripper-uk.po 16 | msgfmt --output-file=../share/locale/zh_TW/LC_MESSAGES/httpripper.mo httpripper-zh_TW.po 17 | msgfmt --output-file=../share/locale/cs/LC_MESSAGES/httpripper.mo httpripper-cs.po 18 | msgfmt --output-file=../share/locale/ro/LC_MESSAGES/httpripper.mo httpripper-ro.po 19 | msgfmt --output-file=../share/locale/fr/LC_MESSAGES/httpripper.mo fr.po 20 | msgfmt --output-file=../share/locale/nds/LC_MESSAGES/httpripper.mo httpripper-nds.po 21 | msgfmt --output-file=../share/locale/ms/LC_MESSAGES/httpripper.mo httpripper-ms.po 22 | msgfmt --output-file=../share/locale/pt_BR/LC_MESSAGES/httpripper.mo httpripper-pt_BR.po 23 | msgfmt --output-file=../share/locale/eu/LC_MESSAGES/httpripper.mo httpripper-eu.po 24 | msgfmt --output-file=../share/locale/tr/LC_MESSAGES/httpripper.mo httpripper-tr.po 25 | msgfmt --output-file=../share/locale/de/LC_MESSAGES/httpripper.mo de.po 26 | msgfmt --output-file=../share/locale/fi/LC_MESSAGES/httpripper.mo httpripper-fi.po 27 | msgfmt --output-file=../share/locale/fr/LC_MESSAGES/httpripper.mo httpripper-fr.po 28 | msgfmt --output-file=../share/locale/te/LC_MESSAGES/httpripper.mo httpripper-te.po 29 | msgfmt --output-file=../share/locale/nl/LC_MESSAGES/httpripper.mo httpripper-nl.po 30 | msgfmt --output-file=../share/locale/id/LC_MESSAGES/httpripper.mo id.po 31 | msgfmt --output-file=../share/locale/id/LC_MESSAGES/httpripper.mo httpripper-id.po 32 | msgfmt --output-file=../share/locale/pt_BR/LC_MESSAGES/httpripper.mo pt_BR.po 33 | msgfmt --output-file=../share/locale/th/LC_MESSAGES/httpripper.mo httpripper-th.po 34 | msgfmt --output-file=../share/locale/da/LC_MESSAGES/httpripper.mo httpripper-da.po 35 | msgfmt --output-file=../share/locale/it/LC_MESSAGES/httpripper.mo httpripper-it.po 36 | msgfmt --output-file=../share/locale/sr/LC_MESSAGES/httpripper.mo sr.po 37 | msgfmt --output-file=../share/locale/bg/LC_MESSAGES/httpripper.mo httpripper-bg.po 38 | msgfmt --output-file=../share/locale/ca/LC_MESSAGES/httpripper.mo httpripper-ca.po 39 | msgfmt --output-file=../share/locale/gl/LC_MESSAGES/httpripper.mo httpripper-gl.po 40 | msgfmt --output-file=../share/locale/hu/LC_MESSAGES/httpripper.mo httpripper-hu.po 41 | msgfmt --output-file=../share/locale/ar/LC_MESSAGES/httpripper.mo httpripper-ar.po 42 | msgfmt --output-file=../share/locale/zh_CN/LC_MESSAGES/httpripper.mo httpripper-zh_CN.po 43 | msgfmt --output-file=../share/locale/pl/LC_MESSAGES/httpripper.mo httpripper-pl.po 44 | msgfmt --output-file=../share/locale/en_GB/LC_MESSAGES/httpripper.mo httpripper-en_GB.po 45 | *.po: httpripper.pot 46 | msgmerge -U httpripper-sv.po httpripper.pot 47 | msgmerge -U httpripper-he.po httpripper.pot 48 | msgmerge -U httpripper-es.po httpripper.pot 49 | msgmerge -U httpripper-cy.po httpripper.pot 50 | msgmerge -U httpripper-sk.po httpripper.pot 51 | msgmerge -U httpripper-sr.po httpripper.pot 52 | msgmerge -U httpripper-el.po httpripper.pot 53 | msgmerge -U httpripper-pt.po httpripper.pot 54 | msgmerge -U es.po httpripper.pot 55 | msgmerge -U httpripper-ru.po httpripper.pot 56 | msgmerge -U httpripper-bs.po httpripper.pot 57 | msgmerge -U httpripper-de.po httpripper.pot 58 | msgmerge -U httpripper-uk.po httpripper.pot 59 | msgmerge -U httpripper-zh_TW.po httpripper.pot 60 | msgmerge -U httpripper-cs.po httpripper.pot 61 | msgmerge -U httpripper-ro.po httpripper.pot 62 | msgmerge -U fr.po httpripper.pot 63 | msgmerge -U httpripper-nds.po httpripper.pot 64 | msgmerge -U httpripper-ms.po httpripper.pot 65 | msgmerge -U httpripper-pt_BR.po httpripper.pot 66 | msgmerge -U httpripper-eu.po httpripper.pot 67 | msgmerge -U httpripper-tr.po httpripper.pot 68 | msgmerge -U de.po httpripper.pot 69 | msgmerge -U httpripper-fi.po httpripper.pot 70 | msgmerge -U httpripper-fr.po httpripper.pot 71 | msgmerge -U httpripper-te.po httpripper.pot 72 | msgmerge -U httpripper-nl.po httpripper.pot 73 | msgmerge -U id.po httpripper.pot 74 | msgmerge -U httpripper-id.po httpripper.pot 75 | msgmerge -U pt_BR.po httpripper.pot 76 | msgmerge -U httpripper-th.po httpripper.pot 77 | msgmerge -U httpripper-da.po httpripper.pot 78 | msgmerge -U httpripper-it.po httpripper.pot 79 | msgmerge -U sr.po httpripper.pot 80 | msgmerge -U httpripper-bg.po httpripper.pot 81 | msgmerge -U httpripper-ca.po httpripper.pot 82 | msgmerge -U httpripper-gl.po httpripper.pot 83 | msgmerge -U httpripper-hu.po httpripper.pot 84 | msgmerge -U httpripper-ar.po httpripper.pot 85 | msgmerge -U httpripper-zh_CN.po httpripper.pot 86 | msgmerge -U httpripper-pl.po httpripper.pot 87 | msgmerge -U httpripper-en_GB.po httpripper.pot 88 | httpripper.pot: ../httpripper/httpripper.py 89 | xgettext --language=Python --keyword=_ --output=httpripper.pot ../httpripper/httpripper.py 90 | -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 5 | "Content-Type: text/plain; charset=UTF-8\n" 6 | "Content-Transfer-Encoding: 8bit\n" 7 | 8 | #: ../httpripper/httpripper.py:86 9 | msgid "Any" 10 | msgstr "Alle" 11 | 12 | #: ../httpripper/httpripper.py:87 13 | msgid "Audio" 14 | msgstr "Audio" 15 | 16 | #: ../httpripper/httpripper.py:88 17 | msgid "Image" 18 | msgstr "Bild" 19 | 20 | #: ../httpripper/httpripper.py:89 21 | msgid "Video" 22 | msgstr "Video" 23 | 24 | #: ../httpripper/httpripper.py:129 25 | #, python-format 26 | msgid "HTTPRipper is running on localhost: %i" 27 | msgstr "HTTPRipper läuft auf localhost: %i" 28 | 29 | #: ../httpripper/httpripper.py:143 30 | msgid "Time" 31 | msgstr "Zeit" 32 | 33 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 34 | msgid "Size" 35 | msgstr "Grösse" 36 | 37 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 38 | msgid "Content-Type" 39 | msgstr "Content-Type" 40 | 41 | #: ../httpripper/httpripper.py:159 42 | msgid "URL" 43 | msgstr "URL" 44 | 45 | #: ../httpripper/httpripper.py:176 46 | msgid "Filter" 47 | msgstr "Filter" 48 | 49 | #: ../httpripper/httpripper.py:179 50 | msgid "is" 51 | msgstr "ist" 52 | 53 | #: ../httpripper/httpripper.py:180 54 | msgid "at least (KiB)" 55 | msgstr "ist mindestens (KiB)" 56 | 57 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 58 | msgid "Save As" 59 | msgstr "Speichern unter" 60 | 61 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 62 | msgid "Cancel" 63 | msgstr "Abbrechen" 64 | 65 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 66 | msgid "Save" 67 | msgstr "Speichern" 68 | 69 | #: ../httpripper/httpripper.py:305 70 | msgid "translator-credits" 71 | msgstr "Jonas Wagner" 72 | -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- 1 | # Spanish translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-30 22:31+0000\n" 12 | "Last-Translator: NicolasGiorgetti \n" 13 | "Language-Team: Spanish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2008-08-31 10:56+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Cualquiera" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Sonido" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imagen" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vídeo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper ocupa %i en localhost" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tiempo" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Tamaño" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipo de contenido" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "es" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "por lo menos (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Guardar como" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancelar" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Guardar" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Benjamin https://launchpad.net/~suizo12\n" 86 | " NicolasGiorgetti https://launchpad.net/~lahire" 87 | -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- 1 | # French translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-29 12:23+0000\n" 12 | "Last-Translator: Benjamin \n" 13 | "Language-Team: French \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2008-08-31 10:56+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Tous" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Image" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vidéo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, fuzzy, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper marche sur localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Temps" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Taille" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Type de contenu" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtre" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "est" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "au moins (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Enregistrer sous" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Annuler" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Enregistrer" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Benjamin https://launchpad.net/~suizo12" 86 | -------------------------------------------------------------------------------- /po/httpripper-ar.po: -------------------------------------------------------------------------------- 1 | # Arabic translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 13:00+0000\n" 12 | "Last-Translator: Maayouf Rashid Al-Naimi \n" 13 | "Language-Team: Arabic \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "أيّ" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "صوت" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "صورة" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "فيديو" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper يعمي على المضيف المحلي: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "الوقت" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "الحجم" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "نوع المُحْتَوَى" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "الرابط" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "رشح" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "هو" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "على الاقل (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "حفظ كـ" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "ألغي" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "احفظ" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Jonas Wagner https://launchpad.net/~veers\n" 86 | " Maayouf Rashid Al-Naimi https://launchpad.net/~balnaimi\n" 87 | " صقر بن عبدالله https://launchpad.net/~agari" 88 | -------------------------------------------------------------------------------- /po/httpripper-bg.po: -------------------------------------------------------------------------------- 1 | # Bulgarian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 11:43+0000\n" 12 | "Last-Translator: Wankata \n" 13 | "Language-Team: Bulgarian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Всички" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Аудио" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Изображение" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Видео" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper е стартиран на localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Време" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Размер" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Вид на съдържанието" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Уеб адрес" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Филтър" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "е" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "най-малко (KB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Запазване като" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Отказ" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Запазване" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Vladimir Kolev https://launchpad.net/~vladimir.kolev\n" 86 | " Wankata https://launchpad.net/~wankata" 87 | -------------------------------------------------------------------------------- /po/httpripper-bs.po: -------------------------------------------------------------------------------- 1 | # Bosnian translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 17:08+0000\n" 12 | "Last-Translator: kenan3008 \n" 13 | "Language-Team: Bosnian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Bilo koji" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Zvuk" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Slika" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper je pokrenut na lokalnom poslužitelju: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Vrijeme" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Veličina" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Vrsta sadržaja" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "jeste" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "najmanje (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Spremi kao" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Odustani" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Spremi" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " kenan3008 https://launchpad.net/~kenan3008" 86 | -------------------------------------------------------------------------------- /po/httpripper-ca.po: -------------------------------------------------------------------------------- 1 | # Catalan translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-24 23:49+0000\n" 12 | "Last-Translator: el_libre - http://www.catmidia.cat " 13 | "XDDDDDDDDDDDDDDDDDDDDDDDDDDD \n" 14 | "Language-Team: Catalan \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 19 | "X-Generator: Launchpad (build Unknown)\n" 20 | 21 | #: ../httpripper/httpripper.py:86 22 | msgid "Any" 23 | msgstr "Qualsevol" 24 | 25 | #: ../httpripper/httpripper.py:87 26 | msgid "Audio" 27 | msgstr "So" 28 | 29 | #: ../httpripper/httpripper.py:88 30 | msgid "Image" 31 | msgstr "Imatge" 32 | 33 | #: ../httpripper/httpripper.py:89 34 | msgid "Video" 35 | msgstr "Vídeo" 36 | 37 | #: ../httpripper/httpripper.py:129 38 | #, python-format 39 | msgid "HTTPRipper is running on localhost: %i" 40 | msgstr "HTTPRipper està executant-se a localhost: %i" 41 | 42 | #: ../httpripper/httpripper.py:143 43 | msgid "Time" 44 | msgstr "Hora" 45 | 46 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 47 | msgid "Size" 48 | msgstr "Grandària" 49 | 50 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 51 | msgid "Content-Type" 52 | msgstr "Content-Type" 53 | 54 | #: ../httpripper/httpripper.py:159 55 | msgid "URL" 56 | msgstr "Adreça URL" 57 | 58 | #: ../httpripper/httpripper.py:176 59 | msgid "Filter" 60 | msgstr "Filtre" 61 | 62 | #: ../httpripper/httpripper.py:179 63 | msgid "is" 64 | msgstr "és" 65 | 66 | #: ../httpripper/httpripper.py:180 67 | msgid "at least (KiB)" 68 | msgstr "mínim (KiB)" 69 | 70 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 71 | msgid "Save As" 72 | msgstr "Guardar com" 73 | 74 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 75 | msgid "Cancel" 76 | msgstr "Cancel·lar" 77 | 78 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 79 | msgid "Save" 80 | msgstr "Guardar" 81 | 82 | #: ../httpripper/httpripper.py:305 83 | msgid "translator-credits" 84 | msgstr "" 85 | "Launchpad Contributions:\n" 86 | " Aeoris https://launchpad.net/~aeoris\n" 87 | " el_libre - http://www.catmidia.cat XDDDDDDDDDDDDDDDDDDDDDDDDDDD https://" 88 | "launchpad.net/~el-libre" 89 | -------------------------------------------------------------------------------- /po/httpripper-cs.po: -------------------------------------------------------------------------------- 1 | # Czech translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 15:14+0000\n" 12 | "Last-Translator: Jaroslav Lichtblau \n" 13 | "Language-Team: Czech \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Libovolný" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Zvuk" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Obrázek" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper běží na localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Čas" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Velikost" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Content-Type" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtr" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "je" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "nejméně (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Uložit jako" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Zrušit" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Uložit" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Jakub Žáček https://launchpad.net/~dawon\n" 86 | " Jaroslav Lichtblau https://launchpad.net/~dragonlord" 87 | -------------------------------------------------------------------------------- /po/httpripper-cy.po: -------------------------------------------------------------------------------- 1 | # Welsh translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-03 23:50+0000\n" 12 | "Last-Translator: duw \n" 13 | "Language-Team: Welsh \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Unrhyw" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Sain" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Delwedd" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Fideo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "Mae HTTPRipper yn rhedeg ar localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Amser" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Maint" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Math-Cynnwys" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Hidlo" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "yn" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "o leiaf (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Cadw Fel" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Diddymu" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Cadw" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " duw https://launchpad.net/~ardavies" 86 | -------------------------------------------------------------------------------- /po/httpripper-da.po: -------------------------------------------------------------------------------- 1 | # Danish translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 12:48+0000\n" 12 | "Last-Translator: Mads Konradsen \n" 13 | "Language-Team: Danish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Alle" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Lyd" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Billed" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper kører på localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tid" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Størrelse" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Indhold-Type" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Adresse" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "er" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "i det mindste (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Gem Som" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Annullér" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Gem" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Mads Konradsen https://launchpad.net/~mads-hk" 86 | -------------------------------------------------------------------------------- /po/httpripper-de.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 6 | "PO-Revision-Date: 2009-07-22 10:04+0000\n" 7 | "Last-Translator: Fabian Affolter \n" 8 | "Language-Team: LANGUAGE \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 13 | "X-Generator: Launchpad (build Unknown)\n" 14 | 15 | #: ../httpripper/httpripper.py:86 16 | msgid "Any" 17 | msgstr "Alle" 18 | 19 | #: ../httpripper/httpripper.py:87 20 | msgid "Audio" 21 | msgstr "Audio" 22 | 23 | #: ../httpripper/httpripper.py:88 24 | msgid "Image" 25 | msgstr "Bild" 26 | 27 | #: ../httpripper/httpripper.py:89 28 | msgid "Video" 29 | msgstr "Video" 30 | 31 | #: ../httpripper/httpripper.py:129 32 | #, python-format 33 | msgid "HTTPRipper is running on localhost: %i" 34 | msgstr "HTTPRipper läuft auf localhost: %i" 35 | 36 | #: ../httpripper/httpripper.py:143 37 | msgid "Time" 38 | msgstr "Zeit" 39 | 40 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 41 | msgid "Size" 42 | msgstr "Grösse" 43 | 44 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 45 | msgid "Content-Type" 46 | msgstr "Inhaltstyp" 47 | 48 | #: ../httpripper/httpripper.py:159 49 | msgid "URL" 50 | msgstr "URL" 51 | 52 | #: ../httpripper/httpripper.py:176 53 | msgid "Filter" 54 | msgstr "Filter" 55 | 56 | #: ../httpripper/httpripper.py:179 57 | msgid "is" 58 | msgstr "ist" 59 | 60 | #: ../httpripper/httpripper.py:180 61 | msgid "at least (KiB)" 62 | msgstr "ist mindestens (KB)" 63 | 64 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 65 | msgid "Save As" 66 | msgstr "Speichern unter" 67 | 68 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 69 | msgid "Cancel" 70 | msgstr "Abbrechen" 71 | 72 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 73 | msgid "Save" 74 | msgstr "Speichern" 75 | 76 | #: ../httpripper/httpripper.py:305 77 | msgid "translator-credits" 78 | msgstr "" 79 | "Jonas Wagner\n" 80 | "\n" 81 | "Launchpad Contributions:\n" 82 | " Fabian Affolter https://launchpad.net/~fab-fedoraproject\n" 83 | " Jonas Wagner https://launchpad.net/~veers" 84 | -------------------------------------------------------------------------------- /po/httpripper-el.po: -------------------------------------------------------------------------------- 1 | # Greek translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2010-01-31 00:25+0000\n" 12 | "Last-Translator: George Kontis \n" 13 | "Language-Team: Greek \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Οτιδήποτε" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Ήχος" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Εικόνα" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Βίντεο" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "To HTTPRipper τρέχει σε localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Ώρα" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Μέγεθος" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Τύπος-περιεχομένου" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Διεύθυνση" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Φίλτρο" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "είναι" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "τουλάχιστον" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Αποθήκευση Ως" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Άκυρο" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Αποθήκευση" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " tsampikos92 https://launchpad.net/~tsampikos92" 86 | -------------------------------------------------------------------------------- /po/httpripper-en_GB.po: -------------------------------------------------------------------------------- 1 | # English (United Kingdom) translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-25 00:03+0000\n" 12 | "Last-Translator: JackB \n" 13 | "Language-Team: English (United Kingdom) \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Any" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Image" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper is running on localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Time" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Size" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Content-Type" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "is" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "at least (KB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Save As" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancel" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Save" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " JackB https://launchpad.net/~jackbauer-deactivatedaccount" 86 | -------------------------------------------------------------------------------- /po/httpripper-es.po: -------------------------------------------------------------------------------- 1 | # Spanish translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-31 16:18+0000\n" 12 | "Last-Translator: NicolasGiorgetti \n" 13 | "Language-Team: Spanish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Cualquiera" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Sonido" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imagen" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vídeo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper ocupa %i en localhost" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tiempo" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Tamaño" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipo de contenido" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "es" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "por lo menos (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Guardar como" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancelar" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Guardar" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Benjamin https://launchpad.net/~suizo12\n" 86 | " NicolasGiorgetti https://launchpad.net/~lahire" 87 | -------------------------------------------------------------------------------- /po/httpripper-eu.po: -------------------------------------------------------------------------------- 1 | # Basque translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 10:37+0000\n" 12 | "Last-Translator: Launchpad Translations Administrators \n" 14 | "Language-Team: Basque \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 19 | "X-Generator: Launchpad (build Unknown)\n" 20 | 21 | #: ../httpripper/httpripper.py:86 22 | msgid "Any" 23 | msgstr "" 24 | 25 | #: ../httpripper/httpripper.py:87 26 | msgid "Audio" 27 | msgstr "" 28 | 29 | #: ../httpripper/httpripper.py:88 30 | msgid "Image" 31 | msgstr "" 32 | 33 | #: ../httpripper/httpripper.py:89 34 | msgid "Video" 35 | msgstr "" 36 | 37 | #: ../httpripper/httpripper.py:129 38 | #, python-format 39 | msgid "HTTPRipper is running on localhost: %i" 40 | msgstr "" 41 | 42 | #: ../httpripper/httpripper.py:143 43 | msgid "Time" 44 | msgstr "" 45 | 46 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 47 | msgid "Size" 48 | msgstr "" 49 | 50 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 51 | msgid "Content-Type" 52 | msgstr "" 53 | 54 | #: ../httpripper/httpripper.py:159 55 | msgid "URL" 56 | msgstr "" 57 | 58 | #: ../httpripper/httpripper.py:176 59 | msgid "Filter" 60 | msgstr "" 61 | 62 | #: ../httpripper/httpripper.py:179 63 | msgid "is" 64 | msgstr "" 65 | 66 | #: ../httpripper/httpripper.py:180 67 | msgid "at least (KiB)" 68 | msgstr "" 69 | 70 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 71 | msgid "Save As" 72 | msgstr "" 73 | 74 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 75 | msgid "Cancel" 76 | msgstr "" 77 | 78 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 79 | msgid "Save" 80 | msgstr "" 81 | 82 | #: ../httpripper/httpripper.py:305 83 | msgid "translator-credits" 84 | msgstr "" 85 | -------------------------------------------------------------------------------- /po/httpripper-fi.po: -------------------------------------------------------------------------------- 1 | # Finnish translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | # $Id: po_httpripper-fi.po 27 2009-04-20 14:06:42Z pen $ 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: httpripper\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 12 | "PO-Revision-Date: 2009-11-23 12:07+0000\n" 13 | "Last-Translator: Pekka Niemi \n" 14 | "Language-Team: Finnish \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 19 | "X-Generator: Launchpad (build Unknown)\n" 20 | 21 | #: ../httpripper/httpripper.py:86 22 | msgid "Any" 23 | msgstr "Mikä tahansa" 24 | 25 | #: ../httpripper/httpripper.py:87 26 | msgid "Audio" 27 | msgstr "Ääni" 28 | 29 | #: ../httpripper/httpripper.py:88 30 | msgid "Image" 31 | msgstr "Kuva" 32 | 33 | #: ../httpripper/httpripper.py:89 34 | msgid "Video" 35 | msgstr "Video" 36 | 37 | #: ../httpripper/httpripper.py:129 38 | #, python-format 39 | msgid "HTTPRipper is running on localhost: %i" 40 | msgstr "HTTPRipperiä suoritetaan localhostilla: %i" 41 | 42 | #: ../httpripper/httpripper.py:143 43 | msgid "Time" 44 | msgstr "Aika" 45 | 46 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 47 | msgid "Size" 48 | msgstr "Koko" 49 | 50 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 51 | msgid "Content-Type" 52 | msgstr "Content-Type" 53 | 54 | #: ../httpripper/httpripper.py:159 55 | msgid "URL" 56 | msgstr "URL" 57 | 58 | #: ../httpripper/httpripper.py:176 59 | msgid "Filter" 60 | msgstr "Suodin" 61 | 62 | #: ../httpripper/httpripper.py:179 63 | msgid "is" 64 | msgstr "on" 65 | 66 | #: ../httpripper/httpripper.py:180 67 | msgid "at least (KiB)" 68 | msgstr "vähintään (KiB)" 69 | 70 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 71 | msgid "Save As" 72 | msgstr "Tallenna nimellä" 73 | 74 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 75 | msgid "Cancel" 76 | msgstr "Peru" 77 | 78 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 79 | msgid "Save" 80 | msgstr "Tallenna" 81 | 82 | #: ../httpripper/httpripper.py:305 83 | msgid "translator-credits" 84 | msgstr "" 85 | "Launchpad Contributions:\n" 86 | " Pekka Niemi https://launchpad.net/~pekka-niemi" 87 | -------------------------------------------------------------------------------- /po/httpripper-fr.po: -------------------------------------------------------------------------------- 1 | # French translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-06-15 18:46+0000\n" 12 | "Last-Translator: Jochen Schäfer \n" 13 | "Language-Team: French \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Tous" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Image" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vidéo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper en train d'exécution sur localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Temps" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Taille" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Type de contenu" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtre" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "est" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "au moins (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Enregistrer sous" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Annuler" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Enregistrer" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Arnaud Soyez https://launchpad.net/~weboide\n" 86 | " Benjamin https://launchpad.net/~suizo12\n" 87 | " Jochen Schäfer https://launchpad.net/~lemecje83\n" 88 | " Nicochto https://launchpad.net/~nicochto" 89 | -------------------------------------------------------------------------------- /po/httpripper-gl.po: -------------------------------------------------------------------------------- 1 | # Galician translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-03 22:24+0000\n" 12 | "Last-Translator: Xosé \n" 13 | "Language-Team: Galician \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Algun" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "son" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imaxe" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper estase executando en localhost:% i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tempo" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Tamaño" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipo-Contido" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "e" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "polo meno (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Gardar En" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancelar" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Gardar" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Víctor Hermida Prada https://launchpad.net/~hermida-prada\n" 86 | " Xosé https://launchpad.net/~ubuntu-galizaweb" 87 | -------------------------------------------------------------------------------- /po/httpripper-he.po: -------------------------------------------------------------------------------- 1 | # Hebrew translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 12:54+0000\n" 12 | "Last-Translator: Yaron \n" 13 | "Language-Team: Hebrew \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "כלשהו" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "שמע" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "תמונה" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "וידאו" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper פעיל תחת localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "שעה" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "גודל" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "סוג-התוכן" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "כתובת" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "מסנן" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "הינו" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "לפחות (ק\"ב)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "שמור בשם" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "ביטול" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "שמור" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Yaron https://launchpad.net/~sh-yaron" 86 | -------------------------------------------------------------------------------- /po/httpripper-hu.po: -------------------------------------------------------------------------------- 1 | # Hungarian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2010-01-22 20:48+0000\n" 12 | "Last-Translator: lacus \n" 13 | "Language-Team: Hungarian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Bármely" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Hang" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Kép" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Videó" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "A HTTPRipper a localhost:%i porton fut." 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Idő" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Méret" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "MIME-típus" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Szűrő" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr ":" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "legalább (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Mentés másként" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Mégsem" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Mentés" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Antario https://launchpad.net/~antario91\n" 86 | " Kecsi https://launchpad.net/~kecskemethy\n" 87 | " lacus https://launchpad.net/~lacus" 88 | -------------------------------------------------------------------------------- /po/httpripper-id.po: -------------------------------------------------------------------------------- 1 | # Indonesian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-31 15:27+0000\n" 12 | "Last-Translator: Muhammad Zulfikar \n" 13 | "Language-Team: Indonesian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Apapun" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Suara" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Gambar" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper sedang berjalan di localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Waktu" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Ukuran" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipe - Isi" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Penyaring" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "adalah" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "Paling sedikit (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Simpan Sebagai" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Batal" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Simpan" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Muhammad Zulfikar https://launchpad.net/~zulfikars-deactivatedaccount" 86 | -------------------------------------------------------------------------------- /po/httpripper-it.po: -------------------------------------------------------------------------------- 1 | # Italian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 12:14+0000\n" 12 | "Last-Translator: Kurama \n" 13 | "Language-Team: Italian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Qualunque" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Immagine" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper è in esecuzione su localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tempo" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Dimensione" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Contenuto-Tipo" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "è" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "almeno (kB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Salva come" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Annulla" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Salva" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Andrea Burattin https://launchpad.net/~delas\n" 86 | " Kurama https://launchpad.net/~luca.perri" 87 | -------------------------------------------------------------------------------- /po/httpripper-ms.po: -------------------------------------------------------------------------------- 1 | # Malay translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2010-05-10 07:48+0000\n" 12 | "Last-Translator: Nicholas Ng \n" 13 | "Language-Team: Malay \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Sebarang" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imej" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper dilaksanakan pada localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Masa" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Saiz" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Jenis-Kandungan" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Tapis" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "adalah" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "sekurang-kurangnya (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Simpan Sebagai" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Batal" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Simpan" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Nicholas Ng https://launchpad.net/~nbliang\n" 86 | " abuyop https://launchpad.net/~abuyop" 87 | -------------------------------------------------------------------------------- /po/httpripper-nds.po: -------------------------------------------------------------------------------- 1 | # German, Low translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 22:55+0000\n" 12 | "Last-Translator: Lukas Bögelein \n" 13 | "Language-Team: German, Low \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Jedes" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Bild" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper läuft auf localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Zeit" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Größe" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Inhaltstyp" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "ist" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "zumindest (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Speichern als" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Abbrechen" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Sichern" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Lukas Bögelein https://launchpad.net/~lukas-boegelein" 86 | -------------------------------------------------------------------------------- /po/httpripper-nl.po: -------------------------------------------------------------------------------- 1 | # Dutch translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 15:40+0000\n" 12 | "Last-Translator: Marcel de Klein \n" 13 | "Language-Team: Dutch \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Alle" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Afbeelding" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper Draait op localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tijd" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Grootte" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Inhoudstype" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "is" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "minstens (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Opslaan als" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Annuleren" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Opslaan" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Marcel de Klein https://launchpad.net/~q-bus\n" 86 | " wouter215 https://launchpad.net/~wouter215" 87 | -------------------------------------------------------------------------------- /po/httpripper-pl.po: -------------------------------------------------------------------------------- 1 | # Polish translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-24 22:48+0000\n" 12 | "Last-Translator: Override \n" 13 | "Language-Team: Polish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Dowolny" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Dźwięk" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Obraz" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Wideo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper jest uruchomiony na lokalnym komputerze: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Czas" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Rozmiar" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Typ zawartości" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Adres URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtr" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "jest" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "co najmniej (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Zapisz jako" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Anuluj" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Zapisz" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Michał Trzebiatowski https://launchpad.net/~hippie-1968\n" 86 | " Override https://launchpad.net/~override\n" 87 | " Stanley Chmiela https://launchpad.net/~chmiela-st" 88 | -------------------------------------------------------------------------------- /po/httpripper-pt.po: -------------------------------------------------------------------------------- 1 | # Portuguese translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 12:15+0000\n" 12 | "Last-Translator: asensio \n" 13 | "Language-Team: Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Qualquer" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Áudio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imagem" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vídeo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper está a ser executado na máquina local: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tempo" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Tamanho" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipo de Conteúdo" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "é" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "pelo menos (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Guardar Como" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancelar" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Guardar" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Bruno Lucas https://launchpad.net/~brunolucas\n" 86 | " asensio https://launchpad.net/~asensio" 87 | -------------------------------------------------------------------------------- /po/httpripper-pt_BR.po: -------------------------------------------------------------------------------- 1 | # Brazilian Portuguese translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-01-18 21:42+0000\n" 12 | "Last-Translator: Alexandre Sapata Carbonell \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Qualquer" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Áudio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imagem" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vídeo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper esta rodando em host local: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Hora" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Tamanho" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipo de conteúdo" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "é" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "ao menos (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Salvar como" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancelar" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Salvar" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Alexandre Sapata Carbonell https://launchpad.net/~alexandre-sapata-" 86 | "carbonell" 87 | -------------------------------------------------------------------------------- /po/httpripper-ro.po: -------------------------------------------------------------------------------- 1 | # Romanian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-24 23:45+0000\n" 12 | "Last-Translator: Antario \n" 13 | "Language-Team: Romanian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Oricare" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Audio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imagine" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper funcționează pe portul localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Timp" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Dimensiune" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tip-MIME" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Adresă" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtru" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "este" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "cel puțin (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Salvare ca" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Anulare" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Salvează" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Antario https://launchpad.net/~antario91" 86 | -------------------------------------------------------------------------------- /po/httpripper-ru.po: -------------------------------------------------------------------------------- 1 | # Russian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 11:44+0000\n" 12 | "Last-Translator: Oleg Koptev \n" 13 | "Language-Team: Russian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Любой" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Аудио" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Изображение" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Видео" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper запущен на Вашем компьютере: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Время" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Размер" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Тип содержимого" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Фильтр" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "это" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "как минимум (КБ)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Сохранить как" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Отмена" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Сохранить" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " DmitryX86 https://launchpad.net/~system32\n" 86 | " Oleg Koptev https://launchpad.net/~koptev-oleg\n" 87 | " bvv2001 https://launchpad.net/~bvv2001" 88 | -------------------------------------------------------------------------------- /po/httpripper-sk.po: -------------------------------------------------------------------------------- 1 | # Slovak translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 12:59+0000\n" 12 | "Last-Translator: Radim \n" 13 | "Language-Team: Slovak \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Všetky" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Zvuk" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Obrázky" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper beží na localhoste: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Čas" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Veľkosť" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Druh obsahu" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "je" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "najmenej (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Uložiť ako" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Zrušiť" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Uložiť" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Radim https://launchpad.net/~radim\n" 86 | " blackmore https://launchpad.net/~tinnec" 87 | -------------------------------------------------------------------------------- /po/httpripper-sr.po: -------------------------------------------------------------------------------- 1 | # Serbian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-31 15:38+0000\n" 12 | "Last-Translator: Vladimir Lazic \n" 13 | "Language-Team: Serbian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Остали" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Звучни запис" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Слика" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Видео" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper је покренут на localhost-у: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Време" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Величина" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Врста садржаја" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Адреса" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Филтер" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "је" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "најмање (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Сачувај као" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Откажи" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Сачувај" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Vladimir Lazic https://launchpad.net/~vlazic" 86 | -------------------------------------------------------------------------------- /po/httpripper-sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 12:05+0000\n" 12 | "Last-Translator: Daniel Nylander \n" 13 | "Language-Team: Swedish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Valfri" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Ljud" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Bild" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper körs på localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tid" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Storlek" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Innehållstyp" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filter" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "är" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "minst (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Spara som" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Avbryt" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Spara" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Daniel Nylander https://launchpad.net/~yeager" 86 | -------------------------------------------------------------------------------- /po/httpripper-te.po: -------------------------------------------------------------------------------- 1 | # Telugu translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2010-02-16 04:48+0000\n" 12 | "Last-Translator: Arun Kumar \n" 13 | "Language-Team: Telugu \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "ఏదైనా" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "ఆడియో" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "చిత్రం" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "వీడియో" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "సమయం" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "పరిమాణం" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "యు ఆర్ ఎల్" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "వడపోత" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "ఇలా దాయుము" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "రద్దుచేయి" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "భద్రపరచు" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Arun Kumar https://launchpad.net/~arunkumar413\n" 86 | " వీవెన్ (Veeven) https://launchpad.net/~veeven" 87 | -------------------------------------------------------------------------------- /po/httpripper-th.po: -------------------------------------------------------------------------------- 1 | # Thai translation for httpripper 2 | # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2009. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-03 01:00+0000\n" 12 | "Last-Translator: Thammaraj \n" 13 | "Language-Team: Thai \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "อะไรก็ตาม" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "เสียง" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "ภาพ" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "วิดีโอ" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper กำลังปฏิบัติการบนแม่ข่าย: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "เวลา" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "ขนาด" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "ชนิดเนื้อหา" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "ตัวกรอง" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "คือ" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "อย่้างน้อย (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "บันทึกเป็น" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "ยกเลิก" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "บันทึก" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Thammaraj https://launchpad.net/~icuyurd" 86 | -------------------------------------------------------------------------------- /po/httpripper-tr.po: -------------------------------------------------------------------------------- 1 | # Turkish translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2010-02-16 11:05+0000\n" 12 | "Last-Translator: Muhammed YÜRÜRDURMAZ \n" 13 | "Language-Team: Turkish \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Herhangibiri" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Ses" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Resim" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper yerel sunucu üzerinde çalışıyor: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Saat" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Boyut" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "İçerik Tipi" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Adres" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Süzgeç" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "," 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "en az (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Farklı Kaydet" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "İptal" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Kaydet" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Muhammed YÜRÜRDURMAZ https://launchpad.net/~myururdurmaz\n" 86 | " Mustafa Yılmaz https://launchpad.net/~apshalasha\n" 87 | " aLKoLiK-KeDi https://launchpad.net/~alkolikkedi\n" 88 | " abacus https://launchpad.net/~abacus\n" 89 | " salihdt https://launchpad.net/~salihdt" 90 | -------------------------------------------------------------------------------- /po/httpripper-uk.po: -------------------------------------------------------------------------------- 1 | # Ukrainian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 12:24+0000\n" 12 | "Last-Translator: FrenzY \n" 13 | "Language-Team: Ukrainian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Звук" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Відео" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper запущенний на локальному комп'ютері: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Час" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Розмір" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Тип змісту" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Фільтр:" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "щонайменше (Кб)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Зберегти як" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Скасувати" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Зберегти" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " FrenzY https://launchpad.net/~frenzy-ivan" 86 | -------------------------------------------------------------------------------- /po/httpripper-zh_CN.po: -------------------------------------------------------------------------------- 1 | # Simplified Chinese translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-12-02 10:37+0000\n" 12 | "Last-Translator: Ruxiao Ma \n" 13 | "Language-Team: Simplified Chinese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "任何" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "音频" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "图像" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "视频" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper正在运行: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "时间" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "大小" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "内容类型" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "链接地址" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "过滤器" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "是" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "至少" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "另存为" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "取消" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "保存..." 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Junnan Wu https://launchpad.net/~mygoobox\n" 86 | " Ruxiao Ma https://launchpad.net/~maruxiao" 87 | -------------------------------------------------------------------------------- /po/httpripper-zh_TW.po: -------------------------------------------------------------------------------- 1 | # Traditional Chinese translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2009-11-23 11:43+0000\n" 12 | "Last-Translator: Fred Li \n" 13 | "Language-Team: Traditional Chinese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper 正運行在: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Fred Li https://launchpad.net/~chunkuenli" 86 | -------------------------------------------------------------------------------- /po/httpripper.pot: -------------------------------------------------------------------------------- 1 | #, fuzzy 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: PACKAGE VERSION\n" 5 | "Report-Msgid-Bugs-To: \n" 6 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 7 | "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 | "Last-Translator: FULL NAME \n" 9 | "Language-Team: LANGUAGE \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "X-Launchpad-Export-Date: 2010-06-01 18:20+0000\n" 14 | "X-Generator: Launchpad (build Unknown)\n" 15 | 16 | #: ../httpripper/httpripper.py:86 17 | msgid "Any" 18 | msgstr "" 19 | 20 | #: ../httpripper/httpripper.py:87 21 | msgid "Audio" 22 | msgstr "" 23 | 24 | #: ../httpripper/httpripper.py:88 25 | msgid "Image" 26 | msgstr "" 27 | 28 | #: ../httpripper/httpripper.py:89 29 | msgid "Video" 30 | msgstr "" 31 | 32 | #: ../httpripper/httpripper.py:129 33 | #, python-format 34 | msgid "HTTPRipper is running on localhost: %i" 35 | msgstr "" 36 | 37 | #: ../httpripper/httpripper.py:143 38 | msgid "Time" 39 | msgstr "" 40 | 41 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 42 | msgid "Size" 43 | msgstr "" 44 | 45 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 46 | msgid "Content-Type" 47 | msgstr "" 48 | 49 | #: ../httpripper/httpripper.py:159 50 | msgid "URL" 51 | msgstr "" 52 | 53 | #: ../httpripper/httpripper.py:176 54 | msgid "Filter" 55 | msgstr "" 56 | 57 | #: ../httpripper/httpripper.py:179 58 | msgid "is" 59 | msgstr "" 60 | 61 | #: ../httpripper/httpripper.py:180 62 | msgid "at least (KiB)" 63 | msgstr "" 64 | 65 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 66 | msgid "Save As" 67 | msgstr "" 68 | 69 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 70 | msgid "Cancel" 71 | msgstr "" 72 | 73 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 74 | msgid "Save" 75 | msgstr "" 76 | 77 | #: ../httpripper/httpripper.py:305 78 | msgid "translator-credits" 79 | msgstr "" 80 | -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- 1 | # Indonesian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-31 04:21+0000\n" 12 | "Last-Translator: Muhammad Zulfikar \n" 13 | "Language-Team: Indonesian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2008-08-31 10:56+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Apapun" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Suara" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Gambar" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Video" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper sedang berjalan di localhost: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Waktu" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Ukuran" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipe - Isi" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Penyaring" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "adalah" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "Paling sedikit (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Simpan Sebagai" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Batal" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Simpan" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Muhammad Zulfikar https://launchpad.net/~zulfikars" 86 | -------------------------------------------------------------------------------- /po/make.py: -------------------------------------------------------------------------------- 1 | import os 2 | from glob import glob 3 | 4 | print "all: mo" 5 | print "mo: *.po" 6 | 7 | for po in glob('*.po'): 8 | code = po.replace("httpripper-", "").replace(".po", "") 9 | mo = "../share/locale/%s/LC_MESSAGES/httpripper.mo" % code 10 | if not os.path.exists(os.path.dirname(mo)): 11 | os.makedirs(mo) 12 | print "\tmsgfmt --output-file=%s %s" % (mo, po) 13 | 14 | print "*.po: httpripper.pot" 15 | for po in glob('*.po'): 16 | print "\tmsgmerge -U %s httpripper.pot" % po 17 | 18 | print "httpripper.pot: ../httpripper/httpripper.py" 19 | print "xgettext --language=Python --keyword=_ --output=httpripper.pot ../httpripper/httpripper.py" 20 | -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Brazilian Portuguese translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-27 17:15+0000\n" 12 | "Last-Translator: Alexandre Sapata Carbonell \n" 13 | "Language-Team: Brazilian Portuguese \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2008-08-31 10:56+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Algum" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Áudio" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Imagem" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Vídeo" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper esta rodando em host local: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Tempo" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Tamanho" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Tipo de conteúdo" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "URL" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Filtro" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "é" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "ao menos (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Salvar como" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Cancelar" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Salvar" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Alexandre Sapata Carbonell https://launchpad.net/~alexandre-sapata-" 86 | "carbonell" 87 | -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- 1 | # Serbian translation for httpripper 2 | # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008 3 | # This file is distributed under the same license as the httpripper package. 4 | # FIRST AUTHOR , 2008. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: httpripper\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2008-08-31 14:13+0200\n" 11 | "PO-Revision-Date: 2008-08-29 01:36+0000\n" 12 | "Last-Translator: Vladimir Lazic \n" 13 | "Language-Team: Serbian \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2008-08-31 10:56+0000\n" 18 | "X-Generator: Launchpad (build Unknown)\n" 19 | 20 | #: ../httpripper/httpripper.py:86 21 | msgid "Any" 22 | msgstr "Остали" 23 | 24 | #: ../httpripper/httpripper.py:87 25 | msgid "Audio" 26 | msgstr "Звучни запис" 27 | 28 | #: ../httpripper/httpripper.py:88 29 | msgid "Image" 30 | msgstr "Слика" 31 | 32 | #: ../httpripper/httpripper.py:89 33 | msgid "Video" 34 | msgstr "Видео" 35 | 36 | #: ../httpripper/httpripper.py:129 37 | #, python-format 38 | msgid "HTTPRipper is running on localhost: %i" 39 | msgstr "HTTPRipper је покренут на localhost-у: %i" 40 | 41 | #: ../httpripper/httpripper.py:143 42 | msgid "Time" 43 | msgstr "Време" 44 | 45 | #: ../httpripper/httpripper.py:147 ../httpripper/httpripper.py:180 46 | msgid "Size" 47 | msgstr "Величина" 48 | 49 | #: ../httpripper/httpripper.py:153 ../httpripper/httpripper.py:179 50 | msgid "Content-Type" 51 | msgstr "Врста садржаја" 52 | 53 | #: ../httpripper/httpripper.py:159 54 | msgid "URL" 55 | msgstr "Адреса" 56 | 57 | #: ../httpripper/httpripper.py:176 58 | msgid "Filter" 59 | msgstr "Филтер" 60 | 61 | #: ../httpripper/httpripper.py:179 62 | msgid "is" 63 | msgstr "је" 64 | 65 | #: ../httpripper/httpripper.py:180 66 | msgid "at least (KiB)" 67 | msgstr "најмање (KiB)" 68 | 69 | #: ../httpripper/httpripper.py:221 ../httpripper/httpripper.py:245 70 | msgid "Save As" 71 | msgstr "Сачувај као" 72 | 73 | #: ../httpripper/httpripper.py:225 ../httpripper/httpripper.py:249 74 | msgid "Cancel" 75 | msgstr "Откажи" 76 | 77 | #: ../httpripper/httpripper.py:226 ../httpripper/httpripper.py:250 78 | msgid "Save" 79 | msgstr "Сачувај" 80 | 81 | #: ../httpripper/httpripper.py:305 82 | msgid "translator-credits" 83 | msgstr "" 84 | "Launchpad Contributions:\n" 85 | " Vladimir Lazic https://launchpad.net/~vlazic" 86 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import sys 3 | import os 4 | 5 | from distutils.core import setup 6 | 7 | def ls_r(dir): 8 | def do_reduce(a, b): 9 | files = [] 10 | for f in b[2]: 11 | files.append(os.path.join(b[0], f)) 12 | a.append((b[0], files)) 13 | return a 14 | return reduce(do_reduce, os.walk(dir), []) 15 | 16 | kwargs = { 17 | 'name': 'httpripper', 18 | 'version': "1.1.1", 19 | 'description': 'A generic ripper for the web implemented as a http proxy', 20 | 'author': 'Jonas Wagner', 21 | 'author_email': 'veers@gmx.ch', 22 | 'url': 'http://29a.ch/httpripper/', 23 | 'packages': ['x29a', 'httpripper'], 24 | 'scripts': ['bin/httpripper'], 25 | 'options': {'py2exe':{ 26 | 'packages': 'encodings', 27 | 'includes': 'cairo, pango, pangocairo, atk, gobject', 28 | 'dist_dir': 'dist/win32', 29 | 'optimize': 2, 30 | }}, 31 | 'data_files': ls_r('share'), 32 | 'license': 'GNU GPL v3', 33 | 'classifiers': ['Development Status :: 4 - Beta', 34 | 'Environment :: X11 Applications :: GTK', 35 | 'Intended Audience :: End Users/Desktop', 36 | 'License :: OSI Approved :: GNU General Public License (GPL)', 37 | 'Natural Language :: English', 38 | 'Operating System :: POSIX', 39 | 'Operating System :: Microsoft', 40 | 'Programming Language :: Python', 41 | ] 42 | } 43 | 44 | try: 45 | import py2exe 46 | kwargs['windows'] = [{'script': 'bin/httpripper', 47 | 'icon_resources': [(1, 'httpripper.ico')], 48 | 'dest_base': 'httpripper'}] 49 | except ImportError: 50 | pass 51 | 52 | setup(**kwargs) 53 | -------------------------------------------------------------------------------- /share/applications/httpripper.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Name=HTTP Ripper 4 | GenericName=HTTP Ripper 5 | Comment=A generic ripper for the web 6 | Icon=httpripper 7 | Type=Application 8 | Categories=Application;Network; 9 | Terminal=false 10 | Exec=httpripper 11 | -------------------------------------------------------------------------------- /share/icons/hicolor/32x32/httpripper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/icons/hicolor/32x32/httpripper.png -------------------------------------------------------------------------------- /share/locale/ar/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/ar/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/bg/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/bg/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/bs/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/bs/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/ca/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/ca/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/cs/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/cs/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/cy/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/cy/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/da/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/da/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/de/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/de/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/el/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/el/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/en_GB/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/en_GB/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/es/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/es/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/eu/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/eu/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/fi/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/fi/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/fr/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/fr/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/gl/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/gl/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/he/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/he/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/hu/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/hu/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/id/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/id/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/it/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/it/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/ms/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/ms/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/nds/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/nds/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/nl/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/nl/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/pl/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/pl/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/pt/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/pt/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/pt_BR/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/pt_BR/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/ro/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/ro/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/ru/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/ru/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/sk/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/sk/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/sr/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/sr/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/sv/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/sv/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/te/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/te/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/th/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/th/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/tr/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/tr/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/uk/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/uk/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/zh_CN/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/zh_CN/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/locale/zh_TW/LC_MESSAGES/httpripper.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/httpripper/8a9e4528cbb3c7c33dadd2e01f638a40763ad4fe/share/locale/zh_TW/LC_MESSAGES/httpripper.mo -------------------------------------------------------------------------------- /share/pixmaps/httpripper.png: -------------------------------------------------------------------------------- 1 | ../icons/hicolor/32x32/httpripper.png --------------------------------------------------------------------------------