diff --git a/aegisub/packages/win_installer/build_dictionary_installers.sh b/aegisub/packages/win_installer/build_dictionary_installers.sh
new file mode 100755
index 0000000000000000000000000000000000000000..3b63760fb0ae0c6ee7ac4323d355278bd6dcd642
--- /dev/null
+++ b/aegisub/packages/win_installer/build_dictionary_installers.sh
@@ -0,0 +1,60 @@
+#!/bin/sh
+
+# Copyright (c) 2012, Thomas Goyne <plorkyeran@aegisub.org>
+#
+# Permission to use, copy, modify, and distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+for aff in src/dictionaries/*.aff; do
+	lang=$(echo $aff | cut -d/ -f3 | cut -d. -f1)
+
+	case $lang in
+		ca_ES) langname="Catalan" ;;
+		cs_CZ) langname="Czech" ;;
+		da_DK) langname="Danish" ;;
+		de_AT) langname="Austrian German" ;;
+		de_CH) langname="Swiss German" ;;
+		de_DE) langname="German" ;;
+		el_GR) langname="Greek" ;;
+		en_GB) langname="British English" ;;
+		en_US) langname="American English" ;;
+		es_ES) langname="Spanish" ;;
+		eu) langname="Basque" ;;
+		fr_FR) langname="French" ;;
+		hu_HU) langname="Hungarian" ;;
+		it_IT) langname="Italian" ;;
+		nl_NL) langname="Dutch" ;;
+		pl_PL) langname="Polish" ;;
+		pt_BR) langname="Brazilian Portuguese" ;;
+		pt_PT) langname="Portuguese" ;;
+		ru_RU) langname="Russian" ;;
+		sk_SK) langname="Slovak" ;;
+		sl_SI) langname="Slovenian" ;;
+		sr_SR) langname="Serbian (Cyrillic and Latin)" ;;
+		sv_SE) langname="Swedish" ;;
+		sw_TZ) langname="Swahili (Tanzania)" ;;
+		th_TH) langname="Thai" ;;
+		vi_VN) langname="Vietnamese" ;;
+		*) echo "Unknown language $lang"; exit 1 ;;
+	esac
+
+	printf '#define LANGCODE "%s"\n' "${lang}" > temp_dict.iss
+	printf '#define LANGNAME "%s"\n' "${langname}" >> temp_dict.iss
+	if [[ ! -f "src/dictionaries/th_${lang}.idx" ]]; then
+		printf '#define NOTHES\n' >> temp_dict.iss
+	fi
+
+	printf '#include "dictionaries/fragment_stddict.iss"\n' >> temp_dict.iss
+
+	src/iscc.sh temp_dict.iss
+	rm temp_dict.iss
+done
diff --git a/aegisub/packages/win_installer/dictionaries/ca_ES.iss b/aegisub/packages/win_installer/dictionaries/ca_ES.iss
deleted file mode 100644
index 6e06c66faed41f90f51db87481a1f666d8d6c546..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/ca_ES.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "ca_ES"
-#define LANGNAME "Catalan"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
diff --git a/aegisub/packages/win_installer/dictionaries/cs_CZ.iss b/aegisub/packages/win_installer/dictionaries/cs_CZ.iss
deleted file mode 100644
index 4849a935cd0a804e03362a7287d53af7febc756e..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/cs_CZ.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "cs_CZ"
-#define LANGNAME "Czech"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/da_DK.iss b/aegisub/packages/win_installer/dictionaries/da_DK.iss
deleted file mode 100644
index fdfe69d4746fbc8c972380362e3db4028d74c77f..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/da_DK.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "da_DK"
-#define LANGNAME "Danish"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/de_AT.iss b/aegisub/packages/win_installer/dictionaries/de_AT.iss
deleted file mode 100644
index 0c213439c6fda6e111e21f9747195959dd71e9d2..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/de_AT.iss
+++ /dev/null
@@ -1,53 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "de_AT"
-#define LANGNAME "Austrian German"
-#define NOTHES 1
-
-#include "fragment_dictbase.iss"
-
-[Setup]
-OutputBaseFilename=Aegisub-2.1-dict-{#LANGCODE}
-VersionInfoDescription=Aegisub 2.1.x {#LANGNAME} dictionary
-
-
-[Files]
-Source: src\de_AT.dic; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
-Source: src\de_DE.aff; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
-
-[Components]
-Name: dic;             Description: Spell checker; Types: full
-Name: dic/{#LANGCODE}; Description: {#LANGNAME} dictionary; Types: full
-
diff --git a/aegisub/packages/win_installer/dictionaries/de_DE.iss b/aegisub/packages/win_installer/dictionaries/de_DE.iss
deleted file mode 100644
index 9034efb5e8a9b6ce4cc3bd3fe560c67cb1f53032..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/de_DE.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "de_DE"
-#define LANGNAME "German"
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/el_GR.iss b/aegisub/packages/win_installer/dictionaries/el_GR.iss
deleted file mode 100644
index 9cf08865454ec5240e5325d8c474c0a2a4ec7910..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/el_GR.iss
+++ /dev/null
@@ -1,42 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "el_GR"
-#define LANGNAME "Greek"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
-[Files]
-Source: src\README_el_GR.txt; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
diff --git a/aegisub/packages/win_installer/dictionaries/en_GB.iss b/aegisub/packages/win_installer/dictionaries/en_GB.iss
deleted file mode 100644
index 976d1da89afa3a5f26c44490d40cda434fd44107..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/en_GB.iss
+++ /dev/null
@@ -1,42 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "en_GB"
-#define LANGNAME "British English"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
-[Files]
-Source: src\README_en_GB.txt; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
diff --git a/aegisub/packages/win_installer/dictionaries/en_US.iss b/aegisub/packages/win_installer/dictionaries/en_US.iss
deleted file mode 100644
index 1060a36775066693b5809c709934b3504ef9c257..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/en_US.iss
+++ /dev/null
@@ -1,53 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "en_US"
-#define LANGNAME "American English"
-
-#include "fragment_dictbase.iss"
-
-[Setup]
-OutputBaseFilename=Aegisub-2.1-dict-{#LANGCODE}
-VersionInfoDescription=Aegisub 2.1.x {#LANGNAME} thesaurus
-
-
-[Files]
-Source: src\th_en_US.dat; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: th/{#LANGCODE}
-Source: src\th_en_US.idx; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: th/{#LANGCODE}
-Source: src\README_en_US.txt; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: th/{#LANGCODE}
-
-[Components]
-Name: th;             Description: Thesaurus; Types: full
-Name: th/{#LANGCODE}; Description: {#LANGNAME} thesaurus; Types: full
-
diff --git a/aegisub/packages/win_installer/dictionaries/es_ES.iss b/aegisub/packages/win_installer/dictionaries/es_ES.iss
deleted file mode 100644
index 2f2da18806343248735531b808f0d1f1f46fa94f..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/es_ES.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "es_ES"
-#define LANGNAME "Spanish"
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/eu.iss b/aegisub/packages/win_installer/dictionaries/eu.iss
deleted file mode 100644
index f7872f3a4938f43348dfc3cc857ea420fa47b522..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/eu.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "eu"
-#define LANGNAME "Basque"
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/fr_FR.iss b/aegisub/packages/win_installer/dictionaries/fr_FR.iss
deleted file mode 100644
index 8b663ee5a919f77baf4e9e8f121c6aeaff4c26c5..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/fr_FR.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "fr_FR"
-#define LANGNAME "French"
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/fragment_dictbase.iss b/aegisub/packages/win_installer/dictionaries/fragment_dictbase.iss
index d2ab3bbbbc3c82500546d7108ee3b3ceb6e0c1fd..9fedfa33a3b7788746934cc91ceef34557be00bc 100644
--- a/aegisub/packages/win_installer/dictionaries/fragment_dictbase.iss
+++ b/aegisub/packages/win_installer/dictionaries/fragment_dictbase.iss
@@ -60,8 +60,8 @@ UsePreviousTasks=no
 UninstallDisplayIcon={app}\aegisub32.exe
 ; Default to a large welcome bitmap, suitable for large fonts
 ; The normal fonts version is selected by code below
-WizardImageFile=..\welcome-large.bmp
-WizardSmallImageFile=..\aegisub-large.bmp
+WizardImageFile=welcome-large.bmp
+WizardSmallImageFile=aegisub-large.bmp
 
 [Languages]
 Name: english; MessagesFile: compiler:Default.isl
@@ -72,8 +72,8 @@ WelcomeLabel2=This will install {#LANGNAME} dictionaries for Aegisub 3.0 on your
 
 [Files]
 ; small bitmaps (used by beautify code)
-DestDir: {tmp}; Flags: dontcopy; Source: ..\welcome.bmp
-DestDir: {tmp}; Flags: dontcopy; Source: ..\aegisub.bmp
+DestDir: {tmp}; Flags: dontcopy; Source: welcome.bmp
+DestDir: {tmp}; Flags: dontcopy; Source: aegisub.bmp
 
 
 [Code]
diff --git a/aegisub/packages/win_installer/dictionaries/fragment_stddict.iss b/aegisub/packages/win_installer/dictionaries/fragment_stddict.iss
index e7dc8af8ddb372ffb3a1371ee3b08b0190d01d9c..3e92139ceead851d76e11a8d1edc81a515e1e559 100644
--- a/aegisub/packages/win_installer/dictionaries/fragment_stddict.iss
+++ b/aegisub/packages/win_installer/dictionaries/fragment_stddict.iss
@@ -40,11 +40,11 @@ VersionInfoDescription=Aegisub 3.0 {#LANGNAME} dictionary
 
 
 [Files]
-Source: src\{#LANGCODE}.aff; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
-Source: src\{#LANGCODE}.dic; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
+Source: src\dictionaries\{#LANGCODE}.aff; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
+Source: src\dictionaries\{#LANGCODE}.dic; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
 #ifndef NOTHES
-Source: src\th_{#LANGCODE}.dat; DestDir: {app}\dictionaries; Flags: ignoreversion solidbreak; Components: th/{#LANGCODE}
-Source: src\th_{#LANGCODE}.idx; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: th/{#LANGCODE}
+Source: src\dictionaries\th_{#LANGCODE}.dat; DestDir: {app}\dictionaries; Flags: ignoreversion solidbreak; Components: th/{#LANGCODE}
+Source: src\dictionaries\th_{#LANGCODE}.idx; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: th/{#LANGCODE}
 #endif
 
 [Components]
diff --git a/aegisub/packages/win_installer/dictionaries/it_IT.iss b/aegisub/packages/win_installer/dictionaries/it_IT.iss
deleted file mode 100644
index 49db047076a20fb808b348a4204f2c286aa29bce..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/it_IT.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "it_IT"
-#define LANGNAME "Italian"
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/nl_NL.iss b/aegisub/packages/win_installer/dictionaries/nl_NL.iss
deleted file mode 100644
index 37e520333d21c0abb169ac30f387ceb57a328f97..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/nl_NL.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "nl_NL"
-#define LANGNAME "Dutch"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/pl_PL.iss b/aegisub/packages/win_installer/dictionaries/pl_PL.iss
deleted file mode 100644
index fa382242b252c53886f73d52d47e30fd7edc9dc5..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/pl_PL.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "pl_PL"
-#define LANGNAME "Polish"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/pt_BR.iss b/aegisub/packages/win_installer/dictionaries/pt_BR.iss
deleted file mode 100644
index 474ece26a37879255fa992f00130567fce45e191..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/pt_BR.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "pt_BR"
-#define LANGNAME "Brazilian Portuguese"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/ru_RU.iss b/aegisub/packages/win_installer/dictionaries/ru_RU.iss
deleted file mode 100644
index 5fe364fa766529e06b01bd7e9d0a0bc44639b404..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/ru_RU.iss
+++ /dev/null
@@ -1,39 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "ru_RU"
-#define LANGNAME "Russian"
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/sk_SK.iss b/aegisub/packages/win_installer/dictionaries/sk_SK.iss
deleted file mode 100644
index 97fb7a0518e29a17bb6ff630ce575f910d665a85..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/sk_SK.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "sk_SK"
-#define LANGNAME "Slovak"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/sl_SI.iss b/aegisub/packages/win_installer/dictionaries/sl_SI.iss
deleted file mode 100644
index 74d116045829a04b360b190387d886abf74251fb..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/sl_SI.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "sl_SI"
-#define LANGNAME "Slovenian"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/sv_SE.iss b/aegisub/packages/win_installer/dictionaries/sv_SE.iss
deleted file mode 100644
index 73c49db927e15ccd0ccc5d6711333f115f72abf0..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/sv_SE.iss
+++ /dev/null
@@ -1,40 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "sv_SE"
-#define LANGNAME "Swedish"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
diff --git a/aegisub/packages/win_installer/dictionaries/vi_VN.iss b/aegisub/packages/win_installer/dictionaries/vi_VN.iss
deleted file mode 100644
index 664fc17f728217677eab882c8dcf8182908d8803..0000000000000000000000000000000000000000
--- a/aegisub/packages/win_installer/dictionaries/vi_VN.iss
+++ /dev/null
@@ -1,44 +0,0 @@
-; Copyright (c) 2007-2009, Niels Martin Hansen
-;
-; Redistribution and use in source and binary forms, with or without
-; modification, are permitted provided that the following conditions are met:
-;
-;   * Redistributions of source code must retain the above copyright notice,
-;     this list of conditions and the following disclaimer.
-;   * Redistributions in binary form must reproduce the above copyright notice,
-;     this list of conditions and the following disclaimer in the documentation
-;     and/or other materials provided with the distribution.
-;   * Neither the name of the Aegisub Group nor the names of its contributors
-;     may be used to endorse or promote products derived from this software
-;     without specific prior written permission.
-;
-; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-; POSSIBILITY OF SUCH DAMAGE.
-;
-; -----------------------------------------------------------------------------
-;
-; AEGISUB
-;
-; Website: http://www.aegisub.org/
-; Contact: mailto:nielsm@indvikleren.dk
-;
-
-#define LANGCODE "vi_VN"
-#define LANGNAME "Vietnamese"
-#define NOTHES 1
-
-#include "fragment_stddict.iss"
-
-[Files]
-Source: src\README.vi_VN.txt; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
-Source: src\LICENSE.vi_VN.txt; DestDir: {app}\dictionaries; Flags: ignoreversion; Components: dic/{#LANGCODE}
-