diff --git a/.gitignore b/.gitignore
index 98020724..c2417bd9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,15 +7,19 @@ lib-cov
*.pid
*.gz
+.idea/
+
+node_modules/
+
+build/
+
pids
logs
results
npm-debug.log
-node_modules
app.nw
-node-webkit.app
.sass-cache
*-ck.js
@@ -23,3 +27,13 @@ node-webkit.app
*.DS_Store
js/vendor/config.js
+dist/windows/Install Popcorn Time.exe
+dist/mac/Popcorn Time.app/
+dist/mac/Popcorn Time.zip
+
+
+# vim swap files
+*.swp
+
+css/app.css
+*.sublime-*
\ No newline at end of file
diff --git a/Config.rb b/Config.rb
index 54c07f88..6c6a583c 100644
--- a/Config.rb
+++ b/Config.rb
@@ -1,2 +1,3 @@
relative_assets = true
-css_dir = 'css'
\ No newline at end of file
+css_dir = 'css'
+line_comments = false
\ No newline at end of file
diff --git a/Gruntfile.js b/Gruntfile.js
index e60e92d1..d7d3bf89 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,8 +1,12 @@
- module.exports = function(grunt) {
+module.exports = function(grunt) {
+ var buildPlatforms = parseBuildPlatforms(grunt.option('platforms'));
grunt.initConfig({
compass: {
dist: {
+ options: {
+ cssDir: 'css'
+ },
files: {
'css/app.css': 'sass/app.scss'
}
@@ -12,16 +16,83 @@
files: ['sass/**/*.scss'],
tasks: ['sass'],
options: {
- livereload: true,
+ livereload: true
+ }
+ },
+ nodewebkit: {
+ options: {
+ version: '0.9.2',
+ build_dir: './build', // Where the build version of my node-webkit app is saved
+ mac_icns: './images/popcorntime.icns', // Path to the Mac icon file
+ mac: buildPlatforms.mac,
+ win: buildPlatforms.win,
+ linux32: buildPlatforms.linux32,
+ linux64: buildPlatforms.linux64
},
+ src: ['./css/**', './fonts/**', './images/**', './js/**', './language/**', './node_modules/**', '!./node_modules/grunt*/**', './rc/**', './Config.rb', './index.html', './package.json', './README.md' ] // Your node-webkit app './**/*'
+ },
+ copy: {
+ main: {
+ files: [
+ {
+ src: 'libraries/win/ffmpegsumo.dll',
+ dest: 'build/releases/Popcorn-Time/win/Popcorn-Time/ffmpegsumo.dll',
+ flatten: true
+ },
+ {
+ src: 'libraries/mac/ffmpegsumo.so',
+ dest: 'build/releases/Popcorn-Time/mac/Popcorn-Time.app/Contents/Frameworks/node-webkit Framework.framework/Libraries/ffmpegsumo.so',
+ flatten: true
+ },
+ {
+ src: 'libraries/linux64/libffmpegsumo.so',
+ dest: 'build/releases/Popcorn-Time/linux64/Popcorn-Time/libffmpegsumo.so',
+ flatten: true
+ }
+ ]
+ },
+ superagent_fix: {
+ src: '/dev/null',
+ dest: 'node_modules/moviedb/node_modules/superagent/index.js',
+ options: {
+ process: function(content) {
+ console.info(content);
+ return "module.exports = require('./lib/node');";
+ }
+ }
+ }
}
});
grunt.loadNpmTasks('grunt-contrib-compass');
grunt.loadNpmTasks('grunt-contrib-watch');
+ grunt.loadNpmTasks('grunt-contrib-copy');
+ grunt.loadNpmTasks('grunt-node-webkit-builder');
grunt.registerTask('css', ['compass']);
+ grunt.registerTask('default', ['compass', 'copy:superagent_fix']);
+ grunt.registerTask('nodewkbuild', ['nodewebkit', 'copy:main']);
+ grunt.registerTask('build', ['default', 'nodewkbuild']);
+
+};
+
+var parseBuildPlatforms = function(argumentPlatform) {
+ // this will make it build no platform when the platform option is specified
+ // without a value which makes argumentPlatform into a boolean
+ var inputPlatforms = argumentPlatform || process.platform + ";" + process.arch;
+
+ // Do some scrubbing to make it easier to match in the regexes bellow
+ inputPlatforms = inputPlatforms.replace("darwin", "mac");
+ inputPlatforms = inputPlatforms.replace(/;ia|;x|;arm/, "");
+
+ var buildAll = /^all$/.test(inputPlatforms);
- grunt.registerTask('default', ['compass']);
+ var buildPlatforms = {
+ mac: /mac/.test(inputPlatforms) || buildAll,
+ win: /win/.test(inputPlatforms) || buildAll,
+ linux32: /linux32/.test(inputPlatforms) || buildAll,
+ linux64: /linux64/.test(inputPlatforms) || buildAll
+ };
-};
\ No newline at end of file
+ return buildPlatforms;
+}
diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 00000000..e587591e
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,621 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc.
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+ END OF TERMS AND CONDITIONS
\ No newline at end of file
diff --git a/README.md b/README.md
index b67f2a34..3e5a5392 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,17 @@
-#Popcorn time [![Dependency Status](https://david-dm.org/popcorn-time/popcorn-app.png?theme=shields.io)](https://david-dm.org/popcorn-time/popcorn-time)
+#Warning the repo was cleaned to shrink its size from over 100 Mo to less than 5 Mo. Please re-clone your project or use `git rebase`. Thanks
+
+#Popcorn time [![Dependency Status](https://david-dm.org/isra17/popcorn-app.svg?theme=shields.io)](https://david-dm.org/isra17/popcorn-app)
## Idea
To allow any computer user to watch movies easily streaming from torrents, without any particular knowledge.
-![Demo Screenshot](https://f.cloud.github.com/assets/1133842/1980972/1083f360-83cd-11e3-8e08-b01de5d33f1c.png)
+![Demo Screenshot](http://i.imgur.com/6iNnWBO.png)
### Status
-Under development (only in Mac OSX? _somebody should try Linux and Windows_) - no alpha candidate yet.
+Under development (RC1) for Mac OSX - Windows - Linux.
-
### APIs
**Currently used:**
@@ -24,35 +25,48 @@ Under development (only in Mac OSX? _somebody should try Linux and Windows_) - n
- [SubtitleSeeker](http://www.api.subtitleseeker.com/About/Api-Search/) for subtitles.
-## Testing it out
-1. Open a Terminal with this project folder.
-2. Run `npm install` in Terminal to include project dependencies.
-3. Copy the [node-webkit application binary](https://s3.amazonaws.com/node-webkit/v0.8.4/node-webkit-v0.8.4-osx-ia32.zip) for OSX 10.7+ to your `/Applications` folder.
-4. Run `/Applications/node-webkit.app/Contents/MacOS/node-webkit .` in Terminal to open up the application.
-5. Update `js/vendor/config.js` with your [themoviedb.org](http://themoviedb.org) API key. Pst. if you need one contact us.
+## Building
+
+### Dependencies
+
+You will need nodejs and grunt:
+
+ $ npm install -g grunt-cli
+
+And ruby with compass to build the stylesheets. Read [this](http://thesassway.com/beginner/getting-started-with-sass-and-compass) for more information.
+
+### Build
+
+Install the node modules:
+
+ $ npm install
+
+Build with:
+
+ $ grunt build
+
+By default it will build for your current platform however you can control that
+by specifying a comma separated list of platforms in the `platforms` option to
+grunt:
+
+ $ grunt build --platforms=linux32,linux64,mac,win
+
+You can also build for all platforms with:
+
+ $ grunt build --platforms=all
## Any problem?
-### Regarding superagent dependency
-Due to [wrong browser verification](https://github.com/visionmedia/superagent/issues/95) on a dependency, this hard fix must be applied.
-Replace `node_modules/moviedb/node_modules/superagent/index.js` contents with:
-```javascript
-// if (typeof window != 'undefined') {
-// module.exports = require('./lib/superagent');
-// } else if (process.env.SUPERAGENT_COV) {
-// module.exports = require('./lib-cov/node');
-// } else {
- module.exports = require('./lib/node');
-// }
-```
### Regarding Video, MP4 H264 Playback
- Info: https://github.com/rogerwang/node-webkit/wiki/Support-mp3-and-h264-in-video-and-audio-tag
-- Needed to build a custom build of node-webkit that adds h264 support (or you can download redy-to-go builds from https://file.ac/s4Lt3Vo6rls/)
+- Needed to build a custom build of node-webkit that adds h264 support (or you can download ready-to-go builds from https://file.ac/s4Lt3Vo6rls/)
- Alternatively, we can replace a .so and .dll file from the correspondent Chrome build to node-webkit and node-webkit.exe
## Development
-- Run `compass watch` in Terminal for CSS compiling and listen to future changes.
+- Run `grunt build` at least once after running `npm install`. This should fix a dependancy.
+- Run `compass watch --css-dir css` in Terminal for CSS compiling and listen to future changes.
- [How to build with SublimeText](https://github.com/rogerwang/node-webkit/wiki/Debugging-with-Sublime-Text-2-and-3)
- Currently Gaze to watch all files and reload the app is disabled due to memory leaks and unstability.
+- Run node-webkit from the root directory with --debug to enable debugging mode like so ```node-webkit . --debug```
diff --git a/css/animations.css b/css/animations.css
new file mode 100644
index 00000000..24e6f56c
--- /dev/null
+++ b/css/animations.css
@@ -0,0 +1,47 @@
+@-webkit-keyframes sidebareffect {
+ /* line 2, ../sass/animations.scss */
+ from {
+ -webkit-transform: translate(220px, 0);
+ }
+
+ /* line 3, ../sass/animations.scss */
+ to {
+ -webkit-transform: translate(0, 0);
+ }
+}
+
+@-webkit-keyframes sidebareffect2 {
+ /* line 7, ../sass/animations.scss */
+ from {
+ -webkit-transform: translate(0, 0);
+ }
+
+ /* line 8, ../sass/animations.scss */
+ to {
+ -webkit-transform: translate(220px, 0);
+ }
+}
+
+@-webkit-keyframes spin {
+ /* line 12, ../sass/animations.scss */
+ from {
+ -webkit-transform: rotate(0deg);
+ }
+
+ /* line 13, ../sass/animations.scss */
+ to {
+ -webkit-transform: rotate(360deg);
+ }
+}
+
+@-webkit-keyframes backdropFadeIn {
+ /* line 17, ../sass/animations.scss */
+ from {
+ opacity: 0;
+ }
+
+ /* line 18, ../sass/animations.scss */
+ to {
+ opacity: 0.2;
+ }
+}
diff --git a/css/app.css b/css/app.css
deleted file mode 100644
index d0c3082d..00000000
--- a/css/app.css
+++ /dev/null
@@ -1,1685 +0,0 @@
-@import url(../css/font-awesome.min.css);
-/* line 1, ../sass/_frame.scss */
-body {
- -webkit-user-select: none;
-}
-
-/* line 5, ../sass/_frame.scss */
-button {
- -webkit-app-region: no-drag;
-}
-
-/* line 9, ../sass/_frame.scss */
-#header {
- -webkit-user-select: none;
- -webkit-app-region: drag;
-}
-
-/* line 17, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td,
-article, aside, canvas, details, embed,
-figure, figcaption, footer, header, hgroup,
-menu, nav, output, ruby, section, summary,
-time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font: inherit;
- font-size: 100%;
- vertical-align: baseline;
-}
-
-/* line 22, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-html {
- line-height: 1;
-}
-
-/* line 24, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-ol, ul {
- list-style: none;
-}
-
-/* line 26, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-table {
- border-collapse: collapse;
- border-spacing: 0;
-}
-
-/* line 28, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-caption, th, td {
- text-align: left;
- font-weight: normal;
- vertical-align: middle;
-}
-
-/* line 30, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-q, blockquote {
- quotes: none;
-}
-/* line 103, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-q:before, q:after, blockquote:before, blockquote:after {
- content: "";
- content: none;
-}
-
-/* line 32, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-a img {
- border: none;
-}
-
-/* line 116, C:/Ruby200/lib/ruby/gems/2.0.0/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
-article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
- display: block;
-}
-
-@-webkit-keyframes sidebareffect {
- /* line 9, ../sass/app.scss */
- from {
- -webkit-transform: translate(220px, 0);
- }
-
- /* line 10, ../sass/app.scss */
- to {
- -webkit-transform: translate(0, 0);
- }
-}
-
-@-webkit-keyframes sidebareffect2 {
- /* line 15, ../sass/app.scss */
- from {
- -webkit-transform: translate(0, 0);
- }
-
- /* line 16, ../sass/app.scss */
- to {
- -webkit-transform: translate(220px, 0);
- }
-}
-
-/* Dark Theme */
-/* White Theme
-
-$body-bg: #FFF;
-$app-width: 100%;
-$borders-color: #e5eced;
-$text-color: #000;
- */
-/* line 41, ../sass/app.scss */
-html, body {
- height: 100%;
- overflow: hidden;
- width: 100%;
-}
-
-/* line 47, ../sass/app.scss */
-body {
- background: #181817;
- border-radius: 5px;
- color: #333;
- cursor: default;
- font-family: 'Helvetica Neue', sans-serif;
- -webkit-font-smoothing: antialiased;
- color: white;
-}
-
-/* line 60, ../sass/app.scss */
-button:hover {
- cursor: pointer;
-}
-
-/* line 65, ../sass/app.scss */
-h1 {
- font-family: 'Lucida Grande', 'Myriad Pro', sans-serif;
- font-size: 13px;
-}
-
-/* line 70, ../sass/app.scss */
-:focus {
- outline: 0;
-}
-
-/* line 74, ../sass/app.scss */
-::-webkit-input-placeholder {
- color: rgba(255, 255, 255, 0.4);
- font-weight: normal;
-}
-
-/* line 80, ../sass/app.scss */
-.sidebar-open li.movie {
- opacity: 0.6;
-}
-/* line 84, ../sass/app.scss */
-.sidebar-open li.movie.active {
- opacity: 1;
-}
-/* line 86, ../sass/app.scss */
-.sidebar-open li.movie.active a {
- box-shadow: 0 0 0 3px #3498db;
- border-radius: 3px;
-}
-
-/* line 93, ../sass/app.scss */
-.movie {
- opacity: 0;
- -webkit-transform: scale(0, 0);
- -moz-transform: scale(0, 0);
- -ms-transform: scale(0, 0);
- -o-transform: scale(0, 0);
- transform: scale(0, 0);
- -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
- -moz-transition: opacity 0.3s ease, -moz-transform 0.3s ease;
- -o-transition: opacity 0.3s ease, -o-transform 0.3s ease;
- transition: opacity 0.3s ease, transform 0.3s ease;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(1) {
- -webkit-transition-delay: 0s, 0s;
- -moz-transition-delay: 0s, 0s;
- -o-transition-delay: 0s, 0s;
- transition-delay: 0s, 0s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(2) {
- -webkit-transition-delay: 0s, 0.1s;
- -moz-transition-delay: 0s, 0.1s;
- -o-transition-delay: 0s, 0.1s;
- transition-delay: 0s, 0.1s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(3) {
- -webkit-transition-delay: 0s, 0.2s;
- -moz-transition-delay: 0s, 0.2s;
- -o-transition-delay: 0s, 0.2s;
- transition-delay: 0s, 0.2s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(4) {
- -webkit-transition-delay: 0s, 0.3s;
- -moz-transition-delay: 0s, 0.3s;
- -o-transition-delay: 0s, 0.3s;
- transition-delay: 0s, 0.3s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(5) {
- -webkit-transition-delay: 0s, 0.4s;
- -moz-transition-delay: 0s, 0.4s;
- -o-transition-delay: 0s, 0.4s;
- transition-delay: 0s, 0.4s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(6) {
- -webkit-transition-delay: 0s, 0.5s;
- -moz-transition-delay: 0s, 0.5s;
- -o-transition-delay: 0s, 0.5s;
- transition-delay: 0s, 0.5s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(7) {
- -webkit-transition-delay: 0s, 0.6s;
- -moz-transition-delay: 0s, 0.6s;
- -o-transition-delay: 0s, 0.6s;
- transition-delay: 0s, 0.6s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(8) {
- -webkit-transition-delay: 0s, 0.7s;
- -moz-transition-delay: 0s, 0.7s;
- -o-transition-delay: 0s, 0.7s;
- transition-delay: 0s, 0.7s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(9) {
- -webkit-transition-delay: 0s, 0.8s;
- -moz-transition-delay: 0s, 0.8s;
- -o-transition-delay: 0s, 0.8s;
- transition-delay: 0s, 0.8s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(10) {
- -webkit-transition-delay: 0s, 0.9s;
- -moz-transition-delay: 0s, 0.9s;
- -o-transition-delay: 0s, 0.9s;
- transition-delay: 0s, 0.9s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(11) {
- -webkit-transition-delay: 0s, 1s;
- -moz-transition-delay: 0s, 1s;
- -o-transition-delay: 0s, 1s;
- transition-delay: 0s, 1s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(12) {
- -webkit-transition-delay: 0s, 1.1s;
- -moz-transition-delay: 0s, 1.1s;
- -o-transition-delay: 0s, 1.1s;
- transition-delay: 0s, 1.1s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(13) {
- -webkit-transition-delay: 0s, 1.2s;
- -moz-transition-delay: 0s, 1.2s;
- -o-transition-delay: 0s, 1.2s;
- transition-delay: 0s, 1.2s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(14) {
- -webkit-transition-delay: 0s, 1.3s;
- -moz-transition-delay: 0s, 1.3s;
- -o-transition-delay: 0s, 1.3s;
- transition-delay: 0s, 1.3s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(15) {
- -webkit-transition-delay: 0s, 1.4s;
- -moz-transition-delay: 0s, 1.4s;
- -o-transition-delay: 0s, 1.4s;
- transition-delay: 0s, 1.4s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(16) {
- -webkit-transition-delay: 0s, 1.5s;
- -moz-transition-delay: 0s, 1.5s;
- -o-transition-delay: 0s, 1.5s;
- transition-delay: 0s, 1.5s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(17) {
- -webkit-transition-delay: 0s, 1.6s;
- -moz-transition-delay: 0s, 1.6s;
- -o-transition-delay: 0s, 1.6s;
- transition-delay: 0s, 1.6s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(18) {
- -webkit-transition-delay: 0s, 1.7s;
- -moz-transition-delay: 0s, 1.7s;
- -o-transition-delay: 0s, 1.7s;
- transition-delay: 0s, 1.7s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(19) {
- -webkit-transition-delay: 0s, 1.8s;
- -moz-transition-delay: 0s, 1.8s;
- -o-transition-delay: 0s, 1.8s;
- transition-delay: 0s, 1.8s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(20) {
- -webkit-transition-delay: 0s, 1.9s;
- -moz-transition-delay: 0s, 1.9s;
- -o-transition-delay: 0s, 1.9s;
- transition-delay: 0s, 1.9s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(21) {
- -webkit-transition-delay: 0s, 2s;
- -moz-transition-delay: 0s, 2s;
- -o-transition-delay: 0s, 2s;
- transition-delay: 0s, 2s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(22) {
- -webkit-transition-delay: 0s, 2.1s;
- -moz-transition-delay: 0s, 2.1s;
- -o-transition-delay: 0s, 2.1s;
- transition-delay: 0s, 2.1s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(23) {
- -webkit-transition-delay: 0s, 2.2s;
- -moz-transition-delay: 0s, 2.2s;
- -o-transition-delay: 0s, 2.2s;
- transition-delay: 0s, 2.2s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(24) {
- -webkit-transition-delay: 0s, 2.3s;
- -moz-transition-delay: 0s, 2.3s;
- -o-transition-delay: 0s, 2.3s;
- transition-delay: 0s, 2.3s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(25) {
- -webkit-transition-delay: 0s, 2.4s;
- -moz-transition-delay: 0s, 2.4s;
- -o-transition-delay: 0s, 2.4s;
- transition-delay: 0s, 2.4s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(26) {
- -webkit-transition-delay: 0s, 2.5s;
- -moz-transition-delay: 0s, 2.5s;
- -o-transition-delay: 0s, 2.5s;
- transition-delay: 0s, 2.5s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(27) {
- -webkit-transition-delay: 0s, 2.6s;
- -moz-transition-delay: 0s, 2.6s;
- -o-transition-delay: 0s, 2.6s;
- transition-delay: 0s, 2.6s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(28) {
- -webkit-transition-delay: 0s, 2.7s;
- -moz-transition-delay: 0s, 2.7s;
- -o-transition-delay: 0s, 2.7s;
- transition-delay: 0s, 2.7s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(29) {
- -webkit-transition-delay: 0s, 2.8s;
- -moz-transition-delay: 0s, 2.8s;
- -o-transition-delay: 0s, 2.8s;
- transition-delay: 0s, 2.8s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(30) {
- -webkit-transition-delay: 0s, 2.9s;
- -moz-transition-delay: 0s, 2.9s;
- -o-transition-delay: 0s, 2.9s;
- transition-delay: 0s, 2.9s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(31) {
- -webkit-transition-delay: 0s, 3s;
- -moz-transition-delay: 0s, 3s;
- -o-transition-delay: 0s, 3s;
- transition-delay: 0s, 3s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(32) {
- -webkit-transition-delay: 0s, 3.1s;
- -moz-transition-delay: 0s, 3.1s;
- -o-transition-delay: 0s, 3.1s;
- transition-delay: 0s, 3.1s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(33) {
- -webkit-transition-delay: 0s, 3.2s;
- -moz-transition-delay: 0s, 3.2s;
- -o-transition-delay: 0s, 3.2s;
- transition-delay: 0s, 3.2s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(34) {
- -webkit-transition-delay: 0s, 3.3s;
- -moz-transition-delay: 0s, 3.3s;
- -o-transition-delay: 0s, 3.3s;
- transition-delay: 0s, 3.3s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(35) {
- -webkit-transition-delay: 0s, 3.4s;
- -moz-transition-delay: 0s, 3.4s;
- -o-transition-delay: 0s, 3.4s;
- transition-delay: 0s, 3.4s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(36) {
- -webkit-transition-delay: 0s, 3.5s;
- -moz-transition-delay: 0s, 3.5s;
- -o-transition-delay: 0s, 3.5s;
- transition-delay: 0s, 3.5s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(37) {
- -webkit-transition-delay: 0s, 3.6s;
- -moz-transition-delay: 0s, 3.6s;
- -o-transition-delay: 0s, 3.6s;
- transition-delay: 0s, 3.6s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(38) {
- -webkit-transition-delay: 0s, 3.7s;
- -moz-transition-delay: 0s, 3.7s;
- -o-transition-delay: 0s, 3.7s;
- transition-delay: 0s, 3.7s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(39) {
- -webkit-transition-delay: 0s, 3.8s;
- -moz-transition-delay: 0s, 3.8s;
- -o-transition-delay: 0s, 3.8s;
- transition-delay: 0s, 3.8s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(40) {
- -webkit-transition-delay: 0s, 3.9s;
- -moz-transition-delay: 0s, 3.9s;
- -o-transition-delay: 0s, 3.9s;
- transition-delay: 0s, 3.9s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(41) {
- -webkit-transition-delay: 0s, 4s;
- -moz-transition-delay: 0s, 4s;
- -o-transition-delay: 0s, 4s;
- transition-delay: 0s, 4s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(42) {
- -webkit-transition-delay: 0s, 4.1s;
- -moz-transition-delay: 0s, 4.1s;
- -o-transition-delay: 0s, 4.1s;
- transition-delay: 0s, 4.1s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(43) {
- -webkit-transition-delay: 0s, 4.2s;
- -moz-transition-delay: 0s, 4.2s;
- -o-transition-delay: 0s, 4.2s;
- transition-delay: 0s, 4.2s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(44) {
- -webkit-transition-delay: 0s, 4.3s;
- -moz-transition-delay: 0s, 4.3s;
- -o-transition-delay: 0s, 4.3s;
- transition-delay: 0s, 4.3s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(45) {
- -webkit-transition-delay: 0s, 4.4s;
- -moz-transition-delay: 0s, 4.4s;
- -o-transition-delay: 0s, 4.4s;
- transition-delay: 0s, 4.4s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(46) {
- -webkit-transition-delay: 0s, 4.5s;
- -moz-transition-delay: 0s, 4.5s;
- -o-transition-delay: 0s, 4.5s;
- transition-delay: 0s, 4.5s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(47) {
- -webkit-transition-delay: 0s, 4.6s;
- -moz-transition-delay: 0s, 4.6s;
- -o-transition-delay: 0s, 4.6s;
- transition-delay: 0s, 4.6s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(48) {
- -webkit-transition-delay: 0s, 4.7s;
- -moz-transition-delay: 0s, 4.7s;
- -o-transition-delay: 0s, 4.7s;
- transition-delay: 0s, 4.7s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(49) {
- -webkit-transition-delay: 0s, 4.8s;
- -moz-transition-delay: 0s, 4.8s;
- -o-transition-delay: 0s, 4.8s;
- transition-delay: 0s, 4.8s;
-}
-/* line 99, ../sass/app.scss */
-.movie:nth-child(50) {
- -webkit-transition-delay: 0s, 4.9s;
- -moz-transition-delay: 0s, 4.9s;
- -o-transition-delay: 0s, 4.9s;
- transition-delay: 0s, 4.9s;
-}
-/* line 104, ../sass/app.scss */
-.movie.loaded {
- opacity: 1;
- -webkit-transform: scale(1, 1);
- -moz-transform: scale(1, 1);
- -ms-transform: scale(1, 1);
- -o-transform: scale(1, 1);
- transform: scale(1, 1);
-}
-
-@keyframes spin {
- /* line 111, ../sass/app.scss */
- from {
- -webkit-transform: rotate(0deg);
- }
-
- /* line 112, ../sass/app.scss */
- to {
- -webkit-transform: rotate(360deg);
- }
-}
-
-/* line 115, ../sass/app.scss */
-.popcorn-load {
- background: rgba(0, 0, 0, 0.8);
- color: #fff;
- height: 100%;
- left: 0;
- opacity: 1;
- position: absolute;
- top: 45px;
- width: 100%;
- z-index: 999;
- -webkit-transition: opacity ease;
- -webkit-transition-delay: 1s;
- -moz-transition: opacity ease 1s;
- -o-transition: opacity ease 1s;
- transition: opacity ease 1s;
-}
-/* line 127, ../sass/app.scss */
-.popcorn-load.hidden {
- opacity: 0;
- pointer-events: none;
-}
-/* line 132, ../sass/app.scss */
-.popcorn-load .wrapper {
- font-size: 40px;
- position: absolute;
- top: 50%;
- text-align: center;
- width: 100%;
- -webkit-transform: translateY(-100%);
- -moz-transform: translateY(-100%);
- -ms-transform: translateY(-100%);
- -o-transform: translateY(-100%);
- transform: translateY(-100%);
-}
-/* line 140, ../sass/app.scss */
-.popcorn-load .text {
- font-size: 22px;
-}
-/* line 143, ../sass/app.scss */
-.popcorn-load .spinner {
- background: url(../images/spinner.svg) no-repeat 0 0;
- background-size: cover;
- display: block;
- height: 45px;
- margin: 10px auto;
- -webkit-animation: 1.05s spin infinite linear;
- width: 45px;
-}
-/* line 153, ../sass/app.scss */
-.popcorn-load .progressbar {
- display: none;
- height: 14px;
- width: 250px;
- margin: 0px auto;
- margin-top: 20px;
- border-radius: 30px;
- border: 2px solid #FFF;
- overflow: hidden;
- padding: 3px;
-}
-/* line 164, ../sass/app.scss */
-.popcorn-load .progressbar .progress {
- display: block;
- height: 14px;
- width: 0%;
- min-width: 5.5%;
- background: #FFF;
- border-radius: 40px;
- -webkit-transition: width 0.2s ease;
- -moz-transition: width 0.2s ease;
- -o-transition: width 0.2s ease;
- transition: width 0.2s ease;
-}
-/* line 175, ../sass/app.scss */
-.popcorn-load .progressinfo {
- display: none;
- position: absolute;
- width: 250px;
- left: 50%;
- margin-left: -125px;
- color: #ffffff;
- font-size: 16px;
- font-weight: bold;
- bottom: -40px;
-}
-/* line 186, ../sass/app.scss */
-.popcorn-load .btn-close {
- display: none;
- position: absolute;
- z-index: 9999;
- top: 15px;
- left: 15px;
- -webkit-app-region: no-drag;
-}
-/* line 196, ../sass/app.scss */
-.popcorn-load.withProgressBar .progressbar {
- display: block;
-}
-/* line 199, ../sass/app.scss */
-.popcorn-load.withProgressBar .progressinfo {
- display: block;
-}
-/* line 202, ../sass/app.scss */
-.popcorn-load.withProgressBar .spinner {
- display: none;
-}
-/* line 207, ../sass/app.scss */
-.popcorn-load.cancellable .btn-close {
- display: block;
-}
-
-/* line 216, ../sass/app.scss */
-sidebar {
- right: 0;
- position: absolute;
- height: 100%;
- z-index: 125;
- -webkit-transform-style: preserve-3d;
- animation: sidebareffect .5s;
- -webkit-animation: sidebareffect .5s;
- /* Safari and Chrome */
-}
-/* line 224, ../sass/app.scss */
-sidebar.hidden {
- animation: sidebareffect2 .5s;
- -webkit-animation: sidebareffect2 .5s;
- -webkit-transform: translate(220px, 0);
-}
-/* line 240, ../sass/app.scss */
-sidebar .closer {
- position: absolute;
- top: 0;
- left: 0;
- height: 30px;
- width: 30px;
- z-index: 300;
- cursor: pointer;
-}
-/* line 248, ../sass/app.scss */
-sidebar .closer:hover i {
- opacity: 1;
-}
-/* line 251, ../sass/app.scss */
-sidebar .closer i {
- color: #fff;
- position: absolute;
- left: 8px;
- top: 8px;
- opacity: 0.5;
- text-shadow: 0 0 5px #000;
-}
-/* line 262, ../sass/app.scss */
-sidebar .play {
- background: #181817;
- box-shadow: -3px 0 3px rgba(0, 0, 0, 0.2);
- height: 100%;
- position: absolute;
- right: 0;
- top: 0;
- width: 220px;
- z-index: 100;
- overflow-x: hidden;
- overflow-y: overlay;
- -webkit-overflow-scrolling: touch;
-}
-/* line 11, ../sass/_utils.scss */
-sidebar .play::-webkit-scrollbar {
- background: none;
- width: 9px;
-}
-/* line 15, ../sass/_utils.scss */
-sidebar .play::-webkit-scrollbar-button {
- display: none;
-}
-/* line 18, ../sass/_utils.scss */
-sidebar .play::-webkit-scrollbar-track {
- display: none;
-}
-/* line 21, ../sass/_utils.scss */
-sidebar .play::-webkit-scrollbar-track-piece {
- display: none;
-}
-/* line 24, ../sass/_utils.scss */
-sidebar .play::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0);
- background-clip: content-box;
- border-radius: 10px;
- border: 2px solid transparent;
-}
-/* line 30, ../sass/_utils.scss */
-sidebar .play::-webkit-scrollbar-corner {
- display: none;
-}
-/* line 33, ../sass/_utils.scss */
-sidebar .play::-webkit-resizer {
- display: none;
-}
-/* line 38, ../sass/_utils.scss */
-sidebar .play:hover::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0.5);
- background-clip: content-box;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.15);
-}
-/* line 44, ../sass/_utils.scss */
-sidebar .play:hover::-webkit-scrollbar-thumb:hover {
- background: rgba(0, 0, 0, 0.6);
- background-clip: content-box;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.2);
-}
-/* line 276, ../sass/app.scss */
-sidebar .play:hover a.play-over {
- display: block;
-}
-/* line 286, ../sass/app.scss */
-sidebar .play a.play-over {
- position: absolute;
- top: 40%;
- padding: 10px 20px;
- border: 2px solid #FFF;
- text-transform: uppercase;
- left: 30%;
- color: #FFF;
- font-weight: bold;
- text-decoration: none;
- display: none;
- z-index: 10;
-}
-/* line 300, ../sass/app.scss */
-sidebar .side-content {
- padding: 0;
- z-index: 500;
- position: relative;
- background: #181817;
-}
-/* line 306, ../sass/app.scss */
-sidebar .side-content div {
- padding: 0 12px 12px 12px;
-}
-/* line 311, ../sass/app.scss */
-sidebar img.big-poster {
- background: #000;
- height: 326px;
- width: 220px;
-}
-/* line 317, ../sass/app.scss */
-sidebar a.play-button {
- background: #3498db;
- text-align: center;
- color: #FFF;
- font-weight: bold;
- padding: 16px 0;
- text-decoration: none;
- text-transform: uppercase;
- display: block;
- margin-top: -3px;
-}
-/* line 328, ../sass/app.scss */
-sidebar a.play-button:hover {
- background: #2980B9;
-}
-/* line 333, ../sass/app.scss */
-sidebar h2 {
- font-weight: bold;
- font-size: 18px;
- padding: 10px 0 0 0;
-}
-/* line 339, ../sass/app.scss */
-sidebar span {
- color: #999;
- font-size: 12px;
-}
-/* line 344, ../sass/app.scss */
-sidebar p {
- margin-top: 10px;
- color: #666;
- font-size: 13px;
- line-height: 1.3em;
-}
-
-/* line 351, ../sass/app.scss */
-.page {
- background: #181817;
- height: 100%;
- position: absolute;
- width: 100%;
- overflow-x: hidden;
- overflow-y: overlay;
- -webkit-overflow-scrolling: touch;
-}
-/* line 11, ../sass/_utils.scss */
-.page::-webkit-scrollbar {
- background: none;
- width: 9px;
-}
-/* line 15, ../sass/_utils.scss */
-.page::-webkit-scrollbar-button {
- display: none;
-}
-/* line 18, ../sass/_utils.scss */
-.page::-webkit-scrollbar-track {
- display: none;
-}
-/* line 21, ../sass/_utils.scss */
-.page::-webkit-scrollbar-track-piece {
- display: none;
-}
-/* line 24, ../sass/_utils.scss */
-.page::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0);
- background-clip: content-box;
- border-radius: 10px;
- border: 2px solid transparent;
-}
-/* line 30, ../sass/_utils.scss */
-.page::-webkit-scrollbar-corner {
- display: none;
-}
-/* line 33, ../sass/_utils.scss */
-.page::-webkit-resizer {
- display: none;
-}
-/* line 38, ../sass/_utils.scss */
-.page:hover::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0.5);
- background-clip: content-box;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.15);
-}
-/* line 44, ../sass/_utils.scss */
-.page:hover::-webkit-scrollbar-thumb:hover {
- background: rgba(0, 0, 0, 0.6);
- background-clip: content-box;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.2);
-}
-/* line 359, ../sass/app.scss */
-.page.notransition .movie {
- -webkit-transition-delay: 0s, 0s;
- -moz-transition-delay: 0s, 0s;
- -o-transition-delay: 0s, 0s;
- transition-delay: 0s, 0s;
-}
-
-/* line 364, ../sass/app.scss */
-#header {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- border: 1px solid #000;
- height: 45px;
- left: 0;
- padding: 15px;
- position: absolute;
- top: 0;
- text-align: center;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
- width: 100%;
- background-image: linear-gradient(to bottom, #30302e 0%, #232322 100%);
-}
-
-/* line 382, ../sass/app.scss */
-.container {
- height: calc(100% - 45px);
- overflow: hidden;
- margin: 45px 0 0 180px;
- position: relative;
-}
-
-/* line 389, ../sass/app.scss */
-.movie-list {
- margin-bottom: 15px;
-}
-
-/* line 394, ../sass/app.scss */
-.movie-list li::before {
- display: block;
- content: '';
- position: absolute;
- width: 100%;
- height: 100%;
- box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3);
- border-radius: 3px;
- border: 1px solid #000;
-}
-
-/* line 405, ../sass/app.scss */
-.movie-list li, .movie-cover {
- height: 195px;
- width: 132px;
- padding: 0;
- display: inline-block;
- margin: 10px;
- border-radius: 3px;
- position: relative;
- background: #000;
-}
-/* line 418, ../sass/app.scss */
-.movie-list li:hover i, .movie-cover:hover i {
- opacity: 1;
-}
-/* line 421, ../sass/app.scss */
-.movie-list li:hover .health, .movie-cover:hover .health {
- opacity: 0.2;
-}
-/* line 426, ../sass/app.scss */
-.movie-list li .health, .movie-cover .health {
- position: absolute;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- opacity: 0;
- -webkit-transition: all ease;
- -webkit-transition-delay: 0.3s;
- -moz-transition: all ease 0.3s;
- -o-transition: all ease 0.3s;
- transition: all ease 0.3s;
-}
-/* line 434, ../sass/app.scss */
-.movie-list li .health.bad, .movie-cover .health.bad {
- /* background: red; */
-}
-/* line 437, ../sass/app.scss */
-.movie-list li .health.medium, .movie-cover .health.medium {
- /* background: yellow; */
-}
-/* line 440, ../sass/app.scss */
-.movie-list li .health.good, .movie-cover .health.good {
- /* background: green; */
-}
-/* line 447, ../sass/app.scss */
-.movie-list li i, .movie-cover i {
- background: rgba(0, 0, 0, 0.4);
- color: #FFF;
- display: block;
- position: absolute;
- bottom: 0;
- line-height: 195px;
- right: 0;
- top: 0;
- left: 0;
- text-align: center;
- font-size: 60px;
- opacity: 0;
- width: 101%;
- height: 101%;
- z-index: 10;
- -webkit-transition: all ease;
- -webkit-transition-delay: 0.3s;
- -moz-transition: all ease 0.3s;
- -o-transition: all ease 0.3s;
- transition: all ease 0.3s;
-}
-/* line 466, ../sass/app.scss */
-.movie-list li img, .movie-cover img {
- height: 100%;
- width: 100%;
- margin: 0 0 10px 0;
- display: block;
- border-radius: 3px;
-}
-/* line 474, ../sass/app.scss */
-.movie-list li a, .movie-cover a {
- display: block;
- height: 196px;
- width: 133px;
-}
-/* line 480, ../sass/app.scss */
-.movie-list li strong, .movie-cover strong {
- color: #FFF;
- display: block;
- font-weight: bold;
- font-size: 14px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
-}
-/* line 490, ../sass/app.scss */
-.movie-list li small, .movie-cover small {
- font-size: 12px;
- color: #666;
-}
-
-/* line 497, ../sass/app.scss */
-.btn-os {
- background: #FFF;
- border-radius: 30px;
- border: 0;
- color: transparent;
- display: inline-block;
- font-size: 10px;
- height: 12px;
- padding: 0;
- text-align: center;
- width: 12px;
-}
-
-/* line 510, ../sass/app.scss */
-.btn-set {
- left: 15px;
- position: absolute;
- top: 17px;
- width: 80px;
-}
-/* line 517, ../sass/app.scss */
-.btn-set:hover .btn-os {
- color: rgba(0, 0, 0, 0.8);
-}
-/* line 521, ../sass/app.scss */
-.btn-set button {
- display: block;
- float: left;
- margin: 0 6px 0 0;
- background: #141414;
-}
-/* line 529, ../sass/app.scss */
-.btn-set .close:hover {
- background: #e74c3c;
-}
-/* line 535, ../sass/app.scss */
-.btn-set .max:hover {
- background: #27ae60;
-}
-/* line 541, ../sass/app.scss */
-.btn-set .min:hover {
- background: #f1c40f;
-}
-/* line 546, ../sass/app.scss */
-.btn-set .debug {
- background: #fff;
- content: 'D';
- color: #000;
- line-height: 9px;
- padding: 0 5px;
- text-transform: uppercase;
- width: auto;
-}
-
-/* line 557, ../sass/app.scss */
-.movie-landing {
- margin: 20px auto 0 auto;
-}
-
-/* line 561, ../sass/app.scss */
-.sidebar {
- float: left;
- width: 155px;
-}
-
-/* line 566, ../sass/app.scss */
-.sidebar .movie-cover {
- margin: 0;
-}
-
-/* line 571, ../sass/app.scss */
-.btn-action {
- background: #bb2720;
- border: 0;
- border-radius: 5px;
- color: #FFF;
- display: block;
- font-family: Helvetica, sans-serif;
- font-size: 14px;
- font-weight: 700;
- margin-top: 10px;
- padding: 12px 0;
- text-align: center;
- text-decoration: none;
- text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
- text-transform: uppercase;
- width: 155px;
-}
-
-/* line 589, ../sass/app.scss */
-.content {
- float: left;
- margin-left: 30px;
- text-shadow: 0 -1px 0 #000;
- width: 660px;
-}
-/* line 595, ../sass/app.scss */
-.content h2 {
- font-size: 32px;
- margin: 0;
- font-weight: bold;
-}
-/* line 602, ../sass/app.scss */
-.content p.metadata {
- color: #196cb2;
- font-size: 14px;
- font-weight: 700;
- margin: 10px 0;
-}
-/* line 609, ../sass/app.scss */
-.content p.description {
- color: #777;
- font-family: 'Helvetica Neue', sans-serif;
- font-size: 18px;
- margin-bottom: 20px;
-}
-
-/* line 618, ../sass/app.scss */
-.tabs {
- border-bottom: 1px solid #272727;
-}
-/* line 621, ../sass/app.scss */
-.tabs li {
- bottom: -1px;
- color: #333;
- display: inline-block;
- padding: 10px 20px;
- position: relative;
-}
-/* line 628, ../sass/app.scss */
-.tabs li:hover {
- color: #FFF;
-}
-/* line 632, ../sass/app.scss */
-.tabs li.active {
- border-bottom: 3px solid #FFF;
- color: #FFF;
- display: inline-block;
- font-weight: 700;
-}
-
-/* line 641, ../sass/app.scss */
-.tab-content {
- margin: 20px 0;
-}
-
-/* line 645, ../sass/app.scss */
-.cast ul li {
- font-size: 15px;
- font-weight: 700;
- padding: 10px;
- position: relative;
-}
-/* line 651, ../sass/app.scss */
-.cast ul li:hover {
- background: #222;
-}
-/* line 655, ../sass/app.scss */
-.cast ul li span {
- color: #444;
- font-weight: 400;
- position: absolute;
- right: 10px;
-}
-
-/* line 663, ../sass/app.scss */
-.poster-cont {
- position: relative;
-}
-/* line 666, ../sass/app.scss */
-.poster-cont:hover .movie-config {
- bottom: 2px;
-}
-
-/* line 673, ../sass/app.scss */
-.subtitles button {
- background: transparent;
- border: 0;
- padding: 0;
-}
-
-/* line 679, ../sass/app.scss */
-.movie-config {
- -webkit-transition: all .25s ease;
- -moz-transition: all .25s ease;
- -ms-transition: all .25s ease;
- -o-transition: all .25s ease;
- transition: all .25s ease;
- position: absolute;
- bottom: -90px;
- background: rgba(0, 0, 0, 0.6);
- width: 100%;
- color: #FFF;
- /* ---------- SWITCH ---------- */
-}
-/* line 692, ../sass/app.scss */
-.movie-config:hover .dropdown {
- z-index: 600;
-}
-/* line 696, ../sass/app.scss */
-.movie-config li.options {
- padding: 15px;
- position: relative;
-}
-/* line 699, ../sass/app.scss */
-.movie-config li.options span.extra-data {
- font-weight: bold;
- color: #FFF;
- float: right;
- font-size: 15px;
-}
-/* line 705, ../sass/app.scss */
-.movie-config li.options span.good {
- color: #27ae60;
-}
-/* line 706, ../sass/app.scss */
-.movie-config li.options span.bad {
- color: #c0392b;
-}
-/* line 707, ../sass/app.scss */
-.movie-config li.options span.epic {
- color: #8e44ad;
-}
-/* line 708, ../sass/app.scss */
-.movie-config li.options span.available-subtitles {
- float: right;
- margin-top: -3px;
-}
-/* line 711, ../sass/app.scss */
-.movie-config li.options span.available-subtitles > img {
- margin-left: 5px;
-}
-/* line 717, ../sass/app.scss */
-.movie-config input {
- font-family: inherit;
- font-size: 100%;
- line-height: normal;
- margin: 0;
-}
-/* line 722, ../sass/app.scss */
-.movie-config input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
-}
-/* line 730, ../sass/app.scss */
-.movie-config .switch {
- background: transparent;
- border-radius: 32px;
- display: block;
- height: 12px;
- position: absolute;
- width: 25px;
- border: 2px solid #FFF;
- right: 52px;
- top: 14px;
- cursor: pointer;
-}
-/* line 741, ../sass/app.scss */
-.movie-config .switch label {
- color: #fff;
- font-size: 12px;
- font-weight: bold;
- text-transform: uppercase;
- -webkit-transition: color .2s ease;
- -moz-transition: color .2s ease;
- -ms-transition: color .2s ease;
- -o-transition: color .2s ease;
- transition: color .2s ease;
- width: 20px;
- cursor: pointer;
-}
-/* line 753, ../sass/app.scss */
-.movie-config .switch label:nth-of-type(1) {
- left: -38px;
- position: absolute;
- text-align: right;
-}
-/* line 758, ../sass/app.scss */
-.movie-config .switch label:nth-of-type(2) {
- position: absolute;
- right: -30px;
- text-align: left;
-}
-/* line 764, ../sass/app.scss */
-.movie-config .switch input {
- height: 64px;
- left: 0;
- opacity: 0;
- position: absolute;
- top: 0;
- width: 60px;
- z-index: 2;
- cursor: pointer;
-}
-/* line 773, ../sass/app.scss */
-.movie-config .switch input:checked {
- z-index: 0;
-}
-/* line 775, ../sass/app.scss */
-.movie-config .switch input:checked ~ label:nth-of-type(1) {
- color: #0cff00;
-}
-/* line 778, ../sass/app.scss */
-.movie-config .switch input:checked ~ label:nth-of-type(2) {
- color: #FFF;
-}
-/* line 782, ../sass/app.scss */
-.movie-config .switch input:checked ~ .toggle {
- left: 2px;
-}
-/* line 788, ../sass/app.scss */
-.movie-config .switch input ~ :checked ~ label:nth-of-type(1) {
- color: #FFF;
-}
-/* line 791, ../sass/app.scss */
-.movie-config .switch input ~ :checked ~ label:nth-of-type(2) {
- color: #0cff00;
-}
-/* line 795, ../sass/app.scss */
-.movie-config .switch input ~ :checked ~ .toggle {
- left: 13px;
-}
-/* line 801, ../sass/app.scss */
-.movie-config .toggle {
- background: #0cff00;
- border-radius: 50%;
- height: 10px;
- left: 0;
- position: absolute;
- top: 1px;
- -webkit-transition: left .2s ease;
- -moz-transition: left .2s ease;
- -ms-transition: left .2s ease;
- -o-transition: left .2s ease;
- transition: left .2s ease;
- width: 10px;
- z-index: 1;
-}
-
-/* line 821, ../sass/app.scss */
-a {
- text-decoration: none;
-}
-
-/* line 826, ../sass/app.scss */
-.dropdown {
- position: relative;
- display: inline-block;
- text-align: left;
- width: 30px;
- float: right;
- margin-right: 20px;
- margin-top: -8px;
-}
-
-/* line 836, ../sass/app.scss */
-.dropdown-text {
- cursor: pointer;
- position: absolute;
- width: 100%;
- padding: 5px;
- text-align: center;
- color: #333;
- text-shadow: 0 1px #fff;
-}
-/* line 842, ../sass/app.scss */
-.dropdown-text:after {
- position: absolute;
- right: -10px;
- top: 15px;
- content: '';
- width: 0px;
- height: 0px;
- border-style: solid;
- border-width: 4px 3px 0 3px;
- border-color: #FFF transparent transparent transparent;
-}
-
-/* line 857, ../sass/app.scss */
-.dropdown-content a {
- color: #333;
- text-shadow: 0 1px #fff;
-}
-
-/* line 862, ../sass/app.scss */
-.dropdown-toggle {
- font-size: 0;
- z-index: 1;
- cursor: pointer;
- position: absolute;
- top: 0;
- border: none;
- padding: 0;
- margin: 0 0 0 1px;
- background: transparent;
- text-indent: -10px;
- height: 37px;
- width: 60px;
-}
-/* line 875, ../sass/app.scss */
-.dropdown-toggle:focus {
- outline: 0;
-}
-
-/* line 880, ../sass/app.scss */
-.dropdown-content {
- list-style-type: none;
- position: absolute;
- top: 34px;
- padding: 0;
- margin: 0;
- opacity: 0;
- visibility: hidden;
- border-radius: 0 0 3px 3px;
- background-color: white;
- /* rgba(0,0,0,0.8); */
- width: 40px;
- text-align: center;
-}
-/* line 893, ../sass/app.scss */
-.dropdown-content a {
- display: block;
- padding: 4px;
-}
-/* line 896, ../sass/app.scss */
-.dropdown-content a:hover {
- background: #E1E1E1;
-}
-
-/* line 904, ../sass/app.scss */
-.dropdown.active .dropdown-text {
- background-color: white;
- z-index: 2;
- border-radius: 3px 3px 0 0;
-}
-/* line 909, ../sass/app.scss */
-.dropdown.active .dropdown-content {
- opacity: 1;
- visibility: visible;
-}
-
-/* line 916, ../sass/app.scss */
-#catalog-select {
- width: 180px;
- position: absolute;
- top: 45px;
- padding: 20px;
- height: calc(100% - 45px);
- background: #121212;
- border-right: 1px solid #000;
- font-family: 'Myriad Pro', 'Lucida Grande', sans-serif;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- overflow-x: hidden;
- overflow-y: overlay;
- -webkit-overflow-scrolling: touch;
-}
-/* line 11, ../sass/_utils.scss */
-#catalog-select::-webkit-scrollbar {
- background: none;
- width: 9px;
-}
-/* line 15, ../sass/_utils.scss */
-#catalog-select::-webkit-scrollbar-button {
- display: none;
-}
-/* line 18, ../sass/_utils.scss */
-#catalog-select::-webkit-scrollbar-track {
- display: none;
-}
-/* line 21, ../sass/_utils.scss */
-#catalog-select::-webkit-scrollbar-track-piece {
- display: none;
-}
-/* line 24, ../sass/_utils.scss */
-#catalog-select::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0);
- background-clip: content-box;
- border-radius: 10px;
- border: 2px solid transparent;
-}
-/* line 30, ../sass/_utils.scss */
-#catalog-select::-webkit-scrollbar-corner {
- display: none;
-}
-/* line 33, ../sass/_utils.scss */
-#catalog-select::-webkit-resizer {
- display: none;
-}
-/* line 38, ../sass/_utils.scss */
-#catalog-select:hover::-webkit-scrollbar-thumb {
- background: rgba(0, 0, 0, 0.5);
- background-clip: content-box;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.15);
-}
-/* line 44, ../sass/_utils.scss */
-#catalog-select:hover::-webkit-scrollbar-thumb:hover {
- background: rgba(0, 0, 0, 0.6);
- background-clip: content-box;
- border-radius: 10px;
- border: 1px solid rgba(255, 255, 255, 0.2);
-}
-/* line 931, ../sass/app.scss */
-#catalog-select .search {
- position: absolute;
- right: 10px;
- top: 12px;
-}
-/* line 935, ../sass/app.scss */
-#catalog-select .search input {
- border: 2px solid rgba(255, 255, 255, 0.4);
- border-radius: 5px;
- color: #FFF;
- font-size: 12px;
- height: 15px;
- padding: 8px 10px;
- width: 135px;
- background: transparent;
- font-weight: bold;
-}
-/* line 948, ../sass/app.scss */
-#catalog-select .search i {
- position: absolute;
- top: 10px;
- right: 10px;
- color: rgba(255, 255, 255, 0.4);
-}
-/* line 955, ../sass/app.scss */
-#catalog-select h4 {
- margin-top: 40px;
- color: #404040;
- font-weight: bold;
- margin-bottom: 10px;
-}
-/* line 962, ../sass/app.scss */
-#catalog-select ul li {
- display: block;
- font-weight: bold;
- font-size: 13px;
-}
-/* line 970, ../sass/app.scss */
-#catalog-select ul li.active a {
- background: #286dc4;
- background-image: linear-gradient(to bottom, #3076ce 0%, #175ab0 100%);
- color: #FFF;
- font-weight: bold;
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
-}
-/* line 978, ../sass/app.scss */
-#catalog-select ul li a {
- color: #999999;
- display: block;
- border-radius: 3px;
- padding: 8px;
- -webkit-transition: background-color ease;
- -webkit-transition-delay: 0.3s;
- -moz-transition: background-color ease 0.3s;
- -o-transition: background-color ease 0.3s;
- transition: background-color ease 0.3s;
-}
-/* line 984, ../sass/app.scss */
-#catalog-select ul li a:hover {
- background: #010101;
-}
-
-/* line 992, ../sass/app.scss */
-#video-container {
- display: none;
- height: 100%;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
- z-index: 998;
- -webkit-app-region: no-drag;
-}
-
-/* line 1007, ../sass/app.scss */
-#video_player_close {
- position: absolute;
- z-index: 9999;
- top: 15px;
- left: 15px;
- -webkit-app-region: no-drag;
-}
-
-/* line 1017, ../sass/app.scss */
-#video_player.vjs-user-inactive + #video_player_close {
- opacity: 0.0;
- pointer-events: none;
- -webkit-transition: opacity 0.8s ease;
- -moz-transition: opacity 0.8s ease;
- -o-transition: opacity 0.8s ease;
- transition: opacity 0.8s ease;
-}
-
-/* line 1022, ../sass/app.scss */
-#video_player.vjs-user-active + #video_player_close {
- opacity: 1.0;
- pointer-events: all;
- -webkit-transition: opacity 0.2s ease-out;
- -moz-transition: opacity 0.2s ease-out;
- -o-transition: opacity 0.2s ease-out;
- transition: opacity 0.2s ease-out;
-}
-
-/* line 1029, ../sass/app.scss */
-#video_player.video-js {
- font-size: inherit;
-}
-/* line 1032, ../sass/app.scss */
-#video_player.video-js .vjs-text-track {
- font-size: 1em;
- line-height: 140%;
- opacity: 0.90;
- margin-bottom: 1em;
- text-shadow: 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black, 0 0 0.2em black;
-}
-/* line 1040, ../sass/app.scss */
-#video_player.video-js .vjs-text-track-display {
- font-size: 1em;
-}
-/* line 1043, ../sass/app.scss */
-#video_player.video-js .vjs-loading-spinner {
- font-size: 1em;
-}
-/* line 1046, ../sass/app.scss */
-#video_player.video-js .vjs-big-play-button {
- font-size: 1em;
-}
-/* line 1049, ../sass/app.scss */
-#video_player.video-js .vjs-control-bar {
- font-size: 10px;
-}
-/* line 1052, ../sass/app.scss */
-#video_player.video-js .vjs-menu-item {
- color: #000;
-}
-/* line 1055, ../sass/app.scss */
-#video_player.video-js .vjs-menu-item.vjs-selected {
- font-weight: bold;
- color: #2ecc71;
-}
diff --git a/dist/windows/README.txt b/dist/windows/README.txt
new file mode 100644
index 00000000..d5fe69a5
--- /dev/null
+++ b/dist/windows/README.txt
@@ -0,0 +1,2 @@
+To build the installer you need InnoSetup for Windows, open the .iss file with that, and then hit compile. You'll get "Install Popcorn Time.exe", which is the full installer for Windows.
+Download it from http://www.jrsoftware.org/isdl.php
\ No newline at end of file
diff --git a/dist/windows/installer-image.bmp b/dist/windows/installer-image.bmp
new file mode 100644
index 00000000..d47f0050
Binary files /dev/null and b/dist/windows/installer-image.bmp differ
diff --git a/dist/windows/languages/Arabic.isl b/dist/windows/languages/Arabic.isl
new file mode 100644
index 00000000..eee3fec6
--- /dev/null
+++ b/dist/windows/languages/Arabic.isl
@@ -0,0 +1,337 @@
+; *** Inno Setup version 5.5.3+ Arabic messages ***
+;
+; Translated by Ahmad Alani (Ahmadalani75@hotmail.com)
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Arabic
+LanguageID=$0401
+LanguageCodePage=1265
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=MS Shell Dlg
+;DialogFontSize=8
+;WelcomeFontName=Arial
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=إعداد
+SetupWindowTitle=%1 - تثبيت
+UninstallAppTitle=إلغاء التثبيت
+UninstallAppFullTitle=%1 إلغاء تثبيت
+
+; *** Misc. common
+InformationTitle=معلومات
+ConfirmTitle=تأكيد
+ErrorTitle=خطأ
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=سيتم تثبيت %1. هل تريد الاستمرار؟
+LdrCannotCreateTemp=لا يمكن إنشاء ملف مؤقت. سيتم ايقاف عملية التثبيت
+LdrCannotExecTemp=لا يمكن تنفيذ ملف في المجلد المؤقت سيتم إيقاف عملية التنصيب
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nخطأ %2: %3
+SetupFileMissing=الملف %1 مفقود من مجلد التثبيت. رجاء حل المشكلة أو حاول الحصول على نسخة جديدة من البرنامج
+SetupFileCorrupt=ملفات التثبيت معطوبة. الرجاء حاول الحصول على نسخة جديدة من البرنامج
+SetupFileCorruptOrWrongVer=ملفات التثبيت معطوبة ، أو غير متوافقة مع إصدار برنامج التثبيت ، الرجاء حل المشكلة أو حاول الحصول على نسخة جديدة من البرنامج
+InvalidParameter=تم تمرير معلمة غير صالحة في سطر الأوامر:%n%n%1
+SetupAlreadyRunning=التثبيت قيد التشغيل مسبقا
+WindowsVersionNotSupported=الذي على تستخدمه الآن على كمبيوترك Windows هذا البرنامج لا يدعم نوع نظام
+WindowsServicePackRequired=أو أعلى %1 Service Pack %2 البرنامج يتطلب
+NotOnThisPlatform=هذا البرنامج لا يمكنه العمل على %1.
+OnlyOnThisPlatform=هذا البرنامج يجب أن يعمل على %1.
+OnlyOnTheseArchitectures=%n%n%1 : هذا البرنامج يمكن فقط أن يثبت على نسخ الويندوز المصممة للهندسة المعمارية التالية
+MissingWOW64APIs=إن نسخة الويندوز التي تملكها الآن لا تتضمن الوظيفة المطلوبة من الإعداد لإداء تثبيت بت-64 لتصحيح هذه المشكلة ، الرجاء تثبيت حزمة الخدمة %1
+WinVersionTooLowError=هذا البرنامج يتطلب %1 الإصدار %2 أو ما بعده.
+WinVersionTooHighError=هذا البرنامج لا يمكن أن يعمل على %1 الإصدار %2 أو ما بعدة
+AdminPrivilegesRequired=يجب أن تكون مدير الشبكة عندما تثبت هذا البرنامج
+PowerUserPrivilegesRequired=يجب أن تكون المدير عند تسجيل الدخول أو عضوا له نفوذ عند تثبيت هذا البرنامج
+SetupAppRunningError=برنامج التثبيت وجد أن %1 يعمل.%n%nالرجاء إقفال كل النوافذ الآن ، ثم الضغط على حسنا للاستمرار أو إلغاء الأمر للخروج
+UninstallAppRunningError=برنامج إلغاء التثبيت وجد ان %1 يعمل.%n%nالرجاء إقفال كل نوافذه الآن ، ثم الضغط على حسنا للاستمرار أو إلغاء الأمر للخروج
+
+; *** Misc. errors
+ErrorCreatingDir=برنامج التثبيت لم يستطع إنشاء المجلد "%1"
+ErrorTooManyFilesInDir=لا يمكن إنشاء ملف في المجلد "%1"%nلأنه يحتوى عدد كبير من الملفات
+
+; *** Setup common messages
+ExitSetupTitle=إنهاء عملية التثبيت
+ExitSetupMessage=.عملية التثبيت لم تكتمل. إذا خرجت الآن فان البرنامج لن يتم تثبيته%n%nيمكنك تشغيل برنامج التثبيت لاحقا .لأستكمال العملية%n%nهل تريد الخروج ؟
+AboutSetupMenuItem=...&حول برنامج التثبيت
+AboutSetupTitle=حول برنامج التثبيت
+AboutSetupMessage=%1 إصدار %2%n%3%n%n%1 الموقع على الإنترنت:%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< &السابق
+ButtonNext=&التالي >
+ButtonInstall=&تثبيت
+ButtonOK=حسنا
+ButtonCancel=إلغاء الأمر
+ButtonYes=&نعم
+ButtonYesToAll=نعم لل&كل
+ButtonNo=&لا
+ButtonNoToAll=ل&ا للكل
+ButtonFinish=&إنهاء
+ButtonBrowse=&تصفح...
+ButtonWizardBrowse=...تصفّح
+ButtonNewFolder=إنشاء مجلد جديد
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=حدد لغة التثبيت
+SelectLanguageLabel=حدد اللغة المستخدمة أثناء التثبيت:
+
+; *** Common wizard text
+ClickNext=اضغط التالي للمواصلة ، أو إلغاء الأمر للخروج%n%nترجمة : أحـمـد الـعـانــي
+BeveledLabel=
+BrowseDialogTitle=تصفح عن مجلد
+BrowseDialogLabel=حدد مجلدا ما في القائمة تحت , ثم إضغط حسنا
+NewFolderName=مجلد جديد
+
+; *** "Welcome" wizard page
+WelcomeLabel1=[name] مرحبا مع تثبيت
+WelcomeLabel2=على جهازك [name/ver] سيتم تثبيت%n%nينصح بشدة إغلاق جميع البرامج الأخرى قبل المواصلة ، لتجنب الأخطاء و التعارض مع البرامج الأخرى خلال عملية التثبيت
+
+; *** "Password" wizard page
+WizardPassword=كلمة المرور
+PasswordLabel1=عملية التثبيت محمية بكلمة مرور
+PasswordLabel3=الرجاء كتابة كلمة المرور ثم ضغط التالي للمواصلة. حالة الاحرف مهمة في كلمة المرور
+PasswordEditLabel=&كلمة المرور:
+IncorrectPassword=كلمة المرور التي أدخلتها غير صحيحة. الرجاء المحاولة مرة أخرى
+
+; *** "License Agreement" wizard page
+WizardLicense=اتفاقية التشغيل
+LicenseLabel=الرجاء قراءة المعلومات التالية قبل المواصلة.
+LicenseLabel3=الرجاء أقرأ إتفاقية الرخصة التالية . يجب عليك أن تَقْبل شروطَ هذه الاتفاقية قبل الاستمرار بالتثبيت
+LicenseAccepted=أوافق على الاتفاقية
+LicenseNotAccepted=لا أوافق على الاتفاقية
+
+; *** "Information" wizard pages
+WizardInfoBefore=معلومات
+InfoBeforeLabel=الرجاء قراءة المعلومات التالية قبل المواصلة
+InfoBeforeClickLabel=عندما تكون مستعدا للمواصلة اضغط التالي
+WizardInfoAfter=معلومات
+InfoAfterLabel=الرجاء قراءة المعلومات التالية قبل المواصلة
+InfoAfterClickLabel=عندما تكون مستعدا للمواصلة اضغط التالي
+
+; *** "User Information" wizard page
+WizardUserInfo=معلومات المستخدم
+UserInfoDesc=فضلا أدخل معلوماتك
+UserInfoName=إسم المستخدم :
+UserInfoOrg=المنشأة :
+UserInfoSerial=رقم التسلسل :
+UserInfoNameRequired=يجب أن تدخل إسما ما
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=حدد مجلد التثبيت
+SelectDirDesc=؟ [name] أين تريد أن يتم تثبيت
+SelectDirLabel3= إلى المجلد التالي [name] سيقوم الإعداد بتثبيت
+SelectDirBrowseLabel=إضغط التالي للمتابعة , إذا ترغب بتحديد مجلد مختلف إضغط تصفح
+DiskSpaceMBLabel=البرنامج يتطلب على الأقل [mb] ميقا بايت من مساحة التخزين.
+CannotInstallToNetworkDrive=لا يمكن لبرنامج الإعداد التثبيت إلى محرك أقراص الشبكة
+CannotInstallToUNCPath=UNC لا يمكن لبرنامج الإعداد التثبيت إلى مسار
+InvalidPath=يجب أن تدخل مسار كامل مع اسم القرص; مثل:%n%nC:\APP%n%n
+InvalidDrive=القرص أو الـ UNC الذي حددت ليس موجودا أو لا يمكن الوصول إليه. الرجاء تحديد غيره
+DiskSpaceWarningTitle=لا يوجد مساحة تخزين كافية
+DiskSpaceWarning=برنامج التثبيت يحتاج إلى %1 كيلو بايت على الاقل من المساحة للتخزين ، بينما القرص المحدد لا يحتوى الا على %2 كيلو بايت فارغة فقط%n%nهل تريد الاستمرار على أي حال؟
+DirNameTooLong=إسم المجلد أو المسار طويل جدا
+InvalidDirName=إسم المجلد غير صالح
+BadDirName32=أسماء المجلدات لا يمكن أن تحتوي على أي من الحروف التالية:%n%n%1
+DirExistsTitle=المجلد موجود مسبقاً
+DirExists=المجلد%n%n%1%n%nموجود مسبقا . هل تريد التخزين عليه على أي حال؟
+DirDoesntExistTitle=المجلد ليس موجوداً مسبقاً
+DirDoesntExist=المجلد%n%n%1%n%nغير موجود مسبقا . هل تريد انشائه؟
+
+; *** "Select Components" wizard page
+WizardSelectComponents=حدد المكونات
+SelectComponentsDesc=أي المكونات ترغب في تثبيتها؟
+SelectComponentsLabel2=حدد المكونات التي ترغب في تثبيتها؛ و الغي تحديد المكونات التي لا ترغب بتثبيتها . إضغط التالي عندما تكون مستعدا للمواصلة
+FullInstallation=تثبيت كامل
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=تثبيت مختصر
+CustomInstallation=تثبيت محدد
+NoUninstallWarningTitle=المكونات موجودة مسبقاً
+NoUninstallWarning=المكونات التالية موجودة مسبقاً على جهازك:%n%n%1%n%nإلغاء تحديدها يعني عدم تثبيتها%n%nهل تريد المواصلة على أي حال?
+ComponentSize1=%1 كيلو بايت
+ComponentSize2=%1 ميقابايت
+ComponentsDiskSpaceMBLabel=التحديدات الحالية تحتاج على الاقل [mb] ميغا بايت من المساحة الفارغة على القرص
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=إضغط عمليات إضافية
+SelectTasksDesc=ما هي العمليات الإضافية التالية المراد تنفيذها ؟
+SelectTasksLabel2=ثم إضغط التالي [name] حدد طلباتك من
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=تحديد مجلد قائمة ابدأ
+SelectStartMenuFolderDesc=أين يجب وضع اختصار للبرنامج؟
+SelectStartMenuFolderLabel3=سيقوم التثبيت بإنشاء إختصار للبرنامج في مجلد قائمة ابدأ التالي
+SelectStartMenuFolderBrowseLabel=إضغط التالي للمتابعة , إذا ترغب بتحديد مجلد مختلف إضغط تصفح
+MustEnterGroupName=يجب إدخال اسم المجلد
+GroupNameTooLong=إسم المجلد أو المسار طويل جدا
+InvalidGroupName=إسم المجلد غير صالح
+BadGroupName=اسم المجلد يجب أن لا يحوي أي من الحروف التالية:%n%n%1
+NoProgramGroupCheck2=&لا تنشئ مجلدا في قائمة ابدأ
+
+; *** "Ready to Install" wizard page
+WizardReady=جاهز للتثبيت
+ReadyLabel1=على جهازك [name] برنامج التثبيت جاهز لتثبيت برنامج
+ReadyLabel2a=اضغط تثبيت إذا كنت ترغب في مواصلة عملية التثبيت ، أو السابق إذا كنت ترغب في مراجعة أو تغيير أي إعدادات
+ReadyLabel2b=اضغط تثبيت للمواصلة
+ReadyMemoUserInfo=معلومات المستخدم :
+ReadyMemoDir=مجلد التخزين:
+ReadyMemoType=نوع التثبيت:
+ReadyMemoComponents=المكونات المحددة:
+ReadyMemoGroup=مجلد قائمة ابدأ:
+ReadyMemoTasks=العمليات الإضافية:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=الإستعداد للتثبيت
+PreparingDesc=في كمبيوترك [name] يقوم الإعداد بتجهيز تثبيت
+PreviousInstallNotCompleted=لم يتم إكمال تثبيت أو إزالة أحد البرامج السابقة. أنت تحتاج إلى إعادة تشغيل الكمبيوتر لإكمال عملية التثبيت أو الإزالة السابقة%n%n[name] بعد إعادة تشغيل الكمبيوتر، قم بإعادة تثبيت
+CannotContinue=الإعداد لا يَستطيع الإستمرار . الرجاء إضغط إلغاء الأمر للخُرُوج
+ApplicationsFound=التطبيقات التالية تستخدم ملفات بحاجة إلى تحديثها بواسطة برنامج التثبيت. يستحسن السماح لبرنامج التثبيت بإغلاق هذه التطبيقات تلقائيا
+ApplicationsFound2=التطبيقات التالية تستخدم ملفات بحاجة إلى تحديثها بواسطة برنامج التثبيت. يستحسن السماح لبرنامج التثبيت بإغلاق هذه التطبيقات تلقائيا و بعد اكتمال عملية التثبيت، سيحاول برنامج التثبيت إعادة تشغيل التطبيقات
+CloseApplications=إ&غلاق التطبيقات تلقائيا
+DontCloseApplications=&غدم إغلاق التطبيقات
+ErrorCloseApplications=لم يتمكن الإعداد تلقائياً بإغلاق كافة التطبيقات. من المستحسن أن تقوم بإغلاق كافة التطبيقات التي تستخدم .الملفات التي تحتاج إلى تحديث بواسطة الإعداد قبل المتابعة
+
+; *** "Installing" wizard page
+WizardInstalling=تتم عملية التثبيت
+InstallingLabel=على جهازك [name] الرجاء الانتظار حتى تثبيت برنامج
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel= [name] إكتمال معالج إعداد
+FinishedLabelNoIcons=على جهازك [name] تم تثبيت برنامج
+FinishedLabel=يمكن تشغيله من أيقونته [name] تم تثبيت
+ClickFinish=اضغط إنهاء للخروج
+FinishedRestartLabel=يجب إعادة تشغيل الكمبيوتر [name] لإتمام تثبيت%n%nهل تريد إعادة التشغيل الآن؟
+FinishedRestartMessage=بنجاح [name] يجب إعادة تشغيل الكمبيوتر لتثبيت%n%nهل تريد إعادة التشغيل الآن؟
+ShowReadmeCheck=نعم ارغب في قراءة ملف README
+YesRadio=&نعم ، إعادة تشغيل الكمبيوتر الآن
+NoRadio=&لا ، سأعيد تشغيل الكمبيوتر بنفسي لاحقا
+; used for example as 'Run MyProg.exe'
+RunEntryExec=تشغيل %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=اعرض %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=برنامج التثبيت يحتاج القرص التالي
+SelectDiskLabel2=الرجاء إدخال القرص رقم %1 ثم اضغط حسنا%n%nاذ كانت الملفات على هذا القرص موجودة في داخل مجلد غير المعروض في الأسفل ادخل المسار الصحيح أو اضغط تصفح
+PathLabel=ال&مسار:
+FileNotInDir2=الملف "%1" لا يمكن إيجاده في "%2" ، الرجاء ادخال القرص الصحيح أو حدد مجلد آخر
+SelectDirectoryLabel=الرجاء تحديد مكان القرص التالي
+
+; *** Installation phase messages
+SetupAborted=عملية التثبيت لم تكتمل%n%nالرجاء حل المشكلة ثم اعادة تشغيل التثبيت مرة أخرى
+EntryAbortRetryIgnore=إضغط إعادة للمحاولة مرة أخرى ، تجاهل للمواصلة على أي حال أو توقف لإلغاء عملية التثبيت
+
+; *** Installation status messages
+StatusClosingApplications=...يتم إغلاق التطبيقات
+StatusCreateDirs=إنشاء المجلدات...
+StatusExtractFiles=فك ضغط الملفات...
+StatusCreateIcons=إنشاء أيقونات البرنامج...
+StatusCreateIniEntries=إنشاء مدخلات INI...
+StatusCreateRegistryEntries=إنشاء مدخلات ملف التسجيل...
+StatusRegisterFiles=تسجيل الملفات...
+StatusSavingUninstall=حفظ معلومات إلغاء التثبيت...
+StatusRunProgram=إنهاء عملية التثبيت...
+StatusRestartingApplications=...يتم إعادة تشغيل التطبيقات
+StatusRollback=إرجاع التغييرات...
+
+; *** Misc. errors
+ErrorInternal2=%1: خطأ داخلي
+ErrorFunctionFailedNoCode=فشل %1
+ErrorFunctionFailed=%1 فشل : الرمز %2
+ErrorFunctionFailedWithMessage=%1 فشل : الرمز %2%n%3
+ErrorExecutingProgram=لا يمكن تنفيذ الملف:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=%n%1\%2 : خطأ بفتح مفتاح الريجستري
+ErrorRegCreateKey=%n%1\%2 : خطأ بإنشاء مفتاح الريجستري
+ErrorRegWriteKey=%n%1\%2 : خطأ بكتابة مفتاح الريجستري
+
+; *** INI errors
+ErrorIniEntry="%1" في الملف INI خطأ بإنشاء مدخلة
+
+; *** File copying errors
+FileAbortRetryIgnore=إضغط إعادة للمحاولة مرة أخرى ، تجاهل لتجاهل هذا الملف (لا ينصح بهذا) ، أو توقف لإلغاء التثبيت
+FileAbortRetryIgnore2=إضغط إعادة للمحاولة مرة أخرى ، تجاهل للمواصلة على أي حال (لا ينصح بهذا) ، أو توقف لإلغاء التثبيت
+SourceIsCorrupted=ملف المصدر معطوب
+SourceDoesntExist=ملف المصدر "%1" ليس موجوداً
+ExistingFileReadOnly=الملف الحالي محدد للقراءة فقط%n%nغير خاصية للقراءة فقط ثم المحاولة مرة ثانية ، تجاهل لتجاهل الملف أو توقف لإلغاء التثبيت
+ErrorReadingExistingDest=حصل خطأ عند محاولة قراءة الملف :
+FileExists=الملف موجود مسبقا%n%nهل تريد الكتابة علية؟
+ExistingFileNewer= الملف الموجود مسبقا احدث من الملف الذي يحاول برنامج التثبيت نسخه . يفضل الاحتفاظ بالملف الموجود مسبقا%n%nهل تحتفظ بالملف الموجود مسبقا؟
+ErrorChangingAttr=حصل خطأ عند محاولة تغيير خصائص الملف:
+ErrorCreatingTemp=حصل خطأ عند محاولة إنشاء ملف في مجلد التخزين:
+ErrorReadingSource=حصل خطأ عند قراءة الملف:
+ErrorCopying=حصل خطأ عند محاولة نسخ الملف:
+ErrorReplacingExistingFile=حصل خطأ عند محاولة استبدال الملف:
+ErrorRestartReplace=فشلت إعادة تشغيل أو إستبدال:
+ErrorRenamingTemp=حصل خطأ أثناء محاولة تغيير اسم ملف في مجلد التثبيت:
+ErrorRegisterServer=DLL/OCX: %1 تعذر تسجيل الـ
+ErrorRegSvr32Failed=فشل RegSvr32 مع رمز الخروج %1
+ErrorRegisterTypeLib=%1: تعذر تسجيل نوع المكتبة
+
+; *** Post-installation errors
+ErrorOpeningReadme=README ظهور خطأ أثناء محاولة فتح ملف
+ErrorRestartingComputer=لم يتمكن برنامج التثبيت من إعادة تشغيل جهاز الكمبيوتر الرجاء القيام بهذا يدويا
+
+; *** Uninstaller messages
+UninstallNotFound=الملف "%1" ليس موجودا ، لا يمكن إعادة التشغيل
+UninstallOpenError= تعذر إلغاء التثبيت "%1" قد لا يُفتح الملف
+UninstallUnsupportedVer=بصيغة مجهولة لهذه النسخة من لاغي التثبيت . تعذر إلغاء التثبيت "%1" ملف سجل إلغاء التثبيت
+UninstallUnknownEntry=ظهور مدخلة مجهولة ما في سجل إلغاء تثبيت (%1)
+ConfirmUninstall=وكل مكوناته ؟ %1 هل تريد إلغاء تثبيت
+UninstallOnlyOnWin64=هذا التثبيت يمكن فقط أن يتم إلغائه على ويندوز 64-بت
+OnlyAdminCanUninstall=لا يمكن إلغاء التثبيت سوى من قبل مستخدم مدير للشبكة
+UninstallStatusLabel=من جهازك %1 الرجاء الانتظار ليتم إلغاء تثبيت
+UninstalledAll=من جهازك بنجاح %1 تم إلغاء تثبيت
+UninstalledMost= تم إلغاء تثبيت برنامج %1%n%nبعض المكونات لا يمكن إزالتها ، يمكن إزالتها يدويا
+UninstalledAndNeedsRestart=%1 يجب إعادة تشغيل الكمبيوتر لإتمام عملية إلغاء تثبيت%n%nهل تريد إعادة التشغيل الآن
+UninstallDataCorrupted= الملف "%1" معطوب ولا يمكن إلغاء التثبيت
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=هل تريد إلغاء الملفات المشتركة؟
+ConfirmDeleteSharedFile2=يقول نظام التشغيل إن الملفات المشتركة التالية لم تعد مستخدمة من قبل أي برنامج . هل تريد إلغائها؟%n%nلو كان هناك أي برنامج يستخدم هذه الملفات ثم تم إلغائها فإن هذا البرنامج لن يعمل جيدا ، اختيار لا لإبقاء هذه الملفات لن يسبب أي مشاكل
+SharedFileNameLabel=أسماء الملفات:
+SharedFileLocationLabel=المكان:
+WizardUninstalling=حالة إلغاء التثبيت
+StatusUninstalling=إلغاء تثبيت %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=تثبيت %1
+ShutdownBlockReasonUninstallingApp=إلغاء تثبيت %1
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 النسخة %2
+AdditionalIcons=رموز إضافية :
+CreateDesktopIcon=إنشاء أيقونة على سطح المكتب :
+CreateQuickLaunchIcon=إنشاء أيقونة إطلاق سريع بجوار ابدأ
+ProgramOnTheWeb=%1 على الإنترنت
+UninstallProgram=%1 إلغاء تثبيت
+LaunchProgram=%1 تشغيل
+AssocFileExtension=إشراك %1 مع إمتداد ملف %2
+AssocingFileExtension=يتم إشراك %1 مع إمتداد ملف %2 ...
+AutoStartProgramGroupDescription=بدء التشغيل:
+AutoStartProgram=تشغيل %1 تلقائيا
+AddonHostProgramNotFound=تعذر العثور على %1 في المجلد الذي قمت بتحديده%n%nهل تريد المتابعة على أي حال ؟
diff --git a/dist/windows/languages/Basque.isl b/dist/windows/languages/Basque.isl
new file mode 100644
index 00000000..2cb2e940
--- /dev/null
+++ b/dist/windows/languages/Basque.isl
@@ -0,0 +1,318 @@
+; *** Inno Setup version 5.1.11+ Basque messages ***
+;
+; Translated by 3ARRANO (3arrano@3arrano.com)
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/is3rdparty.php
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Euskara
+LanguageID=$042d
+LanguageCodePage=0
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Instalaketa
+SetupWindowTitle=Instalaketa - %1
+UninstallAppTitle=Desinstalaketa
+UninstallAppFullTitle=Desinstalaketa - %1
+
+; *** Misc. common
+InformationTitle=Argibideak
+ConfirmTitle=Berretsi
+ErrorTitle=Akatsa
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Programa honek %1 instalatuko du. Jarraitu nahi duzu?
+LdrCannotCreateTemp=Ezin izan da aldi baterako fitxategirik sortu. Instalaketa ezeztatu da
+LdrCannotExecTemp=Aldi baterako karpetako fitxategia ezin izan da abiarazi. Instalaketa ezeztatu da
+; *** Startup error messages
+LastErrorMessage=%1.%n%n%2 akatsa: %3
+SetupFileMissing=Ez da %1 fitxategia aurkitu instalaketaren direktorioan. Zuzendu arazoa edo eskuratu programaren kopia berri bat.
+SetupFileCorrupt=Instalaketa fitxategiak hondaturik daude. Eskuratu programaren kopia berri bat.
+SetupFileCorruptOrWrongVer=Instalaketa fitxategiak hondaturik daude, edo ez dira instalatzailearen bertsio honekin bateragarriak. Zuzendu arazoa edo eskuratu programaren kopia berri bat.
+NotOnThisPlatform=Programa hau ez dabil %1 sistemapean.
+OnlyOnThisPlatform=Programa hau %1 sistemapean soilik dabil.
+OnlyOnTheseArchitectures=Programa hau ondorengo prozesagailuen arkitekturetarako diseinatu diren Windowsen bertsioetan soilik instala daiteke:%n%n%1
+MissingWOW64APIs=Darabilzun Windowsen bertsioak ez dakar 64-biteko instalaketa bat burutzeko instalatzaileak behar duen funtzionalitaterik. Arazo hau konpontzeko, instalatu Service Pack %1 zerbitzu paketea.
+WinVersionTooLowError=Programa honek %1 %2 edo bertsio berriagoa behar du.
+WinVersionTooHighError=Programa hau ezin da instalatu %1 %2 edo bertsio berriagoan.
+AdminPrivilegesRequired=Programa hau instalatzeko administratzaile gisa hasi behar duzu saioa.
+PowerUserPrivilegesRequired=Programa hau instalatzeko administratzaile gisa edo Agintedun Erabiltzaileen taldeko kide gisa hasi behar duzu saioa.
+SetupAppRunningError=Instalatzaileak une honetan %1 irekita dagoela nabaritu du.%n%nItxi bere leiho guztiak, ondoren klikatu Ados jarraitzeko, edo Utzi irteteko.
+UninstallAppRunningError=Instalatzaileak une honetan %1 irekita dagoela nabaritu du.%n%nItxi bere leiho guztiak, ondoren klikatu Ados jarraitzeko, edo Utzi irteteko.
+
+; *** Misc. errors
+ErrorCreatingDir=Instalatzaileak ezin izan du "%1" direktorioa sortu
+ErrorTooManyFilesInDir=Ezinezkoa izan da "%1" direktorioan fitxategi bat sortzea, fitxategi gehiegi dituelako barnean
+
+; *** Setup common messages
+ExitSetupTitle=Instalatzailetik Irten
+ExitSetupMessage=Instalaketa ez da burutu. Orain irtenez gero, programa ez da instalatuko.%n%nInstalaketa burutzeko edonoiz ireki dezakezu berriro instalatzailea.%n%nInstalatzailetik Irten?
+AboutSetupMenuItem=&Instalatzaileari Buruz...
+AboutSetupTitle=Instalatzaileari Buruz
+AboutSetupMessage=%1 %2%n%3%n%n%1en webgunea :%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< A&urrekoa
+ButtonNext=&Hurrengoa >
+ButtonInstall=&Instalatu
+ButtonOK=Ados
+ButtonCancel=Utzi
+ButtonYes=&Bai
+ButtonYesToAll=Bai &Guztiari
+ButtonNo=&Ez
+ButtonNoToAll=E&z Guztiari
+ButtonFinish=A&maitu
+ButtonBrowse=&Arakatu...
+ButtonWizardBrowse=A&rakatu...
+ButtonNewFolder=&Karpeta Berria Sortu
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Hautatu Instalatzailearen Hizkuntza
+SelectLanguageLabel=Hautatu instalaketarako erabili nahi duzun hizkuntza:
+
+; *** Common wizard text
+ClickNext=Klikatu Hurrengoa jarraitzeko, edo Utzi instalatzailetik irteteko.
+BeveledLabel=
+BrowseDialogTitle=Karpetak Arakatu
+BrowseDialogLabel=Hautatu karpeta bat azpiko zerrendan, ondoren klikatu Ados.
+NewFolderName=Karpeta Berria
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Ongietorri [name] Instalatzeko Morroira
+WelcomeLabel2=Programa honek [name/ver] zure konputagailuan instalatuko du.%n%nGomendagarria da jarraitu aurretik gainontzeko aplikazioak ixtea.
+
+; *** "Password" wizard page
+WizardPassword=Pasahitza
+PasswordLabel1=Instalaketa hau pasahitzez babesturik dago.
+PasswordLabel3=Sartu pasahitza, ondoren klikatu Hurrengoa jarraitzeko. Pasahitzetan maiuskulak bereizten dira.
+PasswordEditLabel=&Pasahitza:
+IncorrectPassword=Sartu duzun pasahitza ez da zuzena. Saiatu berriro.
+
+; *** "License Agreement" wizard page
+WizardLicense=Lizentziaren Onarpena
+LicenseLabel=Irakurri ondorengo argibide garrantzitsu hauek jarraitu aurretik.
+LicenseLabel3=Irakurri ondorengo Lizentziaren Onarpena. Lizentzia honen baldintzak onartu behar dituzu instalaketaren jarraitu aurretik.
+LicenseAccepted=Lizentziaren baldintzak &onartzen ditut
+LicenseNotAccepted=&Ez ditut lizentziaren baldintzak onartzen
+
+; *** "Information" wizard pages
+WizardInfoBefore=Argibideak
+InfoBeforeLabel=Irakurri ondorengo argibide garrantzitsu hauek jarraitu aurretik.
+InfoBeforeClickLabel=Instalaketarekin jarraitzeko gertu egotean, klikatu Hurrengoa.
+WizardInfoAfter=Argibideak
+InfoAfterLabel=Irakurri ondorengo argibide garrantzitsu hauek jarraitu aurretik.
+InfoAfterClickLabel=Instalaketarekin jarraitzeko gertu egotean, klikatu Hurrengoa.
+
+; *** "User Information" wizard page
+WizardUserInfo=Erabiltzailearen Datuak
+UserInfoDesc=Sartu zure datuak.
+UserInfoName=&Erabiltzaile Izena:
+UserInfoOrg=E&rakundea:
+UserInfoSerial=&Serie Zenbakia:
+UserInfoNameRequired=Izen bat sartu behar duzu.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Hautatu Helburu Direktorioa
+SelectDirDesc=Non instalatu beharko litzateke [name]?
+SelectDirLabel3=Instalatzaileak [name] ondorengo karpetan instalatuko du.
+SelectDirBrowseLabel=Jarraitzeko, klikatu Hurrengoa. Beste karpeta bat hautatu nahi baduzu, klikatu Arakatu.
+DiskSpaceMBLabel=Gutxienez [mb] MBko toki hutsa behar da diskan.
+ToUNCPathname=Instalatzaileak ezin du UNC bideizen baten instalatu. Sarean instalatzen saiatzen ari bazara, sareko diska bat mapeatu beharko duzu.
+InvalidPath=Bideizen oso bat sartu behar duzu, unitate hizki eta guzti; adibidez:%n%nC:\APP%n%nedo UNC bideizen bat honela:%n%n\\zerbitzaria\elkarbanatua
+InvalidDrive=Hautatu duzun unitatea edo UNC elkarbanatua ez dago edo ezin da bertara sartu. Hautatu beste bat.
+DiskSpaceWarningTitle=Ez Dago Behar Beste Toki Diskan
+DiskSpaceWarning=Instalatzaileak gutxienez %1 KBko toki hutsa behar du instalatzeko, baina hautaturiko unitateak %2 KB soilik ditu hutsik.%n%nHala ere jarraitu nahi duzu?
+DirNameTooLong=Karpetaren izena edo bideizena luzeegia da.
+InvalidDirName=Karpetaren izena ez da zuzena.
+BadDirName32=Karpetaren izenak ezin dezake ondorengo karaktereetarik bat ere eduki:%n%n%1
+DirExistsTitle=Karpeta Badago
+DirExists=Karpeta hau:%n%n%1%n%nlehendik ere badago. Hala ere bertan instalatu nahi duzu?
+DirDoesntExistTitle=Karpeta Ez Dago
+DirDoesntExist=Karpeta hau:%n%n%1%n%nez dago. Sortu nahi duzu?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Hautatu Osagaiak
+SelectComponentsDesc=Zein osagai instalatu behar dira?
+SelectComponentsLabel2=Hautatu instalatu nahi dituzun osagaiak; garbitu instalatu nahi ez dituzunak. Klikatu Hurrengoa jarraitzeko gertu egotean.
+FullInstallation=Guztia instalatu
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Instalaketa Trinkoa
+CustomInstallation=Instalaketa Pertsonalizatua
+NoUninstallWarningTitle=Osagai Hauek Badituzu
+NoUninstallWarning=Instalatzaileak nabaritu du ondorengo osagaiok jadanik konputagailuan instalaturik dituzula:%n%n%1%n%nOsagai hauek ez aukeratzeak ez ditu desinstalatuko.%n%nHala ere jarraitu nahi duzu?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Uneko aukeraketak gutxienez [mb] MBko toki hutsa behar du diskan.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Hautatu Ataza Gehigarriak
+SelectTasksDesc=Zein ataza gehigarri burutu behar dira?
+SelectTasksLabel2=Hautatu [name] instalatu bitartean instalatzaileak burutu beharreko ataza gehigarriak, ondoren klikatu Hurrengoa.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Hautatu Hasi Menuko Karpeta
+SelectStartMenuFolderDesc=Non sortu behar ditu instalatzaileak programaren lasterbideak?
+SelectStartMenuFolderLabel3=Instalatzaileak Hasi Menuko ondorengo karpetan sortuko ditu programaren lasterbideak.
+SelectStartMenuFolderBrowseLabel=Jarraitzeko, klikatu Hurrengoa. Beste karpeta bat hautatu nahi baduzu, klikatu Arakatu.
+MustEnterGroupName=Karpeta izen bat sartu behar duzu.
+GroupNameTooLong=Karpetaren izena edo bideizena luzeegia da.
+InvalidGroupName=Karpetaren izena ez da zuzena.
+BadGroupName=Karpetaren izenak ezin dezake ondorengo karaktereetarik bat ere eduki:%n%n%1
+NoProgramGroupCheck2=&Ez sortu Hasi Menuko karpetarik
+
+; *** "Ready to Install" wizard page
+WizardReady=Instalatzeko Gertu
+ReadyLabel1=Instalatzailea [name] zure konputagailuan instalatzen hasteko gertu dago.
+ReadyLabel2a=Klikatu Instalatu instalaketarekin jarraitzeko, edo klikatu Aurrekoa ezarpenen bat berrikusi edo aldatu nahi baduzu.
+ReadyLabel2b=Klikatu Instalatu instalaketarekin jarraitzeko.
+ReadyMemoUserInfo=Erabiltzailearen datuak:
+ReadyMemoDir=Helburu direktorioa:
+ReadyMemoType=Instalaketa mota:
+ReadyMemoComponents=Hautaturiko osagaiak:
+ReadyMemoGroup=Hasi Menuko karpeta:
+ReadyMemoTasks=Ataza gehigarriak:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Instalatzeko Gertatzen
+PreparingDesc=Instalatzailea [name] zure konputagailuan instalatzeko gertatzen ari da.
+PreviousInstallNotCompleted=Aurreko programa baten instalaketa/desinstalaketa ez da burutu. Instalaketa hura burutzeko konputagailua berrabiarazi beharko duzu.%n%nKonputagailua berrabiarazi ondoren, ireki instalatzailea berriro [name] instalatzen bukatzeko.
+CannotContinue=Ezinezkoa da instalaketarekin jarraitzea. Klikatu Utzi irteteko.
+
+; *** "Installing" wizard page
+WizardInstalling=Instalatzen
+InstallingLabel=Itxaron instalatzaileak [name] zure konputagailuan instalatu artean.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=[name] Instalatzeko Morroia Burutzen
+FinishedLabelNoIcons=Instalatzaileak [name] zure konputagailuan instalatu du.
+FinishedLabel=Instalatzaileak [name] zure konputagailuan instalatu du. Aplikazioa abiarazteko instalaturiko ikonoetan klikatu.
+ClickFinish=Klikatu Amaitu instalatzailetik irteteko.
+FinishedRestartLabel=[name] programaren instalaketa burutzeko, instalatzaileak konputagailua berrabiarazi beharra du. Orain berrabiarazi nahi duzu?
+FinishedRestartMessage=[name] programaren instalaketa burutzeko, instalatzaileak konputagailua berrabiarazi beharra du.%n%nOrain berrabiarazi nahi duzu?
+ShowReadmeCheck=Bai, IRAKURRI fitxategia ikusi nahi dut
+YesRadio=&Bai, berrabiarazi orain
+NoRadio=&Ez, beranduago berrabiaraziko dut
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Abiarazi %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Ikusi %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Instalatzaileak Hurrengo Diska Behar Du
+SelectDiskLabel2=Sartu %1. diska eta klikatu Ados.%n%nDiska honetako fitxategiak ez badaude azpian ageri den karpetan, sartu bideizen egokia edo klikatu Arakatu.
+PathLabel=&Bideizena:
+FileNotInDir2="%1" fitxategia ezin izan da "%2" karpetan aurkitu. Sartu diska zuzena edo hautatu beste karpeta bat.
+SelectDirectoryLabel=Zehaztu hurrengo diskaren kokapena.
+
+; *** Installation phase messages
+SetupAborted=Instalaketa ez da burutu.%n%nKonpondu arazoa eta abiarazi instalatzailea berriro.
+EntryAbortRetryIgnore=Klikatu Saiatu Berriz berriro saiatzeko, Ezikusi hala ere jarraitzeko, edo Utzi instalaketa uzteko.
+
+; *** Installation status messages
+StatusCreateDirs=Direktorioak sortzen...
+StatusExtractFiles=Fitxategiak ateratzen...
+StatusCreateIcons=Lasterbideak sortzen...
+StatusCreateIniEntries=INI sarrerak sortzen...
+StatusCreateRegistryEntries=Erregistroko sarrerak sortzen...
+StatusRegisterFiles=Fitxategiak erregistratzen...
+StatusSavingUninstall=Desinstalaketarako datuak gordetzen...
+StatusRunProgram=Instalaketa burutzen...
+StatusRollback=Aldaketak desegiten...
+
+; *** Misc. errors
+ErrorInternal2=Barneko akatsa: %1
+ErrorFunctionFailedNoCode=Hutsegitea: %1
+ErrorFunctionFailed=Hutsegitea: %1; Kodea: %2
+ErrorFunctionFailedWithMessage=Hutsegitea: %1; Kodea: %2.%n%3
+ErrorExecutingProgram=Ezin izan da fitxategi hau abiarazi:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Akatsa erregistroko gakoa irekitzean:%n%1\%2
+ErrorRegCreateKey=Akatsa erregistroko gakoa sortzean:%n%1\%2
+ErrorRegWriteKey=Akatsa erregistroko gakoa idaztean:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Akatsa "%1" fitxategian INI sarrera sortzean.
+
+; *** File copying errors
+FileAbortRetryIgnore=Klikatu Saiatu Berriz berriro saiatzeko, Ezikusi fitxategi hau saltatzeko (ez da gomendagarria), edo Utzi instalaketa uzteko.
+FileAbortRetryIgnore2=Klikatu Saiatu Berriz berriro saiatzeko, Ezikusi hala ere jarraitzeko (ez da gomendagarria), edo Utzi instalaketa uzteko.
+SourceIsCorrupted=Iturburu fitxategia hondaturik dago
+SourceDoesntExist=Ez dago "%1" izeneko iturburu fitxategirik
+ExistingFileReadOnly=Lehendik zegoen fitxategia irakurtzeko-soilik gisa markaturik dago.%n%nKlikatu Saiatu Berriz irakurtzeko-soilik atributua ezabatu eta berriro saiatzeko, Ezikusi fitxategi hau saltatzeko, edo Utzi instalaketa uzteko.
+ErrorReadingExistingDest=Akats bat izan da lehendik zegoen fitxategi hau irakurtzean:
+FileExists=Fitxategia lehendik ere bazegoen.%n%nInstalatzaileak gainidatzi dezan nahi duzu?
+ExistingFileNewer=Lehendik zegoen fitxategia Instalatzaileak instalatu nahi duena baino berriagoa da. Lehendik zegoena mantentzea gomendatzen da.%n%nLehengoa mantendu nahi duzu?
+ErrorChangingAttr=Akats bat izan da lehendik zegoen fitxategi honen atributuak aldatzean:
+ErrorCreatingTemp=Akats bat izan da ondorengo helburu direktorioan fitxategi bat sortzean:
+ErrorReadingSource=Akats bat izan da iturburu fitxategia irakurtzean:
+ErrorCopying=Akats bat izan da fitxategi hau kopiatzean:
+ErrorReplacingExistingFile=Akats bat izan da lehendik zegoen fitxategi hau ordezkatzean:
+ErrorRestartReplace=RestartReplacek huts egin du:
+ErrorRenamingTemp=Akats bat izan da ondorengo helburu direktorioan fitxategi bat berrizendatzean:
+ErrorRegisterServer=Ezinezkoa izan da DLL/OCX hau erregistratzea: %1
+ErrorRegSvr32Failed=RegSvr32k huts egin du %1 itxiera kodea emanez
+ErrorRegisterTypeLib=Ezinezkoa izan da moten liburutegi hau erregistratzea: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Akats bat izan da IRAKURRI fitxategia irekitzean.
+ErrorRestartingComputer=Instalatzaileak ezin izan du konputagailua berrabiarazi. Egin ezazu eskuz.
+
+; *** Uninstaller messages
+UninstallNotFound=Ez da "%1" fitxategia aurkitu. Ezin izan da desinstalatu.
+UninstallOpenError=Ezin izan da "%1" ireki. Ezin izan da desinstalatu
+UninstallUnsupportedVer=Desinstalaketarako "%1" log fitxategia instalatzailearen bertsio honek ezagutzen ez duen formatu batean dago. Ezin izan da desinstalatu
+UninstallUnknownEntry=Sarrera ezezagun bat (%1) aurkitu da desinstalaketarako logean
+ConfirmUninstall=Ziur %1 eta bere osagai guztiak ezabatu nahi dituzula?
+UninstallOnlyOnWin64=Instalaketa hau 64-biteko Windowsean soilik desinstala daiteke.
+OnlyAdminCanUninstall=Instalaketa hau administratzaile eskumenak dituen erabiltzaile batek soilik desinstala dezake.
+UninstallStatusLabel=Itxaron %1 zure konputagailutik ezabatzen den artean.
+UninstalledAll=%1 arrakastatsuki ezabatu da zure konputagailutik.
+UninstalledMost=%1 desinstalatu da.%n%nZenbait fitxategi ezin izan dira ezabatu. Fitxategi hauek eskuz ezaba daitezke.
+UninstalledAndNeedsRestart=%1 guztiz desinstalatzeko, zure konputagailua berrabiarazi beharra dago.%n%nOrain berrabiarazi nahi duzu?
+UninstallDataCorrupted="%1" fitxategia hondaturik dago. Ezin izan da desinstalatu
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Fitxategi Elkarbanatua Ezabatu?
+ConfirmDeleteSharedFile2=Sistemaren arabera ondorengo fitxategi elkarbanatua ez du inongo programak erabiliko hemendik aurrera. Desinstalatzaileak fitxategi hau ezabatu nahi duzu?%n%nProgramaren bat fitxategi hau erabiltzen badabil oraindik eta ezabatzen baduzu, programa hori ez da egoki ibiliko. Ziur ez bazaude, hautatu Ez. Fitxategia sisteman uzteak ez dizu inongo kalterik eragingo.
+SharedFileNameLabel=Fitxategi izena:
+SharedFileLocationLabel=Kokapena:
+WizardUninstalling=Desinstalaketaren Egoera
+StatusUninstalling=Orain desinstalatzen: %1...
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 %2 bertsioa
+AdditionalIcons=Ikono gehigarriak:
+CreateDesktopIcon=&Mahaigainean lasterbidea sortu
+CreateQuickLaunchIcon=&Ataza Barran lasterbidea sortu
+ProgramOnTheWeb=%1 sarean
+UninstallProgram=%1 desinstalatu
+LaunchProgram=%1 abiarazi
+AssocFileExtension=&Lotu %1 programa %2 fitxategi luzapenarekin
+AssocingFileExtension=%1 programa %2 fitxategi luzapenarekin lotzen...
diff --git a/dist/windows/languages/BrazilianPortuguese.isl b/dist/windows/languages/BrazilianPortuguese.isl
new file mode 100644
index 00000000..89a125f4
--- /dev/null
+++ b/dist/windows/languages/BrazilianPortuguese.isl
@@ -0,0 +1,354 @@
+; ***************************************************************
+; *** ***
+; *** Inno Setup version 5.5.3+ Portuguese (Brazil) messages ***
+; *** ***
+; *** Original Author: ***
+; *** ***
+; *** Paulo Andre Rosa (parosa@gmail.com) ***
+; *** ***
+; *** Maintainer: ***
+; *** ***
+; *** Eduardo Mauro (emauro@acabit.com.br) ***
+; *** ***
+; *** Contributors: ***
+; *** ***
+; *** Felipe (felipefpl@ig.com.br) ***
+; *** Jeferson Oliveira (jefersonfoliveira@gmail.com) ***
+; *** ***
+; ***************************************************************
+
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/is3rdparty.php
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Portugu<00EA>s (Brasil)
+LanguageID=$0416
+LanguageCodePage=1252
+
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Programa de Instalao
+SetupWindowTitle=%1 - Programa de Instalao
+UninstallAppTitle=Desinstalar
+UninstallAppFullTitle=Desinstalar %1
+
+; *** Misc. common
+InformationTitle=Informao
+ConfirmTitle=Confirmao
+ErrorTitle=Erro
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Este programa instalar %1. Voc quer continuar?
+LdrCannotCreateTemp=No foi possvel criar um arquivo temporrio. Instalao cancelada
+LdrCannotExecTemp=No foi possvel executar um arquivo na pasta de arquivos temporrios. Instalao cancelada
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nErro %2: %3
+SetupFileMissing=O arquivo %1 no se encontra no diretrio de instalao. Por favor, corrija o problema ou obtenha uma nova cpia do programa.
+SetupFileCorrupt=Os arquivos de instalao esto corrompidos. Por favor, obtenha uma nova cpia do programa.
+SetupFileCorruptOrWrongVer=Os arquivos de instalao esto corrompidos ou so incompatveis com esta verso do Instalador. Por favor, corrija o problema ou obtenha uma nova cpia do programa.
+InvalidParameter=Um parmetro invlido foi passado na linha de comando:%n%n%1
+SetupAlreadyRunning=O programa de instalao j est sendo executado.
+WindowsVersionNotSupported=Este programa no suporta a verso do Windows instalada em seu computador.
+WindowsServicePackRequired=Este programa necessita %1 Service Pack %2 ou posterior.
+NotOnThisPlatform=Este programa no executar no %1.
+OnlyOnThisPlatform=Este programa deve ser executado no %1.
+OnlyOnTheseArchitectures=Este programa s pode ser instalado em verses do Windows projetadas para as seguintes arquiteturas de processador:%n%n%1
+MissingWOW64APIs=A verso do Windows que voc est executando no inclui a funcionalidade requerida pelo Programa de Instalao para realizar uma instalao de 64 bits. Para corrigir este problema, por favor instale o Service Pack %1.
+WinVersionTooLowError=Este programa requer %1 verso %2 ou posterior.
+WinVersionTooHighError=Este programa no pode ser instalado em %1 verso %2 ou posterior.
+AdminPrivilegesRequired=Voc deve estar logado como um administrador para instalar este programa.
+PowerUserPrivilegesRequired=Voc deve estar logado como um administrador ou como membro do grupo Usurios Avanados para instalar este programa.
+SetupAppRunningError=O Programa de Instalao detectou que %1 est sendo executado.%n%nPor favor, feche todas as instncias do programa agora e clique em OK para continuar, ou em Cancelar para sair.
+UninstallAppRunningError=O Desinstalador detectou que %1 est em execuo atualmente.%n%nPor favor, feche todas as instncias dele agora, ento clique em OK para continuar, ou em Cancelar para sair.
+
+; *** Misc. errors
+ErrorCreatingDir=O Programa de Instalao foi incapaz de criar o diretrio "%1"
+ErrorTooManyFilesInDir=Incapaz de criar um arquivo no diretrio "%1" porque ele contm arquivos demais
+
+; *** Setup common messages
+ExitSetupTitle=Sair do Programa de Instalao
+ExitSetupMessage=A Instalao no foi concluda. Se voc sair agora, o programa no ser instalado.%n%nVoc pode executar o Programa de instalao novamente em outra hora, para concluir a instalao.%n%nSair do Programa de Instalao?
+AboutSetupMenuItem=&Sobre o Programa de Instalao...
+AboutSetupTitle=Sobre o Programa de Instalao
+AboutSetupMessage=%1 verso %2%n%3%n%n%1 pgina na internet:%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< &Voltar
+ButtonNext=&Avanar >
+ButtonInstall=&Instalar
+ButtonOK=OK
+ButtonCancel=Cancelar
+ButtonYes=&Sim
+ButtonYesToAll=Sim para &Todos
+ButtonNo=&No
+ButtonNoToAll=N&o para Todos
+ButtonFinish=&Concluir
+ButtonBrowse=&Procurar...
+ButtonWizardBrowse=P&rocurar...
+ButtonNewFolder=&Criar Nova Pasta
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Selecionar Idioma do Programa de Instalao
+SelectLanguageLabel=Selecione o idioma a ser utilizado durante a instalao:
+
+; *** Common wizard text
+ClickNext=Clique em Avanar para continuar, ou em Cancelar para sair do Programa de Instalao.
+BeveledLabel=
+BrowseDialogTitle=Procurar Pasta
+BrowseDialogLabel=Selecione uma pasta na lista abaixo e clique em OK.
+NewFolderName=Nova Pasta
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Bem-vindo ao Assistente de Instalao de [name]
+WelcomeLabel2=Este Assistente instalar [name/ver] no seu computador.%n%n recomendado que voc feche todos os outros aplicativos antes de continuar.
+
+; *** "Password" wizard page
+WizardPassword=Senha
+PasswordLabel1=Esta instalao protegida por senha.
+PasswordLabel3=Por favor, fornea a senha e clique em Avanar para continuar. As senhas diferenciam maisculas de minsculas.
+PasswordEditLabel=&Senha:
+IncorrectPassword=A senha que voc informou no correta. Por favor, tente novamente.
+
+; *** "License Agreement" wizard page
+WizardLicense=Contrato de Licena de Uso
+LicenseLabel=Por favor, leia as seguintes informaes importantes antes de continuar.
+LicenseLabel3=Por favor, leia o seguinte Contrato de Licena de Uso. Voc deve aceitar os termos do Contrato antes de prosseguir com a instalao.
+LicenseAccepted=Eu aceito os termos do &Contrato
+LicenseNotAccepted=Eu &no aceito os termos do Contrato
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informao
+InfoBeforeLabel=Por favor, leia as seguintes informaes importantes antes de continuar.
+InfoBeforeClickLabel=Quando voc estiver pronto para continuar, clique em Avanar.
+WizardInfoAfter=Informao
+InfoAfterLabel=Por favor, leia as seguintes informaes importantes antes de continuar.
+InfoAfterClickLabel=Quando voc estiver pronto para continuar, clique Avanar.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informaes do Usurio
+UserInfoDesc=Por favor, insira suas informaes.
+UserInfoName=&Nome do Usurio:
+UserInfoOrg=&Empresa:
+UserInfoSerial=Nmero de &Srie:
+UserInfoNameRequired=Voc deve informar um nome.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Selecione o Local de Destino
+SelectDirDesc=Onde [name] deve ser instalado?
+SelectDirLabel3=O Programa de Instalao instalar [name] na seguinte pasta.
+SelectDirBrowseLabel=Para continuar, clique em Avanar. Se voc deseja escolher uma pasta diferente, clique em Procurar.
+DiskSpaceMBLabel=So necessrios pelo menos [mb] MB de espao livre em disco.
+CannotInstallToNetworkDrive=O programa de instalao no pode fazer a instalao em uma unidade de rede.
+CannotInstallToUNCPath=O programa de instalao no fazer a instalao num caminhho de rede UNC.
+InvalidPath=Voc deve informar um caminho completo, incluindo a letra da unidade de disco; por exemplo:%n%nC:\APP%n%e no um caminho de rede UNC na forma:%n%n\\servidor\compartilhamento
+InvalidDrive=A unidade de disco ou compartilhamento de rede UNC que voc selecionou no existe ou no est acessvel. Por favor, selecione outro local.
+DiskSpaceWarningTitle=Espao em Disco Insuficiente
+DiskSpaceWarning=O Programa de Instalao requer pelo menos %1 KB de espao livre, mas a unidade de disco selecionada tem apenas %2 KB disponveis.%n%nVoc quer continuar assim mesmo?
+DirNameTooLong=O nome da pasta ou caminho muito longo.
+InvalidDirName=O nome da pasta no vlido.
+BadDirName32=Nomes de pastas no podem incluir quaisquer dos seguintes caracteres:%n%n%1
+DirExistsTitle=A Pasta Existe
+DirExists=A pasta:%n%n%1%n%nj existe. Voc quer instalar nesta pasta assim mesmo?
+DirDoesntExistTitle=A Pasta No Existe
+DirDoesntExist=A pasta:%n%n%1%n%nno existe. Voc gostaria que a pasta fosse criada?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Selecionar Componentes
+SelectComponentsDesc=Quais componentes devem ser instalados?
+SelectComponentsLabel2=Selecione os componentes que voc quer instalar; desmarque os componentes que voc no quer instalar. Clique em Avanar quando estiver pronto para continuar.
+FullInstallation=Instalao completa
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Instalao compacta
+CustomInstallation=Instalao personalizada
+NoUninstallWarningTitle=Componente Existe
+NoUninstallWarning=O Programa de Instalao detectou que os seguintes componentes j esto instalados em seu computador:%n%n%1%n%nDesmarcar estes componentes, no ir desinstalar eles.%n%nVoc quer continuar assim mesmo?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=A seleo atual requer pelo menos [mb] MB de espao em disco.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Selecionar Tarefas Adicionais
+SelectTasksDesc=Quais tarefas adicionais devem ser executadas?
+SelectTasksLabel2=Selecione as tarefas adicionais que voc deseja que o Programa de Instalao execute enquanto instala [name] e clique em Avanar.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Selecionar a Pasta do Menu Iniciar
+SelectStartMenuFolderDesc=Onde o Programa de Instalao deve colocar os atalhos do programa?
+SelectStartMenuFolderLabel3=O Programa de Instalao ir criar os atalhos do programa na seguinte pasta do Menu Iniciar.
+SelectStartMenuFolderBrowseLabel=Clique em Avanar para continuar. Se voc quiser escolher outra pasta, clique em Procurar.
+MustEnterGroupName=Voc deve informar um nome de pasta.
+GroupNameTooLong=O nome da pasta ou caminho muito longo.
+InvalidGroupName=O nome da pasta no vlido.
+BadGroupName=O nome da pasta no pode incluir quaisquer dos seguintes caracteres:%n%n%1
+NoProgramGroupCheck2=&No criar uma pasta no Menu Iniciar
+
+; *** "Ready to Install" wizard page
+WizardReady=Pronto para Instalar
+ReadyLabel1=O Programa de Instalao est pronto para comear a instalao de [name] no seu computador.
+ReadyLabel2a=Clique Instalar para iniciar a instalao, ou clique em Voltar se voc quer revisar ou alterar alguma configurao.
+ReadyLabel2b=Clique em Instalar para iniciar a instalao.
+ReadyMemoUserInfo=Dados do Usurio:
+ReadyMemoDir=Local de destino:
+ReadyMemoType=Tipo de Instalao:
+ReadyMemoComponents=Componentes selecionados:
+ReadyMemoGroup=Pasta do Menu Iniciar:
+ReadyMemoTasks=Tarefas adicionais:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparando para Instalar
+PreparingDesc=O Programa de Instalao est se preparando para instalar [name] no seu computador.
+PreviousInstallNotCompleted=A instalao/remoo de um programa anterior no foi concluda. Voc precisar reiniciar seu computador para finaliz-la.%n%nAps reiniciar o computador, execute novamente o Programa de Instalao para concluir a instalao de [name].
+CannotContinue=O Programa de Instalao no pode continuar. Por favor, clique em Cancelar para sair.
+ApplicationsFound=As seguintes aplicaes estap usando arquivos que necessitam ser atualizados pelo programa de instalao. recomendvel que voc permita que o programa da instalao encerre automaticamente estas aplicaes.
+ApplicationsFound2=As seguintes aplicaes esto usandos arquivos que necessitam ser atualizados pelo programa de instalao. recomendvel que voc permita que o programa da instalao encerre automaticamente estas aplicaes. Aps a instalao estar completa, o programa de instalao tentar iniciar novamente as aplicaes.
+CloseApplications=&Automaticamente encerre as aplicaes
+DontCloseApplications=&No encerre as aplicaes
+ErrorCloseApplications=O instalador foi incapaz de fechar automaticamente todos os aplicativos. recomendado que voc feche todos os aplicativos usando os arquivos que precisam ser atualizados pelo Instalador antes de continuar.
+
+; *** "Installing" wizard page
+WizardInstalling=Instalando
+InstallingLabel=Por favor, aguarde enquanto o Programa de Instalao instala [name] no seu computador.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Finalizando o Assistente de Instalao de [name]
+FinishedLabelNoIcons=O Programa de Instalao finalizou a instalao de [name] no seu computador.
+FinishedLabel=O Programa de Instalao terminou de instalar [name] no seu computador. O programa pode ser iniciado clicando nos cones instalados.
+ClickFinish=Clique em Concluir para sair do Programa de Instalao.
+FinishedRestartLabel=Para concluir a instalao de [name], o Programa de Instalao deve reiniciar o computador. Voc gostaria de reiniciar agora?
+FinishedRestartMessage=Para concluir a instalao de [name], o Programa de Instalao deve reiniciar o computador.%n%nVoc gostaria de reiniciar agora?
+ShowReadmeCheck=Sim, eu quero visualizar o arquivo LEIA-ME
+YesRadio=&Sim, reiniciar o computador agora
+NoRadio=&No, eu vou reiniciar o computador depois
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Executar %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Visualizar %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=O Programa de Instalao Precisa do Prximo Disco
+SelectDiskLabel2=Por favor, insira o Disco %1 e clique em OK.%n%nSe os arquivos deste disco esto numa pasta diferente da indicada abaixo, informe o caminho correto ou clique em Procurar.
+PathLabel=&Caminho:
+FileNotInDir2=O arquivo "%1" no pde ser encontrado em "%2". Por favor, insira o disco correto ou escolha outra pasta.
+SelectDirectoryLabel=Por favor, informe o local do prximo disco.
+
+; *** Installation phase messages
+SetupAborted=A instalao no foi concluda.%n%nPor favor, corrija o problema e execute novamente o Programa de Instalao.
+EntryAbortRetryIgnore=Clique Repetir para tentar novamente, Ignorar para continuar assim mesmo, or Cancelar para cancelar a instalao.
+
+; *** Installation status messages
+StatusClosingApplications=Encerrando aplicaes...
+StatusCreateDirs=Criando diretrios...
+StatusExtractFiles=Extraindo arquivos...
+StatusCreateIcons=Criando atalhos...
+StatusCreateIniEntries=Criando entradas INI...
+StatusCreateRegistryEntries=Criando entradas no Registro...
+StatusRegisterFiles=Registrando arquivos...
+StatusSavingUninstall=Salvando informaes de desinstalao...
+StatusRunProgram=Finalizando a instalao...
+StatusRestartingApplications=Reiniciando applicaes...
+StatusRollback=Desfazendo as alteraes efetuadas...
+
+; *** Misc. errors
+ErrorInternal2=Erro interno: %1
+ErrorFunctionFailedNoCode=%1 falhou
+ErrorFunctionFailed=%1 falhou; cdigo %2
+ErrorFunctionFailedWithMessage=%1 falhou; cdigo %2.%n%3
+ErrorExecutingProgram=No foi possvel executar o arquivo:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Erro ao abrir a chave do registro:%n%1\%2
+ErrorRegCreateKey=Erro ao criar a chave do registro:%n%1\%2
+ErrorRegWriteKey=Erro ao escrever na chave do registro:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Erro ao criar entrada INI no arquivo "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Clique em Repetir para tentar novamente, em Ignorar para ignorar este arquivo (no recomendado) ou em Cancelar para cancelar a instalao.
+FileAbortRetryIgnore2=Clique em Repetir para tentar novamente, em Ignorar para ignorar este arquivo (no recomendado) ou em Cancelar para cancelar a instalao.
+SourceIsCorrupted=O arquivo de origem est corrompido
+SourceDoesntExist=O arquivo de origem "%1" no existe
+ExistingFileReadOnly=O arquivo existente est marcado como somente leitura.%n%nClique em Repetir para remover o atributo de somente leitura e tentar novamente, em Ignorar para ignorar este arquivo, ou em Anular para cancelar a instalao.
+ErrorReadingExistingDest=Ocorreu um erro ao tentar ler o arquivo existente:
+FileExists=O arquivo j existe.%n%nVoc quer que o Programa de Instalao sobrescreva o arquivo?
+ExistingFileNewer=O arquivo j existente mais recente do que o arquivo que o Programa de Instalao est tentando instalar. Recomenda-se que voc mantenha o arquivo existente.%n%nVoc quer manter o arquivo existente?
+ErrorChangingAttr=Ocorreu um erro ao tentar modificar os atributos do arquivo existente:
+ErrorCreatingTemp=Ocorreu um erro ao tentar criar um arquivo nao diretrio de destino:
+ErrorReadingSource=Ocorreu um erro ao tentar ler o arquivo de origem:
+ErrorCopying=Ocorreu um erro ao tentar copiar um arquivo:
+ErrorReplacingExistingFile=Ocorreu um erro ao tentar substituir o arquivo existente:
+ErrorRestartReplace=Reiniciar/Substituir falhou:
+ErrorRenamingTemp=Ocorreu um erro ao tentar renomear um arquivo no diretrio de destino:
+ErrorRegisterServer=No foi possvel registrar a DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 falhou com o cdigo de sada %1
+ErrorRegisterTypeLib=No foi possvel registrar a biblioteca de tipos: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Ocorreu um erro ao tentar abrir o arquivo LEIA-ME.
+ErrorRestartingComputer=O Programa de Instalao no conseguiu reiniciar o computador. Por favor, reinicie o computador manualmente.
+
+; *** Uninstaller messages
+UninstallNotFound=O arquivo "%1" no existe. No possvel desinstalar.
+UninstallOpenError=O arquivo "%1" no pode ser aberto. No possvel desinstalar
+UninstallUnsupportedVer=O arquivo de log de desinstalao "%1" est num formato no reconhecido por esta verso do desinstalador. No possvel desinstalar
+UninstallUnknownEntry=Foi encontrada uma entrada desconhecida (%1) no arquivo de log de desinstalao
+ConfirmUninstall=Voc tem certeza que deseja remover completamente %1 e todos os seus componentes?
+UninstallOnlyOnWin64=Esta instalao no pode ser desinstalada em Windows 64 bits.
+OnlyAdminCanUninstall=Esta instalao s pode ser desinstalada por usurios com direitos administrativos.
+UninstallStatusLabel=Por favor, aguarde enquanto %1 removido do seu computador.
+UninstalledAll=%1 foi removido com sucesso do seu computador.
+UninstalledMost=A desinstalao de %1 foi concluda.%n%nAlguns elementos no puderam ser removidos. Estes podem ser removidos manualmente.
+UninstalledAndNeedsRestart=Para concluir a desinstalao de %1, o computador deve ser reiniciado.%n%nVoc quer que o computador seja reiniciado agora?
+UninstallDataCorrupted=O arquivo "%1" est corrompido. No possvel desinstalar
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Remover Arquivo Compartilhado?
+ConfirmDeleteSharedFile2=O sistema indica que o seguinte arquivo compartilhado no est mais em uso por nenhum outro programa. Voc quer que a desinstalao remova este arquivo compartilhado?%n%nSe ainda houver programas utilizando este arquivo e ele for removido, esses programas podero no funcionar corretamente. Se voc no tem certeza, escolha No. Manter o arquivo no seu computador no trar prejuzo algum.
+SharedFileNameLabel=Nome do arquivo:
+SharedFileLocationLabel=Local:
+WizardUninstalling=Status da Desinstalao
+StatusUninstalling=Desinstalando %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Instalando %1.
+ShutdownBlockReasonUninstallingApp=Removendo %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 verso %2
+AdditionalIcons=cones adicionais:
+CreateDesktopIcon=Criar um cone na rea de &Trabalho
+CreateQuickLaunchIcon=Criar um cone na &Barra de Inicializao Rpida
+ProgramOnTheWeb=%1 na Internet
+UninstallProgram=Desinstalar %1
+LaunchProgram=Executar %1
+AssocFileExtension=Associar %1 com a e&xtenso de arquivo %2
+AssocingFileExtension=Associando %1 com a extenso de arquivo...
+AutoStartProgramGroupDescription=Startup:
+AutoStartProgram=Iniciar automaticamente %1
+AddonHostProgramNotFound=%1 no pde ser localizado na pasta que voc selecionou.%n%nVoc deseja continuar assim mesmo?
diff --git a/dist/windows/languages/Catalan.isl b/dist/windows/languages/Catalan.isl
new file mode 100644
index 00000000..5a91e2ce
--- /dev/null
+++ b/dist/windows/languages/Catalan.isl
@@ -0,0 +1,319 @@
+; *** Inno Setup version 5.5.3+ Catalan messages ***
+;
+; Translated by Carles Millan (email: carles@carlesmillan.cat)
+
+[LangOptions]
+
+LanguageName=Catal<00E0>
+LanguageID=$0403
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Installaci
+SetupWindowTitle=Installaci - %1
+UninstallAppTitle=Desinstallaci
+UninstallAppFullTitle=Desinstalla %1
+
+; *** Misc. common
+InformationTitle=Informaci
+ConfirmTitle=Confirmaci
+ErrorTitle=Error
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Aquest programa installar %1. Voleu continuar?
+LdrCannotCreateTemp=No s'ha pogut crear un fitxer temporal. Installaci cancellada
+LdrCannotExecTemp=No s'ha pogut executar el fitxer a la carpeta temporal. Installaci cancellada
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nError %2: %3
+SetupFileMissing=El fitxer %1 no es troba a la carpeta d'installaci. Resoleu el problema o obteniu una nova cpia del programa.
+SetupFileCorrupt=Els fitxers d'installaci estan corromputs. Obteniu una nova cpia del programa.
+SetupFileCorruptOrWrongVer=Els fitxers d'installaci estan espatllats, o sn incompatibles amb aquesta versi del programa. Resoleu el problema o obteniu una nova cpia del programa.
+InvalidParameter=Un parmetre invlid ha estat passat a la lnia de comanda:%n%n%1
+SetupAlreadyRunning=La installaci ja est en curs.
+WindowsVersionNotSupported=Aquest programa no suporta la versi de Windows installada al vostre ordinador.
+WindowsServicePackRequired=Aquest programa necessita %1 Service Pack %2 o posterior.
+NotOnThisPlatform=Aquest programa no funcionar sota %1.
+OnlyOnThisPlatform=Aquest programa noms pot ser executat sota %1.
+OnlyOnTheseArchitectures=Aquest programa noms pot ser installat en versions de Windows dissenyades per a les segents arquitectures de processador:%n%n%1
+MissingWOW64APIs=Aquesta versi de Windows no cont la funcionalitat necessria per a realitzar una installaci de 64 bits. Per tal de corregir aquest problema installeu el Service Pack %1.
+WinVersionTooLowError=Aquest programa requereix %1 versi %2 o posterior.
+WinVersionTooHighError=Aquest programa no pot ser installat sota %1 versi %2 o posterior.
+AdminPrivilegesRequired=Cal que tingueu privilegis d'administrador per poder installar aquest programa.
+PowerUserPrivilegesRequired=Cal que accediu com a administrador o com a membre del grup Power Users en installar aquest programa.
+SetupAppRunningError=El programa d'installaci ha detectat que %1 s'est executant actualment.%n%nTanqueu el programa i premeu Accepta per a continuar o Cancella per a sortir.
+UninstallAppRunningError=El programa de desinstallaci ha detectat que %1 s'est executant en aquest moment.%n%nTanqueu el programa i premeu Accepta per a continuar o Cancella per a sortir.
+
+; *** Misc. errors
+ErrorCreatingDir=El programa d'installaci no ha pogut crear la carpeta "%1"
+ErrorTooManyFilesInDir=No s'ha pogut crear un fitxer a la carpeta "%1" perqu cont massa fitxers
+
+; *** Setup common messages
+ExitSetupTitle=Surt
+ExitSetupMessage=La installaci no s'ha completat. Si sortiu ara, el programa no ser installat.%n%nPer a completar-la podreu tornar a executar el programa d'installaci quan vulgueu.%n%nVoleu sortir-ne?
+AboutSetupMenuItem=&Sobre la installaci...
+AboutSetupTitle=Sobre la installaci
+AboutSetupMessage=%1 versi %2%n%3%n%nPgina web de %1:%n%4
+AboutSetupNote=
+TranslatorNote=Catalan translation by Carles Millan (carles at carlesmillan.cat)
+
+; *** Buttons
+ButtonBack=< &Enrere
+ButtonNext=&Segent >
+ButtonInstall=&Installa
+ButtonOK=Accepta
+ButtonCancel=Cancella
+ButtonYes=&S
+ButtonYesToAll=S a &tot
+ButtonNo=&No
+ButtonNoToAll=N&o a tot
+ButtonFinish=&Finalitza
+ButtonBrowse=&Explora...
+ButtonWizardBrowse=&Cerca...
+ButtonNewFolder=Crea &nova carpeta
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Trieu idioma
+SelectLanguageLabel=Trieu idioma a emprar durant la installaci:
+
+; *** Common wizard text
+ClickNext=Premeu Segent per a continuar o Cancella per a abandonar la installaci.
+BeveledLabel=
+BrowseDialogTitle=Trieu una carpeta
+BrowseDialogLabel=Trieu la carpeta de destinaci i premeu Accepta.
+NewFolderName=Nova carpeta
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Benvingut a l'assistent d'installaci de [name]
+WelcomeLabel2=Aquest programa installar [name/ver] al vostre ordinador.%n%ns molt recomanable que abans de continuar tanqueu tots els altres programes oberts, per tal d'evitar conflictes durant el procs d'installaci.
+
+; *** "Password" wizard page
+WizardPassword=Contrasenya
+PasswordLabel1=Aquesta installaci est protegida amb una contrasenya.
+PasswordLabel3=Indiqueu la contrasenya i premeu Segent per a continuar. Aquesta contrasenya distingeix entre majscules i minscules.
+PasswordEditLabel=&Contrasenya:
+IncorrectPassword=La contrasenya introduda no s correcta. Torneu-ho a intentar.
+
+; *** "License Agreement" wizard page
+WizardLicense=Acord de Llicncia
+LicenseLabel=Cal que llegiu aquesta informaci abans de continuar.
+LicenseLabel3=Cal que llegiu l'Acord de Llicncia segent. Cal que n'accepteu els termes abans de continuar amb la installaci.
+LicenseAccepted=&Accepto l'acord
+LicenseNotAccepted=&No accepto l'acord
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informaci
+InfoBeforeLabel=Llegiu la informaci segent abans de continuar.
+InfoBeforeClickLabel=Quan estigueu preparat per a continuar, premeu Segent.
+WizardInfoAfter=Informaci
+InfoAfterLabel=Llegiu la informaci segent abans de continuar.
+InfoAfterClickLabel=Quan estigueu preparat per a continuar, premeu Segent
+
+; *** "User Information" wizard page
+WizardUserInfo=Informaci sobre l'usuari
+UserInfoDesc=Introduu la vostra informaci.
+UserInfoName=&Nom de l'usuari:
+UserInfoOrg=&Organitzaci
+UserInfoSerial=&Nmero de srie:
+UserInfoNameRequired=Cal que hi introduu un nom
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Trieu Carpeta de Destinaci
+SelectDirDesc=On s'ha d'installar [name]?
+SelectDirLabel3=El programa d'installaci installar [name] a la carpeta segent.
+SelectDirBrowseLabel=Per a continuar, premeu Segent. Si desitgeu triar una altra capeta, premeu Cerca.
+DiskSpaceMBLabel=Aquest programa necessita un mnim de [mb] MB d'espai a disc.
+CannotInstallToNetworkDrive=La installaci no es pot fer en un disc de xarxa.
+CannotInstallToUNCPath=La installaci no es pot fer a una ruta UNC.
+InvalidPath=Cal donar una ruta completa amb lletra d'unitat, per exemple:%n%nC:\Aplicaci%n%no b una ruta UNC en la forma:%n%n\\servidor\compartit
+InvalidDrive=El disc o ruta de xarxa seleccionat no existeix, trieu-ne un altre.
+DiskSpaceWarningTitle=No hi ha prou espai al disc
+DiskSpaceWarning=El programa d'installaci necessita com a mnim %1 KB d'espai lliure, per el disc seleccionat noms t %2 KB disponibles.%n%nTot i amb aix, desitgeu continuar?
+DirNameTooLong=El nom de la carpeta o de la ruta s massa llarg.
+InvalidDirName=El nom de la carpeta no s vlid.
+BadDirName32=Un nom de carpeta no pot contenir cap dels carcters segents:%n%n%1
+DirExistsTitle=La carpeta existeix
+DirExists=La carpeta:%n%n%1%n%nja existeix. Voleu installar igualment el programa en aquesta carpeta?
+DirDoesntExistTitle=La Carpeta No Existeix
+DirDoesntExist=La carpeta:%n%n%1%n%nno existeix. Voleu que sigui creada?
+
+; *** "Select Program Group" wizard page
+WizardSelectComponents=Trieu Components
+SelectComponentsDesc=Quins components cal installar?
+SelectComponentsLabel2=Trieu els components que voleu installar; elimineu els components que no voleu installar. Premeu Segent per a continuar.
+FullInstallation=Installaci completa
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Installaci compacta
+CustomInstallation=Installaci personalitzada
+NoUninstallWarningTitle=Els components Existeixen
+NoUninstallWarning=El programa d'installaci ha detectat que els components segents ja es troben al vostre ordinador:%n%n%1%n%nSi no estan seleccionats no seran desinstallats.%n%nVoleu continuar igualment?
+ComponentSize1=%1 Kb
+ComponentSize2=%1 Mb
+ComponentsDiskSpaceMBLabel=Aquesta selecci requereix un mnim de [mb] Mb d'espai al disc.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Trieu tasques addicionals
+SelectTasksDesc=Quines tasques addicionals cal executar?
+SelectTasksLabel2=Trieu les tasques addicionals que voleu que siguin executades mentre s'installa [name], i desprs premeu Segent.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Trieu la carpeta del Men Inici
+SelectStartMenuFolderDesc=On cal situar els enllaos del programa?
+SelectStartMenuFolderLabel3=El programa d'installaci crear l'accs directe al programa a la segent carpeta del men d'Inici.
+SelectStartMenuFolderBrowseLabel=Per a continuar, premeu Segent. Si desitgeu triar una altra carpeta, premeu Cerca.
+MustEnterGroupName=Cal que hi introduu un nom de carpeta.
+GroupNameTooLong=El nom de la carpeta o de la ruta s massa llarg.
+InvalidGroupName=El nom de la carpeta no s vlid.
+BadGroupName=El nom del grup no pot contenir cap dels carcters segents:%n%n%1
+NoProgramGroupCheck2=&No cres una carpeta al Men Inici
+
+; *** "Ready to Install" wizard page
+WizardReady=Preparat per a installar
+ReadyLabel1=El programa d'installaci est preparat per a iniciar la installaci de [name] al vostre ordinador.
+ReadyLabel2a=Premeu Installa per a continuar amb la installaci, o Enrere si voleu revisar o modificar les opcions d'installaci.
+ReadyLabel2b=Premeu Installa per a continuar amb la installaci.
+ReadyMemoUserInfo=Informaci de l'usuari:
+ReadyMemoDir=Carpeta de destinaci:
+ReadyMemoType=Tipus d'installaci:
+ReadyMemoComponents=Components seleccionats:
+ReadyMemoGroup=Carpeta del Men Inici:
+ReadyMemoTasks=Tasques addicionals:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparant la installaci
+PreparingDesc=Preparant la installaci de [name] al vostre ordinador.
+PreviousInstallNotCompleted=La installaci o desinstallaci anterior no s'ha dut a terme. Caldr que reinicieu l'ordinador per a finalitzar aquesta installaci.%n%nDesprs de reiniciar l'ordinador, executeu aquest programa de nou per completar la installaci de [name].
+CannotContinue=La installaci no pot continuar. Premeu Cancella per a sortir.
+ApplicationsFound=Les segents aplicacions estan fent servir fitxers que necessiten ser actualitzats per la installaci. Es recomana que permeteu a la installaci tancar automticament aquestes aplicacions.
+ApplicationsFound2=Les segents aplicacions estan fent servir fitxers que necessiten ser actualitzats per la installaci. Es recomana que permeteu a la installaci tancar automticament aquestes aplicacions. Desprs de completar la installaci s'intentar reiniciar les aplicacions.
+CloseApplications=&Tanca automticament les aplicacions
+DontCloseApplications=&No tanquis les aplicacions
+ErrorCloseApplications=El programa d'installaci no ha pogut tancar automticament totes les aplicacions. Es recomana que abans de continuar tanqueu totes les aplicacions que estan usant fitxers que han de ser actualitzats pel programa d'installaci.
+
+; *** "Installing" wizard page
+WizardInstalling=Installant
+InstallingLabel=Espereu mentre s'installa [name] al vostre ordinador.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Completant l'assistent d'installaci de [name]
+FinishedLabelNoIcons=El programa ha finalitzat la installaci de [name] al vostre ordinador.
+FinishedLabel=El programa ha finalitzat la installaci de [name] al vostre ordinador. L'aplicaci pot ser iniciada seleccionant les icones installades.
+ClickFinish=Premeu Finalitza per a sortir de la installaci.
+FinishedRestartLabel=Per a completar la installaci de [name] cal reiniciar l'ordinador. Voleu fer-ho ara?
+FinishedRestartMessage=Per a completar la installaci de [name] cal reiniciar l'ordinador. Voleu fer-ho ara?
+ShowReadmeCheck=S, vull visualitzar el fitxer LLEGIUME.TXT
+YesRadio=&S, reiniciar l'ordinador ara
+NoRadio=&No, reiniciar l'ordinador ms tard
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Executa %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Visualitza %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=El programa d'installaci necessita el disc segent
+SelectDiskLabel2=Introduiu el disc %1 i premeu Continua.%n%nSi els fitxers d'aquest disc es poden trobar en una carpeta diferent de la indicada tot seguit, introduu-ne la ruta correcta o b premeu Explora.
+PathLabel=&Ruta:
+FileNotInDir2=El fitxer "%1" no s'ha pogut trobar a "%2". Introduu el disc correcte o trieu una altra carpeta.
+SelectDirectoryLabel=Indiqueu on es troba el disc segent.
+
+; *** Installation phase messages
+SetupAborted=La installaci no s'ha completat.%n%n%Resoleu el problema i executeu de nou el programa d'installaci.
+EntryAbortRetryIgnore=Premeu Reintenta per a intentar-ho de nou, Ignora per a continuar igualment, o Abandona per a abandonar la installaci.
+
+; *** Installation status messages
+StatusClosingApplications=Tancant aplicacions...
+StatusCreateDirs=Creant carpetes...
+StatusExtractFiles=Extraient fitxers...
+StatusCreateIcons=Creant enllaos del programa...
+StatusCreateIniEntries=Creant entrades al fitxer INI...
+StatusCreateRegistryEntries=Creant entrades de registre...
+StatusRegisterFiles=Registrant fitxers...
+StatusSavingUninstall=Desant informaci de desinstallaci...
+StatusRunProgram=Finalitzant la installaci...
+StatusRestartingApplications=Reiniciant aplicacions...
+StatusRollback=Desfent els canvis...
+
+; *** Misc. errors
+ErrorInternal2=Error intern: %1
+ErrorFunctionFailedNoCode=%1 ha fallat
+ErrorFunctionFailed=%1 ha fallat; codi %2
+ErrorFunctionFailedWithMessage=%1 ha fallat; codi %2.%n%3
+ErrorExecutingProgram=No es pot executar el fitxer:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Error en obrir la clau de registre:%n%1\%2
+ErrorRegCreateKey=Error en crear la clau de registre:%n%1\%2
+ErrorRegWriteKey=Error en escriure a la clau de registre:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Error en crear l'entrada INI al fitxer "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Premeu Reintenta per a intentar-ho de nou, Ignora per a saltar-se aquest fitxer (no recomanat), o Abandona per a abandonar la installaci.
+FileAbortRetryIgnore2=Premeu Reintenta per a intentar-ho de nou, Ignora per a continuar igualment (no recomanat), o Abandona per a abandonar la installaci.
+SourceIsCorrupted=El fitxer d'origen est corromput
+SourceDoesntExist=El fitxer d'origen "%1" no existeix
+ExistingFileReadOnly=El fitxer s de noms lectura.%n%nPremeu Reintenta per a treure-li l'atribut de noms lectura i tornar-ho a intentar, Ignora per a saltar-se'l (no recomanat), o Abandona per a abandonar la installaci.
+ErrorReadingExistingDest=S'ha produt un error en llegir el fitxer:
+FileExists=El fitxer ja existeix.%n%nVoleu que sigui sobre-escrit?
+ExistingFileNewer=El fitxer existent s ms nou que el que s'intenta installar. Es recomana mantenir el fitxer existent.%n%nVoleu mantenir-lo?
+ErrorChangingAttr=Hi ha hagut un error en canviar els atributs del fitxer:
+ErrorCreatingTemp=Hi ha hagut un error en crear un fitxer a la carpeta de destinaci:
+ErrorReadingSource=Hi ha hagut un error en llegir el fitxer d'origen:
+ErrorCopying=Hi ha hagut un error en copiar un fitxer:
+ErrorReplacingExistingFile=Hi ha hagut un error en reemplaar el fitxer existent:
+ErrorRestartReplace=Ha fallat reemplaar:
+ErrorRenamingTemp=Hi ha hagut un error en reanomenar un fitxer a la carpeta de destinaci:
+ErrorRegisterServer=No s'ha pogut registrar el DLL/OCX: %1
+ErrorRegSvr32Failed=Ha fallat RegSvr32 amb el codi de sortida %1
+ErrorRegisterTypeLib=No s'ha pogut registrar la biblioteca de tipus: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Hi ha hagut un error en obrir el fitxer LLEGIUME.TXT.
+ErrorRestartingComputer=El programa d'installaci no ha pogut reiniciar l'ordinador. Cal que ho feu manualment.
+
+; *** Uninstaller messages
+UninstallNotFound=El fitxer "%1" no existeix. No es pot desinstallar.
+UninstallOpenError=El fitxer "%1" no pot ser obert. No es pot desinstallar
+UninstallUnsupportedVer=El fitxer de desinstallaci "%1" est en un format no reconegut per aquesta versi del desinstallador. No es pot desinstallar
+UninstallUnknownEntry=S'ha trobat una entrada desconeguda (%1) al fitxer de desinstallaci.
+ConfirmUninstall=Esteu segur de voler eliminar completament %1 i tots els seus components?
+UninstallOnlyOnWin64=Aquest programa noms pot ser desinstallat en Windows de 64 bits.
+OnlyAdminCanUninstall=Aquest programa noms pot ser desinstallat per un usuari amb privilegis d'administrador.
+UninstallStatusLabel=Espereu mentre s'elimina %1 del vostre ordinador.
+UninstalledAll=%1 ha estat desinstallat correctament del vostre ordinador.
+UninstalledMost=Desinstallaci de %1 completada.%n%nAlguns elements no s'han pogut eliminar. Poden ser eliminats manualment.
+UninstalledAndNeedsRestart=Per completar la installaci de %1, cal reiniciar el vostre ordinador.%n%nVoleu fer-ho ara?
+UninstallDataCorrupted=El fitxer "%1" est corromput. No es pot desinstallar.
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Eliminar fitxer compartit?
+ConfirmDeleteSharedFile2=El sistema indica que el fitxer compartit segent ja no s emprat per cap altre programa. Voleu que la desinstallaci elimini aquest fitxer?%n%nSi algun programa encara el fa servir i s eliminat, podria no funcionar correctament. Si no n'esteu segur, trieu No. Deixar el fitxer al sistema no far cap mal.
+SharedFileNameLabel=Nom del fitxer:
+SharedFileLocationLabel=Localitzaci:
+WizardUninstalling=Estat de la desinstallaci
+StatusUninstalling=Desinstallant %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installant %1.
+ShutdownBlockReasonUninstallingApp=Desinstallant %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 versi %2
+AdditionalIcons=Icones addicionals:
+CreateDesktopIcon=Crea una icona a l'&Escriptori
+CreateQuickLaunchIcon=Crea una icona a la &Barra de tasques
+ProgramOnTheWeb=%1 a Internet
+UninstallProgram=Desinstalla %1
+LaunchProgram=Obre %1
+AssocFileExtension=&Associa %1 amb l'extensi de fitxer %2
+AssocingFileExtension=Associant %1 amb l'extensi de fitxer %2...
+AutoStartProgramGroupDescription=Inici:
+AutoStartProgram=Inicia automticament %1
+AddonHostProgramNotFound=%1 no ha pogut ser trobat a la carpeta seleccionada.%n%nVoleu continuar igualment?
diff --git a/dist/windows/languages/Czech.isl b/dist/windows/languages/Czech.isl
new file mode 100644
index 00000000..8da17224
--- /dev/null
+++ b/dist/windows/languages/Czech.isl
@@ -0,0 +1,337 @@
+; *******************************************************
+; *** ***
+; *** Inno Setup version 5.5.3+ Czech messages ***
+; *** ***
+; *** Original Author: ***
+; *** ***
+; *** Ivo Bauer (bauer@ozm.cz) ***
+; *** ***
+; *** Contributors: ***
+; *** ***
+; *** Lubos Stanek (lubek@users.sourceforge.net) ***
+; *** Vitezslav Svejdar (vitezslav.svejdar@cuni.cz) ***
+; *** ***
+; *******************************************************
+;
+; Copyright (C) 1997-2012 Jordan Russell. All rights reserved.
+; Translations (C) 2002-2012 Original Author and Contributors. All rights reserved.
+;
+; The contents of this file are subject to the Inno Setup License (the "License").
+; You may obtain a copy of the License at http://www.jrsoftware.org/files/is/license.txt
+;
+; $jrsoftware: issrc/Files/Languages/Czech.isl,v 1.18 2007/02/27 18:22:41 jr Exp $
+
+[LangOptions]
+LanguageName=<010C>e<0161>tina
+LanguageID=$0405
+LanguageCodePage=1250
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Prvodce instalac
+SetupWindowTitle=Prvodce instalac - %1
+UninstallAppTitle=Prvodce odinstalac
+UninstallAppFullTitle=Prvodce odinstalac - %1
+
+; *** Misc. common
+InformationTitle=Informace
+ConfirmTitle=Potvrzen
+ErrorTitle=Chyba
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Vt Vs prvodce instalac produktu %1. Chcete pokraovat?
+LdrCannotCreateTemp=Nelze vytvoit doasn soubor. Prvodce instalac bude ukonen
+LdrCannotExecTemp=Nelze spustit soubor v doasn sloce. Prvodce instalac bude ukonen
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nChyba %2: %3
+SetupFileMissing=Instalan sloka neobsahuje soubor %1. Opravte prosm tuto chybu nebo si opatete novou kopii tohoto produktu.
+SetupFileCorrupt=Soubory prvodce instalac jsou pokozeny. Opatete si prosm novou kopii tohoto produktu.
+SetupFileCorruptOrWrongVer=Soubory prvodce instalac jsou pokozeny nebo se nesluuj s touto verz prvodce instalac. Opravte prosm tuto chybu nebo si opatete novou kopii tohoto produktu.
+InvalidParameter=Pkazov dka obsahuje neplatn parametr:%n%n%1
+SetupAlreadyRunning=Prvodce instalac je ji sputn.
+WindowsVersionNotSupported=Tento produkt nepodporuje verzi MS Windows, kter b na Vaem potai.
+WindowsServicePackRequired=Tento produkt vyaduje %1 Service Pack %2 nebo vy.
+NotOnThisPlatform=Tento produkt nelze spustit ve %1.
+OnlyOnThisPlatform=Tento produkt mus bt sputn ve %1.
+OnlyOnTheseArchitectures=Tento produkt lze nainstalovat pouze ve verzch MS Windows s podporou architektury procesor:%n%n%1
+MissingWOW64APIs=Aktuln verze MS Windows postrd funkce, kter vyaduje prvodce instalac pro 64-bitovou instalaci. Opravte prosm tuto chybu nainstalovnm aktualizace Service Pack %1.
+WinVersionTooLowError=Tento produkt vyaduje %1 verzi %2 nebo vy.
+WinVersionTooHighError=Tento produkt nelze nainstalovat ve %1 verzi %2 nebo vy.
+AdminPrivilegesRequired=K instalaci tohoto produktu muste bt pihleni s prvy administrtora.
+PowerUserPrivilegesRequired=K instalaci tohoto produktu muste bt pihleni s prvy administrtora nebo lena skupiny Power Users.
+SetupAppRunningError=Prvodce instalac zjistil, e produkt %1 je nyn sputn.%n%nZavete prosm vechny instance tohoto produktu a pak pokraujte klepnutm na tlatko OK, nebo ukonete instalaci tlatkem Storno.
+UninstallAppRunningError=Prvodce odinstalac zjistil, e produkt %1 je nyn sputn.%n%nZavete prosm vechny instance tohoto produktu a pak pokraujte klepnutm na tlatko OK, nebo ukonete odinstalaci tlatkem Storno.
+
+; *** Misc. errors
+ErrorCreatingDir=Prvodci instalac se nepodailo vytvoit sloku "%1"
+ErrorTooManyFilesInDir=Nelze vytvoit soubor ve sloce "%1", protoe tato sloka ji obsahuje pli mnoho soubor
+
+; *** Setup common messages
+ExitSetupTitle=Ukonit prvodce instalac
+ExitSetupMessage=Instalace nebyla zcela dokonena. Jestlie nyn prvodce instalac ukonte, produkt nebude nainstalovn.%n%nPrvodce instalac mete znovu spustit kdykoliv jindy a instalaci dokonit.%n%nChcete prvodce instalac ukonit?
+AboutSetupMenuItem=&O prvodci instalac...
+AboutSetupTitle=O prvodci instalac
+AboutSetupMessage=%1 verze %2%n%3%n%n%1 domovsk strnka:%n%4
+AboutSetupNote=
+TranslatorNote=Czech translation maintained by Ivo Bauer (bauer@ozm.cz), Lubos Stanek (lubek@users.sourceforge.net) and Vitezslav Svejdar (vitezslav.svejdar@cuni.cz)
+
+; *** Buttons
+ButtonBack=< &Zpt
+ButtonNext=&Dal >
+ButtonInstall=&Instalovat
+ButtonOK=OK
+ButtonCancel=Storno
+ButtonYes=&Ano
+ButtonYesToAll=Ano &vem
+ButtonNo=&Ne
+ButtonNoToAll=N&e vem
+ButtonFinish=&Dokonit
+ButtonBrowse=&Prochzet...
+ButtonWizardBrowse=&Prochzet...
+ButtonNewFolder=&Vytvoit novou sloku
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Vbr jazyka prvodce instalac
+SelectLanguageLabel=Zvolte jazyk, kter se m pout bhem instalace:
+
+; *** Common wizard text
+ClickNext=Pokraujte klepnutm na tlatko Dal, nebo ukonete prvodce instalac tlatkem Storno.
+BeveledLabel=
+BrowseDialogTitle=Vyhledat sloku
+BrowseDialogLabel=Z ne uvedenho seznamu vyberte sloku a klepnte na tlatko OK.
+NewFolderName=Nov sloka
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Vt Vs prvodce instalac produktu [name].
+WelcomeLabel2=Produkt [name/ver] bude nainstalovn na V pota.%n%nDve ne budete pokraovat, doporuuje se zavt veker sputn aplikace.
+
+; *** "Password" wizard page
+WizardPassword=Heslo
+PasswordLabel1=Tato instalace je chrnna heslem.
+PasswordLabel3=Zadejte prosm heslo a pokraujte klepnutm na tlatko Dal. Pi zadvn hesla rozliujte mal a velk psmena.
+PasswordEditLabel=&Heslo:
+IncorrectPassword=Zadan heslo nen sprvn. Zkuste to prosm znovu.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licenn smlouva
+LicenseLabel=Dve ne budete pokraovat, pette si prosm pozorn nsledujc dleit informace.
+LicenseLabel3=Pette si prosm tuto licenn smlouvu. Muste souhlasit s podmnkami tto smlouvy, aby instalace mohla pokraovat.
+LicenseAccepted=&Souhlasm s podmnkami licenn smlouvy
+LicenseNotAccepted=&Nesouhlasm s podmnkami licenn smlouvy
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informace
+InfoBeforeLabel=Dve ne budete pokraovat, pette si prosm pozorn nsledujc dleit informace.
+InfoBeforeClickLabel=Pokraujte v instalaci klepnutm na tlatko Dal.
+WizardInfoAfter=Informace
+InfoAfterLabel=Dve ne budete pokraovat, pette si prosm pozorn nsledujc dleit informace.
+InfoAfterClickLabel=Pokraujte v instalaci klepnutm na tlatko Dal.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informace o uivateli
+UserInfoDesc=Zadejte prosm poadovan daje.
+UserInfoName=&Uivatelsk jmno:
+UserInfoOrg=&Spolenost:
+UserInfoSerial=S&riov slo:
+UserInfoNameRequired=Muste zadat uivatelsk jmno.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Zvolte clov umstn
+SelectDirDesc=Kam m bt produkt [name] nainstalovn?
+SelectDirLabel3=Prvodce nainstaluje produkt [name] do nsledujc sloky.
+SelectDirBrowseLabel=Pokraujte klepnutm na tlatko Dal. Chcete-li zvolit jinou sloku, klepnte na tlatko Prochzet.
+DiskSpaceMBLabel=Instalace vyaduje nejmn [mb] MB volnho msta na disku.
+CannotInstallToNetworkDrive=Prvodce instalac neme instalovat do sov jednotky.
+CannotInstallToUNCPath=Prvodce instalac neme instalovat do cesty UNC.
+InvalidPath=Muste zadat plnou cestu vetn psmene jednotky; napklad:%n%nC:\Aplikace%n%nnebo cestu UNC ve tvaru:%n%n\\server\sdlen sloka
+InvalidDrive=Vmi zvolen jednotka nebo cesta UNC neexistuje nebo nen dostupn. Zvolte prosm jin umstn.
+DiskSpaceWarningTitle=Nedostatek msta na disku
+DiskSpaceWarning=Prvodce instalac vyaduje nejmn %1 KB volnho msta pro instalaci produktu, ale na zvolen jednotce je dostupnch pouze %2 KB.%n%nChcete pesto pokraovat?
+DirNameTooLong=Nzev sloky nebo cesta jsou pli dlouh.
+InvalidDirName=Nzev sloky nen platn.
+BadDirName32=Nzev sloky neme obsahovat dn z nsledujcch znak:%n%n%1
+DirExistsTitle=Sloka existuje
+DirExists=Sloka:%n%n%1%n%nji existuje. M se pesto instalovat do tto sloky?
+DirDoesntExistTitle=Sloka neexistuje
+DirDoesntExist=Sloka:%n%n%1%n%nneexistuje. M bt tato sloka vytvoena?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Zvolte sousti
+SelectComponentsDesc=Jak sousti maj bt nainstalovny?
+SelectComponentsLabel2=Zakrtnte sousti, kter maj bt nainstalovny; sousti, kter se nemaj instalovat, ponechte nezakrtnut. Pokraujte klepnutm na tlatko Dal.
+FullInstallation=pln instalace
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Kompaktn instalace
+CustomInstallation=Voliteln instalace
+NoUninstallWarningTitle=Sousti existuj
+NoUninstallWarning=Prvodce instalac zjistil, e nsledujc sousti jsou ji na Vaem potai nainstalovny:%n%n%1%n%nNezahrnete-li tyto sousti do vbru, nebudou nyn odinstalovny.%n%nChcete pesto pokraovat?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Vybran sousti vyaduj nejmn [mb] MB msta na disku.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Zvolte dal lohy
+SelectTasksDesc=Kter dal lohy maj bt provedeny?
+SelectTasksLabel2=Zvolte dal lohy, kter maj bt provedeny v prbhu instalace produktu [name], a pak pokraujte klepnutm na tlatko Dal.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Vyberte sloku v nabdce Start
+SelectStartMenuFolderDesc=Kam m prvodce instalac umstit zstupce aplikace?
+SelectStartMenuFolderLabel3=Prvodce instalac vytvo zstupce aplikace v nsledujc sloce nabdky Start.
+SelectStartMenuFolderBrowseLabel=Pokraujte klepnutm na tlatko Dal. Chcete-li zvolit jinou sloku, klepnte na tlatko Prochzet.
+MustEnterGroupName=Muste zadat nzev sloky.
+GroupNameTooLong=Nzev sloky nebo cesta jsou pli dlouh.
+InvalidGroupName=Nzev sloky nen platn.
+BadGroupName=Nzev sloky neme obsahovat dn z nsledujcch znak:%n%n%1
+NoProgramGroupCheck2=&Nevytvet sloku v nabdce Start
+
+; *** "Ready to Install" wizard page
+WizardReady=Instalace je pipravena
+ReadyLabel1=Prvodce instalac je nyn pipraven nainstalovat produkt [name] na V pota.
+ReadyLabel2a=Pokraujte v instalaci klepnutm na tlatko Instalovat. Pejete-li si zmnit nkter nastaven instalace, klepnte na tlatko Zpt.
+ReadyLabel2b=Pokraujte v instalaci klepnutm na tlatko Instalovat.
+ReadyMemoUserInfo=Informace o uivateli:
+ReadyMemoDir=Clov umstn:
+ReadyMemoType=Typ instalace:
+ReadyMemoComponents=Vybran sousti:
+ReadyMemoGroup=Sloka v nabdce Start:
+ReadyMemoTasks=Dal lohy:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Pprava k instalaci
+PreparingDesc=Prvodce instalac pipravuje instalaci produktu [name] na V pota.
+PreviousInstallNotCompleted=Instalace/odinstalace pedchozho produktu nebyla zcela dokonena. Aby mohla bt dokonena, muste restartovat V pota.%n%nPo restartovn Vaeho potae spuste znovu prvodce instalac, aby bylo mon dokonit instalaci produktu [name].
+CannotContinue=Prvodce instalac neme pokraovat. Ukonete prosm prvodce instalac klepnutm na tlatko Storno.
+ApplicationsFound=Nsledujc aplikace pistupuj k souborm, kter je teba bhem instalace aktualizovat. Doporuuje se povolit prvodci instalac, aby tyto aplikace automaticky zavel.
+ApplicationsFound2=Nsledujc aplikace pistupuj k souborm, kter je teba bhem instalace aktualizovat. Doporuuje se povolit prvodci instalac, aby tyto aplikace automaticky zavel. Po dokonen instalace se prvodce instalac pokus aplikace restartovat.
+CloseApplications=&Zavt aplikace automaticky
+DontCloseApplications=&Nezavrat aplikace
+ErrorCloseApplications=Prvodci instalac se nepodailo automaticky zavt vechny aplikace. Dve ne budete pokraovat, doporuuje se zavt veker aplikace pistupujc k souborm, kter je teba bhem instalace aktualizovat.
+
+; *** "Installing" wizard page
+WizardInstalling=Instalovn
+InstallingLabel=ekejte prosm, dokud prvodce instalac nedokon instalaci produktu [name] na V pota.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Dokonuje se instalace produktu [name]
+FinishedLabelNoIcons=Prvodce instalac dokonil instalaci produktu [name] na V pota.
+FinishedLabel=Prvodce instalac dokonil instalaci produktu [name] na V pota. Produkt lze spustit pomoc nainstalovanch zstupc.
+ClickFinish=Ukonete prvodce instalac klepnutm na tlatko Dokonit.
+FinishedRestartLabel=K dokonen instalace produktu [name] je nezbytn, aby prvodce instalac restartoval V pota. Chcete jej nyn restartovat?
+FinishedRestartMessage=K dokonen instalace produktu [name] je nezbytn, aby prvodce instalac restartoval V pota.%n%nChcete jej nyn restartovat?
+ShowReadmeCheck=Ano, chci zobrazit dokument "TIMNE"
+YesRadio=&Ano, chci nyn restartovat pota
+NoRadio=&Ne, pota restartuji pozdji
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Spustit %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Zobrazit %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Prvodce instalac vyaduje dal disk
+SelectDiskLabel2=Vlote prosm disk %1 a klepnte na tlatko OK.%n%nPokud se soubory na tomto disku nachzej v jin sloce ne v t, kter je zobrazena ne, pak zadejte sprvnou cestu nebo ji zvolte klepnutm na tlatko Prochzet.
+PathLabel=&Cesta:
+FileNotInDir2=Soubor "%1" nelze najt v "%2". Vlote prosm sprvn disk nebo zvolte jinou sloku.
+SelectDirectoryLabel=Specifikujte prosm umstn dalho disku.
+
+; *** Installation phase messages
+SetupAborted=Instalace nebyla zcela dokonena.%n%nOpravte prosm chybu a spuste prvodce instalac znovu.
+EntryAbortRetryIgnore=Akci zopakujete klepnutm na tlatko Opakovat. Tento krok vynechte klepnutm na tlatko Peskoit. Instalaci stornujete klepnutm na tlatko Peruit.
+
+; *** Installation status messages
+StatusClosingApplications=Zavraj se aplikace...
+StatusCreateDirs=Vytvej se sloky...
+StatusExtractFiles=Extrahuj se soubory...
+StatusCreateIcons=Vytvej se zstupci...
+StatusCreateIniEntries=Vytvej se zznamy v inicializanch souborech...
+StatusCreateRegistryEntries=Vytvej se zznamy v systmovm registru...
+StatusRegisterFiles=Registruj se soubory...
+StatusSavingUninstall=Ukldaj se informace pro odinstalaci produktu...
+StatusRunProgram=Dokonuje se instalace...
+StatusRestartingApplications=Restartuj se aplikace...
+StatusRollback=Proveden zmny se vracej zpt...
+
+; *** Misc. errors
+ErrorInternal2=Intern chyba: %1
+ErrorFunctionFailedNoCode=%1 selhala
+ErrorFunctionFailed=%1 selhala; kd %2
+ErrorFunctionFailedWithMessage=%1 selhala; kd %2.%n%3
+ErrorExecutingProgram=Nelze spustit soubor:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Dolo k chyb pi otevrn kle systmovho registru:%n%1\%2
+ErrorRegCreateKey=Dolo k chyb pi vytven kle systmovho registru:%n%1\%2
+ErrorRegWriteKey=Dolo k chyb pi zpisu do kle systmovho registru:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Dolo k chyb pi vytven zznamu v inicializanm souboru "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Akci zopakujete klepnutm na tlatko Opakovat. Tento soubor peskote klepnutm na tlatko Peskoit (nedoporuuje se). Instalaci stornujete klepnutm na tlatko Peruit.
+FileAbortRetryIgnore2=Akci zopakujete klepnutm na tlatko Opakovat. Pokraujete klepnutm na tlatko Peskoit (nedoporuuje se). Instalaci stornujete klepnutm na tlatko Peruit.
+SourceIsCorrupted=Zdrojov soubor je pokozen
+SourceDoesntExist=Zdrojov soubor "%1" neexistuje
+ExistingFileReadOnly=Existujc soubor je uren pouze pro ten.%n%nAtribut "pouze pro ten" odstrante a akci zopakujete klepnutm na tlatko Opakovat. Tento soubor peskote klepnutm na tlatko Peskoit. Instalaci stornujete klepnutm na tlatko Peruit.
+ErrorReadingExistingDest=Dolo k chyb pi pokusu o ten existujcho souboru:
+FileExists=Soubor ji existuje.%n%nM bt prvodcem instalace pepsn?
+ExistingFileNewer=Existujc soubor je novj ne ten, kter se prvodce instalac pokou nainstalovat. Doporuuje se ponechat existujc soubor.%n%nChcete jej ponechat?
+ErrorChangingAttr=Dolo k chyb pi pokusu o zmnu atribut existujcho souboru:
+ErrorCreatingTemp=Dolo k chyb pi pokusu o vytvoen souboru v clov sloce:
+ErrorReadingSource=Dolo k chyb pi pokusu o ten zdrojovho souboru:
+ErrorCopying=Dolo k chyb pi pokusu o zkoprovn souboru:
+ErrorReplacingExistingFile=Dolo k chyb pi pokusu o nahrazen existujcho souboru:
+ErrorRestartReplace=Funkce "RestartReplace" prvodce instalac selhala:
+ErrorRenamingTemp=Dolo k chyb pi pokusu o pejmenovn souboru v clov sloce:
+ErrorRegisterServer=Nelze zaregistrovat DLL/OCX: %1
+ErrorRegSvr32Failed=Voln RegSvr32 selhalo s nvratovm kdem %1
+ErrorRegisterTypeLib=Nelze zaregistrovat typovou knihovnu: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Dolo k chyb pi pokusu o oteven dokumentu "TIMNE".
+ErrorRestartingComputer=Prvodci instalac se nepodailo restartovat V pota. Restartujte jej prosm run.
+
+; *** Uninstaller messages
+UninstallNotFound=Soubor "%1" neexistuje. Produkt nelze odinstalovat.
+UninstallOpenError=Soubor "%1" nelze otevt. Produkt nelze odinstalovat.
+UninstallUnsupportedVer=Formt souboru se zznamy k odinstalaci produktu "%1" nebyl touto verz prvodce odinstalac rozpoznn. Produkt nelze odinstalovat
+UninstallUnknownEntry=V souboru obsahujcm informace k odinstalaci produktu byla zjitna neznm poloka (%1)
+ConfirmUninstall=Jste si opravdu jisti, e chcete produkt %1 a vechny jeho sousti odinstalovat?
+UninstallOnlyOnWin64=Tento produkt lze odinstalovat pouze v 64-bitovch verzch MS Windows.
+OnlyAdminCanUninstall=K odinstalaci tohoto produktu muste bt pihleni s prvy administrtora.
+UninstallStatusLabel=ekejte prosm, dokud produkt %1 nebude odinstalovn z Vaeho potae.
+UninstalledAll=Produkt %1 byl z Vaeho potae spn odinstalovn.
+UninstalledMost=Produkt %1 byl odinstalovn.%n%nNkter jeho sousti se odinstalovat nepodailo. Mete je vak odstranit run.
+UninstalledAndNeedsRestart=K dokonen odinstalace produktu %1 je nezbytn, aby prvodce odinstalac restartoval V pota.%n%nChcete jej nyn restartovat?
+UninstallDataCorrupted=Soubor "%1" je pokozen. Produkt nelze odinstalovat
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Odebrat sdlen soubor?
+ConfirmDeleteSharedFile2=Systm indikuje, e nsledujc sdlen soubor nen pouvn dnmi jinmi aplikacemi. M bt tento sdlen soubor prvodcem odinstalac odstrann?%n%nPokud nkter aplikace tento soubor pouvaj, pak po jeho odstrann nemusej pracovat sprvn. Pokud si nejste jisti, zvolte Ne. Ponechn tohoto souboru ve Vaem systmu nezpsob dnou kodu.
+SharedFileNameLabel=Nzev souboru:
+SharedFileLocationLabel=Umstn:
+WizardUninstalling=Stav odinstalace
+StatusUninstalling=Probh odinstalace produktu %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Probh instalace produktu %1.
+ShutdownBlockReasonUninstallingApp=Probh odinstalace produktu %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 verze %2
+AdditionalIcons=Dal zstupci:
+CreateDesktopIcon=Vytvoit zstupce na &ploe
+CreateQuickLaunchIcon=Vytvoit zstupce na panelu &Snadn sputn
+ProgramOnTheWeb=Aplikace %1 na internetu
+UninstallProgram=Odinstalovat aplikaci %1
+LaunchProgram=Spustit aplikaci %1
+AssocFileExtension=Vytvoit &asociaci mezi soubory typu %2 a aplikac %1
+AssocingFileExtension=Vytv se asociace mezi soubory typu %2 a aplikac %1...
+AutoStartProgramGroupDescription=Po sputn:
+AutoStartProgram=Spoutt aplikaci %1 automaticky
+AddonHostProgramNotFound=Aplikace %1 nebyla ve Vmi zvolen sloce nalezena.%n%nChcete pesto pokraovat?
diff --git a/dist/windows/languages/Danish.isl b/dist/windows/languages/Danish.isl
new file mode 100644
index 00000000..81654ccc
--- /dev/null
+++ b/dist/windows/languages/Danish.isl
@@ -0,0 +1,334 @@
+; Translation made with Translator 1.32 (http://www2.arnes.si/~sopjsimo/translator.html)
+; $Translator:NL=%n:TB=%t
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; ID: Danish.isl,v 5.5.3+ 2012/12/14 Thomas Vedel, thomas@veco.dk
+
+[LangOptions]
+LanguageName=Dansk
+LanguageID=$0406
+LanguageCodePage=1252
+
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=MS Shell Dlg
+;DialogFontSize=8
+;DialogFontStandardHeight=13
+;TitleFontName=Arial
+;TitleFontSize=29
+;WelcomeFontName=Arial
+;WelcomeFontSize=12
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+; *** Application titles
+SetupAppTitle=Installationsguide
+SetupWindowTitle=Installationsguide - %1
+UninstallAppTitle=Afinstaller
+UninstallAppFullTitle=Afinstallerer %1
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Bekrft
+ErrorTitle=Fejl
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Denne guide installerer %1. Fortst?
+LdrCannotCreateTemp=Kan ikke danne en midlertidig fil. Installationen afbrydes
+LdrCannotExecTemp=Kan ikke udfre et program i mappen til opbevaring af midlertidige filer. Installationen afbrydes
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nFejl %2: %3
+SetupFileMissing=Filen %1 mangler i installations-mappen. Ret fejlen eller skaf en ny kopi af programmet.
+SetupFileCorrupt=Installationsfilerne er delagt. Skaf en ny kopi af installationsprogrammet.
+SetupFileCorruptOrWrongVer=Installationsfilerne er delagt, eller ogs passer de ikke til denne version af installationen. Ret fejlen eller skaf en ny kopi af installationsprogrammet.
+InvalidParameter=En ugyldig parameter blev angivet p kommandolinjen:%n%n%1
+SetupAlreadyRunning=Installationsprogrammet krer allerede.
+WindowsVersionNotSupported=Programmet kan ikke anvendes p den version af Windows som denne computer krer.
+WindowsServicePackRequired=Dette program krver %1 med Service Pack %2 eller senere.
+NotOnThisPlatform=Programmet kan ikke anvendes p %1.
+OnlyOnThisPlatform=Programmet kan kun anvendes p %1.
+OnlyOnTheseArchitectures=Dette program kan kun installeres p Windows-versioner som er designet til denne processortype:%n%n%1
+MissingWOW64APIs=Den anvendte Windows-version indeholder ikke funktioner som er ndvendige for at foretage en 64-bit installation. Du kan afhjlpe problemet ved at installere Service Pack %1.
+WinVersionTooLowError=Programmet krver %1 version %2 eller nyere.
+WinVersionTooHighError=Programmet kan ikke installeres p %1 version %2 eller nyere.
+AdminPrivilegesRequired=Du skal vre logget p som administrator for at kunne installere dette program.
+PowerUserPrivilegesRequired=Du skal vre logget p som administrator eller vre medlem af superbruger-gruppen for at kunne installere dette program.
+SetupAppRunningError=Programmet %1 er aktivt.%n%nAfslut venligst frst programmet, og klik dernst OK for at fortstte, eller Annuller for at afbryde.
+UninstallAppRunningError=Programmet %1 er aktivt.%n%nAfslut venligst frst programmet, og klik dernst OK for at fortstte, eller Annuller for at afbryde.
+
+; *** Misc. errors
+ErrorCreatingDir=Installationen kunne ikke oprette mappen "%1"
+ErrorTooManyFilesInDir=Det kan ikke lade sig gre at oprette en fil i mappen "%1" fordi mappen indeholder for mange filer
+
+; *** Setup common messages
+ExitSetupTitle=Afbryd installationen
+ExitSetupMessage=Installationen er ikke frdiggjort. Hvis der afbrydes nu, vil programmet ikke blive installeret.%n%nInstallationsguiden skal kres igen for at frdiggre installationen.%n%nAfbryd installationen?
+AboutSetupMenuItem=&Om installationsguiden...
+AboutSetupTitle=Om installationsguiden
+AboutSetupMessage=%1 version %2%n%3%n%n%1 hjemmeside:%n%4
+AboutSetupNote=
+
+; *** Buttons
+TranslatorNote=
+ButtonBack=< &Tilbage
+ButtonNext=N&ste >
+ButtonInstall=&Installer
+ButtonOK=&OK
+ButtonCancel=&Afbryd
+ButtonYes=&Ja
+ButtonYesToAll=Ja til A&lle
+ButtonNo=&Nej
+ButtonNoToAll=Nej t&il Alle
+ButtonFinish=&Frdig
+ButtonBrowse=&Gennemse...
+ButtonWizardBrowse=G&ennemse...
+ButtonNewFolder=&Opret Ny Mappe
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Vlg installationssprog
+SelectLanguageLabel=Vlg hvilket sprog der skal anvendes under installationen:
+
+; *** Common wizard text
+ClickNext=Klik Nste for at fortstte, eller Afbryd for at afslutte.
+BeveledLabel=
+BrowseDialogTitle=Udvlg mappe
+BrowseDialogLabel=Vlg en mappe fra nedenstende liste. Klik dernst OK.
+NewFolderName=Ny Mappe
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Velkommen til [name] installationsguiden
+WelcomeLabel2=Denne guide installerer [name/ver] p computeren.%n%nDet anbefales at alle andre programmer afsluttes fr der fortsttes.
+
+; *** "Password" wizard page
+WizardPassword=Adgangskode
+PasswordLabel1=Installationen er beskyttet med adgangskode.
+PasswordLabel3=Indtast adgangskoden og klik Nste for at fortstte. Der skelnes mellem store og sm bogstaver.
+PasswordEditLabel=&Adgangskode:
+IncorrectPassword=Adgangskoden er ikke korrekt. Prv igen, og husk at der skelnes mellem store og sm bogstaver.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licensaftale
+LicenseLabel=Ls venligst den flgende information, som er vigtig, inden du fortstter.
+LicenseLabel3=Ls venligst licensaftalen. Du skal acceptere betingelserne i aftalen for at fortstte installationen.
+LicenseAccepted=Jeg &accepterer aftalen
+LicenseNotAccepted=Jeg accepterer &ikke aftalen
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Ls flgende information inden du fortstter.
+InfoBeforeClickLabel=Tryk p Nste, nr du er klar til at fortstte installationen.
+WizardInfoAfter=Information
+InfoAfterLabel=Ls flgende information inden du fortstter.
+InfoAfterClickLabel=Tryk p Nste, nr du er klar til at fortstte installationen.
+
+; *** "User Information" wizard page
+WizardUserInfo=Brugerinformation
+UserInfoDesc=Indtast dine oplysninger.
+UserInfoName=&Brugernavn:
+UserInfoOrg=&Organisation:
+UserInfoSerial=&Serienummer:
+UserInfoNameRequired=Du skal indtaste et navn.
+
+; *** "Select Destination Directory" wizard page
+WizardSelectDir=Vlg installationsmappe
+SelectDirDesc=Hvor skal [name] installeres?
+SelectDirLabel3=Guiden installerer [name] i flgende mappe.
+SelectDirBrowseLabel=Klik Nste for at fortstte. Hvis du vil vlge en anden mappe skal du klikke Gennemse.
+DiskSpaceMBLabel=Der skal vre mindst [mb] MB fri diskplads.
+CannotInstallToNetworkDrive=Programmet kan ikke installeres p et netvrksdrev.
+CannotInstallToUNCPath=Programmet kan ikke installeres til en UNC-sti.
+InvalidPath=Du skal indtaste den komplette sti med drevangivelse; for eksempel:%n%nC:\APP%n%neller et UNC-stinavn p formen:%n%n\\server\share
+InvalidDrive=Drevet eller UNC-stien du valgte eksisterer ikke. Vlg venligst noget andet.
+DiskSpaceWarningTitle=Ikke nok fri diskplads.
+DiskSpaceWarning=Guiden krver mindst %1 KB fri diskplads for at kunne foretage installationen, men det valgte drev har kun %2 KB diskplads tilgngelig.%n%nVil du installere alligevel?
+DirNameTooLong=Mappens eller stiens navn er for langt.
+InvalidDirName=Mappenavnet er ikke gyldigt.
+BadDirName32=Navne p mapper m ikke indeholde nogen af flgende tegn:%n%n%1
+DirExistsTitle=Mappen eksisterer
+DirExists=Mappen:%n%n%1%n%neksisterer allerede. nsker du at installere i denne mappe alligevel?
+DirDoesntExistTitle=Mappen eksisterer ikke.
+DirDoesntExist=Mappen:%n%n%1%n%neksisterer ikke. nsker du at oprette denne mappe?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Vlg Komponenter
+SelectComponentsDesc=Hvilke komponenter skal installeres?
+SelectComponentsLabel2=Vlg de komponenter der skal installeres, og fjern markering fra dem der ikke skal installeres. Klik Nste for at fortstte.
+FullInstallation=Komplet installation
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Kompakt installation
+CustomInstallation=Tilpasset installation
+NoUninstallWarningTitle=Komponenterne er installeret
+NoUninstallWarning=Installationen har konstateret at flgende komponenter allerede er installeret p computeren:%n%n%1%n%nAt fravlge komponenterne vil ikke fjerne dem.%n%nFortst alligevel?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Det valgte krver mindst [mb] MB fri plads p harddisken.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Vlg ekstra opgaver
+SelectTasksDesc=Hvilke andre opgaver skal udfres?
+SelectTasksLabel2=Vlg hvilke ekstraopgaver der skal udfres under installationen af [name] og klik p Nste.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Vlg Start-menu mappe
+SelectStartMenuFolderDesc=Hvor skal installationen oprette genveje til programmet?
+SelectStartMenuFolderLabel3=Installationsguiden opretter genveje (ikoner) til programmet i flgende mappe i Start-menuen.
+SelectStartMenuFolderBrowseLabel=Klik Nste for at fortstte. Hvis du vil vlge en anden mappe skal du klikke Gennemse.
+MustEnterGroupName=Du skal angive et mappenavn.
+GroupNameTooLong=Mappens eller stiens navn er for langt.
+InvalidGroupName=Mappenavnet er ikke gyldigt.
+BadGroupName=Tegnene %1 m ikke anvendes i navnet p en programgruppe. Angiv andet navn.
+NoProgramGroupCheck2=Opret &ingen programgruppe i Start-menuen
+
+; *** "Ready to Install" wizard page
+WizardReady=Klar til at installere
+ReadyLabel1=Installationsguiden er nu klar til at installere [name] p computeren.
+ReadyLabel2a=Tryk p Installer for at fortstte med installationen, eller tryk p Tilbage hvis du nsker at se eller ndre dine indstillinger.
+ReadyLabel2b=Tryk p Installer for at fortstte med installationen.
+ReadyMemoUserInfo=Oplysninger om brugeren:
+ReadyMemoDir=Installationsmappe :
+ReadyMemoType=Installationstype:
+ReadyMemoComponents=Valgte komponenter:
+ReadyMemoGroup=Start-menu mappe:
+ReadyMemoTasks=Valgte ekstraopgaver:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Klargr installationen
+PreparingDesc=Installationsguiden klargr installationen af [name] p din computer.
+PreviousInstallNotCompleted=Den foregende installation eller fjernelse af et program er ikke afsluttet. Du skal genstarte computeren for at afslutte den foregende installation.%n%nEfter genstarten skal du kre installationsguiden igen for at fuldfre installationen af [name].
+CannotContinue=Installationsguiden kan ikke fortstte. Klik p Fortryd for at afslutte.
+ApplicationsFound=Flgende programmer bruger filer som skal opdateres. Det anbefales at du giver installationsguiden lov til automatisk at lukke programmerne.
+ApplicationsFound2=Flgende programmer bruger filer som skal opdateres. Det anbefales at du giver installationsguiden lov til automatisk at lukke programmerne. Installationsguiden vil forsge at genstarte programmerne nr installationen er afsluttet.
+CloseApplications=&Luk programmerne automatisk
+DontCloseApplications=Luk &ikke programmerne
+ErrorCloseApplications=Installationsguiden kan ikke automatisk lukke alle programmerne. Det anbefales at du lukker alle programmer som bruger filer der skal opdateres, inden installationsguiden fortstter.
+
+; *** "Installing" wizard page
+WizardInstalling=Installerer
+InstallingLabel=Vent mens installationsguiden installerer [name] p din computer.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Afslutter installation af [name]
+FinishedLabelNoIcons=Installationsguiden har installeret [name] p din computer.
+FinishedLabel=Installationsguiden har installeret [name] p din computer. Programmet kan startes ved at vlge de oprettede genveje.
+ClickFinish=Klik p Frdig for at afslutte installationsprogrammet.
+FinishedRestartLabel=For at fuldfre installationen af [name], skal din computer genstartes. Vil du genstarte computeren nu?
+FinishedRestartMessage=For at fuldfre installationen af [name], skal din computer genstartes.%n%nVil du genstarte computeren nu?
+ShowReadmeCheck=Ja, jeg vil gerne lse README filen
+YesRadio=&Ja, genstart computeren nu
+NoRadio=&Nej, jeg genstarter selv computeren senere
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Kr %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Ls %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Installationsprogrammet skal bruge den nste disk(ette)
+SelectDiskLabel2=Indst disk nr. %1 og klik OK.%n%nHvis filerne findes i en anden mappe s indtast stien eller klik Gennemse.
+PathLabel=&Stinavn:
+FileNotInDir2=Filen "%1" findes ikke i "%2". Indst den rigtige disk eller vlg en anden mappe.
+SelectDirectoryLabel=Angiv placeringen af den nste disk.
+
+; *** Installation phase messages
+SetupAborted=Installationen blev ikke gennemfrt.%n%nInstaller igen, hent programmet p ny, eller kontakt producenten for hjlp.
+EntryAbortRetryIgnore=Klik Gentag for at forsge igen, Ignorer for at fortstte alligevel, eller Afbryd for at annullere installationen.
+
+; *** Installation status messages
+StatusClosingApplications=Lukker programmer...
+StatusCreateDirs=Opretter mapper...
+StatusExtractFiles=Udpakker filer...
+StatusCreateIcons=Opretter program-genveje...
+StatusCreateIniEntries=Opretter INI-filer...
+StatusCreateRegistryEntries=Opdaterer registrerings-databasen...
+StatusRegisterFiles=Registrerer filer...
+StatusSavingUninstall=Gemmer information om afinstallation...
+StatusRunProgram=Frdiggr installation...
+StatusRestartingApplications=Genstarter programmer...
+StatusRollback=Fjerner programmet igen...
+
+; *** Misc. errors
+ErrorInternal2=Intern fejl: %1
+ErrorFunctionFailedNoCode=%1 fejlede
+ErrorFunctionFailed=%1 fejlede; kode %2
+ErrorFunctionFailedWithMessage=%1 fejlede; kode %2.%n%3
+ErrorExecutingProgram=Kan ikke udfre filen:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Fejl ved bning af registreringsngle:%n%1\%2
+ErrorRegCreateKey=Fejl ved oprettelse af registreringsngle:%n%1\%2
+ErrorRegWriteKey=Fejl ved skrivning til registreringsngle:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Fejl ved oprettelse af variabel i INI-filen "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Klik Gentag for at prve igen, Ignorer for at springe filen over (kan normalt ikke anbefales) eller Afbryd for at afslutte installationen.
+FileAbortRetryIgnore2=Klik Gentag for at prve igen, Ignorer for at fortstte alligevel (kan normalt ikke anbefales) eller Afbryd for at afslutte installationen.
+SourceIsCorrupted=Kildefilen er beskadiget
+SourceDoesntExist=Kildefilen "%1" findes ikke
+ExistingFileReadOnly=Den eksisterende fil er markeret som skrivebeskyttet.%n%nKlik Gentag for at prve igen (efter at du har fjernet skrivebeskyttelsen), Ignorer for at springe filen over eller Afbryd for at afslutte installationen.
+ErrorReadingExistingDest=Der opsted en fejl ved forsg p at lse den eksisterende fil:
+FileExists=Filen eksisterer allerede.%n%nSkal Installationsguiden overskrive den?
+ExistingFileNewer=Den eksisterende fil er nyere end den installation forsger at skrive. Det anbefales at beholde den eksisterende fil.%n%n Skal den eksisterende fil beholdes?
+ErrorChangingAttr=Der opstod en fejl ved forsg p at ndre attributter for den eksisterende fil:
+ErrorCreatingTemp=En fejl opstod ved forsg p at oprette en fil i mappen:
+ErrorReadingSource=En fejl opstod ved forsg p at lse kildefilen:
+ErrorCopying=En fejl opstod ved forsg p at kopiere en fil:
+ErrorReplacingExistingFile=En fejl opstod ved forsg p at overskrive den eksisterende fil:
+ErrorRestartReplace=Genstart/Erstat fejlede:
+ErrorRenamingTemp=En fejl opstod ved forsg p at omdbe en fil i modtagemappen:
+ErrorRegisterServer=Kan ikke registrere DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 fejlede med exit kode %1
+ErrorRegisterTypeLib=Kan ikke registrere typebiblioteket: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Der opstod en fejl ved forsg p at bne README filen.
+ErrorRestartingComputer=Installationen kunne ikke genstarte computeren. Genstart venligst computeren manuelt.
+
+; *** Uninstaller messages
+UninstallNotFound=Filen "%1" eksisterer ikke. Afinstallationen kan ikke fortstte.
+UninstallOpenError=Filen "%1" kunne ikke bnes. Kan ikke afinstallere
+UninstallUnsupportedVer=Afinstallations-logfilen "%1" er i et format der ikke kan genkendes af denne version af afinstallations-programmet. Afinstallationen afbrydes
+UninstallUnknownEntry=Der er en ukendt kommando (%1) i afinstallings-logfilen.
+ConfirmUninstall=Er du sikker p at %1 og alle tilhrende komponenter skal fjernes fra computeren?
+UninstallOnlyOnWin64=Denne installation kan kun fjernes p 64-bit Windows-versioner
+OnlyAdminCanUninstall=Programmet kan kun fjernes af en bruger med administrator-rettigheder.
+UninstallStatusLabel=Vent venligst imens %1 fjernes.
+UninstalledAll=%1 er fjernet uden fejl.
+UninstalledMost=%1 Afinstallation er afsluttet.%n%nNogle filer kunne ikke fjernes. Fjern dem manuelt, hvis du ikke nsker de skal blive liggende.
+UninstalledAndNeedsRestart=For at afslutte afinstallation af %1 skal computeren genstartes.%n%nVil du genstarte nu?
+UninstallDataCorrupted="%1" er beskadiget. Afinstallation kan ikke foretages
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Fjern delt fil?
+ConfirmDeleteSharedFile2=Systemet mener ikke lngere at flgende delte fil(er) benyttes. Skal den/de delte fil(er) fjernes under afinstallationen?%n%nHvis du er usikker s vlg Nej. Beholdes filen p maskinen, vil den ikke gre nogen skade, men hvis filen fjernes, selv om den stadig anvendes, bliver de programmer, der anvender filen, ustabile
+SharedFileNameLabel=Filnavn:
+SharedFileLocationLabel=Placering:
+WizardUninstalling=Status for afinstallation
+StatusUninstalling=Afinstallerer %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installerer %1.
+ShutdownBlockReasonUninstallingApp=Afinstallerer %1.
+
+[CustomMessages]
+NameAndVersion=%1 version %2
+AdditionalIcons=Ekstra ikoner:
+CreateDesktopIcon=Lav ikon p skrive&bordet
+CreateQuickLaunchIcon=Lav &hurtigstart-ikon
+ProgramOnTheWeb=%1 p internettet
+UninstallProgram=Afinstaller (fjern) %1
+LaunchProgram=&Kr %1
+AssocFileExtension=Sammen&kd %1 med filtypen %2
+AssocingFileExtension=Sammenkder %1 med filtypen %2...
+AutoStartProgramGroupDescription=Start:
+AutoStartProgram=Start automatisk %1
+AddonHostProgramNotFound=%1 blev ikke fundet i den mappe du angav.%n%nnsker du alligevel at fortstte?
diff --git a/dist/windows/languages/Dutch.isl b/dist/windows/languages/Dutch.isl
new file mode 100644
index 00000000..4fb7cbdb
--- /dev/null
+++ b/dist/windows/languages/Dutch.isl
@@ -0,0 +1,314 @@
+; *** Inno Setup version 5.5.3+ Dutch messages ***
+;
+; This file is based on user-contributed translations by various authors
+;
+; Maintained by Martijn Laan (mlaan@jrsoftware.org)
+
+[LangOptions]
+LanguageName=Nederlands
+LanguageID=$0413
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Setup
+SetupWindowTitle=Setup - %1
+UninstallAppTitle=Verwijderen
+UninstallAppFullTitle=%1 verwijderen
+
+; *** Misc. common
+InformationTitle=Informatie
+ConfirmTitle=Bevestigen
+ErrorTitle=Fout
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Hiermee wordt %1 genstalleerd. Wilt u doorgaan?
+LdrCannotCreateTemp=Kan geen tijdelijk bestand maken. Setup wordt afgesloten
+LdrCannotExecTemp=Kan een bestand in de tijdelijke map niet uitvoeren. Setup wordt afgesloten
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nFout %2: %3
+SetupFileMissing=Het bestand %1 ontbreekt in de installatiemap. Corrigeer dit probleem of gebruik een andere kopie van het programma.
+SetupFileCorrupt=De installatiebestanden zijn beschadigd. Gebruik een andere kopie van het programma.
+SetupFileCorruptOrWrongVer=De installatiebestanden zijn beschadigd, of zijn niet compatibel met deze versie van Setup. Corrigeer dit probleem of gebruik een andere kopie van het programma.
+InvalidParameter=Er werd een ongeldige schakeloptie opgegeven op de opdrachtregel:%n%n%1
+SetupAlreadyRunning=Setup is al gestart.
+WindowsVersionNotSupported=Dit programma ondersteunt de versie van Windows die u gebruikt niet.
+WindowsServicePackRequired=Dit programma vereist %1 Service Pack %2 of hoger.
+NotOnThisPlatform=Dit programma kan niet worden uitgevoerd onder %1.
+OnlyOnThisPlatform=Dit programma moet worden uitgevoerd onder %1.
+OnlyOnTheseArchitectures=Dit programma kan alleen genstalleerd worden onder versies van Windows ontworpen voor de volgende processor architecturen:%n%n%1
+MissingWOW64APIs=De versie van Windows die u gebruikt bevat niet de door Setup benodige functionaliteit om een 64-bit installatie uit te voeren. Installeer Service Pack %1 om dit probleem te corrigeren.
+WinVersionTooLowError=Dit programma vereist %1 versie %2 of hoger.
+WinVersionTooHighError=Dit programma kan niet worden genstalleerd onder %1 versie %2 of hoger.
+AdminPrivilegesRequired=U moet aangemeld zijn als een systeembeheerder om dit programma te kunnen installeren.
+PowerUserPrivilegesRequired=U moet ingelogd zijn als systeembeheerder of als gebruiker met systeembeheerders rechten om dit programma te kunnen installeren.
+SetupAppRunningError=Setup heeft vastgesteld dat %1 op dit moment actief is.%n%nSluit alle vensters van dit programma, en klik daarna op OK om verder te gaan, of op Annuleren om Setup af te sluiten.
+UninstallAppRunningError=Het verwijderprogramma heeft vastgesteld dat %1 op dit moment actief is.%n%nSluit alle vensters van dit programma, en klik daarna op OK om verder te gaan, of op Annuleren om het verwijderen af te breken.
+
+; *** Misc. errors
+ErrorCreatingDir=Setup kan de map "%1" niet maken
+ErrorTooManyFilesInDir=Kan geen bestand maken in de map "%1" omdat deze te veel bestanden bevat
+
+; *** Setup common messages
+ExitSetupTitle=Setup afsluiten
+ExitSetupMessage=Setup is niet voltooid. Als u nu afsluit, wordt het programma niet genstalleerd.%n%nU kunt Setup later opnieuw uitvoeren om de installatie te voltooien.%n%nSetup afsluiten?
+AboutSetupMenuItem=&Over Setup...
+AboutSetupTitle=Over Setup
+AboutSetupMessage=%1 versie %2%n%3%n%n%1-homepage:%n%4
+AboutSetupNote=
+TranslatorNote=Dutch translation maintained by Martijn Laan (mlaan@jrsoftware.org)
+
+; *** Buttons
+ButtonBack=< Vo&rige
+ButtonNext=&Volgende >
+ButtonInstall=&Installeren
+ButtonOK=OK
+ButtonCancel=Annuleren
+ButtonYes=&Ja
+ButtonYesToAll=Ja op &alles
+ButtonNo=&Nee
+ButtonNoToAll=N&ee op alles
+ButtonFinish=&Voltooien
+ButtonBrowse=&Bladeren...
+ButtonWizardBrowse=B&laderen...
+ButtonNewFolder=&Nieuwe map maken
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Taalkeuze voor Setup
+SelectLanguageLabel=Selecteer de taal welke Setup gebruikt tijdens de installatie:
+
+; *** Common wizard text
+ClickNext=Klik op Volgende om verder te gaan of op Annuleren om Setup af te sluiten.
+BeveledLabel=
+BrowseDialogTitle=Map Selecteren
+BrowseDialogLabel=Selecteer een map in onderstaande lijst en klik daarna op OK.
+NewFolderName=Nieuwe map
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Welkom bij het installatieprogramma van [name].
+WelcomeLabel2=Hiermee wordt [name/ver] genstalleerd op deze computer.%n%nU wordt aanbevolen alle actieve programma's af te sluiten voordat u verder gaat.
+
+; *** "Password" wizard page
+WizardPassword=Wachtwoord
+PasswordLabel1=Deze installatie is beveiligd met een wachtwoord.
+PasswordLabel3=Voer het wachtwoord in en klik op Volgende om verder te gaan. Wachtwoorden zijn hoofdlettergevoelig.
+PasswordEditLabel=&Wachtwoord:
+IncorrectPassword=Het ingevoerde wachtwoord is niet correct. Probeer het opnieuw.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licentieovereenkomst
+LicenseLabel=Lees de volgende belangrijke informatie voordat u verder gaat.
+LicenseLabel3=Lees de volgende licentieovereenkomst. Gebruik de schuifbalk of druk op de knop Page Down om de rest van de overeenkomst te zien.
+LicenseAccepted=Ik &accepteer de licentieovereenkomst
+LicenseNotAccepted=Ik accepteer de licentieovereenkomst &niet
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informatie
+InfoBeforeLabel=Lees de volgende belangrijke informatie voordat u verder gaat.
+InfoBeforeClickLabel=Klik op Volgende als u gereed bent om verder te gaan met Setup.
+WizardInfoAfter=Informatie
+InfoAfterLabel=Lees de volgende belangrijke informatie voordat u verder gaat.
+InfoAfterClickLabel=Klik op Volgende als u gereed bent om verder te gaan met Setup.
+
+; *** "User Information" wizard page
+WizardUserInfo=Gebruikersinformatie
+UserInfoDesc=Vul hier uw informatie in.
+UserInfoName=&Gebruikersnaam:
+UserInfoOrg=&Organisatie:
+UserInfoSerial=&Serienummer:
+UserInfoNameRequired=U moet een naam invullen.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Kies de doelmap
+SelectDirDesc=Waar moet [name] genstalleerd worden?
+SelectDirLabel3=Setup zal [name] in de volgende map installeren.
+SelectDirBrowseLabel=Klik op Volgende om door te gaan. Klik op Bladeren om een andere map te kiezen.
+DiskSpaceMBLabel=Er is ten minste [mb] MB vrije schijfruimte vereist.
+CannotInstallToNetworkDrive=Setup kan niet installeren naar een netwerkstation.
+CannotInstallToUNCPath=Setup kan niet installeren naar een UNC-pad.
+InvalidPath=U moet een volledig pad met stationsletter invoeren; bijvoorbeeld:%nC:\APP%n%nof een UNC-pad zoals:%n%n\\server\share
+InvalidDrive=Het geselecteerde station bestaat niet. Kies een ander station.
+DiskSpaceWarningTitle=Onvoldoende schijfruimte
+DiskSpaceWarning=Setup vereist ten minste %1 kB vrije schijfruimte voor het installeren, maar het geselecteerde station heeft slechts %2 kB beschikbaar.%n%nWilt u toch doorgaan?
+DirNameTooLong=De mapnaam of het pad is te lang.
+InvalidDirName=De mapnaam is ongeldig.
+BadDirName32=Mapnamen mogen geen van de volgende tekens bevatten:%n%n%1
+DirExistsTitle=Map bestaat al
+DirExists=De map:%n%n%1%n%nbestaat al. Wilt u toch naar die map installeren?
+DirDoesntExistTitle=Map bestaat niet
+DirDoesntExist=De map:%n%n%1%n%nbestaat niet. Wilt u de map aanmaken?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Selecteer componenten
+SelectComponentsDesc=Welke componenten moeten genstalleerd worden?
+SelectComponentsLabel2=Selecteer de componenten die u wilt installeren. Klik op Volgende als u klaar bent om verder te gaan.
+FullInstallation=Volledige installatie
+CompactInstallation=Compacte installatie
+CustomInstallation=Aangepaste installatie
+NoUninstallWarningTitle=Component bestaat
+NoUninstallWarning=Setup heeft gedetecteerd dat de volgende componenten al genstalleerd zijn op uw computer:%n%n%1%n%nAls u de selectie van deze componenten ongedaan maakt, worden ze niet verwijderd.%n%nWilt u toch doorgaan?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=De huidige selectie vereist ten minste [mb] MB vrije schijfruimte.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Selecteer extra taken
+SelectTasksDesc=Welke extra taken moeten uitgevoerd worden?
+SelectTasksLabel2=Selecteer de extra taken die u door Setup wilt laten uitvoeren bij het installeren van [name], en klik vervolgens op Volgende.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Selecteer menu Start map
+SelectStartMenuFolderDesc=Waar moeten de snelkoppelingen van het programma geplaatst worden?
+SelectStartMenuFolderLabel3=Setup plaatst de snelkoppelingen van het programma in de volgende menu Start map.
+SelectStartMenuFolderBrowseLabel=Klik op Volgende om door te gaan. Klik op Bladeren om een andere map te kiezen.
+MustEnterGroupName=U moet een mapnaam invoeren.
+GroupNameTooLong=De mapnaam of het pad is te lang.
+InvalidGroupName=De mapnaam is ongeldig.
+BadGroupName=De mapnaam mag geen van de volgende tekens bevatten:%n%n%1
+NoProgramGroupCheck2=&Geen menu Start map maken
+
+; *** "Ready to Install" wizard page
+WizardReady=Het voorbereiden van de installatie is gereed
+ReadyLabel1=Setup is nu gereed om te beginnen met het installeren van [name] op deze computer.
+ReadyLabel2a=Klik op Installeren om verder te gaan met installeren, of klik op Vorige als u instellingen wilt terugzien of veranderen.
+ReadyLabel2b=Klik op Installeren om verder te gaan met installeren.
+ReadyMemoUserInfo=Gebruikersinformatie:
+ReadyMemoDir=Doelmap:
+ReadyMemoType=Installatietype:
+ReadyMemoComponents=Geselecteerde componenten:
+ReadyMemoGroup=Menu Start map:
+ReadyMemoTasks=Extra taken:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Bezig met het voorbereiden van de installatie
+PreparingDesc=Setup is bezig met het voorbereiden van de installatie van [name].
+PreviousInstallNotCompleted=De installatie/verwijdering van een vorig programma is niet voltooid. U moet uw computer opnieuw opstarten om die installatie te voltooien.%n%nStart [name] Setup nogmaals als uw computer opnieuw is opgestart.
+CannotContinue=Setup kan niet doorgaan. Klik op annuleren om af te sluiten.
+ApplicationsFound=De volgende programma's gebruiken bestanden die moeten worden bijgewerkt door Setup. U wordt aanbevolen Setup toe te staan om automatisch deze programma's af te sluiten.
+ApplicationsFound2=De volgende programma's gebruiken bestanden die moeten worden bijgewerkt door Setup. U wordt aanbevolen Setup toe te staan om automatisch deze programma's af te sluiten. Nadat de installatie is voltooid zal Setup proberen de applicaties opnieuw op te starten.
+CloseApplications=&Programma's automatisch afsluiten
+DontCloseApplications=Programma's &niet afsluiten
+ErrorCloseApplications=Setup kon niet alle programma's automatisch afsluiten. U wordt aanbevolen alle programma's die bestanden gebruiken die moeten worden bijgewerkt door Setup af te sluiten voordat u verder gaat.
+
+; *** "Installing" wizard page
+WizardInstalling=Bezig met installeren
+InstallingLabel=Setup installeert [name] op uw computer. Een ogenblik geduld...
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Setup heeft het installeren van [name] op deze computer voltooid.
+FinishedLabelNoIcons=Setup heeft het installeren van [name] op deze computer voltooid.
+FinishedLabel=Setup heeft het installeren van [name] op deze computer voltooid. U kunt het programma uitvoeren met de genstalleerde snelkoppelingen.
+ClickFinish=Klik op Voltooien om Setup te beindigen.
+FinishedRestartLabel=Setup moet de computer opnieuw opstarten om de installatie van [name] te voltooien. Wilt u nu opnieuw opstarten?
+FinishedRestartMessage=Setup moet uw computer opnieuw opstarten om de installatie van [name] te voltooien.%n%nWilt u nu opnieuw opstarten?
+ShowReadmeCheck=Ja, ik wil het bestand Leesmij zien
+YesRadio=&Ja, start de computer nu opnieuw op
+NoRadio=&Nee, ik start de computer later opnieuw op
+RunEntryExec=Start %1
+RunEntryShellExec=Bekijk %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Setup heeft de volgende diskette nodig
+SelectDiskLabel2=Voer diskette %1 in en klik op OK.%n%nAls de bestanden op deze diskette in een andere map gevonden kunnen worden dan die hieronder wordt getoond, voer dan het juiste pad in of klik op Bladeren.
+PathLabel=&Pad:
+FileNotInDir2=Kan het bestand "%1" niet vinden in "%2". Voer de juiste diskette in of kies een andere map.
+SelectDirectoryLabel=Geef de locatie van de volgende diskette.
+
+; *** Installation phase messages
+SetupAborted=Setup is niet voltooid.%n%nCorrigeer het probleem en voer Setup opnieuw uit.
+EntryAbortRetryIgnore=Klik op Opnieuw om het opnieuw te proberen, op Negeren om toch door te gaan, of op Afbreken om de installatie af te breken.
+
+; *** Installation status messages
+StatusClosingApplications=Programma's afsluiten...
+StatusCreateDirs=Mappen maken...
+StatusExtractFiles=Bestanden uitpakken...
+StatusCreateIcons=Snelkoppelingen maken...
+StatusCreateIniEntries=INI-gegevens instellen...
+StatusCreateRegistryEntries=Registergegevens instellen...
+StatusRegisterFiles=Bestanden registreren...
+StatusSavingUninstall=Verwijderingsinformatie opslaan...
+StatusRunProgram=Installatie voltooien...
+StatusRestartingApplications=Programma's opnieuw starten...
+StatusRollback=Veranderingen ongedaan maken...
+
+; *** Misc. errors
+ErrorInternal2=Interne fout: %1
+ErrorFunctionFailedNoCode=%1 mislukt
+ErrorFunctionFailed=%1 mislukt; code %2
+ErrorFunctionFailedWithMessage=%1 mislukt; code %2.%n%3
+ErrorExecutingProgram=Kan bestand niet uitvoeren:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Fout bij het openen van registersleutel:%n%1\%2
+ErrorRegCreateKey=Fout bij het maken van registersleutel:%n%1\%2
+ErrorRegWriteKey=Fout bij het schrijven naar registersleutel:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Fout bij het maken van een INI-instelling in bestand "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Klik op Opnieuw om het opnieuw te proberen, op Negeren om toch door te gaan (niet aanbevolen), of op Afbreken om de installatie af te breken.
+FileAbortRetryIgnore2=Klik op Opnieuw om het opnieuw te proberen, op Negeren om toch door te gaan (niet aanbevolen), of op Afbreken om de installatie af te breken.
+SourceIsCorrupted=Het bronbestand is beschadigd
+SourceDoesntExist=Het bronbestand "%1" bestaat niet
+ExistingFileReadOnly=Het bestaande bestand is gemarkeerd als alleen-lezen.%n%nKlik op Opnieuw om het kenmerk alleen-lezen te verwijderen en opnieuw te proberen, op Negeren om dit bestand over te slaan, of op Afbreken om de installatie af te breken.
+ErrorReadingExistingDest=Er is een fout opgetreden bij het lezen van het bestaande bestand:
+FileExists=Het bestand bestaat al.%n%nWilt u dat Setup het overschrijft?
+ExistingFileNewer=Het bestaande bestand is nieuwer dan het bestand dat Setup probeert te installeren. U wordt aanbevolen het bestaande bestand te behouden.%n%nWilt u het bestaande bestand behouden?
+ErrorChangingAttr=Er is een fout opgetreden bij het wijzigen van de kenmerken van het bestaande bestand:
+ErrorCreatingTemp=Er is een fout opgetreden bij het maken van een bestand in de doelmap:
+ErrorReadingSource=Er is een fout opgetreden bij het lezen van het bronbestand:
+ErrorCopying=Er is een fout opgetreden bij het kopiren van een bestand:
+ErrorReplacingExistingFile=Er is een fout opgetreden bij het vervangen van het bestaande bestand:
+ErrorRestartReplace=Vervangen na opnieuw starten is mislukt:
+ErrorRenamingTemp=Er is een fout opgetreden bij het hernoemen van een bestand in de doelmap:
+ErrorRegisterServer=Kan de DLL/OCX niet registreren: %1
+ErrorRegSvr32Failed=RegSvr32 mislukt met afsluitcode %1
+ErrorRegisterTypeLib=Kan de type library niet registreren: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Er is een fout opgetreden bij het openen van het Leesmij-bestand.
+ErrorRestartingComputer=Setup kan de computer niet opnieuw opstarten. Doe dit handmatig.
+
+; *** Uninstaller messages
+UninstallNotFound=Bestand "%1" bestaat niet. Kan het programma niet verwijderen.
+UninstallUnsupportedVer=Het installatie-logbestand "%1" heeft een formaat dat niet herkend wordt door deze versie van het verwijderprogramma. Kan het programma niet verwijderen
+UninstallUnknownEntry=Er is een onbekend gegeven (%1) aangetroffen in het installatie-logbestand
+ConfirmUninstall=Weet u zeker dat u %1 en alle bijbehorende componenten wilt verwijderen?
+UninstallOnlyOnWin64=Deze installatie kan alleen worden verwijderd onder 64-bit Windows.
+OnlyAdminCanUninstall=Deze installatie kan alleen worden verwijderd door een gebruiker met administratieve rechten.
+UninstallStatusLabel=%1 wordt verwijderd van uw computer. Een ogenblik geduld.
+UninstallOpenError=Bestand "%1" kon niet worden geopend. Kan het verwijderen niet voltooien.
+UninstalledAll=%1 is met succes van deze computer verwijderd.
+UninstalledMost=Het verwijderen van %1 is voltooid.%n%nEnkele elementen konden niet verwijderd worden. Deze kunnen handmatig verwijderd worden.
+UninstalledAndNeedsRestart=Om het verwijderen van %1 te voltooien, moet uw computer opnieuw worden opgestart.%n%nWilt u nu opnieuw opstarten?
+UninstallDataCorrupted="%1" bestand is beschadigd. Kan verwijderen niet voltooien
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Gedeeld bestand verwijderen?
+ConfirmDeleteSharedFile2=Het systeem geeft aan dat het volgende gedeelde bestand niet langer gebruikt wordt door enig programma. Wilt u dat dit gedeelde bestand verwijderd wordt?%n%nAls dit bestand toch nog gebruikt wordt door een programma en het verwijderd wordt, werkt dat programma misschien niet meer correct. Als u het niet zeker weet, kies dan Nee. Bewaren van het bestand op dit systeem is niet schadelijk.
+SharedFileNameLabel=Bestandsnaam:
+SharedFileLocationLabel=Locatie:
+WizardUninstalling=Verwijderingsstatus
+StatusUninstalling=Verwijderen van %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installeren van %1.
+ShutdownBlockReasonUninstallingApp=Verwijderen van %1.
+
+[CustomMessages]
+
+NameAndVersion=%1 versie %2
+AdditionalIcons=Extra snelkoppelingen:
+CreateDesktopIcon=Maak een snelkoppeling op het &bureaublad
+CreateQuickLaunchIcon=Maak een snelkoppeling op de &Snel starten werkbalk
+ProgramOnTheWeb=%1 op het Web
+UninstallProgram=Verwijder %1
+LaunchProgram=&Start %1
+AssocFileExtension=&Koppel %1 aan de %2 bestandsextensie
+AssocingFileExtension=Bezig met koppelen van %1 aan de %2 bestandsextensie...
+AutoStartProgramGroupDescription=Opstarten:
+AutoStartProgram=%1 automatisch starten
+AddonHostProgramNotFound=%1 kon niet worden gevonden in de geselecteerde map.%n%nWilt u toch doorgaan?
diff --git a/dist/windows/languages/English.isl b/dist/windows/languages/English.isl
new file mode 100644
index 00000000..25ee025c
--- /dev/null
+++ b/dist/windows/languages/English.isl
@@ -0,0 +1,336 @@
+; *** Inno Setup version 5.5.3+ English messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=English
+LanguageID=$0409
+LanguageCodePage=0
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Setup
+SetupWindowTitle=Setup - %1
+UninstallAppTitle=Uninstall
+UninstallAppFullTitle=%1 Uninstall
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Confirm
+ErrorTitle=Error
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=This will install %1. Do you wish to continue?
+LdrCannotCreateTemp=Unable to create a temporary file. Setup aborted
+LdrCannotExecTemp=Unable to execute file in the temporary directory. Setup aborted
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nError %2: %3
+SetupFileMissing=The file %1 is missing from the installation directory. Please correct the problem or obtain a new copy of the program.
+SetupFileCorrupt=The setup files are corrupted. Please obtain a new copy of the program.
+SetupFileCorruptOrWrongVer=The setup files are corrupted, or are incompatible with this version of Setup. Please correct the problem or obtain a new copy of the program.
+InvalidParameter=An invalid parameter was passed on the command line:%n%n%1
+SetupAlreadyRunning=Setup is already running.
+WindowsVersionNotSupported=This program does not support the version of Windows your computer is running.
+WindowsServicePackRequired=This program requires %1 Service Pack %2 or later.
+NotOnThisPlatform=This program will not run on %1.
+OnlyOnThisPlatform=This program must be run on %1.
+OnlyOnTheseArchitectures=This program can only be installed on versions of Windows designed for the following processor architectures:%n%n%1
+MissingWOW64APIs=The version of Windows you are running does not include functionality required by Setup to perform a 64-bit installation. To correct this problem, please install Service Pack %1.
+WinVersionTooLowError=This program requires %1 version %2 or later.
+WinVersionTooHighError=This program cannot be installed on %1 version %2 or later.
+AdminPrivilegesRequired=You must be logged in as an administrator when installing this program.
+PowerUserPrivilegesRequired=You must be logged in as an administrator or as a member of the Power Users group when installing this program.
+SetupAppRunningError=Setup has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
+UninstallAppRunningError=Uninstall has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit.
+
+; *** Misc. errors
+ErrorCreatingDir=Setup was unable to create the directory "%1"
+ErrorTooManyFilesInDir=Unable to create a file in the directory "%1" because it contains too many files
+
+; *** Setup common messages
+ExitSetupTitle=Exit Setup
+ExitSetupMessage=Setup is not complete. If you exit now, the program will not be installed.%n%nYou may run Setup again at another time to complete the installation.%n%nExit Setup?
+AboutSetupMenuItem=&About Setup...
+AboutSetupTitle=About Setup
+AboutSetupMessage=%1 version %2%n%3%n%n%1 home page:%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< &Back
+ButtonNext=&Install Popcorn Time >
+ButtonInstall=&Install
+ButtonOK=OK
+ButtonCancel=Cancel
+ButtonYes=&Yes
+ButtonYesToAll=Yes to &All
+ButtonNo=&No
+ButtonNoToAll=N&o to All
+ButtonFinish=&Finish
+ButtonBrowse=&Browse...
+ButtonWizardBrowse=B&rowse...
+ButtonNewFolder=&Make New Folder
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Select Setup Language
+SelectLanguageLabel=Select the language to use during the installation:
+
+; *** Common wizard text
+ClickNext=Click Install Popcorn Time to continue, or Cancel to exit Setup.
+BeveledLabel=
+BrowseDialogTitle=Browse For Folder
+BrowseDialogLabel=Select a folder in the list below, then click OK.
+NewFolderName=New Folder
+
+; *** "Welcome" wizard page
+WelcomeLabel1=You're about to get some Popcorn Time!
+WelcomeLabel2=This will install [name/ver] on your computer.%n%nKeep in mind that Popcorn Time is in Beta and we make no guarantees, so use it at your own risk.
+
+; *** "Password" wizard page
+WizardPassword=Password
+PasswordLabel1=This installation is password protected.
+PasswordLabel3=Please provide the password, then click Next to continue. Passwords are case-sensitive.
+PasswordEditLabel=&Password:
+IncorrectPassword=The password you entered is not correct. Please try again.
+
+; *** "License Agreement" wizard page
+WizardLicense=License Agreement
+LicenseLabel=Please read the following important information before continuing.
+LicenseLabel3=Please read the following License Agreement. You must accept the terms of this agreement before continuing with the installation.
+LicenseAccepted=I &accept the agreement
+LicenseNotAccepted=I &do not accept the agreement
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Please read the following important information before continuing.
+InfoBeforeClickLabel=When you are ready to continue with Setup, click Next.
+WizardInfoAfter=Information
+InfoAfterLabel=Please read the following important information before continuing.
+InfoAfterClickLabel=When you are ready to continue with Setup, click Next.
+
+; *** "User Information" wizard page
+WizardUserInfo=User Information
+UserInfoDesc=Please enter your information.
+UserInfoName=&User Name:
+UserInfoOrg=&Organization:
+UserInfoSerial=&Serial Number:
+UserInfoNameRequired=You must enter a name.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Select Destination Location
+SelectDirDesc=Where should [name] be installed?
+SelectDirLabel3=Setup will install [name] into the following folder.
+SelectDirBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
+DiskSpaceMBLabel=At least [mb] MB of free disk space is required.
+CannotInstallToNetworkDrive=Setup cannot install to a network drive.
+CannotInstallToUNCPath=Setup cannot install to a UNC path.
+InvalidPath=You must enter a full path with drive letter; for example:%n%nC:\APP%n%nor a UNC path in the form:%n%n\\server\share
+InvalidDrive=The drive or UNC share you selected does not exist or is not accessible. Please select another.
+DiskSpaceWarningTitle=Not Enough Disk Space
+DiskSpaceWarning=Setup requires at least %1 KB of free space to install, but the selected drive only has %2 KB available.%n%nDo you want to continue anyway?
+DirNameTooLong=The folder name or path is too long.
+InvalidDirName=The folder name is not valid.
+BadDirName32=Folder names cannot include any of the following characters:%n%n%1
+DirExistsTitle=Folder Exists
+DirExists=The folder:%n%n%1%n%nalready exists. Would you like to install to that folder anyway?
+DirDoesntExistTitle=Folder Does Not Exist
+DirDoesntExist=The folder:%n%n%1%n%ndoes not exist. Would you like the folder to be created?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Select Components
+SelectComponentsDesc=Which components should be installed?
+SelectComponentsLabel2=Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue.
+FullInstallation=Full installation
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Compact installation
+CustomInstallation=Custom installation
+NoUninstallWarningTitle=Components Exist
+NoUninstallWarning=Setup has detected that the following components are already installed on your computer:%n%n%1%n%nDeselecting these components will not uninstall them.%n%nWould you like to continue anyway?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Current selection requires at least [mb] MB of disk space.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Select Additional Tasks
+SelectTasksDesc=Which additional tasks should be performed?
+SelectTasksLabel2=Select the additional tasks you would like Setup to perform while installing [name], then click Next.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Select Start Menu Folder
+SelectStartMenuFolderDesc=Where should Setup place the program's shortcuts?
+SelectStartMenuFolderLabel3=Setup will create the program's shortcuts in the following Start Menu folder.
+SelectStartMenuFolderBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse.
+MustEnterGroupName=You must enter a folder name.
+GroupNameTooLong=The folder name or path is too long.
+InvalidGroupName=The folder name is not valid.
+BadGroupName=The folder name cannot include any of the following characters:%n%n%1
+NoProgramGroupCheck2=&Don't create a Start Menu folder
+
+; *** "Ready to Install" wizard page
+WizardReady=Ready to Install
+ReadyLabel1=Setup is now ready to begin installing [name] on your computer.
+ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings.
+ReadyLabel2b=Click Install to continue with the installation.
+ReadyMemoUserInfo=User information:
+ReadyMemoDir=Destination location:
+ReadyMemoType=Setup type:
+ReadyMemoComponents=Selected components:
+ReadyMemoGroup=Start Menu folder:
+ReadyMemoTasks=Additional tasks:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparing to Install
+PreparingDesc=Setup is preparing to install [name] on your computer.
+PreviousInstallNotCompleted=The installation/removal of a previous program was not completed. You will need to restart your computer to complete that installation.%n%nAfter restarting your computer, run Setup again to complete the installation of [name].
+CannotContinue=Setup cannot continue. Please click Cancel to exit.
+ApplicationsFound=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications.
+ApplicationsFound2=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications. After the installation has completed, Setup will attempt to restart the applications.
+CloseApplications=&Automatically close the applications
+DontCloseApplications=&Do not close the applications
+ErrorCloseApplications=Setup was unable to automatically close all applications. It is recommended that you close all applications using files that need to be updated by Setup before continuing.
+
+; *** "Installing" wizard page
+WizardInstalling=Installing
+InstallingLabel=Please wait while Setup installs [name] on your computer.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Completing the [name] Setup Wizard
+FinishedLabelNoIcons=Setup has finished installing [name] on your computer.
+FinishedLabel=Setup has finished installing [name] on your computer. The application may be launched by selecting the installed icons.
+ClickFinish=Click Finish to exit Setup.
+FinishedRestartLabel=To complete the installation of [name], Setup must restart your computer. Would you like to restart now?
+FinishedRestartMessage=To complete the installation of [name], Setup must restart your computer.%n%nWould you like to restart now?
+ShowReadmeCheck=Yes, I would like to view the README file
+YesRadio=&Yes, restart the computer now
+NoRadio=&No, I will restart the computer later
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Run %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=View %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Setup Needs the Next Disk
+SelectDiskLabel2=Please insert Disk %1 and click OK.%n%nIf the files on this disk can be found in a folder other than the one displayed below, enter the correct path or click Browse.
+PathLabel=&Path:
+FileNotInDir2=The file "%1" could not be located in "%2". Please insert the correct disk or select another folder.
+SelectDirectoryLabel=Please specify the location of the next disk.
+
+; *** Installation phase messages
+SetupAborted=Setup was not completed.%n%nPlease correct the problem and run Setup again.
+EntryAbortRetryIgnore=Click Retry to try again, Ignore to proceed anyway, or Abort to cancel installation.
+
+; *** Installation status messages
+StatusClosingApplications=Closing applications...
+StatusCreateDirs=Creating directories...
+StatusExtractFiles=Extracting files...
+StatusCreateIcons=Creating shortcuts...
+StatusCreateIniEntries=Creating INI entries...
+StatusCreateRegistryEntries=Creating registry entries...
+StatusRegisterFiles=Registering files...
+StatusSavingUninstall=Saving uninstall information...
+StatusRunProgram=Finishing installation...
+StatusRestartingApplications=Restarting applications...
+StatusRollback=Rolling back changes...
+
+; *** Misc. errors
+ErrorInternal2=Internal error: %1
+ErrorFunctionFailedNoCode=%1 failed
+ErrorFunctionFailed=%1 failed; code %2
+ErrorFunctionFailedWithMessage=%1 failed; code %2.%n%3
+ErrorExecutingProgram=Unable to execute file:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Error opening registry key:%n%1\%2
+ErrorRegCreateKey=Error creating registry key:%n%1\%2
+ErrorRegWriteKey=Error writing to registry key:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Error creating INI entry in file "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Click Retry to try again, Ignore to skip this file (not recommended), or Abort to cancel installation.
+FileAbortRetryIgnore2=Click Retry to try again, Ignore to proceed anyway (not recommended), or Abort to cancel installation.
+SourceIsCorrupted=The source file is corrupted
+SourceDoesntExist=The source file "%1" does not exist
+ExistingFileReadOnly=The existing file is marked as read-only.%n%nClick Retry to remove the read-only attribute and try again, Ignore to skip this file, or Abort to cancel installation.
+ErrorReadingExistingDest=An error occurred while trying to read the existing file:
+FileExists=The file already exists.%n%nWould you like Setup to overwrite it?
+ExistingFileNewer=The existing file is newer than the one Setup is trying to install. It is recommended that you keep the existing file.%n%nDo you want to keep the existing file?
+ErrorChangingAttr=An error occurred while trying to change the attributes of the existing file:
+ErrorCreatingTemp=An error occurred while trying to create a file in the destination directory:
+ErrorReadingSource=An error occurred while trying to read the source file:
+ErrorCopying=An error occurred while trying to copy a file:
+ErrorReplacingExistingFile=An error occurred while trying to replace the existing file:
+ErrorRestartReplace=RestartReplace failed:
+ErrorRenamingTemp=An error occurred while trying to rename a file in the destination directory:
+ErrorRegisterServer=Unable to register the DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 failed with exit code %1
+ErrorRegisterTypeLib=Unable to register the type library: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=An error occurred while trying to open the README file.
+ErrorRestartingComputer=Setup was unable to restart the computer. Please do this manually.
+
+; *** Uninstaller messages
+UninstallNotFound=File "%1" does not exist. Cannot uninstall.
+UninstallOpenError=File "%1" could not be opened. Cannot uninstall
+UninstallUnsupportedVer=The uninstall log file "%1" is in a format not recognized by this version of the uninstaller. Cannot uninstall
+UninstallUnknownEntry=An unknown entry (%1) was encountered in the uninstall log
+ConfirmUninstall=Are you sure you want to completely remove %1 and all of its components?
+UninstallOnlyOnWin64=This installation can only be uninstalled on 64-bit Windows.
+OnlyAdminCanUninstall=This installation can only be uninstalled by a user with administrative privileges.
+UninstallStatusLabel=Please wait while %1 is removed from your computer.
+UninstalledAll=%1 was successfully removed from your computer.
+UninstalledMost=%1 uninstall complete.%n%nSome elements could not be removed. These can be removed manually.
+UninstalledAndNeedsRestart=To complete the uninstallation of %1, your computer must be restarted.%n%nWould you like to restart now?
+UninstallDataCorrupted="%1" file is corrupted. Cannot uninstall
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Remove Shared File?
+ConfirmDeleteSharedFile2=The system indicates that the following shared file is no longer in use by any programs. Would you like for Uninstall to remove this shared file?%n%nIf any programs are still using this file and it is removed, those programs may not function properly. If you are unsure, choose No. Leaving the file on your system will not cause any harm.
+SharedFileNameLabel=File name:
+SharedFileLocationLabel=Location:
+WizardUninstalling=Uninstall Status
+StatusUninstalling=Uninstalling %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installing %1.
+ShutdownBlockReasonUninstallingApp=Uninstalling %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 version %2
+AdditionalIcons=Additional icons:
+CreateDesktopIcon=Create a &desktop icon
+CreateQuickLaunchIcon=Create a &Quick Launch icon
+ProgramOnTheWeb=%1 on the Web
+UninstallProgram=Uninstall %1
+LaunchProgram=Launch %1
+AssocFileExtension=&Associate %1 with the %2 file extension
+AssocingFileExtension=Associating %1 with the %2 file extension...
+AutoStartProgramGroupDescription=Startup:
+AutoStartProgram=Automatically start %1
+AddonHostProgramNotFound=%1 could not be located in the folder you selected.%n%nDo you want to continue anyway?
diff --git a/dist/windows/languages/Finnish.isl b/dist/windows/languages/Finnish.isl
new file mode 100644
index 00000000..5b4be118
--- /dev/null
+++ b/dist/windows/languages/Finnish.isl
@@ -0,0 +1,314 @@
+; *** Inno Setup version 5.5.3+ Finnish messages ***
+;
+; Finnish translation by Antti Karttunen
+; E-mail: antti.j.karttunen@iki.fi
+; Last modification date: 2012-12-15
+
+[LangOptions]
+LanguageName=Suomi
+LanguageID=$040B
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Asennus
+SetupWindowTitle=%1 - Asennus
+UninstallAppTitle=Asennuksen poisto
+UninstallAppFullTitle=%1 - Asennuksen poisto
+
+; *** Misc. common
+InformationTitle=Ilmoitus
+ConfirmTitle=Varmistus
+ErrorTitle=Virhe
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Tll asennusohjelmalla asennetaan %1. Haluatko jatkaa?
+LdrCannotCreateTemp=Vliaikaistiedostoa ei voitu luoda. Asennus keskeytettiin
+LdrCannotExecTemp=Vliaikaisessa hakemistossa olevaa tiedostoa ei voitu suorittaa. Asennus keskeytettiin
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nVirhe %2: %3
+SetupFileMissing=Tiedostoa %1 ei lydy asennushakemistosta. Korjaa ongelma tai hanki uusi kopio ohjelmasta.
+SetupFileCorrupt=Asennustiedostot ovat vaurioituneet. Hanki uusi kopio ohjelmasta.
+SetupFileCorruptOrWrongVer=Asennustiedostot ovat vaurioituneet tai ovat epyhteensopivia tmn Asennuksen version kanssa. Korjaa ongelma tai hanki uusi kopio ohjelmasta.
+InvalidParameter=Virheellinen komentoriviparametri:%n%n%1
+SetupAlreadyRunning=Asennus on jo kynniss.
+WindowsVersionNotSupported=Tm ohjelma ei tue kytss olevaa Windowsin versiota.
+WindowsServicePackRequired=Tm ohjelma vaatii %1 Service Pack %2 -pivityksen tai myhemmn.
+NotOnThisPlatform=Tm ohjelma ei toimi %1-kyttjrjestelmss.
+OnlyOnThisPlatform=Tm ohjelma toimii vain %1-kyttjrjestelmss.
+OnlyOnTheseArchitectures=Tm ohjelma voidaan asentaa vain niihin Windowsin versioihin, jotka on suunniteltu seuraaville prosessorityypeille:%n%n%1
+MissingWOW64APIs=Tm Windowsin versio ei sisll ominaisuuksia, joita Asennus tarvitsee suorittaakseen 64-bittisen asennuksen. Korjaa ongelma asentamalla Service Pack %1.
+WinVersionTooLowError=Tm ohjelma vaatii version %2 tai myhemmn %1-kyttjrjestelmst.
+WinVersionTooHighError=Tt ohjelmaa ei voi asentaa %1-kyttjrjestelmn versioon %2 tai myhempn.
+AdminPrivilegesRequired=Sinun tytyy kirjautua sisn jrjestelmnvalvojana asentaaksesi tmn ohjelman.
+PowerUserPrivilegesRequired=Sinun tytyy kirjautua sisn jrjestelmnvalvojana tai tehokyttjn asentaaksesi tmn ohjelman.
+SetupAppRunningError=Asennus lysi kynniss olevan kopion ohjelmasta %1.%n%nSulje kaikki kynniss olevat kopiot ohjelmasta ja valitse OK jatkaaksesi, tai valitse Peruuta poistuaksesi.
+UninstallAppRunningError=Asennuksen poisto lysi kynniss olevan kopion ohjelmasta %1.%n%nSulje kaikki kynniss olevat kopiot ohjelmasta ja valitse OK jatkaaksesi, tai valitse Peruuta poistuaksesi.
+
+; *** Misc. errors
+ErrorCreatingDir=Asennus ei voinut luoda hakemistoa "%1"
+ErrorTooManyFilesInDir=Tiedoston luominen hakemistoon "%1" eponnistui, koska se sislt liian monta tiedostoa
+
+; *** Setup common messages
+ExitSetupTitle=Poistu Asennuksesta
+ExitSetupMessage=Asennus ei ole valmis. Jos lopetat nyt, ohjelmaa ei asenneta.%n%nVoit ajaa Asennuksen toiste asentaaksesi ohjelman.%n%nLopetetaanko Asennus?
+AboutSetupMenuItem=&Tietoja Asennuksesta...
+AboutSetupTitle=Tietoja Asennuksesta
+AboutSetupMessage=%1 versio %2%n%3%n%n%1 -ohjelman kotisivu:%n%4
+AboutSetupNote=
+TranslatorNote=Suomenkielinen knns: Antti Karttunen (antti.karttunen@joensuu.fi)
+
+; *** Buttons
+ButtonBack=< &Takaisin
+ButtonNext=&Seuraava >
+ButtonInstall=&Asenna
+ButtonOK=OK
+ButtonCancel=Peruuta
+ButtonYes=&Kyll
+ButtonYesToAll=Kyll k&aikkiin
+ButtonNo=&Ei
+ButtonNoToAll=E&i kaikkiin
+ButtonFinish=&Lopeta
+ButtonBrowse=S&elaa...
+ButtonWizardBrowse=S&elaa...
+ButtonNewFolder=&Luo uusi kansio
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Valitse Asennuksen kieli
+SelectLanguageLabel=Valitse asentamisen aikana kytettv kieli:
+
+; *** Common wizard text
+ClickNext=Valitse Seuraava jatkaaksesi tai Peruuta poistuaksesi.
+BeveledLabel=
+BrowseDialogTitle=Selaa kansioita
+BrowseDialogLabel=Valitse kansio allaolevasta listasta ja valitse sitten OK jatkaaksesi.
+NewFolderName=Uusi kansio
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Tervetuloa [name] -asennusohjelmaan.
+WelcomeLabel2=Tll asennusohjelmalla koneellesi asennetaan [name/ver]. %n%nOn suositeltavaa, ett suljet kaikki muut kynniss olevat sovellukset ennen jatkamista. Tm auttaa vlttmn ristiriitatilanteita asennuksen aikana.
+
+; *** "Password" wizard page
+WizardPassword=Salasana
+PasswordLabel1=Tm asennusohjelma on suojattu salasanalla.
+PasswordLabel3=Anna salasana ja valitse sitten Seuraava jatkaaksesi.%n%nIsot ja pienet kirjaimet ovat eriarvoisia.
+PasswordEditLabel=&Salasana:
+IncorrectPassword=Antamasi salasana oli virheellinen. Anna salasana uudelleen.
+
+; *** "License Agreement" wizard page
+WizardLicense=Kyttoikeussopimus
+LicenseLabel=Lue seuraava trke tiedotus ennen kuin jatkat.
+LicenseLabel3=Lue seuraava kyttoikeussopimus tarkasti. Sinun tytyy hyvksy sopimus, jos haluat jatkaa asentamista.
+LicenseAccepted=&Hyvksyn sopimuksen
+LicenseNotAccepted=&En hyvksy sopimusta
+
+; *** "Information" wizard pages
+WizardInfoBefore=Tiedotus
+InfoBeforeLabel=Lue seuraava trke tiedotus ennen kuin jatkat.
+InfoBeforeClickLabel=Kun olet valmis jatkamaan asentamista, valitse Seuraava.
+WizardInfoAfter=Tiedotus
+InfoAfterLabel=Lue seuraava trke tiedotus ennen kuin jatkat.
+InfoAfterClickLabel=Kun olet valmis jatkamaan asentamista, valitse Seuraava.
+
+; *** "Select Destination Directory" wizard page
+WizardUserInfo=Kyttjtiedot
+UserInfoDesc=Anna pyydetyt tiedot.
+UserInfoName=Kyttjn &nimi:
+UserInfoOrg=&Yritys:
+UserInfoSerial=&Tunnuskoodi:
+UserInfoNameRequired=Sinun tytyy antaa nimi.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Valitse kohdekansio
+SelectDirDesc=Mihin [name] asennetaan?
+SelectDirLabel3=[name] asennetaan thn kansioon.
+SelectDirBrowseLabel=Valitse Seuraava jatkaaksesi. Jos haluat vaihtaa kansiota, valitse Selaa.
+DiskSpaceMBLabel=Vapaata levytilaa tarvitaan vhintn [mb] Mt.
+CannotInstallToNetworkDrive=Asennus ei voi asentaa ohjelmaa verkkoasemalle.
+CannotInstallToUNCPath=Asennus ei voi asentaa ohjelmaa UNC-polun alle.
+InvalidPath=Anna tydellinen polku levyaseman kirjaimen kanssa. Esimerkiksi %nC:\OHJELMA%n%ntai UNC-polku muodossa %n%n\\palvelin\resurssi
+InvalidDrive=Valitsemaasi asemaa tai UNC-polkua ei ole olemassa tai sit ei voi kytt. Valitse toinen asema tai UNC-polku.
+DiskSpaceWarningTitle=Ei tarpeeksi vapaata levytilaa
+DiskSpaceWarning=Asennus vaatii vhintn %1 kt vapaata levytilaa, mutta valitulla levyasemalla on vain %2 kt vapaata levytilaa.%n%nHaluatko jatkaa tst huolimatta?
+DirNameTooLong=Kansion nimi tai polku on liian pitk.
+InvalidDirName=Virheellinen kansion nimi.
+BadDirName32=Kansion nimess ei saa olla seuraavia merkkej:%n%n%1
+DirExistsTitle=Kansio on olemassa
+DirExists=Kansio:%n%n%1%n%non jo olemassa. Haluatko kuitenkin suorittaa asennuksen thn kansioon?
+DirDoesntExistTitle=Kansiota ei ole olemassa
+DirDoesntExist=Kansiota%n%n%1%n%nei ole olemassa. Luodaanko kansio?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Valitse asennettavat osat
+SelectComponentsDesc=Mitk osat asennetaan?
+SelectComponentsLabel2=Valitse ne osat, jotka haluat asentaa, ja poista niiden osien valinta, joita et halua asentaa. Valitse Seuraava, kun olet valmis.
+FullInstallation=Normaali asennus
+CompactInstallation=Suppea asennus
+CustomInstallation=Mukautettu asennus
+NoUninstallWarningTitle=Asennettuja osia lydettiin
+NoUninstallWarning=Seuraavat osat on jo asennettu koneelle:%n%n%1%n%nNiden osien valinnan poistaminen ei poista niit koneelta.%n%nHaluatko jatkaa tst huolimatta?
+ComponentSize1=%1 kt
+ComponentSize2=%1 Mt
+ComponentsDiskSpaceMBLabel=Nykyiset valinnat vaativat vhintn [mb] Mt levytilaa.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Valitse muut toiminnot
+SelectTasksDesc=Mit muita toimintoja suoritetaan?
+SelectTasksLabel2=Valitse muut toiminnot, jotka haluat Asennuksen suorittavan samalla kun [name] asennetaan. Valitse Seuraava, kun olet valmis.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Valitse Kynnist-valikon kansio
+SelectStartMenuFolderDesc=Mihin ohjelman pikakuvakkeet sijoitetaan?
+SelectStartMenuFolderLabel3=Ohjelman pikakuvakkeet luodaan thn Kynnist-valikon kansioon.
+SelectStartMenuFolderBrowseLabel=Valitse Seuraava jatkaaksesi. Jos haluat vaihtaa kansiota, valitse Selaa.
+MustEnterGroupName=Kansiolle pit antaa nimi.
+GroupNameTooLong=Kansion nimi tai polku on liian pitk.
+InvalidGroupName=Virheellinen kansion nimi.
+BadGroupName=Kansion nimess ei saa olla seuraavia merkkej:%n%n%1
+NoProgramGroupCheck2=l luo k&ansiota Kynnist-valikkoon
+
+; *** "Ready to Install" wizard page
+WizardReady=Valmiina asennukseen
+ReadyLabel1=[name] on nyt valmis asennettavaksi.
+ReadyLabel2a=Valitse Asenna jatkaaksesi asentamista tai valitse Takaisin, jos haluat tarkastella tekemisi asetuksia tai muuttaa niit.
+ReadyLabel2b=Valitse Asenna jatkaaksesi asentamista.
+ReadyMemoUserInfo=Kyttjtiedot:
+ReadyMemoDir=Kohdekansio:
+ReadyMemoType=Asennustyyppi:
+ReadyMemoComponents=Asennettavaksi valitut osat:
+ReadyMemoGroup=Kynnist-valikon kansio:
+ReadyMemoTasks=Muut toiminnot:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Valmistellaan asennusta
+PreparingDesc=Valmistaudutaan asentamaan [name] koneellesi.
+PreviousInstallNotCompleted=Edellisen ohjelman asennus tai asennuksen poisto ei ole valmis. Sinun tytyy kynnist kone uudelleen viimeistellksesi edellisen asennuksen.%n%nAja [name] -asennusohjelma uudestaan, kun olet kynnistnyt koneen uudelleen.
+CannotContinue=Asennusta ei voida jatkaa. Valitse Peruuta poistuaksesi.
+ApplicationsFound=Seuraavat sovellukset kyttvt tiedostoja, joita Asennuksen pit pivitt. On suositeltavaa, ett annat Asennuksen sulkea nm sovellukset automaattisesti.
+ApplicationsFound2=Seuraavat sovellukset kyttvt tiedostoja, joita Asennuksen pit pivitt. On suositeltavaa, ett annat Asennuksen sulkea nm sovellukset automaattisesti. Valmistumisen jlkeen Asennus yritt uudelleenkynnist sovellukset.
+CloseApplications=&Sulje sovellukset automaattisesti
+DontCloseApplications=&l sulje sovelluksia
+ErrorCloseApplications=Asennus ei pystynyt sulkemaan tarvittavia sovelluksia automaattisesti. On suositeltavaa, ett ennen jatkamista suljet sovellukset, jotka kyttvt asennuksen aikana pivitettvi tiedostoja.
+
+; *** "Installing" wizard page
+WizardInstalling=Asennus kynniss
+InstallingLabel=Odota, kun [name] asennetaan koneellesi.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=[name] - Asennuksen viimeistely
+FinishedLabelNoIcons=[name] on nyt asennettu koneellesi.
+FinishedLabel=[name] on nyt asennettu. Sovellus voidaan kynnist valitsemalla jokin asennetuista kuvakkeista.
+ClickFinish=Valitse Lopeta poistuaksesi Asennuksesta.
+FinishedRestartLabel=Jotta [name] saataisiin asennettua loppuun, pit kone kynnist uudelleen. Haluatko kynnist koneen uudelleen nyt?
+FinishedRestartMessage=Jotta [name] saataisiin asennettua loppuun, pit kone kynnist uudelleen.%n%nHaluatko kynnist koneen uudelleen nyt?
+ShowReadmeCheck=Kyll, haluan nhd LUEMINUT-tiedoston
+YesRadio=&Kyll, kynnist kone uudelleen
+NoRadio=&Ei, kynnistn koneen uudelleen myhemmin
+RunEntryExec=Kynnist %1
+RunEntryShellExec=Nyt %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Asennus tarvitsee seuraavan levykkeen
+SelectDiskLabel2=Aseta levyke %1 asemaan ja valitse OK. %n%nJos joku toinen kansio sislt levykkeen tiedostot, anna oikea polku tai valitse Selaa.
+PathLabel=&Polku:
+FileNotInDir2=Tiedostoa "%1" ei lytynyt lhteest "%2". Aseta oikea levyke asemaan tai valitse toinen kansio.
+SelectDirectoryLabel=Mrit seuraavan levykkeen sislln sijainti.
+
+; *** Installation phase messages
+SetupAborted=Asennusta ei suoritettu loppuun.%n%nKorjaa ongelma ja suorita Asennus uudelleen.
+EntryAbortRetryIgnore=Valitse Uudelleen yrittksesi uudelleen, Ohita jatkaaksesi kaikesta huolimatta tai Hylk peruuttaaksesi asennuksen.
+
+; *** Installation status messages
+StatusClosingApplications=Suljetaan sovellukset...
+StatusCreateDirs=Luodaan hakemistoja...
+StatusExtractFiles=Puretaan tiedostoja...
+StatusCreateIcons=Luodaan pikakuvakkeita...
+StatusCreateIniEntries=Luodaan INI-merkintj...
+StatusCreateRegistryEntries=Luodaan rekisterimerkintj...
+StatusRegisterFiles=Rekisteridn tiedostoja...
+StatusSavingUninstall=Tallennetaan Asennuksen poiston tietoja...
+StatusRunProgram=Viimeistelln asennusta...
+StatusRestartingApplications=Uudelleenkynnistetn sovellukset...
+StatusRollback=Peruutetaan tehdyt muutokset...
+
+; *** Misc. errors
+ErrorInternal2=Sisinen virhe: %1
+ErrorFunctionFailedNoCode=%1 eponnistui
+ErrorFunctionFailed=%1 eponnistui; virhekoodi %2
+ErrorFunctionFailedWithMessage=%1 eponnistui; virhekoodi %2.%n%3
+ErrorExecutingProgram=Virhe suoritettaessa tiedostoa%n%1
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Asennetaan %1.
+ShutdownBlockReasonUninstallingApp=Poistetaan %1.
+
+; *** Registry errors
+ErrorRegOpenKey=Virhe avattaessa rekisteriavainta%n%1\%2
+ErrorRegCreateKey=Virhe luotaessa rekisteriavainta%n%1\%2
+ErrorRegWriteKey=Virhe kirjoitettaessa rekisteriavaimeen%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Virhe luotaessa INI-merkint tiedostoon "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Valitse Uudelleen yrittksesi uudelleen, Ohita ohittaaksesi tmn tiedoston (ei suositeltavaa) tai Hylk peruuttaaksesi asennuksen.
+FileAbortRetryIgnore2=Valitse Uudelleen yrittksesi uudelleen, Ohita jatkaaksesi kaikesta huolimatta (ei suositeltavaa) tai Hylk peruuttaaksesi asennuksen.
+SourceIsCorrupted=Lhdetiedosto on vaurioitunut
+SourceDoesntExist=Lhdetiedostoa "%1" ei ole olemassa
+ExistingFileReadOnly=Nykyinen tiedosto on Vain luku -tiedosto.%n%nValitse Uudelleen poistaaksesi Vain luku -mritteen uudelleenyrityst varten, Ohita ohittaaksesi tmn tiedoston tai Hylk peruuttaaksesi asennuksen.
+ErrorReadingExistingDest=Virhe luettaessa nykyist tiedostoa:
+FileExists=Tiedosto on jo olemassa.%n%nKorvataanko se?
+ExistingFileNewer=Nykyinen tiedosto on uudempi kuin asennettava tiedosto. Nykyisen tiedoston silyttminen on suositeltavaa.n%nHaluatko silytt nykyisen tiedoston?
+ErrorChangingAttr=Virhe vaihdettaessa nykyisen tiedoston mritteit:
+ErrorCreatingTemp=Virhe luotaessa tiedostoa kohdehakemistoon:
+ErrorReadingSource=Virhe luettaessa lhdetiedostoa:
+ErrorCopying=Virhe kopioitaessa tiedostoa:
+ErrorReplacingExistingFile=Virhe korvattaessa nykyist tiedostoa:
+ErrorRestartReplace=RestartReplace-komento eponnistui:
+ErrorRenamingTemp=Virhe uudelleennimettess tiedostoa kohdehakemistossa:
+ErrorRegisterServer=DLL/OCX -laajennuksen rekisterinti eponnistui: %1
+ErrorRegSvr32Failed=RegSvr32-toiminto eponnistui. Virhekoodi: %1
+ErrorRegisterTypeLib=Tyyppikirjaston rekisteriminen eponnistui: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Virhe avattaessa LUEMINUT-tiedostoa.
+ErrorRestartingComputer=Koneen uudelleenkynnistminen ei onnistunut. Suorita uudelleenkynnistys itse.
+
+; *** Uninstaller messages
+UninstallNotFound=Tiedostoa "%1" ei lytynyt. Asennuksen poisto ei onnistu.
+UninstallOpenError=Tiedostoa "%1" ei voitu avata. Asennuksen poisto ei onnistu.
+UninstallUnsupportedVer=Tm versio Asennuksen poisto-ohjelmasta ei pysty lukemaan lokitiedostoa "%1". Asennuksen poisto ei onnistu
+UninstallUnknownEntry=Asennuksen poisto-ohjelman lokitiedostosta lytyi tuntematon merkint (%1)
+ConfirmUninstall=Poistetaanko %1 ja kaikki sen osat?
+UninstallOnlyOnWin64=Tm ohjelma voidaan poistaa vain 64-bittisest Windowsista ksin.
+OnlyAdminCanUninstall=Tmn asennuksen poistaminen vaatii jrjestelmnvalvojan oikeudet.
+UninstallStatusLabel=Odota, kun %1 poistetaan koneeltasi.
+UninstalledAll=%1 poistettiin onnistuneesti.
+UninstalledMost=%1 poistettiin koneelta.%n%nJoitakin osia ei voitu poistaa. Voit poistaa osat itse.
+UninstalledAndNeedsRestart=Kone tytyy kynnist uudelleen, jotta %1 voidaan poistaa kokonaan.%n%nHaluatko kynnist koneen uudeelleen nyt?
+UninstallDataCorrupted=Tiedosto "%1" on vaurioitunut. Asennuksen poisto ei onnistu.
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Poistetaanko jaettu tiedosto?
+ConfirmDeleteSharedFile2=Jrjestelmn mukaan seuraava jaettu tiedosto ei ole en minkn muun sovelluksen kytss. Poistetaanko tiedosto?%n%nJos jotkut sovellukset kyttvt viel tt tiedostoa ja se poistetaan, ne eivt vlttmtt toimi en kunnolla. Jos olet epvarma, valitse Ei. Tiedoston jttminen koneelle ei aiheuta ongelmia.
+SharedFileNameLabel=Tiedoston nimi:
+SharedFileLocationLabel=Sijainti:
+WizardUninstalling=Asennuksen poiston tila
+StatusUninstalling=Poistetaan %1...
+
+[CustomMessages]
+
+NameAndVersion=%1 versio %2
+AdditionalIcons=Liskuvakkeet:
+CreateDesktopIcon=Lu&o kuvake typydlle
+CreateQuickLaunchIcon=Luo kuvake &pikakynnistyspalkkiin
+ProgramOnTheWeb=%1 Internetiss
+UninstallProgram=Poista %1
+LaunchProgram=&Kynnist %1
+AssocFileExtension=&Yhdist %1 tiedostoptteeseen %2
+AssocingFileExtension=Yhdistetn %1 tiedostoptteeseen %2 ...
+AutoStartProgramGroupDescription=Kynnistys:
+AutoStartProgram=Kynnist %1 automaattisesti
+AddonHostProgramNotFound=%1 ei ole valitsemassasi kansiossa.%n%nHaluatko jatkaa tst huolimatta?
diff --git a/dist/windows/languages/French.isl b/dist/windows/languages/French.isl
new file mode 100644
index 00000000..e3c8981c
--- /dev/null
+++ b/dist/windows/languages/French.isl
@@ -0,0 +1,354 @@
+; *** Inno Setup version 5.5.3+ French messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Maintained by Pierre Yager (pierre@levosgien.net)
+;
+; Contributors : Frdric Bonduelle, Francis Pallini, Lumina, Pascal Peyrot
+;
+; Changes :
+; + Accents on uppercase letters
+; http://www.academie-francaise.fr/langue/questions.html#accentuation (lumina)
+; + Typography quotes [see ISBN: 978-2-7433-0482-9]
+; http://fr.wikipedia.org/wiki/Guillemet (lumina)
+; + Binary units (Kio, Mio) [IEC 80000-13:2008]
+; http://fr.wikipedia.org/wiki/Octet (lumina)
+; + Reverted to standard units (Ko, Mo) to follow Windows Explorer Standard
+; http://blogs.msdn.com/b/oldnewthing/archive/2009/06/11/9725386.aspx
+; + Use more standard verbs for click and retry
+; "click": "Clicker" instead of "Appuyer"
+; "retry": "Recommencer" au lieu de "Ressayer"
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Fran<00E7>ais
+LanguageID=$040C
+LanguageCodePage=1252
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Installation
+SetupWindowTitle=Installation - %1
+UninstallAppTitle=Dsinstallation
+UninstallAppFullTitle=Dsinstallation - %1
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Confirmation
+ErrorTitle=Erreur
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Cet assistant va installer %1. Voulez-vous continuer ?
+LdrCannotCreateTemp=Impossible de crer un fichier temporaire. Abandon de l'installation
+LdrCannotExecTemp=Impossible d'excuter un fichier depuis le dossier temporaire. Abandon de l'installation
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nErreur %2 : %3
+SetupFileMissing=Le fichier %1 est absent du dossier d'installation. Veuillez corriger le problme ou vous procurer une nouvelle copie du programme.
+SetupFileCorrupt=Les fichiers d'installation sont altrs. Veuillez vous procurer une nouvelle copie du programme.
+SetupFileCorruptOrWrongVer=Les fichiers d'installation sont altrs ou ne sont pas compatibles avec cette version de l'assistant d'installation. Veuillez corriger le problme ou vous procurer une nouvelle copie du programme.
+InvalidParameter=Un paramtre non valide a t pass la ligne de commande :%n%n%1
+SetupAlreadyRunning=L'assistant d'installation est dj en cours d'excution.
+WindowsVersionNotSupported=Ce programme n'est pas prvu pour fonctionner avec la version de Windows utilise sur votre ordinateur.
+WindowsServicePackRequired=Ce programme a besoin de %1 Service Pack %2 ou d'une version plus rcente.
+NotOnThisPlatform=Ce programme ne fonctionne pas sous %1.
+OnlyOnThisPlatform=Ce programme ne peut fonctionner que sous %1.
+OnlyOnTheseArchitectures=Ce programme ne peut tre install que sur des versions de Windows qui supportent ces architectures : %n%n%1
+MissingWOW64APIs=La version de Windows que vous utilisez ne dispose pas des fonctionnalits ncessaires pour que l'assistant puisse raliser une installation 64 bits. Pour corriger ce problme vous devez installer le Service Pack %1.
+WinVersionTooLowError=Ce programme requiert la version %2 ou suprieure de %1.
+WinVersionTooHighError=Ce programme ne peut pas tre install sous %1 version %2 ou suprieure.
+AdminPrivilegesRequired=Vous devez disposer des droits d'administration de cet ordinateur pour installer ce programme.
+PowerUserPrivilegesRequired=Vous devez disposer des droits d'administration ou faire partie du groupe Utilisateurs avec pouvoir de cet ordinateur pour installer ce programme.
+SetupAppRunningError=L'assistant d'installation a dtect que %1 est actuellement en cours d'excution.%n%nVeuillez fermer toutes les instances de cette application puis cliquer sur OK pour continuer, ou bien cliquer sur Annuler pour abandonner l'installation.
+UninstallAppRunningError=La procdure de dsinstallation a dtect que %1 est actuellement en cours d'excution.%n%nVeuillez fermer toutes les instances de cette application puis cliquer sur OK pour continuer, ou bien cliquer sur Annuler pour abandonner la dsinstallation.
+
+; *** Misc. errors
+ErrorCreatingDir=L'assistant d'installation n'a pas pu crer le dossier "%1"
+ErrorTooManyFilesInDir=L'assistant d'installation n'a pas pu crer un fichier dans le dossier "%1" car celui-ci contient trop de fichiers
+
+; *** Setup common messages
+ExitSetupTitle=Quitter l'installation
+ExitSetupMessage=L'installation n'est pas termine. Si vous abandonnez maintenant, le programme ne sera pas install.%n%nVous devrez relancer cet assistant pour finir l'installation.%n%nVoulez-vous quand mme quitter l'assistant d'installation ?
+AboutSetupMenuItem=& propos...
+AboutSetupTitle= Propos de l'assistant d'installation
+AboutSetupMessage=%1 version %2%n%3%n%nPage d'accueil de %1 :%n%4
+AboutSetupNote=
+TranslatorNote=Traduction franaise maintenue par Pierre Yager (pierre@levosgien.net)
+
+; *** Buttons
+ButtonBack=< &Prcdent
+ButtonNext=&Suivant >
+ButtonInstall=&Installer
+ButtonOK=OK
+ButtonCancel=Annuler
+ButtonYes=&Oui
+ButtonYesToAll=Oui pour &tout
+ButtonNo=&Non
+ButtonNoToAll=N&on pour tout
+ButtonFinish=&Terminer
+ButtonBrowse=Pa&rcourir...
+ButtonWizardBrowse=Pa&rcourir...
+ButtonNewFolder=Nouveau &dossier
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Langue de l'assistant d'installation
+SelectLanguageLabel=Veuillez slectionner la langue qui sera utilise par l'assistant d'installation :
+
+; *** Common wizard text
+ClickNext=Cliquez sur Suivant pour continuer ou sur Annuler pour abandonner l'installation.
+BeveledLabel=
+BrowseDialogTitle=Parcourir les dossiers
+BrowseDialogLabel=Veuillez choisir un dossier de destination, puis cliquez sur OK.
+NewFolderName=Nouveau dossier
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Bienvenue dans l'assistant d'installation de [name]
+WelcomeLabel2=Cet assistant va vous guider dans l'installation de [name/ver] sur votre ordinateur.%n%nIl est recommand de fermer toutes les applications actives avant de continuer.
+
+; *** "Password" wizard page
+WizardPassword=Mot de passe
+PasswordLabel1=Cette installation est protge par un mot de passe.
+PasswordLabel3=Veuillez saisir le mot de passe (attention la distinction entre majuscules et minuscules) puis cliquez sur Suivant pour continuer.
+PasswordEditLabel=&Mot de passe :
+IncorrectPassword=Le mot de passe saisi n'est pas valide. Veuillez essayer nouveau.
+
+; *** "License Agreement" wizard page
+WizardLicense=Accord de licence
+LicenseLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
+LicenseLabel3=Veuillez lire le contrat de licence suivant. Vous devez en accepter tous les termes avant de continuer l'installation.
+LicenseAccepted=Je comprends et j'&accepte les termes du contrat de licence
+LicenseNotAccepted=Je &refuse les termes du contrat de licence
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
+InfoBeforeClickLabel=Lorsque vous tes prt continuer, cliquez sur Suivant.
+WizardInfoAfter=Information
+InfoAfterLabel=Les informations suivantes sont importantes. Veuillez les lire avant de continuer.
+InfoAfterClickLabel=Lorsque vous tes prt continuer, cliquez sur Suivant.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informations sur l'Utilisateur
+UserInfoDesc=Veuillez saisir les informations qui vous concernent.
+UserInfoName=&Nom d'utilisateur :
+UserInfoOrg=&Organisation :
+UserInfoSerial=Numro de &srie :
+UserInfoNameRequired=Vous devez au moins saisir un nom.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Dossier de destination
+SelectDirDesc=O [name] doit-il tre install ?
+SelectDirLabel3=L'assistant va installer [name] dans le dossier suivant.
+SelectDirBrowseLabel=Pour continuer, cliquez sur Suivant. Si vous souhaitez choisir un dossier diffrent, cliquez sur Parcourir.
+DiskSpaceMBLabel=Le programme requiert au moins [mb] Mo d'espace disque disponible.
+CannotInstallToNetworkDrive=L'assistant ne peut pas installer sur un disque rseau.
+CannotInstallToUNCPath=L'assistant ne peut pas installer sur un chemin UNC.
+InvalidPath=Vous devez saisir un chemin complet avec sa lettre de lecteur ; par exemple :%n%nC:\APP%n%nou un chemin rseau de la forme :%n%n\\serveur\partage
+InvalidDrive=L'unit ou l'emplacement rseau que vous avez slectionn n'existe pas ou n'est pas accessible. Veuillez choisir une autre destination.
+DiskSpaceWarningTitle=Espace disponible insuffisant
+DiskSpaceWarning=L'assistant a besoin d'au moins %1 Ko d'espace disponible pour effectuer l'installation, mais l'unit que vous avez slectionne ne dispose que de %2 Ko d'espace disponible.%n%nSouhaitez-vous continuer malgr tout ?
+DirNameTooLong=Le nom ou le chemin du dossier est trop long.
+InvalidDirName=Le nom du dossier est invalide.
+BadDirName32=Le nom du dossier ne doit contenir aucun des caractres suivants :%n%n%1
+DirExistsTitle=Dossier existant
+DirExists=Le dossier :%n%n%1%n%nexiste dj. Souhaitez-vous installer dans ce dossier malgr tout ?
+DirDoesntExistTitle=Le dossier n'existe pas
+DirDoesntExist=Le dossier %n%n%1%n%nn'existe pas. Souhaitez-vous que ce dossier soit cr ?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Composants installer
+SelectComponentsDesc=Quels composants de l'application souhaitez-vous installer ?
+SelectComponentsLabel2=Slectionnez les composants que vous dsirez installer ; dcochez les composants que vous ne dsirez pas installer. Cliquez ensuite sur Suivant pour continuer l'installation.
+FullInstallation=Installation complte
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Installation compacte
+CustomInstallation=Installation personnalise
+NoUninstallWarningTitle=Composants existants
+NoUninstallWarning=L'assistant d'installation a dtect que les composants suivants sont dj installs sur votre systme :%n%n%1%n%nDslectionner ces composants ne les dsinstallera pas pour autant.%n%nVoulez-vous continuer malgr tout ?
+ComponentSize1=%1 Ko
+ComponentSize2=%1 Mo
+ComponentsDiskSpaceMBLabel=Les composants slectionns ncessitent au moins [mb] Mo d'espace disponible.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Tches supplmentaires
+SelectTasksDesc=Quelles sont les tches supplmentaires qui doivent tre effectues ?
+SelectTasksLabel2=Slectionnez les tches supplmentaires que l'assistant d'installation doit effectuer pendant l'installation de [name], puis cliquez sur Suivant.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Slection du dossier du menu Dmarrer
+SelectStartMenuFolderDesc=O l'assistant d'installation doit-il placer les raccourcis du programme ?
+SelectStartMenuFolderLabel3=L'assistant va crer les raccourcis du programme dans le dossier du menu Dmarrer indiqu ci-dessous.
+SelectStartMenuFolderBrowseLabel=Cliquez sur Suivant pour continuer. Cliquez sur Parcourir si vous souhaitez slectionner un autre dossier du menu Dmarrer.
+MustEnterGroupName=Vous devez saisir un nom de dossier du menu Dmarrer.
+GroupNameTooLong=Le nom ou le chemin du dossier est trop long.
+InvalidGroupName=Le nom du dossier n'est pas valide.
+BadGroupName=Le nom du dossier ne doit contenir aucun des caractres suivants :%n%n%1
+NoProgramGroupCheck2=Ne pas crer de &dossier dans le menu Dmarrer
+
+; *** "Ready to Install" wizard page
+WizardReady=Prt installer
+ReadyLabel1=L'assistant dispose prsent de toutes les informations pour installer [name] sur votre ordinateur.
+ReadyLabel2a=Cliquez sur Installer pour procder l'installation ou sur Prcdent pour revoir ou modifier une option d'installation.
+ReadyLabel2b=Cliquez sur Installer pour procder l'installation.
+ReadyMemoUserInfo=Informations sur l'utilisateur :
+ReadyMemoDir=Dossier de destination :
+ReadyMemoType=Type d'installation :
+ReadyMemoComponents=Composants slectionns :
+ReadyMemoGroup=Dossier du menu Dmarrer :
+ReadyMemoTasks=Tches supplmentaires :
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Prparation de l'installation
+PreparingDesc=L'assistant d'installation prpare l'installation de [name] sur votre ordinateur.
+PreviousInstallNotCompleted=L'installation ou la suppression d'un programme prcdent n'est pas totalement acheve. Veuillez redmarrer votre ordinateur pour achever cette installation ou suppression.%n%nUne fois votre ordinateur redmarr, veuillez relancer cet assistant pour reprendre l'installation de [name].
+CannotContinue=L'assistant ne peut pas continuer. Veuillez cliquer sur Annuler pour abandonner l'installation.
+ApplicationsFound=Les applications suivantes utilisent des fichiers qui doivent tre mis jour par l'assistant. Il est recommand d'autoriser l'assistant fermer ces applications automatiquement.
+ApplicationsFound2=Les applications suivantes utilisent des fichiers qui doivent tre mis jour par l'assistant. Il est recommand d'autoriser l'assistant fermer ces applications automatiquement. Une fois l'installation termine, l'assistant essaiera de relancer ces applications.
+CloseApplications=&Arrter les applications automatiquement
+DontCloseApplications=&Ne pas arrter les applications
+ErrorCloseApplications=L'assistant d'installation n'a pas pu arrter toutes les applications automatiquement. Nous vous recommandons de fermer toutes les applications qui utilisent des fichiers devant tre mis jour par l'assistant d'installation avant de continuer.
+
+; *** "Installing" wizard page
+WizardInstalling=Installation en cours
+InstallingLabel=Veuillez patienter pendant que l'assistant installe [name] sur votre ordinateur.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Fin de l'installation de [name]
+FinishedLabelNoIcons=L'assistant a termin l'installation de [name] sur votre ordinateur.
+FinishedLabel=L'assistant a termin l'installation de [name] sur votre ordinateur. L'application peut tre lance l'aide des icnes cres sur le Bureau par l'installation.
+ClickFinish=Veuillez cliquer sur Terminer pour quitter l'assistant d'installation.
+FinishedRestartLabel=L'assistant doit redmarrer votre ordinateur pour terminer l'installation de [name].%n%nVoulez-vous redmarrer maintenant ?
+FinishedRestartMessage=L'assistant doit redmarrer votre ordinateur pour terminer l'installation de [name].%n%nVoulez-vous redmarrer maintenant ?
+ShowReadmeCheck=Oui, je souhaite lire le fichier LISEZMOI
+YesRadio=&Oui, redmarrer mon ordinateur maintenant
+NoRadio=&Non, je prfre redmarrer mon ordinateur plus tard
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Excuter %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Voir %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=L'assistant a besoin du disque suivant
+SelectDiskLabel2=Veuillez insrer le disque %1 et cliquer sur OK.%n%nSi les fichiers de ce disque se trouvent un emplacement diffrent de celui indiqu ci-dessous, veuillez saisir le chemin correspondant ou cliquez sur Parcourir.
+PathLabel=&Chemin :
+FileNotInDir2=Le fichier "%1" ne peut pas tre trouv dans "%2". Veuillez insrer le bon disque ou slectionner un autre dossier.
+SelectDirectoryLabel=Veuillez indiquer l'emplacement du disque suivant.
+
+; *** Installation phase messages
+SetupAborted=L'installation n'est pas termine.%n%nVeuillez corriger le problme et relancer l'installation.
+EntryAbortRetryIgnore=Cliquez sur Recommencer pour essayer nouveau, Ignorer pour continuer malgr tout, ou Abandonner pour annuler l'installation.
+
+; *** Installation status messages
+StatusClosingApplications=Ferme les applications...
+StatusCreateDirs=Cration des dossiers...
+StatusExtractFiles=Extraction des fichiers...
+StatusCreateIcons=Cration des raccourcis...
+StatusCreateIniEntries=Cration des entres du fichier INI...
+StatusCreateRegistryEntries=Cration des entres de registre...
+StatusRegisterFiles=Enregistrement des fichiers...
+StatusSavingUninstall=Sauvegarde des informations de dsinstallation...
+StatusRunProgram=Finalisation de l'installation...
+StatusRestartingApplications=Relance les applications...
+StatusRollback=Annulation des modifications...
+
+; *** Misc. errors
+ErrorInternal2=Erreur interne : %1
+ErrorFunctionFailedNoCode=%1 a chou
+ErrorFunctionFailed=%1 a chou ; code %2
+ErrorFunctionFailedWithMessage=%1 a chou ; code %2.%n%3
+ErrorExecutingProgram=Impossible d'excuter le fichier :%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Erreur lors de l'ouverture de la cl de registre :%n%1\%2
+ErrorRegCreateKey=Erreur lors de la cration de la cl de registre :%n%1\%2
+ErrorRegWriteKey=Erreur lors de l'criture de la cl de registre :%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Erreur d'criture d'une entre dans le fichier INI "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Cliquez sur Recommencer pour essayer nouveau, Ignorer pour passer ce fichier (dconseill), ou Abandonner pour annuler l'installation.
+FileAbortRetryIgnore2=Cliquez sur Recommencer pour essayer nouveau, Ignorer pour continuer malgr tout (dconseill), ou Abandonner pour annuler l'installation.
+SourceIsCorrupted=Le fichier source est altr
+SourceDoesntExist=Le fichier source "%1" n'existe pas
+ExistingFileReadOnly=Le fichier existant est protg en lecture seule.%n%nCliquez sur Recommencer pour enlever la protection et essayer nouveau, Ignorer pour passer ce fichier, ou Abandonner pour annuler l'installation.
+ErrorReadingExistingDest=Une erreur s'est produite lors de la tentative de lecture du fichier existant :
+FileExists=Le fichier existe dj.%n%nSouhaitez-vous que l'installation le remplace ?
+ExistingFileNewer=Le fichier existant est plus rcent que celui que l'assistant essaie d'installer. Il est recommand de conserver le fichier existant.%n%nSouhaitez-vous conserver le fichier existant ?
+ErrorChangingAttr=Une erreur est survenue en essayant de modifier les attributs du fichier existant :
+ErrorCreatingTemp=Une erreur est survenue en essayant de crer un fichier dans le dossier de destination :
+ErrorReadingSource=Une erreur est survenue lors de la lecture du fichier source :
+ErrorCopying=Une erreur est survenue lors de la copie d'un fichier :
+ErrorReplacingExistingFile=Une erreur est survenue lors du remplacement d'un fichier existant :
+ErrorRestartReplace=Le marquage d'un fichier pour remplacement au redmarrage de l'ordinateur a chou :
+ErrorRenamingTemp=Une erreur est survenue en essayant de renommer un fichier dans le dossier de destination :
+ErrorRegisterServer=Impossible d'enregistrer la bibliothque DLL/OCX : %1
+ErrorRegSvr32Failed=RegSvr32 a chou et a retourn le code d'erreur %1
+ErrorRegisterTypeLib=Impossible d'enregistrer la bibliothque de type : %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Une erreur est survenue l'ouverture du fichier LISEZMOI.
+ErrorRestartingComputer=L'installation n'a pas pu redmarrer l'ordinateur. Merci de bien vouloir le faire vous-mme.
+
+; *** Uninstaller messages
+UninstallNotFound=Le fichier "%1" n'existe pas. Impossible de dsinstaller.
+UninstallOpenError=Le fichier "%1" n'a pas pu tre ouvert. Impossible de dsinstaller
+UninstallUnsupportedVer=Le format du fichier journal de dsinstallation "%1" n'est pas reconnu par cette version de la procdure de dsinstallation. Impossible de dsinstaller
+UninstallUnknownEntry=Une entre inconnue (%1) a t rencontre dans le fichier journal de dsinstallation
+ConfirmUninstall=Voulez-vous vraiment dsinstaller compltement %1 ainsi que tous ses composants ?
+UninstallOnlyOnWin64=La dsinstallation de ce programme ne fonctionne qu'avec une version 64 bits de Windows.
+OnlyAdminCanUninstall=Ce programme ne peut tre dsinstall que par un utilisateur disposant des droits d'administration.
+UninstallStatusLabel=Veuillez patienter pendant que %1 est retir de votre ordinateur.
+UninstalledAll=%1 a t correctement dsinstall de cet ordinateur.
+UninstalledMost=La dsinstallation de %1 est termine.%n%nCertains lments n'ont pas pu tre supprims automatiquement. Vous pouvez les supprimer manuellement.
+UninstalledAndNeedsRestart=Vous devez redmarrer l'ordinateur pour terminer la dsinstallation de %1.%n%nVoulez-vous redmarrer maintenant ?
+UninstallDataCorrupted=Le ficher "%1" est altr. Impossible de dsinstaller
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Supprimer les fichiers partags ?
+ConfirmDeleteSharedFile2=Le systme indique que le fichier partag suivant n'est plus utilis par aucun programme. Souhaitez-vous que la dsinstallation supprime ce fichier partag ?%n%nSi des programmes utilisent encore ce fichier et qu'il est supprim, ces programmes ne pourront plus fonctionner correctement. Si vous n'tes pas sr, choisissez Non. Laisser ce fichier dans votre systme ne posera pas de problme.
+SharedFileNameLabel=Nom du fichier :
+SharedFileLocationLabel=Emplacement :
+WizardUninstalling=tat de la dsinstallation
+StatusUninstalling=Dsinstallation de %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installe %1.
+ShutdownBlockReasonUninstallingApp=Dsinstalle %1.
+
+; Les messages personnaliss suivants ne sont pas utilis par l'installation
+; elle-mme, mais si vous les utilisez dans vos scripts, vous devez les
+; traduire
+
+[CustomMessages]
+
+NameAndVersion=%1 version %2
+AdditionalIcons=Icnes supplmentaires :
+CreateDesktopIcon=Crer une icne sur le &Bureau
+CreateQuickLaunchIcon=Crer une icne dans la barre de &Lancement rapide
+ProgramOnTheWeb=Page d'accueil de %1
+UninstallProgram=Dsinstaller %1
+LaunchProgram=Excuter %1
+AssocFileExtension=&Associer %1 avec l'extension de fichier %2
+AssocingFileExtension=Associe %1 avec l'extension de fichier %2...
+AutoStartProgramGroupDescription=Dmarrage :
+AutoStartProgram=Dmarrer automatiquement %1
+AddonHostProgramNotFound=%1 n'a pas t trouv dans le dossier que vous avez choisi.%n%nVoulez-vous continuer malgr tout ?
diff --git a/dist/windows/languages/German.isl b/dist/windows/languages/German.isl
new file mode 100644
index 00000000..dd36a703
--- /dev/null
+++ b/dist/windows/languages/German.isl
@@ -0,0 +1,346 @@
+; ******************************************************
+; *** ***
+; *** Inno Setup version 5.5.3+ German messages ***
+; *** ***
+; *** Changes 5.5.3+ Author: ***
+; *** ***
+; *** Peter Stadler(Peter.Stadler@univie.ac.at) ***
+; *** Original Author: ***
+; *** ***
+; *** Michael Reitz (innosetup@assimilate.de) ***
+; *** ***
+; *** Contributors: ***
+; *** ***
+; *** Roland Ruder (info@rr4u.de) ***
+; *** Hans Sperber (Hans.Sperber@de.bosch.com) ***
+; *** LaughingMan (puma.d@web.de) ***
+; *** ***
+; ******************************************************
+;
+; Diese bersetzung hlt sich an die neue deutsche Rechtschreibung.
+
+[LangOptions]
+LanguageName=Deutsch
+LanguageID=$0407
+LanguageCodePage=1252
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Setup
+SetupWindowTitle=Setup - %1
+UninstallAppTitle=Entfernen
+UninstallAppFullTitle=%1 entfernen
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Besttigen
+ErrorTitle=Fehler
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=%1 wird jetzt installiert. Mchten Sie fortfahren?
+LdrCannotCreateTemp=Es konnte keine temporre Datei erstellt werden. Das Setup wurde abgebrochen
+LdrCannotExecTemp=Die Datei konnte nicht im temporren Ordner ausgefhrt werden. Das Setup wurde abgebrochen
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nFehler %2: %3
+SetupFileMissing=Die Datei %1 fehlt im Installations-Ordner. Bitte beheben Sie das Problem, oder besorgen Sie sich eine neue Kopie des Programms.
+SetupFileCorrupt=Die Setup-Dateien sind beschdigt. Besorgen Sie sich bitte eine neue Kopie des Programms.
+SetupFileCorruptOrWrongVer=Die Setup-Dateien sind beschdigt oder inkompatibel zu dieser Version des Setups. Bitte beheben Sie das Problem, oder besorgen Sie sich eine neue Kopie des Programms.
+InvalidParameter=Ein ungltiger Paramter wurde auf der Kommandozeile bergeben:%n%n%1
+SetupAlreadyRunning=Setup luft bereits.
+WindowsVersionNotSupported=Dieses Programm untersttzt die auf Ihrem Computer installierte Windows-Version nicht.
+WindowsServicePackRequired=Dieses Programm bentigt %1 Service Pack %2 oder hher.
+NotOnThisPlatform=Dieses Programm kann nicht unter %1 ausgefhrt werden.
+OnlyOnThisPlatform=Dieses Programm muss unter %1 ausgefhrt werden.
+OnlyOnTheseArchitectures=Dieses Programm kann nur auf Windows-Versionen installiert werden, die folgende Prozessor-Architekturen untersttzen:%n%n%1
+MissingWOW64APIs=Ihre Windows-Version enthlt nicht die Funktionen, die vom Setup fr eine 64-bit Installation bentigt werden. Installieren Sie bitte Service Pack %1, um dieses Problem zu beheben.
+WinVersionTooLowError=Dieses Programm bentigt %1 Version %2 oder hher.
+WinVersionTooHighError=Dieses Programm kann nicht unter %1 Version %2 oder hher installiert werden.
+AdminPrivilegesRequired=Sie mssen als Administrator angemeldet sein, um dieses Programm installieren zu knnen.
+PowerUserPrivilegesRequired=Sie mssen als Administrator oder als Mitglied der Hauptbenutzer-Gruppe angemeldet sein, um dieses Programm installieren zu knnen.
+SetupAppRunningError=Das Setup hat entdeckt, dass %1 zur Zeit ausgefhrt wird.%n%nBitte schlieen Sie jetzt alle laufenden Instanzen, und klicken Sie auf "OK", um fortzufahren, oder auf "Abbrechen", um zu beenden.
+UninstallAppRunningError=Die Deinstallation hat entdeckt, dass %1 zur Zeit ausgefhrt wird.%n%nBitte schlieen Sie jetzt alle laufenden Instanzen, und klicken Sie auf "OK", um fortzufahren, oder auf "Abbrechen", um zu beenden.
+
+; *** Misc. errors
+ErrorCreatingDir=Das Setup konnte den Ordner "%1" nicht erstellen
+ErrorTooManyFilesInDir=Das Setup konnte eine Datei im Ordner "%1" nicht erstellen, weil er zu viele Dateien enthlt
+
+; *** Setup common messages
+ExitSetupTitle=Setup verlassen
+ExitSetupMessage=Das Setup ist noch nicht abgeschlossen. Wenn Sie jetzt beenden, wird das Programm nicht installiert.%n%nSie knnen das Setup zu einem spteren Zeitpunkt nochmals ausfhren, um die Installation zu vervollstndigen.%n%nSetup verlassen?
+AboutSetupMenuItem=&ber das Setup ...
+AboutSetupTitle=ber das Setup
+AboutSetupMessage=%1 Version %2%n%3%n%n%1 Internet-Seite:%n%4
+AboutSetupNote=
+TranslatorNote=German translation maintained by Peter Stadler (Peter.Stadler@univie.ac.at)
+
+; *** Buttons
+ButtonBack=< &Zurck
+ButtonNext=&Weiter >
+ButtonInstall=&Installieren
+ButtonOK=OK
+ButtonCancel=Abbrechen
+ButtonYes=&Ja
+ButtonYesToAll=J&a fr Alle
+ButtonNo=&Nein
+ButtonNoToAll=N&ein fr Alle
+ButtonFinish=&Fertigstellen
+ButtonBrowse=&Durchsuchen ...
+ButtonWizardBrowse=Du&rchsuchen ...
+ButtonNewFolder=&Neuen Ordner erstellen
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Setup-Sprache auswhlen
+SelectLanguageLabel=Whlen Sie die Sprache aus, die whrend der Installation benutzt werden soll:
+
+; *** Common wizard text
+ClickNext="Weiter" zum Fortfahren, "Abbrechen" zum Verlassen.
+BeveledLabel=
+BrowseDialogTitle=Ordner suchen
+BrowseDialogLabel=Whlen Sie einen Ordner aus, und klicken Sie danach auf "OK".
+NewFolderName=Neuer Ordner
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Willkommen zum [name] Setup-Assistenten
+WelcomeLabel2=Dieser Assistent wird jetzt [name/ver] auf Ihrem Computer installieren.%n%nSie sollten alle anderen Anwendungen beenden, bevor Sie mit dem Setup fortfahren.
+
+; *** "Password" wizard page
+WizardPassword=Passwort
+PasswordLabel1=Diese Installation wird durch ein Passwort geschtzt.
+PasswordLabel3=Bitte geben Sie das Passwort ein, und klicken Sie danach auf "Weiter". Achten Sie auf korrekte Gro-/Kleinschreibung.
+PasswordEditLabel=&Passwort:
+IncorrectPassword=Das eingegebene Passwort ist nicht korrekt. Bitte versuchen Sie es noch einmal.
+
+; *** "License Agreement" wizard page
+WizardLicense=Lizenzvereinbarung
+LicenseLabel=Lesen Sie bitte folgende, wichtige Informationen bevor Sie fortfahren.
+LicenseLabel3=Lesen Sie bitte die folgenden Lizenzvereinbarungen. Benutzen Sie bei Bedarf die Bildlaufleiste oder drcken Sie die "Bild Ab"-Taste.
+LicenseAccepted=Ich &akzeptiere die Vereinbarung
+LicenseNotAccepted=Ich &lehne die Vereinbarung ab
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Lesen Sie bitte folgende, wichtige Informationen bevor Sie fortfahren.
+InfoBeforeClickLabel=Klicken Sie auf "Weiter", sobald Sie bereit sind mit dem Setup fortzufahren.
+WizardInfoAfter=Information
+InfoAfterLabel=Lesen Sie bitte folgende, wichtige Informationen bevor Sie fortfahren.
+InfoAfterClickLabel=Klicken Sie auf "Weiter", sobald Sie bereit sind mit dem Setup fortzufahren.
+
+; *** "User Information" wizard page
+WizardUserInfo=Benutzerinformationen
+UserInfoDesc=Bitte tragen Sie Ihre Daten ein.
+UserInfoName=&Name:
+UserInfoOrg=&Organisation:
+UserInfoSerial=&Seriennummer:
+UserInfoNameRequired=Sie mssen einen Namen eintragen.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Ziel-Ordner whlen
+SelectDirDesc=Wohin soll [name] installiert werden?
+SelectDirLabel3=Das Setup wird [name] in den folgenden Ordner installieren.
+SelectDirBrowseLabel=Klicken Sie auf "Weiter", um fortzufahren. Klicken Sie auf "Durchsuchen", falls Sie einen anderen Ordner auswhlen mchten.
+DiskSpaceMBLabel=Mindestens [mb] MB freier Speicherplatz ist erforderlich.
+CannotInstallToNetworkDrive=Das Setup kann nicht in einen Netzwerk-Pfad installieren.
+CannotInstallToUNCPath=Das Setup kann nicht in einen UNC-Pfad installieren. Wenn Sie auf ein Netzlaufwerk installieren mchten, mssen Sie dem Netzwerkpfad einen Laufwerksbuchstaben zuordnen.
+InvalidPath=Sie mssen einen vollstndigen Pfad mit einem Laufwerksbuchstaben angeben; z.B.:%n%nC:\Beispiel%n%noder einen UNC-Pfad in der Form:%n%n\\Server\Freigabe
+InvalidDrive=Das angegebene Laufwerk bzw. der UNC-Pfad existiert nicht oder es kann nicht darauf zugegriffen werden. Whlen Sie bitte einen anderen Ordner.
+DiskSpaceWarningTitle=Nicht genug freier Speicherplatz
+DiskSpaceWarning=Das Setup bentigt mindestens %1 KB freien Speicherplatz zum Installieren, aber auf dem ausgewhlten Laufwerk sind nur %2 KB verfgbar.%n%nMchten Sie trotzdem fortfahren?
+DirNameTooLong=Der Ordnername/Pfad ist zu lang.
+InvalidDirName=Der Ordnername ist nicht gltig.
+BadDirName32=Ordnernamen drfen keine der folgenden Zeichen enthalten:%n%n%1
+DirExistsTitle=Ordner existiert bereits
+DirExists=Der Ordner:%n%n%1%n%n existiert bereits. Mchten Sie trotzdem in diesen Ordner installieren?
+DirDoesntExistTitle=Ordner ist nicht vorhanden
+DirDoesntExist=Der Ordner:%n%n%1%n%nist nicht vorhanden. Soll der Ordner erstellt werden?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Komponenten auswhlen
+SelectComponentsDesc=Welche Komponenten sollen installiert werden?
+SelectComponentsLabel2=Whlen Sie die Komponenten aus, die Sie installieren mchten. Klicken Sie auf "Weiter", wenn sie bereit sind fortzufahren.
+FullInstallation=Vollstndige Installation
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Kompakte Installation
+CustomInstallation=Benutzerdefinierte Installation
+NoUninstallWarningTitle=Komponenten vorhanden
+NoUninstallWarning=Das Setup hat festgestellt, dass die folgenden Komponenten bereits auf Ihrem Computer installiert sind:%n%n%1%n%nDiese nicht mehr ausgewhlten Komponenten werden nicht vom Computer entfernt.%n%nMchten Sie trotzdem fortfahren?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Die aktuelle Auswahl erfordert min. [mb] MB Speicherplatz.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Zustzliche Aufgaben auswhlen
+SelectTasksDesc=Welche zustzlichen Aufgaben sollen ausgefhrt werden?
+SelectTasksLabel2=Whlen Sie die zustzlichen Aufgaben aus, die das Setup whrend der Installation von [name] ausfhren soll, und klicken Sie danach auf "Weiter".
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Startmen-Ordner auswhlen
+SelectStartMenuFolderDesc=Wo soll das Setup die Programm-Verknpfungen erstellen?
+SelectStartMenuFolderLabel3=Das Setup wird die Programm-Verknpfungen im folgenden Startmen-Ordner erstellen.
+SelectStartMenuFolderBrowseLabel=Klicken Sie auf "Weiter", um fortzufahren. Klicken Sie auf "Durchsuchen", falls Sie einen anderen Ordner auswhlen mchten.
+MustEnterGroupName=Sie mssen einen Ordnernamen eingeben.
+GroupNameTooLong=Der Ordnername/Pfad ist zu lang.
+InvalidGroupName=Der Ordnername ist nicht gltig.
+BadGroupName=Der Ordnername darf keine der folgenden Zeichen enthalten:%n%n%1
+NoProgramGroupCheck2=&Keinen Ordner im Startmen erstellen
+
+; *** "Ready to Install" wizard page
+WizardReady=Bereit zur Installation.
+ReadyLabel1=Das Setup ist jetzt bereit, [name] auf Ihrem Computer zu installieren.
+ReadyLabel2a=Klicken Sie auf "Installieren", um mit der Installation zu beginnen, oder auf "Zurck", um Ihre Einstellungen zu berprfen oder zu ndern.
+ReadyLabel2b=Klicken Sie auf "Installieren", um mit der Installation zu beginnen.
+ReadyMemoUserInfo=Benutzerinformationen:
+ReadyMemoDir=Ziel-Ordner:
+ReadyMemoType=Setup-Typ:
+ReadyMemoComponents=Ausgewhlte Komponenten:
+ReadyMemoGroup=Startmen-Ordner:
+ReadyMemoTasks=Zustzliche Aufgaben:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Vorbereitung der Installation
+PreparingDesc=Das Setup bereitet die Installation von [name] auf diesen Computer vor.
+PreviousInstallNotCompleted=Eine vorherige Installation/Deinstallation eines Programms wurde nicht abgeschlossen. Der Computer muss neu gestartet werden, um die Installation/Deinstallation zu beenden.%n%nStarten Sie das Setup nach dem Neustart Ihres Computers erneut, um die Installation von [name] durchzufhren.
+CannotContinue=Das Setup kann nicht fortfahren. Bitte klicken Sie auf "Abbrechen" zum Verlassen.
+ApplicationsFound=Die folgenden Anwendungen benutzen Dateien, die aktualisiert werden mssen. Es wird empfohlen, Setup zu erlauben, diese Anwendungen zu schlieen.
+ApplicationsFound2=Die folgenden Anwendungen benutzen Dateien, die aktualisiert werden mssen. Es wird empfohlen, Setup zu erlauben, diese Anwendungen zu schlieen. Nachdem die Installation fertiggestellt wurde, versucht Setup diese Anwendungen wieder zu starten.
+CloseApplications=&Schliee automatisch die Anwendungen
+DontCloseApplications=&Schliee die Anwendungen nicht
+ErrorCloseApplications=Das Setup konnte nicht alle Anwendungen automatisch schlieen. Es wird empfohlen, alle Anwendungen zu schlieen, die Dateien benutzen, die vom Setup vor einer Fortsetzung aktualisiert werden mssen.
+
+; *** "Installing" wizard page
+WizardInstalling=Installiere ...
+InstallingLabel=Warten Sie bitte whrend [name] auf Ihrem Computer installiert wird.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Beenden des [name] Setup-Assistenten
+FinishedLabelNoIcons=Das Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen.
+FinishedLabel=Das Setup hat die Installation von [name] auf Ihrem Computer abgeschlossen. Die Anwendung kann ber die installierten Programm-Verknpfungen gestartet werden.
+ClickFinish=Klicken Sie auf "Fertigstellen", um das Setup zu beenden.
+FinishedRestartLabel=Um die Installation von [name] abzuschlieen, muss das Setup Ihren Computer neu starten. Mchten Sie jetzt neu starten?
+FinishedRestartMessage=Um die Installation von [name] abzuschlieen, muss das Setup Ihren Computer neu starten.%n%nMchten Sie jetzt neu starten?
+ShowReadmeCheck=Ja, ich mchte die LIESMICH-Datei sehen
+YesRadio=&Ja, Computer jetzt neu starten
+NoRadio=&Nein, ich werde den Computer spter neu starten
+; used for example as 'Run MyProg.exe'
+RunEntryExec=%1 starten
+; used for example as 'View Readme.txt'
+RunEntryShellExec=%1 anzeigen
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Nchste Diskette einlegen
+SelectDiskLabel2=Legen Sie bitte Diskette %1 ein, und klicken Sie auf "OK".%n%nWenn sich die Dateien von dieser Diskette in einem anderen als dem angezeigten Ordner befinden, dann geben Sie bitte den korrekten Pfad ein oder klicken auf "Durchsuchen".
+PathLabel=&Pfad:
+FileNotInDir2=Die Datei "%1" befindet sich nicht in "%2". Bitte Ordner ndern oder richtige Diskette einlegen.
+SelectDirectoryLabel=Geben Sie bitte an, wo die nchste Diskette eingelegt wird.
+
+; *** Installation phase messages
+SetupAborted=Das Setup konnte nicht abgeschlossen werden.%n%nBeheben Sie bitte das Problem, und starten Sie das Setup erneut.
+EntryAbortRetryIgnore=Klicken Sie auf "Wiederholen" fr einen weiteren Versuch, "Ignorieren", um trotzdem fortzufahren, oder "Abbrechen", um die Installation abzubrechen.
+
+; *** Installation status messages
+StatusClosingApplications=Anwendungen werden geschlossen...
+StatusCreateDirs=Ordner werden erstellt ...
+StatusExtractFiles=Dateien werden entpackt ...
+StatusCreateIcons=Verknpfungen werden erstellt ...
+StatusCreateIniEntries=INI-Eintrge werden erstellt ...
+StatusCreateRegistryEntries=Registry-Eintrge werden erstellt ...
+StatusRegisterFiles=Dateien werden registriert ...
+StatusSavingUninstall=Deinstallations-Informationen werden gespeichert ...
+StatusRunProgram=Installation wird beendet ...
+StatusRestartingApplications=Neustart der Anwendungen...
+StatusRollback=nderungen werden rckgngig gemacht ...
+
+; *** Misc. errors
+ErrorInternal2=Interner Fehler: %1
+ErrorFunctionFailedNoCode=%1 schlug fehl
+ErrorFunctionFailed=%1 schlug fehl; Code %2
+ErrorFunctionFailedWithMessage=%1 schlug fehl; Code %2.%n%3
+ErrorExecutingProgram=Datei kann nicht ausgefhrt werden:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Registry-Schlssel konnte nicht geffnet werden:%n%1\%2
+ErrorRegCreateKey=Registry-Schlssel konnte nicht erstellt werden:%n%1\%2
+ErrorRegWriteKey=Fehler beim Schreiben des Registry-Schlssels:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Fehler beim Erstellen eines INI-Eintrages in der Datei "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Klicken Sie auf "Wiederholen" fr einen weiteren Versuch, "Ignorieren", um diese Datei zu berspringen (nicht empfohlen), oder "Abbrechen", um die Installation abzubrechen.
+FileAbortRetryIgnore2=Klicken Sie auf "Wiederholen" fr einen weiteren Versuch, "Ignorieren", um trotzdem fortzufahren (nicht empfohlen), oder "Abbrechen", um die Installation abzubrechen.
+SourceIsCorrupted=Die Quelldatei ist beschdigt
+SourceDoesntExist=Die Quelldatei "%1" existiert nicht
+ExistingFileReadOnly=Die vorhandene Datei ist schreibgeschtzt.%n%nKlicken Sie auf "Wiederholen", um den Schreibschutz zu entfernen, "Ignorieren", um die Datei zu berspringen, oder "Abbrechen", um die Installation abzubrechen.
+ErrorReadingExistingDest=Lesefehler in Datei:
+FileExists=Die Datei ist bereits vorhanden.%n%nSoll sie berschrieben werden?
+ExistingFileNewer=Die vorhandene Datei ist neuer als die Datei, die installiert werden soll. Es wird empfohlen die vorhandene Datei beizubehalten.%n%n Mchten Sie die vorhandene Datei beibehalten?
+ErrorChangingAttr=Fehler beim ndern der Datei-Attribute:
+ErrorCreatingTemp=Fehler beim Erstellen einer Datei im Ziel-Ordner:
+ErrorReadingSource=Fehler beim Lesen der Quelldatei:
+ErrorCopying=Fehler beim Kopieren einer Datei:
+ErrorReplacingExistingFile=Fehler beim Ersetzen einer vorhandenen Datei:
+ErrorRestartReplace="Ersetzen nach Neustart" fehlgeschlagen:
+ErrorRenamingTemp=Fehler beim Umbenennen einer Datei im Ziel-Ordner:
+ErrorRegisterServer=DLL/OCX konnte nicht registriert werden: %1
+ErrorRegSvr32Failed=RegSvr32-Aufruf scheiterte mit Exit-Code %1
+ErrorRegisterTypeLib=Typen-Bibliothek konnte nicht registriert werden: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Fehler beim ffnen der LIESMICH-Datei.
+ErrorRestartingComputer=Das Setup konnte den Computer nicht neu starten. Bitte fhren Sie den Neustart manuell durch.
+
+; *** Uninstaller messages
+UninstallNotFound=Die Datei "%1" existiert nicht. Entfernen der Anwendung fehlgeschlagen.
+UninstallOpenError=Die Datei "%1" konnte nicht geffnet werden. Entfernen der Anwendung fehlgeschlagen.
+UninstallUnsupportedVer=Das Format der Deinstallations-Datei "%1" konnte nicht erkannt werden. Entfernen der Anwendung fehlgeschlagen
+UninstallUnknownEntry=In der Deinstallations-Datei wurde ein unbekannter Eintrag (%1) gefunden
+ConfirmUninstall=Sind Sie sicher, dass Sie %1 und alle zugehrigen Komponenten entfernen mchten?
+UninstallOnlyOnWin64=Diese Installation kann nur unter 64-bit Windows-Versionen entfernt werden.
+OnlyAdminCanUninstall=Diese Installation kann nur von einem Benutzer mit Administrator-Rechten entfernt werden.
+UninstallStatusLabel=Warten Sie bitte whrend %1 von Ihrem Computer entfernt wird.
+UninstalledAll=%1 wurde erfolgreich von Ihrem Computer entfernt.
+UninstalledMost=Entfernen von %1 beendet.%n%nEinige Komponenten konnten nicht entfernt werden. Diese knnen von Ihnen manuell gelscht werden.
+UninstalledAndNeedsRestart=Um die Deinstallation von %1 abzuschlieen, muss Ihr Computer neu gestartet werden.%n%nMchten Sie jetzt neu starten?
+UninstallDataCorrupted="%1"-Datei ist beschdigt. Entfernen der Anwendung fehlgeschlagen.
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Gemeinsame Datei entfernen?
+ConfirmDeleteSharedFile2=Das System zeigt an, dass die folgende gemeinsame Datei von keinem anderen Programm mehr benutzt wird. Mchten Sie diese Datei entfernen lassen?%nSollte es doch noch Programme geben, die diese Datei benutzen, und sie wird entfernt, funktionieren diese Programme vielleicht nicht mehr richtig. Wenn Sie unsicher sind, whlen Sie "Nein" um die Datei im System zu belassen. Es schadet Ihrem System nicht, wenn Sie die Datei behalten.
+SharedFileNameLabel=Dateiname:
+SharedFileLocationLabel=Ordner:
+WizardUninstalling=Entfernen (Status)
+StatusUninstalling=Entferne %1 ...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installation von %1.
+ShutdownBlockReasonUninstallingApp=Deinstallation von %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 Version %2
+AdditionalIcons=Zustzliche Symbole:
+CreateDesktopIcon=&Desktop-Symbol erstellen
+CreateQuickLaunchIcon=Symbol in der Schnellstartleiste erstellen
+ProgramOnTheWeb=%1 im Internet
+UninstallProgram=%1 entfernen
+LaunchProgram=%1 starten
+AssocFileExtension=&Registriere %1 mit der %2-Dateierweiterung
+AssocingFileExtension=%1 wird mit der %2-Dateierweiterung registriert...
+AutoStartProgramGroupDescription=Beginn des Setups:
+AutoStartProgram=Starte automatisch%1
+AddonHostProgramNotFound=%1 konnte im ausgwhlten Ordner nicht gefunden werden.%n%nMchten Sie dennoch fortfahren?
+
diff --git a/dist/windows/languages/Greek.isl b/dist/windows/languages/Greek.isl
new file mode 100644
index 00000000..58c5abba
--- /dev/null
+++ b/dist/windows/languages/Greek.isl
@@ -0,0 +1,337 @@
+; *** Inno Setup version 5.5.3+ Greek messages ***
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Originally translated by Anastasis Chatzioglou, baldycom@hotmail.com
+; Updated by XhmikosR [XhmikosR, my_nickname at yahoo dot com]
+;
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=<0395><03BB><03BB><03B7><03BD><03B9><03BA><03AC>
+LanguageID=$408
+LanguageCodePage=1253
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=
+SetupWindowTitle= - %1
+UninstallAppTitle=
+UninstallAppFullTitle=%1
+
+; *** Misc. common
+InformationTitle=
+ConfirmTitle=
+ErrorTitle=
+
+; *** SetupLdr messages
+SetupLdrStartupMessage= %1. ;
+LdrCannotCreateTemp= . .
+LdrCannotExecTemp= . .
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%n %2: %3
+SetupFileMissing= %1 . .
+SetupFileCorrupt= . .
+SetupFileCorruptOrWrongVer= . .
+InvalidParameter= :%n%n%1
+SetupAlreadyRunning= .
+WindowsVersionNotSupported= Windows .
+WindowsServicePackRequired= %1 Service Pack %2 .
+NotOnThisPlatform= %1.
+OnlyOnThisPlatform= %1.
+OnlyOnTheseArchitectures= Windows :%n%n%1
+MissingWOW64APIs= Windows 64-bit. Service Pack %1.
+WinVersionTooLowError= %1 .
+WinVersionTooHighError= %1 .
+AdminPrivilegesRequired= .
+PowerUserPrivilegesRequired= Power User .
+SetupAppRunningError= %1.%n%n , .
+UninstallAppRunningError= %1.%n%n , .
+
+; *** Misc. errors
+ErrorCreatingDir= %1
+ErrorTooManyFilesInDir= "%1"
+
+; *** Setup common messages
+ExitSetupTitle=
+ExitSetupMessage= . , .%n%n .%n%n;
+AboutSetupMenuItem=& ...
+AboutSetupTitle=
+AboutSetupMessage=%1 %2%n%3%n%n%1 %n%4
+AboutSetupNote=
+TranslatorNote= Anastasis Chatzioglou.%n XhmikosR, my_nickname at yahoo dot com
+
+; *** Buttons
+ButtonBack=< &
+ButtonNext=& >
+ButtonInstall=&
+ButtonOK=&
+ButtonCancel=&
+ButtonYes=&
+ButtonYesToAll= &
+ButtonNo=&
+ButtonNoToAll= &
+ButtonFinish=&
+ButtonBrowse=&...
+ButtonWizardBrowse=&...
+ButtonNewFolder=&
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=
+SelectLanguageLabel= :
+
+; *** Common wizard text
+ClickNext= .
+BeveledLabel=
+BrowseDialogTitle=
+BrowseDialogLabel= OK.
+NewFolderName=
+
+; *** "Welcome" wizard page
+WelcomeLabel1= [name]
+WelcomeLabel2= [name/ver] .%n%n .
+
+; *** "Password" wizard page
+WizardPassword=
+PasswordLabel1= .
+PasswordLabel3= .
+PasswordEditLabel=&:
+IncorrectPassword= . , .
+
+; *** "License Agreement" wizard page
+WizardLicense=
+LicenseLabel= .
+LicenseLabel3= . .
+LicenseAccepted=&
+LicenseNotAccepted= &
+
+; *** "Information" wizard pages
+WizardInfoBefore=
+InfoBeforeLabel= .
+InfoBeforeClickLabel= , .
+WizardInfoAfter=
+InfoAfterLabel= .
+InfoAfterClickLabel= , .
+
+; *** "User Information" wizard page
+WizardUserInfo=
+UserInfoDesc= .
+UserInfoName=& :
+UserInfoOrg=&:
+UserInfoSerial=& :
+UserInfoNameRequired= .
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=
+SelectDirDesc= [name];
+SelectDirLabel3= [name] .
+SelectDirBrowseLabel= . , .
+DiskSpaceMBLabel= [mb] MB .
+CannotInstallToNetworkDrive= .
+CannotInstallToUNCPath= UNC.
+InvalidPath= : .. %n%nC:\APP%n%n UNC :%n%n\\server\share
+InvalidDrive= . .
+DiskSpaceWarningTitle=
+DiskSpaceWarning= %1 KB %2 KB.%n%n ;
+DirNameTooLong= .
+InvalidDirName= .
+BadDirName32= :%n%n%1
+DirExistsTitle=
+DirExists= :%n%n%1%n%n . ;
+DirDoesntExistTitle=
+DirDoesntExist= :%n%n%1%n%n . ;
+
+; *** "Select Components" wizard page
+WizardSelectComponents=
+SelectComponentsDesc= ;
+SelectComponentsLabel2= .
+FullInstallation=
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=
+CustomInstallation=
+NoUninstallWarningTitle=
+NoUninstallWarning= :%n%n%1%n%n .%n%n ;
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel= [mb] MB .
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=
+SelectTasksDesc= ;
+SelectTasksLabel2= [name] .
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=
+SelectStartMenuFolderDesc= ;
+SelectStartMenuFolderLabel3= .
+SelectStartMenuFolderBrowseLabel= , . , .
+MustEnterGroupName= .
+GroupNameTooLong= .
+InvalidGroupName= .
+BadGroupName= :%n%n%1
+NoProgramGroupCheck2=& .
+
+; *** "Ready to Install" wizard page
+WizardReady=
+ReadyLabel1= [name] .
+ReadyLabel2a= .
+ReadyLabel2b= .
+ReadyMemoUserInfo= :
+ReadyMemoDir= :
+ReadyMemoType= :
+ReadyMemoComponents= :
+ReadyMemoGroup= :
+ReadyMemoTasks= :
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=
+PreparingDesc= [name] .
+PreviousInstallNotCompleted= / . .%n%n , [name].
+CannotContinue= . .
+ApplicationsFound= . .
+ApplicationsFound2= . . , .
+CloseApplications=&
+DontCloseApplications=&
+ErrorCloseApplications= . .
+
+; *** "Installing" wizard page
+WizardInstalling=
+InstallingLabel= [name] .
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel= [name]
+FinishedLabelNoIcons= [name] .
+FinishedLabel= [name] . .
+ClickFinish= .
+FinishedRestartLabel= [name] . ;
+FinishedRestartMessage= [name] .%n%n ;
+ShowReadmeCheck=,
+YesRadio=&,
+NoRadio=&,
+; used for example as 'Run MyProg.exe'
+RunEntryExec= %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec= %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle= /
+SelectDiskLabel2=, / %1 OK.%n%n / , .
+PathLabel=&:
+FileNotInDir2= "%1" "%2". / .
+SelectDirectoryLabel= /.
+
+; *** Installation phase messages
+SetupAborted= .%n%n, .
+EntryAbortRetryIgnore= Retry , Ignore Abort .
+
+; *** Installation status messages
+StatusClosingApplications= ...
+StatusCreateDirs= ...
+StatusExtractFiles= ...
+StatusCreateIcons= ...
+StatusCreateIniEntries= ...
+StatusCreateRegistryEntries= ...
+StatusRegisterFiles= ...
+StatusSavingUninstall= ...
+StatusRunProgram= ...
+StatusRestartingApplications= ...
+StatusRollback= ...
+
+; *** Misc. errors
+ErrorInternal2= : %1
+ErrorFunctionFailedNoCode=%1
+ErrorFunctionFailed=%1 , %2
+ErrorFunctionFailedWithMessage=%1 , %2.%n%3
+ErrorExecutingProgram= :%n%1
+
+; *** Registry errors
+ErrorRegOpenKey= :%n%1\%2
+ErrorRegCreateKey= :%n%1\%2
+ErrorRegWriteKey= :%n%1\%2
+
+; *** INI errors
+ErrorIniEntry= "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore= Retry , Ignore ( ) Abort .
+FileAbortRetryIgnore2= Retry , Ignore ( ) Abort .
+SourceIsCorrupted=
+SourceDoesntExist= "%1"
+ExistingFileReadOnly= .%n%n Retry , Ignore Abort .
+ErrorReadingExistingDest= :
+FileExists= .%n%n ;
+ExistingFileNewer= . .%n%n ;
+ErrorChangingAttr= :
+ErrorCreatingTemp= :
+ErrorReadingSource= :
+ErrorCopying= :
+ErrorReplacingExistingFile= :
+ErrorRestartReplace= :
+ErrorRenamingTemp= :
+ErrorRegisterServer= DLL/OCX: %1
+ErrorRegSvr32Failed= RegSvr32 %1
+ErrorRegisterTypeLib= : %1
+
+; *** Post-installation errors
+ErrorOpeningReadme= .
+ErrorRestartingComputer= . .
+
+; *** Uninstaller messages
+UninstallNotFound= "%1" . .
+UninstallOpenError= "%1" .
+UninstallUnsupportedVer= "%1" ,
+UninstallUnknownEntry= "%1" ,
+ConfirmUninstall= %1 ;
+UninstallOnlyOnWin64= 64-bit Windows.
+OnlyAdminCanUninstall= .
+UninstallStatusLabel= %1 .
+UninstalledAll= %1 .
+UninstalledMost= %1 .%n%n . .
+UninstalledAndNeedsRestart= %1, .%n%n ;
+UninstallDataCorrupted="%1" .
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle= ;
+ConfirmDeleteSharedFile2= . ;%n%n . , . .
+SharedFileNameLabel= :
+SharedFileLocationLabel=:
+WizardUninstalling=
+StatusUninstalling= %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp= %1.
+ShutdownBlockReasonUninstallingApp= %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 %2
+AdditionalIcons= :
+CreateDesktopIcon= &
+CreateQuickLaunchIcon= &
+ProgramOnTheWeb= %1 Internet
+UninstallProgram= %1
+LaunchProgram= %1
+AssocFileExtension=& %1 %2
+AssocingFileExtension= %1 %2 ...
+AutoStartProgramGroupDescription=:
+AutoStartProgram= %1
+AddonHostProgramNotFound= %1 .%n%n ;
diff --git a/dist/windows/languages/Hebrew.isl b/dist/windows/languages/Hebrew.isl
new file mode 100644
index 00000000..679b18b0
--- /dev/null
+++ b/dist/windows/languages/Hebrew.isl
@@ -0,0 +1,331 @@
+; *** Inno Setup version 5.5.3+ Hebrew messages (stilgar(at)divrei-tora.com) ***
+;
+;
+; Translated by s_h (s_h(at)enativ.com) (c) 2005
+;
+
+[LangOptions]
+LanguageName=<05E2><05D1><05E8><05D9><05EA>
+LanguageID=$040D
+LanguageCodePage=1255
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+WelcomeFontName=Tahoma
+WelcomeFontSize=11
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+RightToLeft=yes
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=
+SetupWindowTitle= - %1
+UninstallAppTitle=
+UninstallAppFullTitle= %1
+
+; *** Misc. common
+InformationTitle=
+ConfirmTitle=
+ErrorTitle=
+
+; *** SetupLdr messages
+SetupLdrStartupMessage= %1 . ?
+LdrCannotCreateTemp= .
+LdrCannotExecTemp= .
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%n %2: %3
+SetupFileMissing= %1 . .
+SetupFileCorrupt= . .
+SetupFileCorruptOrWrongVer= , . .
+InvalidParameter= :%n%n%1
+SetupAlreadyRunning= .
+WindowsVersionNotSupported= .
+WindowsServicePackRequired= %1 %2 .
+NotOnThisPlatform= %1.
+OnlyOnThisPlatform= %1.
+OnlyOnTheseArchitectures= '' :%n%n%1
+MissingWOW64APIs= '' 64-. , %1.
+WinVersionTooLowError= %1 %2.
+WinVersionTooHighError= %1 %2
+AdminPrivilegesRequired= .
+PowerUserPrivilegesRequired= , ' ' .
+SetupAppRunningError= %1 .%n%n , '' , '' .
+UninstallAppRunningError= %1 .%n%n , '' , '' .
+
+; *** Misc. errors
+ErrorCreatingDir= "%1"
+ErrorTooManyFilesInDir= "%1"
+
+; *** Setup common messages
+ExitSetupTitle=
+ExitSetupMessage= . , .%n%n .%n%n ?
+AboutSetupMenuItem=& ...
+AboutSetupTitle=
+AboutSetupMessage=%1 %2%n%3%n%n%1 :%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< &
+ButtonNext=& >
+ButtonInstall=&
+ButtonOK=
+ButtonCancel=
+ButtonYes=&
+ButtonYesToAll= &
+ButtonNo=&
+ButtonNoToAll=&
+ButtonFinish=&
+ButtonBrowse=&...
+ButtonWizardBrowse=...
+ButtonNewFolder=&
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=
+SelectLanguageLabel= :
+
+; *** Common wizard text
+ClickNext= '' , '' .
+BeveledLabel=
+BrowseDialogTitle=
+BrowseDialogLabel= ''
+NewFolderName=
+
+; *** "Welcome" wizard page
+WelcomeLabel1= [name]
+WelcomeLabel2= [name/ver] .%n%n .
+
+; *** "Password" wizard page
+WizardPassword=
+PasswordLabel1= .
+PasswordLabel3= , '' . , .
+PasswordEditLabel=&:
+IncorrectPassword= . .
+
+; *** "License Agreement" wizard page
+WizardLicense=
+LicenseLabel= .
+LicenseLabel3= . .
+LicenseAccepted= &
+LicenseNotAccepted= &
+
+; *** "Information" wizard pages
+WizardInfoBefore=
+InfoBeforeLabel= .
+InfoBeforeClickLabel= , ''.
+WizardInfoAfter=
+InfoAfterLabel=
+InfoAfterClickLabel= , ''.
+
+; *** "User Information" wizard page
+WizardUserInfo=
+UserInfoDesc= .
+UserInfoName=& :
+UserInfoOrg=&:
+UserInfoSerial=& :
+UserInfoNameRequired= .
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=
+SelectDirDesc= [name]?
+SelectDirLabel3= [name] .
+SelectDirBrowseLabel=, ''. , ''.
+DiskSpaceMBLabel= [mb] MB .
+CannotInstallToNetworkDrive= .
+CannotInstallToUNCPath= UNC.
+InvalidPath= ; :%n%nC:\APP%n%n UNC :%n%n\\server\share
+InvalidDrive= -UNC . .
+DiskSpaceWarningTitle=
+DiskSpaceWarning= %1KB , %2KB . ?
+DirNameTooLong=
+InvalidDirName= .
+BadDirName32= :%n%n%1
+DirExistsTitle=
+DirExists=:%n%n%1%n%n . ?
+DirDoesntExistTitle=
+DirDoesntExist=:%n%n%1%n%n . ?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=
+SelectComponentsDesc= ?
+SelectComponentsLabel2= ; . '' .
+FullInstallation=
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=
+CustomInstallation=
+NoUninstallWarningTitle=
+NoUninstallWarning= :%n%n%1%n .%n%n ?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel= [mb] MB .
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=
+SelectTasksDesc= ?
+SelectTasksLabel2= [name], ''.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup= ''
+SelectStartMenuFolderDesc= ?
+SelectStartMenuFolderLabel3= ''.
+SelectStartMenuFolderBrowseLabel=, ''. , ''.
+MustEnterGroupName= .
+GroupNameTooLong=
+InvalidGroupName= -.
+BadGroupName= :%n%n%1
+NoProgramGroupCheck2=& ''
+
+; *** "Ready to Install" wizard page
+WizardReady=
+ReadyLabel1= [name] .
+ReadyLabel2a= '' , '' .
+ReadyLabel2b= ''
+ReadyMemoUserInfo= :
+ReadyMemoDir= :
+ReadyMemoType= :
+ReadyMemoComponents= :
+ReadyMemoGroup= '':
+ReadyMemoTasks= :
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=
+PreparingDesc= [name] .
+PreviousInstallNotCompleted=/ . .%n%n , [name].
+CannotContinue= . '' .
+ApplicationsFound= . .
+ApplicationsFound2= . . , .
+CloseApplications=&
+DontCloseApplications=&
+ErrorCloseApplications= . .
+
+; *** "Installing" wizard page
+WizardInstalling=
+InstallingLabel= [name] .
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel= [name]
+FinishedLabelNoIcons= [name] .
+FinishedLabel= [name] . .
+ClickFinish= '' .
+FinishedRestartLabel= [name], . ?
+FinishedRestartMessage= [name], .%n%n ?
+ShowReadmeCheck=, -' '
+YesRadio=&,
+NoRadio=&,
+; used for example as 'Run MyProg.exe'
+RunEntryExec= %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec= %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=
+SelectDiskLabel2= ' %1 ''.%n%n , ''.
+PathLabel=&:
+FileNotInDir2= "%1" "%2". .
+SelectDirectoryLabel= .
+
+; *** Installation phase messages
+SetupAborted= .%n%n .
+EntryAbortRetryIgnore= ' ' , '' '' .
+
+; *** Installation status messages
+StatusClosingApplications= ...
+StatusCreateDirs= ...
+StatusExtractFiles= ...
+StatusCreateIcons= ...
+StatusCreateIniEntries= INI...
+StatusCreateRegistryEntries= ...
+StatusRegisterFiles= ...
+StatusSavingUninstall= ...
+StatusRunProgram= ...
+StatusRestartingApplications= ...
+StatusRollback= ...
+
+; *** Misc. errors
+ErrorInternal2= : %1
+ErrorFunctionFailedNoCode=%1
+ErrorFunctionFailed=%1 ; %2
+ErrorFunctionFailedWithMessage=%1 ; %2.%n%3
+ErrorExecutingProgram= :%n%1
+
+; *** Registry errors
+ErrorRegOpenKey= :%n%1\%2
+ErrorRegCreateKey= :%n%1\%2
+ErrorRegWriteKey= :%n%1\%2
+
+; *** INI errors
+ErrorIniEntry= INI "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore= ' ' , '' ( ), '' .
+FileAbortRetryIgnore2= ' ' , '' ( ), '' .
+SourceIsCorrupted=
+SourceDoesntExist= "%1"
+ExistingFileReadOnly= .%n%n ' ' , '' , '' .
+ErrorReadingExistingDest= :
+FileExists= .%n%n ?
+ExistingFileNewer= . .%n%n ?
+ErrorChangingAttr= :
+ErrorCreatingTemp= :
+ErrorReadingSource= :
+ErrorCopying= :
+ErrorReplacingExistingFile= :
+ErrorRestartReplace= -RestartReplace:
+ErrorRenamingTemp= :
+ErrorRegisterServer= DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 %1
+ErrorRegisterTypeLib= : %1
+
+; *** Post-installation errors
+ErrorOpeningReadme= ' '.
+ErrorRestartingComputer= . .
+
+; *** Uninstaller messages
+UninstallNotFound= "%1" . .
+UninstallOpenError= "%1". .
+UninstallUnsupportedVer= "%1" " .
+UninstallUnknownEntry= (%1) .
+ConfirmUninstall= %1 ?
+UninstallOnlyOnWin64= '' 64-.
+OnlyAdminCanUninstall= .
+UninstallStatusLabel= %1 .
+UninstalledAll=%1 .
+UninstalledMost= %1 .%n%n " , .
+UninstalledAndNeedsRestart= %1, .%n%n ?
+UninstallDataCorrupted= "%1" .
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle= ?
+ConfirmDeleteSharedFile2= . ?%n%n , . , ''. .
+SharedFileNameLabel= :
+SharedFileLocationLabel=:
+WizardUninstalling=
+StatusUninstalling= %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp= %1.
+ShutdownBlockReasonUninstallingApp= %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 %2
+AdditionalIcons= :
+CreateDesktopIcon= &
+CreateQuickLaunchIcon=
+ProgramOnTheWeb=%1
+UninstallProgram= %1
+LaunchProgram= %1
+AssocFileExtension=& %1 %2
+AssocingFileExtension= %1 %2
+AutoStartProgramGroupDescription= :
+AutoStartProgram= %1
+AddonHostProgramNotFound=%1 .%n%n ?
\ No newline at end of file
diff --git a/dist/windows/languages/Hungarian.isl b/dist/windows/languages/Hungarian.isl
new file mode 100644
index 00000000..dd3fe107
--- /dev/null
+++ b/dist/windows/languages/Hungarian.isl
@@ -0,0 +1,358 @@
+; *** Inno Setup version 5.5.3+ Hungarian messages with "a(z)" definite articles ***
+; Copyright (C) 1999-2012 Kornl Pl
+; All rights reserved.
+; E-mail: kornelpal@gmail.com
+; Hungarian Inno Setup translation home page: http://www.kornelpal.hu/ishu
+;
+; You can download the versions with "a" and "az" definite articles and read
+; about the usage of different Hungarian definite articles on this page.
+;
+; For conditions of use and distribution see Readme.htm file contained in the
+; Hungarian Inno Setup messages package available on the above home page.
+;
+; *** Inno Setup 5.1.11+ verzi magyar zenetek "a(z)" hatrozott nvelkkel ***
+; Copyright (C) 1999-2012 Pl Kornl
+; Minden jog fenntartva.
+; E-mail: kornelpal@gmail.com
+; Magyar Inno Setup oldal: http://www.palkornel.hu/innosetup
+;
+; Az oldalrl letlthet az "a" s az "az" nvelket tartalmaz vltozat, s
+; olvashatsz a klnbz magyar hatrozott nvelk hasznlatrl is.
+;
+; A hasznlat s a tovbbads felttelei a fenti oldalrl letlthet Magyar
+; Inno Setup zenetek csomagban tallhat Fontos.htm fjlban olvashatak.
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Magyar
+LanguageID=$040E
+LanguageCodePage=1250
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+TitleFontName=Arial CE
+;TitleFontSize=29
+CopyrightFontName=Arial CE
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Telept
+SetupWindowTitle=%1 Telept
+UninstallAppTitle=Eltvolt
+UninstallAppFullTitle=%1 Eltvolt
+
+; *** Misc. common
+InformationTitle=Informcik
+ConfirmTitle=Megersts
+ErrorTitle=Hiba
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=A(z) %1 teleptsre fog kerlni. Kvnja folytatni a teleptst?
+LdrCannotCreateTemp=Nem lehet tmeneti fjlt ltrehozni. A telepts megszakadt
+LdrCannotExecTemp=Az tmeneti knyvtrban nem lehet fjlt vgrehajtani. A telepts megszakadt
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nHiba %2: %3
+SetupFileMissing=A(z) %1 fjl hinyzik a telept knyvtrbl. Hrtsa el a hibt, vagy szerezzen be egy j msolatot a programrl.
+SetupFileCorrupt=A teleptfjlok megsrltek. Szerezzen be egy j msolatot a programrl.
+SetupFileCorruptOrWrongVer=A teleptfjlok megsrltek, vagy nem kompatibilisek a Telept jelen verzijval. Hrtsa el a hibt, vagy szerezzen be egy j msolatot a programrl.
+InvalidParameter=Az egyik parancssorban tadott paramter rvnytelen:%n%n%1
+SetupAlreadyRunning=A Telept mr fut.
+WindowsVersionNotSupported=A program nem tmogatja a Windows szmtgpn fut verzijt.
+WindowsServicePackRequired=A program futtatshoz %1 Service Pack %2 vagy ksbbi verzi szksges.
+NotOnThisPlatform=Ez a program nem futtathat %1 alatt.
+OnlyOnThisPlatform=Ezt a programot %1 alatt kell futtatni.
+OnlyOnTheseArchitectures=Ezt a programot csak a Windows kvetkez processzorarchitektrkhoz tervezett vltozataira lehet telepteni:%n%n%1
+MissingWOW64APIs=A Windows n ltal futtatott verzija nem tartalmazza a Telept ltal a 64-bites telepts elvgzshez ignyelt funkcionalitst. A hiba elhrtshoz a Service Pack %1 teleptse szksges.
+WinVersionTooLowError=A program a %1 %2 vagy ksbbi verzijt ignyli.
+WinVersionTooHighError=A programot nem lehet a %1 %2 vagy ksbbi verzijra telepteni.
+AdminPrivilegesRequired=A program teleptshez rendszergazdaknt kell bejelentkezni.
+PowerUserPrivilegesRequired=A program teleptshez rendszergazdaknt vagy a kiemelt felhasznlk csoport tagjaknt kell bejelentkezni.
+SetupAppRunningError=A Telept megllaptotta, hogy a(z) %1 jelenleg fut.%n%nKrem, zrja be az sszes pldnyt, majd a folytatshoz kattintson az OK gombra, vagy a Mgse gombra a kilpshez.
+UninstallAppRunningError=Az Eltvolt megllaptotta, hogy a(z) %1 jelenleg fut.%n%nKrem, zrja be az sszes pldnyt, majd a folytatshoz kattintson az OK gombra, vagy a Mgse gombra a kilpshez.
+
+; *** Misc. errors
+ErrorCreatingDir=A Telept nem tudta ltrehozni a(z) "%1" knyvtrat
+ErrorTooManyFilesInDir=Nem hozhat ltre fjl a(z) "%1" knyvtrban, mert az mr tl sok fjlt tartalmaz
+
+; *** Setup common messages
+ExitSetupTitle=Kilps a Teleptbl
+ExitSetupMessage=A telepts mg nem fejezdtt be. Ha most kilp, a program nem kerl teleptsre.%n%nA Teleptt ksbb is futtathatja a telepts befejezshez.%n%nKilp a Teleptbl?
+AboutSetupMenuItem=&Nvjegy...
+AboutSetupTitle=Telept nvjegye
+AboutSetupMessage=%1 %2 verzi%n%3%n%nAz %1 honlapja:%n%4
+AboutSetupNote=
+TranslatorNote=Magyar vltozat:%nCopyright (C) 1999-2012 Pl Kornl%nMinden jog fenntartva.%n%nMagyar Inno Setup oldal:%nhttp://www.palkornel.hu/innosetup
+
+; *** Buttons
+ButtonBack=< &Vissza
+ButtonNext=&Tovbb >
+ButtonInstall=&Telepts
+ButtonOK=OK
+ButtonCancel=Mgse
+ButtonYes=&Igen
+ButtonYesToAll=Igen, &mindet
+ButtonNo=&Nem
+ButtonNoToAll=&Egyiket sem
+ButtonFinish=&Befejezs
+ButtonBrowse=&Tallzs...
+ButtonWizardBrowse=T&allzs...
+ButtonNewFolder=&j mappa
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Vlasszon teleptsi nyelvet
+SelectLanguageLabel=Vlassza ki a telepts sorn hasznland nyelvet:
+
+; *** Common wizard text
+ClickNext=A folytatshoz kattintson a Tovbb gombra, vagy a Mgse gombra a Teleptbl trtn kilpshez.
+BeveledLabel=
+BrowseDialogTitle=Tallzs a mappk kztt
+BrowseDialogLabel=Vlasszon egy mappt az albbi listbl, majd kattintson az OK gombra.
+NewFolderName=j mappa
+
+; *** "Welcome" wizard page
+WelcomeLabel1=dvzli a(z) [name] Teleptvarzsl.
+WelcomeLabel2=A(z) [name/ver] a szmtgpre fog kerlni.%n%nA telepts folytatsa eltt ajnlott minden ms fut alkalmazst bezrni.
+
+; *** "Password" wizard page
+WizardPassword=Jelsz
+PasswordLabel1=Ez a telepts jelszval van vdve.
+PasswordLabel3=Adja meg a jelszt, majd a folytatshoz kattintson a Tovbb gombra. A jelszavakban a kis- s a nagybetk klnbznek szmtanak.
+PasswordEditLabel=&Jelsz:
+IncorrectPassword=A megadott jelsz helytelen. Prblja jra.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licencszerzds
+LicenseLabel=Olvassa el a kvetkez fontos informcikat a folytats eltt.
+LicenseLabel3=Krem, olvassa el az albbi licencszerzdst. El kell fogadnia a szerzds feltteleit a telepts folytatsa eltt.
+LicenseAccepted=&Elfogadom a szerzdst
+LicenseNotAccepted=&Nem fogadom el a szerzdst
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informcik
+InfoBeforeLabel=Olvassa el a kvetkez fontos informcikat a folytats eltt.
+InfoBeforeClickLabel=Ha felkszlt a telepts folytatsra, kattintson a Tovbb gombra.
+WizardInfoAfter=Informcik
+InfoAfterLabel=Olvassa el a kvetkez fontos informcikat a folytats eltt.
+InfoAfterClickLabel=Ha felkszlt a telepts folytatsra, kattintson a Tovbb gombra.
+
+; *** "User Information" wizard page
+WizardUserInfo=Felhasznl adatai
+UserInfoDesc=Krem, adja meg az adatait.
+UserInfoName=&Felhasznlnv:
+UserInfoOrg=&Szervezet:
+UserInfoSerial=&Sorozatszm:
+UserInfoNameRequired=Meg kell adnia egy nevet.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Vlasszon teleptsi helyet
+SelectDirDesc=Hova kerljn teleptsre a(z) [name]?
+SelectDirLabel3=A Telept a(z) [name] alkalmazst a kvetkez mappba fogja telepteni.
+SelectDirBrowseLabel=A folytatshoz kattintson a Tovbb gombra. Msik mappa kivlasztshoz kattintson a Tallzs gombra.
+DiskSpaceMBLabel=Legalbb [mb] MB szabad lemezterletre van szksg.
+CannotInstallToNetworkDrive=A Telept nem tud hlzati meghajtra telepteni.
+CannotInstallToUNCPath=A Telept nem tud hlzati UNC elrsi tra telepteni.
+InvalidPath=Teljes tvonalat rjon be a meghajt betjelvel; pldul:%n%nC:\Alkalmazs%n%nvagy egy hlzati tvonalat a kvetkez alakban:%n%n\\kiszolgl\megoszts
+InvalidDrive=A kivlasztott meghajt vagy hlzati megoszts nem ltezik vagy nem rhet el. Vlasszon msikat.
+DiskSpaceWarningTitle=Nincs elg szabad lemezterlet a meghajtn
+DiskSpaceWarning=A Teleptnek legalbb %1 KB szabad lemezterletre van szksge, de a kivlasztott meghajtn csak %2 KB ll rendelkezsre.%n%nMindenkppen folytatni kvnja?
+DirNameTooLong=A mappanv vagy az tvonal tl hossz.
+InvalidDirName=A mappanv rvnytelen.
+BadDirName32=A mappanevekben nem szerepelhetnek a kvetkez karakterek:%n%n%1
+DirExistsTitle=A mappa mr ltezik
+DirExists=A kvetkez mappa mr ltezik:%n%n%1 %n%nEbbe a mappba kvnja telepteni a programot?
+DirDoesntExistTitle=A mappa nem ltezik
+DirDoesntExist= A kvetkez mappa nem ltezik:%n%n%1%n%nLtre kvnja hozni a mappt?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=sszetevk kivlasztsa
+SelectComponentsDesc=Mely sszetevk kerljenek teleptsre?
+SelectComponentsLabel2=Vlassza ki a teleptend sszetevket; trlje a telepteni nem kvnt sszetevket. Kattintson a Tovbb gombra, ha kszen ll a folytatsra.
+FullInstallation=Teljes telepts
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Szoksos telepts
+CustomInstallation=Egyni telepts
+NoUninstallWarningTitle=Ltez sszetev
+NoUninstallWarning=A Telept megllaptotta, hogy a kvetkez sszetevk mr teleptve vannak a szmtgpre:%n%n%1%n%nEzen sszetevk kijellsnek trlse nem tvoltja el azokat a szmtgprl.%n%nMindenkppen folytatja?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=A jelenlegi kijells legalbb [mb] MB lemezterletet ignyel.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Jelljn ki kiegszt feladatokat
+SelectTasksDesc=Mely kiegszt feladatok kerljenek vgrehajtsra?
+SelectTasksLabel2=Jellje ki, mely kiegszt feladatokat hajtsa vgre a Telept a(z) [name] teleptse sorn, majd kattintson a Tovbb gombra.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Vlasszon mappt a Start menben
+SelectStartMenuFolderDesc=Hova helyezze a Telept a program parancsikonjait?
+SelectStartMenuFolderLabel3=A Telept a program parancsikonjait a Start men kvetkez mappjban fogja ltrehozni.
+SelectStartMenuFolderBrowseLabel=A folytatshoz kattintson a Tovbb gombra. Msik mappa kivlasztshoz kattintson a Tallzs gombra.
+MustEnterGroupName=Meg kell adnia egy mappanevet.
+GroupNameTooLong=A mappanv vagy az tvonal tl hossz.
+InvalidGroupName=A mappanv rvnytelen.
+BadGroupName=A mappa nevben nem szerepelhetnek a kvetkez karakterek:%n%n%1
+NoProgramGroupCheck2=&Ne hozzon ltre mappt a Start menben
+
+; *** "Ready to Install" wizard page
+WizardReady=A Telept felkszlt
+ReadyLabel1=A Telept felkszlt a(z) [name] szmtgpre trtn teleptsre.
+ReadyLabel2a=Kattintson a Telepts gombra a folytatshoz, vagy a Vissza gombra a belltsok ttekintshez, megvltoztatshoz.
+ReadyLabel2b=Kattintson a Telepts gombra a folytatshoz.
+ReadyMemoUserInfo=Felhasznl adatai:
+ReadyMemoDir=Telepts helye:
+ReadyMemoType=Telepts tpusa:
+ReadyMemoComponents=Vlasztott sszetevk:
+ReadyMemoGroup=Start men mappja:
+ReadyMemoTasks=Kiegszt feladatok:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Felkszls a teleptsre
+PreparingDesc=A Telept felkszl a(z) [name] szmtgpre trtn teleptsre.
+PreviousInstallNotCompleted=Egy korbbi program teleptse/eltvoltsa nem fejezdtt be. jra kell indtania a szmtgpt a msik telepts befejezshez.%n%nA szmtgpe jraindtsa utn ismt futtassa a Teleptt a(z) [name] teleptsnek befejezshez.
+CannotContinue=A telepts nem folytathat. A kilpshez kattintson a Mgse gombra.
+ApplicationsFound=A kvetkez alkalmazsok olyan fjlokat hasznlnak, amelyeket a Teleptnek frissteni kell. Ajnlott, hogy engedlyezze a Teleptnek ezen alkalmazsok automatikus bezrst.
+ApplicationsFound2=A kvetkez alkalmazsok olyan fjlokat hasznlnak, amelyeket a Teleptnek frissteni kell. Ajnlott, hogy engedlyezze a Teleptnek ezen alkalmazsok automatikus bezrst. A telepts befejezse utn a Telept megksrli az alkalmazsok jraindtst.
+CloseApplications=&Alkalmazsok automatikus bezrsa
+DontCloseApplications=&Ne zrja be az alkalmazsokat
+ErrorCloseApplications=A Telept nem tudott minden alkalmazst automatikusan bezrni. A folytats eltt ajnlott minden, a Telept ltal frisstend fjlokat hasznl alkalmazst bezrni.
+
+; *** "Installing" wizard page
+WizardInstalling=Telepts llapota
+InstallingLabel=Legyen trelemmel, amg a(z) [name] szmtgpre trtn teleptse folyik.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=A(z) [name] Teleptvarzsl befejezse
+FinishedLabelNoIcons=A(z) [name] teleptse befejezdtt.
+FinishedLabel=A(z) [name] teleptse befejezdtt. Az alkalmazst a ltrehozott ikonok kivlasztsval indthatja.
+ClickFinish=Kattintson a Befejezs gombra a Teleptbl trtn kilpshez.
+FinishedRestartLabel=A(z) [name] teleptsnek befejezshez jra kell indtani a szmtgpet. jraindtja most?
+FinishedRestartMessage=A(z) [name] teleptsnek befejezshez jra kell indtani a szmtgpet.%n%njraindtja most?
+ShowReadmeCheck=Igen, szeretnm elolvasni a FONTOS fjlt
+YesRadio=&Igen, jraindtom
+NoRadio=&Nem, ksbb indtom jra
+; used for example as 'Run MyProg.exe'
+RunEntryExec=%1 futtatsa
+; used for example as 'View Readme.txt'
+RunEntryShellExec=%1 megtekintse
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=A Teleptnek szksge van a kvetkez lemezre
+SelectDiskLabel2=Helyezze be a(z) %1. lemezt s kattintson az OK gombra.%n%nHa a fjlok a lemez egy a megjelentettl klnbz mappjban tallhatk, rja be a helyes tvonalat vagy kattintson a Tallzs gombra.
+PathLabel=&tvonal:
+FileNotInDir2=A(z) "%1" fjl nem tallhat a kvetkez helyen: "%2". Helyezze be a megfelel lemezt vagy vlasszon egy msik mappt.
+SelectDirectoryLabel=Adja meg a kvetkez lemez helyt.
+
+; *** Installation phase messages
+SetupAborted=A telepts nem fejezdtt be.%n%nHrtsa el a hibt, s futtassa jra a Teleptt.
+EntryAbortRetryIgnore=Kilps: megszakts, Ismt: megismtls, Tovbb: folytats
+
+; *** Installation status messages
+StatusClosingApplications=Alkalmazsok bezrsa...
+StatusCreateDirs=Knyvtrak ltrehozsa...
+StatusExtractFiles=Fjlok kibontsa...
+StatusCreateIcons=Parancsikonok ltrehozsa...
+StatusCreateIniEntries=INI bejegyzsek ltrehozsa...
+StatusCreateRegistryEntries=Rendszerler bejegyzsek ltrehozsa...
+StatusRegisterFiles=Fjlok regisztrlsa...
+StatusSavingUninstall=Eltvolt informcik mentse...
+StatusRunProgram=Telepts befejezse...
+StatusRestartingApplications=Alkalmazsok jraindtsa...
+StatusRollback=Vltoztatsok visszavonsa...
+
+; *** Misc. errors
+ErrorInternal2=Bels hiba: %1
+ErrorFunctionFailedNoCode=Sikertelen %1
+ErrorFunctionFailed=Sikertelen %1; kd: %2
+ErrorFunctionFailedWithMessage=Sikertelen %1; kd: %2.%n%3
+ErrorExecutingProgram=Nem hajthat vgre a fjl:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Nem nyithat meg a rendszerler kulcs:%n%1\%2
+ErrorRegCreateKey=Nem hozhat ltre a rendszerler kulcs:%n%1\%2
+ErrorRegWriteKey=Nem mdosthat a rendszerler kulcs:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Hiba az INI bejegyzs ltrehozsa kzben a(z) "%1" fjlban.
+
+; *** File copying errors
+FileAbortRetryIgnore=Kilps: megszakts, Ismt: megismtls, Tovbb: a fjl tlpse (nem ajnlott)
+FileAbortRetryIgnore2=Kilps: megszakts, Ismt: megismtls, Tovbb: folytats (nem ajnlott)
+SourceIsCorrupted=A forrsfjl megsrlt
+SourceDoesntExist=A(z) "%1" forrsfjl nem ltezik
+ExistingFileReadOnly=A fjl csak olvashatknt van jellve.%n%nKilps: megszakts, Ismt: csak olvashat jells megszntetse, s megismtls, Tovbb: a fjl tlpse (nem ajnlott)
+ErrorReadingExistingDest=Hiba lpett fel a fjl olvassa kzben:
+FileExists=A fjl mr ltezik.%n%nFell kvnja rni?
+ExistingFileNewer=A ltez fjl jabb a teleptsre kerlnl. Ajnlott a ltez fjl megtartsa.%n%nMeg kvnja tartani a ltez fjlt?
+ErrorChangingAttr=Hiba lpett fel a fjl attribtumnak mdostsa kzben:
+ErrorCreatingTemp=Hiba lpett fel a fjl teleptsi knyvtrban trtn ltrehozsa kzben:
+ErrorReadingSource=Hiba lpett fel a forrsfjl olvassa kzben:
+ErrorCopying=Hiba lpett fel a fjl msolsa kzben:
+ErrorReplacingExistingFile=Hiba lpett fel a ltez fjl cserje kzben:
+ErrorRestartReplace=A fjl cserje az jraindts utn sikertelen volt:
+ErrorRenamingTemp=Hiba lpett fel fjl teleptsi knyvtrban trtn tnevezse kzben:
+ErrorRegisterServer=Nem lehet regisztrlni a DLL-t/OCX-et: %1
+ErrorRegSvr32Failed=Sikertelen RegSvr32. A visszaadott kd: %1
+ErrorRegisterTypeLib=Nem lehet regisztrlni a tpustrat: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Hiba lpett fel a FONTOS fjl megnyitsa kzben.
+ErrorRestartingComputer=A Telept nem tudta jraindtani a szmtgpet. Indtsa jra kzileg.
+
+; *** Uninstaller messages
+UninstallNotFound=A(z) "%1" fjl nem ltezik. Nem tvolthat el.
+UninstallOpenError=A(z) "%1" fjl nem nyithat meg. Nem tvolthat el
+UninstallUnsupportedVer=A(z) "%1" eltvoltsi naplfjl formtumt nem tudja felismerni az eltvolt jelen verzija. Az eltvolts nem folytathat
+UninstallUnknownEntry=Egy ismeretlen bejegyzs (%1) tallhat az eltvoltsi naplfjlban
+ConfirmUninstall=Biztosan el kvnja tvoltani a(z) %1 programot s minden sszetevjt?
+UninstallOnlyOnWin64=Ezt a teleptst csak 64-bites Windowson lehet eltvoltani.
+OnlyAdminCanUninstall=Ezt a teleptst csak adminisztrcis jogokkal rendelkez felhasznl tvolthatja el.
+UninstallStatusLabel=Legyen trelemmel, amg a(z) %1 szmtgprl trtn eltvoltsa befejezdik.
+UninstalledAll=A(z) %1 sikeresen el lett tvoltva a szmtgprl.
+UninstalledMost=A(z) %1 eltvoltsa befejezdtt.%n%nNhny elemet nem lehetetett eltvoltani. Trlje kzileg.
+UninstalledAndNeedsRestart=A(z) %1 eltvoltsnak befejezshez jra kell indtania a szmtgpt.%n%njraindtja most?
+UninstallDataCorrupted=A(z) "%1" fjl srlt. Nem tvolthat el.
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Trli a megosztott fjlt?
+ConfirmDeleteSharedFile2=A rendszer azt jelzi, hogy a kvetkez megosztott fjlra mr nincs szksge egyetlen programnak sem. Eltvoltja a megosztott fjlt?%n%nHa ms programok mg mindig hasznljk a megosztott fjlt, akkor az eltvoltsa utn lehet, hogy nem fognak megfelelen mkdni. Ha bizonytalan, vlassza a Nemet. A fjl megtartsa nem okoz problmt a rendszerben.
+SharedFileNameLabel=Fjlnv:
+SharedFileLocationLabel=Helye:
+WizardUninstalling=Eltvolts llapota
+StatusUninstalling=%1 eltvoltsa...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=%1 teleptse.
+ShutdownBlockReasonUninstallingApp=%1 eltvoltsa.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 %2 verzi
+AdditionalIcons=Tovbbi ikonok:
+CreateDesktopIcon=Ikon ltrehozsa az &Asztalon
+CreateQuickLaunchIcon=Ikon ltrehozsa a &Gyorsindts eszkztron
+ProgramOnTheWeb=%1 a weben
+UninstallProgram=%1 eltvoltsa
+LaunchProgram=%1 elindtsa
+AssocFileExtension=A(z) %1 &trstsa a(z) %2 fjlkiterjesztssel
+AssocingFileExtension=A(z) %1 trstsa a(z) %2 fjlkiterjesztssel...
+AutoStartProgramGroupDescription=Indtpult:
+AutoStartProgram=%1 automatikus indtsa
+AddonHostProgramNotFound=A(z) %1 nem tallhat a kivlasztott mappban.%n%nMindenkppen folytatni kvnja?
diff --git a/dist/windows/languages/Italian.isl b/dist/windows/languages/Italian.isl
new file mode 100644
index 00000000..ae5d1c14
--- /dev/null
+++ b/dist/windows/languages/Italian.isl
@@ -0,0 +1,341 @@
+; *** Inno Setup version 5.5.3+ Italian messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Italian.isl - Last Update December 15, 2012 (based on ale5000 5.1.11+ translation)
+;
+; Translator name: Rinaldo M. aka Whiteshark
+; Translator e-mail: dad428(X)hotmail.com (replace (X) with @ )
+;
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Italiano
+LanguageID=$0410
+LanguageCodePage=1252
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Installazione
+SetupWindowTitle=Installazione di %1
+UninstallAppTitle=Disinstallazione
+UninstallAppFullTitle=Disinstallazione di %1
+
+; *** Misc. common
+InformationTitle=Informazioni
+ConfirmTitle=Conferma
+ErrorTitle=Errore
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Questa l'installazione di %1. Si desidera continuare?
+LdrCannotCreateTemp=Impossibile creare un file temporaneo. Installazione annullata
+LdrCannotExecTemp=Impossibile eseguire un file nella cartella temporanea. Installazione annullata
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nErrore %2: %3
+SetupFileMissing=File %1 non trovato nella cartella di installazione. Correggere il problema o richiedere una nuova copia del software.
+SetupFileCorrupt=I file di installazione sono danneggiati. Richiedere una nuova copia del software.
+SetupFileCorruptOrWrongVer=I file di installazione sono danneggiati, o sono incompatibili con questa versione del programma di installazione. Correggere il problema o richiedere una nuova copia del software.
+InvalidParameter=Un parametro non valido stato immesso sulla riga di comando:%n%n%1
+SetupAlreadyRunning=Il processo di installazione gi in funzione.
+WindowsVersionNotSupported=Questo programma non supporta la versione di Windows installata sul computer.
+WindowsServicePackRequired=Questo programma richiede %1 Service Pack %2 o successivo.
+NotOnThisPlatform=Questo programma non compatibile con %1.
+OnlyOnThisPlatform=Questo programma richiede %1.
+OnlyOnTheseArchitectures=Questo programma pu essere installato solo su versioni di Windows progettate per le seguenti architetture del processore:%n%n%1
+MissingWOW64APIs=La versione di Windows utilizzata non include la funzionalit richiesta dal programma di installazione per realizzare un'installazione a 64-bit. Per correggere questo problema, installare il Service Pack %1.
+WinVersionTooLowError=Questo programma richiede %1 versione %2 o successiva.
+WinVersionTooHighError=Questo programma non pu essere installato su %1 versione %2 o successiva.
+AdminPrivilegesRequired=Sono richiesti privilegi di amministratore per installare questo programma.
+PowerUserPrivilegesRequired=Sono richiesti privilegi di amministratore o di Power Users per poter installare questo programma.
+SetupAppRunningError=%1 attualmente in esecuzione.%n%nChiudere adesso tutte le istanze del programma e poi premere OK, oppure premere Annulla per uscire.
+UninstallAppRunningError=%1 attualmente in esecuzione.%n%nChiudere adesso tutte le istanze del programma e poi premere OK, oppure premere Annulla per uscire.
+
+; *** Misc. errors
+ErrorCreatingDir=Impossibile creare la cartella "%1"
+ErrorTooManyFilesInDir=Impossibile creare i file nella cartella "%1" perch contiene troppi file
+
+; *** Setup common messages
+ExitSetupTitle=Uscita dall'installazione
+ExitSetupMessage=L'installazione non completa. Uscendo dall'installazione in questo momento, il programma non sar installato.%n%n possibile eseguire l'installazione in un secondo tempo.%n%nUscire dall'installazione?
+AboutSetupMenuItem=&Informazioni sull'installazione...
+AboutSetupTitle=Informazioni sull'installazione
+AboutSetupMessage=%1 versione %2%n%3%n%n%1 sito web:%n%4
+AboutSetupNote=
+TranslatorNote=Traduzione italiana a cura di Rinaldo M. aka Whiteshark
+
+; *** Buttons
+ButtonBack=< &Indietro
+ButtonNext=&Avanti >
+ButtonInstall=Inst&alla
+ButtonOK=OK
+ButtonCancel=Annulla
+ButtonYes=&Si
+ButtonYesToAll=Si a &tutto
+ButtonNo=&No
+ButtonNoToAll=N&o a tutto
+ButtonFinish=&Fine
+ButtonBrowse=&Sfoglia...
+ButtonWizardBrowse=S&foglia...
+ButtonNewFolder=&Crea nuova cartella
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Selezionare la lingua dell'installazione
+SelectLanguageLabel=Selezionare la lingua da utilizzare durante l'installazione:
+
+; *** Common wizard text
+ClickNext=Premere Avanti per continuare, o Annulla per uscire.
+BeveledLabel=
+BrowseDialogTitle=Sfoglia per cartelle
+BrowseDialogLabel=Selezionare una cartella dalla lista, poi premere OK.
+NewFolderName=Nuova cartella
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Benvenuti nel programma di installazione di [name]
+WelcomeLabel2=[name/ver] sar installato sul computer.%n%nSi consiglia di chiudere tutte le applicazioni attive prima di procedere.
+
+; *** "Password" wizard page
+WizardPassword=Password
+PasswordLabel1=Questa installazione protetta da password.
+PasswordLabel3=Inserire la password, poi premere Avanti per continuare. Le password sono sensibili alle maiuscole/minuscole.
+PasswordEditLabel=&Password:
+IncorrectPassword=La password inserita non corretta, riprovare.
+
+; *** "License Agreement" wizard page
+WizardLicense=Contratto di licenza
+LicenseLabel=Leggere con attenzione le informazioni che seguono prima di procedere.
+LicenseLabel3=Leggere il seguente contratto di licenza. necessario accettare tutti i termini del contratto per procedere con l'installazione.
+LicenseAccepted=Accetto i termini del &contratto di licenza
+LicenseNotAccepted=&Non accetto i termini del contratto di licenza
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informazioni
+InfoBeforeLabel=Leggere le importanti informazioni che seguono prima di procedere.
+InfoBeforeClickLabel=Quando si pronti per proseguire, premere Avanti.
+WizardInfoAfter=Informazioni
+InfoAfterLabel=Leggere le importanti informazioni che seguono prima di procedere.
+InfoAfterClickLabel=Quando si pronti per proseguire, premere Avanti.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informazioni utente
+UserInfoDesc=Inserire le seguenti informazioni.
+UserInfoName=&Nome:
+UserInfoOrg=&Societ:
+UserInfoSerial=&Numero di serie:
+UserInfoNameRequired= necessario inserire un nome.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Selezione della cartella di installazione
+SelectDirDesc=Dove si vuole installare [name]?
+SelectDirLabel3=[name] sar installato nella seguente cartella.
+SelectDirBrowseLabel=Per continuare, premere Avanti. Per scegliere un'altra cartella, premere Sfoglia.
+DiskSpaceMBLabel=Sono richiesti almeno [mb] MB di spazio sul disco.
+CannotInstallToNetworkDrive=Non possibile effettuare l'installazione su un drive in rete.
+CannotInstallToUNCPath=Non possibile effettuare l'installazione su un percorso UNC.
+InvalidPath=Si deve inserire un percorso completo di lettera di unit; per esempio:%n%nC:\APP%n%no un percorso di rete nella forma:%n%n\\server\condivisione
+InvalidDrive=L'unit o il percorso di rete selezionato non esiste o non accessibile. Selezionarne un'altro.
+DiskSpaceWarningTitle=Spazio su disco insufficiente
+DiskSpaceWarning=L'installazione richiede almeno %1 KB di spazio libero per eseguire l'installazione, ma l'unit selezionata ha solo %2 KB disponibili.%n%nSi desidera continuare comunque?
+DirNameTooLong=Il nome della cartella o il percorso sono troppo lunghi.
+InvalidDirName=Il nome della cartella non valido.
+BadDirName32=Il nome della cartella non pu includere nessuno dei caratteri seguenti:%n%n%1
+DirExistsTitle=Cartella gi esistente
+DirExists=La cartella:%n%n%1 esiste gi.%n%nSi desidera utilizzarla comunque?
+DirDoesntExistTitle=Cartella inesistente
+DirDoesntExist=La cartella:%n%n%1 non esiste.%n%nSi desidera crearla?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Selezione componenti
+SelectComponentsDesc=Quali componenti devono essere installati?
+SelectComponentsLabel2=Selezionare i componenti da installare, deselezionare quelli che non si desidera installare. Premere Avanti per continuare.
+FullInstallation=Installazione completa
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Installazione compatta
+CustomInstallation=Installazione personalizzata
+NoUninstallWarningTitle=Componente esistente
+NoUninstallWarning=I seguenti componenti sono gi installati sul computer:%n%n%1%n%nDeselezionando questi componenti essi non verranno rimossi.%n%nSi desidera continuare comunque?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=La selezione corrente richiede almeno [mb] MB di spazio su disco.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Selezione processi addizionali
+SelectTasksDesc=Quali processi aggiuntivi si vogliono avviare?
+SelectTasksLabel2=Selezionare i processi aggiuntivi che verranno eseguiti durante l'installazione di [name], poi premere Avanti.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Selezione della cartella nel Menu Avvio/Start
+SelectStartMenuFolderDesc=Dove si vuole inserire i collegamenti al programma?
+SelectStartMenuFolderLabel3=Saranno creati i collegamenti al programma nella seguente cartella del Menu Avvio/Start.
+SelectStartMenuFolderBrowseLabel=Per continuare, premere Avanti. Per selezionare un'altra cartella, premere Sfoglia.
+MustEnterGroupName=Si deve inserire il nome della cartella.
+GroupNameTooLong=Il nome della cartella o il percorso sono troppo lunghi.
+InvalidGroupName=Il nome della cartella non valido.
+BadGroupName=Il nome della cartella non pu includere nessuno dei caratteri seguenti:%n%n%1
+NoProgramGroupCheck2=&Non creare una cartella nel Menu Avvio/Start
+
+; *** "Ready to Install" wizard page
+WizardReady=Pronto per l'installazione
+ReadyLabel1=Il programma di installazione pronto per iniziare l'installazione di [name] sul computer.
+ReadyLabel2a=Premere Installa per continuare con l'installazione, o Indietro per rivedere o modificare le impostazioni.
+ReadyLabel2b=Premere Installa per procedere con l'installazione.
+ReadyMemoUserInfo=Informazioni utente:
+ReadyMemoDir=Cartella di installazione:
+ReadyMemoType=Tipo di installazione:
+ReadyMemoComponents=Componenti selezionati:
+ReadyMemoGroup=Cartella del menu Avvio/Start:
+ReadyMemoTasks=Processi addizionali:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparazione all'installazione
+PreparingDesc=Preparazione all'installazione di [name] sul computer.
+PreviousInstallNotCompleted=L'installazione/rimozione precedente del programma non stata completata. necessario riavviare il sistema per completare l'installazione.%n%nDopo il riavvio del sistema eseguire di nuovo l'installazione di [name].
+CannotContinue=L'installazione non pu continuare. Premere Annulla per uscire.
+ApplicationsFound=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione. Si consiglia di permettere al processo di chiudere automaticamente queste applicazioni.
+ApplicationsFound2=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione. Si consiglia di permettere al processo di chiudere automaticamente queste applicazioni. Al completamento dell'installazione, il processo tenter di riavviare le applicazioni.
+CloseApplications=Chiudi &automaticamente le applicazioni
+DontCloseApplications=&Non chiudere le applicazioni
+ErrorCloseApplications=L'installazione non riuscita a chiudere automaticamente tutte le applicazioni.Si raccomanda di chiuderetutte le applicazioni che usano file che devono essere aggiornatidurante l'installazione prima di proseguire.
+
+; *** "Installing" wizard page
+WizardInstalling=Installazione in corso
+InstallingLabel=Attendere il completamento dell'installazione di [name] sul computer.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Completamento dell'installazione di [name]
+FinishedLabelNoIcons=L'installazione di [name] stata completata con successo.
+FinishedLabel=L'installazione di [name] stata completata con successo. L'applicazione pu essere eseguita selezionando le relative icone.
+ClickFinish=Premere Fine per uscire dall'installazione.
+FinishedRestartLabel=Per completare l'installazione di [name], necessario riavviare il sistema. Si desidera riavviare adesso?
+FinishedRestartMessage=Per completare l'installazione di [name], necessario riavviare il sistema.%n%nSi desidera riavviare adesso?
+ShowReadmeCheck=Si, desidero vedere il file LEGGIMI adesso
+YesRadio=&Si, riavvia il sistema adesso
+NoRadio=&No, riavvia il sistema pi tardi
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Avvia %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Visualizza %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=L'installazione necessita del disco successivo
+SelectDiskLabel2=Inserire il disco %1 e premere OK.%n%nSe i file su questo disco si trovano in una cartella diversa da quella visualizzata sotto, inserire il percorso corretto o premere Sfoglia.
+PathLabel=&Percorso:
+FileNotInDir2=Il file "%1" non stato trovato in "%2". Inserire il disco corretto o selezionare un'altra cartella.
+SelectDirectoryLabel=Specificare il percorso del prossimo disco.
+
+; *** Installation phase messages
+SetupAborted=L'installazione non stata completata.%n%nCorreggere il problema e rieseguire nuovamente l'installazione.
+EntryAbortRetryIgnore=Premere Riprova per ritentare nuovamente, Ignora per procedere in ogni caso, o Interrompi per terminare l'installazione.
+
+; *** Installation status messages
+StatusClosingApplications=Chiusura applicazioni...
+StatusCreateDirs=Creazione cartelle...
+StatusExtractFiles=Estrazione file...
+StatusCreateIcons=Creazione icone...
+StatusCreateIniEntries=Creazione voci nei file INI...
+StatusCreateRegistryEntries=Creazione voci di registro...
+StatusRegisterFiles=Registrazione file...
+StatusSavingUninstall=Salvataggio delle informazioni di disinstallazione...
+StatusRunProgram=Termine dell'installazione...
+StatusRestartingApplications=Riavvio applicazioni...
+StatusRollback=Recupero delle modifiche...
+
+; *** Misc. errors
+ErrorInternal2=Errore Interno %1
+ErrorFunctionFailedNoCode=%1 fallito
+ErrorFunctionFailed=%1 fallito; codice %2
+ErrorFunctionFailedWithMessage=%1 fallito; codice %2.%n%3
+ErrorExecutingProgram=Impossibile eseguire il file:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Errore di apertura della chiave di registro:%n%1\%2
+ErrorRegCreateKey=Errore di creazione della chiave di registro:%n%1\%2
+ErrorRegWriteKey=Errore di scrittura della chiave di registro:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Errore nella creazione delle voci INI nel file "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Premere Riprova per tentare di nuovo, Ignora per saltare questo file (sconsigliato), o Interrompi per terminare l'installazione.
+FileAbortRetryIgnore2=Premere Riprova per tentare di nuovo, Ignora per proseguire comunque (sconsigliato), o Interrompi per terminare l'installazione.
+SourceIsCorrupted=Il file sorgente danneggiato
+SourceDoesntExist=Il file sorgente "%1" non esiste
+ExistingFileReadOnly=Il file esistente ha l'attributo di sola lettura.%n%nPremere Riprova per rimuovere l'attributo di sola lettura e ritentare, Ignora per saltare questo file, o Interrompi per terminare l'installazione.
+ErrorReadingExistingDest=Si verificato un errore durante la lettura del file esistente:
+FileExists=Il file esiste gi.%n%nDesideri sovrascriverlo?
+ExistingFileNewer=Il file esistente pi recente di quello che si st installando. Si raccomanda di mantenere il file esistente.%n%nSi desidera mantenere il file esistente?
+ErrorChangingAttr=Si verificato un errore durante il tentativo di modifica dell'attributo del file esistente:
+ErrorCreatingTemp=Si verificato un errore durante la creazione di un file nella cartella di installazione:
+ErrorReadingSource=Si verificato un errore durante la lettura del file sorgente:
+ErrorCopying=Si verificato un errore durante la copia di un file:
+ErrorReplacingExistingFile=Si verificato un errore durante la sovrascrittura del file esistente:
+ErrorRestartReplace=Errore durante Riavvio-Sostituzione:
+ErrorRenamingTemp=Si verificato un errore durante il tentativo di rinominare un file nella cartella di installazione:
+ErrorRegisterServer=Impossibile registrare la DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 fallito con codice di uscita %1
+ErrorRegisterTypeLib=Impossibile registrare la libreria di tipo: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Si verificato un errore durante l'apertura del file LEGGIMI.
+ErrorRestartingComputer=Impossibile riavviare il sistema. Riavviare manualmente.
+
+; *** Uninstaller messages
+UninstallNotFound=Il file "%1" non esiste. Impossibile disinstallare.
+UninstallOpenError=Il file "%1" non pu essere aperto. Impossibile disinstallare
+UninstallUnsupportedVer=Il file log di disinstallazione "%1" in un formato non riconosciuto da questa versione del programma di disinstallazione. Impossibile disinstallare
+UninstallUnknownEntry=Trovata una voce sconosciuta (%1) nel file log di disinstallazione
+ConfirmUninstall=Si desidera rimuovere completamente %1 e tutti i suoi componenti?
+UninstallOnlyOnWin64=Questa applicazione pu essere disinstallata solo su Windows a 64-bit.
+OnlyAdminCanUninstall=Questa applicazione pu essere disinstallata solo da un utente con privilegi di amministratore.
+UninstallStatusLabel=Attendere fino a che %1 stato rimosso dal computer.
+UninstalledAll=%1 stato rimosso con successo dal computer.
+UninstalledMost=Disinstallazione di %1 completata.%n%nAlcuni elementi non possono essere rimossi. Dovranno essere rimossi manualmente.
+UninstalledAndNeedsRestart=Per completare la disinstallazione di %1, necessario riavviare il sistema.%n%nSi desidera riavviare adesso?
+UninstallDataCorrupted=Il file "%1" danneggiato. Impossibile disinstallare
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Rimuovere il file condiviso?
+ConfirmDeleteSharedFile2=Il sistema indica che il seguente file condiviso non pi usato da nessun programma. Rimuovere questo file condiviso?%n%nSe qualche programma usasse questo file, potrebbe non funzionare pi correttamente. Se non si sicuri, scegliere No. Lasciare il file nel sistema non pu causare danni.
+SharedFileNameLabel=Nome del file:
+SharedFileLocationLabel=Percorso:
+WizardUninstalling=Stato della disinstallazione
+StatusUninstalling=Disinstallazione di %1 in corso...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installazione di %1.
+ShutdownBlockReasonUninstallingApp=Disinstallazione di %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 versione %2
+AdditionalIcons=Icone aggiuntive:
+CreateDesktopIcon=Crea un'icona sul &desktop
+CreateQuickLaunchIcon=Crea un'icona nella &barra Avvio veloce
+ProgramOnTheWeb=%1 sul Web
+UninstallProgram=Disinstalla %1
+LaunchProgram=Avvia %1
+AssocFileExtension=&Associa l'estensione %2 a %1
+AssocingFileExtension=Associazione dell'estensione %2 a %1 in corso...
+AutoStartProgramGroupDescription=Avvio automatico:
+AutoStartProgram=Avvia automaticamente %1
+AddonHostProgramNotFound=Impossibile individuare %1 nella cartella selezionata.%n%nProseguire ugualmente?
\ No newline at end of file
diff --git a/dist/windows/languages/Japanese.isl b/dist/windows/languages/Japanese.isl
new file mode 100644
index 00000000..085967a7
--- /dev/null
+++ b/dist/windows/languages/Japanese.isl
@@ -0,0 +1,322 @@
+; *** Inno Setup version 5.5.3+ Japanese messages ***
+;
+; Maintained by Koichi Shirasuka (shirasuka@eugrid.co.jp)
+;
+; Translation based on Ryou Minakami (ryou32jp@yahoo.co.jp)
+;
+; $jrsoftware: issrc/Files/Languages/Japanese.isl,v 1.6 2010/03/08 07:50:01 mlaan Exp $
+
+[LangOptions]
+LanguageName=<65E5><672C><8A9E>
+LanguageID=$0411
+LanguageCodePage=932
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=ZbgAbv
+SetupWindowTitle=%1 ZbgAbv
+UninstallAppTitle=ACXg[
+UninstallAppFullTitle=%1 ACXg[
+
+; *** Misc. common
+InformationTitle=
+ConfirmTitle=mF
+ErrorTitle=G[
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=%1 CXg[܂Bs܂H
+LdrCannotCreateTemp=ꎞt@C쐬ł܂BZbgAbv𒆎~܂B
+LdrCannotExecTemp=ꎞtH_̃t@Csł܂BZbgAbv𒆎~܂B
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nG[ %2: %3
+SetupFileMissing=t@C %1 ܂B邩VZbgAbvvO肵ĂB
+SetupFileCorrupt=ZbgAbvt@CĂ܂BVZbgAbvvO肵ĂB
+SetupFileCorruptOrWrongVer=ZbgAbvt@CĂ邩Ão[W̃ZbgAbvƌ݊܂B邩VZbgAbvvO肵ĂB
+InvalidParameter=R}hCɕsȃp[^[n܂:%n%n%1
+SetupAlreadyRunning=ZbgAbv͊ɎsłB
+WindowsVersionNotSupported=̃vO͂g̃o[W Windows T|[gĂ܂B
+WindowsServicePackRequired=̃vO̎sɂ %1 Service Pack %2 ȍ~KvłB
+NotOnThisPlatform=̃vO %1 ł͓삵܂B
+OnlyOnThisPlatform=̃vO̎sɂ %1 KvłB
+OnlyOnTheseArchitectures=̃vO%n%n%1vZbT[ Windows ɂCXg[ł܂B
+MissingWOW64APIs=gp 64-bit Windows ɂ͂̃vOCXg[A삳ׂɕKvȋ@\܂܂Ă܂B̖Cׂɂ̓T[rXpbN %1 CXg[ĂB
+WinVersionTooLowError=̃vO̎sɂ %1 %2 ȍ~KvłB
+WinVersionTooHighError=̃vO %1 %2 ȍ~ł͓삵܂B
+AdminPrivilegesRequired=̃vOCXg[邽߂ɂ͊Ǘ҂ƂăOCKv܂B
+PowerUserPrivilegesRequired=̃vOCXg[邽߂ɂ͊Ǘ҂܂̓p[[U[ƂăOCKv܂B
+SetupAppRunningError=ZbgAbv͎s %1 o܂B%n%nJĂAvP[VׂĕĂuOKvNbNĂBuLZvNbNƁAZbgAbvI܂B
+UninstallAppRunningError=ACXg[͎s %1 o܂B%n%nJĂAvP[VׂĕĂuOKvNbNĂBuLZvNbNƁAZbgAbvI܂B
+
+; *** Misc. errors
+ErrorCreatingDir=fBNg %1 쐬ɃG[܂B
+ErrorTooManyFilesInDir=fBNg %1 Ƀt@C쐬ɃG[܂Bt@C̐܂B
+
+; *** Setup common messages
+ExitSetupTitle=ZbgAbvI
+ExitSetupMessage=ZbgAbvƂ͊Ă܂BŃZbgAbv𒆎~ƃvO̓CXg[܂B%n%n߂ăCXg[ꍇ́AxZbgAbvsĂB%n%nZbgAbvI܂H
+AboutSetupMenuItem=ZbgAbvɂ(&A)...
+AboutSetupTitle=ZbgAbvɂ
+AboutSetupMessage=%1 %2%n%3%n%n%1 z[y[W:%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< ߂(&B)
+ButtonNext=(&N) >
+ButtonInstall=CXg[(&I)
+ButtonOK=OK
+ButtonCancel=LZ
+ButtonYes=͂(&Y)
+ButtonYesToAll=ׂĂ͂(&A)
+ButtonNo=(&N)
+ButtonNoToAll=ׂĂ(&O)
+ButtonFinish=(&F)
+ButtonBrowse=Q(&B)...
+ButtonWizardBrowse=Q(&R)
+ButtonNewFolder=VtH_[(&M)
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=ZbgAbvɎgp錾̑I
+SelectLanguageLabel=CXg[ɗp錾Ił:
+
+; *** Common wizard text
+ClickNext=sɂ́uցvAZbgAbvIɂ́uLZvNbNĂB
+BeveledLabel=
+BrowseDialogTitle=tH_[Q
+BrowseDialogLabel=XgtH_[I OK ĂB
+NewFolderName=VtH_[
+
+; *** "Welcome" wizard page
+WelcomeLabel1=[name] ZbgAbvEBU[h̊Jn
+WelcomeLabel2=̃vO͂gp̃Rs[^[ [name/ver] CXg[܂B%n%nsOɑ̃AvP[VׂďIĂB
+
+; *** "Password" wizard page
+WizardPassword=pX[h
+PasswordLabel1=̃CXg[vO̓pX[hɂĕی삳Ă܂B
+PasswordLabel3=pX[h͂āuցvNbNĂBpX[h͑啶Əʂ܂B
+PasswordEditLabel=pX[h(&P):
+IncorrectPassword=͂ꂽpX[h܂Bx͂ȂĂB
+
+; *** "License Agreement" wizard page
+WizardLicense=gp_̓
+LicenseLabel=sOɈȉ̏dvȏǂ݂B
+LicenseLabel3=ȉ̎gp_ǂ݂BCXg[sɂ͂̌_ɓӂKv܂B
+LicenseAccepted=ӂ(&A)
+LicenseNotAccepted=ӂȂ(&D)
+
+; *** "Information" wizard pages
+WizardInfoBefore=
+InfoBeforeLabel=sOɈȉ̏dvȏǂ݂B
+InfoBeforeClickLabel=ZbgAbvsɂ́uցvNbNĂB
+WizardInfoAfter=
+InfoAfterLabel=sOɈȉ̏dvȏǂ݂B
+InfoAfterClickLabel=ZbgAbvsɂ́uցvNbNĂB
+
+; *** "User Information" wizard page
+WizardUserInfo=[U[
+UserInfoDesc=[U[͂ĂB
+UserInfoName=[U[(&U):
+UserInfoOrg=gD(&O):
+UserInfoSerial=VAԍ(&S):
+UserInfoNameRequired=[U[͂ĂB
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=CXg[̎w
+SelectDirDesc=[name] ̃CXg[w肵ĂB
+SelectDirLabel3=[name] CXg[tH_w肵āAuցvNbNĂB
+SelectDirBrowseLabel=ɂ́uցvNbNĂBʂ̃tH_[Iɂ́uQƁvNbNĂB
+DiskSpaceMBLabel=̃vO͍Œ [mb] MB ̃fBXN̈KvƂ܂B
+CannotInstallToNetworkDrive=lbg[NhCuɃCXg[邱Ƃ͂ł܂B
+CannotInstallToUNCPath=UNC pXɃCXg[邱Ƃ͂ł܂B
+InvalidPath=hCu܂ފSȃpX͂ĂB%n%nFC:\APP%n%n܂ UNC `̃pX͂ĂB%n%nF\\server\share
+InvalidDrive=w肵hCu܂ UNC pXȂANZXł܂Bʂ̃pXw肵ĂB
+DiskSpaceWarningTitle=fBXN̈̕s
+DiskSpaceWarning=CXg[ɂ͍Œ %1 KB ̃fBXN̈悪KvłAw肳ꂽhCuɂ %2 KB ̋̈悵܂B%n%n̂܂ܑs܂H
+DirNameTooLong=hCu܂̓pX߂܂B
+InvalidDirName=tH_[łB
+BadDirName32=ȉ̕܂ރtH_[͎wł܂B:%n%n%1
+DirExistsTitle=̃tH_[
+DirExists=tH_[ %n%n%1%n%nɑ݂܂B̂܂܂̃tH_[փCXg[܂H
+DirDoesntExistTitle=tH_[܂B
+DirDoesntExist=tH_[ %n%n%1%n%n܂BVtH_[쐬܂H
+
+; *** "Select Components" wizard page
+WizardSelectComponents=R|[lg̑I
+SelectComponentsDesc=CXg[R|[lgIĂB
+SelectComponentsLabel2=CXg[R|[lgIĂBCXg[Kv̂ȂR|[lg̓`FbNOĂBsɂ́uցvNbNĂB
+FullInstallation=tCXg[
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=RpNgCXg[
+CustomInstallation=JX^CXg[
+NoUninstallWarningTitle=̃R|[lg
+NoUninstallWarning=ZbgAbv͈ȉ̃R|[lgɃCXg[Ă邱Ƃo܂B%n%n%1%n%ñR|[lg̑IĂACXg[͂܂B%n%n̂܂ܑs܂H
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=݂̑I͍Œ [mb] MB ̃fBXN̈KvƂ܂B
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=lj^XN̑I
+SelectTasksDesc=slj^XNIĂB
+SelectTasksLabel2=[name] CXg[Ɏslj^XNIāAuցvNbNĂB
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=vOO[v̎w
+SelectStartMenuFolderDesc=vOACR쐬ꏊw肵ĂB
+SelectStartMenuFolderLabel3=ZbgAbv̓X^[gj[ɃvÕV[gJbg쐬܂B
+SelectStartMenuFolderBrowseLabel=ɂ́uցvNbNĂBႤfBNgIɂ́uQƁvNbNĂB
+MustEnterGroupName=O[vw肵ĂB
+GroupNameTooLong=tH_[܂̓pX߂܂B
+InvalidGroupName=O[vłB
+BadGroupName=ȉ̕܂ރO[v͎wł܂B:%n%n%1
+NoProgramGroupCheck2=vOO[v쐬Ȃ(&D)
+
+; *** "Ready to Install" wizard page
+WizardReady=CXg[
+ReadyLabel1=gp̃Rs[^ [name] CXg[鏀ł܂B
+ReadyLabel2a=CXg[sɂ́uCXg[vAݒ̊mFύXsɂ́u߂vNbNĂB
+ReadyLabel2b=CXg[sɂ́uCXg[vNbNĂB
+ReadyMemoUserInfo=[U[:
+ReadyMemoDir=CXg[:
+ReadyMemoType=ZbgAbv̎:
+ReadyMemoComponents=IR|[lg:
+ReadyMemoGroup=vOO[v:
+ReadyMemoTasks=lj^XNꗗ:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=CXg[
+PreparingDesc=gp̃Rs[^[ [name] CXg[鏀Ă܂B
+PreviousInstallNotCompleted=OsAvP[ṼCXg[܂͍폜Ă܂Bɂ̓Rs[^[ċNKv܂B%n%n[name] ̃CXg[邽߂ɂ́AċNɂxZbgAbvsĂB
+CannotContinue=ZbgAbvsł܂BuLZvNbNăZbgAbvIĂB
+ApplicationsFound=ȉ̃AvP[VZbgAbvɕKvȃt@CgpĂ܂BZbgAbvɎIɃAvP[VI邱Ƃ𐄏܂B
+ApplicationsFound2=ȉ̃AvP[VZbgAbvɕKvȃt@CgpĂ܂BZbgAbvɎIɃAvP[VI邱Ƃ𐄏܂BCXg[̊AZbgAbv̓AvP[V̍ċN݂܂B
+CloseApplications=IɃAvP[VI(&A)
+DontCloseApplications=AvP[VIȂ(&D)
+ErrorCloseApplications=ZbgAbvׂ͂ẴAvP[VIɏI邱Ƃł܂łBZbgAbvsOɁAXV̕Kvȃt@CgpĂ邷ׂẴAvP[VI邱Ƃ𐄏܂B
+
+; *** "Installing" wizard page
+WizardInstalling=CXg[
+InstallingLabel=gp̃Rs[^[ [name] CXg[Ă܂B炭҂B
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=[name] ZbgAbvEBU[h̊
+FinishedLabelNoIcons=gp̃Rs[^[ [name] ZbgAbv܂B
+FinishedLabel=gp̃Rs[^[ [name] ZbgAbv܂BAvP[Vsɂ̓CXg[ꂽACRIĂB
+ClickFinish=ZbgAbvIɂ́uvNbNĂB
+FinishedRestartLabel=[name] ̃CXg[邽߂ɂ́ARs[^[ċNKv܂BɍċN܂H
+FinishedRestartMessage=[name] ̃CXg[邽߂ɂ́ARs[^[ċNKv܂B%n%nɍċN܂H
+ShowReadmeCheck=README t@C\B
+YesRadio=ɍċN(&Y)
+NoRadio=Ŏ蓮ōċN(&N)
+; used for example as 'Run MyProg.exe'
+RunEntryExec=%1 ̎s
+; used for example as 'View Readme.txt'
+RunEntryShellExec=%1 ̕\
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=fBXN̑}
+SelectDiskLabel2=fBXN %1 }AuOKvNbNĂB%n%ñfBXÑt@Cɕ\ĂtH_[ȊȌꏊɂꍇ́ApX͂邩uQƁv{^NbNĂB
+PathLabel=pX(&P):
+FileNotInDir2=t@C %1 %2 Ɍ܂BfBXN}邩Aʂ̃tH_[w肵ĂB
+SelectDirectoryLabel=̃fBXN̂ꏊw肵ĂB
+
+; *** Installation phase messages
+SetupAborted=ZbgAbv͊Ă܂B%n%nĂAxZbgAbvsĂB
+EntryAbortRetryIgnore=xȂɂ́uĎsvAG[đsɂ́uvACXg[𒆎~ɂ́u~vNbNĂB
+
+; *** Installation status messages
+StatusClosingApplications=AvP[VIĂ܂...
+StatusCreateDirs=tH_[쐬Ă܂...
+StatusExtractFiles=t@CWJĂ܂...
+StatusCreateIcons=V|gJbg쐬Ă܂...
+StatusCreateIniEntries=INIt@Cݒ肵Ă܂...
+StatusCreateRegistryEntries=WXgݒ肵Ă܂...
+StatusRegisterFiles=t@Co^Ă܂...
+StatusSavingUninstall=ACXg[ۑĂ܂...
+StatusRunProgram=CXg[Ă܂...
+StatusRestartingApplications=AvP[VċNĂ܂...
+StatusRollback=ύXɖ߂Ă܂...
+
+; *** Misc. errors
+ErrorInternal2=G[: %1
+ErrorFunctionFailedNoCode=%1 G[
+ErrorFunctionFailed=%1 G[: R[h %2
+ErrorFunctionFailedWithMessage=%1 G[: R[h %2.%n%3
+ErrorExecutingProgram=t@CsG[:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=WXgL[I[vG[:%n%1\%2
+ErrorRegCreateKey=WXgL[쐬G[:%n%1\%2
+ErrorRegWriteKey=WXgL[݃G[:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=INIt@CGg쐬G[: t@C %1
+
+; *** File copying errors
+FileAbortRetryIgnore=xȂɂ́uĎsvÃt@CXLbvđsɂ́uvi܂jACXg[𒆎~ɂ́u~vNbNĂB
+FileAbortRetryIgnore2=xȂɂ́uĎsvÃt@CXLbvđsɂ́uvi܂jACXg[𒆎~ɂ́u~vNbNĂB
+SourceIsCorrupted=Rs[̃t@CĂ܂B
+SourceDoesntExist=Rs[̃t@C %1 ܂B
+ExistingFileReadOnly=̃t@C͓ǂݎpłB%n%nǂݎpĂxȂɂ́uĎsvÃt@CXLbvđsɂ́uvACXg[𒆎~ɂ́u~vNbNĂB
+ErrorReadingExistingDest=̃t@CǂݍݒɃG[܂B:
+FileExists=t@C͊ɑ݂܂B%n%n㏑܂H
+ExistingFileNewer=CXg[悤ƂĂt@CVt@C݂܂B̃t@CcƂ߂܂B%n%ñt@Cc܂B
+ErrorChangingAttr=t@C̑ύXɃG[܂B:
+ErrorCreatingTemp=Rs[̃tH_Ƀt@C쐬ɃG[܂B:
+ErrorReadingSource=Rs[̃t@CǂݍݒɃG[܂B:
+ErrorCopying=t@CRs[ɃG[܂B:
+ErrorReplacingExistingFile=t@CuɃG[܂B:
+ErrorRestartReplace=uĊJɃG[܂B:
+ErrorRenamingTemp=Rs[tH_̃t@CύXɃG[܂B:
+ErrorRegisterServer=DLL/OCX̓o^Ɏs܂B: %1
+ErrorRegSvr32Failed=RegSvr32̓G[R[h %1 ɂ莸s܂B
+ErrorRegisterTypeLib=^CvCuւ̓o^Ɏs܂B: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=README t@C̃I[vɎs܂B
+ErrorRestartingComputer=Rs[^[̍ċNɎs܂B蓮ōċNĂB
+
+; *** Uninstaller messages
+UninstallNotFound=t@C %1 ܂BACXg[sł܂B
+UninstallOpenError=t@C %1 J邱Ƃł܂BACXg[sł܂B
+UninstallUnsupportedVer=ACXg[Ot@C %1 ́Ão[W̃ACXg[vOFłȂ`łBACXg[sł܂B
+UninstallUnknownEntry=ACXg[Oɕs̃Gg %1 ܂B
+ConfirmUninstall=%1 Ƃ̊֘AR|[lgׂč폜܂B낵łH
+UninstallOnlyOnWin64=̃vO64-bitWindowsł̂݃ACXg[邱Ƃł܂B
+OnlyAdminCanUninstall=ACXg[邽߂ɂ͊ǗҌKvłB
+UninstallStatusLabel=gp̃Rs[^[ %1 폜Ă܂B炭҂B
+UninstalledAll=%1 ͂gp̃Rs[^[琳ɍ폜܂B
+UninstalledMost=%1 ̃ACXg[܂B%n%n̍ڂ폜ł܂łB蓮ō폜ĂB
+UninstalledAndNeedsRestart=%1 ̍폜邽߂ɂ́ARs[^[ċNKv܂BɍċN܂H
+UninstallDataCorrupted=t@C "%1" Ă܂BACXg[sł܂B
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Lt@C̍폜
+ConfirmDeleteSharedFile2=VXeŁA̋Lt@C͂ǂ̃vOłgpĂ܂B̋Lt@C폜܂H%n%ñvO܂̃t@CgpꍇA폜ƃvO삵ȂȂ鋰ꂪ܂B܂młȂꍇ́uvIĂBVXeɃt@CcĂNƂ͂܂B
+SharedFileNameLabel=t@C:
+SharedFileLocationLabel=ꏊ:
+WizardUninstalling=ACXg[
+StatusUninstalling=%1 ACXg[Ă܂...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=%1 CXg[łB
+ShutdownBlockReasonUninstallingApp=%1 ACXg[łB
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 o[W %2
+AdditionalIcons=ACRlj:
+CreateDesktopIcon=fXNgbvɃACR쐬(&D)
+CreateQuickLaunchIcon=NCbNNACR쐬(&Q)
+ProgramOnTheWeb=%1 on the Web
+UninstallProgram=%1 ACXg[
+LaunchProgram=%1 s
+AssocFileExtension=t@Cgq %2 %1 ֘At܂B
+AssocingFileExtension=t@Cgq %2 %1 ֘AtĂ܂...
+AutoStartProgramGroupDescription=X^[gAbv:
+AutoStartProgram=%1 IɊJn
+AddonHostProgramNotFound=IꂽtH_[ %1 ܂łB%n%n̂܂ܑs܂H
\ No newline at end of file
diff --git a/dist/windows/languages/Norwegian.isl b/dist/windows/languages/Norwegian.isl
new file mode 100644
index 00000000..cb0e258a
--- /dev/null
+++ b/dist/windows/languages/Norwegian.isl
@@ -0,0 +1,330 @@
+; *** Inno Setup version 5.5.3+ Norwegian (bokml) messages ***
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Norwegian translation by Eivind Bakkestuen
+; E-mail: eivind@nexusdb.com
+; Many thanks to the following people for language improvements and comments:
+;
+; Harald Habberstad, Frode Weum, Morten Johnsen,
+; Tore Ottinsen, Kristian Hyllestad, Thomas Kelso, Jostein Christoffer Andersen
+;
+; $jrsoftware: issrc/Files/Languages/Norwegian.isl,v 1.15 2007/04/23 15:03:35 josander+ Exp $
+
+[LangOptions]
+LanguageName=Norsk
+LanguageID=$0414
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Installasjon
+SetupWindowTitle=Installere - %1
+UninstallAppTitle=Avinstaller
+UninstallAppFullTitle=%1 Avinstallere
+
+; *** Misc. common
+InformationTitle=Informasjon
+ConfirmTitle=Bekreft
+ErrorTitle=Feil
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Dette vil installere %1. Vil du fortsette?
+LdrCannotCreateTemp=Kan ikke lage midlertidig fil, installasjonen er avbrutt
+LdrCannotExecTemp=Kan ikke kjre fil i den midlertidige mappen, installasjonen er avbrutt
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nFeil %2: %3
+SetupFileMissing=Filen %1 mangler i installasjonskatalogen. Vennligst korriger problemet eller skaff deg en ny kopi av programmet.
+SetupFileCorrupt=Installasjonsfilene er delagte. Vennligst skaff deg en ny kopi av programmet.
+SetupFileCorruptOrWrongVer=Installasjonsfilene er delagte eller ikke kompatible med dette installasjonsprogrammet. Vennligst korriger problemet eller skaff deg en ny kopi av programmet.
+InvalidParameter=Kommandolinjen hadde en ugyldig parameter:%n%n%1
+SetupAlreadyRunning=Dette programmet kjrer allerede.
+WindowsVersionNotSupported=Dette programmet sttter ikke Windows-versjonen p denne maskinen.
+WindowsServicePackRequired=Dette programmet krever %1 Service Pack %2 eller nyere.
+NotOnThisPlatform=Dette programmet kjrer ikke p %1.
+OnlyOnThisPlatform=Dette programmet kjrer kun p %1.
+OnlyOnTheseArchitectures=Dette programmet kan kun installeres i Windows-versjoner som er beregnet p flgende prossessorarkitekturer:%n%n%1
+MissingWOW64APIs=Din Windows-versjon mangler funksjonalitet for at installasjonsprogrammet skal gjre en 64-bits-installasjon. Installer Service Pack %1 for rette p dette.
+WinVersionTooLowError=Dette programmet krever %1 versjon %2 eller senere.
+WinVersionTooHighError=Dette programmet kan ikke installeres p %1 versjon %2 eller senere.
+AdminPrivilegesRequired=Administrator-rettigheter kreves for installere dette programmet.
+PowerUserPrivilegesRequired=Du m vre logget inn som administrator eller ha administrator-rettigheter nr du installerer dette programmet.
+SetupAppRunningError=Installasjonsprogrammet har funnet ut at %1 kjrer.%n%nVennligst avslutt det n og klikk deretter OK for fortsette, eller Avbryt for avslutte.
+UninstallAppRunningError=Avinstallasjonsprogrammet har funnet ut at %1 kjrer.%n%nVennligst avslutt det n og klikk deretter OK for fortsette, eller Avbryt for avslutte.
+
+; *** Misc. errors
+ErrorCreatingDir=Installasjonsprogrammet kunne ikke lage mappen "%1"
+ErrorTooManyFilesInDir=Kunne ikke lage en fil i mappen "%1" fordi den inneholder for mange filer
+
+; *** Setup common messages
+ExitSetupTitle=Avslutt installasjonen
+ExitSetupMessage=Installasjonen er ikke ferdig. Programmet installeres ikke hvis du avslutter n.%n%nDu kan installere programmet igjen senere hvis du vil.%n%nVil du avslutte?
+AboutSetupMenuItem=&Om installasjonsprogrammet...
+AboutSetupTitle=Om installasjonsprogrammet
+AboutSetupMessage=%1 versjon %2%n%3%n%n%1 hjemmeside:%n%4
+AboutSetupNote=
+TranslatorNote=Norwegian translation maintained by Eivind Bakkestuen (eivind@nexusdb.com)
+
+; *** Buttons
+ButtonBack=< &Tilbake
+ButtonNext=&Neste >
+ButtonInstall=&Installer
+ButtonOK=OK
+ButtonCancel=Avbryt
+ButtonYes=&Ja
+ButtonYesToAll=Ja til &alle
+ButtonNo=&Nei
+ButtonNoToAll=N&ei til alle
+ButtonFinish=&Ferdig
+ButtonBrowse=&Bla gjennom...
+ButtonWizardBrowse=&Bla gjennom...
+ButtonNewFolder=&Lag ny mappe
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Velg installasjonssprk
+SelectLanguageLabel=Velg sprket som skal brukes under installasjonen:
+
+; *** Common wizard text
+ClickNext=Klikk p Neste for fortsette, eller Avbryt for avslutte installasjonen.
+BeveledLabel=
+BrowseDialogTitle=Bla etter mappe
+BrowseDialogLabel=Velg en mappe fra listen nedenfor, klikk deretter OK.
+NewFolderName=Ny mappe
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Velkommen til installasjonsprogrammet for [name].
+WelcomeLabel2=Dette vil installere [name/ver] p din maskin.%n%nDet anbefales at du avslutter alle programmer som kjrer fr du fortsetter.
+
+; *** "Password" wizard page
+WizardPassword=Passord
+PasswordLabel1=Denne installasjonen er passordbeskyttet.
+PasswordLabel3=Vennligst oppgi ditt passord og klikk p Neste for fortsette. Sm og store bokstaver behandles ulikt.
+PasswordEditLabel=&Passord:
+IncorrectPassword=Det angitte passordet er feil, vennligst prv igjen.
+
+; *** "License Agreement" wizard page
+WizardLicense=Lisensbetingelser
+LicenseLabel=Vennligst les flgende viktig informasjon fr du fortsetter.
+LicenseLabel3=Vennligst les flgende lisensbetingelser. Du m godta innholdet i lisensbetingelsene fr du fortsetter med installasjonen.
+LicenseAccepted=Jeg &aksepterer lisensbetingelsene
+LicenseNotAccepted=Jeg aksepterer &ikke lisensbetingelsene
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informasjon
+InfoBeforeLabel=Vennligst les flgende viktige informasjon fr du fortsetter.
+InfoBeforeClickLabel=Klikk p Neste nr du er klar til fortsette.
+WizardInfoAfter=Informasjon
+InfoAfterLabel=Vennligst les flgende viktige informasjon fr du fortsetter.
+InfoAfterClickLabel=Klikk p Neste nr du er klar til fortsette.
+
+; *** "User Information" wizard page
+WizardUserInfo=Brukerinformasjon
+UserInfoDesc=Vennligst angi informasjon.
+UserInfoName=&Brukernavn:
+UserInfoOrg=&Organisasjon:
+UserInfoSerial=&Serienummer:
+UserInfoNameRequired=Du m angi et navn.
+
+; *** "Select Destination Directory" wizard page
+WizardSelectDir=Velg mappen hvor filene skal installeres:
+SelectDirDesc=Hvor skal [name] installeres?
+SelectDirLabel3=Installasjonsprogrammet vil installere [name] i flgende mappe.
+SelectDirBrowseLabel=Klikk p Neste for fortsette. Klikk p Bla gjennom hvis du vil velge en annen mappe.
+DiskSpaceMBLabel=Programmet krever minst [mb] MB med diskplass.
+CannotInstallToNetworkDrive=Kan ikke installere p en nettverksstasjon.
+CannotInstallToUNCPath=Kan ikke installere p en UNC-bane. Du m tilordne nettverksstasjonen hvis du vil installere i et nettverk.
+InvalidPath=Du m angi en full bane med stasjonsbokstav, for eksempel:%n%nC:\APP%n%Du kan ikke bruke formen:%n%n\\server\share
+InvalidDrive=Den valgte stasjonen eller UNC-delingen finnes ikke, eller er ikke tilgjengelig. Vennligst velg en annen
+DiskSpaceWarningTitle=For lite diskplass
+DiskSpaceWarning=Installasjonprogrammet krever minst %1 KB med ledig diskplass, men det er bare %2 KB ledig p den valgte stasjonen.%n%nvil du fortsette likevel?
+DirNameTooLong=Det er for langt navn p mappen eller banen.
+InvalidDirName=Navnet p mappen er ugyldig.
+BadDirName32=Mappenavn m ikke inneholde noen av flgende tegn:%n%n%1
+DirExistsTitle=Eksisterende mappe
+DirExists=Mappen:%n%n%1%n%nfinnes allerede. Vil du likevel installere der?
+DirDoesntExistTitle=Mappen eksisterer ikke
+DirDoesntExist=Mappen:%n%n%1%n%nfinnes ikke. Vil du at den skal lages?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Velg komponenter
+SelectComponentsDesc=Hvilke komponenter skal installeres?
+SelectComponentsLabel2=Velg komponentene du vil installere; velg bort de komponentene du ikke vil installere. Nr du er klar, klikker du p Neste for fortsette.
+FullInstallation=Full installasjon
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Kompakt installasjon
+CustomInstallation=Egendefinert installasjon
+NoUninstallWarningTitle=Komponenter eksisterer
+NoUninstallWarning=Installasjonsprogrammet har funnet ut at flgende komponenter allerede er p din maskin:%n%n%1%n%nDisse komponentene avinstalleres ikke selv om du ikke velger dem.%n%nVil du likevel fortsette?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Valgte alternativer krever minst [mb] MB med diskplass.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Velg tilleggsoppgaver
+SelectTasksDesc=Hvilke tilleggsoppgaver skal utfres?
+SelectTasksLabel2=Velg tilleggsoppgavene som skal utfres mens [name] installeres, klikk deretter p Neste.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Velg mappe p start-menyen
+SelectStartMenuFolderDesc=Hvor skal installasjonsprogrammet plassere snarveiene?
+SelectStartMenuFolderLabel3=Installasjonsprogrammet vil opprette snarveier p flgende startmeny-mappe.
+SelectStartMenuFolderBrowseLabel=Klikk p Neste for fortsette. Klikk p Bla igjennom hvis du vil velge en annen mappe.
+MustEnterGroupName=Du m skrive inn et mappenavn.
+GroupNameTooLong=Det er for langt navn p mappen eller banen.
+InvalidGroupName=Navnet p mappen er ugyldig.
+BadGroupName=Mappenavnet m ikke inneholde flgende tegn:%n%n%1
+NoProgramGroupCheck2=&Ikke legg til mappe p start-menyen
+
+; *** "Ready to Install" wizard page
+WizardReady=Klar til installere
+ReadyLabel1=Installasjonsprogrammet er n klar til installere [name] p din maskin.
+ReadyLabel2a=Klikk Installer for fortsette, eller Tilbake for se p eller forandre instillingene.
+ReadyLabel2b=Klikk Installer for fortsette.
+ReadyMemoUserInfo=Brukerinformasjon:
+ReadyMemoDir=Installer i mappen:
+ReadyMemoType=Installasjonstype:
+ReadyMemoComponents=Valgte komponenter:
+ReadyMemoGroup=Programgruppe:
+ReadyMemoTasks=Tilleggsoppgaver:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Forbereder installasjonen
+PreparingDesc=Installasjonsprogrammet forbereder installasjon av [name] p den maskin.
+PreviousInstallNotCompleted=Installasjonen/fjerningen av et tidligere program ble ikke ferdig. Du m starte maskinen p nytt.%n%nEtter omstarten m du kjre installasjonsprogrammet p nytt for fullfre installasjonen av [name].
+CannotContinue=Installasjonsprogrammet kan ikke fortsette. Klikk p Avbryt for avslutte.
+ApplicationsFound=Disse applikasjonene bruker filer som vil oppdateres av installasjonen. Det anbefales la installasjonen automatisk avslutte disse applikasjonene.
+ApplicationsFound2=Disse applikasjonene bruker filer som vil oppdateres av installasjonen. Det anbefales la installasjonen automatisk avslutte disse applikasjonene. Installasjonen vil prve starte applikasjonene p nytt etter at installasjonen er avsluttet.
+CloseApplications=Lukk applikasjonene &automatisk
+DontCloseApplications=&Ikke lukk applikasjonene
+ErrorCloseApplications=Installasjonsprogrammet kunne ikke lukke alle applikasjonene &automatisk. Det anbefales lukke alle applikasjoner som bruker filer som installasjonsprogrammet trenger oppdatere fr du fortsetter installasjonen.
+
+; *** "Installing" wizard page
+WizardInstalling=Installerer
+InstallingLabel=Vennligst vent mens [name] installeres p din maskin.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Fullfrer installasjonsprogrammet for [name]
+FinishedLabelNoIcons=[name] er installert p din maskin.
+FinishedLabel=[name] er installert p din maskin. Programmet kan kjres ved at du klikker p ett av de installerte ikonene.
+ClickFinish=Klikk Ferdig for avslutte installasjonen.
+FinishedRestartLabel=Maskinen m startes p nytt for at installasjonen skal fullfres. Vil du starte p nytt n?
+FinishedRestartMessage=Maskinen m startes p nytt for at installasjonen skal fullfres.%n%nVil du starte p nytt n?
+ShowReadmeCheck=Ja, jeg vil se p LESMEG-filen
+YesRadio=&Ja, start maskinen p nytt n
+NoRadio=&Nei, jeg vil starte maskinen p nytt senere
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Kjr %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Se p %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Trenger neste diskett
+SelectDiskLabel2=Vennligst sett inn diskett %1 og klikk OK.%n%nHvis filene p finnes et annet sted enn det som er angitt nedenfor, kan du skrive inn korrekt bane eller klikke p Bla Gjennom.
+PathLabel=&Bane:
+FileNotInDir2=Finner ikke filen "%1" i "%2". Vennligst sett inn riktig diskett eller velg en annen mappe.
+SelectDirectoryLabel=Vennligst angi hvor den neste disketten er.
+
+; *** Installation phase messages
+SetupAborted=Installasjonen ble avbrutt.%n%nVennligst korriger problemet og prv igjen.
+EntryAbortRetryIgnore=Klikk Prv igjen for forske p nytt, Ignorer for fortsette eller Avslutt for avslutte installasjonen.
+
+; *** Installation status messages
+StatusClosingApplications=Lukker applikasjoner...
+StatusCreateDirs=Lager mapper...
+StatusExtractFiles=Pakker ut filer...
+StatusCreateIcons=Lager programikoner...
+StatusCreateIniEntries=Lager INI-instillinger...
+StatusCreateRegistryEntries=Lager innstillinger i registeret...
+StatusRegisterFiles=Registrerer filer...
+StatusSavingUninstall=Lagrer info for avinstallering...
+StatusRunProgram=Gjr ferdig installasjonen...
+StatusRestartingApplications=Restarter applikasjoner...
+StatusRollback=Tilbakestiller forandringer...
+
+; *** Misc. errors
+ErrorInternal2=Intern feil %1
+ErrorFunctionFailedNoCode=%1 gikk galt
+ErrorFunctionFailed=%1 gikk galt; kode %2
+ErrorFunctionFailedWithMessage=%1 gikk galt; kode %2.%n%3
+ErrorExecutingProgram=Kan ikke kjre filen:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Feil under pning av registernkkel:%n%1\%2
+ErrorRegCreateKey=Feil under laging av registernkkel:%n%1\%2
+ErrorRegWriteKey=Feil under skriving til registernkkel:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Feil under laging av innstilling i filen "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Klikk Prv igjen for forske p nytt, Ignorer for overse denne filen (anbefales ikke) eller Avslutt for stoppe installasjonen.
+FileAbortRetryIgnore2=Klikk Prv igjen for forske p nytt, Ignorer for fortsette uansett (anbefales ikke) eller Avslutt for stoppe installasjonen.
+SourceIsCorrupted=Kildefilen er delagt
+SourceDoesntExist=Kildefilen "%1" finnes ikke
+ExistingFileReadOnly=Den eksisterende filen er skrivebeskyttet.%n%nKlikk Prv igjen for fjerne skrivebeskyttelsen og prve p nytt, Ignorer for hoppe over denne filen, eller Avslutt for stoppe installasjonen.
+ErrorReadingExistingDest=En feil oppsto under lesing av den eksisterende filen:
+FileExists=Filen eksisterer allerede.%n%nVil du overskrive den?
+ExistingFileNewer=Den eksisterende filen er nyere enn den som blir forskt installert. Det anbefales at du beholder den eksisterende filen.%n%nVil du beholde den eksisterende filen?
+ErrorChangingAttr=En feil oppsto da attributtene ble forskt forandret p den eksisterende filen:
+ErrorCreatingTemp=En feil oppsto under forsket p lage en fil i ml-mappen:
+ErrorReadingSource=En feil oppsto under forsket p lese kildefilen:
+ErrorCopying=En feil oppsto under forsk p kopiere en fil:
+ErrorReplacingExistingFile=En feil oppsto under forsket p erstatte den eksisterende filen:
+ErrorRestartReplace=RestartReplace gikk galt:
+ErrorRenamingTemp=En feil oppsto under omdping av fil i ml-mappen:
+ErrorRegisterServer=Kan ikke registrere DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 gikk galt med avslutte kode %1
+ErrorRegisterTypeLib=Kan ikke registrere typebiblioteket: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=En feil oppsto under forsket p pne LESMEG-filen.
+ErrorRestartingComputer=Installasjonsprogrammet kunne ikke starte maskinen p nytt. Vennligst gjr dette manuelt.
+
+; *** Uninstaller messages
+UninstallNotFound=Filen "%1" finnes ikke. Kan ikke avinstallere.
+UninstallOpenError=Filen "%1" kunne ikke pnes. Kan ikke avinstallere.
+UninstallUnsupportedVer=Kan ikke avinstallere. Avinstallasjons-loggfilen "%1" har et format som ikke gjenkjennes av denne versjonen av avinstallasjons-programmet
+UninstallUnknownEntry=Et ukjent parameter (%1) ble funnet i Avinstallasjons-loggfilen
+ConfirmUninstall=Er du sikker p at du helt vil fjerne %1 og alle tilhrende komponenter?
+UninstallOnlyOnWin64=Denne installasjonen kan bare ufres p 64-bit Windows.
+OnlyAdminCanUninstall=Denne installasjonen kan bare avinstalleres av en bruker med Administrator-rettigheter.
+UninstallStatusLabel=Vennligst vent mens %1 fjernes fra maskinen.
+UninstalledAll=Avinstallasjonen av %1 var vellykket
+UninstalledMost=Avinstallasjonen av %1 er ferdig.%n%nEnkelte elementer kunne ikke fjernes. Disse kan fjernes manuelt.
+UninstalledAndNeedsRestart=Du m starte maskinen p nytt for fullfre installasjonen av %1.%n%nVil du starte p nytt n?
+UninstallDataCorrupted="%1"-filen er delagt. Kan ikke avinstallere.
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Fjerne delte filer?
+ConfirmDeleteSharedFile2=Systemet indikerer at den flgende filen ikke lengre brukes av andre programmer. Vil du at avinstalleringsprogrammet skal fjerne den delte filen?%n%nHvis andre programmer bruker denne filen, kan du risikere at de ikke lengre vil virke som de skal. Velg Nei hvis du er usikker. Det vil ikke gjre noen skade hvis denne filen ligger p din maskin.
+SharedFileNameLabel=Filnavn:
+SharedFileLocationLabel=Plassering:
+WizardUninstalling=Avinstallerings-status:
+StatusUninstalling=Avinstallerer %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installerer %1.
+ShutdownBlockReasonUninstallingApp=Avinstallerer %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 versjon %2
+AdditionalIcons=Ekstra-ikoner:
+CreateDesktopIcon=Lag ikon p &skrivebordet
+CreateQuickLaunchIcon=Lag et &Hurtigstarts-ikon
+ProgramOnTheWeb=%1 p nettet
+UninstallProgram=Avinstaller %1
+LaunchProgram=Kjr %1
+AssocFileExtension=&Koble %1 med filetternavnet %2
+AssocingFileExtension=Kobler %1 med filetternavnet %2...
+AutoStartProgramGroupDescription=Oppstart:
+AutoStartProgram=Start %1 automatisk
+AddonHostProgramNotFound=%1 ble ikke funnet i katalogen du valgte.%n%nVil du fortsette likevel?
\ No newline at end of file
diff --git a/dist/windows/languages/Polish.isl b/dist/windows/languages/Polish.isl
new file mode 100644
index 00000000..5c12cba3
--- /dev/null
+++ b/dist/windows/languages/Polish.isl
@@ -0,0 +1,327 @@
+; *** Inno Setup version 5.5.3+ Polish messages ***
+; Krzysztof Cynarski
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/is3rdparty.php
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; $jrsoftware: issrc/Files/Languages/Polish.isl,v 1.16 2007/03/09 16:56:52 jr Exp $
+
+[LangOptions]
+LanguageName=Polski
+LanguageID=$0415
+LanguageCodePage=1250
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Instalator
+SetupWindowTitle=Instalacja - %1
+UninstallAppTitle=Deinstalacja
+UninstallAppFullTitle=Odinstaluj %1
+
+; *** Misc. common
+InformationTitle=Informacja
+ConfirmTitle=Potwierdź
+ErrorTitle=Błąd
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Ten program zainstaluje aplikację %1. Czy chcesz kontynuować?
+LdrCannotCreateTemp=Nie można utworzyć pliku tymczasowego. Instalacja przerwana
+LdrCannotExecTemp=Nie można uruchomić pliku w folderze tymczasowym. Instalacja przerwana
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nBłąd %2: %3
+SetupFileMissing=W folderze instalacyjnym brak pliku %1.%nProszę usunąć problem lub uzyskać nową kopię programu instalacyjnego.
+SetupFileCorrupt=Pliki składowe Instalatora są uszkodzone. Proszę uzyskać nową kopię Instalatora od producenta.
+SetupFileCorruptOrWrongVer=Pliki składowe instalatora są uszkodzone lub niezgodne z tą wersją Instalatora. Proszę rozwiązać ten problem lub uzyskać nową kopię Instalatora od producenta.
+InvalidParameter=W lini komend został przekazany nieprawidłowy parametr:%n%n%1
+SetupAlreadyRunning=Instalator jest już uruchomiony.
+WindowsVersionNotSupported=Ten program nie wspiera aktualnie uruchomionej na Twoim komputerze wersji Windows.
+WindowsServicePackRequired=Ten program wymaga %1 z dodatkiem Service Pack %2 lub późniejszym.
+NotOnThisPlatform=Tego programu nie można uruchomić w systemie %1.
+OnlyOnThisPlatform=Ten program wymaga systemu %1.
+OnlyOnTheseArchitectures=Ten program może być uruchomiony tylko w systemie Windows zaprojektowanym na procesory o architekturach:%n%n%1
+MissingWOW64APIs=Ta wersja systemu Windows nie zawiera komponentów niezbędnych do przeprowadzenia 64 bitowej instalacji. Aby usunąć ten problem, proszę zainstalować Service Pack %1.
+WinVersionTooLowError=Ten program wymaga %1 w wersji %2 lub późniejszej.
+WinVersionTooHighError=Ten program nie może być zainstalowany w wersji %2 lub późniejszej systemu %1.
+AdminPrivilegesRequired=Aby przeprowadzić instalację tego programu, Użytkownik musi być zalogowany z uprawnieniami administratora.
+PowerUserPrivilegesRequired=Aby przeprowadzić instalację tego programu, Użytkownik musi być zalogowany z uprawnieniami administratora lub użytkownika zaawansowanego.
+SetupAppRunningError=Instalator wykrył, że %1 jest aktualnie uruchomiony.%n%nZamknij wszystkie okienka tej aplikacji, a potem wybierz przycisk OK, aby kontynuować, lub Anuluj, aby przerwać instalację.
+UninstallAppRunningError=Deinstalator wykrył, że %1 jest aktualnie uruchomiony.%n%nZamknij teraz wszystkie okna tej aplikacji, a następnie wybierz przycisk OK, aby kontynuować, lub Anuluj, aby przerwać deinstalacje.
+
+; *** Misc. errors
+ErrorCreatingDir=Instalator nie mógł utworzyć foldera "%1"
+ErrorTooManyFilesInDir=Nie można utworzyć pliku w folderze %1, ponieważ zawiera on za dużo plików
+
+; *** Setup common messages
+ExitSetupTitle=Zakończ instalację
+ExitSetupMessage=Instalacja nie jest zakończona. Jeżeli przerwiesz ją teraz, program nie zostanie zainstalowany. Można ponowić instalację później, uruchamiając pakiet Instalatora.%n%nCzy chcesz przerwać instalację ?
+AboutSetupMenuItem=&O Instalatorze...
+AboutSetupTitle=O Instalatorze
+AboutSetupMessage=%1 wersja %2%n%3%n%n Strona domowa %1:%n%4
+AboutSetupNote=
+TranslatorNote=Wersja Polska: Krzysztof Cynarski%n
+
+; *** Buttons
+ButtonBack=< &Wstecz
+ButtonNext=&Dalej >
+ButtonInstall=&Instaluj
+ButtonOK=OK
+ButtonCancel=Anuluj
+ButtonYes=&Tak
+ButtonYesToAll=Tak na &wszystkie
+ButtonNo=&Nie
+ButtonNoToAll=N&ie na wszystkie
+ButtonFinish=&Zakończ
+ButtonBrowse=&Przeglądaj...
+ButtonWizardBrowse=P&rzeglądaj...
+ButtonNewFolder=&Utwórz nowy folder
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Wybierz język instalacji
+SelectLanguageLabel=Wybierz język używany podczas instalacji:
+
+; *** Common wizard text
+ClickNext=Wybierz przycisk Dalej, aby kontynuować, lub Anuluj, aby zakończyć instalację.
+BeveledLabel=
+BrowseDialogTitle=Wskaż folder
+BrowseDialogLabel=Wybierz folder z poniższej listy, a następnie wybierz przycisk OK.
+NewFolderName=Nowy folder
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Witamy w Kreatorze instalacji programu [name].
+WelcomeLabel2=Instalator zainstaluje teraz program [name/ver] na Twoim komputerze.%n%nZalecane jest zamknięcie wszystkich innych uruchomionych programów przed rozpoczęciem procesu instalacji.
+
+; *** "Password" wizard page
+WizardPassword=Hasło
+PasswordLabel1=Ta instalacja jest zabezpieczona hasłem.
+PasswordLabel3=Podaj hasło, potem wybierz przycisk Dalej, aby kontynuować. W hasłach rozróżniane są duże i małe litery.
+PasswordEditLabel=&Hasło:
+IncorrectPassword=Wprowadzone hasło nie jest poprawne. Spróbuj ponownie.
+
+; *** "License Agreement" wizard page
+WizardLicense=Umowa Licencyjna
+LicenseLabel=Przed kontynuacją proszę przeczytać poniższe ważne informacje.
+LicenseLabel3=Proszę przeczytać tekst Umowy Licencyjnej. Musisz zgodzić się na warunki tej umowy przed kontynuacją instalacji.
+LicenseAccepted=&Akceptuję warunki umowy
+LicenseNotAccepted=&Nie akceptuję warunków umowy
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informacja
+InfoBeforeLabel=Przed przejściem do dalszego etapu instalacji, proszę przeczytać poniższą informację.
+InfoBeforeClickLabel=Kiedy będziesz gotowy do instalacji, kliknij przycisk Dalej.
+WizardInfoAfter=Informacja
+InfoAfterLabel=Przed przejściem do dalszego etapu instalacji, proszę przeczytać poniższą informację.
+InfoAfterClickLabel=Gdy będziesz gotowy do zakończenia instalacji, kliknij przycisk Dalej.
+
+; *** "User Information" wizard page
+WizardUserInfo=Dane Użytkownika
+UserInfoDesc=Proszę podać swoje dane.
+UserInfoName=&Nazwisko:
+UserInfoOrg=&Organizacja:
+UserInfoSerial=Numer &seryjny:
+UserInfoNameRequired=Musisz podać nazwisko.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Wybierz docelową lokalizację
+SelectDirDesc=Gdzie ma być zainstalowany program [name]?
+SelectDirLabel3=Instalator zainstaluje program [name] do poniższego folderu.
+SelectDirBrowseLabel=Kliknij przycisk Dalej, aby kontynuować. Jeśli chcesz określić inny folder, kliknij przycisk Przeglądaj.
+DiskSpaceMBLabel=Potrzeba przynajmniej [mb] MB wolnego miejsca na dysku.
+CannotInstallToNetworkDrive=Instalator nie może zainstalować programu na dysku sieciowym.
+CannotInstallToUNCPath=Instalator nie może zainstalować programu w ścieżce UNC.
+InvalidPath=Musisz wprowadzić pełną ścieżkę wraz z literą dysku, np.:%n%nC:\PROGRAM%n%nlub scieżkę sieciową (UNC) w formacie:%n%n\\serwer\udział
+InvalidDrive=Wybrany dysk lub udostępniony folder sieciowy nie istnieje. Proszę wybrać inny.
+DiskSpaceWarningTitle=Niewystarczająca ilość wolnego miejsca na dysku
+DiskSpaceWarning=Instalator wymaga co najmniej %1 KB wolnego miejsca na dysku. Wybrany dysk posiada tylko %2 KB dostępnego miejsca.%n%nCzy pomimo to chcesz kontynuować?
+DirNameTooLong=Nazwa folderu lub ścieżki jest za długa.
+InvalidDirName=Niepoprawna nazwa folderu.
+BadDirName32=Nazwa folderu nie może zawierać żadnego z następujących znaków:%n%n%1
+DirExistsTitle=Ten folder już istnieje
+DirExists=Folder%n%n%1%n%njuż istnieje. Czy pomimo to chcesz zainstalować program w tym folderze?
+DirDoesntExistTitle=Nie ma takiego folderu
+DirDoesntExist=Folder:%n%n%1%n%nnie istnieje. Czy chcesz, aby został utworzony?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Zaznacz komponenty
+SelectComponentsDesc=Które komponenty mają być zainstalowane?
+SelectComponentsLabel2=Zaznacz komponenty, które chcesz zainstalować, odznacz te, których nie chcesz zainstalować. Kliknij przycisk Dalej, aby kontynuować.
+FullInstallation=Instalacja pełna
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Instalacja podstawowa
+CustomInstallation=Instalacja użytkownika
+NoUninstallWarningTitle=Zainstalowane komponenty
+NoUninstallWarning=Instalator wykrył, że w twoim komputerze są już zainstalowane następujące komponenty:%n%n%1%n%nOdznaczenie któregokolwiek z nich nie spowoduje ich deinstalacji.%n%nCzy pomimo tego chcesz kontynuować?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Wybrane komponenty wymagają co najmniej [mb] MB na dysku.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Zaznacz dodatkowe zadania
+SelectTasksDesc=Które dodatkowe zadania mają być wykonane?
+SelectTasksLabel2=Zaznacz dodatkowe zadania, które Instalator ma wykonać podczas instalacji programu [name], a następnie kliknij przycisk Dalej, aby kontynuować.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Wybierz folder Menu Start
+SelectStartMenuFolderDesc=Gdzie mają być umieszczone skróty do programu?
+SelectStartMenuFolderLabel3=Instalator stworzy skróty do programu w poniższym folderze Menu Start.
+SelectStartMenuFolderBrowseLabel=Kliknij przycisk Dalej, aby kontynuować. Jeśli chcesz określić inny folder, kliknij przycisk Przeglądaj.
+MustEnterGroupName=Musisz wprowadzić nazwę folderu.
+GroupNameTooLong=Nazwa folderu lub ścieżki jest za długa.
+InvalidGroupName=Niepoprawna nazwa folderu.
+BadGroupName=Nazwa folderu nie może zawierać żadnego z następujących znaków:%n%n%1
+NoProgramGroupCheck2=Nie twórz folderu w &Menu Start
+
+; *** "Ready to Install" wizard page
+WizardReady=Gotowy do rozpoczęcia instalacji
+ReadyLabel1=Instalator jest już gotowy do rozpoczęcia instalacji programu [name] na twoim komputerze.
+ReadyLabel2a=Kliknij przycisk Instaluj, aby rozpocząć instalację lub Wstecz, jeśli chcesz przejrzeć lub zmienić ustawienia.
+ReadyLabel2b=Kliknij przycisk Instaluj, aby kontynuować instalację.
+ReadyMemoUserInfo=Informacje użytkownika:
+ReadyMemoDir=Lokalizacja docelowa:
+ReadyMemoType=Rodzaj instalacji:
+ReadyMemoComponents=Wybrane komponenty:
+ReadyMemoGroup=Folder w Menu Start:
+ReadyMemoTasks=Dodatkowe zadania:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Przygotowanie do instalacji
+PreparingDesc=Instalator przygotowuje instalację programu [name] na Twoim komputerze.
+PreviousInstallNotCompleted=Instalacja (usunięcie) poprzedniej wersji programu nie została zakończona. Będziesz musiał ponownie uruchomić komputer, aby zakończyć instalację. %n%nPo ponownym uruchomieniu komputera uruchom ponownie instalatora, aby zakończyć instalację aplikacji [name].
+CannotContinue=Instalator nie może kontynuować. Kliknij przycisk Anuluj, aby przerwać instalację.
+ApplicationsFound=Poniższe aplikacje używają plików, które muszą być uaktualnione przez Instalator. Zalecane jest aby pozwolić Instalatorowi automatycznie zamknąć te aplikacje.
+ApplicationsFound2=Poniższe aplikacje używają plików, które muszą być uaktualnione przez Instalator. Zalecane jest aby pozwolić Instalatorowi automatycznie zamknąć te aplikacje. Po zakończonej instalacji Instalator podejmie próbę ich ponownego uruchomienia.
+CloseApplications=&Automatycznie zamknij aplikacje
+DontCloseApplications=&Nie zamykaj aplikacji
+ErrorCloseApplications=Instalator nie był w stanie zamknąć automatycznie wszystkich aplikacji. Zalecane jest zamknięcie wszystkich tych aplikacji, które akualnie używają uakutalnianych przez Instalator plików.
+
+; *** "Installing" wizard page
+WizardInstalling=Instalacja
+InstallingLabel=Poczekaj, aż instalator zainstaluje aplikację [name] na Twoim komputerze.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Zakończono instalację programu [name]
+FinishedLabelNoIcons=Instalator zakończył instalację programu [name] na Twoim komputerze.
+FinishedLabel=Instalator zakończył instalację programu [name] na Twoim komputerze. Aplikacja może być uruchomiona poprzez użycie zainstalowanych skrótów.
+ClickFinish=Kliknij przycisk Zakończ, aby zakończyć instalację.
+FinishedRestartLabel=Aby zakończyć instalację programu [name], Instalator musi ponownie uruchomić Twój komputer. Czy chcesz teraz wykonać restart komputera?
+FinishedRestartMessage=Aby zakończyć instalację programu [name], Instalator musi ponownie uruchomić Twój komputer.%n%nCzy chcesz teraz wykonać restart komputera?
+ShowReadmeCheck=Tak, chcę przeczytać dodatkowe informacje
+YesRadio=&Tak, teraz uruchom ponownie
+NoRadio=&Nie, sam zrestartuję później
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Uruchom %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Pokaż %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Instalator potrzebuje następnej dyskietki
+SelectDiskLabel2=Proszę włożyć dyskietkę %1 i kliknąć przycisk OK.%n%nJeśli pokazany poniżej folder nie określa położenia plików z tej dyskietki, wprowadź poprawną ścieżkę lub kliknij przycisk Przeglądaj.
+PathLabel=Ś&cieżka:
+FileNotInDir2=Plik "%1" nie został znaleziony na dyskietce "%2". Proszę włożyć właściwą dyskietkę lub wybrać inny folder.
+SelectDirectoryLabel=Proszę określić lokalizację następnej dyskietki.
+
+; *** Installation phase messages
+SetupAborted=Instalacja nie została zakończona.%n%nProszę rozwiązać problem i ponownie rozpocząć instalację.
+EntryAbortRetryIgnore=Możesz ponowić nieudaną czynność, zignorować ją (nie zalecane) lub przerwać instalację.
+
+; *** Installation status messages
+StatusClosingApplications=Zamykanie aplikacji...
+StatusCreateDirs=Tworzenie folderów...
+StatusExtractFiles=Dekompresja plików...
+StatusCreateIcons=Tworzenie ikon aplikacji...
+StatusCreateIniEntries=Tworzenie zapisów w plikach INI...
+StatusCreateRegistryEntries=Tworzenie zapisów w rejestrze...
+StatusRegisterFiles=Rejestracja plików...
+StatusSavingUninstall=Zachowanie informacji deinstalatora...
+StatusRunProgram=Kończenie instalacji...
+StatusRestartingApplications=Ponowne uruchamianie aplikacji...
+StatusRollback=Cofanie zmian...
+
+; *** Misc. errors
+ErrorInternal2=Wewnętrzny błąd: %1
+ErrorFunctionFailedNoCode=Błąd podczas wykonywania %1
+ErrorFunctionFailed=Błąd podczas wykonywania %1; kod %2
+ErrorFunctionFailedWithMessage=Błąd podczas wykonywania %1; code %2.%n%3
+ErrorExecutingProgram=Nie można uruchomić:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Błąd podczas otwierania klucza rejestru:%n%1\%2
+ErrorRegCreateKey=Błąd podczas tworzenia klucza rejestru:%n%1\%2
+ErrorRegWriteKey=Błąd podczas zapisu do klucza rejestru:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Błąd podczas tworzenia pozycji w pliku INI: "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Możesz ponowić nieudaną czynność, zignorować ją, aby ominąć ten plik (nie zalecane), lub przerwać instalację.
+FileAbortRetryIgnore2=Możesz ponowić nieudaną czynność, zignorować ją (nie zalecane) lub przerwać instalację.
+SourceIsCorrupted=Plik źródłowy jest uszkodzony
+SourceDoesntExist=Plik źródłowy "%1" nie istnieje
+ExistingFileReadOnly=Istniejący plik jest oznaczony jako tylko-do-odczytu.%n%nMożesz ponowić (aby usunąć oznaczenie) zignorować (aby ominąć ten plik) lub przerwać instalację.
+ErrorReadingExistingDest=Wystąpił błąd podczas próby odczytu istniejącego pliku:
+FileExists=Plik już istnieje.%n%nCzy chcesz, aby Instalator zamienił go na nowy?
+ExistingFileNewer=Istniejący plik jest nowszy niż ten, który Instalator próbuje skopiować. Zalecanym jest zachowanie istniejącego pliku.%n%nCzy chcesz zachować istniejący plik?
+ErrorChangingAttr=Wystąpił błąd podczas próby zmiany atrybutów docelowego pliku:
+ErrorCreatingTemp=Wystąpił błąd podczas próby utworzenia pliku w folderze docelowym:
+ErrorReadingSource=Wystąpił błąd podczas próby odczytu pliku źródłowego:
+ErrorCopying=Wystąpił błąd podczas próby kopiowania pliku:
+ErrorReplacingExistingFile=Wystąpił błąd podczas próby zamiany istniejącego pliku:
+ErrorRestartReplace=Próba zastąpienia plików podczas restartu komputera nie powiodła się.
+ErrorRenamingTemp=Wystąpił błąd podczas próby zmiany nazwy pliku w folderze docelowym:
+ErrorRegisterServer=Nie można zarejestrować DLL/OCX: %1
+ErrorRegSvr32Failed=Funkcja RegSvr32 zakończyła sie z kodem błędu %1
+ErrorRegisterTypeLib=Nie mogę zarejestrować biblioteki typów: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Wystąpił błąd podczas próby otwarcia pliku README.
+ErrorRestartingComputer=Instalator nie mógł zrestartować tego komputera. Proszę zrobić to samodzielnie.
+
+; *** Uninstaller messages
+UninstallNotFound=Plik "%1" nie istnieje. Nie można go odinstalować.
+UninstallOpenError=Plik "%1" nie mógł być otwarty. Nie można odinstalować
+UninstallUnsupportedVer=Ta wersja programu deinstalacyjnego nie rozpoznaje formatu logu deinstalacji. Nie można odinstalować
+UninstallUnknownEntry=W logu deinstalacji wystąpiła nieznana pozycja (%1)
+ConfirmUninstall=Czy na pewno chcesz usunąć program %1 i wszystkie jego składniki?
+UninstallOnlyOnWin64=Ten program moze być odinstalowany tylo w 64 bitowej wersji systemu Windows.
+OnlyAdminCanUninstall=Ta instalacja może być odinstalowana tylko przez użytkownika z prawami administratora.
+UninstallStatusLabel=Poczekaj aż program %1 zostanie usunięty z Twojego komputera.
+UninstalledAll=%1 został usunięty z Twojego komputera.
+UninstalledMost=Odinstalowywanie programu %1 zakończone.%n%nNiektóre elementy nie mogły być usunięte. Możesz je usunąć ręcznie.
+UninstalledAndNeedsRestart=Twój komputer musi być ponownie uruchomiony, aby zakończyć odinstalowywanie %1.%n%nCzy chcesz teraz ponownie uruchomić komputer?
+UninstallDataCorrupted=Plik "%1" jest uszkodzony. Nie można odinstalować
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Usunąć plik współdzielony?
+ConfirmDeleteSharedFile2=System wykrył, że następujący plik nie jest już używany przez żaden program. Czy chcesz odinstalować ten plik współdzielony?%n%nJeśli inne programy nadal używają tego pliku, a zostanie on usunięty, mogą one przestać działać prawidłowo. Jeśli nie jesteś pewny, wybierz przycisk Nie. Pozostawienie tego pliku w Twoim systemie nie spowoduje żadnych szkód.
+SharedFileNameLabel=Nazwa pliku:
+SharedFileLocationLabel=Położenie:
+WizardUninstalling=Stan deinstalacji
+StatusUninstalling=Deinstalacja %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Intstalacja %1.
+ShutdownBlockReasonUninstallingApp=Dezinstalacja %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 wersja %2
+AdditionalIcons=Dodatkowe ikony:
+CreateDesktopIcon=Utwórz ikonę na &pulpicie
+CreateQuickLaunchIcon=Utwórz ikonę na pasku &szybkiego uruchamiania
+ProgramOnTheWeb=Strona WWW programu %1
+UninstallProgram=Deinstalacja programu %1
+LaunchProgram=Uruchom program %1
+AssocFileExtension=&Przypisz program %1 do rozszerzenia pliku %2
+AssocingFileExtension=Przypisywanie programu %1 do rozszerzenia pliku %2...
+AutoStartProgramGroupDescription=Autostart:
+AutoStartProgram=Automatycznie uruchamiaj %1
+AddonHostProgramNotFound=%1 nie został znaleziony we wskazanym przez Ciebie folderze.%n%nCzy pomimo tego chcesz kontynuować?
diff --git a/dist/windows/languages/Portuguese.isl b/dist/windows/languages/Portuguese.isl
new file mode 100644
index 00000000..72c445d5
--- /dev/null
+++ b/dist/windows/languages/Portuguese.isl
@@ -0,0 +1,318 @@
+; *** Inno Setup version 5.5.3+ Portuguese (Portugal) messages ***
+;
+; Maintained by Nuno Silva (nars AT gmx.net)
+
+[LangOptions]
+LanguageName=Portugu<00EA>s (Portugal)
+LanguageID=$0816
+LanguageCodePage=1252
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Instalao
+SetupWindowTitle=%1 - Instalao
+UninstallAppTitle=Desinstalao
+UninstallAppFullTitle=%1 - Desinstalao
+
+; *** Misc. common
+InformationTitle=Informao
+ConfirmTitle=Confirmao
+ErrorTitle=Erro
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Ir ser instalado o %1. Deseja continuar?
+LdrCannotCreateTemp=No foi possvel criar um ficheiro temporrio. Instalao cancelada
+LdrCannotExecTemp=No foi possvel executar um ficheiro na directoria temporria. Instalao cancelada
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nErro %2: %3
+SetupFileMissing=O ficheiro %1 no foi encontrado na pasta de instalao. Corrija o problema ou obtenha uma nova cpia do programa.
+SetupFileCorrupt=Os ficheiros de instalao esto corrompidos. Obtenha uma nova cpia do programa.
+SetupFileCorruptOrWrongVer=Os ficheiros de instalao esto corrompidos, ou so incompatveis com esta verso do Assistente de Instalao. Corrija o problema ou obtenha uma nova cpia do programa.
+InvalidParameter=Foi especificado um parmetro invlido na linha de comando:%n%n%1
+SetupAlreadyRunning=A instalao j est em execuo.
+WindowsVersionNotSupported=Este programa no suporta a verso do Windows que est a utilizar.
+WindowsServicePackRequired=Este programa necessita de %1 Service Pack %2 ou mais recente.
+NotOnThisPlatform=Este programa no pode ser executado no %1.
+OnlyOnThisPlatform=Este programa deve ser executado no %1.
+OnlyOnTheseArchitectures=Este programa s pode ser instalado em verses do Windows preparadas para as seguintes arquitecturas:%n%n%1
+MissingWOW64APIs=A verso do Windows que est a utilizar no dispe das funcionalidades necessrias para o Assistente de Instalao poder realizar uma instalao de 64-bit's. Para corrigir este problema, por favor instale o Service Pack %1.
+WinVersionTooLowError=Este programa necessita do %1 verso %2 ou mais recente.
+WinVersionTooHighError=Este programa no pode ser instalado no %1 verso %2 ou mais recente.
+AdminPrivilegesRequired=Deve iniciar sesso como administrador para instalar este programa.
+PowerUserPrivilegesRequired=Deve iniciar sesso como administrador ou membro do grupo de Super Utilizadores para instalar este programa.
+SetupAppRunningError=O Assistente de Instalao detectou que o %1 est em execuo. Feche-o e de seguida clique em OK para continuar, ou clique em Cancelar para cancelar a instalao.
+UninstallAppRunningError=O Assistente de Desinstalao detectou que o %1 est em execuo. Feche-o e de seguida clique em OK para continuar, ou clique em Cancelar para cancelar a desinstalao.
+
+; *** Misc. errors
+ErrorCreatingDir=O Assistente de Instalao no consegue criar a directoria "%1"
+ErrorTooManyFilesInDir=No possvel criar um ficheiro na directoria "%1" porque esta contm demasiados ficheiros
+
+; *** Setup common messages
+ExitSetupTitle=Terminar a instalao
+ExitSetupMessage=A instalao no est completa. Se terminar agora, o programa no ser instalado.%n%nMais tarde poder executar novamente este Assistente de Instalao e concluir a instalao.%n%nDeseja terminar a instalao?
+AboutSetupMenuItem=&Acerca de...
+AboutSetupTitle=Acerca do Assistente de Instalao
+AboutSetupMessage=%1 verso %2%n%3%n%n%1 home page:%n%4
+AboutSetupNote=
+TranslatorNote=Portuguese translation maintained by NARS (nars@gmx.net)
+
+; *** Buttons
+ButtonBack=< &Anterior
+ButtonNext=&Seguinte >
+ButtonInstall=&Instalar
+ButtonOK=OK
+ButtonCancel=Cancelar
+ButtonYes=&Sim
+ButtonYesToAll=Sim para &todos
+ButtonNo=&No
+ButtonNoToAll=N&o para todos
+ButtonFinish=&Concluir
+ButtonBrowse=&Procurar...
+ButtonWizardBrowse=P&rocurar...
+ButtonNewFolder=&Criar Nova Pasta
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Seleccione o Idioma do Assistente de Instalao
+SelectLanguageLabel=Seleccione o idioma para usar durante a Instalao:
+
+; *** Common wizard text
+ClickNext=Clique em Seguinte para continuar ou em Cancelar para cancelar a instalao.
+BeveledLabel=
+BrowseDialogTitle=Procurar Pasta
+BrowseDialogLabel=Seleccione uma pasta na lista abaixo e clique em OK.
+NewFolderName=Nova Pasta
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Bem-vindo ao Assistente de Instalao do [name]
+WelcomeLabel2=O Assistente de Instalao ir instalar o [name/ver] no seu computador.%n%n recomendado que feche todas as outras aplicaes antes de continuar.
+
+; *** "Password" wizard page
+WizardPassword=Palavra-passe
+PasswordLabel1=Esta instalao est protegida por palavra-passe.
+PasswordLabel3=Insira a palavra-passe e de seguida clique em Seguinte para continuar. Na palavra-passe existe diferena entre maisculas e minsculas.
+PasswordEditLabel=&Palavra-passe:
+IncorrectPassword=A palavra-passe que introduziu no est correcta. Tente novamente.
+
+; *** "License Agreement" wizard page
+WizardLicense=Contrato de licena
+LicenseLabel= importante que leia as seguintes informaes antes de continuar.
+LicenseLabel3=Leia atentamente o seguinte contrato de licena. Deve aceitar os termos do contrato antes de continuar a instalao.
+LicenseAccepted=A&ceito o contrato
+LicenseNotAccepted=&No aceito o contrato
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informao
+InfoBeforeLabel= importante que leia as seguintes informaes antes de continuar.
+InfoBeforeClickLabel=Quando estiver pronto para continuar clique em Seguinte.
+WizardInfoAfter=Informao
+InfoAfterLabel= importante que leia as seguintes informaes antes de continuar.
+InfoAfterClickLabel=Quando estiver pronto para continuar clique em Seguinte.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informaes do utilizador
+UserInfoDesc=Introduza as suas informaes.
+UserInfoName=Nome do &utilizador:
+UserInfoOrg=&Organizao:
+UserInfoSerial=&Nmero de srie:
+UserInfoNameRequired=Deve introduzir um nome.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Seleccione a localizao de destino
+SelectDirDesc=Onde dever ser instalado o [name]?
+SelectDirLabel3=O [name] ser instalado na seguinte pasta.
+SelectDirBrowseLabel=Para continuar, clique em Seguinte. Se desejar seleccionar uma pasta diferente, clique em Procurar.
+DiskSpaceMBLabel= necessrio pelo menos [mb] MB de espao livre em disco.
+CannotInstallToNetworkDrive=O Assistente de Instalao no pode instalar numa unidade de rede.
+CannotInstallToUNCPath=O Assistente de Instalao no pode instalar num caminho UNC.
+InvalidPath= necessrio indicar o caminho completo com a letra de unidade; por exemplo:%n%nC:\APP%n%nou um caminho UNC no formato:%n%n\\servidor\partilha
+InvalidDrive=A unidade ou partilha UNC seleccionada no existe ou no est acessvel. Seleccione outra.
+DiskSpaceWarningTitle=No h espao suficiente no disco
+DiskSpaceWarning=O Assistente de Instalao necessita de pelo menos %1 KB de espao livre, mas a unidade seleccionada tem apenas %2 KB disponveis.%n%nDeseja continuar de qualquer forma?
+DirNameTooLong=O nome ou caminho para a pasta demasiado longo.
+InvalidDirName=O nome da pasta no vlido.
+BadDirName32=O nome da pasta no pode conter nenhum dos seguintes caracteres:%n%n%1
+DirExistsTitle=A pasta j existe
+DirExists=A pasta:%n%n%1%n%nj existe. Pretende instalar nesta pasta?
+DirDoesntExistTitle=A pasta no existe
+DirDoesntExist=A pasta:%n%n%1%n%nno existe. Pretende que esta pasta seja criada?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Seleccione os componentes
+SelectComponentsDesc=Que componentes devero ser instalados?
+SelectComponentsLabel2=Seleccione os componentes que quer instalar e desseleccione os componentes que no quer instalar. Clique em Seguinte quando estiver pronto para continuar.
+FullInstallation=Instalao Completa
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Instalao Compacta
+CustomInstallation=Instalao Personalizada
+NoUninstallWarningTitle=Componentes Encontrados
+NoUninstallWarning=O Assistente de Instalao detectou que os seguintes componentes esto instalados no seu computador:%n%n%1%n%nSe desseleccionar estes componentes eles no sero desinstalados.%n%nDeseja continuar?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=A seleco actual necessita de pelo menos [mb] MB de espao em disco.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Seleccione tarefas adicionais
+SelectTasksDesc=Que tarefas adicionais devero ser executadas?
+SelectTasksLabel2=Seleccione as tarefas adicionais que deseja que o Assistente de Instalao execute na instalao do [name] e em seguida clique em Seguinte.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Seleccione a pasta do Menu Iniciar
+SelectStartMenuFolderDesc=Onde devero ser colocados os cones de atalho do programa?
+SelectStartMenuFolderLabel3=Os cones de atalho do programa sero criados na seguinte pasta do Menu Iniciar.
+SelectStartMenuFolderBrowseLabel=Para continuar, clique em Seguinte. Se desejar seleccionar uma pasta diferente, clique em Procurar.
+MustEnterGroupName= necessrio introduzir um nome para a pasta.
+GroupNameTooLong=O nome ou caminho para a pasta demasiado longo.
+InvalidGroupName=O nome da pasta no vlido.
+BadGroupName=O nome da pasta no pode conter nenhum dos seguintes caracteres:%n%n%1
+NoProgramGroupCheck2=&No criar nenhuma pasta no Menu Iniciar
+
+; *** "Ready to Install" wizard page
+WizardReady=Pronto para Instalar
+ReadyLabel1=O Assistente de Instalao est pronto para instalar o [name] no seu computador.
+ReadyLabel2a=Clique em Instalar para continuar a instalao, ou clique em Anterior se desejar rever ou alterar alguma das configuraes.
+ReadyLabel2b=Clique em Instalar para continuar a instalao.
+ReadyMemoUserInfo=Informaes do utilizador:
+ReadyMemoDir=Localizao de destino:
+ReadyMemoType=Tipo de instalao:
+ReadyMemoComponents=Componentes seleccionados:
+ReadyMemoGroup=Pasta do Menu Iniciar:
+ReadyMemoTasks=Tarefas adicionais:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparando-se para instalar
+PreparingDesc=Preparando-se para instalar o [name] no seu computador.
+PreviousInstallNotCompleted=A instalao/remoo de um programa anterior no foi completada. Necessitar de reiniciar o computador para completar essa instalao.%n%nDepois de reiniciar o computador, execute novamente este Assistente de Instalao para completar a instalao do [name].
+CannotContinue=A instalao no pode continuar. Clique em Cancelar para sair.
+ApplicationsFound=As seguintes aplicaes esto a utilizar ficheiros que necessitam ser actualizados pelo Assistente de Instalao. recomendado que permita que o Assistente de Instalao feche estas aplicaes.
+ApplicationsFound2=As seguintes aplicaes esto a utilizar ficheiros que necessitam ser actualizados pelo Assistente de Instalao. recomendado que permita que o Assistente de Instalao feche estas aplicaes. Depois de completar a instalao, o Assistente de Instalao tentar reiniciar as aplicaes.
+CloseApplications=&Fechar as aplicaes automaticamente
+DontCloseApplications=&No fechar as aplicaes
+ErrorCloseApplications=O Assistente de Instalao no conseguiu fechar todas as aplicaes automaticamente. Antes de continuar recomendado que feche todas as aplicaes que utilizem ficheiros que necessitem de ser actualizados pelo Assistente de Instalao.
+
+; *** "Installing" wizard page
+WizardInstalling=A instalar
+InstallingLabel=Aguarde enquanto o Assistente de Instalao instala o [name] no seu computador.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Instalao do [name] concluda
+FinishedLabelNoIcons=O Assistente de Instalao concluiu a instalao do [name] no seu computador.
+FinishedLabel=O Assistente de Instalao concluiu a instalao do [name] no seu computador. A aplicao pode ser iniciada atravs dos cones instalados.
+ClickFinish=Clique em Concluir para finalizar o Assistente de Instalao.
+FinishedRestartLabel=Para completar a instalao do [name], o Assistente de Instalao dever reiniciar o seu computador. Deseja reiniciar agora?
+FinishedRestartMessage=Para completar a instalao do [name], o Assistente de Instalao dever reiniciar o seu computador.%n%nDeseja reiniciar agora?
+ShowReadmeCheck=Sim, desejo ver o ficheiro LEIAME
+YesRadio=&Sim, desejo reiniciar o computador agora
+NoRadio=&No, desejo reiniciar o computador mais tarde
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Executar %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Visualizar %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=O Assistente de Instalao precisa do disco seguinte
+SelectDiskLabel2=Introduza o disco %1 e clique em OK.%n%nSe os ficheiros deste disco estiverem num local diferente do mostrado abaixo, indique o caminho correcto ou clique em Procurar.
+PathLabel=&Caminho:
+FileNotInDir2=O ficheiro "%1" no foi encontrado em "%2". Introduza o disco correcto ou seleccione outra pasta.
+SelectDirectoryLabel=Indique a localizao do disco seguinte.
+
+; *** Installation phase messages
+SetupAborted=A instalao no est completa.%n%nCorrija o problema e execute o Assistente de Instalao novamente.
+EntryAbortRetryIgnore=Clique em Repetir para tentar novamente, Ignorar para continuar de qualquer forma, ou Abortar para cancelar a instalao.
+
+; *** Installation status messages
+StatusClosingApplications=A fechar aplicaes...
+StatusCreateDirs=A criar directorias...
+StatusExtractFiles=A extrair ficheiros...
+StatusCreateIcons=A criar atalhos...
+StatusCreateIniEntries=A criar entradas em INI...
+StatusCreateRegistryEntries=A criar entradas no registo...
+StatusRegisterFiles=A registar ficheiros...
+StatusSavingUninstall=A guardar informaes para desinstalao...
+StatusRunProgram=A concluir a instalao...
+StatusRestartingApplications=A reiniciar aplicaes...
+StatusRollback=A anular as alteraes...
+
+; *** Misc. errors
+ErrorInternal2=Erro interno: %1
+ErrorFunctionFailedNoCode=%1 falhou
+ErrorFunctionFailed=%1 falhou; cdigo %2
+ErrorFunctionFailedWithMessage=%1 falhou; cdigo %2.%n%3
+ErrorExecutingProgram=No possvel executar o ficheiro:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Erro ao abrir a chave de registo:%n%1\%2
+ErrorRegCreateKey=Erro ao criar a chave de registo:%n%1\%2
+ErrorRegWriteKey=Erro ao escrever na chave de registo:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Erro ao criar entradas em INI no ficheiro "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Clique em Repetir para tentar novamente, Ignorar para ignorar este ficheiro (no recomendado), ou Abortar para cancelar a instalao.
+FileAbortRetryIgnore2=Clique em Repetir para tentar novamente, Ignorar para continuar de qualquer forma (no recomendado), ou Abortar para cancelar a instalao.
+SourceIsCorrupted=O ficheiro de origem est corrompido
+SourceDoesntExist=O ficheiro de origem "%1" no existe
+ExistingFileReadOnly=O ficheiro existente tem o atributo "s de leitura".%n%nClique em Repetir para remover o atributo "s de leitura" e tentar novamente, Ignorar para ignorar este ficheiro, ou Abortar para cancelar a instalao.
+ErrorReadingExistingDest=Ocorreu um erro ao tentar ler o ficheiro existente:
+FileExists=O ficheiro j existe.%n%nDeseja substitu-lo?
+ExistingFileNewer=O ficheiro existente mais recente que o que est a ser instalado. recomendado que mantenha o ficheiro existente.%n%nDeseja manter o ficheiro existente?
+ErrorChangingAttr=Ocorreu um erro ao tentar alterar os atributos do ficheiro existente:
+ErrorCreatingTemp=Ocorreu um erro ao tentar criar um ficheiro na directoria de destino:
+ErrorReadingSource=Ocorreu um erro ao tentar ler o ficheiro de origem:
+ErrorCopying=Ocorreu um erro ao tentar copiar um ficheiro:
+ErrorReplacingExistingFile=Ocorreu um erro ao tentar substituir o ficheiro existente:
+ErrorRestartReplace=RestartReplace falhou:
+ErrorRenamingTemp=Ocorreu um erro ao tentar mudar o nome de um ficheiro na directoria de destino:
+ErrorRegisterServer=No possvel registar o DLL/OCX: %1
+ErrorRegSvr32Failed=O RegSvr32 falhou com o cdigo de sada %1
+ErrorRegisterTypeLib=No foi possvel registar a livraria de tipos: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Ocorreu um erro ao tentar abrir o ficheiro LEIAME.
+ErrorRestartingComputer=O Assistente de Instalao no consegue reiniciar o computador. Por favor reinicie manualmente.
+
+; *** Uninstaller messages
+UninstallNotFound=O ficheiro "%1" no existe. No possvel desinstalar.
+UninstallOpenError=No foi possvel abrir o ficheiro "%1". No possvel desinstalar.
+UninstallUnsupportedVer=O ficheiro log de desinstalao "%1" est num formato que no reconhecido por esta verso do desinstalador. No possvel desinstalar
+UninstallUnknownEntry=Foi encontrada uma entrada desconhecida (%1) no ficheiro log de desinstalao
+ConfirmUninstall=Tem a certeza que deseja remover completamente o %1 e todos os seus componentes?
+UninstallOnlyOnWin64=Esta desinstalao s pode ser realizada na verso de 64-bit's do Windows.
+OnlyAdminCanUninstall=Esta desinstalao s pode ser realizada por um utilizador com privilgios administrativos.
+UninstallStatusLabel=Por favor aguarde enquanto o %1 est a ser removido do seu computador.
+UninstalledAll=O %1 foi removido do seu computador com sucesso.
+UninstalledMost=A desinstalao do %1 est concluda.%n%nAlguns elementos no puderam ser removidos. Estes elementos podem ser removidos manualmente.
+UninstalledAndNeedsRestart=Para completar a desinstalao do %1, o computador deve ser reiniciado.%n%nDeseja reiniciar agora?
+UninstallDataCorrupted=O ficheiro "%1" est corrompido. No possvel desinstalar
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Remover ficheiro partilhado?
+ConfirmDeleteSharedFile2=O sistema indica que o seguinte ficheiro partilhado j no est a ser utilizado por nenhum programa. Deseja remov-lo?%n%nSe algum programa ainda necessitar deste ficheiro, poder no funcionar correctamente depois de o remover. Se no tiver a certeza, seleccione No. Manter o ficheiro no causar nenhum problema.
+SharedFileNameLabel=Nome do ficheiro:
+SharedFileLocationLabel=Localizao:
+WizardUninstalling=Estado da desinstalao
+StatusUninstalling=A desinstalar o %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=A instalar %1.
+ShutdownBlockReasonUninstallingApp=A desinstalar %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 verso %2
+AdditionalIcons=cones adicionais:
+CreateDesktopIcon=Criar cone no Ambiente de &Trabalho
+CreateQuickLaunchIcon=&Criar cone na barra de Iniciao Rpida
+ProgramOnTheWeb=%1 na Web
+UninstallProgram=Desinstalar o %1
+LaunchProgram=Executar o %1
+AssocFileExtension=Associa&r o %1 aos ficheiros com a extenso %2
+AssocingFileExtension=A associar o %1 aos ficheiros com a extenso %2...
+AutoStartProgramGroupDescription=Inicializao Automtica:
+AutoStartProgram=Iniciar %1 automaticamente
+AddonHostProgramNotFound=No foi possvel localizar %1 na pasta seleccionada.%n%nDeseja continuar de qualquer forma?
diff --git a/dist/windows/languages/Russian.isl b/dist/windows/languages/Russian.isl
new file mode 100644
index 00000000..1e4ed58f
--- /dev/null
+++ b/dist/windows/languages/Russian.isl
@@ -0,0 +1,324 @@
+; *** Inno Setup version 5.5.3+ Russian messages ***
+;
+; Translated from English by Dmitry Kann, http://yktoo.com/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+LanguageName=<0420><0443><0441><0441><043A><0438><0439>
+LanguageID=$0419
+LanguageCodePage=1251
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=
+SetupWindowTitle= %1
+UninstallAppTitle=
+UninstallAppFullTitle= %1
+
+; *** Misc. common
+InformationTitle=
+ConfirmTitle=
+ErrorTitle=
+
+; *** SetupLdr messages
+SetupLdrStartupMessage= %1 , ?
+LdrCannotCreateTemp= .
+LdrCannotExecTemp= .
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%n %2: %3
+SetupFileMissing= %1 . , .
+SetupFileCorrupt= . , .
+SetupFileCorruptOrWrongVer= . , .
+InvalidParameter= :%n%n%1
+SetupAlreadyRunning= .
+WindowsVersionNotSupported= Windows, .
+WindowsServicePackRequired= %1 Service Pack %2 .
+NotOnThisPlatform= %1.
+OnlyOnThisPlatform= %1.
+OnlyOnTheseArchitectures= Windows :%n%n%1
+MissingWOW64APIs= Windows, , , 64- . , (Service Pack) %1.
+WinVersionTooLowError= %1 %2 .
+WinVersionTooHighError= %1 %2 .
+AdminPrivilegesRequired= , .
+PowerUserPrivilegesRequired= , (Power Users).
+SetupAppRunningError= %1.%n%n, , OK, , , .
+UninstallAppRunningError= %1.%n%n, , OK, , , .
+
+; *** Misc. errors
+ErrorCreatingDir= "%1"
+ErrorTooManyFilesInDir= "%1",
+
+; *** Setup common messages
+ExitSetupTitle=
+ExitSetupMessage= . , .%n%n , .%n%n ?
+AboutSetupMenuItem=& ...
+AboutSetupTitle=
+AboutSetupMessage=%1, %2%n%3%n%n %1:%n%4
+AboutSetupNote=
+TranslatorNote=Russian translation by Dmitry Kann, http://www.dk-soft.org/
+
+; *** Buttons
+ButtonBack=< &
+ButtonNext=& >
+ButtonInstall=&
+ButtonOK=OK
+ButtonCancel=
+ButtonYes=&
+ButtonYesToAll= &
+ButtonNo=&
+ButtonNoToAll=&
+ButtonFinish=&
+ButtonBrowse=&...
+ButtonWizardBrowse=&...
+ButtonNewFolder=&
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=
+SelectLanguageLabel= , :
+
+; *** Common wizard text
+ClickNext= , , , .
+BeveledLabel=
+BrowseDialogTitle=
+BrowseDialogLabel= ʻ.
+NewFolderName=
+
+; *** "Welcome" wizard page
+WelcomeLabel1= [name]
+WelcomeLabel2= [name/ver] .%n%n , .
+
+; *** "Password" wizard page
+WizardPassword=
+PasswordLabel1= .
+PasswordLabel3=, , . .
+PasswordEditLabel=&:
+IncorrectPassword= . , .
+
+; *** "License Agreement" wizard page
+WizardLicense=
+LicenseLabel=, , .
+LicenseLabel3=, . , .
+LicenseAccepted= &
+LicenseNotAccepted= &
+
+; *** "Information" wizard pages
+WizardInfoBefore=
+InfoBeforeLabel=, , .
+InfoBeforeClickLabel= , .
+WizardInfoAfter=
+InfoAfterLabel=, , .
+InfoAfterClickLabel= , .
+
+; *** "User Information" wizard page
+WizardUserInfo=
+UserInfoDesc=, .
+UserInfoName=& :
+UserInfoOrg=&:
+UserInfoSerial=& :
+UserInfoNameRequired= .
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=
+SelectDirDesc= [name]?
+SelectDirLabel3= [name] .
+SelectDirBrowseLabel= , . , .
+DiskSpaceMBLabel= [mb] .
+CannotInstallToNetworkDrive= .
+CannotInstallToUNCPath= UNC-.
+InvalidPath= ; :%n%nC:\APP%n%n UNC:%n%n\\_\_
+InvalidDrive= . , .
+DiskSpaceWarningTitle=
+DiskSpaceWarning= %1 , %2 .%n%n ?
+DirNameTooLong= .
+InvalidDirName= .
+BadDirName32= : %n%n%1
+DirExistsTitle=
+DirExists=%n%n%1%n%n . ?
+DirDoesntExistTitle=
+DirDoesntExist=%n%n%1%n%n . ?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=
+SelectComponentsDesc= ?
+SelectComponentsLabel2= , ; , . , .
+FullInstallation=
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=
+CustomInstallation=
+NoUninstallWarningTitle=
+NoUninstallWarning= , :%n%n%1%n%n .%n%n?
+ComponentSize1=%1
+ComponentSize2=%1
+ComponentsDiskSpaceMBLabel= [mb] .
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=
+SelectTasksDesc= ?
+SelectTasksLabel2= , [name], :
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=
+SelectStartMenuFolderDesc= ?
+SelectStartMenuFolderLabel3= .
+SelectStartMenuFolderBrowseLabel= , . , .
+MustEnterGroupName= .
+GroupNameTooLong= .
+InvalidGroupName= .
+BadGroupName= :%n%n%1
+NoProgramGroupCheck2=&
+
+; *** "Ready to Install" wizard page
+WizardReady=
+ReadyLabel1= [name] .
+ReadyLabel2a= , , , .
+ReadyLabel2b= , .
+ReadyMemoUserInfo= :
+ReadyMemoDir= :
+ReadyMemoType= :
+ReadyMemoComponents= :
+ReadyMemoGroup= :
+ReadyMemoTasks= :
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=
+PreparingDesc= [name] .
+PreviousInstallNotCompleted= . , .%n%n , [name].
+CannotContinue= . .
+ApplicationsFound= , . .
+ApplicationsFound2= , . . , .
+CloseApplications=&
+DontCloseApplications=&
+ErrorCloseApplications= . , , .
+
+; *** "Installing" wizard page
+WizardInstalling=...
+InstallingLabel=, , [name] .
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel= [name]
+FinishedLabelNoIcons= [name] .
+FinishedLabel= [name] . .
+ClickFinish= , .
+FinishedRestartLabel= [name] . ?
+FinishedRestartMessage= [name] .%n%n ?
+ShowReadmeCheck= README
+YesRadio=&,
+NoRadio=&,
+; used for example as 'Run MyProg.exe'
+RunEntryExec= %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec= %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=
+SelectDiskLabel2=, %1 OK.%n%n , , .
+PathLabel=&:
+FileNotInDir2= "%1" "%2". , .
+SelectDirectoryLabel=, .
+
+; *** Installation phase messages
+SetupAborted= .%n%n, .
+EntryAbortRetryIgnore= , , , , .
+
+; *** Installation status messages
+StatusClosingApplications= ...
+StatusCreateDirs= ...
+StatusExtractFiles= ...
+StatusCreateIcons= ...
+StatusCreateIniEntries= INI-...
+StatusCreateRegistryEntries= ...
+StatusRegisterFiles= ...
+StatusSavingUninstall= ...
+StatusRunProgram= ...
+StatusRestartingApplications= ...
+StatusRollback= ...
+
+; *** Misc. errors
+ErrorInternal2= : %1
+ErrorFunctionFailedNoCode=%1:
+ErrorFunctionFailed=%1: ; %2
+ErrorFunctionFailedWithMessage=%1: ; %2.%n%3
+ErrorExecutingProgram= :%n%1
+
+; *** Registry errors
+ErrorRegOpenKey= :%n%1\%2
+ErrorRegCreateKey= :%n%1\%2
+ErrorRegWriteKey= :%n%1\%2
+
+; *** INI errors
+ErrorIniEntry= INI- "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore= , , , ( ) .
+FileAbortRetryIgnore2= , , , ( ) .
+SourceIsCorrupted=
+SourceDoesntExist= "%1"
+ExistingFileReadOnly= .%n%n , , .
+ErrorReadingExistingDest= :
+FileExists= .%n%n ?
+ExistingFileNewer= , . .%n%n ?
+ErrorChangingAttr= :
+ErrorCreatingTemp= :
+ErrorReadingSource= :
+ErrorCopying= :
+ErrorReplacingExistingFile= :
+ErrorRestartReplace= RestartReplace:
+ErrorRenamingTemp= :
+ErrorRegisterServer= DLL/OCX: %1
+ErrorRegSvr32Failed= RegSvr32, %1
+ErrorRegisterTypeLib= (Type Library): %1
+
+; *** Post-installation errors
+ErrorOpeningReadme= README.
+ErrorRestartingComputer= . , .
+
+; *** Uninstaller messages
+UninstallNotFound= "%1" , .
+UninstallOpenError= "%1".
+UninstallUnsupportedVer= "%1" -.
+UninstallUnknownEntry= (%1)
+ConfirmUninstall= %1 ?
+UninstallOnlyOnWin64= 64- Windows.
+OnlyAdminCanUninstall= .
+UninstallStatusLabel=, , %1 .
+UninstalledAll= %1 .
+UninstalledMost= %1 .%n%n . .
+UninstalledAndNeedsRestart= %1 .%n%n ?
+UninstallDataCorrupted= "%1" .
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle= ?
+ConfirmDeleteSharedFile2= , . ?%n%n - , , . , . .
+SharedFileNameLabel= :
+SharedFileLocationLabel=:
+WizardUninstalling=
+StatusUninstalling= %1...
+
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp= %1.
+ShutdownBlockReasonUninstallingApp= %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1, %2
+AdditionalIcons= :
+CreateDesktopIcon= &
+CreateQuickLaunchIcon= &
+ProgramOnTheWeb= %1
+UninstallProgram= %1
+LaunchProgram= %1
+AssocFileExtension=& %1 , %2
+AssocingFileExtension= %1 %2...
+AutoStartProgramGroupDescription=:
+AutoStartProgram= %1
+AddonHostProgramNotFound=%1 .%n%n ?
diff --git a/dist/windows/languages/Slovak.isl b/dist/windows/languages/Slovak.isl
new file mode 100644
index 00000000..c3f37feb
--- /dev/null
+++ b/dist/windows/languages/Slovak.isl
@@ -0,0 +1,244 @@
+; ******************************************************
+; *** ***
+; *** Inno Setup version 5.1.11+ Slovak messages ***
+; *** ***
+; *** Original Author: ***
+; *** ***
+; *** Milan Potancok (milan.potancok AT gmail.com) ***
+; *** ***
+; *** Contributors: ***
+; *** ***
+; *** Ivo Bauer (bauer AT ozm.cz) ***
+; *** ***
+; *** Tomas Falb (tomasf AT pobox.sk) ***
+; *** ***
+; *** Update: 19.3.2007 ***
+; *** ***
+; ******************************************************
+;
+;
+
+[LangOptions]
+LanguageName=Sloven<010D>ina
+LanguageID=$041b
+LanguageCodePage=1250
+
+[Messages]
+SetupAppTitle=Sprievodca intalciou
+SetupWindowTitle=Sprievodca intalciou - %1
+UninstallAppTitle=Sprievodca odintalciou
+UninstallAppFullTitle=Sprievodca odintalciou - %1
+InformationTitle=Informcie
+ConfirmTitle=Potvrdenie
+ErrorTitle=Chyba
+SetupLdrStartupMessage=Toto je sprievodca intalciou produktu %1. Prajete si pokraova?
+LdrCannotCreateTemp=Nie je mon vytvori doasn sbor. Sprievodca intalciou bude ukonen
+LdrCannotExecTemp=Nie je mon spusti sbor v doasnom adresri. Sprievodca intalciou bude ukonen
+LastErrorMessage=%1.%n%nChyba %2: %3
+SetupFileMissing=Intalan adresr neobsahuje sbor %1. Opravte, prosm, tto chybu alebo si zaobstarajte nov kpiu tohto produktu.
+SetupFileCorrupt=Sbory sprievodcu intalciou s pokoden. Zaobstarajte si, prosm, nov kpiu tohto produktu.
+SetupFileCorruptOrWrongVer=Sbory sprievodcu intalciou s pokoden alebo sa nezhoduj s touto verziou sprievodcu instalciou. Opravte, prosm, tto chybu alebo si zaobstarajte nov kpiu tohto produktu.
+NotOnThisPlatform=Tento produkt sa ned spusti v %1.
+OnlyOnThisPlatform=Tento produkt mus by spusten v %1.
+OnlyOnTheseArchitectures=Tento produkt je mon naintalova iba vo verzich MS Windows s podporou architektry procesorov:%n%n%1
+MissingWOW64APIs=Aktulna verzia MS Windows neobsahuje funkcie, ktor vyaduje sprievodca intalciou pre 64-bitov intalciu. Opravte prosm tto chybu naintalovanm aktualizcie Service Pack %1.
+WinVersionTooLowError=Tento produkt vyaduje %1 verzie %2 alebo vyej.
+WinVersionTooHighError=Tento produkt sa ned naintalova vo %1 verzie %2 alebo vyej.
+AdminPrivilegesRequired=Na intalciu tohto produktu muste by prihlsen s prvami administrtora.
+PowerUserPrivilegesRequired=Na intalciu tohto produktu muste by prihlsen s prvami administrtora alebo lena skupiny Power Users.
+SetupAppRunningError=Sprievodca intalciou zistil, e produkt %1 je teraz spusten.%n%nUkonite, prosm, vetky spusten intancie tohto produktu a pokraujte kliknutm na tlaidlo OK alebo ukonite intalciu tlaidlom Zrui.
+UninstallAppRunningError=Sprievodca odintalciou zistil, e produkt %1 je teraz spusten.%n%nUkonite, prosm, vetky spusten intancie tohto produktu a pokraujte kliknutm na tlaidlo OK alebo ukonite intalciu tlaidlom Zrui.
+ErrorCreatingDir=Sprievodca intalciou nemohol vytvori adresr "%1"
+ErrorTooManyFilesInDir=Ned sa vytvori sbor v adresri "%1", pretoe tento adresr u obsahuje prli vea sborov
+ExitSetupTitle=Ukoni sprievodcu intalciou
+ExitSetupMessage=Intalcia nebola celkom dokonen. Ak teraz ukonte sprievodcu intalciou, produkt nebude naintalovan.%n%nSprievodcu intalciou mete znovu spusti neskr a dokoni tak intalciu.%n%nUkoni sprievodcu intalciou?
+AboutSetupMenuItem=&O sprievodcovi intalcie...
+AboutSetupTitle=O sprievodcovi intalcie
+AboutSetupMessage=%1 verzia %2%n%3%n%n%1 domovsk strnka:%n%4
+AboutSetupNote=
+TranslatorNote=Slovak translation maintained by Milan Potancok (milan.potancok AT gmail.com), Ivo Bauer (bauer AT ozm.cz) and Tomas Falb (tomasf AT pobox.sk)
+ButtonBack=< &Sp
+ButtonNext=&alej >
+ButtonInstall=&Intalova
+ButtonOK=OK
+ButtonCancel=Zrui
+ButtonYes=&no
+ButtonYesToAll=no &vetkm
+ButtonNo=&Nie
+ButtonNoToAll=Ni&e vetkm
+ButtonFinish=&Dokoni
+ButtonBrowse=&Prechdza...
+ButtonWizardBrowse=&Prechdza...
+ButtonNewFolder=&Vytvori nov adresr
+SelectLanguageTitle=Vber jazyka sprievodcu intalciou
+SelectLanguageLabel=Zvote jazyk, ktor sa m poui pri intalcii:
+ClickNext=Pokraujte kliknutm na tlaidlo alej alebo ukonite sprievodcu intalciou tlaidlom Zrui.
+BeveledLabel=
+BrowseDialogTitle=Njs adresr
+BrowseDialogLabel=Z dole uvedenho zoznamu vyberte adresr a kliknite na OK.
+NewFolderName=Nov adresr
+WelcomeLabel1=Vt Vs sprievodca intalciou produktu [name].
+WelcomeLabel2=Produkt [name/ver] bude naintalovan na V pota.%n%nSkr, ako budete pokraova, odporame Vm ukoni vetky spusten aplikcie.
+WizardPassword=Heslo
+PasswordLabel1=Tto intalcia je chrnen heslom.
+PasswordLabel3=Zadajte, prosm, heslo a pokraujte kliknutm na tlaidlo alej. Pri zadvn hesla rozliujte mal a vek psmen.
+PasswordEditLabel=&Heslo:
+IncorrectPassword=Zadan heslo nie je sprvne. Zkste to, prosm, ete raz.
+WizardLicense=Licenn zmluva
+LicenseLabel=Skr, ako budete pokraova, pretajte si, prosm, tieto dleit informcie.
+LicenseLabel3=Pretajte si, prosm, tto Licenn zmluvu. Aby mohla intalcia pokraova, muste shlasi s podmienkami tejto zmluvy.
+LicenseAccepted=&Shlasm s podmienkami Licennej zmluvy
+LicenseNotAccepted=&Neshlasm s podmienkami Licennej zmluvy
+WizardInfoBefore=Informcie
+InfoBeforeLabel=Skr, ako budete pokraova, pretajte si, prosm, tieto dleit informcie.
+InfoBeforeClickLabel=Pokraujte v intalcii kliknutm na tlaidlo alej.
+WizardInfoAfter=Informcie
+InfoAfterLabel=Skr, ako budete pokraova, pretajte si, prosm, tieto dleit informcie.
+InfoAfterClickLabel=Pokraujte v intalcii kliknutm na tlaidlo alej.
+WizardUserInfo=Informcie o pouvateovi
+UserInfoDesc=Zadajte, prosm, poadovan informcie.
+UserInfoName=&Pouvatesk meno:
+UserInfoOrg=&Organizcia:
+UserInfoSerial=&Sriove slo:
+UserInfoNameRequired=Pouvatesk meno mus by zadan.
+WizardSelectDir=Vyberte cieov adresr
+SelectDirDesc=Kam m by produkt [name] naintalovan?
+SelectDirLabel3=Sprievodca naintaluje produkt [name] do nasledujceho adresra.
+SelectDirBrowseLabel=Pokraujte kliknutm na tlaidlo alej. Ak chcete vybra in adresr, kliknite na tlaidlo Prechdza.
+DiskSpaceMBLabel=Intalcia vyaduje najmenej [mb] MB miesta na disku.
+ToUNCPathname=Sprevodca intalciou neme intalova do cesty UNC. Ak sa pokate intalova po sieti, muste poui niektor z dostupnch sieovch jednotiek.
+InvalidPath=Muste zadat pln cestu vrtane psmena jednotky; naprklad:%n%nC:\Aplikcia%n%nalebo cestu UNC v tvare:%n%n\\server\zdiean adresr
+InvalidDrive=Vami vybran jednotka alebo cesta UNC neexistuje alebo nie je dostupn. Vyberte, prosm, in umiestnenie.
+DiskSpaceWarningTitle=Nedostatok miesta na disku
+DiskSpaceWarning=Sprievodca intalciou vyaduje najmenej %1 KB vonho miesta na intalciu produktu, ale na vybranej jednotke je dostupnch len %2 KB.%n%nPrajete si napriek tomu pokraova?
+DirNameTooLong=Nzov adresra alebo cesta s prli dlh.
+InvalidDirName=Nzov adresra nie je platn.
+BadDirName32=Nzvy adresrov nesm obsahova iadny z nasledujcich znakov:%n%n%1
+DirExistsTitle=Adresr existuje
+DirExists=Adresr:%n%n%1%n%nu existuje. M sa napriek tomu intalova do tohto adresra?
+DirDoesntExistTitle=Adresr neexistuje
+DirDoesntExist=Adresr:%n%n%1%n%nete neexistuje. M sa tento adresr vytvori?
+WizardSelectComponents=Vyberte komponenty
+SelectComponentsDesc=Ak komponenty maj by naintalovan?
+SelectComponentsLabel2=Zakrtnite komponenty, ktor maj by naintalovan; komponenty, ktor se nemaj intalova, nechajte nezakrtnut. Pokraujte kliknutm na tlaidlo alej.
+FullInstallation=pln intalcia
+CompactInstallation=Kompaktn intalcia
+CustomInstallation=Voliten intalcia
+NoUninstallWarningTitle=Komponenty existuj
+NoUninstallWarning=Sprievodca intalciou zistil, e nasledujce komponenty s u na Vaom potai naintalovan:%n%n%1%n%nAk ich teraz nezahrniete do vberu, nebud neskr odintalovan.%n%nPrajete si napriek tomu pokraova?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Vybran komponenty vyaduj najmenej [mb] MB miesta na disku.
+WizardSelectTasks=Vyberte alie lohy
+SelectTasksDesc=Ktor alie lohy maj by vykonan?
+SelectTasksLabel2=Vyberte alie lohy, ktor maj by vykonan v priebehu intalcie produktu [name] a pokraujte kliknutm na tlaidlo alej.
+WizardSelectProgramGroup=Vyberte skupinu v ponuke tart
+SelectStartMenuFolderDesc=Kam m sprievodca intalcie umiestni zstupcov aplikcie?
+SelectStartMenuFolderLabel3=Sprievodca intalciou vytvor zstupcov aplikcie v nasledujcom adresri ponuky tart.
+SelectStartMenuFolderBrowseLabel=Pokraujte kliknutm na tlaidlo alej. Ak chcete zvoli in adresr, kliknite na tlaidlo Prechdza.
+MustEnterGroupName=Muste zada nzov skupiny.
+GroupNameTooLong=Nzov adresra alebo cesta s prli dlh.
+InvalidGroupName=Nzov adresra nie je platn.
+BadGroupName=Nzov skupiny nesmie obsahova iadny z nasledujcich znakov:%n%n%1
+NoProgramGroupCheck2=&Nevytvra skupinu v ponuke tart
+WizardReady=Intalcia je pripraven
+ReadyLabel1=Sprievodca intalciou je teraz pripraven naintalova produkt [name] na V pota.
+ReadyLabel2a=Pokraujte v intalcii kliknutm na tlaidlo Intalova. Ak si prajete zmeni niektor nastavenia intalcie, kliknite na tlaidlo Sp.
+ReadyLabel2b=Pokraujte v intalcii kliknutm na tlaidlo Intalova.
+ReadyMemoUserInfo=Informcie o pouvateovi:
+ReadyMemoDir=Cieov adresr:
+ReadyMemoType=Typ intalcie:
+ReadyMemoComponents=Vybran komponenty:
+ReadyMemoGroup=Skupina v ponuke tart:
+ReadyMemoTasks=alie lohy:
+WizardPreparing=Prprava intalcie
+PreparingDesc=Sprievodca intalciou pripravuje intalciu produktu [name] na V pota.
+PreviousInstallNotCompleted=Intalcia/odintalcia predolho produktu nebola plne dokonen. Dokonenie tohto procesu vyaduje retart potaa.%n%nPo retartovan potaa spustite znovu sprievodcu intalciou, aby bolo mon dokoni intalciu produktu [name].
+CannotContinue=Sprievodca intalciou neme pokraova. Ukonite, prosm, sprievodcu intalciou kliknutm na tlaidlo Zrui.
+WizardInstalling=Intalujem
+InstallingLabel=Pokajte prosm, km sprievodca intalciou nedokon intalciu produktu [name] na V pota.
+FinishedHeadingLabel=Dokonuje sa intalcia produktu [name]
+FinishedLabelNoIcons=Sprievodca intalciou dokonil intalciu produktu [name] na V pota.
+FinishedLabel=Sprievodca intalciou dokonil intalciu produktu [name] na V pota. Produkt je mon spusti pomocou naintalovanch ikon a zstupcov.
+ClickFinish=Ukonite sprievodcu intalciou kliknutm na tlaidlo Dokoni.
+FinishedRestartLabel=Na dokonenie intalcie produktu [name] je nutn retartova V pota. Prajete si teraz retartova V pota?
+FinishedRestartMessage=Na dokonenie intalcie produktu [name] je nutn retartova V pota.%n%nPrajete si teraz retartova V pota?
+ShowReadmeCheck=no, chcem zobrazi dokument "ITAJMA"
+YesRadio=&no, chcem teraz retartova pota
+NoRadio=&Nie, pota retartujem neskr
+RunEntryExec=Spusti %1
+RunEntryShellExec=Zobrazi %1
+ChangeDiskTitle=Sprievodca intalciou vyaduje al disk
+SelectDiskLabel2=Vlote, prosm, disk %1 a kliknite na tlaidlo OK.%n%nAk sa sbory na tomto disku nachdzaj v inom adresri, ako v tom, ktor je zobrazen niie, zadejte sprvnu cestu alebo kliknite na tlaidlo Prechdza.
+PathLabel=&Cesta:
+FileNotInDir2=Sbor "%1" sa ned njs v "%2". Vlote, prosm, sprvny disk alebo zvote in adresr.
+SelectDirectoryLabel=pecifikujte,prosm, umiestnenie alieho disku.
+SetupAborted=Intalcia nebola plne dokonen.%n%nOpravte, prosm, chybu a spustite sprievodcu intalciou znova.
+EntryAbortRetryIgnore=Akciu zopakujete kliknutm na tlaidlo Opakova. Akciu vynechte kliknutm na tlaidlo Preskoi. Intalciu prerute kliknutm na tlaidlo Prerui.
+StatusCreateDirs=Vytvraj sa adresre...
+StatusExtractFiles=Rozbauj sa sbory...
+StatusCreateIcons=Vytvraj sa ikony a zstupcovia...
+StatusCreateIniEntries=Vytvraj sa zznamy v konfiguranch sboroch...
+StatusCreateRegistryEntries=Vytvraj sa zznamy v systmovom registri...
+StatusRegisterFiles=Registruj sa sbory...
+StatusSavingUninstall=Ukladaj sa informcie potrebn pre neskorie odintalovanie produktu...
+StatusRunProgram=Dokonuje sa intalcia...
+StatusRollback=Vykonan zmeny sa vracaj sp...
+ErrorInternal2=Intern chyba: %1
+ErrorFunctionFailedNoCode=%1 zlyhala
+ErrorFunctionFailed=%1 zlyhala; kd %2
+ErrorFunctionFailedWithMessage=%1 zlyhala; kd %2.%n%3
+ErrorExecutingProgram=Ned sa spusti sbor:%n%1
+ErrorRegOpenKey=Dolo k chybe pri otvran ka systmovho registra:%n%1\%2
+ErrorRegCreateKey=Dolo k chybe pri vytvran ka systmovho registra:%n%1\%2
+ErrorRegWriteKey=Dolo k chybe pri zpise do ka systmovho registra:%n%1\%2
+ErrorIniEntry=Dolo k chybe pri vytvran zznamu v konfiguranom sbore "%1".
+FileAbortRetryIgnore=Akciu zopakujete kliknutm na tlaidlo Opakova. Tento sbor preskote kliknutm na tlaidlo Preskoi (neodpora sa). Intalciu prerute tlaidlom Prerui.
+FileAbortRetryIgnore2=Akciu zopakujete kliknutm na tlaidlo Opakova. Pokraujete kliknutm na tlaidlo Preskoi (neodpora sa). Intalciu prerute tlaidlom Prerui.
+SourceIsCorrupted=Zdrojov sbor je pokoden
+SourceDoesntExist=Zdrojov sbor "%1" neexistuje
+ExistingFileReadOnly=Existujci sbor je uren len na tanie.%n%nAtribt "Iba na tanie" odstrnite a akciu zopakujete kliknutm na tlaidlo Opakova. Sbor preskote kliknutm na tlaidlo Preskoi. Intalciu prerute kliknutm na tlaidlo Prerui.
+ErrorReadingExistingDest=Dolo k chybe pri pokuse o tanie existujceho sboru:
+FileExists=Sbor u existuje.%n%nM ho sprievodca intalcie prepsa?
+ExistingFileNewer=Existujci sbor je nov ako ten, ktor sa sprievodca intalciou poka naintalova. Odpora sa ponecha existujci sbor.%n%nPrajete si ponechat existujci sbor?
+ErrorChangingAttr=Dolo k chybe pri pokuse o modifikciu atribtov existujceho sboru:
+ErrorCreatingTemp=Dolo k chybe pri pokuse o vytvorenie sboru v cieovom adresri:
+ErrorReadingSource=Dolo k chybe pri pokuse o tanie zdrojovho sboru:
+ErrorCopying=Dolo k chybe pri pokuse o skoprovanie sboru:
+ErrorReplacingExistingFile=Dolo k chybe pri pokuse o nahradenie existujceho sboru:
+ErrorRestartReplace=Zlyhala funkcia "RestartReplace" sprievodcu intalciou:
+ErrorRenamingTemp=Dolo k chybe pri pokuse o premenovanie sboru v cieovom adresri:
+ErrorRegisterServer=Ned sa vykona registrcia DLL/OCX: %1
+ErrorRegSvr32Failed=Volanie RegSvr32 zlyhalo s nvratovm kdom %1
+ErrorRegisterTypeLib=Ned sa vykona registrcia typovej kninice: %1
+ErrorOpeningReadme=Dolo k chybe pri pokuse o otvorenie dokumentu "ITAJMA".
+ErrorRestartingComputer=Sprievodcovi intalciou sa nepodarilo retartova V pota. Retartujte ho, prosm, manulne.
+UninstallNotFound=Sbor "%1" neexistuje. Produkt sa ned odintalova.
+UninstallOpenError=Sbor "%1" nie je mon otvori. Produkt nie je mon odintalova.
+UninstallUnsupportedVer=Sprievodcovi odintalciou sa nepodarilo rozpozna formt sboru obsahujceho informcie na odintalovanie produktu "%1". Produkt sa ned odintalova
+UninstallUnknownEntry=V sbore obsahujcom informcie na odintalovanie produktu bola zisten neznma poloka (%1)
+ConfirmUninstall=Ste si naozaj ist, e chcete odintalova %1 a vetky jeho komponenty?
+UninstallOnlyOnWin64=Tento produkt je mon odintalova iba v 64-bitovch verzich MS Windows.
+OnlyAdminCanUninstall=K odintalovaniu tohto produktu muste by prihlsen s prvami administrtora.
+UninstallStatusLabel=Pokajte prosm, km produkt %1 nebude odintalovan z Vho potaa.
+UninstalledAll=%1 bol spene odintalovan z Vho potaa.
+UninstalledMost=%1 bol odintalovan z Vho potaa.%n%nNiektor jeho komponenty sa vak nepodarilo odintalova. Mete ich odintalova manulne.
+UninstalledAndNeedsRestart=Na dokonenie odintalcie produktu %1 je potrebn retartova V pota.%n%nPrajete si teraz retartova V pota?
+UninstallDataCorrupted=Sbor "%1" je pokoden. Produkt sa ned odintalova
+ConfirmDeleteSharedFileTitle=Odintalova zdiean sbor?
+ConfirmDeleteSharedFile2=Systm indikuje, e nsledujci zdiean sbor nie je pouvan iadnymi inmi aplikciami. M sprievodca odintalcie tento zdiean sbor odstrni?%n%nAk niektor aplikcie tento sbor pouvaj, nemusia po jeho odintalovan pracova sprvne. Ak si nie ste ist, zvote Nie. Ponechanie tohoto sboru vo Vaom systme nespsob iadnu kodu.
+SharedFileNameLabel=Nzov sboru:
+SharedFileLocationLabel=Umiestnenie:
+WizardUninstalling=Stav odintalovania
+StatusUninstalling=Odintalujem %1...
+
+[CustomMessages]
+NameAndVersion=%1 verzia %2
+AdditionalIcons=al zstupcovia:
+CreateDesktopIcon=Vytvori zstupcu na &ploche
+CreateQuickLaunchIcon=Vytvori zstupcu na paneli &Rchle spustenie
+ProgramOnTheWeb=Aplikcia %1 na internete
+UninstallProgram=Odintalova aplikciu %1
+LaunchProgram=Spusti aplikciu %1
+AssocFileExtension=Vytvori &asociciu medzi sbormi typu %2 a aplikciou %1
+AssocingFileExtension=Vytvra sa asocicia medzi sbormi typu %2 a aplikciou %1...
diff --git a/dist/windows/languages/Slovenian.isl b/dist/windows/languages/Slovenian.isl
new file mode 100644
index 00000000..72228999
--- /dev/null
+++ b/dist/windows/languages/Slovenian.isl
@@ -0,0 +1,327 @@
+; *** Inno Setup version 5.5.3+ Slovenian messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/is3rdparty.php
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Maintained by Jernej Simoncic (jernej|s-innosetup@eternallybored.org)
+;
+; $jrsoftware: issrc/Files/Languages/Slovenian.isl,v 1.14 2007/02/27 18:22:41 jr Exp $
+
+[LangOptions]
+LanguageName=Slovenski
+LanguageID=$0424
+LanguageCodePage=1250
+
+DialogFontName=
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Namestitev
+SetupWindowTitle=Namestitev - %1
+UninstallAppTitle=Odstranitev
+UninstallAppFullTitle=Odstranitev programa %1
+
+; *** Misc. common
+InformationTitle=Informacija
+ConfirmTitle=Potrditev
+ErrorTitle=Napaka
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=V raunalnik boste namestili program %1. elite nadaljevati?
+LdrCannotCreateTemp=Ni bilo mogoe ustvariti zaasne datoteke. Namestitev je prekinjena
+LdrCannotExecTemp=Ni bilo mogoe zagnati datoteke v zaasni mapi. Namestitev je prekinjena
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nNapaka %2: %3
+SetupFileMissing=Datoteka %1 manjka. Odpravite napako ali si priskrbite drugo kopijo programa.
+SetupFileCorrupt=Datoteke namestitvenega programa so okvarjene. Priskrbite si drugo kopijo programa.
+SetupFileCorruptOrWrongVer=Datoteke so okvarjene ali nezdruljive s to razliico namestitvenega programa. Odpravite napako ali si priskrbite drugo kopijo programa.
+InvalidParameter=Naveden je bil napaen parameter ukazne vrstice:%n%n%1
+SetupAlreadyRunning=Namestitveni program je e zagnan.
+WindowsVersionNotSupported=Program ne deluje na vai razliici sistema Windows.
+WindowsServicePackRequired=Program potrebuje %1 s servisnim paketom %2 ali novejo razliico.
+NotOnThisPlatform=Program ni namenjen za uporabo v %1.
+OnlyOnThisPlatform=Program je namenjen za uporabo v %1.
+OnlyOnTheseArchitectures=Program lahko namestite le na razliicah MS Windows sistemov, ki so nartovani za naslednje tipe procesorjev:%n%n%1
+MissingWOW64APIs=Razliica sistema Windows, ki jo uporabljate, ne vsebuje okolja, ki ga zahteva namestitveni program za izvedbo 64-bitne namestitve. Problem odpravite z namestitvijo servisnega paketa %1.
+WinVersionTooLowError=Ta program zahteva %1 razliico %2 ali novejo.
+WinVersionTooHighError=Tega programa ne morete namestiti v %1 razliice %2 ali noveje.
+AdminPrivilegesRequired=Za namestitev programa morate biti prijavljeni v raun s skrbnikimi pravicami.
+PowerUserPrivilegesRequired=Za namestitev programa morate biti prijavljeni v raun s skrbnikimi ali power user pravicami.
+SetupAppRunningError=Program %1 je trenutno odprt.%n%nZaprite program, nato kliknite V redu za nadaljevanje ali Preklii za izhod.
+UninstallAppRunningError=Program %1 je trenutno odprt.%n%nZaprite program, nato kliknite V redu za nadaljevanje ali Preklii za izhod.
+
+; *** Misc. errors
+ErrorCreatingDir=Namestitveni program ni mogel ustvariti mape "%1"
+ErrorTooManyFilesInDir=Namestitveni program ne more ustvariti nove datoteke v mapi "%1", ker vsebuje preve datotek
+
+; *** Setup common messages
+ExitSetupTitle=Prekini namestitev
+ExitSetupMessage=Namestitev ni konana. e jo boste prekinili, program ne bo nameen.%n%nPonovno namestitev lahko izvedete kasneje.%n%nelite prekiniti namestitev?
+AboutSetupMenuItem=&O namestitvenem programu...
+AboutSetupTitle=O namestitvenem programu
+AboutSetupMessage=%1 razliica %2%n%3%n%n%1 domaa stran:%n%4
+AboutSetupNote=
+TranslatorNote=Slovenski prevod:%nMiha Remec (innosetup@miharemec.com)%nJernej Simoni (jernej|s-innosetup@eternallybored.org)
+
+; *** Buttons
+ButtonBack=< Na&zaj
+ButtonNext=&Naprej >
+ButtonInstall=&Namesti
+ButtonOK=V redu
+ButtonCancel=Preklii
+ButtonYes=&Da
+ButtonYesToAll=Da za &vse
+ButtonNo=&Ne
+ButtonNoToAll=N&e za vse
+ButtonFinish=&Konaj
+ButtonBrowse=Pre&brskaj...
+ButtonWizardBrowse=Pre&brskaj...
+ButtonNewFolder=&Ustvari novo mapo
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Izbira jezika namestitve
+SelectLanguageLabel=Izberite jezik, ki ga elite uporabljati med namestitvijo:
+
+; *** Common wizard text
+ClickNext=Kliknite Naprej za nadaljevanje namestitve ali Preklii za prekinitev namestitve.
+BeveledLabel=
+BrowseDialogTitle=Izbira mape
+BrowseDialogLabel=Izberite mapo s spiska, nato kliknite V redu.
+NewFolderName=Nova mapa
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Dobrodoli v namestitev programa [name].
+WelcomeLabel2=V raunalnik boste namestili program [name/ver].%n%nPriporoljivo je, da pred zaetkom namestitve zaprete vse odprte programe.
+
+; *** "Password" wizard page
+WizardPassword=Geslo
+PasswordLabel1=Namestitev je zaitena z geslom.
+PasswordLabel3=Vpiite geslo, nato kliknite Naprej za nadaljevanje. Pri vpisu pazite na male in velike rke.
+PasswordEditLabel=&Geslo:
+IncorrectPassword=Vneeno geslo ni pravilno. Poizkusite ponovno.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licenna pogodba za uporabo programa
+LicenseLabel=Pred nadaljevanjem preberite licenno pogodbo za uporabo programa.
+LicenseLabel3=Preberite licenno pogodbo za uporabo programa. Program lahko namestite le, e se s pogodbo v celoti strinjate.
+LicenseAccepted=&Da, sprejemam vse pogoje licenne pogodbe
+LicenseNotAccepted=N&e, pogojev licenne pogodbe ne sprejmem
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informacije
+InfoBeforeLabel=Pred nadaljevanjem preberite naslednje pomembne informacije.
+InfoBeforeClickLabel=Ko boste pripravljeni na nadaljevanje namestitve, kliknite Naprej.
+WizardInfoAfter=Informacije
+InfoAfterLabel=Pred nadaljevanjem preberite naslednje pomembne informacije.
+InfoAfterClickLabel=Ko boste pripravljeni na nadaljevanje namestitve, kliknite Naprej.
+
+; *** "User Information" wizard page
+WizardUserInfo=Podatki o uporabniku
+UserInfoDesc=Vnesite svoje podatke.
+UserInfoName=&Ime:
+UserInfoOrg=&Podjetje:
+UserInfoSerial=&Serijska tevilka:
+UserInfoNameRequired=Vnos imena je obvezen.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Izbira ciljnega mesta
+SelectDirDesc=Kam elite namestiti program [name]?
+SelectDirLabel3=Program [name] bo nameen v naslednjo mapo.
+SelectDirBrowseLabel=Za nadaljevanje kliknite Naprej. e elite izbrati drugo mapo, kliknite Prebrskaj.
+DiskSpaceMBLabel=Na disku mora biti vsaj [mb] MB prostora.
+CannotInstallToNetworkDrive=Programa ni mogoe namestiti na mreni pogon.
+CannotInstallToUNCPath=Programa ni mogoe namestiti v UNC pot.
+InvalidPath=Vpisati morate polno pot vkljuno z oznako pogona. Primer:%n%nC:\PROGRAM%n%nali UNC pot v obliki:%n%n\\strenik\mapa_skupne_rabe
+InvalidDrive=Izbrani pogon ali omreno sredstvo UNC ne obstaja ali ni dostopno. Izberite drugega.
+DiskSpaceWarningTitle=Na disku ni dovolj prostora
+DiskSpaceWarning=Namestitev potrebuje vsaj %1 KB prostora, toda na izbranem pogonu je na voljo le %2 KB.%n%nelite kljub temu nadaljevati?
+DirNameTooLong=Ime mape ali poti je predolgo.
+InvalidDirName=Ime mape ni veljavno.
+BadDirName32=Ime mape ne sme vsebovati naslednjih znakov:%n%n%1
+DirExistsTitle=Mapa e obstaja
+DirExists=Mapa%n%n%1%n%ne obstaja. elite program vseeno namestiti v to mapo?
+DirDoesntExistTitle=Mapa ne obstaja
+DirDoesntExist=Mapa %n%n%1%n%nne obstaja. Ali jo elite ustvariti?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Izbira komponent
+SelectComponentsDesc=Katere komponente elite namestiti?
+SelectComponentsLabel2=Oznaite komponente, ki jih elite namestiti; odznaite komponente, ki jih ne elite namestiti. Kliknite Naprej, ko boste pripravljeni za nadaljevanje.
+FullInstallation=Polna namestitev
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Osnovna namestitev
+CustomInstallation=Namestitev po meri
+NoUninstallWarningTitle=Komponente e obstajajo
+NoUninstallWarning=Namestitveni program je ugotovil, da so naslednje komponente e nameene v raunalniku:%n%n%1%n%nOdznaitev teh komponent e ne pomeni tudi njihove odstranitve.%n%nelite vseeno nadaljevati?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Za izbrano namestitev potrebujete vsaj [mb] MB prostora na disku.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Izbira dodatnih opravil
+SelectTasksDesc=Katera dodatna opravila elite izvesti?
+SelectTasksLabel2=Izberite dodatna opravila, ki jih bo namestitveni program opravil med namestitvijo programa [name], nato kliknite Naprej.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Izbira mape v meniju Start
+SelectStartMenuFolderDesc=Kje naj namestitveni program ustvari blinjice?
+SelectStartMenuFolderLabel3=Namestitveni program bo ustvaril blinjice v naslednji mapi v meniju Start.
+SelectStartMenuFolderBrowseLabel=Za nadaljevanje kliknite Naprej. e elite izbrati drugo mapo, kliknite Prebrskaj.
+MustEnterGroupName=Ime skupine mora biti vpisano.
+GroupNameTooLong=Ime mape ali poti je predolgo.
+InvalidGroupName=Ime mape ni veljavno.
+BadGroupName=Ime skupine ne sme vsebovati naslednjih znakov:%n%n%1
+NoProgramGroupCheck2=&Ne ustvari mape v meniju Start
+
+; *** "Ready to Install" wizard page
+WizardReady=Pripravljen za namestitev
+ReadyLabel1=Namestitveni program je pripravljen za namestitev programa [name] v va raunalnik.
+ReadyLabel2a=Kliknite Namesti za zaetek nameanja. Kliknite Nazaj, e elite pregledati ali spremeniti katerokoli nastavitev.
+ReadyLabel2b=Kliknite Namesti za zaetek nameanja.
+ReadyMemoUserInfo=Podatki o uporabniku:
+ReadyMemoDir=Ciljno mesto:
+ReadyMemoType=Tip namestitve:
+ReadyMemoComponents=Izbrane komponente:
+ReadyMemoGroup=Mapa v meniju Start:
+ReadyMemoTasks=Dodatna opravila:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Pripravljam za namestitev
+PreparingDesc=Namestitveni program je pripravljen za namestitev programa [name] v va raunalnik.
+PreviousInstallNotCompleted=Namestitev ali odstranitev prejnjega programa ni bila konana. Da bi jo dokonali, morate raunalnik znova zagnati.%n%nPo ponovnem zagonu raunalnika znova zaenite namestitveni program, da boste konali namestitev programa [name].
+CannotContinue=Namestitveni program ne more nadaljevati. Pritisnite Preklii za izhod.
+
+; *** "Installing" wizard page
+ApplicationsFound=Naslednji programi uporabljajo datoteke, ki jih mora namestitveni program posodobiti. Priporoljivo je, da namestitvenemu programu dovolite, da te programe kona.
+ApplicationsFound2=Naslednji programi uporabljajo datoteke, ki jih mora namestitveni program posodobiti. Priporoljivo je, da namestitvenemu programu dovolite, da te programe kona. Po koncu namestitve bo namestitveni program poizkusil znova zagnati te programe.
+CloseApplications=S&amodejno zapri programe
+DontCloseApplications=&Ne zapri programov
+ErrorCloseApplications=Namestitvenemu programu ni uspelo samodejno zapreti vseh programov. Priporoljivo je, da pred nadaljevanjem zaprete vse programe, ki uporabljajo datoteke, katere mora namestitev posodobiti.
+
+WizardInstalling=Nameanje
+InstallingLabel=Poakajte, da bo program [name] nameen v va raunalnik.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Zakljuek namestitve programa [name]
+FinishedLabelNoIcons=Program [name] je nameen v va raunalnik.
+FinishedLabel=Program [name] je nameen v va raunalnik. Program zaenete tako, da odprete pravkar ustvarjene programske ikone.
+ClickFinish=Kliknite tipko Konaj za zakljuek namestitve.
+FinishedRestartLabel=Za dokonanje namestitve programa [name] morate raunalnik znova zagnati. Ali ga elite znova zagnati zdaj?
+FinishedRestartMessage=Za dokonanje namestitve programa [name] morate raunalnik znova zagnati. %n%nAli ga elite znova zagnati zdaj?
+ShowReadmeCheck=elim prebrati datoteko z navodili
+YesRadio=&Da, raunalnik znova zaeni zdaj
+NoRadio=&Ne, raunalnik bom znova zagnal pozneje
+
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Odpri %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Preberi %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Namestitveni program potrebuje naslednji disk
+SelectDiskLabel2=Vstavite disk %1 in kliknite V redu.%n%ne se datoteke s tega diska nahajajo v drugi mapi kot je navedena spodaj, vpiite pravilno pot ali kliknite Prebrskaj.
+PathLabel=&Pot:
+FileNotInDir2=Datoteke "%1" ni v mapi "%2". Vstavite pravilni disk ali izberite drugo mapo.
+SelectDirectoryLabel=Vnesite mesto naslednjega diska.
+
+; *** Installation phase messages
+SetupAborted=Namestitev ni bila konana.%n%nOdpravite teavo in znova odprite namestitveni program.
+EntryAbortRetryIgnore=Kliknite Ponovi za ponovitev, Prezri za nadaljevanje kljub problemu, ali Prekini za prekinitev namestitve.
+
+; *** Installation status messages
+StatusClosingApplications=Zapiranje programov...
+StatusCreateDirs=Ustvarjanje map...
+StatusExtractFiles=Razirjanje datotek...
+StatusCreateIcons=Ustvarjanje blinjic...
+StatusCreateIniEntries=Vpisovanje v INI datoteke...
+StatusCreateRegistryEntries=Ustvarjanje vnosov v register...
+StatusRegisterFiles=Registriranje datotek...
+StatusSavingUninstall=Zapisovanje podatkov za odstranitev...
+StatusRunProgram=Zakljuevanje namestitve...
+StatusRestartingApplications=Zaganjanje programov...
+StatusRollback=Obnavljanje prvotnega stanja...
+
+; *** Misc. errors
+ErrorInternal2=Interna napaka: %1
+ErrorFunctionFailedNoCode=%1 ni uspel(a)
+ErrorFunctionFailed=%1 ni uspel(a); koda %2
+ErrorFunctionFailedWithMessage=%1 ni uspela; koda %2.%n%3
+ErrorExecutingProgram=Ne morem zagnati programa:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Napaka pri odpiranju kljua v registru:%n%1\%2
+ErrorRegCreateKey=Napaka pri ustvarjanju kljua v registru:%n%1\%2
+ErrorRegWriteKey=Napaka pri pisanju kljua v registru:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Napaka pri vpisu v INI datoteko "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Kliknite Ponovi za ponovitev, Prezri za preskok datoteke (ni priporoljivo) ali Prekini za prekinitev namestitve.
+FileAbortRetryIgnore2=Kliknite Ponovi za ponovitev, Prezri za nadaljevanje (ni priporoljivo) ali Prekini za prekinitev namestitve.
+SourceIsCorrupted=Izvorna datoteka je okvarjena
+SourceDoesntExist=Izvorna datoteka "%1" ne obstaja
+ExistingFileReadOnly=Obstojea datoteka je oznaena samo za branje.%n%nPritisnite Ponovi za odstranitev te lastnosti in ponovni poskus, Prezri za preskok te datoteke, ali Prekini za prekinitev namestitve.
+ErrorReadingExistingDest=Pri branju obstojee datoteke je prilo do napake:
+FileExists=Datoteka e obstaja.%n%nelite, da jo namestitveni program prepie?
+ExistingFileNewer=V raunalniku je nameena razliica datoteke, ki je noveja, kot ta, ki je v namestitvenem programu. Priporoljivo je, da obdrite obstojeo datoteko.%n%nelite obdrati obstojeo datoteko?
+ErrorChangingAttr=Pri poskusu spremembe lastnosti datoteke je prilo do napake:
+ErrorCreatingTemp=Pri ustvarjanju datoteke v ciljni mapi je prilo do napake:
+ErrorReadingSource=Pri branju izvorne datoteke je prilo do napake:
+ErrorCopying=Pri kopiranju datoteke je prilo do napake:
+ErrorReplacingExistingFile=Pri poskusu zamenjave obstojee datoteke je prilo do napake:
+ErrorRestartReplace=RestartReplace failed:
+ErrorRenamingTemp=Pri poskusu preimenovanja datoteke v ciljni mapi je prilo do napake:
+ErrorRegisterServer=Registracija DLL/OCX ni mona: %1
+ErrorRegSvr32Failed=RegSvr32 ni uspel s kodo napake %1
+ErrorRegisterTypeLib=Prijava vrste knjinice ni mogoa: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Pri odpiranju datoteke README je prilo do napake.
+ErrorRestartingComputer=Namestitveni program ni uspel znova zagnati raunalnika. Ponovni zagon opravite rono.
+
+; *** Uninstaller messages
+UninstallNotFound=Datoteka "%1" ne obstaja. Odstranitev ni mogoa.
+UninstallOpenError=Datoteke "%1" ne morem odpreti. Ne morem odstraniti
+UninstallUnsupportedVer=Dnevnika datoteka "%1" je v obliki, ki je ta razliica odstranitvenega programa ne razume. Programa ni mogoe odstraniti
+UninstallUnknownEntry=V dnevniki datoteki je bil najden neznani vpis (%1)
+ConfirmUninstall=Ste prepriani, da elite v celoti odstraniti program %1 in pripadajoe komponente?
+UninstallOnlyOnWin64=To namestitev je mogoe odstraniti le v 64-bitni razliici Windows.
+OnlyAdminCanUninstall=Ta program lahko odstrani le administrator.
+UninstallStatusLabel=Poakajte, da odstranim program %1 iz vaega raunalnika.
+UninstalledAll=Program %1 je bil uspeno odstranjen iz vaega raunalnika.
+UninstalledMost=Odstranjevanje programa %1 je konano.%n%nNekateri deli niso bili odstranjeni in jih lahko odstranite rono.
+UninstalledAndNeedsRestart=Za dokonanje odstranitve programa %1 morate raunalnik znova zagnati.%n%nAli ga elite znova zagnati zdaj?
+UninstallDataCorrupted=Datoteka "%1" je okvarjena. Odstranitev ni mona
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=elite odstraniti datoteko v skupni rabi?
+ConfirmDeleteSharedFile2=Spodaj izpisane datoteke v skupni rabi ne uporablja ve noben program. elite odstraniti to datoteko?%n%ne jo uporablja katerikoli program in jo boste odstranili, ta program verjetno ne bo ve deloval pravilno. e niste prepriani, kliknite Ne. e boste datoteko ohranili v raunalniku, ne bo ni narobe.
+SharedFileNameLabel=Ime datoteke:
+SharedFileLocationLabel=Mesto:
+WizardUninstalling=Odstranjevanje programa
+StatusUninstalling=Odstranjujem %1...
+
+ShutdownBlockReasonInstallingApp=Nameam %1.
+ShutdownBlockReasonUninstallingApp=Odstranjujem %1.
+
+[CustomMessages]
+
+NameAndVersion=%1 razliica %2
+AdditionalIcons=Dodatne ikone:
+CreateDesktopIcon=Ustvari ikono na &namizju
+CreateQuickLaunchIcon=Ustvari ikono za &hitri zagon
+ProgramOnTheWeb=%1 na spletu
+UninstallProgram=Odstrani %1
+LaunchProgram=Odpri %1
+AssocFileExtension=&Povei %1 s pripono %2
+AssocingFileExtension=Povezujem %1 s pripono %2...
+AutoStartProgramGroupDescription=Zagon:
+AutoStartProgram=Samodejno zaeni %1
+AddonHostProgramNotFound=Programa %1 ni bilo mogoe najti v izbrani mapi.%n%nAli elite vseeno nadaljevati?
diff --git a/dist/windows/languages/Spanish.isl b/dist/windows/languages/Spanish.isl
new file mode 100644
index 00000000..27067059
--- /dev/null
+++ b/dist/windows/languages/Spanish.isl
@@ -0,0 +1,335 @@
+; *** Inno Setup version 5.5.3+ Spanish messages ***
+;
+; Maintained by Jorge Andres Brugger (jbrugger@ideaworks.com.ar)
+; Spanish.isl version 1.3 (20130207)
+; Default.isl version 5.5.3
+;
+; Thanks to Germn Giraldo, Jordi Latorre, Ximo Tamarit, Emiliano Llano,
+; Ramn Verduzco, Graciela Garca, Carles Millan and Rafael Barranco-Droege
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Espa<00F1>ol
+LanguageID=$0c0a
+LanguageCodePage=1252
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Instalar
+SetupWindowTitle=Instalar - %1
+UninstallAppTitle=Desinstalar
+UninstallAppFullTitle=Desinstalar - %1
+
+; *** Misc. common
+InformationTitle=Informacin
+ConfirmTitle=Confirmar
+ErrorTitle=Error
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Este programa instalar %1. Desea continuar?
+LdrCannotCreateTemp=Imposible crear archivo temporal. Instalacin interrumpida
+LdrCannotExecTemp=Imposible ejecutar archivo en la carpeta temporal. Instalacin interrumpida
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nError %2: %3
+SetupFileMissing=El archivo %1 no se encuentra en la carpeta de instalacin. Por favor, solucione el problema u obtenga una copia nueva del programa.
+SetupFileCorrupt=Los archivos de instalacin estn daados. Por favor, obtenga una copia nueva del programa.
+SetupFileCorruptOrWrongVer=Los archivos de instalacin estn daados o son incompatibles con esta versin del programa de instalacin. Por favor, solucione el problema u obtenga una copia nueva del programa.
+InvalidParameter=Se ha utilizado un parmetro no vlido en la lnea de comandos:%n%n%1
+SetupAlreadyRunning=El programa de instalacin an est ejecutndose.
+WindowsVersionNotSupported=Este programa no es compatible con la versin de Windows de su equipo.
+WindowsServicePackRequired=Este programa requiere %1 Service Pack %2 o posterior.
+NotOnThisPlatform=Este programa no se ejecutar en %1.
+OnlyOnThisPlatform=Este programa debe ejecutarse en %1.
+OnlyOnTheseArchitectures=Este programa slo puede instalarse en versiones de Windows diseadas para las siguientes arquitecturas de procesadores:%n%n%1
+MissingWOW64APIs=La versin de Windows que est utilizando no cuenta con la funcionalidad requerida por el instalador para realizar una instalacin de 64 bits. Para solucionar este problema, por favor, instale el Service Pack %1.
+WinVersionTooLowError=Este programa requiere %1 versin %2 o posterior.
+WinVersionTooHighError=Este programa no puede instalarse en %1 versin %2 o posterior.
+AdminPrivilegesRequired=Debe iniciar la sesin como administrador para instalar este programa.
+PowerUserPrivilegesRequired=Debe iniciar la sesin como administrador o como miembro del grupo de Usuarios Avanzados para instalar este programa.
+SetupAppRunningError=El programa de instalacin ha detectado que %1 est ejecutndose.%n%nPor favor, cirrelo ahora, luego haga clic en Aceptar para continuar o en Cancelar para salir.
+UninstallAppRunningError=El desinstalador ha detectado que %1 est ejecutndose.%n%nPor favor, cirrelo ahora, luego haga clic en Aceptar para continuar o en Cancelar para salir.
+
+; *** Misc. errors
+ErrorCreatingDir=El programa de instalacin no pudo crear la carpeta "%1"
+ErrorTooManyFilesInDir=Imposible crear un archivo en la carpeta "%1" porque contiene demasiados archivos
+
+; *** Setup common messages
+ExitSetupTitle=Salir de la Instalacin
+ExitSetupMessage=La instalacin no se ha completado an. Si cancela ahora, el programa no se instalar.%n%nPuede ejecutar nuevamente el programa de instalacin en otra ocasin para completarla.%n%nSalir de la instalacin?
+AboutSetupMenuItem=&Acerca de Instalar...
+AboutSetupTitle=Acerca de Instalar
+AboutSetupMessage=%1 versin %2%n%3%n%n%1 sitio Web:%n%4
+AboutSetupNote=
+TranslatorNote=Spanish translation maintained by Jorge Andres Brugger (jbrugger@gmx.net)
+
+; *** Buttons
+ButtonBack=< &Atrs
+ButtonNext=&Instalar Popcorn Time >
+ButtonInstall=&Instalar
+ButtonOK=Aceptar
+ButtonCancel=Cancelar
+ButtonYes=&S
+ButtonYesToAll=S a &Todo
+ButtonNo=&No
+ButtonNoToAll=N&o a Todo
+ButtonFinish=&Finalizar
+ButtonBrowse=&Examinar...
+ButtonWizardBrowse=&Examinar...
+ButtonNewFolder=&Crear Nueva Carpeta
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Seleccione el Idioma de la Instalacin
+SelectLanguageLabel=Seleccione el idioma a utilizar durante la instalacin:
+
+; *** Common wizard text
+ClickNext=Haz click en Instalar Popcorn Time para continuar o en Cancelar para salir de la instalacin.
+BeveledLabel=
+BrowseDialogTitle=Buscar Carpeta
+BrowseDialogLabel=Seleccione una carpeta y luego haga clic en Aceptar.
+NewFolderName=Nueva Carpeta
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Ests por instalar Popcorn Time!
+WelcomeLabel2=Instalaremos [name/ver] en tu computadora.%n%nTen en cuenta que [name] es una Beta y no incluimos garantas de ningn tipo, as que usalo bajo tu propio riesgo.
+
+; *** "Password" wizard page
+WizardPassword=Contrasea
+PasswordLabel1=Esta instalacin est protegida por contrasea.
+PasswordLabel3=Por favor, introduzca la contrasea y haga clic en Siguiente para continuar. En las contraseas se hace diferencia entre maysculas y minsculas.
+PasswordEditLabel=&Contrasea:
+IncorrectPassword=La contrasea introducida no es correcta. Por favor, intntelo nuevamente.
+
+; *** "License Agreement" wizard page
+WizardLicense=Acuerdo de Licencia
+LicenseLabel=Es importante que lea la siguiente informacin antes de continuar.
+LicenseLabel3=Por favor, lea el siguiente acuerdo de licencia. Debe aceptar las clusulas de este acuerdo antes de continuar con la instalacin.
+LicenseAccepted=A&cepto el acuerdo
+LicenseNotAccepted=&No acepto el acuerdo
+
+; *** "Information" wizard pages
+WizardInfoBefore=Informacin
+InfoBeforeLabel=Es importante que lea la siguiente informacin antes de continuar.
+InfoBeforeClickLabel=Cuando est listo para continuar con la instalacin, haga clic en Siguiente.
+WizardInfoAfter=Informacin
+InfoAfterLabel=Es importante que lea la siguiente informacin antes de continuar.
+InfoAfterClickLabel=Cuando est listo para continuar, haga clic en Siguiente.
+
+; *** "User Information" wizard page
+WizardUserInfo=Informacin de Usuario
+UserInfoDesc=Por favor, introduzca sus datos.
+UserInfoName=Nombre de &Usuario:
+UserInfoOrg=&Organizacin:
+UserInfoSerial=Nmero de &Serie:
+UserInfoNameRequired=Debe introducir un nombre.
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=Seleccione la Carpeta de Destino
+SelectDirDesc=Dnde debe instalarse [name]?
+SelectDirLabel3=El programa instalar [name] en la siguiente carpeta.
+SelectDirBrowseLabel=Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta diferente, haga clic en Examinar.
+DiskSpaceMBLabel=Se requieren al menos [mb] MB de espacio libre en el disco.
+CannotInstallToNetworkDrive=El programa de instalacin no puede realizar la instalacin en una unidad de red.
+CannotInstallToUNCPath=El programa de instalacin no puede realizar la instalacin en una ruta de acceso UNC.
+InvalidPath=Debe introducir una ruta completa con la letra de la unidad; por ejemplo:%n%nC:\APP%n%no una ruta de acceso UNC de la siguiente forma:%n%n\\servidor\compartido
+InvalidDrive=La unidad o ruta de acceso UNC que seleccion no existe o no es accesible. Por favor, seleccione otra.
+DiskSpaceWarningTitle=Espacio Insuficiente en Disco
+DiskSpaceWarning=La instalacin requiere al menos %1 KB de espacio libre, pero la unidad seleccionada slo cuenta con %2 KB disponibles.%n%nDesea continuar de todas formas?
+DirNameTooLong=El nombre de la carpeta o la ruta son demasiado largos.
+InvalidDirName=El nombre de la carpeta no es vlido.
+BadDirName32=Los nombres de carpetas no pueden incluir los siguientes caracteres:%n%n%1
+DirExistsTitle=La Carpeta Ya Existe
+DirExists=La carpeta:%n%n%1%n%nya existe. Desea realizar la instalacin en esa carpeta de todas formas?
+DirDoesntExistTitle=La Carpeta No Existe
+DirDoesntExist=La carpeta:%n%n%1%n%nno existe. Desea crear esa carpeta?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Seleccione los Componentes
+SelectComponentsDesc=Qu componentes deben instalarse?
+SelectComponentsLabel2=Seleccione los componentes que desea instalar y desmarque los componentes que no desea instalar. Haga clic en Siguiente cuando est listo para continuar.
+FullInstallation=Instalacin Completa
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Instalacin Compacta
+CustomInstallation=Instalacin Personalizada
+NoUninstallWarningTitle=Componentes Encontrados
+NoUninstallWarning=El programa de instalacin ha detectado que los siguientes componentes ya estn instalados en su sistema:%n%n%1%n%nDesmarcar estos componentes no los desinstalar.%n%nDesea continuar de todos modos?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=La seleccin actual requiere al menos [mb] MB de espacio en disco.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Seleccione las Tareas Adicionales
+SelectTasksDesc=Qu tareas adicionales deben realizarse?
+SelectTasksLabel2=Seleccione las tareas adicionales que desea que se realicen durante la instalacin de [name] y haga clic en Siguiente.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Seleccione la Carpeta del Men Inicio
+SelectStartMenuFolderDesc=Dnde deben colocarse los accesos directos del programa?
+SelectStartMenuFolderLabel3=El programa de instalacin crear los accesos directos del programa en la siguiente carpeta del Men Inicio.
+SelectStartMenuFolderBrowseLabel=Para continuar, haga clic en Siguiente. Si desea seleccionar una carpeta distinta, haga clic en Examinar.
+MustEnterGroupName=Debe proporcionar un nombre de carpeta.
+GroupNameTooLong=El nombre de la carpeta o la ruta son demasiado largos.
+InvalidGroupName=El nombre de la carpeta no es vlido.
+BadGroupName=El nombre de la carpeta no puede incluir ninguno de los siguientes caracteres:%n%n%1
+NoProgramGroupCheck2=&No crear una carpeta en el Men Inicio
+
+; *** "Ready to Install" wizard page
+WizardReady=Listo para Instalar
+ReadyLabel1=Ahora el programa est listo para iniciar la instalacin de [name] en su sistema.
+ReadyLabel2a=Haga clic en Instalar para continuar con el proceso o haga clic en Atrs si desea revisar o cambiar alguna configuracin.
+ReadyLabel2b=Haga clic en Instalar para continuar con el proceso.
+ReadyMemoUserInfo=Informacin del usuario:
+ReadyMemoDir=Carpeta de Destino:
+ReadyMemoType=Tipo de Instalacin:
+ReadyMemoComponents=Componentes Seleccionados:
+ReadyMemoGroup=Carpeta del Men Inicio:
+ReadyMemoTasks=Tareas Adicionales:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Preparndose para Instalar
+PreparingDesc=El programa de instalacin est preparndose para instalar [name] en su sistema.
+PreviousInstallNotCompleted=La instalacin/desinstalacin previa de un programa no se complet. Deber reiniciar el sistema para completar esa instalacin.%n%nUna vez reiniciado el sistema, ejecute el programa de instalacin nuevamente para completar la instalacin de [name].
+CannotContinue=El programa de instalacin no puede continuar. Por favor, presione Cancelar para salir.
+ApplicationsFound=Las siguientes aplicaciones estn usando archivos que necesitan ser actualizados por el programa de instalacin. Se recomienda que permita al programa de instalacin cerrar automticamente estas aplicaciones.
+ApplicationsFound2=Las siguientes aplicaciones estn usando archivos que necesitan ser actualizados por el programa de instalacin. Se recomienda que permita al programa de instalacin cerrar automticamente estas aplicaciones. Al completarse la instalacin, el programa de instalacin intentar reiniciar las aplicaciones.
+CloseApplications=&Cerrar automticamente las aplicaciones
+DontCloseApplications=&No cerrar las aplicaciones
+ErrorCloseApplications=El programa de instalacin no pudo cerrar de forma automtica todas las aplicaciones. Se recomienda que, antes de continuar, cierre todas las aplicaciones que utilicen archivos que necesitan ser actualizados por el programa de instalacin.
+
+; *** "Installing" wizard page
+WizardInstalling=Instalando
+InstallingLabel=Por favor, espere mientras se instala [name] en su sistema.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Completando la instalacin de [name]
+FinishedLabelNoIcons=El programa complet la instalacin de [name] en su sistema.
+FinishedLabel=El programa complet la instalacin de [name] en su sistema. Puede ejecutar la aplicacin haciendo clic sobre el icono instalado.
+ClickFinish=Haga clic en Finalizar para salir del programa de instalacin.
+FinishedRestartLabel=Para completar la instalacin de [name], su sistema debe reiniciarse. Desea reiniciarlo ahora?
+FinishedRestartMessage=Para completar la instalacin de [name], su sistema debe reiniciarse.%n%nDesea reiniciarlo ahora?
+ShowReadmeCheck=S, deseo ver el archivo LAME
+YesRadio=&S, deseo reiniciar el sistema ahora
+NoRadio=&No, reiniciar el sistema ms tarde
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Ejecutar %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Ver %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=El Programa de Instalacin Necesita el Siguiente Disco
+SelectDiskLabel2=Por favor, inserte el Disco %1 y haga clic en Aceptar.%n%nSi los archivos pueden ser hallados en una carpeta diferente a la indicada abajo, introduzca la ruta correcta o haga clic en Examinar.
+PathLabel=&Ruta:
+FileNotInDir2=El archivo "%1" no se ha podido hallar en "%2". Por favor, inserte el disco correcto o seleccione otra carpeta.
+SelectDirectoryLabel=Por favor, especifique la ubicacin del siguiente disco.
+
+; *** Installation phase messages
+SetupAborted=La instalacin no se ha completado.%n%nPor favor solucione el problema y ejecute nuevamente el programa de instalacin.
+EntryAbortRetryIgnore=Haga clic en Reintentar para intentarlo de nuevo, en Omitir para continuar de todas formas o en Anular para cancelar la instalacin.
+
+; *** Installation status messages
+StatusClosingApplications=Cerrando aplicaciones...
+StatusCreateDirs=Creando carpetas...
+StatusExtractFiles=Extrayendo archivos...
+StatusCreateIcons=Creando accesos directos...
+StatusCreateIniEntries=Creando entradas INI...
+StatusCreateRegistryEntries=Creando entradas de registro...
+StatusRegisterFiles=Registrando archivos...
+StatusSavingUninstall=Guardando informacin para desinstalar...
+StatusRunProgram=Terminando la instalacin...
+StatusRestartingApplications=Reiniciando aplicaciones...
+StatusRollback=Deshaciendo cambios...
+
+; *** Misc. errors
+ErrorInternal2=Error interno: %1
+ErrorFunctionFailedNoCode=%1 fall
+ErrorFunctionFailed=%1 fall; cdigo %2
+ErrorFunctionFailedWithMessage=%1 fall; cdigo %2.%n%3
+ErrorExecutingProgram=Imposible ejecutar el archivo:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Error al abrir la clave del registro:%n%1\%2
+ErrorRegCreateKey=Error al crear la clave del registro:%n%1\%2
+ErrorRegWriteKey=Error al escribir la clave del registro:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Error al crear entrada INI en el archivo "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Haga clic en Reintentar para intentarlo de nuevo, en Omitir para excluir este archivo (no recomendado) o en Anular para cancelar la instalacin.
+FileAbortRetryIgnore2=Haga clic en Reintentar para intentarlo de nuevo, en Omitir para continuar de todas formas (no recomendado) o en Anular para cancelar la instalacin.
+SourceIsCorrupted=El archivo de origen est daado
+SourceDoesntExist=El archivo de origen "%1" no existe
+ExistingFileReadOnly=El archivo existente est marcado como slo-lectura.%n%nHaga clic en Reintentar para quitar el atributo de slo-lectura e intentarlo de nuevo, en Omitir para excluir este archivo o en Anular para cancelar la instalacin.
+ErrorReadingExistingDest=Ocurri un error mientras se intentaba leer el archivo:
+FileExists=El archivo ya existe.%n%nDesea sobreescribirlo?
+ExistingFileNewer=El archivo existente es ms reciente que el que est tratando de instalar. Se recomienda que mantenga el archivo existente.%n%nDesea mantener el archivo existente?
+ErrorChangingAttr=Ocurri un error al intentar cambiar los atributos del archivo:
+ErrorCreatingTemp=Ocurri un error al intentar crear un archivo en la carpeta de destino:
+ErrorReadingSource=Ocurri un error al intentar leer el archivo de origen:
+ErrorCopying=Ocurri un error al intentar copiar el archivo:
+ErrorReplacingExistingFile=Ocurri un error al intentar reemplazar el archivo existente:
+ErrorRestartReplace=Fall reintento de reemplazar:
+ErrorRenamingTemp=Ocurri un error al intentar renombrar un archivo en la carpeta de destino:
+ErrorRegisterServer=Imposible registrar el DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 fall con el cdigo de salida %1
+ErrorRegisterTypeLib=Imposible registrar la librera de tipos: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Ocurri un error al intentar abrir el archivo LAME.
+ErrorRestartingComputer=El programa de instalacin no pudo reiniciar el equipo. Por favor, hgalo manualmente.
+
+; *** Uninstaller messages
+UninstallNotFound=El archivo "%1" no existe. Imposible desinstalar.
+UninstallOpenError=El archivo "%1" no pudo ser abierto. Imposible desinstalar
+UninstallUnsupportedVer=El archivo de registro para desinstalar "%1" est en un formato no reconocido por esta versin del desinstalador. Imposible desinstalar
+UninstallUnknownEntry=Se encontr una entrada desconocida (%1) en el registro de desinstalacin
+ConfirmUninstall=Est seguro que desea desinstalar completamente %1 y todos sus componentes?
+UninstallOnlyOnWin64=Este programa slo puede ser desinstalado en Windows de 64-bits.
+OnlyAdminCanUninstall=Este programa slo puede ser desinstalado por un usuario con privilegios administrativos.
+UninstallStatusLabel=Por favor, espere mientras %1 es desinstalado de su sistema.
+UninstalledAll=%1 se desinstal satisfactoriamente de su sistema.
+UninstalledMost=La desinstalacin de %1 ha sido completada.%n%nAlgunos elementos no pudieron eliminarse, pero podr eliminarlos manualmente si lo desea.
+UninstalledAndNeedsRestart=Para completar la desinstalacin de %1, su sistema debe reiniciarse.%n%nDesea reiniciarlo ahora?
+UninstallDataCorrupted=El archivo "%1" est daado. No puede desinstalarse
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Eliminar Archivo Compartido?
+ConfirmDeleteSharedFile2=El sistema indica que el siguiente archivo compartido no es utilizado por ningn otro programa. Desea eliminar este archivo compartido?%n%nSi elimina el archivo y hay programas que lo utilizan, esos programas podran dejar de funcionar correctamente. Si no est seguro, elija No. Dejar el archivo en su sistema no producir ningn dao.
+SharedFileNameLabel=Archivo:
+SharedFileLocationLabel=Ubicacin:
+WizardUninstalling=Estado de la Desinstalacin
+StatusUninstalling=Desinstalando %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Instalando %1.
+ShutdownBlockReasonUninstallingApp=Desinstalando %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 versin %2
+AdditionalIcons=Iconos adicionales:
+CreateDesktopIcon=Crear un icono en el &escritorio
+CreateQuickLaunchIcon=Crear un icono de &Inicio Rpido
+ProgramOnTheWeb=%1 en la Web
+UninstallProgram=Desinstalar %1
+LaunchProgram=Ejecutar %1
+AssocFileExtension=&Asociar %1 con la extensin de archivo %2
+AssocingFileExtension=Asociando %1 con la extensin de archivo %2...
+AutoStartProgramGroupDescription=Inicio:
+AutoStartProgram=Iniciar automticamente %1
+AddonHostProgramNotFound=%1 no pudo ser localizado en la carpeta seleccionada.%n%nDesea continuar de todas formas?
diff --git a/dist/windows/languages/Swedish.isl b/dist/windows/languages/Swedish.isl
new file mode 100644
index 00000000..d7e11b34
--- /dev/null
+++ b/dist/windows/languages/Swedish.isl
@@ -0,0 +1,339 @@
+; *** Inno Setup version 5.5.3+ Swedish messages ***
+;
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+;
+; Translated by christer_1@hotmail.com (Christer Toivonen)
+;
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=Svenska
+LanguageID=$041D
+LanguageCodePage=1252
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Installationsprogram
+SetupWindowTitle=Installationsprogram för %1
+UninstallAppTitle=Avinstallation
+UninstallAppFullTitle=%1 Avinstallation
+
+; *** Misc. common
+InformationTitle=Information
+ConfirmTitle=Bekräfta
+ErrorTitle=Fel
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=%1 kommer att installeras. Vill du fortsätta?
+LdrCannotCreateTemp=Kan ej skapa en temporär fil. Installationen avbryts
+LdrCannotExecTemp=Kan inte köra fil i temporär katalog. Installationen avbryts
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nFel %2: %3
+SetupFileMissing=Filen %1 saknas i installationskatalogen. Rätta till problemet eller hämta en ny kopia av programmet.
+SetupFileCorrupt=Installationsfilerna är felaktiga. Hämta en ny kopia av programmet
+SetupFileCorruptOrWrongVer=Installationsfilerna är felaktiga, eller stämmer ej överens med denna version av installationsprogrammet. Rätta till felet eller hämta en ny programkopia.
+InvalidParameter=En ogiltig parameter angavs på kommandoraden:%n%n%1
+SetupAlreadyRunning=Setup körs redan.
+WindowsVersionNotSupported=Programmet stödjer inte den version av Windows som körs på datorn.
+WindowsServicePackRequired=Programmet kräver %1 Service Pack %2 eller nyare.
+NotOnThisPlatform=Detta program kan ej köras på %1.
+OnlyOnThisPlatform=Detta program måste ha %1.
+OnlyOnTheseArchitectures=Detta program kan bara installeras på Windows versioner med följande processorarkitekturer:%n%n%1
+MissingWOW64APIs=Den versionen av Windows du kör har inte den funktionalitet installationsprogrammet behöver för att genomföra en 64-bitars installation. Rätta till problemet genom att installera Service Pack %1.
+WinVersionTooLowError=Detta program kräver %1, version %2 eller senare.
+WinVersionTooHighError=Programmet kan inte installeras på %1 version %2 eller senare.
+AdminPrivilegesRequired=Du måste vara inloggad som administratör när du installerar detta program.
+PowerUserPrivilegesRequired=Du måste vara inloggad som administratör eller medlem av gruppen Privilegierade användare (Power Users) när du installerar detta program.
+SetupAppRunningError=Installationsprogrammet har upptäckt att %1 är igång.%n%nAvsluta det angivna programmet nu. Klicka sedan på OK för att gå vidare, eller på Avbryt för att avsluta.
+UninstallAppRunningError=Avinstalleraren har upptäckt att %1 körs för tillfället.%n%nStäng all öppna instanser av det nu, klicka sedan på OK för att gå vidare, eller på Avbryt för att avsluta.
+
+; *** Misc. errors
+ErrorCreatingDir=Kunde inte skapa katalogen "%1"
+ErrorTooManyFilesInDir=Kunde inte skapa en fil i katalogen "%1" därför att den innehåller för många filer
+
+; *** Setup common messages
+ExitSetupTitle=Avsluta installationen
+ExitSetupMessage=Installationen är inte färdig. Om du avslutar nu, kommer programmet inte att installeras.%n%nDu kan köra installationsprogrammet vid ett senare tillfälle för att slutföra installationen.%n%nVill du avbryta installationen?
+AboutSetupMenuItem=&Om installationsprogrammet...
+AboutSetupTitle=Om installationsprogrammet
+AboutSetupMessage=%1 version %2%n%3%n%n%1 hemsida:%n%4
+AboutSetupNote=Svensk översättning är gjord av dickg@go.to 1999, 2002%n%nUppdatering till 3.0.2+ av peter@peterandlinda.com, 4.+ av stefan@bodingh.se
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< &Tillbaka
+ButtonNext=&Nästa >
+ButtonInstall=&Installera
+ButtonOK=OK
+ButtonCancel=Avbryt
+ButtonYes=&Ja
+ButtonYesToAll=Ja till &Allt
+ButtonNo=&Nej
+ButtonNoToAll=N&ej till allt
+ButtonFinish=&Slutför
+ButtonBrowse=&Bläddra...
+ButtonWizardBrowse=&Bläddra...
+ButtonNewFolder=Skapa ny katalog
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Välj språk för installationen
+SelectLanguageLabel=Välj språk som skall användas under installationen:
+
+; *** Common wizard text
+ClickNext=Klicka på Nästa för att fortsätta eller på Avbryt för att avsluta installationen.
+BeveledLabel=
+BrowseDialogTitle=Välj katalog
+BrowseDialogLabel=Välj en katalog i listan nedan, klicka sedan på OK.
+NewFolderName=Ny katalog
+
+; *** "Welcome" wizard page
+WelcomeLabel1=Välkommen till installationsprogrammet för [name].
+WelcomeLabel2=Detta kommer att installera [name/ver] på din dator.%n%nDet rekommenderas att du avslutar alla andra program innan du fortsätter. Det förebygger konflikter under installationens gång.
+
+; *** "Password" wizard page
+WizardPassword=Lösenord
+PasswordLabel1=Denna installation är skyddad med lösenord.
+PasswordLabel3=Var god ange lösenordet, klicka sedan på Nästa för att fortsätta. Lösenord skiljer på versaler/gemener.
+PasswordEditLabel=&Lösenord:
+IncorrectPassword=Lösenordet du angav är inkorrekt. Försök igen.
+
+; *** "License Agreement" wizard page
+WizardLicense=Licensavtal
+LicenseLabel=Var god och läs följande viktiga information innan du fortsätter.
+LicenseLabel3=Var god och läs följande licensavtal. Du måste acceptera villkoren i avtalet innan du kan fortsätta med installationen.
+LicenseAccepted=Jag &accepterar avtalet
+LicenseNotAccepted=Jag accepterar &inte avtalet
+
+; *** "Information" wizard pages
+WizardInfoBefore=Information
+InfoBeforeLabel=Var god läs följande viktiga information innan du fortsätter.
+InfoBeforeClickLabel=När du är klar att fortsätta med installationen klickar du på Nästa.
+WizardInfoAfter=Information
+InfoAfterLabel=Var god läs följande viktiga information innan du fortsätter.
+InfoAfterClickLabel=När du är klar att fortsätta med installationen klickar du på Nästa.
+
+; *** "User Information" wizard page
+WizardUserInfo=Användarinformation
+UserInfoDesc=Var god och fyll i följande uppgifter.
+UserInfoName=&Namn:
+UserInfoOrg=&Organisation:
+UserInfoSerial=&Serienummer:
+UserInfoNameRequired=Du måste fylla i ett namn.
+
+; *** "Select Destination Directory" wizard page
+WizardSelectDir=Välj installationsplats
+SelectDirDesc=Var skall [name] installeras?
+SelectDirLabel3=Installationsprogrammet kommer att installera [name] i följande katalog
+SelectDirBrowseLabel=För att fortsätta klickar du på Nästa. Om du vill välja en annan katalog klickar du på Bläddra.
+DiskSpaceMBLabel=Programmet kräver minst [mb] MB hårddiskutrymme.
+CannotInstallToNetworkDrive=Setup kan inte installeras på nätverksdisk.
+CannotInstallToUNCPath=Setup kan inte installeras på UNC sökväg.
+InvalidPath=Du måste skriva en fullständig sökväg med enhetsbeteckning; till exempel:%n%nC:\Program%n%neller en UNC-sökväg i formatet:%n%n\\server\resurs
+InvalidDrive=Enheten du har valt finns inte eller är inte tillgänglig. Välj en annan.
+DiskSpaceWarningTitle=Ej tillräckligt med diskutrymme
+DiskSpaceWarning=Installationsprogrammet behöver åtminstone %1 KB ledigt diskutrymme för installationen, men den valda enheten har bara %2 KB tillgängligt.%n%nVill du fortsätta ändå?
+DirNameTooLong=Katalogens namn eller sökväg är för lång.
+InvalidDirName=Katalogen du har valt är inte tillgänglig.
+BadDirName32=Katalogens namn får ej innehålla något av följande tecken:%n%n%1
+DirExistsTitle=Katalogen finns
+DirExists=Katalogen:%n%n%1%n%nfinns redan. Vill du ändå fortsätta installationen till den valda katalogen?
+DirDoesntExistTitle=Katalogen finns inte
+DirDoesntExist=Katalogen:%n%n%1%n%nfinns inte. Vill du skapa den?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Välj komponenter
+SelectComponentsDesc=Vilka komponenter skall installeras?
+SelectComponentsLabel2=Välj de komponenter som du vill ska installeras; avmarkera de komponenter som du inte vill ha. Klicka sedan på Nästa när du är klar att fortsätta.
+FullInstallation=Fullständig installation
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Kompakt installation
+CustomInstallation=Anpassad installation
+NoUninstallWarningTitle=Komponenter finns
+NoUninstallWarning=Installationsprogrammet har upptäckt att följande komponenter redan finns installerade på din dator:%n%n%1%n%nAtt avmarkera dessa komponenter kommer inte att avinstallera dom.%n%nVill du fortsätta ändå?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Aktuella val kräver minst [mb] MB diskutrymme.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Välj extra uppgifter
+SelectTasksDesc=Vilka extra uppgifter skall utföras?
+SelectTasksLabel2=Markera ytterligare uppgifter att utföra vid installation av [name], tryck sedan på Nästa.
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=Välj Startmenykatalogen
+SelectStartMenuFolderDesc=Var skall installationsprogrammet placera programmets genvägar?
+SelectStartMenuFolderLabel3=Installationsprogrammet kommer att skapa programmets genvägar i följande katalog.
+SelectStartMenuFolderBrowseLabel=För att fortsätta klickar du på Nästa. Om du vill välja en annan katalog, klickar du på Bläddra.
+MustEnterGroupName=Du måste ange en katalog.
+GroupNameTooLong=Katalogens namn eller sökväg är för lång.
+InvalidGroupName=Katalogen du har valt är inte tillgänglig.
+BadGroupName=Katalognamnet kan inte innehålla någon av följande tecken:%n%n%1
+NoProgramGroupCheck2=&Skapa ingen Startmenykatalog
+
+; *** "Ready to Install" wizard page
+WizardReady=Redo att installera
+ReadyLabel1=Installationsprogrammet är nu redo att installera [name] på din dator.
+ReadyLabel2a=Tryck på Installera om du vill fortsätta, eller på gå Tillbaka om du vill granska eller ändra på något.
+ReadyLabel2b=Välj Installera för att påbörja installationen.
+ReadyMemoUserInfo=Användarinformation:
+ReadyMemoDir=Installationsplats:
+ReadyMemoType=Installationstyp:
+ReadyMemoComponents=Valda komponenter:
+ReadyMemoGroup=Startmenykatalog:
+ReadyMemoTasks=Extra uppgifter:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=Förbereder installationen
+PreparingDesc=Installationsprogrammet förbereder installationen av [name] på din dator.
+PreviousInstallNotCompleted=Installationen/avinstallationen av ett tidigare program har inte slutförts. Du måste starta om datorn för att avsluta den installationen.%n%nEfter att ha startat om datorn kör du installationsprogrammet igen för att slutföra installationen av [name].
+CannotContinue=Installationsprogrammet kan inte fortsätta. Klicka på Avbryt för att avsluta.
+ApplicationsFound=Följande program använder filer som måste uppdateras av Setup. Vi rekommenderar att du låter Setup automatiskt stänga dessa program.
+ApplicationsFound2=Följande program använder filer som måste uppdateras av Setup. Vi rekommenderar att du låter Setup automatiskt stänga dessa program. Efter installationen kommer Setup att försöka starta programmen igen.
+CloseApplications=&Stäng programmen automatiskt
+DontCloseApplications=&Stäng inte programmen
+ErrorCloseApplications=Installationsprogrammet kunde inte stänga alla program. Innan installationen fortsätter rekommenderar vi att du stänger alla program som använder filer som Setup behöver uppdatera.
+
+; *** "Installing" wizard page
+WizardInstalling=Installerar
+InstallingLabel=Vänta medan [name] installeras på din dator.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=Avslutar installationen av [name]
+FinishedLabelNoIcons=[name] har nu installerats på din dator.
+FinishedLabel=[name] har nu installerats på din dator. Programmet kan startas genom att välja någon av ikonerna.
+ClickFinish=Välj Slutför för att avsluta installationen.
+FinishedRestartLabel=För att slutföra installationen av [name], måste datorn startas om. Vill du starta om nu?
+FinishedRestartMessage=För att slutföra installationen av [name], måste datorn startas om.%n%nVill du starta om datorn nu?
+ShowReadmeCheck=Ja, jag vill se filen LÄS MIG
+YesRadio=&Ja, jag vill starta om datorn nu
+NoRadio=&Nej, jag startar själv om datorn senare
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Kör %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=Läs %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Installationsprogrammet behöver nästa diskett
+SelectDiskLabel2=Var god sätt i diskett %1 och tryck OK.%n%nOm filerna kan hittas i en annan katalog än den som visas nedan, skriv in rätt sökväg eller välj Bläddra.
+PathLabel=&Sökväg:
+FileNotInDir2=Kunde inte hitta filen "%1" i "%2". Var god sätt i korrekt diskett eller välj en annan katalog.
+SelectDirectoryLabel=Var god ange sökvägen för nästa diskett.
+
+; *** Installation phase messages
+SetupAborted=Installationen slutfördes inte.%n%nVar god rätta till felet och kör installationen igen.
+EntryAbortRetryIgnore=Välj Försök igen eller Ignorera för att fortsätta ändå, eller välj Avbryt för att avbryta installationen.
+
+; *** Installation status messages
+StatusClosingApplications=Stänger program...
+StatusCreateDirs=Skapar kataloger...
+StatusExtractFiles=Packar upp filer...
+StatusCreateIcons=Skapar programikoner...
+StatusCreateIniEntries=Skriver INI-värden...
+StatusCreateRegistryEntries=Skriver register-värden...
+StatusRegisterFiles=Registrerar filer...
+StatusSavingUninstall=Sparar information för avinstallation...
+StatusRunProgram=Slutför installationen...
+StatusRestartingApplications=Startar om program...
+StatusRollback=Återställer ändringar...
+
+; *** Misc. errors
+ErrorInternal2=Internt fel: %1
+ErrorFunctionFailedNoCode=%1 misslyckades
+ErrorFunctionFailed=%1 misslyckades; kod %2
+ErrorFunctionFailedWithMessage=%1 misslyckades; kod %2.%n%3
+ErrorExecutingProgram=Kan inte köra filen:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=Fel vid öppning av registernyckel:%n%1\%2
+ErrorRegCreateKey=Kan ej skapa registernyckel:%n%1\%2
+ErrorRegWriteKey=Kan ej skriva till registernyckel:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=Kan inte skriva nytt INI-värde i filen "%1".
+
+; *** File copying errors
+FileAbortRetryIgnore=Välj Försök igen eller Ignorera för att hoppa över denna fil (ej rekommenderat), eller välj Avbryt installationen.
+FileAbortRetryIgnore2=Välj Försök igen eller Ignorera och fortsätt ändå (ej rekommenderat), eller välj Avbryt installationen.
+SourceIsCorrupted=Källfilen är felaktig
+SourceDoesntExist=Källfilen "%1" finns inte
+ExistingFileReadOnly=Den nuvarande filen är skrivskyddad.%n%nVälj Försök igen för att ta bort skrivskyddet, Ignorera för att hoppa över denna fil, eller välj Avbryt installationen.
+ErrorReadingExistingDest=Ett fel uppstod vid försök att läsa den befintliga filen:
+FileExists=Filen finns redan.%n%nVill du skriva över den?
+ExistingFileNewer=Den befintliga filen är nyare än den som ska installeras. Du rekommenderas att behålla den befintliga filen. %n%nVill Du behålla den befintliga filen?
+ErrorChangingAttr=Ett fel uppstod vid försök att ändra attribut på den befintliga filen:
+ErrorCreatingTemp=Ett fel uppstod vid ett försök att skapa installationskatalogen:
+ErrorReadingSource=Ett fel uppstod vid ett försök att läsa källfilen:
+ErrorCopying=Ett fel uppstod vid kopiering av filen:
+ErrorReplacingExistingFile=Ett fel uppstod vid ett försök att ersätta den befintliga filen:
+ErrorRestartReplace=ÅterstartaErsätt misslyckades:
+ErrorRenamingTemp=Ett fel uppstod vid ett försök att byta namn på en fil i installationskatalogen:
+ErrorRegisterServer=Kunde inte registrera DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 misslyckades med felkod %1
+ErrorRegisterTypeLib=Kunde inte registrera typbibliotek: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=Ett fel uppstod vid öppnandet av LÄS MIG-filen.
+ErrorRestartingComputer=Installationsprogrammet kunde inte starta om datorn. Var god gör det manuellt.
+
+; *** Uninstaller messages
+UninstallNotFound=Filen "%1" finns inte. Kan inte avinstallera.
+UninstallOpenError=Filen "%1" kan inte öppnas. Kan inte avinstallera.
+UninstallUnsupportedVer=Avinstallationsloggen "%1" är i ett format som denna version inte känner igen. Kan ej avinstallera
+UninstallUnknownEntry=En okänd rad (%1) hittades i avinstallationsloggen
+ConfirmUninstall=Är du säker på att du vill ta bort %1 och alla tillhörande komponenter?
+UninstallOnlyOnWin64=Denna installation kan endast avinstalleras på en 64-bitarsversion av Windows.
+OnlyAdminCanUninstall=Denna installation kan endast avinstalleras av en användare med administrativa rättigheter.
+UninstallStatusLabel=Var god och vänta medan %1 tas bort från din dator.
+UninstalledAll=%1 är nu borttaget från din dator.
+UninstalledMost=Avinstallationen av %1 är nu klar.%n%nEn del filer/kataloger gick ej att ta bort. Dessa kan tas bort manuellt.
+UninstalledAndNeedsRestart=För att slutföra avinstallationen av %1 måste datorn startas om.%n%nVill du starta om nu?
+UninstallDataCorrupted=Filen "%1" är felaktig. Kan inte avinstallera
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Ta bort delad fil?
+ConfirmDeleteSharedFile2=Systemet indikerar att följande delade fil inte längre används av några program. Vill du ta bort den delade filen?%n%n%1%n%nOm något program fortfarande använder denna fil och den raderas, kommer programmet kanske att sluta fungera. Om du är osäker, välj Nej. Att låta filen ligga kvar i systemet kommer inte att orsaka någon skada.
+SharedFileNameLabel=Filnamn:
+SharedFileLocationLabel=Plats:
+WizardUninstalling=Avinstallationsstatus
+StatusUninstalling=Avinstallerar %1...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=Installerar %1.
+ShutdownBlockReasonUninstallingApp=Avinstallerar %1.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 version %2
+AdditionalIcons=Återstående ikoner:
+CreateDesktopIcon=Skapa en ikon på skrivbordet
+CreateQuickLaunchIcon=Skapa en ikon i Snabbstartfältet
+ProgramOnTheWeb=%1 på Webben
+UninstallProgram=Avinstallera %1
+LaunchProgram=Starta %1
+AssocFileExtension=Associera %1 med %2 filnamnstillägg
+AssocingFileExtension=Associerar %1 med %2 filnamnstillägg...
+AutoStartProgramGroupDescription=Autostart:
+AutoStartProgram=Starta automatiskt %1
+AddonHostProgramNotFound=%1 kunde inte hittas i katalogen du valde.%n%nVill du fortsätta ändå?
diff --git a/dist/windows/languages/TraditionalChinese.isl b/dist/windows/languages/TraditionalChinese.isl
new file mode 100644
index 00000000..76ebb17b
--- /dev/null
+++ b/dist/windows/languages/TraditionalChinese.isl
@@ -0,0 +1,348 @@
+; ************ Inno Setup version 5.5.3+ Traditional Chinese messages ************
+; *** ***
+; *** To download user-contributed translations of this file, go to: ***
+; *** http://www.jrsoftware.org/files/istrans/ ***
+; *** ***
+; *** Author: Jackmoo (enepgoo@gmail.com) ***
+; *** ***
+; *** ***
+; *** ***
+; *** Note: When translating this text, do not add periods (.) to the end of ***
+; *** messages that didn't have them already, because on those messages Inno ***
+; *** Setup adds the periods automatically (appending a period would result in ***
+; *** two periods being displayed). ***
+; ********************************************************************************
+
+
+
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+
+; ****Not test yet****
+LanguageName=Traditional Chinese
+LanguageID=$0404
+LanguageCodePage=950
+; ********************
+
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=安裝
+SetupWindowTitle=安裝 - %1
+UninstallAppTitle=解除安裝
+UninstallAppFullTitle=%1 解除安裝
+
+; *** Misc. common
+InformationTitle=資訊
+ConfirmTitle=確認
+ErrorTitle=錯誤
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=將安裝%1. 您是否要繼續?
+LdrCannotCreateTemp=無法建立暫存檔案. 安裝中止
+LdrCannotExecTemp=無法啟動暫存資料夾中的檔案. 安裝中止
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%n錯誤 %2: %3
+SetupFileMissing=缺失安裝資料夾中的檔案: %1 請修正或重新下載本程式
+SetupFileCorrupt=安裝檔案損毀. 請重新下載本程式
+SetupFileCorruptOrWrongVer=安裝檔案損毀或不相容於本安裝程式 請修正或重新下載本程式
+InvalidParameter=此參數在命令行不合法:%n%n%1
+SetupAlreadyRunning=安裝程式已經在執行
+WindowsVersionNotSupported=本程式並不支援您的Windows版本
+WindowsServicePackRequired=本程式需要 %1 Service Pack %2 或更新的版本
+NotOnThisPlatform=本程式無法在 %1 上執行
+OnlyOnThisPlatform=本程式必須在 %1 上才能執行
+OnlyOnTheseArchitectures=本程式僅能安裝於使用%n%n%1架構的Windows上
+MissingWOW64APIs=您的Windows沒有安裝64位元程式的功能 請安裝 Service Pack %1.
+WinVersionTooLowError=本程式需要 %1 版本 %2 或更新的版本
+WinVersionTooHighError=本程式無法安裝於 %1 版本 %2 或更新的版本
+AdminPrivilegesRequired=您必須以管理員(administrator)身分登入才能安裝此程式
+PowerUserPrivilegesRequired=您必須以管理員(administrator)身分登入或是Power Users的成員才能安裝此程式
+SetupAppRunningError=安裝程式已偵測到 %1 正在執行 %n%n請關閉所有該程式, 然後按"確定"來繼續安裝, 或按"取消"來取消安裝
+UninstallAppRunningError=解除安裝程式已偵測到 %1 正在執行 %n%n請關閉所有該程式, 然後按"確定"來繼續安裝, 或按"取消"來取消安裝
+
+; *** Misc. errors
+ErrorCreatingDir=安裝程式無法建立"%1"資料夾
+ErrorTooManyFilesInDir=資料夾"%1"檔案太多, 已無法建立檔案
+
+; *** Setup common messages
+ExitSetupTitle=離開安裝程式
+ExitSetupMessage=安裝尚未完成 如果您現在離開,程式將不會被安裝 %n%n您可以重新執行安裝程式來完成安裝 %n%n確定要離開安裝程式?
+AboutSetupMenuItem=&關於本安裝程式...
+AboutSetupTitle=關於本安裝程式
+AboutSetupMessage=%1 版本 %2%n%3%n%n%1 官方網址:%n%4
+AboutSetupNote=
+TranslatorNote=繁體中文化 by Jackmoo
+
+; *** Buttons
+ButtonBack=< 上一頁(&B)
+ButtonNext=安裝(&I) Popcorn Time >
+ButtonInstall=安裝(&I)
+ButtonOK=確定
+ButtonCancel=取消
+ButtonYes=是(&Y)
+ButtonYesToAll=全部皆是(&a)
+ButtonNo=否(&N)
+ButtonNoToAll=全部皆否(&o)
+ButtonFinish=完成(&F)
+ButtonBrowse=瀏覽(&B)...
+ButtonWizardBrowse=瀏覽(&r)...
+ButtonNewFolder=建立新資料夾(&M)
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=選擇安裝語言
+SelectLanguageLabel=選擇安裝時顯示的語言:
+
+; *** Common wizard text
+ClickNext=點選"安裝 Popcorn Time" 以繼續, 或點選"取消"離開安裝程式
+BeveledLabel=
+BrowseDialogTitle=瀏覽資料夾
+BrowseDialogLabel=在下列選擇一個資料夾, 然後點選"確定"
+NewFolderName=新資料夾
+
+; *** "Welcome" wizard page
+WelcomeLabel1=您即將開始安裝 Popcorn Time!
+WelcomeLabel2=將安裝[name/ver]至您的電腦 %n%n請記得 Popcorn Time 還在Beta測試階段, 因此我們不保證任何事, 使用者需自行承擔任何可能的風險
+
+; *** "Password" wizard page
+WizardPassword=密碼
+PasswordLabel1=此安裝由密碼保護
+PasswordLabel3=請輸入密碼, 然後點選"下一步"繼續, 請注意密碼有區分大小寫
+PasswordEditLabel=密碼(&P):
+IncorrectPassword=您輸入的密碼不正確 請再輸入一次
+
+; *** "License Agreement" wizard page
+WizardLicense=授權同意書
+LicenseLabel=繼續前請先詳細閱讀以下重要資訊
+LicenseLabel3=請詳閱以下授權同意書, 您必須接受本同意書才能繼續安裝本程式
+LicenseAccepted=我接受此同意書(&a)
+LicenseNotAccepted=我不接受此同意書(&d)
+
+; *** "Information" wizard pages
+WizardInfoBefore=資訊
+InfoBeforeLabel=繼續前請先詳細閱讀以下重要資訊
+InfoBeforeClickLabel=當您準備好繼續安裝, 請點選"下一步"
+WizardInfoAfter=資訊
+InfoAfterLabel=繼續前請先詳細閱讀以下重要資訊
+InfoAfterClickLabel=當您準備好繼續安裝, 請點選"下一步"
+
+; *** "User Information" wizard page
+WizardUserInfo=使用者資料
+UserInfoDesc=請輸入您的資料
+UserInfoName=使用者名稱(&U):
+UserInfoOrg=組織(&O):
+UserInfoSerial=序號(&S):
+UserInfoNameRequired=您必須輸入一個名字
+
+; *** "Select Destination Location" wizard page
+WizardSelectDir=選擇目標位置
+SelectDirDesc=您想將 [name] 安裝到哪裡?
+SelectDirLabel3=安裝程式將把 [name] 安裝至以下資料夾
+SelectDirBrowseLabel=請點選"下一步"繼續安裝, 或點選"瀏覽"來選擇其他資料夾
+DiskSpaceMBLabel=至少需要 [mb] MB 的硬碟空間
+CannotInstallToNetworkDrive=安裝程式無法安裝至網路磁碟
+CannotInstallToUNCPath=安裝程式無法安裝至UNC路徑
+InvalidPath=您必須提供一個含磁碟機代號的完整路徑, 例如:%n%nC:\APP%n%n 或是UNC路徑, 例如:%n%n\\server\share
+InvalidDrive=您所選擇的磁碟機或是UNC路徑不存在或是無法連結 請重新選擇
+DiskSpaceWarningTitle=磁碟機空間不足
+DiskSpaceWarning=安裝程式至少需要 %1 KB 的可用空間, 但所選擇的磁碟機上只有 %2 KB 的可用空間 %n%n您是否仍要繼續?
+DirNameTooLong=資料夾的名稱或是路徑太長
+InvalidDirName=資料夾名稱不合法
+BadDirName32=資料夾名稱不可有以下字元:%n%n%1
+DirExistsTitle=資料夾已存在
+DirExists=資料夾:%n%n%1%n%n已經存在 您是否仍要安裝至該資料夾?
+DirDoesntExistTitle=資料夾不存在
+DirDoesntExist=資料夾:%n%n%1%n%n不存在 您是否要建立該資料夾?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=選擇元件
+SelectComponentsDesc=要安裝哪些元件?
+SelectComponentsLabel2=點選你想安裝的元件, 清除不想安裝的元件, 如要繼續請點選"下一步"
+FullInstallation=完整安裝
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=簡易安裝
+CustomInstallation=自訂安裝
+NoUninstallWarningTitle=該元件已存在
+NoUninstallWarning=安裝程式已偵測到以下元件已安裝:%n%n%1%n%您可選擇不安裝這些元件%n%n您是否仍要繼續(並重新安裝這些元件)?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=目前所需至少 [mb] MB 的磁碟機空間
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=選擇其他工作
+SelectTasksDesc=您想執行什麼額外工作
+SelectTasksLabel2=選擇你於安裝 [name] 時想執行的額外工作 然後點選"下一步"
+
+; *** "Select Start Menu Folder" wizard page
+WizardSelectProgramGroup=選擇開始功能表選單資料夾
+SelectStartMenuFolderDesc=您想把捷徑放在哪裡?
+SelectStartMenuFolderLabel3=安裝程式將把捷徑建立在以下開始按鈕選單資料夾下
+SelectStartMenuFolderBrowseLabel=請點選"下一步"繼續, 如想選擇其他資料夾請點選"瀏覽"
+MustEnterGroupName=您必須輸入一個資料夾名稱
+GroupNameTooLong=資料夾名稱或是路徑太長
+InvalidGroupName=資料夾名稱不合法
+BadGroupName=資料夾名稱不可有以下字元:%n%n%1
+NoProgramGroupCheck2=不建立開始按鈕選單資料夾(&D)
+
+; *** "Ready to Install" wizard page
+WizardReady=準備安裝
+ReadyLabel1=安裝程式現在已經準備好安裝 [name] 至您的電腦
+ReadyLabel2a=點選"安裝"以繼續安裝, 如果想更改或是確定各項設定請點選"上一步"
+ReadyLabel2b=點選"安裝"以繼續安裝
+ReadyMemoUserInfo=使用者資料:
+ReadyMemoDir=目的地位址:
+ReadyMemoType=安裝方式:
+ReadyMemoComponents=已選擇的元件:
+ReadyMemoGroup=開始功能表選單資料夾:
+ReadyMemoTasks=額外工作:
+
+; *** "Preparing to Install" wizard page
+WizardPreparing=正準備安裝
+PreparingDesc=安裝程式現在正準備安裝 [name] 至您的電腦
+PreviousInstallNotCompleted=上一次的安裝/解除安裝未完成, 您必須重新開機以完成安裝%n%n重新開機後, 再次執行安裝程式以完成 [name] 的安裝
+CannotContinue=安裝無法繼續, 請點選"取消"離開安裝程式
+ApplicationsFound=以下應用程式正在使用安裝程式需更新的檔案, 建議您讓安裝程式自動關閉這些應用程式
+ApplicationsFound2=以下應用程式正在使用安裝程式需更新的檔案, 建議您讓安裝程式自動關閉這些應用程式, 在安裝完成後本安裝程式將嘗試重新啟動這些應用程式
+CloseApplications=自動關閉應用程式(&A)
+DontCloseApplications=不要自動關閉應用程式(&D)
+ErrorCloseApplications=安裝程式無法自動關閉全部的應用程式, 建議您在繼續安裝前, 手動關閉這些應用程式
+
+; *** "Installing" wizard page
+WizardInstalling=安裝中
+InstallingLabel=請稍待, 安裝程式正在把 [name] 安裝至您的電腦上
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=完成 [name] 安裝精靈
+FinishedLabelNoIcons=安裝程式已將 [name] 安裝至您的電腦上
+FinishedLabel=安裝程式已將 [name] 安裝至您的電腦上, 可選擇該捷徑來執行此應用程式
+ClickFinish=請點選"結束"來離開安裝程式
+FinishedRestartLabel=要完成 [name] 的安裝, 安裝程式必須重新啟動電腦, 您是否想要立刻重新啟動電腦?
+FinishedRestartMessage=要完成 [name] 的安裝, 安裝程式必須重新啟動電腦 %n%n您是否想要立刻重新啟動電腦?
+ShowReadmeCheck=是, 我想現在查看讀我(README)檔案
+YesRadio=是, 立刻重新啟動電腦(&Y)
+NoRadio=否, 我等下會自行重新啟動電腦(&N)
+; used for example as 'Run MyProg.exe'
+RunEntryExec=Run %1
+; used for example as 'View Readme.txt'
+RunEntryShellExec=View %1
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=安裝程式需要更換下一片磁片
+SelectDiskLabel2=請插入磁片%1然後點選"確定"%n%n若該檔案放在另一個資料夾, 請輸入正確的路徑或點選"瀏覽"
+PathLabel=路徑(&P)h:
+FileNotInDir2=檔案"%1"不在"%2"中. 請插入正確的磁片或是選擇另一個資料夾
+SelectDirectoryLabel=請選擇下一片磁片所在的位置
+
+; *** Installation phase messages
+SetupAborted=安裝程式未安裝完成%n%n請修正問題後再一次執行安裝程式
+EntryAbortRetryIgnore=請點選"重試"再試一次, 或"忽略"繼續執行, 或"中止"來取消安裝
+
+; *** Installation status messages
+StatusClosingApplications=關閉應用程式中...
+StatusCreateDirs=建立資料夾中...
+StatusExtractFiles=解壓縮檔案中...
+StatusCreateIcons=建立捷徑中...
+StatusCreateIniEntries=建立INI資料中...
+StatusCreateRegistryEntries=建立註冊表資料中...
+StatusRegisterFiles=註冊檔案中...
+StatusSavingUninstall=儲存移除安裝資訊中...
+StatusRunProgram=完成安裝中...
+StatusRestartingApplications=重新啟動應用程式中...
+StatusRollback=取消修改中...
+
+; *** Misc. errors
+ErrorInternal2=內部錯誤: %1
+ErrorFunctionFailedNoCode=%1 失敗
+ErrorFunctionFailed=%1 失敗; 代碼 %2
+ErrorFunctionFailedWithMessage=%1 失敗; 代碼%2.%n%3
+ErrorExecutingProgram=無法執行檔案:%n%1
+
+; *** Registry errors
+ErrorRegOpenKey=註冊表key開啟錯誤:%n%1\%2
+ErrorRegCreateKey=註冊表key建立錯誤:%n%1\%2
+ErrorRegWriteKey=註冊表key寫入錯誤:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=在檔案"%1"建立INI資訊時發生錯誤
+
+; *** File copying errors
+FileAbortRetryIgnore=請點選"重試"再試一次, 或"忽略"跳過此檔案(不建議), 或"中止"來取消安裝
+FileAbortRetryIgnore2=請點選"重試"再試一次, 或"忽略"繼續執行(不建議), 或"中止"來取消安裝
+SourceIsCorrupted=原始檔已損毀
+SourceDoesntExist=原始檔"%1"不存在
+ExistingFileReadOnly=該檔案被標示為"唯讀"%n%n請點選"重試"取消唯讀屬性, 或"忽略"跳過此檔案, 或"中止"來取消安裝
+ErrorReadingExistingDest=當讀取此檔案時發生錯誤:
+FileExists=此檔案已存在%n%n您是否要安裝程式複寫該檔案?
+ExistingFileNewer=此檔案版本比安裝程式安裝的還要新, 建議您保留此檔案 %n%n您是否要保留此檔案?
+ErrorChangingAttr=當嘗試改變此檔案屬性時發生錯誤:
+ErrorCreatingTemp=當嘗試建立檔案於此目標資料夾時發生錯誤:
+ErrorReadingSource=當嘗試讀取此原始檔時發生錯誤:
+ErrorCopying=當嘗試複製此檔案時發生錯誤:
+ErrorReplacingExistingFile=當嘗試取代此檔案時發生錯誤:
+ErrorRestartReplace=重新取代時錯誤:
+ErrorRenamingTemp=當嘗試重新命名此檔案時發生錯誤:
+ErrorRegisterServer=無法註冊DLL/OCX: %1
+ErrorRegSvr32Failed=RegSvr32 failed with exit code %1
+ErrorRegisterTypeLib=Unable to register the type library: %1
+
+; *** Post-installation errors
+ErrorOpeningReadme=開啟讀我(README)檔案時發生錯誤
+ErrorRestartingComputer=安裝程式無法自動重新啟動電腦, 請手動重新啟動電腦
+
+; *** Uninstaller messages
+UninstallNotFound=檔案"%1"不存在, 無法解除安裝
+UninstallOpenError=無法開啟檔案"%1", 無法解除安裝
+UninstallUnsupportedVer=此版本的解除安裝程式無法辨識紀錄檔"%1", 無法解除安裝
+UninstallUnknownEntry=An unknown entry (%1) was encountered in the uninstall log
+ConfirmUninstall=您是否確定要完全移除 %1 和他的所有元件
+UninstallOnlyOnWin64=此程式僅能由64位元的Windows移除
+OnlyAdminCanUninstall=此程式僅能由擁有管理者權限的使用者移除
+UninstallStatusLabel=請稍待, 正在從您的電腦中移除 %1
+UninstalledAll=%1 已由您的電腦內成功移除
+UninstalledMost=%1 解除安裝已完成%n%n但某些元素並未被移除, 請以手動方式移除
+UninstalledAndNeedsRestart=要完成 %1 的安裝, 安裝程式必須重新啟動電腦 %n%n您是否想要立刻重新啟動電腦?
+UninstallDataCorrupted=檔案"%1"已毀損, 無法解除安裝
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=移除共享檔案?
+ConfirmDeleteSharedFile2=系統偵測到以下共享檔案已不被任何程式使用, 您是否要移除這些檔案?%n%n若有其他程式仍會使用這些檔案, 則可能造成該程式無法執行, 若你無法確定, 請選擇"否", 保留該檔案並不會對系統造成損害
+SharedFileNameLabel=檔案名稱:
+SharedFileLocationLabel=位址:
+WizardUninstalling=解除安裝程式狀態
+StatusUninstalling=%1 解除安裝中...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=%1 安裝中.
+ShutdownBlockReasonUninstallingApp=%1 解除安裝中
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 版本 %2
+AdditionalIcons=額外捷徑:
+CreateDesktopIcon=建立桌面捷徑(&d)
+CreateQuickLaunchIcon=建立快速啟動捷徑(&Q)
+ProgramOnTheWeb=%1 on the Web
+UninstallProgram=解除安裝 %1
+LaunchProgram=執行 %1
+AssocFileExtension=&Associate %1 with the %2 file extension
+AssocingFileExtension=Associating %1 with the %2 file extension...
+AutoStartProgramGroupDescription=Startup:
+AutoStartProgram=自動開啟 %1
+AddonHostProgramNotFound=您所選擇的資料夾內找不到 %1 %n%n您是否仍要繼續?
diff --git a/dist/windows/languages/Turkish.isl b/dist/windows/languages/Turkish.isl
new file mode 100644
index 00000000..de6ed282
--- /dev/null
+++ b/dist/windows/languages/Turkish.isl
@@ -0,0 +1,336 @@
+; *** Inno Setup version 5.5.3+ Turkish messages ***
+; Language "Turkce" Turkish Translate by "Ceviren" Adil YILDIZ adilyildiz@gmail.com
+; To download user-contributed translations of this file, go to:
+; http://www.jrsoftware.org/files/istrans/
+;
+; Note: When translating this text, do not add periods (.) to the end of
+; messages that didn't have them already, because on those messages Inno
+; Setup adds the periods automatically (appending a period would result in
+; two periods being displayed).
+
+[LangOptions]
+; The following three entries are very important. Be sure to read and
+; understand the '[LangOptions] section' topic in the help file.
+LanguageName=T<00FC>rk<00E7>e
+LanguageID=$041f
+LanguageCodePage=1254
+; If the language you are translating to requires special font faces or
+; sizes, uncomment any of the following entries and change them accordingly.
+;DialogFontName=
+;DialogFontSize=8
+;WelcomeFontName=Verdana
+;WelcomeFontSize=12
+;TitleFontName=Arial
+;TitleFontSize=29
+;CopyrightFontName=Arial
+;CopyrightFontSize=8
+
+[Messages]
+
+; *** Application titles
+SetupAppTitle=Kur
+SetupWindowTitle=%1 - Kur
+UninstallAppTitle=Kaldır
+UninstallAppFullTitle=%1 Kaldır
+
+; *** Misc. common
+InformationTitle=Bilgi
+ConfirmTitle=Sorgu
+ErrorTitle=Hata
+
+; *** SetupLdr messages
+SetupLdrStartupMessage=Bu kurulum %1 programını yükleyecektir. Devam etmek istiyor musunuz?
+LdrCannotCreateTemp=Geçici bir dosya oluşturulamadı. Kurulum iptal edildi
+LdrCannotExecTemp=Geçici dizindeki dosya çalıştırılamadı. Kurulum iptal edildi
+
+; *** Startup error messages
+LastErrorMessage=%1.%n%nHata %2: %3
+SetupFileMissing=%1 adlı dosya kurulum dizininde bulunamadı. Lütfen problemi düzeltiniz veya programın yeni bir kopyasını edininiz.
+SetupFileCorrupt=Kurulum dosyaları bozulmuş. Lütfen programın yeni bir kopyasını edininiz.
+SetupFileCorruptOrWrongVer=Kurulum dosyaları bozulmuş veya kurulumun bu sürümü ile uyuşmuyor olabilir. Lütfen problemi düzeltiniz veya Programın yeni bir kopyasını edininiz.
+InvalidParameter=Komut satırına geçersiz bir parametre girildi:%n%n%1
+SetupAlreadyRunning=Kur zaten çalışıyor.
+WindowsVersionNotSupported=Bu program bilgisayarınızda çalışan Windows sürümünü desteklemiyor.
+WindowsServicePackRequired=Bu program için %1 Service Pack %2 veya sonrası gerekmektedir.
+NotOnThisPlatform=Bu program %1 üzerinde çalıştırılamaz.
+OnlyOnThisPlatform=Bu program sadece %1 üzerinde çalıştırılmalıdır.
+OnlyOnTheseArchitectures=Bu program sadece aşağıdaki mimarilere sahip Windows sürümlerinde çalışır:%n%n%1
+MissingWOW64APIs=Kullandığınız Windows sürümü Kur'un 64-bit yükleme yapabilmesi için gerekli olan özelliklere sahip değildir. Bu problemi ortadan kaldırmak için lütfen Service Pack %1 yükleyiniz.
+WinVersionTooLowError=Bu programı çalıştırabilmek için %1 %2 sürümü veya daha sonrası yüklü olmalıdır.
+WinVersionTooHighError=Bu program %1 %2 sürümü veya sonrasında çalışmaz.
+AdminPrivilegesRequired=Bu program kurulurken yönetici olarak oturum açılmış olmak gerekmektedir.
+PowerUserPrivilegesRequired=Bu program kurulurken Yönetici veya Güç Yöneticisi Grubu üyesi olarak giriş yapılmış olması gerekmektedir.
+SetupAppRunningError=Kur %1 programının çalıştığını tespit etti.%n%nLütfen bu programın çalışan bütün parçalarını şimdi kapatınız, daha sonra devam etmek için Tamam'a veya çıkmak için İptal'e basınız.
+UninstallAppRunningError=Kaldır %1 programının çalıştığını tespit etti.%n%nLütfen bu programın çalışan bütün parçalarını şimdi kapatınız, daha sonra devam etmek için Tamam'a veya çıkmak için İptal'e basınız.
+
+; *** Misc. errors
+ErrorCreatingDir=Kur " %1 " dizinini oluşturamadı.
+ErrorTooManyFilesInDir=" %1 " dizininde bir dosya oluşturulamadı. Çünkü dizin çok fazla dosya içeriyor
+
+; *** Setup common messages
+ExitSetupTitle=Kur'dan Çık
+ExitSetupMessage=Kurulum tamamlanmadı. Şimdi çıkarsanız program kurulmuş olmayacak.%n%nDaha sonra Kur'u tekrar çalıştırarak kurulumu tamamlayabilirsiniz.%n%nKur'dan çıkmak istediğinizden emin misiniz?
+AboutSetupMenuItem=Kur H&akkında...
+AboutSetupTitle=Kur Hakkında
+AboutSetupMessage=%1 %2 sürümü%n%3%n%n%1 internet:%n%4
+AboutSetupNote=
+TranslatorNote=
+
+; *** Buttons
+ButtonBack=< G&eri
+ButtonNext=İ&leri >
+ButtonInstall=&Kur
+ButtonOK=Tamam
+ButtonCancel=İptal
+ButtonYes=E&vet
+ButtonYesToAll=Tümüne E&vet
+ButtonNo=&Hayır
+ButtonNoToAll=Tümüne Ha&yır
+ButtonFinish=&Son
+ButtonBrowse=&Gözat...
+ButtonWizardBrowse=Göza&t...
+ButtonNewFolder=Ye&ni Dizin Oluştur
+
+; *** "Select Language" dialog messages
+SelectLanguageTitle=Kur Dilini Seçiniz
+SelectLanguageLabel=Lütfen kurulum sırasında kullanacağınız dili seçiniz:
+
+; *** Common wizard text
+ClickNext=Devam etmek için İleri'ye , çıkmak için İptal 'e basınız.
+BeveledLabel=
+BrowseDialogTitle=Dizine Gözat
+BrowseDialogLabel=Aşağıdaki listeden bir dizin seçip, daha sonra Tamam tuşuna basınız.
+NewFolderName=Yeni Dizin
+
+; *** "Welcome" wizard page
+WelcomeLabel1=[name] Kurulum Sihirbazına Hoşgeldiniz.
+WelcomeLabel2=Kur şimdi [name/ver] programını bilgisayarınıza yükleyecektir.%n%nDevam etmeden önce çalışan diğer bütün programları kapatmanız tavsiye edilir.
+
+; *** "Password" wizard page
+WizardPassword=Şifre
+PasswordLabel1=Bu kurulum şifre korumalıdır.
+PasswordLabel3=Lütfen şifreyi giriniz. Daha sonra devam etmek için İleri'ye basınız. Lütfen şifreyi girerken Büyük-Küçük harflere dikkat ediniz.
+PasswordEditLabel=&Şifre:
+IncorrectPassword=Girdiğiniz şifre hatalı. Lütfen tekrar deneyiniz.
+
+; *** "License Agreement" wizard page
+WizardLicense=Lisans Anlaşması
+LicenseLabel=Lütfen devam etmeden önce aşağıdaki önemli bilgileri okuyunuz.
+LicenseLabel3=Lütfen Aşağıdaki Lisans Anlaşmasını okuyunuz. Kuruluma devam edebilmek için bu anlaşmanın koşullarını kabul etmiş olmalısınız.
+LicenseAccepted=Anlaşmayı Kabul &Ediyorum.
+LicenseNotAccepted=Anlaşmayı Kabul Et&miyorum.
+
+; *** "Information" wizard pages
+WizardInfoBefore=Bilgi
+InfoBeforeLabel=Lütfen devam etmeden önce aşağıdaki önemli bilgileri okuyunuz.
+InfoBeforeClickLabel=Kur ile devam etmeye hazır olduğunuzda İleri'yi tıklayınız.
+WizardInfoAfter=Bilgi
+InfoAfterLabel=Lütfen devam etmeden önce aşağıdaki önemli bilgileri okuyunuz.
+InfoAfterClickLabel=Kur ile devam etmeye hazır olduğunuzda İleri'yi tıklayınız.
+
+; *** "User Information" wizard page
+WizardUserInfo=Kullanıcı Bilgileri
+UserInfoDesc=Lütfen bilgilerinizi giriniz.
+UserInfoName=K&ullanıcı Adı:
+UserInfoOrg=Şi&rket:
+UserInfoSerial=&Seri Numarası:
+UserInfoNameRequired=Bir isim girmelisiniz.
+
+; *** "Select Destination Directory" wizard page
+WizardSelectDir=Kurulacak Dizini Seçiniz
+SelectDirDesc=[name] hangi dizine kurulsun?
+SelectDirLabel3=Kur [name] programını aşağıdaki dizine kuracaktır.
+SelectDirBrowseLabel=Devam etmek için İleri'ye basınız. Başka bir dizin seçmek istiyorsanız, Gözat'a basınız.
+DiskSpaceMBLabel=Bu program en az [mb] MB disk alanı gerektirmektedir.
+CannotInstallToNetworkDrive=Kur bir ağ sürücüsüne kurulum yapamaz.
+CannotInstallToUNCPath=Kur UNC tipindeki dizin yollarına (Örnek: \\yol vb.) kurulum yapamaz.
+InvalidPath=Sürücü ismi ile birlikte tam yolu girmelisiniz; Örneğin %nC:\APP%n%n veya bir UNC yolunu %n%n\\sunucu\paylaşım%n%n şeklinde girmelisiniz.
+InvalidDrive=Seçtiğiniz sürücü bulunamadı veya ulaşılamıyor. Lütfen başka bir sürücü seçiniz.
+DiskSpaceWarningTitle=Yetersiz Disk Alanı
+DiskSpaceWarning=Kur en az %1 KB kullanılabilir disk alanı gerektirmektedir. Ancak seçili diskte %2 KB boş alan bulunmaktadır.%n%nYine de devam etmek istiyor musunuz?
+DirNameTooLong=Dizin adı veya yolu çok uzun.
+InvalidDirName=Dizin adı geçersiz.
+BadDirName32=Dizin adı takib eden karakterlerden her hangi birini içeremez:%n%n%1
+DirExistsTitle=Dizin Bulundu
+DirExists=Dizin:%n%n%1%n%n zaten var. Yine de bu dizine kurmak istediğinizden emin misiniz?
+DirDoesntExistTitle=Dizin Bulunamadı
+DirDoesntExist=Dizin:%n%n%1%n%nbulunmamaktadır. Bu dizini oluşturmak ister misiniz?
+
+; *** "Select Components" wizard page
+WizardSelectComponents=Bileşen Seç
+SelectComponentsDesc=Hangi bileşenler kurulsun?
+SelectComponentsLabel2=Kurmak istediğiniz bileşenleri seçiniz; istemediklerinizi temizleyiniz.Devam etmeye hazır olduğunuz zaman İleri'ye tıklayınız.
+FullInstallation=Tam Kurulum
+; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language)
+CompactInstallation=Normal Kurulum
+CustomInstallation=Özel Kurulum
+NoUninstallWarningTitle=Mevcut Bileşenler
+NoUninstallWarning=Kur aşağıdaki bileşenlerin kurulu olduğunu tespit etti:%n%n%1%n%nBu bileşenlerin seçimini kaldırmak bileşenleri silmeyecek.%n%nYine de devam etmek istiyor musunuz?
+ComponentSize1=%1 KB
+ComponentSize2=%1 MB
+ComponentsDiskSpaceMBLabel=Seçili bileşenler için en az [mb] MB disk alanı gerekmektedir.
+
+; *** "Select Additional Tasks" wizard page
+WizardSelectTasks=Ek Görevleri Seçiniz
+SelectTasksDesc=Hangi görevler yerine getirilsin?
+SelectTasksLabel2=[name] kurulurken istediğiniz ek görevleri seçip İleri'ye tıklayınız.
+
+; *** "Başlat Menüsü Dizini Seç" sihirbaz sayfası
+WizardSelectProgramGroup=Başlat Menüsü Dizinini Seçiniz
+SelectStartMenuFolderDesc=Kur program kısayollarını nereye yerleştirsin?
+SelectStartMenuFolderLabel3=Kur programın kısayollarını aşağıdaki Başlat Menüsü dizinine kuracak.
+SelectStartMenuFolderBrowseLabel=Devam etmek için, İleri'ye basınız. Başka bir dizin seçmek istiyorsanız, Gözat'a basınız.
+MustEnterGroupName=Bir dizin ismi girmelisiniz.
+GroupNameTooLong=Dizin adı veya yolu çok uzun.
+InvalidGroupName=Dizin adı geçersiz.
+BadGroupName=Dizin adı, takip eden karakterlerden her hangi birini içeremez:%n%n%1
+NoProgramGroupCheck2=&Başlat menüsünde kısayol oluşturma
+
+; *** "Ready to Install" wizard page
+WizardReady=Yükleme için Hazır
+ReadyLabel1=Kur [name] programını bilgisayarınıza kurmak için hazır.
+ReadyLabel2a=Kuruluma devam etmek için Kur'a , ayarlarınızı kontrol etmek veya değiştirmek için Geri'ye tıklayınız.
+ReadyLabel2b=Kuruluma devam etmek için Kur'a tıklayınız.
+ReadyMemoUserInfo=Kullanıcı bilgisi:
+ReadyMemoDir=Hedef dizin:
+ReadyMemoType=Kurulum tipi:
+ReadyMemoComponents=Seçili bileşenler:
+ReadyMemoGroup=Başlat Menüsü :
+ReadyMemoTasks=Ek görevler:
+
+; *** "Kur Hazılanıyor" sihirbaz sayfası
+WizardPreparing=Kurulum Hazırlanıyor
+PreparingDesc=Kur [name] programını bilgisayarınıza kurmak için hazırlanıyor.
+PreviousInstallNotCompleted=Bir önceki Kurulum/Kaldır programına ait işlem tamamlanmamış.Önceki kurulum işleminin tamamlanması için bilgisayarınızı yeniden başlatmalısınız.%n%nBilgisayarınız tekrar başladıktan sonra,Kurulum'u tekrar çalıştırarak [name] programını kurma işlemine devam edebilirsiniz.
+CannotContinue=Kur devam edemiyor. Lütfen İptal'e tıklayıp Çıkın.
+ApplicationsFound=Aşağıdaki uygulamalar, Kur tarafından güncelleştirilmesi gereken dosyaları kullanıyor. Kur tarafından, bu uygulamaların otomatik kapatılmasına izin vermenizi öneririz.
+ApplicationsFound2=Aşağıdaki uygulamalar, Kur tarafından güncelleştirilmesi gereken dosyaları kullanıyor. Kur tarafından, bu uygulamaların otomatik kapatılmasına izin vermenizi öneririz. Yükleme tamamlandıktan sonra, Kur uygulamaları yeniden başlatmaya çalışacaktır.
+CloseApplications=&Uygulamaları otomatik kapat
+DontCloseApplications=Uygulamaları &kapatma
+ErrorCloseApplications=Kurulum otomatik olarak tüm programları kapatmakta başarısız oldu. Devam etmeden önce Kurulum tarafından güncellenmesi gereken dosyaları kullanan uygulamaları kapatmanız önerilir.
+
+; *** "Kuruluyor" sihirbaz
+WizardInstalling=Kuruluyor
+InstallingLabel=Lütfen [name] bilgisayarınıza kurulurken bekleyiniz.
+
+; *** "Setup Completed" wizard page
+FinishedHeadingLabel=[name] Kur Sihirbazı tamamlanıyor
+FinishedLabelNoIcons=Kur [name] programını bilgisayarınıza kurma işlemini tamamladı.
+FinishedLabel=Kur [name] programını bilgisayarınıza kurma işlemini tamamladı. Program yüklenen kısayol simgesine tıklanarak çalıştırılabilir.
+ClickFinish=Kur'dan çıkmak için Son'a tıklayınız.
+FinishedRestartLabel=[name] programının kurulumunu bitirmek için, Kur bilgisayarınızı yeniden başlatacak. Bilgisayarınız yeniden başlatılsın mı?
+FinishedRestartMessage=[name] kurulumunu bitirmek için, bilgisayarınızın yeniden başlatılması gerekmektedir. %n%nBiligisayarınız yeniden başlatılsın mı?
+ShowReadmeCheck=Beni Oku dosyasını okumak istiyorum.
+YesRadio=&Evet , bilgisayar yeniden başlatılsın.
+NoRadio=&Hayır, daha sonra yeniden başlatırım.
+; used for example as 'Run MyProg.exe'
+RunEntryExec=%1 uygulamasını Çalıştır
+; used for example as 'View Readme.txt'
+RunEntryShellExec=%1 dosyasını görüntüle
+
+; *** "Setup Needs the Next Disk" stuff
+ChangeDiskTitle=Bir Sonraki Diski Takınız
+SelectDiskLabel2=%1 numaralı diski takıp, Tamam'ı tıklayınız.%n%nEğer dosyalar başka bir yerde bulunuyor ise doğru yolu yazınız veya Gözat'ı tıklayınız.
+PathLabel=&Yol:
+FileNotInDir2=" %1 " adlı dosya " %2 " dizininde bulunamadı. Lütfen doğru diski veya dosyayı seçiniz.
+SelectDirectoryLabel=Lütfen sonraki diskin yerini belirleyiniz.
+
+; *** Installation phase messages
+SetupAborted=Kurulum tamamlanamadı.%n%nLütfen problemi düzeltiniz veya Kurulum'u tekrar çalıştırınız.
+EntryAbortRetryIgnore=Tekrar denemek için "Tekrar Dene" ye , yine de devam etmek için Yoksay'a , kurulumu iptal etmek için ise İptal'e tıklayınız.
+
+; *** Installation status messages
+StatusClosingApplications=Uygulamalar kapatılıyor...
+StatusCreateDirs=Dizinler oluşturuluyor...
+StatusExtractFiles=Dosyalar çıkartılıyor...
+StatusCreateIcons=Program kısayolları oluşturuluyor...
+StatusCreateIniEntries=INI girdileri oluşturuluyor...
+StatusCreateRegistryEntries=Kayıt Defteri girdileri oluşturuluyor...
+StatusRegisterFiles=Dosyalar sisteme kaydediliyor...
+StatusSavingUninstall=Kaldır bilgileri kaydediliyor...
+StatusRunProgram=Kurulum sonlandırılıyor...
+StatusRestartingApplications=Uygulamalar başlatılıyor...
+StatusRollback=Değişiklikler geri alınıyor...
+
+; *** Misc. errors
+ErrorInternal2=İç hata: %1
+ErrorFunctionFailedNoCode=%1 başarısız oldu.
+ErrorFunctionFailed=%1 başarısız oldu; kod %2
+ErrorFunctionFailedWithMessage=%1 başarısız oldu ; kod %2.%n%3
+ErrorExecutingProgram=%1 adlı dosya çalıştırılamadı.
+
+; *** Registry errors
+ErrorRegOpenKey=Aşağıdaki Kayıt Defteri anahtarı açılırken hata oluştu:%n%1\%2
+ErrorRegCreateKey=Aşağıdaki Kayıt Defteri anahtarı oluşturulurken hata oluştu:%n%1\%2
+ErrorRegWriteKey=Aşağıdaki Kayıt Defteri anahtarına yazılırken hata oluştu:%n%1\%2
+
+; *** INI errors
+ErrorIniEntry=" %1 " adlı dosyada INI girdisi yazma hatası.
+
+; *** File copying errors
+FileAbortRetryIgnore=Yeniden denemek için "Yeniden Dene" ye, dosyayı atlamak için Yoksay'a (önerilmez), Kurulumu iptal etmek için İptal'e tıklayınız.
+FileAbortRetryIgnore2=Yeniden denemek için "Yeniden Dene" ye , yine de devam etmek için Yoksay'a (önerilmez), Kurulumu İptal etmek için İptal'e tıklayınız.
+SourceIsCorrupted=Kaynak dosya bozulmuş
+SourceDoesntExist=%1 adlı kaynak dosya bulunamadı.
+ExistingFileReadOnly=Dosya Salt Okunur.%n%nSalt Okunur özelliğini kaldırıp yeniden denemek için Yeniden Dene'yi , dosyası atlamak için Yoksay'ı , Kurulumu iptal etmek için İptal'i tıklayınız.
+ErrorReadingExistingDest=Dosyayı okurken bir hata oluştu :
+FileExists=Dosya zaten var.%n%nKurulum'un üzerine yazmasını ister misiniz?
+ExistingFileNewer=Zaten var olan dosya Kurulum'un yüklemek istediği dosyadan daha yeni. Var olan dosyayı saklamanız önerilir.%n%nVar olan dosya saklansın mı?
+ErrorChangingAttr=Zaten var olan dosyanın özelliği değiştirilirken bir hata oluştu:
+ErrorCreatingTemp=Hedef dizinde dosya oluşturulurken bir hata oluştu:
+ErrorReadingSource=Kaynak dosya okunurken bir hata oluştu:
+ErrorCopying=Bir dosya kopyalanırken bir hata oluştu:
+ErrorReplacingExistingFile=Zaten var olan dosya değiştirilirken bir hata oluştu:
+ErrorRestartReplace=RestartReplace başarısız oldu:
+ErrorRenamingTemp=Hedef dizinde bulunan dosyanın adı değiştirilirken hata oldu:
+ErrorRegisterServer=%1 adlı DLL/OCX sisteme tanıtılamadı.
+ErrorRegSvr32Failed=RegSvr32 çıkış hatası %1 ile başarısız oldu
+ErrorRegisterTypeLib=%1 adlı tip kütüphanesi (Type Library) sisteme tanıtılamadı
+
+; *** Post-installation errors
+ErrorOpeningReadme=Beni Oku dosyası açılırken hata oluştu.
+ErrorRestartingComputer=Kurulum bilgisayarı yeniden başlatamadı. Lütfen kendiniz kapatınız.
+
+; *** Uninstaller messages
+UninstallNotFound=%1 adlı dosya bulunamadı. Kaldırma programı çalıştırılamadı.
+UninstallOpenError="%1" dosyası açılamıyor. Kaldırma programı çalıştırılamadı.
+UninstallUnsupportedVer=%1 adlı Kaldır bilgi dosyası kaldırma programının bu sürümü ile uyuşmuyor. Kaldırma programı çalıştırılamadı.
+UninstallUnknownEntry=Kaldır Bilgi dosyasındaki %1 adlı satır anlaşılamadı
+ConfirmUninstall=%1 ve bileşenlerini kaldırmak istediğinizden emin misiniz?
+UninstallOnlyOnWin64=Bu kurulum sadece 64-bit Windows'lardan kaldırılabilir.
+OnlyAdminCanUninstall=Bu kurulum sadece yönetici yetkisine sahip kullanıcılar tarafından kaldırabilir.
+UninstallStatusLabel=Lütfen %1 programı bilgisayarınızdan kaldırılırken bekleyin...
+UninstalledAll=%1 programı bilgisayarınızdan tamamen kaldırıldı.
+UninstalledMost=%1 programının kaldırılma işlemi sona erdi.%n%nBazı bileşenler kaldırılamadı. Bu dosyaları kendiniz silebilirsiniz.
+UninstalledAndNeedsRestart=%1 programının kaldırılması tamamlandı, Bilgisayarınızı yeniden başlatmalısınız.%n%nŞimdi yeniden başlatılsın mı?
+UninstallDataCorrupted="%1" adlı dosya bozuk. . Kaldırma programı çalıştırılamadı.
+
+; *** Uninstallation phase messages
+ConfirmDeleteSharedFileTitle=Paylaşılan Dosya Kaldırılsın Mı?
+ConfirmDeleteSharedFile2=Sistemde paylaşılan bazı dosyaların artık hiçbir program tarafından kullanılmadığını belirtiyor. Kaldır bu paylaşılan dosyaları silsin mi?%n%n Bu dosya bazı programlar tafarından kullanılıyorsa ve silinmesini isterseniz, bu programalar düzgün çalışmayabilir. Emin değilseniz, Hayır'a tıklayınız. Dosyanın sisteminizde durması hiçbir zarar vermez.
+SharedFileNameLabel=Dosya adı:
+SharedFileLocationLabel=Yol:
+WizardUninstalling=Kaldırma Durumu
+StatusUninstalling=%1 Kaldırılıyor...
+
+; *** Shutdown block reasons
+ShutdownBlockReasonInstallingApp=%1 kuruluyor.
+ShutdownBlockReasonUninstallingApp=%1 kaldırılıyor.
+
+; The custom messages below aren't used by Setup itself, but if you make
+; use of them in your scripts, you'll want to translate them.
+
+[CustomMessages]
+
+NameAndVersion=%1 %2 sürümü
+AdditionalIcons=Ek simgeler:
+CreateDesktopIcon=Masaüstü simg&esi oluştur
+CreateQuickLaunchIcon=Hızlı Başlat simgesi &oluştur
+ProgramOnTheWeb=%1 Web Sitesi
+UninstallProgram=%1 Programını Kaldır
+LaunchProgram=%1 Programını Çalıştır
+AssocFileExtension=%2 dosya uzantılarını %1 ile ilişkilendir
+AssocingFileExtension=%2 dosya uzantıları %1 ile ilişkilendiriliyor...
+AutoStartProgramGroupDescription=Başlangıç:
+AutoStartProgram=%1 otomatik başlat
+AddonHostProgramNotFound=%1 seçtiğiniz klasörde bulunamadı.%n%nYine de devam etmek istiyor musunuz?
\ No newline at end of file
diff --git a/dist/windows/run.bat b/dist/windows/run.bat
new file mode 100644
index 00000000..bd0416a9
--- /dev/null
+++ b/dist/windows/run.bat
@@ -0,0 +1,2 @@
+start "" "%CD%\node-webkit\nw.exe" "%CD%\app"
+exit 0
\ No newline at end of file
diff --git a/dist/windows/windows-installer.iss b/dist/windows/windows-installer.iss
new file mode 100644
index 00000000..0d5a1058
--- /dev/null
+++ b/dist/windows/windows-installer.iss
@@ -0,0 +1,117 @@
+; Installer Variables
+#define AppName "Popcorn Time"
+#define AppVersion "Beta 2.5"
+#define AppPublisher "Popcorn Time Team"
+#define AppURL "https://github.com/popcorn-time/popcorn-app"
+#define AppExeName "run.bat"
+
+
+[Setup]
+; DON'T FUCK WITH THE APPID. This uniquely identifies this application, which is used to find the app if we need to update it.
+AppId={{F4B2C5C1-F084-4858-B9C3-E641F5C12BBA}
+
+AppName={#AppName}
+AppVersion={#AppVersion}
+AppVerName={#AppName} {#AppVersion}
+AppPublisher={#AppPublisher}
+AppPublisherURL={#AppURL}
+AppSupportURL={#AppURL}
+AppUpdatesURL={#AppURL}
+
+; Make the Installer nicer and Minimalistic
+WizardImageFile=.\installer-image.bmp
+WindowResizable=no
+
+; Don't ask for a install folder (it goes into \Users\Username\AppData\Roaming\Popcorn Time\, which doesn't require admin privileges)
+UsePreviousAppDir=no
+DefaultDirName={userappdata}\Popcorn Time
+DisableDirPage=yes
+
+; No Start Menu Folder picker (It's always created)
+DefaultGroupName={#AppName}
+DisableProgramGroupPage=yes
+
+; We just need a Welcome Page and a Finish page. Nothing else.
+DisableReadyPage=yes
+DisableFinishedPage=no
+DisableWelcomePage=no
+
+; No UAC bullshit
+PrivilegesRequired=lowest
+; Put the uninstaller in the same folder, or else it'll go into Program Files, which requires Admin Privileges
+UninstallFilesDir={app}
+
+; Use the same language as the user (or ask otherwise)
+ShowLanguageDialog=auto
+
+; Compress the files nicely
+Compression=lzma2
+SolidCompression=yes
+
+; Final Installer
+OutputBaseFilename=Install Popcorn Time
+SetupIconFile=..\..\images\popcorntime.ico
+OutputDir=.\
+
+
+[Languages]
+Name: "ar"; MessagesFile: ".\languages\Arabic.isl"
+Name: "eu"; MessagesFile: ".\languages\Basque.isl"
+Name: "ptbr"; MessagesFile: ".\languages\BrazilianPortuguese.isl"
+Name: "ca"; MessagesFile: ".\languages\Catalan.isl"
+; Name: ""; MessagesFile: ".\languages\Corsican.isl"
+Name: "cs"; MessagesFile: ".\languages\Czech.isl"
+Name: "da"; MessagesFile: ".\languages\Danish.isl"
+Name: "nl"; MessagesFile: ".\languages\Dutch.isl"
+Name: "en"; MessagesFile: ".\languages\English.isl"
+Name: "fi"; MessagesFile: ".\languages\Finnish.isl"
+Name: "fr"; MessagesFile: ".\languages\French.isl"
+Name: "ge"; MessagesFile: ".\languages\German.isl"
+Name: "el"; MessagesFile: ".\languages\Greek.isl"
+Name: "he"; MessagesFile: ".\languages\Hebrew.isl"
+Name: "hu"; MessagesFile: ".\languages\Hungarian.isl"
+Name: "it"; MessagesFile: ".\languages\Italian.isl"
+Name: "ja"; MessagesFile: ".\languages\Japanese.isl"
+; Name: ""; MessagesFile: ".\languages\Nepali.isl"
+Name: "no"; MessagesFile: ".\languages\Norwegian.isl"
+Name: "pl"; MessagesFile: ".\languages\Polish.isl"
+Name: "pt"; MessagesFile: ".\languages\Portuguese.isl"
+Name: "ru"; MessagesFile: ".\languages\Russian.isl"
+; Name: "sr"; MessagesFile: ".\languages\SerbianCyrillic.isl"
+; Name: "sr"; MessagesFile: ".\languages\SerbianLatin.isl"
+Name: "sk"; MessagesFile: ".\languages\Slovak.isl"
+; Name: ""; MessagesFile: ".\languages\Slovenian.isl"
+Name: "es"; MessagesFile: ".\languages\Spanish.isl"
+Name: "sv"; MessagesFile: ".\languages\Swedish.isl"
+Name: "zh-tw"; MessagesFile: ".\languages\TraditonalChinese.isl"
+Name: "tk"; MessagesFile: ".\languages\Turkish.isl"
+; Name: ""; MessagesFile: ".\languages\Ukrainian.isl"
+
+
+[Files]
+Source: ".\run.bat"; DestDir: "{app}"; Flags: ignoreversion
+Source: "..\..\index.html"; DestDir: "{app}\app\"; Flags: ignoreversion
+Source: "..\..\package.json"; DestDir: "{app}\app\"; Flags: ignoreversion
+Source: "..\..\css\*"; DestDir: "{app}\app\css\"; Flags: ignoreversion recursesubdirs createallsubdirs
+Source: "..\..\js\*"; DestDir: "{app}\app\js\"; Flags: ignoreversion recursesubdirs createallsubdirs
+Source: "..\..\fonts\*"; DestDir: "{app}\app\fonts\"; Flags: ignoreversion recursesubdirs createallsubdirs
+Source: "..\..\images\*"; DestDir: "{app}\app\images\"; Flags: ignoreversion recursesubdirs createallsubdirs
+Source: "..\..\language\*"; DestDir: "{app}\app\language\"; Flags: ignoreversion recursesubdirs createallsubdirs
+Source: "..\..\node_modules\*"; DestDir: "{app}\app\node_modules\"; Flags: ignoreversion recursesubdirs createallsubdirs
+Source: "..\..\node-webkit\windows\*"; DestDir: "{app}\node-webkit\"; Flags: ignoreversion recursesubdirs createallsubdirs
+; NOTE: Don't use "Flags: ignoreversion" on any shared system files
+
+
+[Icons]
+; Add an Icon in the app folder as a reference
+Name: "{app}\{#AppName}"; WorkingDir: "{app}"; Filename: "{app}\node-webkit\nw.exe"; Parameters:"""{app}\app"""; IconFilename: "{app}\app\images\popcorntime.ico"; Flags: runminimized preventpinning
+; Another in the group (this one can be featured)
+Name: "{group}\{#AppName}"; WorkingDir: "{app}"; Filename: "{app}\node-webkit\nw.exe"; Parameters:"""{app}\app"""; IconFilename: "{app}\app\images\popcorntime.ico"; Flags: runminimized
+; Another in the desktop
+Name: "{commondesktop}\{#AppName}"; WorkingDir: "{app}"; Filename: "{app}\node-webkit\nw.exe"; Parameters:"""{app}\app"""; IconFilename: "{app}\app\images\popcorntime.ico"; Flags: runminimized preventpinning
+
+
+[Run]
+; Run the app after installing
+Filename: "{app}\node-webkit\nw.exe"; Parameters: """{app}\app"""; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent runminimized
+
diff --git a/images/bengali.png b/images/bengali.png
new file mode 100644
index 00000000..9563e773
Binary files /dev/null and b/images/bengali.png differ
diff --git a/images/brazilian.png b/images/brazilian.png
new file mode 100644
index 00000000..786bc064
Binary files /dev/null and b/images/brazilian.png differ
diff --git a/images/bulgarian.png b/images/bulgarian.png
new file mode 100644
index 00000000..e5e94b06
Binary files /dev/null and b/images/bulgarian.png differ
diff --git a/images/dutch.png b/images/dutch.png
new file mode 100644
index 00000000..64cb8315
Binary files /dev/null and b/images/dutch.png differ
diff --git a/images/eng.png b/images/eng.png
deleted file mode 100644
index 02fa2a15..00000000
Binary files a/images/eng.png and /dev/null differ
diff --git a/images/english.png b/images/english.png
new file mode 100644
index 00000000..eec19f9b
Binary files /dev/null and b/images/english.png differ
diff --git a/images/finnish.png b/images/finnish.png
new file mode 100644
index 00000000..9afd7f29
Binary files /dev/null and b/images/finnish.png differ
diff --git a/images/french.png b/images/french.png
new file mode 100644
index 00000000..3523b0e5
Binary files /dev/null and b/images/french.png differ
diff --git a/images/german.png b/images/german.png
new file mode 100644
index 00000000..8efd7999
Binary files /dev/null and b/images/german.png differ
diff --git a/images/hebrew.png b/images/hebrew.png
new file mode 100644
index 00000000..eaf31846
Binary files /dev/null and b/images/hebrew.png differ
diff --git a/images/hungarian.png b/images/hungarian.png
new file mode 100644
index 00000000..aa5bfe40
Binary files /dev/null and b/images/hungarian.png differ
diff --git a/images/italian.png b/images/italian.png
new file mode 100644
index 00000000..cab3a3ee
Binary files /dev/null and b/images/italian.png differ
diff --git a/images/latvian.png b/images/latvian.png
new file mode 100644
index 00000000..a84c4941
Binary files /dev/null and b/images/latvian.png differ
diff --git a/images/none.png b/images/none.png
index 6614bf83..e0c94fcf 100644
Binary files a/images/none.png and b/images/none.png differ
diff --git a/images/popcorntime.icns b/images/popcorntime.icns
new file mode 100644
index 00000000..dacd4de3
Binary files /dev/null and b/images/popcorntime.icns differ
diff --git a/images/popcorntime.ico b/images/popcorntime.ico
new file mode 100644
index 00000000..10574021
Binary files /dev/null and b/images/popcorntime.ico differ
diff --git a/images/por.png b/images/por.png
deleted file mode 100644
index 6e4d7340..00000000
Binary files a/images/por.png and /dev/null differ
diff --git a/images/portuguese.png b/images/portuguese.png
new file mode 100644
index 00000000..931bede1
Binary files /dev/null and b/images/portuguese.png differ
diff --git a/images/posterholder.png b/images/posterholder.png
new file mode 100644
index 00000000..e0a0af26
Binary files /dev/null and b/images/posterholder.png differ
diff --git a/images/romanian.png b/images/romanian.png
new file mode 100644
index 00000000..40f2edec
Binary files /dev/null and b/images/romanian.png differ
diff --git a/images/russian.png b/images/russian.png
new file mode 100644
index 00000000..c4d5455c
Binary files /dev/null and b/images/russian.png differ
diff --git a/images/settings.png b/images/settings.png
new file mode 100644
index 00000000..1eb0e0c5
Binary files /dev/null and b/images/settings.png differ
diff --git a/images/settings_over.png b/images/settings_over.png
new file mode 100644
index 00000000..d9832fa4
Binary files /dev/null and b/images/settings_over.png differ
diff --git a/images/slovak.png b/images/slovak.png
new file mode 100644
index 00000000..951998d3
Binary files /dev/null and b/images/slovak.png differ
diff --git a/images/spa.png b/images/spa.png
deleted file mode 100644
index 39d0c76c..00000000
Binary files a/images/spa.png and /dev/null differ
diff --git a/images/spanish.png b/images/spanish.png
new file mode 100644
index 00000000..95518b2e
Binary files /dev/null and b/images/spanish.png differ
diff --git a/images/turkish.png b/images/turkish.png
new file mode 100644
index 00000000..f6c490a1
Binary files /dev/null and b/images/turkish.png differ
diff --git a/images/ukrainian.png b/images/ukrainian.png
new file mode 100644
index 00000000..181968a0
Binary files /dev/null and b/images/ukrainian.png differ
diff --git a/index.html b/index.html
index 3e9e74aa..8db7d90f 100644
--- a/index.html
+++ b/index.html
@@ -1,20 +1,32 @@
-
-
-
+
+
+
+
+
-
-
-